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

« back to all changes in this revision

Viewing changes to fpcdocs/pics/idewin.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: (idewin.eps)
 
4
%%CreationDate: (Sun Nov 12 11:15:00 2000)
 
5
%%BoundingBox: 0 0 725 305
 
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 726 306
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
726 306
 
272
12.000000
 
273
726 306
 
274
1
 
275
0
 
276
0
 
277
16
 
278
000099
 
279
009999
 
280
ffffff
 
281
66ff66
 
282
c9c9c9
 
283
6666cc
 
284
9999cc
 
285
006699
 
286
336666
 
287
339966
 
288
33cc66
 
289
000000
 
290
000000
 
291
000000
 
292
000000
 
293
000000
 
294
001a0204000e020400ff00ff006f0204000e02040018001a0204000e020400ff003a0600
 
295
02020600000605000600020000ff000f0500060002000012020400060901000502040018
 
296
001a02010014020100ff003906000204060000030600020300ff000d0600020300120201
 
297
0008080003010800000702010018001a02010014020100ff003805000201050000000500
 
298
020105000002060005000000020100ff000d060005000000020100120201000708000303
 
299
0800000602010018001a0201000503080005020100f60201000006000201040005000004
 
300
040002020400000302010000060002010400050000030600040002020400050000010201
 
301
000004000200050000000400020006000003060004000201040005000002040002000600
 
302
000206000200040000050201000f02010000060002010400050000030600040002020400
 
303
05000003060002020400060000e302010012020100070a000800030108000a0000060201
 
304
0018001a0201000503080005020100f60201040002030400000304000204040000020201
 
305
040002030400000302050400000102010400020104010202000204000205050000010400
 
306
02000500000205000200040000050201000f020104000204050000020205040000020400
 
307
020500e30201001202010009030100080201001800030212000302010005030800050201
 
308
000302e6000b020205000000060002010002060002000400050000000500040002000600
 
309
000102020500000006000201000706000201000102010400050002010400050002010001
 
310
06000200040005000001040002000400000102010004020100050201000f020206000001
 
311
040002000400000606000201000202010500000105000600000d02d0000402010003020a
 
312
000302010009030100080201000302120001000302120003020100050308000502010003
 
313
02e6000b0201050000020201000202010500000205000201000102010500000202010008
 
314
020100010201050000000201050000000201000104000200050000030201000102010004
 
315
020100050201000f02010500000205000201000702010002020104000500001002d00004
 
316
02010003020a000302010009030100080201000302120001000302010014020100050308
 
317
0005020100f6020100030201000202010004020100010201000302010003050004000204
 
318
00010201000102010001020100010208000102010004020100050201000f020100040201
 
319
00020500040002040002050002030600050000e302010012020100090301000802010014
 
320
02010001000302010000020f000302010005030800050201000302e6000b020100030201
 
321
000202010004020100010201000302010002050002000400050000010201000102010001
 
322
020100010201000102080001040002000500000205000200040000050201000f02010004
 
323
0201000105000200040005000001020100040500040002020600000c02d0000402010003
 
324
020a0003020100090301000802010003020f000002010001000302010000020f00030201
 
325
0005030800050201000302e6000b02010003020100020201050000020500020100010201
 
326
000302010002020100030201000102010001020100010201000102010500000704000200
 
327
0600000206000200040000050201000f0201000305000200040000010201000302010007
 
328
06000201000c02d0000402010003020a0003020100090301000802010003020f00000201
 
329
0001000302010000020100110201000503080005020100f6020100030201000206000200
 
330
040005000000050004000200060000010201000302010002020106000000050006000201
 
331
050000000201000102010001020100010600020004000500000205010001050002010500
 
332
000005000201050000050201000702020004020104000500000005000201060000010201
 
333
06000000050006000201050000010400050000020500020100e202010012020100090301
 
334
0008020100110201000002010001000302010000020100110201000503080005020100f6
 
335
0201000302010003040002040400000202010003020100020400020a0001020100010201
 
336
000204000206000206000204060000030207000402020004020604000002040002080000
 
