~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to fpcdocs/pics/ide/calc.eps

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%!PS-Adobe-3.0 EPSF-3.0
 
2
%%Creator: (ImageMagick)
 
3
%%Title: (calc.eps)
 
4
%%CreationDate: (Tue Nov 28 23:50:39 2000)
 
5
%%BoundingBox: 0 0 303 179
 
6
%%DocumentData: Clean7Bit
 
7
%%LanguageLevel: 1
 
8
%%Pages: 0
 
9
%%EndComments
 
10
 
 
11
%%BeginDefaults
 
12
%%PageOrientation: Portrait
 
13
%%EndDefaults
 
14
 
 
15
%%BeginProlog
 
16
%
 
17
% Display a color image.  The image is displayed in color on
 
18
% Postscript viewers or printers that support color, otherwise
 
19
% it is displayed as grayscale.
 
20
%
 
21
/buffer 512 string def
 
22
/byte 1 string def
 
23
/color_packet 3 string def
 
24
/pixels 768 string def
 
25
 
 
26
/DirectClassPacket
 
27
{
 
28
  %
 
29
  % Get a DirectClass packet.
 
30
  %
 
31
  % Parameters:
 
32
  %   red.
 
33
  %   green.
 
34
  %   blue.
 
35
  %   length: number of pixels minus one of this color (optional).
 
36
  %
 
37
  currentfile color_packet readhexstring pop pop
 
38
  compression 0 gt
 
39
  {
 
40
    /number_pixels 3 def
 
41
  }
 
42
  {
 
43
    currentfile byte readhexstring pop 0 get
 
44
    /number_pixels exch 1 add 3 mul def
 
45
  } ifelse
 
46
  0 3 number_pixels 1 sub
 
47
  {
 
48
    pixels exch color_packet putinterval
 
49
  } for
 
50
  pixels 0 number_pixels getinterval
 
51
} bind def
 
52
 
 
53
/DirectClassImage
 
54
{
 
55
  %
 
56
  % Display a DirectClass image.
 
57
  %
 
58
  systemdict /colorimage known
 
59
  {
 
60
    columns rows 8
 
61
    [
 
62
      columns 0 0
 
63
      rows neg 0 rows
 
64
    ]
 
65
    { DirectClassPacket } false 3 colorimage
 
66
  }
 
67
  {
 
68
    %
 
69
    % No colorimage operator;  convert to grayscale.
 
70
    %
 
71
    columns rows 8
 
72
    [
 
73
      columns 0 0
 
74
      rows neg 0 rows
 
75
    ]
 
76
    { GrayDirectClassPacket } image
 
77
  } ifelse
 
78
} bind def
 
79
 
 
80
/GrayDirectClassPacket
 
81
{
 
82
  %
 
83
  % Get a DirectClass packet;  convert to grayscale.
 
84
  %
 
85
  % Parameters:
 
86
  %   red
 
87
  %   green
 
88
  %   blue
 
89
  %   length: number of pixels minus one of this color (optional).
 
90
  %
 
91
  currentfile color_packet readhexstring pop pop
 
92
  color_packet 0 get 0.299 mul
 
93
  color_packet 1 get 0.587 mul add
 
94
  color_packet 2 get 0.114 mul add
 
95
  cvi
 
96
  /gray_packet exch def
 
97
  compression 0 gt
 
98
  {
 
99
    /number_pixels 1 def
 
100
  }
 
101
  {
 
102
    currentfile byte readhexstring pop 0 get
 
103
    /number_pixels exch 1 add def
 
104
  } ifelse
 
105
  0 1 number_pixels 1 sub
 
106
  {
 
107
    pixels exch gray_packet put
 
108
  } for
 
109
  pixels 0 number_pixels getinterval
 
110
} bind def
 
111
 
 
112
/GrayPseudoClassPacket
 
113
{
 
114
  %
 
115
  % Get a PseudoClass packet;  convert to grayscale.
 
116
  %
 
117
  % Parameters:
 
118
  %   index: index into the colormap.
 
119
  %   length: number of pixels minus one of this color (optional).
 
120
  %
 
121
  currentfile byte readhexstring pop 0 get
 
122
  /offset exch 3 mul def
 
123
  /color_packet colormap offset 3 getinterval def
 
124
  color_packet 0 get 0.299 mul
 
125
  color_packet 1 get 0.587 mul add
 
126
  color_packet 2 get 0.114 mul add
 
127
  cvi
 
128
  /gray_packet exch def
 
129
  compression 0 gt
 
130
  {
 
131
    /number_pixels 1 def
 
132
  }
 
133
  {
 
134
    currentfile byte readhexstring pop 0 get
 
135
    /number_pixels exch 1 add def
 
136
  } ifelse
 
137
  0 1 number_pixels 1 sub
 
138
  {
 
139
    pixels exch gray_packet put
 
140
  } for
 
141
  pixels 0 number_pixels getinterval
 
142
} bind def
 
