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

« back to all changes in this revision

Viewing changes to fpcdocs/pics/ide/odebug.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: (odebug.eps)
 
4
%%CreationDate: (Sun Dec  3 00:59:11 2000)
 
5
%%BoundingBox: 0 0 479 238
 
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 480 239
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
480 239
 
272
12.000000
 
273
480 239
 
274
1
 
275
0
 
276
0
 
277
10
 
278
c0c0c0
 
279
f8fcf8
 
280
00fc00
 
281
008080
 
282
000000
 
283
f8fc00
 
284
f87c78
 
285
000080
 
286
008000
 
287
00fcf8
 
288
00120103000b01030059010500240101001a0104000a0102001f0101001a010500130102
 
289
0005010100030103000501010091001201010005020300050101005a0101000101010023
 
290
0101001801000001010100000101000a0101001f01010018010000010101000101010011
 
291
0101000001010004010100050101000501010091001201010005020300050101005a0101
 
292
00010101003d010100010101000101010009010100390101000101010001010100110101
 
293
000f010100990001010e0001010100050203000501010001014f00080101000101010000
 
294
010200000101000201030002010100020101000101030003010300020104000301020000
 
295
010100040101000201010001010100010103000301040001010100010101000201020000
 
296
010100010102000001010001010300020104000301020000010100040101000201010001
 
297
010100000102000001010002010300030101000501030005010100030103000201040003
 
298
0102000001010008017600010101000e01010005020300050101005a0104000201010000
 
299
010200000101000101010001010100020101000001010001010100040101000201010001
 
300
010100010101000101010004010100030101000101010000010100010101000201010001
 
301
010100000101000101010001010100010101000101010001010100040101000201010001
 
302
010100010101000101010004010100030104000201010000010200000101000101010001
 
303
010400050101000501010005010100020101000101010001010100010101007e01010001
 
304
0101000e01010005020300050101005a0101000101010001010200000101000001010001
 
305
010100010101000001000000010100010101000701010002010100010101000101010001
 
306
010100030101000401010001010100000105000201010001010100000101000101010001
 
307
010100010101000101010001010100040101000201010001010100010101000101010003
 
308
010100040101000501020000010100000101000101010002010100070101000501010005
 
309
010100020101000101010001010100010101007e0101000101010001010a000101010005
 
310
0203000501010001014f0008010100010101000101010004010100010101000101010000
 
311
010000000101000301010005010100020101000101010001010100010101000201010005
 
312
010100010101000001010006010100010101000001010001010100010101000101010001
 
313
010100010101000401010002010100010101000101010001010100020101000501010005
 
314
010100040101000101010002010100070101000501010005010100020101000101010001
 
315
01010001010100090172000101010001010100010101000a01010005020300050101005a
 
316
010100010101000101010004010100010101000201010000010100010101000101010004
 
317
010100020101000101010002010400010101000601010000010100010101000101010002
 
318
010100010101000001010001010100020104000201040004010100020101000101010002
 
319
010400010101000601010005010100040101000101010002010100070101000501010005
 
320
0101000201010001010100020104007a0101000101010001010100010101000a01030003
 
321
020300030103005901050001010300040103000301010000010100020103000301050000
 
322
010100010101000501010001010000060104000301030002010100000102000201020000
 
323
010100040101000501010002010500000101000101010005010100010100000601030003
 
324
01030004010300020103000401050001010500010105000001010001010100050101007a
 
325
010100010101000101010001010100b00101000101010029010100010101000101010001
 
326
010100110101000101010049010100010101007a010100010101000101010001010100b1
 
327
0103002b01030003010300130103004b0103007b010100010101000101010001010100ff
 
328
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
329
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
330
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
331
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
332
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
333
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
334
00d1010100010101000101010001010100180104000a0102001f0101001d0101000c0102
 
335
002d010100ff002301010001010100010101000101010019010100000101000a0101001f
 
336
0101001d0101000b010100000101002301000007010100ff002301010001010100010101
 
337
00010101001901010001010100090101004d01010025010100ff002d0101000101010001
 
338
010100010101001901010001010100010103000301040001010100010101000201020000
 
339
010100010102000001010001010300020104000301020000010100090103000201040003
 
340
010100050103000201020000010100010105000201030002010500020103000301030002
 
341
010400ff0013010100010101000101010001010100190101000101010000010100010101
 
342
000201010001010100000101000101010001010100010101000101010001010100040101
 
343
00020101000101010001010100010101000c010100020101000101010001010400020101
 