337
0206060000df0207000f0201000903010008020100110201000002010001000302010000
 
338
020100110201000503080005020100f60201000302010004040002020400000302010003
 
339
020100030400020104000501020104000201000102010001020100030600040002020400
 
340
050000030600020206000004020700040202000402010500040002010400000404000201
 
341
040005010201040000000500040002020400060000e00207000f02010009030100080201
 
342
001102010000020100010003020100000201001102010014020100ff0059020100ff0013
 
343
0201000903010008020100110201000002010001000302010000020100110204000e0204
 
344
00ff0059020100ff00130204000603010005020400110201000002010001000302010000
 
345
020100110204000e020400ff0059020100ff001302040006030100050204001102010000
 
346
02010001000302010000020100ff00ff00c50201000002010001000302010000020100ff
 
347
00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff00ff00c2
 
348
0109000302010000020100ff00ff00c20109000302010000020100ff00ff00c201050700
 
349
0102000302010000020100ff00ff00c201040700000007000101000302010000020100ff
 
350
00ff00c20104000107000101000302010000020100ff00ff00c201030700000207000100
 
351
000302010000020100ff00ff00c20103000307000100000302010000020100ff00ff00c2
 
352
0102070000040100000302010000020100ff00ff00c20101070000050700000302010000
 
353
020100ff00ff00c2010107000006000302010000020100ff00ff00c20100070000070003
 
354
02010000020100ff00ff00c2010007000007000302010000020100ff00ff00c201090003
 
355
02010000020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000
 
356
020100ff00ff00c20109000302010000020100ff00ff00c2010100010100000101010000
 
357
000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
 
358
00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
 
359
0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
 
360
00ff00ff00cc000302010000020100ff00ff00c401010001010000010100000302010000
 
361
020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
 
362
00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
 
363
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
 
364
010100010100000101010000000302010000020100ff00ff00c201010001010000010101
 
365
0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
366
00ff00cc000302010000020100ff00ff00c2010100010100000101010000000302010000
 
367
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
 
368
010000010100000302010000020100ff00ff00c201010001010000010101000000030201
 
369
0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
 
370
01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
 
371
02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
 
372
00cc000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
373
00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
 
374
000101010000000302010000020100ff00ff00c401010001010000010100000302010000
 
375
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
 
376
0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
 
377
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc
 
378
000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
 
379
00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
 
380
0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
 
381
00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
 
382
010000010100000302010000020100ff00ff00c401010001010000010100000302010000
 
383
020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00cc0003
 
384
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
 
385
010100010100000101010000000302010000020100ff00ff00c201010001010000010101
 
386
0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
387
00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
 
388
01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
 
389
020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc00030201
 
390
0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
 
391
01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
 
392
02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
 
393
00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
 
394
0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
395
00ff00c2010100010100000101010000000302010000020100ff00ff00cc000302010000
 
396
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
 
397
0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
 
398
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c4
 
399
01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
 
400
000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
 
401
00ff00c401010001010000010100000302010000020100ff00ff00cc0003020100000201
 
402
00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
 
403
010000010100000302010000020100ff00ff00c401010001010000010100000302010000
 
404
020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
 
405
00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
 
406
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
 
407
010100010100000101010000000302010000020100ff00ff00cc000302010000020100ff
 
408
00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
 
409
01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
 
410
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
 
411
010000010100000302010000020100ff00ff00c201010001010000010101000000030201
 
412
0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
 
413
01010001010000010100000302010000020100ff00ff00cc000302010000020100ff00ff
 
414
00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
 
415
0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
416
00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
 
417
000101010000000302010000020100ff00ff00c401010001010000010100000302010000
 
418
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
 
419
0100000101010000000302010000020100ff00ff00cc000302010000020100ff00ff00c4
 
420
01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
 
421
000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
 
422
00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
 
423
0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
 
424
00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
 
425
010000010100000302010000020100ff00ff00cc000302010000020100ff00ff00c20101
 
426
00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
 
427
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
 