143
 
 
144
/PseudoClassPacket
 
145
{
 
146
  %
 
147
  % Get a PseudoClass packet.
 
148
  %
 
149
  % Parameters:
 
150
  %   index: index into the colormap.
 
151
  %   length: number of pixels minus one of this color (optional).
 
152
  %
 
153
  currentfile byte readhexstring pop 0 get
 
154
  /offset exch 3 mul def
 
155
  /color_packet colormap offset 3 getinterval def
 
156
  compression 0 gt
 
157
  {
 
158
    /number_pixels 3 def
 
159
  }
 
160
  {
 
161
    currentfile byte readhexstring pop 0 get
 
162
    /number_pixels exch 1 add 3 mul def
 
163
  } ifelse
 
164
  0 3 number_pixels 1 sub
 
165
  {
 
166
    pixels exch color_packet putinterval
 
167
  } for
 
168
  pixels 0 number_pixels getinterval
 
169
} bind def
 
170
 
 
171
/PseudoClassImage
 
172
{
 
173
  %
 
174
  % Display a PseudoClass image.
 
175
  %
 
176
  % Parameters:
 
177
  %   class: 0-PseudoClass or 1-Grayscale.
 
178
  %
 
179
  currentfile buffer readline pop
 
180
  token pop /class exch def pop
 
181
  class 0 gt
 
182
  {
 
183
    currentfile buffer readline pop
 
184
    token pop /depth exch def pop
 
185
    /grays columns 8 add depth sub depth mul 8 idiv string def
 
186
    columns rows depth
 
187
    [
 
188
      columns 0 0
 
189
      rows neg 0 rows
 
190
    ]
 
191
    { currentfile grays readhexstring pop } image
 
192
  }
 
193
  {
 
194
    %
 
195
    % Parameters:
 
196
    %   colors: number of colors in the colormap.
 
197
    %   colormap: red, green, blue color packets.
 
198
    %
 
199
    currentfile buffer readline pop
 
200
    token pop /colors exch def pop
 
201
    /colors colors 3 mul def
 
202
    /colormap colors string def
 
203
    currentfile colormap readhexstring pop pop
 
204
    systemdict /colorimage known
 
205
    {
 
206
      columns rows 8
 
207
      [
 
208
        columns 0 0
 
209
        rows neg 0 rows
 
210
      ]
 
211
      { PseudoClassPacket } false 3 colorimage
 
212
    }
 
213
    {
 
214
      %
 
215
      % No colorimage operator;  convert to grayscale.
 
216
      %
 
217
      columns rows 8
 
218
      [
 
219
        columns 0 0
 
220
        rows neg 0 rows
 
221
      ]
 
222
      { GrayPseudoClassPacket } image
 
223
    } ifelse
 
224
  } ifelse
 
225
} bind def
 
226
 
 
227
/DisplayImage
 
228
{
 
229
  %
 
230
  % Display a DirectClass or PseudoClass image.
 
231
  %
 
232
  % Parameters:
 
233
  %   x & y translation.
 
234
  %   x & y scale.
 
235
  %   label pointsize.
 
236
  %   image label.
 
237
  %   image columns & rows.
 
238
  %   class: 0-DirectClass or 1-PseudoClass.
 
239
  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
 
240
  %   hex color packets.
 
241
  %
 
242
  gsave
 
243
  currentfile buffer readline pop
 
244
  token pop /x exch def
 
245
  token pop /y exch def pop
 
246
  x y translate
 
247
  currentfile buffer readline pop
 
248
  token pop /x exch def
 
249
  token pop /y exch def pop
 
250
  currentfile buffer readline pop
 
251
  token pop /pointsize exch def pop
 
252
  /Helvetica findfont pointsize scalefont setfont
 
253
  x y scale
 
254
  currentfile buffer readline pop
 
255
  token pop /columns exch def
 
256
  token pop /rows exch def pop
 
257
  currentfile buffer readline pop
 
258
  token pop /class exch def pop
 
259
  currentfile buffer readline pop
 
260
  token pop /compression exch def pop
 
261
  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
 
262
  grestore
 
263
} bind def
 