344
000101010002010100000102000001010000010000000101000401010002010100070101
 
345
0002010100010101000101010001010100ff001201010001010100010101000101010019
 
346
010100010101000001050002010100010101000001010001010100010101000101010001
 
347
0101000101010004010100020101000101010001010100010101000c0101000201010001
 
348
010100020101000401010001010100020102000001010000010100000100000001010001
 
349
010400020101000701010002010100010101000101010001010100ff0012010100010101
 
350
000101010001010100190101000101010000010100060101000101010000010100010101
 
351
000101010001010100010101000101010004010100020101000101010001010100010101
 
352
000c01010002010100010101000201010004010100010101000201010004010100000100
 
353
000001010000010100010101000201010007010100020101000101010001010100010101
 
354
00ff00120101000101010001010100010101001901010000010100010101000101010002
 
355
010100010101000001010001010100020104000201040004010100020101000101010002
 
356
0104000c0101000201010001010100020101000401010001010100020101000401010000
 
357
010000000101000001010001010100020101000001010004010100020101000101010001
 
358
01010001010100ff00120101000101010001010100010101001801040003010300020101
 
359
000001020002010200000101000401010005010100020105000001010001010100050101
 
360
000a01050000010100010101000101030004010300020103000301010002010100010102
 
361
00000101000201020003010500010103000201010001010100ff00120101000101010001
 
362
01010001010100380101000101010001010100010101001101010001010100ff00720101
 
363
00010101000101010001010100390103000301030013010300ff00730101000101010001
 
364
010100010101001003ff03af001001010001010100010101000101010010030b0401030a
 
365
0401030d050303150401031b040303030403030d04020309040203340402030d04030314
 
366
0402035a040203050403035a001001010001010100010101000101010010030a0401030c
 
367
0401030b05010301050103030400030f0401031d040103050401030e0401030a04010335
 
368
0401030f04010313040103000401034b0400030d040103070401035a0010010100010101
 
369
0001010100010101001003090401030e0401030a05010301050103020401032f04010305
 
370
0401030e0401030a040103350401030f040103130401034d0401030d040103070401035a
 
371
001001010001010100010101000101010010030804010310040103090501030504050301
 
372
040203000401030204030302040103000402030a04030305040103050401030b04040302
 
373
040303030404030104010301040103020402030004010309040303030401030104010300
 
374
040503020404030204030305040103030403030b04010304040203000401030204030302
 
375
0405030a0403030204010302040103010403030304030302040103010401030104050302
 
376
040303030404030404010303040303520010010100010101000101010001010100100308
 
377
040103100401030a0502030404010305040103000402030304010303040103010401030c
 
378
04010304040103050401030a040103010401030104010301040103020401030104010300
 
379
040103010401030104010301040103090401030104010302040103010401030004010300
 
380
040003000401030104010301040103000401030104010304040103020401030104010309
 
381
040403030401030004020300040103010401030104010300040003000401030804010301
 
382
040103020401030004010301040103010401030104010301040103010401030104010302
 
383
040103080401030204010301040103030401030204010301040103510010010100010101
 
384
000101010001010100100308040103100401030c05010303040103050402030004010303
 
385
04010303040103010401030904040304040103050401030a040103010401030104050302
 
386
04010301040103000401030104010301040103010401030a040103050401030104010300
 
387
04010300040003000401030104010301040103000401030104010304040103030401030d
 
388
040103050402030004010300040103010401030104010300040003000401030804050303
 
389
040203020405030104010305040103010401030204010305040403020401030104010303
 
390
040103020405035100100101000101010001010100010101001003090401030e0401030a
 
391
050103010501030204010305040103070401030304010301040103080401030104010304
 
392
040103050401030a04010301040103010401030604010301040103000401030104010301
 
393
040103010401030c04010303040103010401030004010300040003000401030104010301
 
394
040103000401030104010304040103050401030b04010305040103040401030104010301
 
395
040103000400030004010308040103070402030204010305040103050401030104010302
 
396
040103040401030104010302040103010401030304010302040103550010010100010101
 
397
00010101000101010010030a0401030c0401030b05010301050103020401030004010302
 
398
040103070401030304010301040103080401030104010304040103050401030a04010301
 
399
040103010401030104010302040103010401030004010301040103020404030904010301
 
400
040103030403030104010300040003000401030104010301040103000401030104010304
 
401
04010302040103010401030a040103050401030404010301040103010401030004000300
 
402
040103080401030104010302040103000401030104010301040103010401030104010301
 