428
0109000302010000020100ff00ff00c20109000302010000020100ff00ff00c201090003
 
429
02010000020100ff00ff00c20109000302010000020100ff00ff00c20100000800030201
 
430
0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
 
431
0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
 
432
0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
 
433
0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
 
434
0000020100ff00ff00c201000008000302010000020100ff00ff00c20109000302010000
 
435
020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff
 
436
00ff00c20109000302010000020100ff00ff00c201010001010000010101000000030201
 
437
0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
 
438
01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
 
439
02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
 
440
00cc000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
441
00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
 
442
000101010000000302010000020100ff00ff00c401010001010000010100000302010000
 
443
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
 
444
0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
 
445
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc
 
446
000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
 
447
00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
 
448
0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
 
449
00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
 
450
010000010100000302010000020100ff00ff00c401010001010000010100000302010000
 
451
020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00cc0003
 
452
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
 
453
010100010100000101010000000302010000020100ff00ff00c201010001010000010101
 
454
0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
455
00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
 
456
01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
 
457
020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc00030201
 
458
0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
 
459
01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
 
460
02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
 
461
00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
 
462
0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
463
00ff00c2010100010100000101010000000302010000020100ff00ff00cc000302010000
 
464
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
 
465
0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
 
466
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c4
 
467
01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
 
468
000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
 
469
00ff00c401010001010000010100000302010000020100ff00ff00cc0003020100000201
 
470
00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
 
471
010000010100000302010000020100ff00ff00c401010001010000010100000302010000
 
472
020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
 
473
00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
 
474
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
 
475
010100010100000101010000000302010000020100ff00ff00cc000302010000020100ff
 
476
00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
 
477
01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
 
478
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
 
479
010000010100000302010000020100ff00ff00c201010001010000010101000000030201
 
480
0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
 
481
01010001010000010100000302010000020100ff00ff00cc000302010000020100ff00ff
 
482
00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
 
483
0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
484
00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
 
485
000101010000000302010000020100ff00ff00c401010001010000010100000302010000
 
486
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
 
487
0100000101010000000302010000020100ff00ff00cc000302010000020100ff00ff00c4
 
488
01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
 
489
000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
 
490
00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
 
491
0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
 
492
00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
 
493
010000010100000302010000020100ff00ff00cc000302010000020100ff00ff00c20101
 
494
00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
 
495
02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
 
496
010100010100000101010000000302010000020100ff00ff00c201010001010000010101
 
497
0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
 
498
00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
 
499
01010000000302010000020100ff00ff00cc000302010000020100ff00ff00c401010001
 
500
010000010100000302010000020100ff00ff00c201010001010000010101000000030201
 
501
0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
 
502
01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
 
503
02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
 
504
00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
 
505
0100000302010000020100ff00ff00cc000302010000020100ff00ff00c2010100010100
 
506
000101010000000302010000020100ff00ff00c401010001010000010100000302010000
 
507
020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201090003
 
508
02010000020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000
 
509
020100ff00ff00c20109000302010000020100ff00ff00c2010007000007000302010000
 
510
020100ff00ff00c2010007000007000302010000020100ff00ff00c20101070000060003
 
511
02010000020100ff00ff00c20101070000050700000302010000020100ff00ff00c20102
 
512
070000040100000302010000020100ff00ff00c201030003070001000003020100000201
 
513
00ff00ff00c201030700000207000100000302010000020100ff00ff00c2010400010700
 
514
0101000302010000020100ff00ff00c201040700000007000101000302010000020100ff
 
515
00ff00c2010507000102000302010000020100ff00ff00c20109000302010000020100ff
 
516
00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff00ff00c2
 
517
010900030201000002010091010c00010100000101010001010100010100000101010001
 
518
010100010100000101010001010100010100000101010001010100010100000101010001
 
519
010100010100000101010001010100010100000101010001010100010100000101010001
 
520
010100010100000101010001010100010100000101010001010100010100000101010001
 
521
010100010100000101010001010100010100000101010001010100010100000101010001
 
522
010c00010100000101010001010100010100000101010001010100010100000101010001
 
