blob: 986d7646b90f2baa0292b8b8a154ae8b4630b572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
|
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (oeprefs.eps)
%%CreationDate: (Tue Nov 28 23:50:41 2000)
%%BoundingBox: 0 0 511 215
%%DocumentData: Clean7Bit
%%LanguageLevel: 1
%%Pages: 0
%%EndComments
%%BeginDefaults
%%PageOrientation: Portrait
%%EndDefaults
%%BeginProlog
%
% Display a color image. The image is displayed in color on
% Postscript viewers or printers that support color, otherwise
% it is displayed as grayscale.
%
/buffer 512 string def
/byte 1 string def
/color_packet 3 string def
/pixels 768 string def
/DirectClassPacket
{
%
% Get a DirectClass packet.
%
% Parameters:
% red.
% green.
% blue.
% length: number of pixels minus one of this color (optional).
%
currentfile color_packet readhexstring pop pop
compression 0 gt
{
/number_pixels 3 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add 3 mul def
} ifelse
0 3 number_pixels 1 sub
{
pixels exch color_packet putinterval
} for
pixels 0 number_pixels getinterval
} bind def
/DirectClassImage
{
%
% Display a DirectClass image.
%
systemdict /colorimage known
{
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ DirectClassPacket } false 3 colorimage
}
{
%
% No colorimage operator; convert to grayscale.
%
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ GrayDirectClassPacket } image
} ifelse
} bind def
/GrayDirectClassPacket
{
%
% Get a DirectClass packet; convert to grayscale.
%
% Parameters:
% red
% green
% blue
% length: number of pixels minus one of this color (optional).
%
currentfile color_packet readhexstring pop pop
color_packet 0 get 0.299 mul
color_packet 1 get 0.587 mul add
color_packet 2 get 0.114 mul add
cvi
/gray_packet exch def
compression 0 gt
{
/number_pixels 1 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add def
} ifelse
0 1 number_pixels 1 sub
{
pixels exch gray_packet put
} for
pixels 0 number_pixels getinterval
} bind def
/GrayPseudoClassPacket
{
%
% Get a PseudoClass packet; convert to grayscale.
%
% Parameters:
% index: index into the colormap.
% length: number of pixels minus one of this color (optional).
%
currentfile byte readhexstring pop 0 get
/offset exch 3 mul def
/color_packet colormap offset 3 getinterval def
color_packet 0 get 0.299 mul
color_packet 1 get 0.587 mul add
color_packet 2 get 0.114 mul add
cvi
/gray_packet exch def
compression 0 gt
{
/number_pixels 1 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add def
} ifelse
0 1 number_pixels 1 sub
{
pixels exch gray_packet put
} for
pixels 0 number_pixels getinterval
} bind def
/PseudoClassPacket
{
%
% Get a PseudoClass packet.
%
% Parameters:
% index: index into the colormap.
% length: number of pixels minus one of this color (optional).
%
currentfile byte readhexstring pop 0 get
/offset exch 3 mul def
/color_packet colormap offset 3 getinterval def
compression 0 gt
{
/number_pixels 3 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add 3 mul def
} ifelse
0 3 number_pixels 1 sub
{
pixels exch color_packet putinterval
} for
pixels 0 number_pixels getinterval
} bind def
/PseudoClassImage
{
%
% Display a PseudoClass image.
%
% Parameters:
% class: 0-PseudoClass or 1-Grayscale.
%
currentfile buffer readline pop
token pop /class exch def pop
class 0 gt
{
currentfile buffer readline pop
token pop /depth exch def pop
/grays columns 8 add depth sub depth mul 8 idiv string def
columns rows depth
[
columns 0 0
rows neg 0 rows
]
{ currentfile grays readhexstring pop } image
}
{
%
% Parameters:
% colors: number of colors in the colormap.
% colormap: red, green, blue color packets.
%
currentfile buffer readline pop
token pop /colors exch def pop
/colors colors 3 mul def
/colormap colors string def
currentfile colormap readhexstring pop pop
systemdict /colorimage known
{
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ PseudoClassPacket } false 3 colorimage
}
{
%
% No colorimage operator; convert to grayscale.
%
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ GrayPseudoClassPacket } image
} ifelse
} ifelse
} bind def
/DisplayImage
{
%
% Display a DirectClass or PseudoClass image.
%
% Parameters:
% x & y translation.
% x & y scale.
% label pointsize.
% image label.
% image columns & rows.
% class: 0-DirectClass or 1-PseudoClass.
% compression: 0-RunlengthEncodedCompression or 1-NoCompression.
% hex color packets.
%
gsave
currentfile buffer readline pop
token pop /x exch def
token pop /y exch def pop
x y translate
currentfile buffer readline pop
token pop /x exch def
token pop /y exch def pop
currentfile buffer readline pop
token pop /pointsize exch def pop
/Helvetica findfont pointsize scalefont setfont
x y scale
currentfile buffer readline pop
token pop /columns exch def
token pop /rows exch def pop
currentfile buffer readline pop
token pop /class exch def pop
currentfile buffer readline pop
token pop /compression exch def pop
class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
grestore
} bind def
%%EndProlog
%%Page: 1 1
%%PageBoundingBox: 0 0 512 216
userdict begin
%%BeginData:
DisplayImage
0 0
512 216
12.000000
512 216
1
0
0
7
c0c0c0
f8fcf8
00fc00
000000
008080
f8fc00
008000
00ff00ff00120103000b010300a901050013010200ff0011001201010005020300050101
00aa010100010101001101010000010100ff001000120101000502030005010100aa0101
000101010011010100ff00130001010e0001010100050203000501010001019f00080101
000101010000010200000101000201030003010100050103000201020000010100020103
00020104000301030003010300030103000a01ce00010101000e01010005020300050101
00aa01040002010100000102000001010001010100010104000201010001010100020101
000001020000010100010101000101010001010100010101000101010001010100010101
000101010001010100d6010100010101000e0101000502030005010100aa010100050102
000001010000010500020101000401050002010200000101000001050001010100010101
00010101000501050002010100d90101000101010001010a000101010005020300050101
0001019f0008010100050101000401010006010100040101000601010004010100050101
00010101000101010005010100080101000a01ca000101010001010100010101000a0101
000502030005010100aa0101000501010004010100010101000201010004010100010101
000201010004010100010101000101010001010100010101000101010001010100010101
000101010001010100d20101000101010001010100010101000a01030003020300030103
00a901030003010300040103000201030004010300020103000401030002010100010101
00020103000301030003010300d3010100010101000101010001010100ff00f101010001
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
0101000101010001010100180301000103010004030100050302002c030200ff00920101
00010101000101010001010100180301000103010004030100060301002d030100ff0092
01010001010100010101000101010018030100010301000d0301002d030100ff00920101
000101010001010100010101001803010001030100020303000303040002030300030303
000a030500020303000303040002030300ff008b0101000101010001010100010101000b
030400070301000103010004030100020301000103010001030100010301000103010001
030100090301000003000000030100000301000103010001030100010301000103010001
03010009037c00ff00030101000101010001010100010101000b0301000a030100010301
000403010002030100010301000103050001030100010301000903010000030000000301
00000301000103010001030100010301000103050084030100ff00030101000101010001
010100010101000b0301000a030100010301000403010002030100010301000103010005
030100010301000903010000030000000301000003010001030100010301000103010001
03010088030100ff00030101000101010001010100010101000b0301000b030300050301
000203010001030100010301000103010001030100010301000903010000030000000301
0000030100010301000103010001030100010301000103010084030100ff000301010001
01010001010100010101000b0301000c0301000403050001030200000301000103030003
0303000a030100020301000103030003030200000301000103030085030100ff00030101
000101010001010100010101000b030100dd030100ff0003010100010101000101010001
0101000b030100dd030100ff00030101000101010001010100010101000b0301000204d7
0002030100ff00030101000101010001010100010101000b030100020408030304030304
040a030304020305041a0303048a0002030100ff00030101000101010001010100010101
000b03010002040703010401030104010301040203010408030104010301040103010420
0301047a030604080002030100ff00030101000101010001010100010101000b03010002
0407030104010301040103010401030204080301040103010401030104200301047a0306
04080002030100ff00030101000101010001010100010101000b03010002040703010401
0301040103010400030304000301040203010404030104010301040e0303040303030405
0301040303030402030204000301046a030404090002030100ff00030101000101010001
010100010101000b03010002040803030402030104000300040003010401030104000301
0404030104020304040a0301040103010401030104010301040403010402030104010301
04020301040003020469030404090002030100ff00030101000101010001010100010101
000b03010002040703010401030104010303040003010402030204040301040703010409
030104050301040103010404030104020301040103010402030204000301046a0302040a
0002030100ff00030101000101010001010100010101000b030100020407030104010301
040103020401030104020302040303010408030104090301040503010401030104040301
040203010401030104020301046e0302040a0002030100ff000301010001010100010101
00010101000b030100020407030104010301040103010402030104010301040003010401
030104010301040103010401030104090301040103010401030104010301040403010402
03010401030104020301046f0300040b0002030100ff0003010100010101000101010001
0101000b03010002040803030403030404010301040203010400030504020303040b0303
04030303040303050401030304020303046e0300040b0002030100ff0003010100010101
0001010100010101000b0301000204d70002030100ff0003010100010101000101010001
0101000b0301000204d70002030100ff00030101000101010001010100010101000b0301
00dd030100ff00030101000101010001010100010101000b030100dd030100ff00030101
000101010001010100010101000b030100dd030100ff0003010100010101000101010001
0101000b030100dd030100ff00030101000101010001010100010101000b030100dd0301
00ff00030101000101010001010100010101000b03e100ff000301010001010100010101
0001010100ff00f1010100010101000101010001010100ff00f101010001010100010101
0001010100ff00f1010100010101000101010001010100ff00f101010001010100010101
0001010100ff00f1010100010101000101010001010100ff00f101010001010100010101
0001010100ff00f101010001010100010101000101010018030400120302002603020005
03010003030300ff00830101000101010001010100010101001903010000030100120301
00060300001d030100000301000403010005030100ff0083010100010101000101010001
010100190301000103010011030100050301001d0301000f030100ff0083010100010101
000101010001010100190301000103010001030300030303000303010001030100000305
000203030002030100000302000a030100050303000503010003030300ff007b01010001
01010001010100010101000b030400080301000103010000030100010301000103010001
030100020301000003010002030100040301000103010002030100010301000803040005
03010005030100020301000103010009036c00ff00030101000101010001010100010101
000b0301000b030100010301000003050002030100050303000303010004030100010301
0002030100010301000903010007030100050301000203050074030100ff000301010001
01010001010100010101000b0301000b0301000103010000030100080301000303010000
030100020301000403010001030100020301000103010009030100070301000503010002
03010078030100ff00030101000101010001010100010101000b0301000b030100000301
000103010001030100010301000103010002030100010301000103010000030100010301
000103010002030100010301000903010007030100050301000203010001030100740301
00ff00030101000101010001010100010101000b0301000a030400030303000303030002
030200010301000203020003030300030304000903030004030500010305000103030075
030100ff00030101000101010001010100010101000b0301003b0301009f030100ff0003
0101000101010001010100010101000b0301003a0303009e030100ff0003010100010101
0001010100010101000b030100dd030100ff00030101000101010001010100010101000b
0301000e0301000a0301000e0303003c0302000403010065030100ff0003010100010101
0001010100010101000b0301000d0301000c0301000c030100010301002a030000100301
00040301001c03000047030100ff00030101000101010001010100010101000b0301000c
0301000e0301000a0301000203010029030100100301002203010047030100ff00030101
000101010001010100010101000b0301000b030100100301000903010005050100010501
00010302000003010001030200000301000203030002030400020305000a030400020303
000203020000030100020303000303030002030500020303000203020000030100020301
00010301002b030100ff00030101000101010001010100010101000b0301000b03010010
030100090301000505010001050100020301000003020001030100000302000003010001
0301000103010001030100020301000c0301000103010004030100030301000003020000
030100010301000103010001030100020301000403010001030100020301000003020001
030100010301002b030100ff00030101000101010001010100010101000b0301000b0301
001003010009030100050501000105010002030200000301000103020000030100000305
000103010001030100020301000c03010001030100040301000303020000030100000305
0001030100060301000403010001030100020302000003010001030100010301002b0301
00ff00030101000101010001010100010101000b0301000c0301000e0301000a03010002
03010000050100010501000203010005030100040301000503010001030100020301000c
030100010301000403010003030100040301000503010006030100040301000103010002
03010005030100010301002b030100ff00030101000101010001010100010101000b0301
000d0301000c0301000c0301000103010000050100010501000203010005030100040301
000103010001030100010301000203010000030100090301000103010004030100030301
000403010001030100010301000103010002030100000301000103010001030100020301
00060303002c030100ff00030101000101010001010100010101000b0301000e0301000a
0301000e0303000205020000050100000303000303030004030300020301000103010003
0302000b0302000003010001030500000303000403030003030300040302000303030002
030300070301002c030100ff00030101000101010001010100010101000b030100ad0301
002d030100ff00030101000101010001010100010101000b030100aa0303002e030100ff
00030101000101010001010100010101000b030100dd030100ff00030101000101010001
010100010101000b0301000e0301000a0301000e03030013030200050501001403020005
03010003030300150302000403010045030100ff00030101000101010001010100010101
000b0301000d0301000c0301000c03010001030100110301000003010004050100130301
0000030100040301000503010016030100040301001c03000027030100ff000301010001
01010001010100010101000b0301000c0301000403010001030100030301000a03010002
030100110301001d0301000f030100160301002203010027030100ff0003010100010101
0001010100010101000b0301000b03010006030300050301000903010006030300020304
0003030100050503000303020000030100090301000503030005030100030303000b0304
000203030002030200000301000203030003030300020305000203030002030200000301
0002030100010301000b030100ff00030101000101010001010100010101000b0301000b
030100040307000303010009030100050301000103010001030100010301000103040005
050100020301000103010009030400050301000503010002030100010301000903010001
030100040301000303010000030200000301000103010001030100010301000203010004
03010001030100020301000003020001030100010301000b030100ff0003010100010101
0001010100010101000b0301000b03010006030300050301000903010005030100010301
000103010001030100020301000705010002030100010301000a03010007030100050301
000203050009030100010301000403010003030200000301000003050001030100060301
000403010001030100020302000003010001030100010301000b030100ff000301010001
01010001010100010101000b0301000c0301000403010001030100030301000a03010002
03010000030100010301000103010001030100020301000705010002030100010301000a
0301000703010005030100020301000d0301000103010004030100030301000403010005
0301000603010004030100010301000203010005030100010301000b030100ff00030101
000101010001010100010101000b0301000d0301000c0301000c03010001030100000301
000103010001030100010301000203010007050100030304000a03010007030100050301
000203010001030100090301000103010004030100030301000403010001030100010301
00010301000203010000030100010301000103010002030100060303000c030100ff0003
0101000101010001010100010101000b0301000e0301000a0301000e0303000203030002
03010001030100010303000405050004030100090303000403050001030500010303000b
030200000301000103050000030300040303000303030004030200030303000203030007
0301000c030100ff00030101000101010001010100010101000b03010052030100010301
00740301000d030100ff00030101000101010001010100010101000b0301005303030072
0303000e030100ff00030101000101010001010100010101000b030100dd030100ff0003
0101000101010001010100010101000b030100dd030100ff000301010001010100010101
00010101000b030100dd030100ff00030101000101010001010100010101000b030100dd
030100ff00030101000101010001010100010101000b030100dd030100ff000301010001
01010001010100010101000b03e100ff0003010100010101000101010001010100ff00f1
010100010101000101010001010100ff00f1010100010101000101010001010100ff00f1
010100010101000101010001010100ff00f1010100010101000101010001010100ff00f1
010100010101000101010001010100ff00f1010100010101000101010001010100ff00f1
0101000101010001010100010101001a030100f503020015030100c30101000101010001
01010001010100190303000c030000e5030100000301000b03000007030100c301010001
010100010101000101010018030100010301000a030100e40301000203010009030100cd
010100010101000101010001010100180301000103010001030100010301000103050002
0303000b03030003030300020301000103010002030300b2030100020301000003010000
0302000103050002030300030303000203040003030300ab010100010101000101010001
0101000b0304000703010001030100010301000103010002030100040301000103010009
030100010301000503010001030100010301000103010001030100090384001503040007
030100020301000103010001030100010301000703010002030100010301000103010001
0301000103010001030100090394000b0101000101010001010100010101000b0301000a
03050001030100010301000203010004030100010301000a030100050304000103010001
030100010305008c030100150301000a0301000203010001030100010301000103010007
03010002030100010301000103010001030100020301009f0301000b0101000101010001
010100010101000b0301000a030100010301000103010001030100020301000403010001
0301000c030100020301000103010001030100010301000103010090030100150301000a
030100020301000103010001030100010301000703010002030100010301000103010001
030100040301009d0301000b0101000101010001010100010101000b0301000a03010001
030100010301000103010002030100000301000103010001030100090301000103010001
030100010301000203030002030100010301008c030100150301000b0301000003010002
030100010301000103010000030100040301000203010001030100010301000103010001
030100010301009c0301000b0101000101010001010100010101000b0301000a03010001
030100020302000003010002030200030303000b03030003030200000301000203010004
0303008d030100150301000c030200030304000303020003030500010303000203010001
030100020303009d0301000b0101000101010001010100010101000b030100dd03010015
03010013030100c70301000b0101000101010001010100010101000b030100dd03010015
03010012030300c60301000b0101000101010001010100010101000b030100dd03010015
030100dd0301000b0101000101010001010100010101000b0301000c0303000b03030009
030600030302000403010024050200050301000303030065030100150301000c0303000b
0303000b05010043030200670301000b0101000101010001010100010101000b0301000c
0301000f0301000a030100020300000403010004030100040300001d0501000005010004
0301000503010065030100150301000c0301000f0301000a0503000c030000160300001d
030100670301000b0101000101010001010100010101000b0301000c0301000f0301000a
030100080301000a0301001d0501000f03010065030100150301000c0301000f03010009
050100010501000a030100150301001d030100670301000b010100010101000101010001
0101000b0301000c0301000f0301000a0301000103000002030400020303000203050002
03030002030200000301000a050100050303000503010003030300030303005503010015
0301000c0301000f0301000905010001050100010301000103010001030500020303000a
030500010302000003010002030300030303000303010001030100090303000303030002
03010001030100010302000003010002030300030303002d0301000b0101000101010001
010100010101000b0301000c0301000f0301000a03040001030100010301000403010003
030100040301000103010002030100000302000805040005030100050301000203010001
030100010301000103010054030100150301000c0301000f030100090501000105010001
030100010301000203010004030100010301000a03010005030100000302000403010001
030100010301000203010000030100090301000103010001030100010301000103010001
0301000203010000030200000301000103010001030100010301002c0301000b01010001
01010001010100010101000b0301000c0301000f0301000a030100010300000103010001
030100040301000303010004030100010301000203020000030100090501000703010005
030100020305000203010057030100150301000c0301000f030100090505000103010001
0301000203010004030100010301000a0301000503020000030100010304000103010006
0303000b0301000403010001030100010301000103010002030200000301000003010005
0305002c0301000b0101000101010001010100010101000b0301000c0301000f0301000a
030100040301000103010004030100030301000403010001030100020301000d05010007
03010005030100020301000803010055030100150301000c0301000f0301000905010001
05010001030100010301000203010004030100010301000a030100050301000403010001
0301000103010006030100000301000c0301000203010001030100010301000103010002
0301000403010005030100300301000b0101000101010001010100010101000b0301000c
0301000f0301000a03010002030000000301000103010004030100030301000003010001
03010001030100020301000d050100070301000503010002030100010301000103010001
03010054030100150301000c0301000f0301000905010001050100010301000103010002
0301000003010001030100010301000a0301000003010002030100040301000103010001
030100010301000203010001030100080301000103010001030100010301000103010001
03010002030100040301000103010001030100010301002c0301000b0101000101010001
010100010101000b0301000c0303000b0303000903060001030200000301000103050002
03020003030300020303000b050300040305000103050001030300030303005503010015
0301000c0303000b0303000905010001050100020302000003010002030200030303000c
030200020303000403020000030100010303000203020001030100090303000303030003
030200000301000003030004030300030303002d0301000b010100010101000101010001
0101000b030100dd03010015030100dd0301000b0101000101010001010100010101000b
030100dd03010015030100dd0301000b0101000101010001010100010101000b030100dd
03010015030100dd0301000b0101000101010001010100010101000b0301000c03030001
0301000103010003030300090506001303010095030100150301000c0303000103010001
030100030303000b03030002050300a50301000b0101000101010001010100010101000b
0301000c0301000303010001030100050301000a0501000205000013030100340300005f
030100150301000c0301000303010001030100050301000a030100010301000305010054
0300004f0301000b0101000101010001010100010101000b0301000c0301000303010001
030100050301000a0501004d0301005f030100150301000c030100030301000103010005
030100090301000203010003050100530301004f0301000b010100010101000101010001
0101000b0301000c03010004030300060301000a05010001050000010304000203010001
030100020303000203020000030100020303000203040002030500020303000203040002
0305005c030100150301000c030100040303000603010009030100080501000303030003
030300030303000b030300020304000b03020000030100010303000a030500020303000b
030300030303000203010001030100010302000003010002030300030303000d0301000b
0101000101010001010100010101000b0301000c03010005030100070301000a05040001
030100010301000103010001030100040301000303010000030200000301000103010001
030100010301000103010000030000000301000003010001030100010301000103010002
0301005f030100150301000c030100050301000703010009030100080501000203010001
030100010301000103010001030100010301000903010001030100010301000103010009
0301000103010001030100010301000a0301000403010001030100090301000103010001
030100010301000103010001030100020301000003020000030100010301000103010001
0301000c0301000b0101000101010001010100010101000b0301000c0301000403030006
0301000a0501000105000001030100010301000103010001030100040301000303020000
030100000301000103010001030100010301000103010000030000000301000003050001
03010001030100020301005f030100150301000c03010004030300060301000903010008
050100020301000103010002030100040305000903010001030100010301000103010009
0301000103010001030100010301000a03010004030100010301000a0301000403010001
0301000103010001030100020302000003010000030100050305000c0301000b01010001
01010001010100010101000b0301000c0301000303010001030100050301000a05010004
030100010301000103010001030100040301000303010004030100010301000103010001
030100010301000003000000030100000301000503010001030100020301005f03010015
0301000c0301000303010001030100050301000903010002030100030501000203010001
03010004030100020301000d030100010301000103010001030100090301000103010001
030100010301000a03010004030100010301000c03010002030100010301000103010001
030100020301000403010005030100100301000b0101000101010001010100010101000b
0301000c0301000303010001030100050301000a05010002050000000301000103010002
030300050301000303010004030100010301000103010001030100010301000003000000
0301000003010001030100010301000103010002030100000301005c030100150301000c
0301000303010001030100050301000a0301000103010003050100020301000103010001
030100010301000103010001030100090301000103010001030100010301000a03040001
030100010301000a03010000030100010301000103010009030100010301000103010001
030100010301000103010002030100040301000103010001030100010301000c0301000b
0101000101010001010100010101000b0301000c03030001030100010301000303030009
050600000301000103010003030100040305000003030004030300020301000103010001
03010002030100010303000203010001030100030302005d030100150301000c03030001
03010001030100030303000b030300020505000103030003030300030303000b03030002
030100010301000d030100020303000c030200030303000b030300030303000303020000
0301000003030004030300030303000d0301000b0101000101010001010100010101000b
030100dd030100150301007203010001030100640301000b010100010101000101010001
0101000b030100dd0301001503010073030300650301000b010100010101000101010001
0101000b030100dd03010015030100dd0301000b0101000101010001010100010101000b
0301000c030300010301000103010003030300090504001203020097030100150301000c
0303000103010001030100030303000b030300010502002f030200040301006d0301000b
0101000101010001010100010101000b0301000c0301000303010001030100050301000a
0501000005010012030100060300008f030100150301000c030100030301000103010005
0301000a030100010301000105010030030100040301006d0301000b0101000101010001
010100010101000b0301000c0301000303010001030100050301000a0501000105010011
030100050301008f030100150301000c0301000303010001030100050301000903010002
0301000105010030030100740301000b0101000101010001010100010101000b0301000c
03010004030300060301000a050100010501000103030003030300030301000103010000
0305000203030002030100000302007c030100150301000c030100040303000603010009
030100060501000005010002030300020304000303020000030100010303000b03040002
03030002030200000301000a030300020304000b03030002030100000302000203030002
030400250301000b0101000101010001010100010101000b0301000c0301000503010007
0301000a0501000105010000030100010301000103010001030100020301000003010002
030100040301000103010002030100010301007b030100150301000c0301000503010007
030100090301000605020000050100040301000103010001030100010301000103010001
030100010301000903010001030100040301000303010000030200080301000103010001
030100010301000903010001030100020301000103010000030100010301000103010001
030100240301000b0101000101010001010100010101000b0301000c0301000403030006
0301000a0501000105010000030500020301000503030003030100040301000103010002
030100010301007b030100150301000c0301000403030006030100090301000605010001
050100010304000103010001030100010301000103010001030500090301000103010004
030100030302000003010008030100010301000103010001030100090301000103010002
03010001030100000305000103010001030100240301000b010100010101000101010001
0101000b0301000c0301000303010001030100050301000a050100010501000003010008
030100030301000003010002030100040301000103010002030100010301007b03010015
0301000c0301000303010001030100050301000903010002030100010501000105010000
0301000103010001030100010301000103010001030100010301000d0301000103010004
030100030301000c03010001030100010301000103010009030100010301000203010001
030100000301000503010001030100240301000b0101000101010001010100010101000b
0301000c0301000303010001030100050301000a05010000050100010301000103010001
030100010301000203010001030100010301000003010001030100010301000203010001
0301007b030100150301000c0301000303010001030100050301000a0301000103010001
050100010501000003010001030100010301000103010002030400010301000103010009
0301000103010004030100030301000c0301000103010001030100010301000903010001
030100020301000103010000030100010301000103010001030100240301000b01010001
01010001010100010101000b0301000c0303000103010001030100030303000905040003
0303000303030002030200010301000203020003030300030304007c030100150301000c
0303000103010001030100030303000b0303000105020001050100010302000003010000
0301000103010005030100020303000b0302000003010001030500000303000c03030002
030100010301000a03030003030400020303000203010001030100240301000b01010001
01010001010100010101000b0301005b0301007f030100150301004a0301000103010052
030100370301000b0101000101010001010100010101000b0301005a0303007e03010015
0301004b03030052030300360301000b0101000101010001010100010101000b030100dd
03010015030100dd0301000b0101000101010001010100010101000b030100dd03010015
030100dd0301000b0101000101010001010100010101000b030100dd03010015030100dd
0301000b0101000101010001010100010101000b030100dd03010015030100dd0301000b
0101000101010001010100010101000b030100dd03010015030100dd0301000b01010001
01010001010100010101000b03e1001503e1000b010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
00f1010100010101000101010001010100ff00f101010001010100010101000101010070
063f0097063f006801010001010100010101000101010070061901020602050206010501
061800970609030306220303060a00680101000101010001010100010101007006180101
06000101060205010601050106180097060803010601030106230301060a006801010001
010100010101000101010070061701010602010106010501060005010619009706070301
0602030106230301060a0068010100010101000101010001010100700617010106020101
060105010600050106190097060703010606030306020304060303030603030306050301
060a006801010001010100010101000101010070061701010602010106010503061a0097
060703010609030106010301060103010601030106010301060103010601030106040301
060a00680101000101010001010100010101007006170101060201010601050106000501
06190307008f06070301060603040601030106010301060103010605030506040301060a
030700600101000101010001010100010101007006170101060201010601050106000501
06190307008f060703010602030106000301060103010601030106010301060103010605
030106080301060a03070060010100010101000101010001010100700618010106000101
060205010601050106180307008f06080301060103010600030106010301060103010601
03010601030106010301060103010601030106040301060a030700600101000101010001
010100010101007006190102060205020601050106180307008f06090303060203020600
030106000301060103010602030306030303060303050608030700600101000101010001
0101000101010070063f0307008f063f0307006001010001010100010101000101010070
063f0307008f063f0307006001010001010100010101000101010078033f0097033f0060
01010001010100010101000101010078033f0097033f0060010100010101000101010001
01010078033f0097033f006001010001010100010101000101010078033f0097033f0060
01010001010100010101000101010078033f0097033f0060010100010101000101010001
01010078033f0097033f0060010100010101000101010001010100ff00f1010100010101
000101010001010100ff00f1010100010101000101010001010100ff00f1010100010101
000101010001010100ff00f1010100010101000101010001010100ff00f1010100010101
000101010001010100ff00f1010100010101000101010001010100ff00f1010100010101
000101010001010100ff00f1010100010101000101010001010100ff00f1010100010101
000101010001010100ff00f101010001010100010101000101ff01f50001010100010101
00ff00f901010001010100ff00f90101000101ff01fd00ff00ff00ff00ff00ff00ff00ff
00ff
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 511 215
%%EOF
|