403
040103010401030204010300040103010401030104010302040103010401030304010302
 
404
0401030104010351001001010001010100010101000101010010030b0401030a0401030d
 
405
050303040402030204030304040503010404030a04020300040103010405030104050309
 
406
040203000401030104030302040103000402030204020300040103040401030a04030306
 
407
040103010401030204010300040103000402030204030303040503010403030a04030303
 
408
040303040403030204010302040103090403030204010302040103010403030304030303
 
409
040203000401030204020303040203000401030004010300040203020405030104030352
 
410
00100101000101010001010100010101001003480401034c0401030104010314040103fa
 
411
00100101000101010001010100010101001003470403034c04030312040303fb00100101
 
412
000101010001010100010101001003ff03af001001010001010100010101000101010010
 
413
030b0401030a0401030e0403034405020309040203340402030d0403030d0401030c0402
 
414
032d04010392001001010001010100010101000101010010030a0401030c0401030c0401
 
415
03010401032a040003180501030a040103350401030f0401030d0401030b040103000401
 
416
0323040003070401039200100101000101010001010100010101001003090401030e0401
 
417
030a0401030204010329040103180501030a040103350401030f0401031b040103250401
 
418
039c00100101000101010001010100010101001003080401031004010309040103060403
 
419
03020404030304030302040203000401030204030302040503020403030b050403020403
 
420
030304040301040103010401030204020300040103090403030304010301040103000405
 
421
030204040302040303050401030b04030302040403030401030504030302040203000401
 
422
030104050302040303020405030204030303040303020404038200100101000101010001
 
423
010100010101001003080401031004010309040103050401030104010301040103010401
 
424
030104010301040103020401030004020304040103020401030404010301040103090501
 
425
030105010301040103010401030204010301040103000401030104010301040103010401
 
426
030904010301040103020401030104010300040103000400030004010301040103010401
 
427
030004010301040103040401030d04010302040103010401030104040302040103010401
 
428
030204010300040203000401030004000300040103040401030204010307040103020401
 
429
030104010301040103010401038100100101000101010001010100010101001003080401
 
430
031004010309040103010402030004050301040103010401030104050302040203000401
 
431
030104040302040103040405030905010301050103010405030204010301040103000401
 
432
030104010301040103010401030a04010305040103010401030004010300040003000401
 
433
0301040103010401030004010301040103040401030d0401030204010301040103020401
 
434
030404010301040103020402030004010300040103000400030004010301040403020401
 
435
030704010302040103010401030104010301040103810010010100010101000101010001
 
436
0101001003090401030e0401030a04010302040103000401030504010301040103010401
 
437
0306040103040401030104010302040103040401030d0501030105010301040103060401
 
438
0301040103000401030104010301040103010401030c0401030304010301040103000401
 
439
03000400030004010301040103010401030004010301040103040401030d040103020401
 
440
030104010302040103040401030104010302040103040401030004000300040103000401
 
441
030104010302040103070401030204010301040103010401030104010381001001010001
 
442
010100010101000101010010030a0401030c0401030c0401030104010300040103010401
 
443
030104010301040103010401030104010302040103040401030104010302040103000401
 
444
030104010301040103090501030105010301040103010401030204010301040103000401
 
445
030104010302040403090401030104010303040303010401030004000300040103010401
 
446
03010401030004010301040103040401030d040103020401030104010302040103040401
 
447
030104010302040103040401030004000300040103000401030104010302040103000401
 
448
030404010302040103010401030104010301040103810010010100010101000101010001
 
449
01010010030b0401030a0401030e04040301040303020401030104010302040303020403
 
450
03040402030004010302040203030403030b050203000501030104030302040103000402
 
451
030204020300040103040401030a04030306040103010401030204010300040103000402
 
452
030204030303040503090405030004010301040103010403030404030302040303030401
 
453
030204010301040203000401030204020303040503010403030204010301040103810010
 
454
01010001010100010101000101010010038f0401030104010314040103ff030200100101
 
455
0001010100010101000101010010039004030312040303ff030300100101000101010001
 
456
010100010101001003ff03af001001010001010100010101000101010010030b0101030a
 
457
0101030e0103034a0103031a0102031401020335050303050101031d0101030c0102032d
 
458
0101035a001001010001010100010101000101010010030a0101030c0101030c01010301
 
459
0101032a0100031f0101031b01010315010103060100032f050103050101031d0101030b
 
460
0101030001010323010003070101035a0010010100010101000101010001010100100309
 