523
010100010100000101010001010100010100000101010001010100010100000101010001
 
524
010100010100000101010001010100010100000101010001010100010100000101010001
 
525
010100010100000101010001010100010100000101010001010100010100000101010001
 
526
010100010100000101010001010100010100000101010001010100010100000101010001
 
527
010100010100000101010001010100010100000101010001010100010100000101010001
 
528
010100010100000101010001010100010100000101010001010100010100000101010001
 
529
010100010100000101010001010100010100000101010001010100010100000101010001
 
530
010100010100000101010001010100010100000101010001010100010100000101010001
 
531
010100010100000101010001010100010100000101010001010100010100000101010001
 
532
010100010100000101010001010100010100000101010001010100010100000101010001
 
533
010100010100000101010001010a0004030100020003020100000201001c020100320206
 
534
00040500040002010400060000100500060002000019010c000101000001010100010101
 
535
000101000001010100010101000101000001010100010101000101000001010100010101
 
536
000101000001010100010101000101000001010100010101000101000001010100010101
 
537
000101000001010100010101000101000001010100010101000101000001010100010101
 
538
000101000001010100010101000101000001010100010101000101000001010100010101
 
539
00010100000101010001010c000101000001010100010101000101000001010100010101
 
540
000101000001010100010101000101000001010100010101000101000001010100010101
 
541
000101000001010100010101000101000001010100010101000101000001010100010101
 
542
000101000001010100010101000101000001010100010101000101000001010100010101
 
543
000101000001010100010101000101000001010100010101000101000001010100010101
 
544
000101000001010100010101000101000001010100010101000101000001010100010101
 
545
000101000001010100010101000101000001010100010101000101000001010100010101
 
546
000101000001010100010101000101000001010100010101000101000001010100010101
 
547
000101000001010100010101000101000001010100010101000101000001010100010101
 
548
000101000001010100010101000101000001010100010101000101000001010100010101
 
549
000101000001010100010101000101000001010100010101000101000001010100010101
 
550
00010100000101010001010100010100000101010001010a000403010002000302010000
 
551
0201001c040100320206000305000205000e060002030019010a00010101000101000001
 
552
010100010101000101000001010100010101000101000001010100010101000101000001
 
553
010100010101000101000001010100010101000101000001010100010101000101000001
 
554
010100010101000101000001010100010101000101000001010100010101000101000001
 
555
010100010101000101000001010100010101000101000001010100010101000101000001
 
556
010100010101000101000001010c00010101000101000001010100010101000101000001
 
557
010100010101000101000001010100010101000101000001010100010101000101000001
 
558
010100010101000101000001010100010101000101000001010100010101000101000001
 
559
010100010101000101000001010100010101000101000001010100010101000101000001
 
560
010100010101000101000001010100010101000101000001010100010101000101000001
 
561
010100010101000101000001010100010101000101000001010100010101000101000001
 
562
010100010101000101000001010100010101000101000001010100010101000101000001
 
563
010100010101000101000001010100010101000101000001010100010101000101000001
 
564
010100010101000101000001010100010101000101000001010100010101000101000001
 
565
010100010101000101000001010100010101000101000001010100010101000101000001
 
566
010100010101000101000001010100010101000101000001010100010101000101000001
 
567
010100010101000101000001010100010101000101000001010c00040301000200030201
 
568
00000201001906010500040105000601002f02010008020104000500000005000600000e
 
569
06000500000002010019010a000101010001010000010101000101010001010000010101
 
570
000101010001010000010101000101010001010000010101000101010001010000010101
 
571
000101010001010000010101000101010001010000010101000101010001010000010101
 
572
000101010001010000010101000101010001010000010101000101010001010000010101
 
573
00010101000101000001010100010101000101000001010100010101000101000001010c
 
574
000101010001010000010101000101010001010000010101000101010001010000010101
 
575
000101010001010000010101000101010001010000010101000101010001010000010101
 
576
000101010001010000010101000101010001010000010101000101010001010000010101
 
577
000101010001010000010101000101010001010000010101000101010001010000010101
 