264
%%EndProlog
 
265
%%Page:  1 1
 
266
%%PageBoundingBox: 0 0 304 180
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
304 180
 
272
12.000000
 
273
304 180
 
274
1
 
275
0
 
276
0
 
277
6
 
278
c0c0c0
 
279
f8fcf8
 
280
00fc00
 
281
000080
 
282
008000
 
283
000000
 
284
00ff002f00120103000b0103004b0103000a010300130103009100120101000502030005
 
285
0101004a010100010101000b010100150101000c01000083001201010005020300050101
 
286
0049010100020101000b010100150101000b010100830001010e00010101000502030005
 
287
01010001013f000701010006010300050101000301030002010100010101000401010003
 
288
0103000201050002010300020102000001010009016600010101000e0101000502030005
 
289
010100490101000901010004010100020101000101010001010100010101000401010006
 
290
01010002010100040101000101010002010100000102006d010100010101000e01010005
 
291
020300050101004901010006010400040101000201010005010100010101000401010003
 
292
01040002010100040101000101010002010200000101006d0101000101010001010a0001
 
293
010100050203000501010001013f00070101000201010000010100010101000401010002
 
294
010100050101000101010004010100020101000101010002010100040101000101010002
 
295
0101000c0162000101010001010100010101000a01010005020300050101004a01010001
 
296
010100000101000101010004010100020101000101010001010100010101000401010002
 
297
0101000101010002010100000101000101010001010100020101006d0101000101010001
 
298
010100010101000a01030003020300030103004b01030002010200000101000101050001
 
299
01030003010200000101000101050001010200000101000201020003010300020103006c
 
300
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
301
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
302
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
303
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
304
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
305
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
306
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
307
0101000101010001010100010101001003ff001001010001010100010101000101010010
 
308
03f00104030900100101000101010001010100010101001003ef01010302010103080010
 
309
0101000101010001010100010101001003ef010103010102030800100101000101010001
 
310
010100010101001003ef0101030001030308001001010001010100010101000101010010
 
311
03ef01010300010003000101030800100101000101010001010100010101001003ef0103
 
312
03000101030800100101000101010001010100010101001003ef01020301010103080010
 
313
0101000101010001010100010101001003ef010103020101030800100101000101010001
 
314
010100010101001003f00104030900100101000101010001010100010101001003ff0010
 
315
0101000101010001010100010101001003ff0010010100010101000101010001010100ff
 
316
0021010100010101000101010001010100ff0021010100010101000101010001010100ff
 
317
0021010100010101000101010001010100ff0021010100010101000101010001010100ff
 
318
0021010100010101000101010001010100ff0021010100010101000101010001010100ff
 
319
0021010100010101000101010001010100ff0021010100010101000101010001010100ff
 
320
0021010100010101000101010001010100ff0021010100010101000101010001010100ff
 
321
0021010100010101000101010001010100ff002101010001010100010101000101010010
 
322
041f000f041205000413000f0417000f0417000f0417000f041700180101000101010001
 
323
010100010101001004070501040205010410000f041105020412000f040905030409000f
 
324
0417000f0417000f04170018010100010101000101010001010100100407050204000502
 
325
0410000f04100501040005010411000f04080501040105010408000f0417000f0417000f
 
326
04090501040b0018010100010101000101010001010100100407050604030501040a000f
 
327
040f0501040205010410000f04070501040205010408000f04090501040b000f04070501
 
328
040205000409000f04090501040b00180101000101010001010100010101001004070506
 
329
04030501040a000f040705010402050104090501040105010408000f04070501040d000f
 
330
04080501040c000f04070501040105010409000f04070505040900180101000101010001
 
331
0101000101010010040705010400050004000501040105050408000f0408050104000501
 
332
040a0501040105010408000f04070501040d000f040705060408000f040a0501040a000f
 
333
04090501040b001801010001010100010101000101010010040705010402050104030501
 
334
040a0507000704090502040b05010401050104080507000704070501040d050700070408
 
335
0501040c0507000704090501040b0507000704090501040b050700100101000101010001
 
336
0101000101010010040705010402050104030501040a0507000704090502040b05010401
 
337
0501040805070007040705010402050104080507000704090501040b0507000704080501
 