461
0101030401010301010103030101030a01010302010103290101031f0101031b01010315
 
462
010103050101032f05010333010103250101036400100101000101010001010100010101
 
463
001003080101030601030305010103090101030601030302010403030103030201020300
 
464
0101030201030302010503020103030b0103030501010303010303030103030b01040302
 
465
010303030103030301010301010103000105030101020300010103020103030301030303
 
466
0103030d0501030301030302010403030103030b01030302010403030101030501030302
 
467
010203000101030101050302010303020105030201030303010303020104034a00100101
 
468
000101010001010100010101001003080101030401070303010103090101030501010301
 
469
010103010101030101010301010103010101030201010300010203040101030201010304
 
470
010103010101030d01010304010103020101030101010301010103010101030a01010301
 
471
010103040101030101010301010103020101030001010302010103050101030001020304
 
472
010103010101030101010301010103010101030c05010305010103020101030101010301
 
473
010103010101030c01010302010103010101030101040302010103010101030201010300
 
474
010203000101030001000300010103040101030201010307010103020101030101010301
 
475
010103010101034900100101000101010001010100010101001003080101030601030305
 
476
010103090101030101020300010503010101030101010301010503020102030001010301
 
477
01040302010103040105030a010403040101030301010304010103010101030a01010301
 
478
010103010104030101010306010303030101030501020300010103010104030101010305
 
479
0105030c050103050101030201010301010103010105030c010103020101030101010302
 
480
010103040101030101010302010203000101030001010300010003000101030101040302
 
481
010103070101030201010301010103010101030101010349001001010001010100010101
 
482
00010101001003090101030401010301010103030101030a010103020101030001010305
 
483
010103010101030101010306010103040101030101010302010103040101030d01010301
 
484
010103040101030501010302010103010101030a01010301010103000101030101010301
 
485
010103060101030001010302010103050101030401010301010103010101030501010310
 
486
050103050101030201010301010103010101031001010302010103010101030201010304
 
487
010103010101030201010304010103000100030001010300010103010101030201010307
 
488
010103020101030101010301010103010101034900100101000101010001010100010101
 
489
0010030a0101030c0101030c010103010101030001010301010103010101030101010301
 
490
010103010101030201010304010103010101030201010300010103010101030101010309
 
491
0101030101010304010103020101030101010301010103010101030a0101030101010300
 
492
010103010101030101010301010103020101030101010301010103000101030201010304
 
493
01010301010103010101030101010301010103010101030c050103050101030201010301
 
494
01010301010103010101030c010103020101030101010302010103040101030101010302
 
495
010103040101030001000300010103000101030101010302010103000101030401010302
 
496
01010301010103010101030101010349001001010001010100010101000101010010030b
 
497
0101030a0101030e01040301010303020101030101010302010303020103030401020300
 
498
01010302010203030103030b010203000101030101050301010303030103030a01010300
 
499
010203020102030001010301010303020102030101010302010203020103030401020300
 
500
01010301010303030103030b050503010105030001010301010103020103030b01050300
 
501
010103010101030101030304010303020103030301010302010103010102030001010302
 
502
010203030105030101030302010103010101034900100101000101010001010100010101
 
503
0010030f060703ff0397001001010001010100010101000101010010030f060703ff0397
 
504
0010010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
505
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
506
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
507
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
508
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
509
00d1010100010101000101010001010100ff00d1010100010101000101010001010100ff
 
510
00d1010100010101000101010001010100ff00d101010001010100010101000101010018
 
511
040500130402000504010003040300050401001b0403000d04010012040200ff003d0101
 
512
000101010001010100010101001904010001040100110401000004010004040100050401
 
513
00050401001a040100010401000c040100040400000d040100ff003d0101000101010001
 
514
010100010101001904010001040100110401000f0401002204010001040100120401000d
 
515
040100ff003d010100010101000101010001010100190401000104010000040200000401
 
516
000204030003040100050403000504010003040300020404000304020000040100080401
 
517
000504010002040100010403000204050002040300030401000004010002040300030403
 
518
00ff002b0101000101010001010100010101001904040002040100000402000004010001
 
519
04010001040400050401000504010005040100020401000104010001040100010401000a
 
520
040200030401000204010003040100030401000404010001040100020402000004010000
 
521
040100010401000104010001040100ff002a010100010101000101010001010100190401
 
522
000504020000040100000401000104010002040100070401000504010005040100020401
 
523
000104010001040100010401000c04010002040100000400000004010003040100030401
 