578
000101010001010000010101000101010001010000010101000101010001010000010101
 
579
000101010001010000010101000101010001010000010101000101010001010000010101
 
580
000101010001010000010101000101010001010000010101000101010001010000010101
 
581
000101010001010000010101000101010001010000010101000101010001010000010101
 
582
000101010001010000010101000101010001010000010101000101010001010000010101
 
583
000101010001010000010101000101010001010000010101000101010001010000010101
 
584
000101010001010000010101000101010001010000010101000101010001010000010101
 
585
00010101000101000001010c000403010002000302010000020100190400020100010201
 
586
0400002f0201000706000201000a02020008020100190108070101010001010000010101
 
587
000101010001010000010101000101010001010000010101000101010001010000010101
 
588
000101010001010000010101000101010001010000010101000101010001010000010101
 
589
000101010001010000010101000101010001010000010101000101010001010000010101
 
590
000101010001010000010101000101010001010000010101000101010001010000010101
 
591
000101010001010000010101000101000008010200010100000101010001010100010100
 
592
000101010001010100010100000101010001010100010100000101010001010100010100
 
593
000101010001010100010100000101010001010100010100000101010001010100010100
 
594
000101010001010100010100000101010001010100010100000101010001010100010100
 
595
000101010001010100010100000101010001010100010100000101010001010100010100
 
596
000101010001010100010100000101010001010100010100000101010001010100010100
 
597
000101010001010100010100000101010001010100010100000101010001010100010100
 
598
000101010001010100010100000101010001010100010100000101010001010100010100
 
599
000101010001010100010100000101010001010100010100000101010001010100010100
 
600
000101010001010100010100000101010001010100010100000101010001010100010100
 
601
000101010001010100010100000101010001010100010100000101010001010100010100
 
602
000101010001010100010100000101010001010100010100000101010001010007010107
 
603
0004030100020003020100000201001b050000010500003102010007040002000600000a
 
604
020200080201001901060700009c01000008010000ff0075010000020700010500040301
 
605
0002000302010000021a000204030003022b000102030600000402010500060002010400
 
606
05000005020200080201000e020a01030701000601010001010000010101000101010001
 
607
010000010101000101010001010000010101000101010001010000010101000101010001
 
608
010000010101000101010001010000010101000101010001010000010101000101010001
 
609
010000010101000101010001010000010101000101010001010000010101000101010001
 
610
010000010101000101010001010000010101000101010001010000010101000101010001
 
611
010000010102000801000001010100010100000101010001010100010100000101010001
 
612
010100010100000101010001010100010100000101010001010100010100000101010001
 
613
010100010100000101010001010100010100000101010001010100010100000101010001
 
614
010100010100000101010001010100010100000101010001010100010100000101010001
 
615
010100010100000101010001010100010100000101010001010100010100000101010001
 
616
010100010100000101010001010100010100000101010001010100010100000101010001
 
617
010100010100000101010001010100010100000101010001010100010100000101010001
 
618
010100010100000101010001010100010100000101010001010100010100000101010001
 
619
010100010100000101010001010100010100000101010001010100010100000101010001
 
620
010100010100000101010001010100010100000101010001010100010100000101010001
 
621
010100010100000101010001010100010100000101010001010100010100000101010001
 
622
010100010100000101010001010100010100000101020004070101020004030100020003
 
623
02010000021a0001060002000501020006000002022b0001020505000002020106000204
 
624
050000100201000e020a0101070100060101000101000001010100010101000101000001
 
625
010100010101000101000001010100010101000101000001010100010101000101000001
 
626
010100010101000101000001010100010101000101000001010100010101000101000001
 
627
010100010101000101000001010100010101000101000001010100010101000101000001
 
628
010100010101000101000001010100010101000101000001010100010101000101000001
 
629
010100010100000801020001010000010101000101010001010000010101000101010001
 
630
010000010101000101010001010000010101000101010001010000010101000101010001
 
631
010000010101000101010001010000010101000101010001010000010101000101010001
 
