summaryrefslogtreecommitdiff
path: root/fpcdocs/pics/ide/oedesk.eps
blob: 80fbbb802753ce0458271a277955b9612cef0e39 (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
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (oedesk.eps)
%%CreationDate: (Sun Dec  3 00:55:58 2000)
%%BoundingBox: 0 0 318 179
%%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 319 180
userdict begin
%%BeginData:
DisplayImage
0 0
319 180
12.000000
319 180
1
0
0
8
c0c0c0
f8fcf8
00fc00
f8fc00
008080
000000
008000
00fcf8
00ff003e00120103000b0103002901040012010200240105001301020090001201010005
020300050101002a0101000001010012010100060100001d010100010101001101010000
0101008f001201010005020300050101002a0101000101010011010100050101001d0101
000101010011010100920001010e0001010100050203000501010001011f000801010001
01010001010300030103000301010001010100000105000201030002010100000102000a
010100010101000001020000010100020103000301010005010300020102000001010002
010300020104000301030003010300030103000a014d00010101000e0101000502030005
0101002a0101000101010000010100010101000101010001010100020101000001010002
010100040101000101010002010100010101000901040002010100000102000001010001
010100010104000201010001010100020101000001020000010100010101000101010001
01010001010100010101000101010001010100010101000101010056010000010101000e
01010005020300050101002a010100010101000001050002010100050103000301010004
010100010101000201010001010100090101000501020000010100000105000201010004
010500020102000001010000010500010101000101010001010100050105000201010059
0100000101010001010a0001010100050203000501010001011f00080101000101010000
010100080101000301010000010100020101000401010001010100020101000101010009
010100050101000401010006010100040101000601010004010100050101000101010001
01010005010100080101000a014a000101000001010100010101000a0101000502030005
0101002a0101000001010001010100010101000101010001010100020101000101010001
010100000101000101010001010100020101000101010009010100050101000401010001
010100020101000401010001010100020101000401010001010100010101000101010001
010100010101000101010001010100010101000101010052010100010100000101010001
0101000a0103000302030003010300290104000301030003010300020102000101010002
010200030103000301040009010300030103000401030002010300040103000201030004
010300020101000101010002010300030103000301030053010100010100000101010001
01010079010100b501010001010000010101000101010078010300b40101000101000001
01010001010100ff0031010100010100000101010001010100ff00310101000101000001
01010001010100ff0031010100010100000101010001010100ff00310101000101000001
01010001010100ff0031010100010100000101010001010100ff00310101000101000001
01010001010100ff0031010100010100000101010001010100ff00310101000101000001
01010001010100ff0031010100010100000101010001010100ff00310101000101000001
01010001010100ff0031010100010100000101010001010100ff00310101000101000001
01010001010100ff0031010100010100000101010001010100100305003c010200640101
007301010001010000010101000101010011030100010301003c01010064010100730101
0001010000010101000101010011030100010301003c010100da01010001010000010101
000101010011030100010301000001020000010100020103000301030003010300020102
0000010100010101000101010002010300030104000a0103000301030002010200000101
000201030003010300030103000b01030003010300030103000301030003010300030103
0002010400030103005b0101000101000001010100010101001103040002010100000102
000001010001010100010101000101010001010100010101000201010000010200000101
0001010100010101000101010001010100010101000d0101000101010001010100020101
000001020000010100010101000101010001010100010101000101010009010100010101
000101010001010100010101000101010001010100010101000401010002010100010101
00010101000101010001010100010101005a010100010100000101010001010100110301
000501020000010100000105000201010004010500020102000001010000010100010101
000101050001010100010101000a01040001010100060102000001010000010100010101
0002010100050101000d0101000401050002010100050101000701010002010100010101
000101010001010100020101005d01010001010000010101000101010011030100050101
000401010008010100020101000601010004010100010101000101010005010100010101
0009010100010101000101010006010100040101000101010004010100050101000d0101
000201010008010100050101000501010002010100010101000101010001010100040101
005b01010001010000010101000101010011030100050101000401010001010100010101
000101010001010100010101000201010005010300020101000101010001010100010101
000901010001010100010101000101010002010100040101000101010001010100010101
000101010001010100090101000101010001010100010101000101010001010100010101
0001010100040101000201010001010100010101000101010001010100010101005a0101
000101000001010100010101001003030003010300040103000301030003010300020103
000501010004010300030102000001010009010200000101000101030002010300040103
0003010300030103000b0103000301030003010300030103000301050001010300020101
0001010100020103005b010100010100000101010001010100ff00310101000101000001
01010001010100ff00310101000101000001010100010101000804ff041f000801010001
010000010101000101010008040901030401010104010101040301030409030104010301
04040101043301030405010104aa00080101000101000001010100010101000804090101
040301010401010104050101040903010401030104040101040c01000427010104050101
040c0100049c000801010001010000010101000101010008040901010403010104010101
040501010409030104010301041201010427010104130101049c00080101000101000001
010100010101000804090101040401030406010104090301040103010402010304030103
040201050402010304020102040001010402010104010101040b01010403010304030103
040201050402010304920008010100010100000101010001010100080409010104050101
040701010409030504040101040201010401010104020101040401010401010104020101
040001020401010104010101040b01010405010104020101040101010402010104040101
040101010491000801010001010000010101000101010008040901010404010304060101
040903010401030104040101040301010405010104040101040101010402010204000101
0401010104010101040b0101040501010403010104050101040501010494000801010001
010000010101000101010008040901010403010104010101040501010409030104010301
0404010104050101040301010404010104010101040201010405010104010101040b0101
040501010405010104030101040701010492000801010001010000010101000101010008
040901010403010104010101040501010409030104010301040401010402010104010101
040201010400010104010101040101010402010104060103040c01010405010104020101
040101010402010104000101040101010401010104910008010100010100000101010001
010100080409010304010101040101010403010304090301040103010402010504010103
04040102040301030402010304070101040a010504010105040101030404010204030103
0492000801010001010000010101000101010008045a010104c200080101000101000001
01010001010100080457010304c300080101000101000001010100010101000804ff041f
00080101000101000001010100010101000804090503040b0503040b0303040205030405
0501040a0502041f050204b100080101000101000001010100010101000804090501040f
0501040a0301040103010403050104050501040b05010420050104230500041605000474
00080101000101000001010100010101000804090501040f050104090301040203010403
050104130501042005010422050104150501047400080101000101000001010100010101
000804090501040f05010409030104080501040305030402050104000502040205040402
050304030503040205020400050104020504040a05030403050304020504040205050402
05030402050404020505047100080101000101000001010100010101000804090501040f
050104090301040805010405050104030501040105010401050104010501040005010401
050104050501040205010400050204000501040105010409050104010501040105010401
050104010501040105010402050104040501040105010401050104010501040205010474
00080101000101000001010100010101000804090501040f050104090301040805010405
050104030501040105010401050104010501040005010401050104020504040205020400
050104000501040105010409050104050501040105010401050104010501040205010404
050504010501040105010402050104740008010100010100000101010001010100080409
0501040f0501040903010402030104030501040505010403050104010501040105010401
050104000501040105010401050104010501040205010404050104010501040905010405
050104010501040105010401050104020501040405010405050104010501040205010474
00080101000101000001010100010101000804090501040f0501040a0301040103010403
050104050501040305010401050104010501040105010400050104010501040105010401
050104020501040405010401050104090501040105010401050104010501040105010401
050104020501040005010401050104010501040105010401050104020501040005010471
00080101000101000001010100010101000804090503040b0503040b0303040205050401
050504010504040105010400050204020503040305020400050104000503040405020400
050104090503040305030402050104010501040305020403050304020501040105010403
050204720008010100010100000101010001010100080440050104dc0008010100010100
00010101000101010008043f050304db00080101000101000001010100010101000804ff
041f00080101000101000001010100010101000804090503040b05030409030104020301
0418050204470501048a00080101000101000001010100010101000804090501040f0501
0409030104020301040a0500040d050104470501048a0008010100010100000101010001
0101000804090501040f0501040903010402030104090501040d050104d4000801010001
01000001010100010101000804090501040f050104090301040203010401050304020505
040205030403050104000501040a05030402050104020501040005010400050204010502
040005010402050304030503040305030403050304030503040205040403050304720008
0101000101000001010100010101000804090501040f0501040903010400030004000301
040405010402050104040501040105010402050204000501040805010401050104020501
040005010402050104010501040105010400050204000501040105010401050104010501
040105010401050104040501040205010401050104010501040105010401050104010501
047100080101000101000001010100010101000804090501040f05010409030104000300
040003010401050404020501040405010406050104010501040805050403050204030501
040105010401050204000501040005050402050104050501040705010402050104010501
040105010401050104020501047400080101000101000001010100010101000804090501
040f0501040a030104000301040105010401050104020501040405010406050104010501
040805010407050204030501040105010401050104040501040805010405050104050501
040205010401050104010501040105010404050104720008010100010100000101010001
0101000804090501040f0501040a03010400030104010501040105010402050104000501
040105010401050104020501040105010408050104010501040205010400050104020501
040105010401050104040501040105010401050104010501040105010401050104040501
040205010401050104010501040105010401050104010501047100080101000101000001
010100010101000804090503040b0503040a030104000301040205020400050104020502
040305030402050204010501040905030402050104020501040105040401050304040503
040305030403050304030505040105030402050104010501040205030472000801010001
0100000101010001010100080468050104b4000801010001010000010101000101010008
0467050304b300080101000101000001010100010101000804ff041f0008010100010100
0001010100010101000804090503040b050304090305041905020417050104ba00080101
000101000001010100010101000804090501040f0501040a030104010301041905010417
0501040c050004ac00080101000101000001010100010101000804090501040f0501040a
030104010301041905010425050104ac0008010100010100000101010001010100080409
0501040f0501040a03010401030104000502040005010402050304030503040305010401
05010400050104000502040205030403050304020504040205050402050304a200080101
000101000001010100010101000804090501040f0501040a030404020501040005020400
050104010501040505010402050104000501040205010401050104000501040105010404
0501040205010401050104020501040405010401050104a1000801010001010000010101
00010101000804090501040f0501040a0301040103010401050204000501040005050402
050404020503040305010401050104000501040105010404050104020501040105010402
05010405050104a400080101000101000001010100010101000804090501040f0501040a
030104010301040105010404050104050501040105010402050104000501040205010401
05010400050104010501040405010402050104010501040205010407050104a200080101
000101000001010100010101000804090501040f0501040a030104010301040105010404
050104010501040105010401050104020501040105010401050104010501040005010401
05010404050104020501040105010402050104000501040105010401050104a100080101
000101000001010100010101000804090503040b05030409030504010503040405030403
050204000501040005020401050104010504040205030403050504000501040105010403
05020403050304a20008010100010100000101010001010100080450050104cc00080101
0001010000010101000101010008044f050304cb00080101000101000001010100010101
000804ff041f000801010001010000010101000101010008040905030401050104010501
04030503040b0302042d0501040d050204b1000801010001010000010101000101010008
04090501040305010401050104050501040a030104000301042c0501040e050104b10008
010100010100000101010001010100080409050104030501040105010405050104090301
04020301043c050104b10008010100010100000101010001010100080409050104040503
04060501040903010402030104000501040005020402050304020504040a050104020501
04010503040205040403050404020503040205010402050104010503049a000801010001
010000010101000101010008040905010405050104070501040903010402030104010501
040105010400050104010501040105010401050104090501040205010403050104020501
040105010401050104010501040105010401050104010501040205010400050104010501
049900080101000101000001010100010101000804090501040405030406050104090301
040203010401050104010501040005050401050104010501040905010400050004000501
040305010402050104010501040105010401050104010501040105010401050104000500
0400050104010501049c0008010100010100000101010001010100080409050104030501
040105010405050104090301040203010401050104010501040005010405050104010501
040905010400050004000501040305010402050104010501040105010401050104010501
0401050104010501040005000400050104030501049a0008010100010100000101010001
0101000804090501040305010401050104050501040a0301040003010402050104010501
04000501040105010401050104010501040a050104000501040405010402050104010501
040105010401050104010501040105010402050104000501040105010401050104990008
0101000101000001010100010101000804090503040105010401050104030503040b0302
04030504040205030402050104010501040a050104000501040205050400050104010501
040205020400050104010503040305010400050104020503049a00080101000101000001
01010001010100080430050104ec000801010001010000010101000101010008042f0503
04eb00080101000101000001010100010101000804ff041f000801010001010000010101
00010101000804090503040b0503040a030304120502040d0503040d0501040c0502042d
0501047a00080101000101000001010100010101000804090501040f0501040903010401
030104120501040f0501040d0501040b0501040005010423050004070501047a00080101
000101000001010100010101000804090501040f0501040903010401030104120501040f
0501041b050104250501048400080101000101000001010100010101000804090501040f
050104090301040605010401050104000505040205040402050304050501040b05030402
050404030501040505030402050204000501040105050402050304020505040205030403
050304020504046a00080101000101000001010100010101000804090501040f0501040a
030204040501040105010400050104000500040005010401050104010501040005010401
050104040501040d05010402050104010501040105040402050104010501040205010400
050204000501040005000400050104040501040205010407050104020501040105010401
050104010501046900080101000101000001010100010101000804090501040f0501040c
030104030501040105010400050104000500040005010401050104010501040005010401
050104040501040d05010402050104010501040205010404050104010501040205020400
050104000501040005000400050104010504040205010407050104020501040105010401
050104010501046900080101000101000001010100010101000804090501040f05010409
030104010301040205010401050104000501040005000400050104010501040105010400
05010401050104040501040d050104020501040105010402050104040501040105010402
050104040501040005000400050104000501040105010402050104070501040205010401
05010401050104010501046900080101000101000001010100010101000804090501040f
050104090301040103010403050304010501040005000400050104010501040105010400
05010401050104040501040d050104020501040105010402050104040501040105010402
050104040501040005000400050104000501040105010402050104000501040405010402
050104010501040105010401050104690008010100010100000101010001010100080409
0503040b0503040a03030406050104010501040205010400050104000502040205030403
050504090505040005010401050104010503040405030402050304030501040205010401
050204000501040205020403050504010503040205010401050104690008010100010100
000101010001010100080432050104ea000801010001010000010101000101010008042f
050304eb00080101000101000001010100010101000804ff041f00080101000101000001
010100010101000804090503040105010401050104030503040b0503040c0302040b0503
041a0503043d050204020503040505010462000801010001010000010101000101010008
04090501040305010401050104050501040a050104010501040c0301040a050104010501
041b0501040c0500043005010404050104050501040c0500045400080101000101000001
0101000101010008040905010403050104010501040505010409050104020501040c0301
0409050104020501041b0501040b05010430050104040501041305010454000801010001
010000010101000101010008040905010404050304060501040905010406050304030304
040205030402050104060503040205050401050104000502040405010403050304020505
04020503040a050104020501040105030402050204000501040205040404050104030503
040305030402050504510008010100010100000101010001010100080409050104050501
040705010409050104050501040105010401030104010301040105010401050104010501
040505010401050104010501040005000400050104010501040105010403050104020501
040105010402050104040501040105010409050104020501040005010401050104020501
040005020400050104010501040405010405050104020501040105010402050104540008
010100010100000101010001010100080409050104040503040605010409050104050501
040105010401030104010301040105050401050104050501040105010401050104000500
040005010401050104010501040305010402050504020501040405050409050104000500
040005010400050104010501040205020400050104000501040105010404050104050501
040305010405050104540008010100010100000101010001010100080409050104030501
040105010405050104090501040205010400050104010501040103010401030104010501
040505010402050104000501040105010401050104000500040005010401050104010501
04030501040205010406050104040501040d050104000500040005010400050104010501
040205010404050104010501040405010405050104050501040305010454000801010001
01000001010100010101000804090501040305010401050104050501040a050104010501
040005010401050104010301040103010401050104010501040205010401050104000501
040105010401050104000500040005010401050104010501040305010402050104010501
04020501040005010401050104010501040a050104000501040105010401050104020501
040405010401050104040501040505010402050104010501040205010400050104510008
0101000101000001010100010101000804090503040105010401050104030503040b0503
040205030403030204000301040105030404050304020503040205010402050104010504
04020505040105030404050204030503040b050104000501040205030402050304040502
040005010401050504010505040105030404050204520008010100010100000101010001
010100080460050104bc000801010001010000010101000101010008045f050304bb0008
0101000101000001010100010101000804ff041f00080101000101000001010100010101
000804090503040105010401050104030503040b0503040c050204090305041a050304b2
00080101000101000001010100010101000804090501040305010401050104050501040a
050104010501040c0501040903000400030104000300041c0501040c050004a400080101
000101000001010100010101000804090501040305010401050104050501040905010402
0501040c0501040b0301041e0501040b050104a400080101000101000001010100010101
000804090501040405030406050104090501040605030403050404020503040403010404
050304020505040105010400050204040501040305030402050504020503040305030492
000801010001010000010101000101010008040905010405050104070501040905010405
050104010501040105010401050104010501040105010403030104030501040105010401
050104000500040005010401050104010501040305010406050104020501040405010401
050104010501040105010491000801010001010000010101000101010008040905010404
050304060501040905010405050104010501040105010401050104010505040303010403
050504010501040005000400050104010501040105010403050104030504040205010404
050504020501049400080101000101000001010100010101000804090501040305010401
050104050501040905010402050104000501040105010401050104010501040105010407
030104030501040505010400050004000501040105010401050104030501040205010401
050104020501040405010408050104920008010100010100000101010001010100080409
0501040305010401050104050501040a0501040105010400050104010501040105010401
050104010501040105010403030104030501040105010401050104000500040005010401
050104010501040305010402050104010501040205010400050104010501040105010401
050104010501049100080101000101000001010100010101000804090503040105010401
050104030503040b05030402050304030502040005010401050304030303040305030402
050104020501040105040402050504010502040005010402050204030503040305030492
0008010100010100000101010001010100080460050104bc000801010001010000010101
000101010008045f050304bb0008010100010100000101010001010100ff003101010001
0100000101010001010100ff0031010100010100000101010001010100ff003101010001
0100000101010001010100ff0031010100010100000101010001010100ff003101010001
0100000101010001010100ff0031010100010100000101010001010100ff003101010001
0100000101010001010100ff0031010100010100000101010001010100ff003101010001
0100000101010001010100ff0031010100010100000101010001010100ff003101010001
0100000101010001010100ff003101010001010000010101000101010040063f0037063f
003801010001010000010101000101010040061907020602030206010301061800370609
050306220503060a00380101000101000001010100010101004006180701060007010602
03010601030106180037060805010601050106230501060a003801010001010000010101
000101010040061707010602070106010301060003010619003706070501060205010623
0501060a0038010100010100000101010001010100400617070106020701060103010600
030106190037060705010606050306020504060305030603050306050501060a00380101
0001010000010101000101010040061707010602070106010303061a0037060705010609
050106010501060105010601050106010501060105010601050106040501060a00380101
00010100000101010001010100400617070106020701060103010600030106190507002f
06070501060605040601050106010501060105010605050506040501060a050700300101
00010100000101010001010100400617070106020701060103010600030106190507002f
060705010602050106000501060105010601050106010501060105010605050106080501
060a05070030010100010100000101010001010100400618070106000701060203010601
030106180507002f06080501060105010600050106010501060105010601050106010501
06010501060105010601050106040501060a050700300101000101000001010100010101
004006190702060203020601030106180507002f06090503060205020600050106000501
060105010602050306030503060305050608050700300101000101000001010100010101
0040063f0507002f063f0507003001010001010000010101000101010040063f0507002f
063f0507003001010001010000010101000101010048053f0037053f0030010100010100
00010101000101010048053f0037053f003001010001010000010101000101010048053f
0037053f003001010001010000010101000101010048053f0037053f0030010100010100
00010101000101010048053f0037053f003001010001010000010101000101010048053f
0037053f0030010100010100000101010001010100ff0031010100010100000101010001
010100ff0031010100010100000101010001010100ff0031010100010100000101010001
010100ff0031010100010100000101010001010100ff0031010100010100000101010001
010100ff0031010100010100000101010001010100ff0031010100010100000101010001
010100ff0031010100010100000101010001010100ff0031010100010100000101010001
010100ff003101010001010000010101000101ff0135000101000001010100ff00390100
0001010100ff00390100000101ff013c00ff003e00ff003e00ff003e00ff003e
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 318 179
%%EOF