338
040c05070007041705070010010100010101000101010001010100100407050104020501
 
339
0410050700070408050104000501040b0503040905070007040805010401050104080507
 
340
000704170507000704070501040105010409050700070407050504090507001001010001
 
341
01010001010100010101001004070501040205010410050700070407050104020501040c
 
342
050104090507000704090503040905070007041705070007040705000402050104090507
 
343
000704170507001001010001010100010101000101010010041f05070007041a0501040a
 
344
050700070417050700070417050700070417050700070417050700100101000101010001
 
345
0101000101010010041f0507000704170503040b05070007041705070007041705070007
 
346
04170507000704170507001001010001010100010101000101010018051f000f0527000f
 
347
0517000f0517000f0517000f0517001001010001010100010101000101010018051f000f
 
348
0527000f0517000f0517000f0517000f0517001001010001010100010101000101010018
 
349
051f000f0527000f0517000f0517000f0517000f05170010010100010101000101010001
 
350
01010018051f000f0527000f0517000f0517000f0517000f051700100101000101010001
 
351
0101000101010018051f000f0527000f0517000f0517000f0517000f0517001001010001
 
352
010100010101000101010018051f000f0527000f0517000f0517000f0517000f05170010
 
353
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
354
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
355
010100010101000101010001010100ff0021010100010101000101010001010100ff0021
 
356
01010001010100010101000101010010041f000f041205000413000f0417000f0417000f
 
357
0417000f041700180101000101010001010100010101001004070501040205010410000f
 
358
0411050204030503040a000f040705060408000f04080503040a000f04080503040a000f
 
359
041700180101000101010001010100010101001004070502040005020410000f04100501
 
360
0400050104010501040105010409000f04070501040205010408000f0407050104010501
 
361
0409000f04070501040105010409000f040d050004080018010100010101000101010001
 
362
01010010040705060410000f040f05010402050104000501040105010409000f04070501
 
363
040205010408000f04070501040105010409000f04070501040105010409000f040c0501
 
364
0408001801010001010100010101000101010010040705060410000f0407050104020501
 
365
040c05010409000f040c05010408000f04070501040105010409000f0407050104010501
 
366
0409000f040b050104090018010100010101000101010001010100100407050104000500
 
367
04000501040005060408000f0408050104000501040c0501040a000f040b05010409000f
 
368
04080503040a000f040805040409000f040a0501040a0018010100010101000101010001
 
369
01010010040705010402050104100507000704090502040c0501040b05070007040a0501
 
370
040a050700070407050104010501040905070007040a0501040a0507000704090501040b
 
371
050700100101000101010001010100010101001004070501040205010410050700070409
 
372
0502040b0501040c0507000704090501040b050700070407050104010501040905070007
 
373
040a0501040a0507000704080501040c0507001001010001010100010101000101010010
 
374
040705010402050104100507000704080501040005010409050104010501040905070007
 
375
04090501040b05070007040705010401050104090507000704090501040b050700070407
 
376
0501040d0507001001010001010100010101000101010010040705010402050104100507
 
377
000704070501040205010408050504090507000704090501040b0507000704080503040a
 
378
0507000704080502040b0507000704070500040e05070010010100010101000101010001
 
379
01010010041f050700070427050700070417050700070417050700070417050700070417
 
380
0507001001010001010100010101000101010010041f0507000704270507000704170507
 
381
000704170507000704170507000704170507001001010001010100010101000101010018
 
382
051f000f0527000f0517000f0517000f0517000f05170010010100010101000101010001
 
383
01010018051f000f0527000f0517000f0517000f0517000f051700100101000101010001
 
384
0101000101010018051f000f0527000f0517000f0517000f0517000f0517001001010001
 
385
010100010101000101010018051f000f0527000f0517000f0517000f0517000f05170010
 
386
01010001010100010101000101010018051f000f0527000f0517000f0517000f0517000f
 
387
0517001001010001010100010101000101010018051f000f0527000f0517000f0517000f
 
388
0517000f05170010010100010101000101010001010100ff002101010001010100010101
 
389
0001010100ff0021010100010101000101010001010100ff002101010001010100010101
 
390
0001010100ff0021010100010101000101010001010100ff002101010001010100010101
 
391
0001010100ff002101010001010100010101000101010010041f000f0427000f0417000f
 
392
0417000f0417000f04170018010100010101000101010001010100100407050104020501
 