632
010000010101000101010001010000010101000101010001010000010101000101010001
 
633
010000010101000101010001010000010101000101010001010000010101000101010001
 
634
010000010101000101010001010000010101000101010001010000010101000101010001
 
635
010000010101000101010001010000010101000101010001010000010101000101010001
 
636
010000010101000101010001010000010101000101010001010000010101000101010001
 
637
010000010101000101010001010000010101000101010001010000010101000101010001
 
638
010000010101000101010001010000010101000101010001010000010101000101010001
 
639
010000010101000101010001010000010101000101010001010000010101000101010001
 
640
010000010101000101010001010000010101000101000006070101000306000200030201
 
641
001d05000400000104000500003305000400020004000002020104000500000005000400
 
642
020004000010020100190100070000080101000101000001010100010101000101000001
 
643
010100010101000101000001010100010101000101000001010100010101000101000001
 
644
010100010101000101000001010100010101000101000001010100010101000101000001
 
645
010100010101000101000001010100010101000101000001010100010101000101000001
 
646
010100010101000101000001010100010101000101000001010100010101000101000001
 
647
010100010100000801020001010000010101000101010001010000010101000101010001
 
648
010000010101000101010001010000010101000101010001010000010101000101010001
 
649
010000010101000101010001010000010101000101010001010000010101000101010001
 
650
010000010101000101010001010000010101000101010001010000010101000101010001
 
651
010000010101000101010001010000010101000101010001010000010101000101010001
 
652
010000010101000101010001010000010101000101010001010000010101000101010001
 
653
010000010101000101010001010000010101000101010001010000010101000101010001
 
654
010000010101000101010001010000010101000101010001010000010101000101010001
 
655
010000010101000101010001010000010101000101010001010000010101000101010001
 
656
010000010101000101010001010000010101000101010001010000010101000101010001
 
657
010000010101000101010001010000010101000101010001010000010101000101010001
 
658
0100000101010001010100010100000101010001010000080700030600020003021d000a
 
659
022b000602010002020105000003020100100201000e020a010107000009010100010100
 
660
000101010001010100010100000101010001010100010100000101010001010100010100
 
661
000101010001010100010100000101010001010100010100000101010001010100010100
 
662
000101010001010100010100000101010001010100010100000101010001010100010100
 
663
000101010001010100010100000101010001010100010100000101010001010100010100
 
664
000101010001010100010100000101020008010000010101000101000001010100010101
 
665
000101000001010100010101000101000001010100010101000101000001010100010101
 
666
000101000001010100010101000101000001010100010101000101000001010100010101
 
667
000101000001010100010101000101000001010100010101000101000001010100010101
 
668
000101000001010100010101000101000001010100010101000101000001010100010101
 
669
000101000001010100010101000101000001010100010101000101000001010100010101
 
670
000101000001010100010101000101000001010100010101000101000001010100010101
 
671
000101000001010100010101000101000001010100010101000101000001010100010101
 
672
000101000001010100010101000101000001010100010101000101000001010100010101
 
673
000101000001010100010101000101000001010100010101000101000001010100010101
 
674
000101000001010100010101000101000001010100010101000101000001010100010101
 
675
000101000001010100010101000101000001010100010101000101000001010200070700
 
676
010000090003021d000a022b0006020100020400020005000003020100100201000e020a
 
677
010307000007010100010100000101010001010100010100000101010001010100010100
 
678
000101010001010100010100000101010001010100010100000101010001010100010100
 
679
000101010001010100010100000101010001010100010100000101010001010100010100
 
680
000101010001010100010100000101010001010100010100000101010001010100010100
 
681
000101010001010100010100000101010001010100010100000101020008010000010101
 
682
000101000001010100010101000101000001010100010101000101000001010100010101
 
683
000101000001010100010101000101000001010100010101000101000001010100010101
 
684
000101000001010100010101000101000001010100010101000101000001010100010101
 
685
000101000001010100010101000101000001010100010101000101000001010100010101
 
686
000101000001010100010101000101000001010100010101000101000001010100010101
 