524
000404010006040100010401000004050002040100ff002d010100010101000101010001
 
525
010100190401000504010004040100010401000204010007040100050401000504010002
 
526
040100010401000104010001040100090401000104010001040100000400000004010003
 
527
040100030401000404010006040100010401000004010008040100ff002b010100010101
 
528
000101010001010100190401000504010004040100010401000204010007040100050401
 
529
000504010002040100010401000204040009040100010401000204010000040100040401
 
530
000304010000040100010401000104010002040100010401000004010001040100010401
 
531
0001040100ff002a01010001010100010101000101010018040300030403000404030002
 
532
0403000404050001040500010405000004010001040100050401000a0403000304010000
 
533
04010002040500020402000304030002040200010401000104030003040300ff002b0101
 
534
000101010001010100010101005804010001040100ff0072010100010101000101010001
 
535
01010059040300ff00730101000101010001010100010101001003ff03af001001010001
 
536
01010001010100010101001003090403030b04030309050103020501032a040203050401
 
537
0303040303150401030c0402032d040103ea001001010001010100010101000101010010
 
538
03090401030f040103090501030205010329040103000401030404010305040103150401
 
539
030b040103000401032304000307040103ea001001010001010100010101000101010010
 
540
03090401030f0401030905020301050103290401030f0401032304010325040103f40010
 
541
0101000101010001010100010101001003090401030f0401030905030300050103010403
 
542
030a04010300040203010402030004010302040303030401030504030305040103030403
 
543
030b04030302040403030401030504030302040203000401030104050302040303020405
 
544
03020403030304030302040403da00100101000101010001010100010101001003090401
 
545
030f0401030905060300040103010401030a040103010401030104010300040203000401
 
546
030104010301040403050401030504010302040103010401030c04010302040103010401
 
547
030104040302040103010401030204010300040203000401030004000300040103040401
 
548
03020401030704010302040103010401030104010301040103d900100101000101010001
 
549
010100010101001003090401030f040103090501030005030300040103010401030a0401
 
550
030104010301040203000401030004010301040103020401030704010305040103020405
 
551
030c04010302040103010401030204010304040103010401030204020300040103000401
 
552
030004000300040103010404030204010307040103020401030104010301040103010401
 
553
03d900100101000101010001010100010101001003090401030f04010309050103010502
 
554
0300040103010401030a0401030104010301040103040401030104010302040103070401
 
555
030504010302040103100401030204010301040103020401030404010301040103020401
 
556
030404010300040003000401030004010301040103020401030704010302040103010401
 
557
030104010301040103d900100101000101010001010100010101001003090401030f0401
 
558
03090501030205010300040103010401030a040103010401030104010304040103010401
 
559
0302040103070401030504010302040103010401030c0401030204010301040103020401
 
560
030404010301040103020401030404010300040003000401030004010301040103020401
 
561
03000401030404010302040103010401030104010301040103d900100101000101010001
 
562
010100010101001003090403030b0403030905010302050103010403030b040403010403
 
563
0304040303020403030404050301040503010403030b0405030004010301040103010403
 
564
030404030302040303030401030204010301040203000401030204020303040503010403
 
565
030204010301040103d90010010100010101000101010001010100100340040103ff036c
 
566
001001010001010100010101000101010010033f040303ff036b00100101000101010001
 
567
010100010101001003ff03af00100101000101010001010100010101001003090403030b
 
568
0403030b0403035b040203050401030304030325040203130402033c0402039200100101
 
569
000101010001010100010101001003090401030f0401030a040103010401032a0400032d
 
570
0401030004010304040103050401032604010312040103000401033a0401030004010391
 
571
00100101000101010001010100010101001003090401030f040103090401030204010329
 
572
0401032d0401030f04010326040103120401033d04010394001001010001010100010101
 
573
00010101001003090401030f040103090401030604030302040403030403030204020300
 
574
0401030204030302040503020403030a0401030004020301040203000401030204030303
 
575
0401030504030305040103030403030b0403030304030303040403020403030b04010305
 
576
04030302040203000401030a040203000401030005010300050203010402030004010302
 
577
040303030401039400100101000101010001010100010101001003090401030f04010309
 
578
040103050401030104010301040103010401030104010301040103020401030004020304
 
579
0401030204010304040103010401030a0401030104010301040103000402030004010301
 
580
040103010404030504010305040103020401030104010309040103010401030104010301
 
581
040103010401030104010301040103010401030904040302040103010401030204010300
 
582
040203080401030104010302050103010501030104010300040203000401030104010301
 