393
0410000f040a0500041b000f040b05010409000f040705050409000f04090502040a000f
 
394
041700180101000101010001010100010101001004070502040005020410000f04090501
 
395
040905000410000f040a05020409000f04070501040d000f04080501040c000f04170018
 
396
010100010101000101010001010100100407050604030501040a000f0407050304080501
 
397
0410000f040905030409000f04070501040d000f04070501040d000f0408050104010501
 
398
040800180101000101010001010100010101001004070506040405010409000f04090501
 
399
0407050104010501040205010408000f04080501040005010409000f04070501040d000f
 
400
04070501040d000f04090503040900180101000101010001010100010101001004070501
 
401
0400050004000501040005060408000f040905010406050104030501040005010409000f
 
402
04070501040105010409000f04070504040a000f04070504040a000f0407050704070018
 
403
010100010101000101010001010100100407050104020501040405010409050700070409
 
404
05010405050104050502040a0507000704070506040805070007040b0501040905070007
 
405
040705010401050104090507000704090503040905070010010100010101000101010001
 
406
01010010040705010402050104030501040a05070007040905010404050104060502040a
 
407
05070007040b0501040905070007040b0501040905070007040705010401050104090507
 
408
000704080501040105010408050700100101000101010001010100010101001004070501
 
409
0402050104100507000704090501040305010406050104000501040905070007040b0501
 
410
040905070007040705010401050104090507000704070501040105010409050700070417
 
411
050700100101000101010001010100010101001004070501040205010410050700070407
 
412
0505040105000406050104020501040805070007040a050304080507000704080503040a
 
413
0507000704080503040a0507000704170507001001010001010100010101000101010010
 
414
041f05070007042705070007041705070007041705070007041705070007041705070010
 
415
01010001010100010101000101010010041f050700070427050700070417050700070417
 
416
0507000704170507000704170507001001010001010100010101000101010018051f000f
 
417
0527000f0517000f0517000f0517000f0517001001010001010100010101000101010018
 
418
051f000f0527000f0517000f0517000f0517000f05170010010100010101000101010001
 
419
01010018051f000f0527000f0517000f0517000f0517000f051700100101000101010001
 
420
0101000101010018051f000f0527000f0517000f0517000f0517000f0517001001010001
 
421
010100010101000101010018051f000f0527000f0517000f0517000f0517000f05170010
 
422
01010001010100010101000101010018051f000f0527000f0517000f0517000f0517000f
 
423
05170010010100010101000101010001010100ff00210101000101010001010100010101
 
424
00ff0021010100010101000101010001010100ff00210101000101010001010100010101
 
425
00ff0021010100010101000101010001010100ff00210101000101010001010100010101
 
426
00ff002101010001010100010101000101010010041f000f0427000f0417000f0417000f
 
427
0417000f041700180101000101010001010100010101001004070501040205010410000f
 
428
0427000f040a0500040b000f04080503040a000f04080503040a000f0417001801010001
 
429
01010001010100010101001004070502040005020410000f0427000f04090501040b000f
 
430
04070501040105010409000f04070501040105010409000f041700180101000101010001
 
431
01010001010100100407050604020501040b000f0427000f04070503040b000f04070501
 
432
040105010409000f040b05010409000f0417001801010001010100010101000101010010
 
433
0407050604010501040c000f04080503040305020400050104000502040005010409000f
 
434
04090501040b000f040b05010409000f040b05010409000f041700180101000101010001
 
435
0101000101010010040705010400050004000501040005060408000f0407050104010501
 
436
040105010401050104020501040005020408000f04090501040b000f040a0501040a000f
 
437
04090502040a000f04070506040800180101000101010001010100010101001004070501
 
438
0402050104010501040c0507000704080501040405010401050104020502040005010408
 
439
0507000704090501040b0507000704090501040b05070007040b05010409050700070417
 
440
0507001001010001010100010101000101010010040705010402050104020501040b0507
 
441
0007040a0501040205010401050104020501040c0507000704090501040b050700070408
 
442
0501040c05070007040b0501040905070007041705070010010100010101000101010001
 
443
010100100407050104020501041005070007040705010401050104010501040105010402
 
444
0501040c0507000704090501040b05070007040705010401050104090507000704070501
 
445
040105010409050700070417050700100101000101010001010100010101001004070501
 
446
04020501041005070007040805030403050404010503040b050700070407050504090507
 
447
00070407050504090507000704080503040a050700070417050700100101000101010001
 