687
000101000001010100010101000101000001010100010101000101000001010100010101
 
688
000101000001010100010101000101000001010100010101000101000001010100010101
 
689
000101000001010100010101000101000001010100010101000101000001010100010101
 
690
000101000001010100010101000101000001010100010101000101000001010100010101
 
691
000101000001010100010101000101000001010100010101000101000001010100010101
 
692
000101000001010100010101000101000001010100010101000101000001010100010101
 
693
00010100000101020005070001020009005a060005000000050004000200040000020600
 
694
020105000001040002000400000402020008020100190105070000030101000101000001
 
695
010100010101000101000001010100010101000101000001010100010101000101000001
 
696
010100010101000101000001010100010101000101000001010100010101000101000001
 
697
010100010101000101000001010100010101000101000001010100010101000101000001
 
698
010100010101000101000001010100010101000101000001010100010101000101000001
 
699
010100010101000101000001010100010100000801020001010000010101000101010001
 
700
010000010101000101010001010000010101000101010001010000010101000101010001
 
701
010000010101000101010001010000010101000101010001010000010101000101010001
 
702
010000010101000101010001010000010101000101010001010000010101000101010001
 
703
010000010101000101010001010000010101000101010001010000010101000101010001
 
704
010000010101000101010001010000010101000101010001010000010101000101010001
 
705
010000010101000101010001010000010101000101010001010000010101000101010001
 
706
010000010101000101010001010000010101000101010001010000010101000101010001
 
707
010000010101000101010001010000010101000101010001010000010101000101010001
 
708
010000010101000101010001010000010101000101010001010000010101000101010001
 
709
010000010101000101010001010000010101000101010001010000010101000101010001
 
710
010000010101000101010001010000010101000101010001010000010101000101000003
 
711
070001040009005a02050500000304000205050000040202000502070016010607010001
 
712
010100010100000101010001010100010100000101010001010100010100000101010001
 
713
010100010100000101010001010100010100000101010001010100010100000101010001
 
714
010100010100000101010001010100010100000101010001010100010100000101010001
 
715
010100010100000101010001010100010100000101010001010100010100000101010001
 
716
010100010100000101010001010100010100000101010001010000080102000101000001
 
717
010100010101000101000001010100010101000101000001010100010101000101000001
 
718
010100010101000101000001010100010101000101000001010100010101000101000001
 
719
010100010101000101000001010100010101000101000001010100010101000101000001
 
720
010100010101000101000001010100010101000101000001010100010101000101000001
 
721
010100010101000101000001010100010101000101000001010100010101000101000001
 
722
010100010101000101000001010100010101000101000001010100010101000101000001
 
723
010100010101000101000001010100010101000101000001010100010101000101000001
 
724
010100010101000101000001010100010101000101000001010100010101000101000001
 
725
010100010101000101000001010100010101000101000001010100010101000101000001
 
726
010100010101000101000001010100010101000101000001010100010101000101000001
 
727
010100010101000101000001010100010101000101000001010100010101000101000001
 
728
0101000101000001070101050009005a0400020204000500000506000202040005000005
 
729
020200050207001601080701000101010001010000010101000101010001010000010101
 
730
000101010001010000010101000101010001010000010101000101010001010000010101
 
731
000101010001010000010101000101010001010000010101000101010001010000010101
 
732
000101010001010000010101000101010001010000010101000101010001010000010101
 
733
000101010001010000010101000101010001010000010101000101010001010000010102
 
734
000801000001010100010100000101010001010100010100000101010001010100010100
 
735
000101010001010100010100000101010001010100010100000101010001010100010100
 
736
000101010001010100010100000101010001010100010100000101010001010100010100
 
737
000101010001010100010100000101010001010100010100000101010001010100010100
 
738
000101010001010100010100000101010001010100010100000101010001010100010100
 
739
000101010001010100010100000101010001010100010100000101010001010100010100
 
740
000101010001010100010100000101010001010100010100000101010001010100010100
 
741
000101010001010100010100000101010001010100010100000101010001010100010100
 