583
0404039200100101000101010001010100010101001003090401030f0401030904010301
 
584
040203000405030104010301040103010405030204020300040103010404030204010304
 
585
0405030a0401030104010301040203000401030004010301040103020401030704010305
 
586
040103020405030904010305040103010401030104010301040103010405030a04010304
 
587
040103010401030204020300040103080401030104010302050103010501030104020300
 
588
040103000401030104010302040103940010010100010101000101010001010100100309
 
589
0401030f0401030904010302040103000401030504010301040103010401030604010304
 
590
0401030104010302040103040401030e0401030104010301040103040401030104010302
 
591
0401030704010305040103020401030d0401030504010301040103010401030104010301
 
592
0401030e0401030404010301040103020401030c04010301040103020501030105010301
 
593
040103040401030104010302040103940010010100010101000101010001010100100309
 
594
0401030f0401030a04010301040103000401030104010301040103010401030104010301
 
595
040103020401030404010301040103020401030004010301040103010401030a04010301
 
596
040103010401030404010301040103020401030704010305040103020401030104010309
 
597
040103010401030104010301040103010401030104010301040103010401030a04010304
 
598
04010301040103020401030d040403020501030105010301040103040401030104010302
 
599
0401039400100101000101010001010100010101001003090403030b0403030b04040301
 
600
04030302040103010401030204030302040303040402030004010302040203030403030b
 
601
0404030104030304040303020403030404050301040503010403030b0403030304030303
 
602
04020300040103010403030a04030304040303020403030f040103020504030104030304
 
603
040303020403039300100101000101010001010100010101001003700401038404010301
 
604
04010302050103ac001001010001010100010101000101010010036f0403038404030302
 
605
050303ab0010010100010101000101010001010100ff00d1010100010101000101010001
 
606
010100ff00d1010100010101000101010001010100ff00d1010100010101000101010001
 
607
010100ff00d1010100010101000101010001010100ff00d1010100010101000101010001
 
608
010100ff00d1010100010101000101010001010100ff00d1010100010101000101010001
 
609
010100ff00d1010100010101000101010001010100ff00d1010100010101000101010001
 
610
010100ff00d1010100010101000101010001010100ff00d1010100010101000101010001
 
611
010100ff00d1010100010101000101010001010100ff00d1010100010101000101010001
 
612
0101001a0501000604020004040200040401000d0401001b0403002d04010003040300ff
 
613
003301010001010100010101000101010019050300060401000504010004040100040400
 
614
00070401001d0401002d04010005040100ff003301010001010100010101000101010018
 
615
0501000105010005040100050401000a0401002704010035040100ff0033010100010101
 
616
000101010001010100180501000105010002040400020404000204030002040500020403
 
617
00030403000204040003040300050401000b040300030403000204050001040100000402
 
618
0002040300050401000304030002040200000401000a0403000204020000040100020402
 
619
000004010001040300fb0101000101010001010100010101001805010001050100010401
 
620
000104010001040100010401000404010003040100070401000204010001040100010401
 
621
000104010005040100040401000a04010001040100010401000104010001040100000400
 
622
000004010001040100010401000304010005040100020401000104010002040100000402
 
623
000c040100020401000004020000040100010401000104010001040100fa010100010101
 
624
000101010001010100180505000104010001040100010401000104010004040100030401
 
625
00070401000204010001040100010401000104010002040400040401000a040100050401
 
626
000104010001040100000400000004010001040100010401000304010005040100020405
 
627
000204020000040100090404000204020000040100000401000104010002040100fd0101
 
628
000101010001010100010101001805010001050100010401000104010001040100010401
 
629
000404010003040100070401000204010001040100010401000104010001040100010401
 
630
00040401000a040100050401000104010001040100000400000004010001040100010401
 
631
00030401000504010002040100060401000c040100010401000204010004040100010401
 
632
0004040100fb010100010101000101010001010100180501000105010001040100010401
 
633
000104010001040100040401000304010000040100040401000204010001040100010401
 
634
00010401000104010001040100040401000a040100010401000104010001040100010401
 
635
000004000000040100010401000104010003040100050401000204010001040100020401
 
636
000c0401000104010002040100050404000104010001040100fa01010001010100010101
 
637
000101010018050100010501000204020000040100010402000004010001040500020402
 
638
000304050001040300020401000104010002040200000401000104050009040300030403
 
639
00020401000204010001040400020405000104050001040300020403000c040200000401
 
