~ubuntu-branches/ubuntu/karmic/axiom/karmic

« back to all changes in this revision

Viewing changes to src/doc/ps/h-matexports.ps

  • Committer: Bazaar Package Importer
  • Author(s):
  • Date: 2005-02-21 17:08:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050221170837-34vm4j33v4t9hsk4
Tags: 20050201-1
* New upstream release
* Bug fix: "axiom graphics missing?", thanks to Daniel Lakeland (Closes:
  #277692).
* Bug fix: "axiom: Feb 2005 release for sarge would be nice", thanks to
  Balbir Thomas (Closes: #295000).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%!PS-Adobe-2.0 EPSF-1.2
 
2
%%BoundingBox: 143.000000 280.520006 469.000000 541.719999
 
3
%%Creator: xwd2ps
 
4
%%CreationDate: Fri Nov 22 15:17:04 1991
 
5
%%Title: h-matexports.xwd
 
6
%%EndComments
 
7
% xwd2ps -- program written by Robert C. Tatar and Craig A. McGowan.
 
8
% The command used to create this file (missing quotes on strings):
 
9
%   xwd2ps -w4.5 -h2.5 h-matexports.xwd
 
10
% by loan7:themos (Themos Tsikas, NAG Ltd)
 
11
% Information from XWD rasterfile header:
 
12
%   width =  622, height = 495, depth = 8
 
13
%   file_version = 7, pixmap_format = 2, byte_order = 1
 
14
%   bitmap_unit = 32, bitmap_bit_order = 1, bitmap_pad = 32
 
15
%   bits_per_pixel = 8, bytes_per_line = 624, visual_class = 3
 
16
%   bits/rgb = 8, colormap entries = 256, ncolors = 256
 
17
% Portion of raster image in this file:
 
18
%   starting line = 1
 
19
%   ending line = 495
 
20
%   starting column = 1
 
21
%   ending column = 622
 
22
gsave
 
23
/inch {72 mul} def
 
24
/buffer 2 string def
 
25
/rgbmap 768 string def
 
26
/rgb (000) def
 
27
/pixels 768 string def
 
28
%%Title: colorimage.ps
 
29
% Written 11-4-88 by Bob Tatar
 
30
% U.S. Mail: GE-CRD, PO Box 8, KW-C214, Schenectady, NY 12301
 
31
%    E-Mail: tatar@crd.ge.com
 
32
% colorimage procedure to be used on monochrome printers
 
33
% or when the colorimage procedure is not available
 
34
% NOTE: Only 1 color mode is supported: single proc. & RGB
 
35
 
 
36
systemdict /colorimage known not {        % only create if not in systemdict
 
37
  % Utility procedure for colorimage operator.  This procedure takes a
 
38
  % string of rgb encoded values and creates a string 1/3 as long with
 
39
  % monochrome values.  This procedure assumes 8 bits/color (i.e. 
 
40
  % 1 character/color)
 
41
  % storage format for input string:  (r1 g1 b1  r2 g2 b2  r3 g3 b3  ... )
 
42
  % storage format for output string: (g1  g2  g3 ... )
 
43
  
 
44
  /colortograyscale { %def                % (string)
 
45
    dup /rgbdata exch store               % (string)
 
46
    length 3 idiv                         % Ns/3 
 
47
    /npixls exch store                    % ; npixls => Ns/3
 
48
    /indx 0 store                         % ; indx => 0
 
49
    /pixls npixls string store            % ; pixls => (....)
 
50
    0 1 npixls -1 add {                   % counter 
 
51
      pixls exch                          % pixls counter
 
52
      rgbdata indx get .3 mul             % pixls counter .3*rgbdata(ind)
 
53
      rgbdata indx 1 add get .59 mul add  % pixls counter .3*rgbdata(ind) + 
 
54
                                          %          .59*rgbdata(ind+1)
 
55
      rgbdata indx 2 add get .11 mul add  % pixls counter .3*rgbdata(ind) + .59
 
56
                                          %  *rgbdata(ind+1)+.11*rgbdata(ind+2)
 
57
      cvi                                 % pixls counter <grayscale value>
 
58
      put                                 %
 
59
      /indx indx 3 add store              % ; /ind => ind+3
 
60
    } for                                 % repeat for each rgb value
 
61
    pixls                                 % (pixls)
 
62
  } bind def                              % ; /colortograyscale -> dictionary
 
63
  
 
64
  % Utility procedure for colorimage operator.  This procedure takes two
 
65
  % procedures off the stack and merges them into a single procedure.
 
66
  
 
67
  /mergeprocs { %def      % {proc1} {proc2}
 
68
    dup length            % {proc1} {proc2} N2
 
69
    3 -1 roll             % {proc2} N2 {proc1}
 
70
    dup                   % {proc2} N2 {proc1} {proc1}
 
71
    length                % {proc2} N2 {proc1} N1
 
72
    dup                   % {proc2} N2 {proc1} N1 N1
 
73
    5 1 roll              % N1 {proc2} N2 {proc1} N1
 
74
    3 -1 roll             % N1 {proc2} {proc1} N1 N2
 
75
    add                   % N1 {proc2} {proc1} N1+N2
 
76
    array cvx             % N1 {proc2} {proc1} { ... }
 
77
    dup                   % N1 {proc2} {proc1} { ... } { ... }
 
78
    3 -1 roll             % N1 {proc2} { ... } { ... } {proc1}
 
79
    0 exch                % N1 {proc2} { ... } { ... } 0 {proc1}
 
80
    putinterval           % N1 {proc2} { <<{proc1}>> ... }
 
81
    dup                   % N1 {proc2} { <<{proc1}>> ... } { <<{proc1}>> ... }
 
82
    4 2 roll              % { <<{proc1}>> ... } { <<{proc1}>> ... } N1 {proc2}
 
83
    putinterval           % { <<{proc1}>> <<{proc2}>> }
 
84
  } bind def              % ; /mergeprocs => dictionary
 
85
 
 
86
  /colorimage { %def               % {imageproc} multiproc ncolors
 
87
     pop                           % {imageproc} multiproc ; assume 3 colors
 
88
     pop                           % {imageproc}           ; assume false
 
89
     {colortograyscale}            % {imageproc} {colortograyscale}
 
90
     mergeprocs                    % {imageproc colortograyscale}
 
91
     image                         % construct monochrome image
 
92
  } bind def                       % ; /colorimage => dictionary
 
93
} if                               % only create if it doesn't already exist
 
94
/drawcolorimage {
 
95
  622 495 8
 
96
  [622 0 0 -495 0 495]
 
97
  {currentfile buffer readhexstring pop pop  % get run length & color info
 
98
    /npixels buffer 0 get 1 add 3 mul store  % number of pixels (run length)
 
99
    /color buffer 1 get 3 mul store          % color of pixels
 
100
    % /pixels npixels string store          % create string to hold colors
 
101
    /rgb rgbmap color 3 getinterval store    % get rgb value
 
102
    0 3 npixels -1 add {
 
103
          pixels exch rgb putinterval
 
104
    } for
 
105
    pixels 0 npixels getinterval             % Return color values
 
106
  }
 
107
  false 3
 
108
  colorimage
 
109
} bind def
 
110
%2.000000 inch 3.910000 inch translate
 
111
matrix currentmatrix
 
112
4.500000 inch 2.500000 inch scale
 
113
 
 
114
% get rgb color table
 
115
currentfile rgbmap readhexstring pop pop
 
116
000000
 
117
ffffff
 
118
b3b3b3
 
119
d8d8bf
 
120
dbdb70
 
121
ffff00
 
122
3299cc
 
123
236b8e
 
124
238e23
 
125
cc7f32
 
126
0000ff
 
127
2f2f4f
 
128
5f9f9f
 
129
ff0000
 
130
1a1a1a
 
131
333333
 
132
7f7f7f
 
133
4d4d4d
 
134
cccccc
 
135
d4d8e8
 
136
757780
 
137
46474d
 
138
b4b8c5
 
139
fbfbfb
 
140
626262
 
141
3b3b3b
 
142
00dbaa
 
143
00dbff
 
144
00ff00
 
145
00ff55
 
146
00ffaa
 
147
00ffff
 
148
240000
 
149
240055
 
150
2400aa
 
151
2400ff
 
152
242400
 
153
242455
 
154
2424aa
 
155
2424ff
 
156
244900
 
157
244955
 
158
2449aa
 
159
2449ff
 
160
246d00
 
161
246d55
 
162
246daa
 
163
246dff
 
164
249200
 
165
249255
 
166
2492aa
 
167
2492ff
 
168
24b600
 
169
24b655
 
170
24b6aa
 
171
24b6ff
 
172
24db00
 
173
24db55
 
174
24dbaa
 
175
24dbff
 
176
24ff00
 
177
24ff55
 
178
24ffaa
 
179
24ffff
 
180
490000
 
181
490055
 
182
4900aa
 
183
4900ff
 
184
492400
 
185
492455
 
186
4924aa
 
187
4924ff
 
188
494900
 
189
494955
 
190
4949aa
 
191
4949ff
 
192
496d00
 
193
496d55
 
194
496daa
 
195
496dff
 
196
499200
 
197
499255
 
198
4992aa
 
199
4992ff
 
200
49b600
 
201
49b655
 
202
49b6aa
 
203
49b6ff
 
204
49db00
 
205
49db55
 
206
49dbaa
 
207
49dbff
 
208
49ff00
 
209
49ff55
 
210
49ffaa
 
211
49ffff
 
212
6d0000
 
213
6d0055
 
214
6d00aa
 
215
6d00ff
 
216
6d2400
 
217
6d2455
 
218
6d24aa
 
219
6d24ff
 
220
6d4900
 
221
6d4955
 
222
6d49aa
 
223
6d49ff
 
224
6d6d00
 
225
6d6d55
 
226
6d6daa
 
227
6d6dff
 
228
6d9200
 
229
6d9255
 
230
6d92aa
 
231
6d92ff
 
232
6db600
 
233
6db655
 
234
6db6aa
 
235
6db6ff
 
236
6ddb00
 
237
6ddb55
 
238
6ddbaa
 
239
6ddbff
 
240
6dff00
 
241
6dff55
 
242
6dffaa
 
243
6dffff
 
244
920000
 
245
920055
 
246
9200aa
 
247
9200ff
 
248
922400
 
249
922455
 
250
9224aa
 
251
9224ff
 
252
924900
 
253
924955
 
254
9249aa
 
255
9249ff
 
256
926d00
 
257
926d55
 
258
926daa
 
259
926dff
 
260
929200
 
261
929255
 
262
9292aa
 
263
9292ff
 
264
92b600
 
265
92b655
 
266
92b6aa
 
267
92b6ff
 
268
92db00
 
269
92db55
 
270
92dbaa
 
271
92dbff
 
272
92ff00
 
273
92ff55
 
274
92ffaa
 
275
92ffff
 
276
b60000
 
277
b60055
 
278
b600aa
 
279
b600ff
 
280
b62400
 
281
b62455
 
282
b624aa
 
283
b624ff
 
284
b64900
 
285
b64955
 
286
b649aa
 
287
b649ff
 
288
b66d00
 
289
b66d55
 
290
b66daa
 
291
b66dff
 
292
b69200
 
293
b69255
 
294
b692aa
 
295
b692ff
 
296
b6b600
 
297
b6b655
 
298
b6b6aa
 
299
b6b6ff
 
300
b6db00
 
301
b6db55
 
302
b6dbaa
 
303
b6dbff
 
304
b6ff00
 
305
b6ff55
 
306
b6ffaa
 
307
b6ffff
 
308
db0000
 
309
db0055
 
310
db00aa
 
311
db00ff
 
312
db2400
 
313
db2455
 
314
db24aa
 
315
db24ff
 
316
db4900
 
317
db4955
 
318
db49aa
 
319
db49ff
 
320
db6d00
 
321
db6d55
 
322
db6daa
 
323
db6dff
 
324
db9200
 
325
db9255
 
326
db92aa
 
327
db92ff
 
328
dbb600
 
329
dbb655
 
330
dbb6aa
 
331
dbb6ff
 
332
dbdb00
 
333
dbdb55
 
334
dbdbaa
 
335
dbdbff
 
336
dbff00
 
337
dbff55
 
338
dbffaa
 
339
dbffff
 
340
ff0000
 
341
ff0055
 
342
ff00aa
 
343
ff00ff
 
344
ff2400
 
345
ff2455
 
346
ff24aa
 
347
ff24ff
 
348
ff4900
 
349
ff4955
 
350
ff49aa
 
351
ff49ff
 
352
ff6d00
 
353
ff6d55
 
354
ff6daa
 
355
ff6dff
 
356
ff9200
 
357
ff9255
 
358
ff92aa
 
359
ff92ff
 
360
ffb600
 
361
ffb655
 
362
ffb6aa
 
363
ffb6ff
 
364
ffdb00
 
365
ffdb55
 
366
ffdbaa
 
367
ffdbff
 
368
ffff00
 
369
ffff55
 
370
ffffaa
 
371
ffffff
 
372
 
 
373
 
 
374
drawcolorimage
 
375
ff12ff126d1220120011ff12ff12281200112012001101121e0100110012ff01ff0127010011001
 
376
21e01011101121e0100110012ff01ff012701001100121e01011101121e010011
 
377
0012ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e010111011
 
378
21e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff01
 
379
2701001100121e01011101121e0100110012ff01ff012701001100121e010111011206011811001
 
380
2ff11ff1128110012171106010111011206010011ff12ff125a12060101110112
 
381
060100110012150100110012ff01ff010f010011001215010011001215010011001206010111011
 
382
2060100110012150100110012ff01ff010f010011001215010011001215010011
 
383
0012060101110112060100110012150100110012ff01ff010f01001100121501001100121501001
 
384
10012060101110112060100110012150100110012ff01ff010f01001100121501
 
385
0011001202010f12020100110012060101110112060100110012150100110012ff01ff010f01001
 
386
10012150100110012020100120d01001102010011001206010111011206010011
 
387
0012150100110012ff01ff010f0100110012150100110012020100120d010011020100110012060
 
388
101110112060100110012150100110012ff01ff010f0100110012150100110012
 
389
020100120d010011020100110012060101110112060100110012150100110012ff01ff010f01001
 
390
10012150100110012020100120d01001102010011001206010111011206010011
 
391
0012150100110012ff01ff010f0100110012150100110012020100120d010011020100110012060
 
392
10111011206010011001202010f12020100110012ff01ff010f01001100120801
 
393
0312080100110012020100120d010011020100110012060101110112060100110012020100120d0
 
394
10011020100110012ff01ff010f01001100120801001201010011080100110012
 
395
020100120d010011020100110012060101110112060100110012020100120d01001102010011001
 
396
2ff01ff010f01001100120801001201010011080100110012020100120d010011
 
397
020100110012060101110112060100110012020100120e11020100110012ff01ff010f010011001
 
398
2080100120211080100110012020100120d010011020100110012060101110112
 
399
060100110012150100110012ff01ff010f0100110012150100110012020100120d0100110201001
 
400
10012060101110112060100110012150100110012ff01ff010f01001100121501
 
401
00110012020100120d010011020100110012060101110112060100110012150100110012ff01ff0
 
402
10f0100110012150100110012020100120d010011020100110012060101110112
 
403
060100110012150100110012ff01ff010f0100110012150100110012020100120d0100110201001
 
404
10012060101110112060100110012150100110012ff01ff010f01001100121501
 
405
00110012020100120d010011020100110012060101110112060100110012150100110012ff01ff0
 
406
10f0100110012150100110012020100120e110201001100120601011101120601
 
407
00110012150100110012ff01ff010f0100110012150100110012150100110012060101110112060
 
408
100110012150100110012ff01ff010f0100110012150100110012150100110012
 
409
06010111011206010011001216110012ff11ff11101100121611001216110012060101110012ff1
 
410
1ff11621100120811091200117b00ff015f017b00091200110112060101117b00
 
411
ff015f017b000112060101110112060101117b00ff015f017b000112060101110112060101117b0
 
412
0ff015f017b000112060101110112060101110500090103000101070001010300
 
413
010103000b014500ff015f010600010105000101040006010400010106000101030008014100011
 
414
20601011101120601011105000a0102000201060002010200020102000c014400
 
415
ff015f0106000201040002010200080103000201050002010200090140000112060101110112060
 
416
1011105000a0103000201040002010300020103000b014400ff015f0106000201
 
417
04000201020009010200030103000301020009014000011206010111011206010111050002010b0
 
418
002010400020103000201070002014900ff015f01060002010400020102000201
 
419
030002010200030103000301020002014700011206010111011206010111050002010c000201020
 
420
0020104000201070002014900ff015f0106000201040002010200020103000201
 
421
0200030103000301020002014700011206010111011206010111050002010c00020102000201040
 
422
002010700020149003701040007010700270100001e0103000601050020010000
 
423
13010000040100001f0100001001010003010500040100003801060002010400020102000201030
 
424
00201020004010100040102000201280000011d00011206010111011206010111
 
425
050002010d000201000002010500020107000201490036010100010102000701010002010100270
 
426
100001d0101000101010006010100010101001e01020012010000030101000d01
 
427
00000f0102000e01000006010100010101000401000037010600020104000201020002010300020
 
428
1020004010100040102000201260004011b000112060101110112060101110500
 
429
02010d0002010000020105000201070002014900360100000301010007010100030100002601010
 
430
01d0101000101010006010100020101001e01000013010100020101000d010000
 
431
100100000e010100060101000101010004010000370106000201040002010200020103000201020
 
432
00b0102000201240008011900011206010111011206010111050002010e000401
 
433
060002010700020149003b010100070101002b0101001d0101000a0101000201010033010100010
 
434
101000d0101001f01010007010100010101000401010036010600020104000201
 
435
02000201030002010200020100000301000002010200020122000c0117000112060101110112060
 
436
101110500080108000401060002010700020149003a0101000801010001010000
 
437
0201020001010200000101000001020004010300020101000001030001010600020103000001000
 
438
008010300040101000a0101000201010002010300020100000001010000010100
 
439
0201040003010300030101000001020008010500030103000301050001010100010102000201030
 
440
0040101000201010001010100060101000101010005010100360106000a010200
 
441
020103000201020002010000030100000201020007011b001001150001120601011101120601011
 
442
10500090108000201070002010700020149003801020009010400030101000101
 
443
0100020102000001010002010100010101000201020001010100020101000401010002010100070
 
444
10100010101000201040008010100020101000101010001010100010101000001
 
445
0100000101000001010002010100040101000401010001010100060106000201010001010100030
 
446
10100030100000001020001010100030101000301000000010100000101000101
 
447
0100070101000101010005010100360106000a01020002010300020102000201010001010100020
 
448
10200080118001401130001120601011101120601011105000901080002010700
 
449
02010700020149003a0101000801010001010000040101000001000003010100020101000001010
 
450
00301010001010100020101000201010004010100030100000601010003010100
 
451
020101000a010100020101000001010003010100000101000001010000010100000101000201010
 
452
00401010004010100010101000601000000010200000100000601010003010100
 
453
05010200010101000201010006010300020101000701040006010100360106000a0102000201030
 
454
00201020002010100010101000201020008011600180111000112060101110112
 
455
06010111050002010e000401060002010700020149003b010100070101000801010004010100020
 
456
10100000101000301010001010100070101000501020009010100030101000201
 
457
01000a0101000201010000010100030101000001010000010100000101000301030004010100040
 
458
10100010101000601000001010000010100000301030004010100050101000701
 
459
0100070102000201010007010300060101003701060002010400020102000201030002010200020
 
460
1050002010200020121000e011600011206010111011206010111050002010e00
 
461
0401060002010700020149003b01010007010100080101000401010002010100000101000301010
 
462
00101010007010100070102000701010003010100020101000a01010002010100
 
463
0001010003010100000101000001010000010100010101000101010004010100040101000101010
 
464
00601000003010000020101000101010003010100060101000701010006010200
 
465
0301010006010100000101000601010037010600020104000201020002010300020102000201050
 
466
002010200020121000e011600011206010111011206010111050002010d000201
 
467
00000201050002010700020149003b0101000701010003010000020100000001010003010100020
 
468
10100000101000301010001010100070101000401000003010100060101000301
 
469
0100020101000a01010002010100000101000301010000010100000101000001010000010100020
 
470
10100040101000401010001010100050100000401000001010100020101000301
 
471
0100050101000701010006010100000101000201010006010100010101000401010038010600020
 
472
104000201020002010300020102000201050002010200020121000e0116000112
 
473
06010111011206010111050002010d0002010000020105000201070002014900360100000301010
 
474
00701010002010100010101000101010002010100010101000201010001010100
 
475
02010100070101000101000001010100020101000701010001010100030101000a0101000101010
 
476
00201010001010100010101000001010000010100000101000101020004010100
 
477
0401010001010100050100000401000001010100010102000001000001010100010100000201010
 
478
00701010001010000030100000101010000010000010100000601010001010100
 
479
0401010038010600020104000201020002010300020102000201050002010200020121000e01160
 
480
0011206010111011206010111050002010c000201020002010400020107000201
 
481
4900360101000101010007010700000102000101020001010400040103000201040006010200020
 
482
10000000103000901030003010300080105000401030002010100000101000001
 
483
0100010102000101010001010500010102000001030004010100020102000101020001010100030
 
484
10200030101000801020002010100030101000201000005010300010101000201
 
485
00003a010600020104000201020002010300020102000201050002010200020121000e011600011
 
486
206010111011206010111050002010c0002010200020104000201070002014900
 
487
370103001b010100b80100000d0101003b010600020104000201020002010300020102000201050
 
488
00201020002014700011206010111011206010111050002010b00020104000201
 
489
0300020107000201490057010100ff0105010600020104000201020002010300020102000201050
 
490
00201020002014700011206010111011206010111050009010400020104000201
 
491
0300020107000201490056010300ff0104010600020104000201020009010200020105000201020
 
492
00801410001120601011101120601011105000a01020002010600020102000201
 
493
070002014900ff015f0106000201040002010300080102000201050002010200090140000112060
 
494
1011101120601011106000901030001010700010103000101080001014900ff01
 
495
5f01070001010500010104000601040001010600010103000801400001120601011101120601011
 
496
17b00ff015f017b000112060101110112060101117b00ff015f017b0001120601
 
497
01110112060101117b00ff015f017b000112060101110112060101117b00ff015f017b000112060
 
498
10111011206010111ff00ff005700011206010111011206010111ff00ff005700
 
499
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
 
500
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
 
501
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
 
502
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
 
503
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
 
504
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
 
505
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
 
506
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
 
507
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
 
508
10111011206010111ff01ff01570101120601011101120601011113010b000801
 
509
0200040103000401030014010000070100001001000004010200110100003101020036010000070
 
510
1000027010300ff012b0101120601011101120601011113010b00090101000601
 
511
01000601010014010000070100000f0102000401010011010000320101003601000006010200250
 
512
1010001010100ff012a0101120601011101120601011113010100000100000001
 
513
0000000100000001020009010100060101000601010013010100060101001001000005010100100
 
514
101003201010035010100070100002601010001010100ff012a01011206010111
 
515
0112060101111301020000010000000100000001000000010100080103000501010006010100130
 
516
1010006010100170101001001010032010100350101002f010100ff012e010112
 
517
0601011101120601011113010100000100000001000000010000000102000801000000010100050
 
518
10100060101000901040002010600010106000101010000010300020103000401
 
519
0400020102000001020001010600030103000301030000010000070104000201010000010200040
 
520
10400080103000201010000010200040103000201010000010300020104000201
 
521
0600020103000501030002010100000102000301030000010000080101000401010000010300030
 
522
1030002010000000101000001010004010000ff010a0101120601011101120601
 
523
0111130102000001000000010000000100000001010008010000000101000501010006010100080
 
524
10100020101000301010006010100050102000101010003010100040102000001
 
525
0100020101000101010003010100050101000101010001010100020101000601010002010100020
 
526
10100010101000201010000010200070101000101010002010200000101000201
 
527
0100010101000201020001010100000101000201010003010100070101000401010001010100020
 
528
10100010101000101010002010100070104000301020001010100010101000101
 
529
010001010100000101000001010002010200ff01090101120601011101120601011113010100000
 
530
10000000100000001000000010200080100000101010004010100060101000801
 
531
0100020101000301010006010100050101000201010003010100040101000201010001010100010
 
532
10100030101000401010002010100010101000301000006010100020101000201
 
533
0100010101000101010002010100060101000301010001010100020101000001010002010100020
 
534
10100020101000001010002010100030101000701010003010100030101000101
 
535
0100010101000101010003010000080101000501010002010100000101000301010000010100000
 
536
101000001010003010000ff010a01011206010111011206010111130102000001
 
537
00000001000000010000000101000701050004010100060101000b0103000301010006010100050
 
538
10100080101000401010002010100010101000101010003010100040106000201
 
539
02000c0103000201010001010100010101000201010006010100030101000101010002010100000
 
540
10600020101000801030003010100070101000301010003010100010101000101
 
541
0100020102000b010100050101000501010003010100000101000001010000010100ff010f01011
 
542
20601011101120601011113010100000100000001000000010000000102000701
 
543
0000020101000401010006010100090101000101010003010100060101000501010008010100040
 
544
10100020101000101010001010100030101000401010009010200080101000101
 
545
0100020101000101010001010100020101000601010003010100010101000201010000010100070
 
546
10100060101000101010003010100070101000301010003010100010101000101
 
547
01000401020009010100050101000501010003010100000101000001010000010100ff010f01011
 
548
20601011101120601011113010200000100000001000000010000000101000701
 
549
0000030101000301010006010100080101000201010003010100060101000501010008010100040
 
550
10100020101000101010001010100030101000401010006010000030101000601
 
551
0100020101000201010001010100010101000201010006010100030101000101010002010100000
 
552
10100070101000501010002010100030101000701010003010100030101000101
 
553
0100010101000101000003010100080101000501010005010100030101000001010000010100000
 
554
10100ff010f0101120601011101120601011113010b0006010100030101000301
 
555
0100060101000801010001010200030101000101000003010100010100000201010008010100040
 
556
10200000101000201010000010200030101000101000002010100020100000101
 
557
0100020101000601010001010200020101000101010002010100000102000701010001010100020
 
558
10100010101000201010002010000020101000501010001010200030101000101
 
559
0000040101000401010001010100020101000101010001010100020101000801010005010100060
 
560
101000101010001010100000101000001010003010000ff010a01011206010111
 
561
01120601011113010b0006010200010102000101050002010500070102000101010003010200050
 
562
10200020104000401050001010100000102000401020000010100030102000401
 
563
0300020100000001030008010200010101000001020000010300020102000001010007010300030
 
564
10400040103000201040004010200010101000301020003010500030103000201
 
565
0200000103000001000000010300080103000301040005010300020101000001010000010100020
 
566
10200ff010901011206010111011206010111cf01010079010000ff010a010112
 
567
06010111011206010111cf010100ff018501011206010111011206010111ce010300ff018401011
 
568
206010111011206010111ff01ff015701011206010111011206010111ff01ff01
 
569
5701011206010111011206010111ff01ff015701011206010111011206010111ff01ff015701011
 
570
206010111011206010111ff01ff015701011206010111011206010111ff01ff01
 
571
5701011206010111011206010111ff01ff015701011206010111011206010111ff01ff015701011
 
572
206010111011206010111ff01ff01570101120601011101120601011114010100
 
573
030101000c010000100101000d010200000101000d0100004b01030000010300150100003901030
 
574
00001030015010000ff0130010112060101110112060101111401010003010100
 
575
0b0101000f0103000b0106000c01010035010100030105000901030000010300140101001a01010
 
576
003010500030101000c01030000010300140101001a0101000301050003010100
 
577
06010100fa0101120601011101120601011114010200010102000b010100100101000c010200000
 
578
102000c0101003401010005010100010101000801020002010100150101001901
 
579
01000501010001010100030101000b0102000201010015010100190101000501010001010100030
 
580
1010006010100f90101120601011101120601011114010200010102000a010200
 
581
1f010200010101000b0102003401010005010100010101000801020002010100140102001901010
 
582
00501010001010100030101000b01020002010100140102001901010005010100
 
583
010101000301010006010100f901011206010111011206010111140107000101040002010600010
 
584
10200010101000201040002010300000102000001020001010100020104000201
 
585
0600030103000301040000010000020103000201020001010100010103000001020002010100060
 
586
10100010101000901020000010200030103000401020000010100000106000301
 
587
03000201020001010100030101000601010001010100040101000b0102000001020003010300040
 
588
10200000101000001060003010300020102000101010003010100060101000101
 
589
01000401010006010100f8010112060101110112060101111401070000010600010106000101070
 
590
00101040002010200010102000001020005010600010106000201050001010700
 
591
010105000101070000010300000102000201010005010100010101000a010200000101000301050
 
592
00201060000010600020105000101070002010100050101000101010005010100
 
593
0b01020000010100030105000201060000010600020105000101070002010100050101000101010
 
594
00501010006010100f80101120601011101120601011114010700000101000101
 
595
0200020102000501060003010200030102000001010001010200050101000101020002010200040
 
596
10200010102000001020000010300000102000101020001010600000102000101
 
597
02000201010005010100010101000a0102000001010002010200010102000001030000010200010
 
598
10200040102000101020001010600020101000501010001010100050101000b01
 
599
0200000101000201020001010200000103000001020001010200040102000101020001010600020
 
600
1010005010100010101000501010006010100f801011206010111011206010111
 
601
1401010000010100000101000301030002010200050103000001010003010200040103000201020
 
602
00801030002010200040102000101020000010200000102000101020001010200
 
603
0101030000010100010102000001010003010100050104000c01040002010200010102000001020
 
604
00201010001010200040102000101020001010300000101000201010005010400
 
605
060101000c010400020102000101020000010200020101000101020004010200010102000101030
 
606
00001010002010100050104000601010006010100f80101120601011101120601
 
607
0111140101000001010000010100010105000201020005010200070102000401030002010200060
 
608
10500020102000401070000010200000102000101020001010200010102000501
 
609
050003010100050103000d010300030107000001020006010200040102000101020001010200060
 
610
1010005010300070101000c010300030107000001020006010200040102000101
 
611
02000101020006010100050103000701010006010100f8010112060101110112060101111401010
 
612
00001010000010100000102000001020002010200050102000701020004010300
 
613
0201020001010100010102000001020002010200040102000601040002010200010102000101020
 
614
0060103000401010004010100000101000d010300030102000501020006010200
 
615
040102000101020001010200060101000401010000010100070101000c010300030102000501020
 
616
00601020004010200010102000101020006010100040101000001010007010100
 
617
06010100f8010112060101110112060101111401010003010100000102000001020002010200000
 
618
10100020102000701020003010100000102000101020001010100010102000001
 
619
0200020102000001010001010300010101000001030004010200010102000101020006010300040
 
620
1010004010100010101000d010200030103000101010000010300010101000101
 
621
020000010100010102000101020001010200060101000401010001010100060101000d010200030
 
622
10300010101000001030001010100010102000001010001010200010102000101
 
623
02000601010004010100010101000601010006010100f8010112060101110112060101111401020
 
624
00101020000010700010105000101040004010600000102000101020000010600
 
625
0101070001010500020106000001060002010500010104000601010006010100030101000101010
 
626
00501000006010100050106000101060001010500020105000101040006010100
 
627
0301010001010100050101000601000006010100050106000101060001010500020105000101040
 
628
00601010003010100010101000501010006010100f90101120601011101120601
 
629
0111140102000101020001010200000102000201030002010400040106000001020000010300010
 
630
10400030102000001020002010300040104000201060002010300020104000501
 
631
0200060101000201030001010100030102000501010006010400030104000301030004010300020
 
632
10400060101000201030001010100040101000501020005010100060104000301
 
633
04000301030004010300020104000601010002010300010101000401010006010100f9010112060
 
634
101110112060101116e0102000101020013010200080101000e0101003d010100
 
635
0d010100070101003d0101000d01010006010100fa010112060101110112060101116e010700120
 
636
103001901010057010100ff0153010112060101110112060101116f0105001301
 
637
02001901010057010100ff015401011206010111011206010111ff01ff015701011206010111011
 
638
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
639
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
640
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
641
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
642
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
643
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
644
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
645
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
646
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
647
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
648
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
649
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
650
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
651
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
652
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
653
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
654
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
655
0111011206010111ff01ff01570101120601011101120601011113010b000701040037010000070
 
656
1000060010300060100001001000007010000050103004101000011010200fe01
 
657
01120601011101120601011113010b0006010100010102003601000006010200610101000501020
 
658
00e01020006010000070101004101000012010100fe0101120601011101120601
 
659
0111130101000001000000010000000100000001020006010100020101003501010007010000620
 
660
10100060100001001000006010100070101004001010012010100fe0101120601
 
661
0111011206010111130102000001000000010000000100000001010006010000030101003501010
 
662
06b01010020010100070101004001010012010100fe0101120601011101120601
 
663
011113010100000100000001000000010000000102000b010100080103000201010000010200040
 
664
10300020101000001030002010400020106000201030005010300020101000001
 
665
0200030103000001000007010400020101000001030003010300090103000201020001010200000
 
666
10100000102000501010004010300050103000301030003010600040101000301
 
667
0300000102000701030002010200010102000001010000010200040103000201010000010300010
 
668
10600030103000401040004010000f80101120601011101120601011113010200
 
669
000100000001000000010000000101000b010100070101000101010002010200000101000201010
 
670
00101010002010200010101000001010002010100030101000701010004010100
 
671
0101010002010100010101000101010002010100060101000201010002010200010101000101010
 
672
00101010007010100010101000201010001010100020102000001010004010100
 
673
0601010004010100010101000401010005010100070101000401010002010000070101000101010
 
674
00201010001010100020102000001010002010100010101000201020001010100
 
675
020101000501010001010100020101000001020003010200f701011206010111011206010111130
 
676
10100000100000001000000010000000102000a01010007010100030101000101
 
677
0100020101000001010002010100020101000201010000010100020101000301010007010100030
 
678
10100030101000101010001010100010101000301000006010100020101000201
 
679
0100020101000001010002010100060101000201010003010100000100000301010002010100030
 
680
10100060101000301010002010100040101000501010007010100040101000201
 
681
0000060101000201010003010100000100000301010002010100000101000301010001010100020
 
682
10100020101000401010002010100010101000201010004010000f80101120601
 
683
0111011206010111130102000001000000010000000100000001010009010100080101000301010
 
684
00101010002010100000106000201010008010300030101000701010003010100
 
685
030101000101010001010100020102000c010300020101000501060006010600040101000401010
 
686
00201010003010100060101000301010009010100050101000701010005010100
 
687
0001000007010600040101000401010002010100000101000301010001010100070101000401060
 
688
00101010002010100fe0101120601011101120601011113010100000100000001
 
689
0000000100000001020008010100090101000301010001010100020101000001010007010100060
 
690
10100010101000301010007010100030101000301010001010100010101000401
 
691
0200080101000101010002010100050101000b01010009010100040101000201010003010100060
 
692
10100030101000901010005010100070101000501010000010000070101000901
 
693
0100040101000201010000010100030101000101010007010100040101000601010002010100fe0
 
694
10112060101110112060101111301020000010000000100000001000000010100
 
695
070101000a010100030101000101010002010100000101000701010005010100020101000301010
 
696
00701010003010100030101000101010001010100010100000301010006010100
 
697
0201010002010100050101000b01010008010000000101000301010002010100030101000601010
 
698
00301010003010000040101000501010007010100060101000801010008010000
 
699
0001010003010100020101000001010003010100010101000701010004010100060101000201010
 
700
0fe0101120601011101120601011113010b000601010003010000070101000101
 
701
0100020101000101010002010100020100000201010005010100010102000301010001010000040
 
702
10100040101000101010002010100010101000101010002010100060101000101
 
703
0200020101000601010002010000070101000201000002010100010101000201010001010100040
 
704
10100060101000401010001010100040101000501010001010000040101000601
 
705
0100090101000201000002010100010101000201010001010100020101000101010002010100070
 
706
10100010100000201010002010000020101000001020004010000f80101120601
 
707
011101120601011113010b000601060008010300030104000401030002010400040102000101010
 
708
00301020003010500030103000201020000010300000100000001030008010200
 
709
0101010000010400050103000901030002010200010102000101040003010500020105000301030
 
710
0030105000401020003010500040100000b010300020102000101020001010400
 
711
04010300020104000601020004010300040102000001010002010200f7010112060101110112060
 
712
101112601050011010100850101003e0100001c01010035010000f80101120601
 
713
01110112060101113e010100850101003b010000000100001d010100ff012f01011206010111011
 
714
2060101113d010300830103003a0102001c010300ff012e010112060101110112
 
715
06010111ff01ff015701011206010111011206010111ff01ff01570101120601011101120601011
 
716
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
 
717
06010111ff01ff015701011206010111011206010111ff01ff01570101120601011101120601011
 
718
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
 
719
06010111ff01ff01570101120601011101120601011117010100ff010a010300030101003101040
 
720
002010100030101000c01000010010100c5010112060101110112060101111601
 
721
0300ff0109010300020103003001040002010100030101000b0101000f010300c40101120601011
 
722
101120601011117010100ff010b01020003010100330102000201020001010200
 
723
0b01010010010100c501011206010111011206010111ff012501020039010200020102000101020
 
724
00a010200d8010112060101110112060101111501040001010300000102000101
 
725
020001010200020103000201020001010100020103000001000003010300d101050001010400030
 
726
10400030104000001000002010300010103000001020002010400050102000201
 
727
070001010400020106000101020001010100020104000201030000010200b901011206010111011
 
728
20601011115010400010108000001020001010200010105000101070000010600
 
729
02010500cf010600010104000201060001010700010105000001080000010600040102000201070
 
730
0000106000101060001010700010104000201020001010200b901011206010111
 
731
0112060101111701020002010300000102000001020001010200000102000101020001010600000
 
732
10200000102000101020001010200cd0102000001030003010200020101000101
 
733
0200010102000001030000010200010102000001030000010200000101000101020004010200020
 
734
1070000010100010102000201020005010600030102000301020000010100ba01
 
735
0112060101110112060101111701020002010200010102000101020000010100010102000101020
 
736
0010103000001010000010300010100000101020001010200cd01020001010200
 
737
0301020005010300010102000001020001010200010102000001020001010200030103000401020
 
738
00201010000010100000101000301030002010200050103000001010003010200
 
739
04010300bb010112060101110112060101111701020002010200010102000101020000010100010
 
740
10700010102000501040002010700cd0102000101020003010200030105000101
 
741
0200000102000101020001010200000102000101020001010500040102000201010000010100000
 
742
101000101050002010200050102000701020004010300bb010112060101110112
 
743
0601011117010200020102000101020001010400020102000601020004010000010103000101020
 
744
0d201020001010200030102000201020000010200020104000201020001010200
 
745
0001020001010200000102000001020004010200020101000001010000010100000102000001020
 
746
002010200050102000701020004010300bb010112060101110112060101111701
 
747
0200020102000101020002010300020103000101010001010200040102000001020001010300010
 
748
10100cd0102000101020003010200020102000001020001010300040102000101
 
749
0200000102000101020000010200000102000401020002010100030101000001020000010200020
 
750
102000001010002010200070102000301010000010200ba010112060101110112
 
751
0601011115010a00000103000201020004010600000104000301060002010600ce0106000101060
 
752
00001070000010600020105000001030000010300000107000101060000010200
 
753
01010200000107000101050001010400040106000001020001010200b9010112060101110112060
 
754
1011115010a000001030002010200050104000101040003010000000103000401
 
755
0400d00102000001010001010600010102000001020001010600020103000101030000010300010
 
756
10200000102000101060000010200010102000101020000010200020103000201
 
757
0400040106000001020000010300b901011206010111011206010111ff013b01020001010200ff0
 
758
11301011206010111011206010111ff013b010700ff0113010112060101110112
 
759
06010111ff013c010500ff011401011206010111011206010111ff01ff015701011206010111011
 
760
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
761
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
762
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
763
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
764
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
765
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
766
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
767
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
768
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
769
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
770
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
771
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
772
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
773
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
774
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
775
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
776
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
777
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
778
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
779
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
780
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
781
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
782
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
783
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
784
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
785
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
786
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
787
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
788
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
789
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
790
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
791
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
792
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
793
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
794
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
795
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
796
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
797
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
798
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
799
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
800
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
801
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
802
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
803
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
804
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
805
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
806
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
807
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
808
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
809
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
810
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
811
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
812
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
813
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
814
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
815
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
816
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
817
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
818
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
819
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
820
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
821
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
822
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
823
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
824
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
825
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
826
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
827
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
828
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
829
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
830
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
831
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
832
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
833
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
834
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
835
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
836
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
837
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
838
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
839
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
840
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
841
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
842
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
843
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
844
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
845
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
846
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
847
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
848
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
849
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
850
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
851
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
852
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
853
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
854
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
855
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
856
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
857
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
858
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
859
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
860
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
861
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
862
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
863
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
864
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
865
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
866
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
867
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
868
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
869
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
870
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
871
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
872
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
873
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
874
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
875
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
876
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
877
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
878
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
879
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
880
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
881
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
882
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
883
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
884
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
885
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
886
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
887
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
 
888
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
 
889
011100120911ff01ff0157010112081109120011ff01ff01570109120011011206010111ff01ff0
 
890
15701011206010111011206010111ff01ff015701011206010111011206010111
 
891
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
 
892
15701011206010111011206010111ff01ff015701011206010111011206010111
 
893
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
 
894
15701011206010111011206010111ff01ff015701011206010111011206010111
 
895
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
 
896
15701011206010111011206010111ff01ff015701011206010111011206010111
 
897
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
 
898
15701011206010111011206010111ff01ff015701011206010111011206010111
 
899
ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff0
 
900
15701011206010111011206010111ff01ff015701011206010111011206010111
 
901
ff12ff12591206010111011206010011ff12ff125a120601011101121e0100110012ff01ff01270
 
902
1001100121e01011101121e0100110012ff01ff012701001100121e0101110112
 
903
1e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e0
 
904
1011101121e0100110012ff01ff012701001100121e01011101121e0100110012
 
905
ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e01011101121f1
 
906
10012ff11ff112811001220110012ff11ff116c11
 
907
pop pop setmatrix
 
908
 
 
909
/#copies 1 def
 
910
grestore
 
911
%%Trailer