742
000101010001010100010100000101010001010100010100000101010001010100010100
 
743
000101010001010100010100000101010001010100010100000101010001010100010100
 
744
000101010001010100010100000101010001010100010100000101010001010100010100
 
745
00010101000101010001010000010102070101070009009a010a0099010a00ff0075010a
 
746
0009009a010c000101000001010100010101000101000001010100010101000101000001
 
747
010100010101000101000001010100010101000101000001010100010101000101000001
 
748
010100010101000101000001010100010101000101000001010100010101000101000001
 
749
010100010101000101000001010100010101000101000001010100010101000101000001
 
750
01010001010100010100000101010001010100010100000101010001010c000101000001
 
751
010100010101000101000001010100010101000101000001010100010101000101000001
 
752
010100010101000101000001010100010101000101000001010100010101000101000001
 
753
010100010101000101000001010100010101000101000001010100010101000101000001
 
754
010100010101000101000001010100010101000101000001010100010101000101000001
 
755
010100010101000101000001010100010101000101000001010100010101000101000001
 
756
010100010101000101000001010100010101000101000001010100010101000101000001
 
757
010100010101000101000001010100010101000101000001010100010101000101000001
 
758
010100010101000101000001010100010101000101000001010100010101000101000001
 
759
010100010101000101000001010100010101000101000001010100010101000101000001
 
760
010100010101000101000001010100010101000101000001010100010101000101000001
 
761
010100010101000101000001010100010101000101000001010100010101000101000001
 
762
01010001010a0009009a010a000101010001010000010101000101010001010000010101
 
763
000101010001010000010101000101010001010000010101000101010001010000010101
 
764
000101010001010000010101000101010001010000010101000101010001010000010101
 
765
000101010001010000010101000101010001010000010101000101010001010000010101
 
766
00010101000101000001010100010101000101000001010100010101000101000001010c
 
767
000101010001010000010101000101010001010000010101000101010001010000010101
 
768
000101010001010000010101000101010001010000010101000101010001010000010101
 
769
000101010001010000010101000101010001010000010101000101010001010000010101
 
770
000101010001010000010101000101010001010000010101000101010001010000010101
 
771
000101010001010000010101000101010001010000010101000101010001010000010101
 
772
000101010001010000010101000101010001010000010101000101010001010000010101
 
773
000101010001010000010101000101010001010000010101000101010001010000010101
 
774
000101010001010000010101000101010001010000010101000101010001010000010101
 
775
000101010001010000010101000101010001010000010101000101010001010000010101
 
776
000101010001010000010101000101010001010000010101000101010001010000010101
 
777
000101010001010000010101000101010001010000010101000101010001010000010101
 
778
00010101000101000001010c0009009a010a000101010001010000010101000101010001
 
779
010000010101000101010001010000010101000101010001010000010101000101010001
 
780
010000010101000101010001010000010101000101010001010000010101000101010001
 
781
010000010101000101010001010000010101000101010001010000010101000101010001
 
782
010000010101000101010001010000010101000101010001010000010101000101010001
 
783
01000001010c000101010001010000010101000101010001010000010101000101010001
 
784
010000010101000101010001010000010101000101010001010000010101000101010001
 
785
010000010101000101010001010000010101000101010001010000010101000101010001
 
786
010000010101000101010001010000010101000101010001010000010101000101010001
 
787
010000010101000101010001010000010101000101010001010000010101000101010001
 
788
010000010101000101010001010000010101000101010001010000010101000101010001
 
789
010000010101000101010001010000010101000101010001010000010101000101010001
 
790
010000010101000101010001010000010101000101010001010000010101000101010001
 
791
010000010101000101010001010000010101000101010001010000010101000101010001
 
792
010000010101000101010001010000010101000101010001010000010101000101010001
 
793
010000010101000101010001010000010101000101010001010000010101000101010001
 
794
01000001010100010101000101000001010c0009
 
795
%%EndData
 
796
end
 
797
%%PageTrailer
 
798
%%Trailer
 
799
%%BoundingBox: 0 0 725 305
 
800
%%EOF