640
00000403000704010002040300fb010100010101000101010001010100890401003c0401
 
641
0001040100ff0002010100010101000101010001010100880403003c040300ff00030101
 
642
000101010001010100010101001007ff078f000708170010010100010101000101010001
 
643
0101001007ff078f00070801040308040401080404030801001001010001010100010101
 
644
00010101001007ff078f0007080104010806040108060401080100100101000101010001
 
645
010100010101001007ff078f000708010401080604010806040108010010010100010101
 
646
0001010100010101001007ff078f00070801040108060401080604010801001001010001
 
647
01010001010100010101001007ff078f0007080104010806040108060401080100100101
 
648
000101010001010100010101001007ff078f000708010401080604010806040108010010
 
649
0101000101010001010100010101001007ff078f00070801040108040405080404010801
 
650
00100101000101010001010100010101001007ff078f0007080104010805040308050401
 
651
080100100101000101010001010100010101001007ff078f000708010403080404010804
 
652
0403080100100101000101010001010100010101001007ff078f00070817001001010001
 
653
01010001010100010101001007ff078f0007081700100101000101010001010100010101
 
654
00ff00d1010100010101000101010001010100ff00d10101000101010001010100010101
 
655
00ff00d1010100010101000101010001010100ff00d10101000101010001010100010101
 
656
00ff00d1010100010101000101010001010100ff00d10101000101010001010100010101
 
657
00ff00d1010100010101000101010001010100ff00d10101000101010001010100010101
 
658
00ff00d1010100010101000101010001010100ff00d10101000101010001010100010101
 
659
00ff00d1010100010101000101010001010100ff00d10101000101010001010100010101
 
660
00ff00d1010100010101000101010001010100180404000a040200340505000c04020004
 
661
04010025040100ff002b01010001010100010101000101010019040100000401000a0401
 
662
0035050100010501000c040100040401001c04000007040100ff002b0101000101010001
 
663
0101000101010019040100010401000904010035050100010501000c04010022040100ff
 
664
003501010001010100010101000101010019040100010401000104030003040400010401
 
665
00010401000204020000040100010402000004010001040300030403000b050100010501
 
666
000104030003040400020403000204020000040100020403000304030002040500020403
 
667
000304030002040400ff001b010100010101000101010001010100190401000104010000
 
668
040100010401000204010001040100000401000104010001040100010401000104010001
 
669
040100010401000104010001040100010401000a05040001040100010401000104010001
 
670
040100040401000304010000040200000401000104010001040100010401000204010007
 
671
04010002040100010401000104010001040100ff001a0101000101010001010100010101
 
672
001904010001040100000405000204010001040100000401000104010001040100010401
 
673
00010401000104010001040500010405000a050100000501000104050001040100010401
 
674
000404010003040200000401000004050001040100060401000704010002040100010401
 
675
000104010001040100ff001a010100010101000101010001010100190401000104010000
 
676
040100060401000104010000040100010401000104010001040100010401000104010001
 
677
040100050401000e05010001050100000401000504010001040100040401000304010004
 
678
04010005040100060401000704010002040100010401000104010001040100ff001a0101
 
679
000101010001010100010101001904010000040100010401000104010002040100010401
 
680
0000040100010401000204040002040400010401000104010001040100010401000a0501
 
681
000105010000040100010401000104010001040100040401000304010004040100010401
 
682
000104010001040100020401000004010004040100020401000104010001040100010401
 
683
00ff001a0101000101010001010100010101001804040003040300020401000004020002
 
684
04020000040100040401000504010002040300030403000a050200010501000104030003
 
685
040200000401000104050000040300040403000304030004040200030405000104030002
 
686
04010001040100ff001a0101000101010001010100010101003804010001040100010401
 
687
0001040100ff008a0101000101010001010100010101003904030003040300ff008b0101
 
688
000101010001010100010101001003ff03af001001010001010100010101000101010010
 
689
03090403030b04030309050103010501033904020345040303fa00100101000101010001
 
690
010100010101001003090401030f04010309050103010501033304000305040103470401
 
691
03fa00100101000101010001010100010101001003090401030f04010309050103010501
 
692
03320401030504010347040103fa00100101000101010001010100010101001003090401
 
693
030f040103090501030105010302040303030403030b0403030204040303040303020405
 
694
0302040103000401030204030302040203000401030a0403030304030302040403030403
 
695
03030403030504010303040303f200100101000101010001010100010101001003090401
 
696
030f0401030905010301050103010401030104010301040103010401030d040103010401
 