448
0101000101010010041f0507000704130501041105070007041705070007041705070007
 
449
04170507000704170507001001010001010100010101000101010010041f050700070412
 
450
050304100507000704170507000704170507000704170507000704170507001001010001
 
451
010100010101000101010018051f000f0527000f0517000f0517000f0517000f05170010
 
452
01010001010100010101000101010018051f000f0527000f0517000f0517000f0517000f
 
453
0517001001010001010100010101000101010018051f000f0527000f0517000f0517000f
 
454
0517000f0517001001010001010100010101000101010018051f000f0527000f0517000f
 
455
0517000f0517000f0517001001010001010100010101000101010018051f000f0527000f
 
456
0517000f0517000f0517000f0517001001010001010100010101000101010018051f000f
 
457
0527000f0517000f0517000f0517000f05170010010100010101000101010001010100ff
 
458
0021010100010101000101010001010100ff0021010100010101000101010001010100ff
 
459
0021010100010101000101010001010100ff0021010100010101000101010001010100ff
 
460
0021010100010101000101010001010100ff002101010001010100010101000101010010
 
461
041f000f0427000f0417000f0417000f0417000f04170018010100010101000101010001
 
462
0101001004070501040205010410000f04080503041a000f040805040409000f0417000f
 
463
0417000f041700180101000101010001010100010101001004070502040005020410000f
 
464
040a0501041a000f04070501040205010408000f0417000f0417000f0417001801010001
 
465
0101000101010001010100100407050604020500040105000409000f040a0501041a000f
 
466
04070501040105020408000f0417000f0417000f040a0501040a00180101000101010001
 
467
01010001010100100407050604010501040105010408000f040a05010403050304030502
 
468
040005010408000f04070501040005030408000f0417000f040805050408000f040a0501
 
469
040a00180101000101010001010100010101001004070501040005000400050104000507
 
470
0407000f040a0501040205010401050104010501040105010409000f0407050104000500
 
471
040005010408000f0417000f0417000f0408050504080018010100010101000101010001
 
472
0101001004070501040205010401050104010501040805070007040a0501040205010401
 
473
050104010501040105010409050700070407050304000501040805070007041705070007
 
474
04080505040805070007040a0501040a0507001001010001010100010101000101010010
 
475
04070501040205010402050004010500040905070007040a050104020501040105010401
 
476
050104010501040905070007040705020401050104080507000704170507000704170507
 
477
0007040a0501040a05070010010100010101000101010001010100100407050104020501
 
478
041005070007040a05010402050104010501040205040409050700070407050104020501
 
479
04080507000704090502040a050700070417050700070417050700100101000101010001
 
480
010100010101001004070501040205010410050700070408050504010503040605010409
 
481
050700070408050404090507000704090502040a05070007041705070007041705070010
 
482
01010001010100010101000101010010041f050700070417050104010501040905070007
 
483
041705070007041705070007041705070007041705070010010100010101000101010001
 
484
01010010041f0507000704180503040a0507000704170507000704170507000704170507
 
485
000704170507001001010001010100010101000101010018051f000f0527000f0517000f
 
486
0517000f0517000f0517001001010001010100010101000101010018051f000f0527000f
 
487
0517000f0517000f0517000f0517001001010001010100010101000101010018051f000f
 
488
0527000f0517000f0517000f0517000f0517001001010001010100010101000101010018
 
489
051f000f0527000f0517000f0517000f0517000f05170010010100010101000101010001
 
490
01010018051f000f0527000f0517000f0517000f0517000f051700100101000101010001
 
491
0101000101010018051f000f0527000f0517000f0517000f0517000f0517001001010001
 
492
0101000101010001010100ff0021010100010101000101010001010100ff002101010001
 
493
0101000101010001010100ff0021010100010101000101010001010100ff002101010001
 
494
0101000101010001010100ff0021010100010101000101010001010100ff002101010001
 
495
0101000101010001010100ff0021010100010101000101010001010100ff002101010001
 
496
0101000101010001010100ff0021010100010101000101010001010100ff002101010001
 
497
010100010101000101ff0125000101010001010100ff002901010001010100ff00290101
 
498
000101ff012d00ff002f00ff002f00ff002f00ff002f
 
499
%%EndData
 
500
end
 
501
%%PageTrailer
 
502
%%Trailer
 
503
%%BoundingBox: 0 0 303 179
 
504
%%EOF