697
030104010301040103010401030204010305040203000401030004010301040103020401
 
698
030004020308040103010401030104010301040103010401030104010301040103010401
 
699
030104010301040103040401030204010301040103f10010010100010101000101010001
 
700
0101001003090401030f040103090501030105010302040103040405030a040403010401
 
701
030104010301040103010401030204010305040103010401030004050302040203000401
 
702
030804010305040103010401030104010301040103020401030404010301040103040401
 
703
0302040503f100100101000101010001010100010101001003090401030f040103090501
 
704
030105010304040103020401030d04010301040103010401030104010301040103010401
 
705
0302040103050401030104010300040103060401030c0401030504010301040103010401
 
706
03010401030404010302040103010401030404010302040103f500100101000101010001
 
707
010100010101001003090401030f04010309050103010501030104010301040103010401
 
708
030104010309040103010401030104010301040103010401030104010302040103000401
 
709
0302040103010401030004010301040103020401030c0401030104010301040103010401
 
710
030104010301040103010401030104010301040103010401030404010302040103010401
 
711
03f100100101000101010001010100010101001003090403030b0403030a050303030403
 
712
03030403030b040203000401030004010301040103020403030404020302040203010401
 
713
0301040303020403030c0403030304030302040103010401030204030303040303030405
 
714
0301040303f200100101000101010001010100010101001003ff03af0010010100010101
 
715
0001010100010101001003ff03af0010010100010101000101010001010100ff00d10101
 
716
00010101000101010001010100ff00d1010100010101000101010001010100ff00d10101
 
717
00010101000101010001010100ff00d1010100010101000101010001010100ff00d10101
 
718
00010101000101010001010100ff00d1010100010101000101010001010100ff00d10101
 
719
00010101000101010001010100ff00d1010100010101000101010001010100ff00d10101
 
720
00010101000101010001010100ff00d1010100010101000101010001010100ff00d10101
 
721
00010101000101010001010100ff00d101010001010100010101000101010068083f0087
 
722
083f00600101000101010001010100010101006808190902080205020801050108180087
 
723
0809040308220403080a0060010100010101000101010001010100680818090108000901
 
724
080205010801050108180087080804010801040108230401080a00600101000101010001
 
725
010100010101006808170901080209010801050108000501081900870807040108020401
 
726
08230401080a006001010001010100010101000101010068081709010802090108010501
 
727
0800050108190087080704010806040308020404080304030803040308050401080a0060
 
728
01010001010100010101000101010068081709010802090108010503081a008708070401
 
729
0809040108010401080104010801040108010401080104010801040108040401080a0060
 
730
010100010101000101010001010100680817090108020901080105010800050108190407
 
731
007f08070401080604040801040108010401080104010805040508040401080a04070058
 
732
010100010101000101010001010100680817090108020901080105010800050108190407
 
733
007f08070401080204010800040108010401080104010801040108010401080504010808
 
734
0401080a0407005801010001010100010101000101010068081809010800090108020501
 
735
0801050108180407007f0808040108010401080004010801040108010401080104010801
 
736
040108010401080104010801040108040401080a04070058010100010101000101010001
 
737
0101006808190902080205020801050108180407007f0809040308020402080004010800
 
738
040108010401080204030803040308030405080804070058010100010101000101010001
 
739
01010068083f0407007f083f0407005801010001010100010101000101010068083f0407
 
740
007f083f0407005801010001010100010101000101010070043f0087043f005801010001
 
741
010100010101000101010070043f0087043f005801010001010100010101000101010070
 
742
043f0087043f005801010001010100010101000101010070043f0087043f005801010001
 
743
010100010101000101010070043f0087043f005801010001010100010101000101010070
 
744
043f0087043f0058010100010101000101010001010100ff00d101010001010100010101
 
745
0001010100ff00d1010100010101000101010001010100ff00d101010001010100010101
 
746
0001010100ff00d1010100010101000101010001010100ff00d101010001010100010101
 
747
0001010100ff00d1010100010101000101010001010100ff00d101010001010100010101
 
748
0001010100ff00d1010100010101000101010001010100ff00d101010001010100010101
 
749
0001010100ff00d101010001010100010101000101ff01d5000101010001010100ff00d9
 
750
01010001010100ff00d90101000101ff01dd00ff00df00ff00df00ff00df00ff00df
 
751
%%EndData
 
752
end
 
753
%%PageTrailer
 
754
%%Trailer
 
755
%%BoundingBox: 0 0 479 238
 
756
%%EOF