~rdoering/ubuntu/karmic/erlang/fix-535090

« back to all changes in this revision

Viewing changes to lib/tv/doc/src/info_window.ps

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090215164252-q5x4rcf8a5pbesb1
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

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: (./info_window.tmp.eps)
 
4
%%CreationDate: (Tue Jun 12 16:12:33 2001)
 
5
%%BoundingBox: 0 60 377 354
 
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 60 377 354
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 60
 
271
377.000000 294.000000
 
272
12
 
273
590 460
 
274
1
 
275
0
 
276
0
 
277
8
 
278
ffffff
 
279
000000
 
280
d8d8d8
 
281
c2c2c2
 
282
6b6b6b
 
283
d9d9d9
 
284
b22222
 
285
828282
 
286
000a01ff01ff0137000b0208040001ff01ff013700000208040000000208040002ff02ff
 
287
0237000002080400000002080400020000ff00ff00340400020000000208040000000202
 
288
04060200000004ff04ff0434020000000405020204000000020204000209000d02ff02ff
 
289
022b00000202040000000202040002080000020d040002ea010102060101021d01020229
 
290
010102e700000202040000000202040002080000020d040002d801070209010102060101
 
291
020e0101020b0101022601000203010102e700000202040000000202040002080000020d
 
292
040002db0101020c010102060101020e0101020b01010225010102ed0000020204000000
 
293
0202040002080000020204060203040002db010102040103020301010200010102030101
 
294
020201030207010102020101020001010202010402010103020201010200010102010101
 
295
020001010201010102030103020101040201010102020103020301010200010102d70000
 
296
02020400000004030208000002020400030400000203040002db01010203010102010101
 
297
020201020200010102020101020101010201010102060101020201020200010102020101
 
298
020201010201010102010101020001010201010202000102020001010201010102010101
 
299
02010101020301010201010102010101020201020200010102d6000004030101020b0000
 
300
02030400030200000204040002db01010207010102020101020101010202010102010101
 
301
020101010206010102020101020101010202010102020101020101010201010202030101
 
302
020101010201010102050101020101010203010102010101020101010202010102010101
 
303
02d90103020b000002030400030200000204040002db0101020401040202010102010101
 
304
020201010201010502060101020201010201010102020101020201010201010102010101
 
305
020401010201010102010101020201040201010102030101020101010201010102020101
 
306
0201010102d90103020b000002040400030000000205040002db01010203010102010101
 
307
02020101020101010202010102010101020a010102020101020101010202010102020101
 
308
020101010201010102040101020101010201010102010101020101010201010102030101
 
309
0201010102010101020201010201010102d90103020b0000020404000300000002050400
 
310
02db01010203010102010101020201010201010102020101020101010202010002060101
 
311
020201010201010102020101020201010201010102010101020401010201010102010101
 
312
020101010201010102010101020301010201010102010101020201010201010102d90103
 
313
020b0000020500000206040002db01010204010202000101020101040203010102020103
 
314
020701010202010102010101020201010203010302020101020401010201010102010101
 
315
0202010202000101020101020201010102020103020301010201010102d90103020b0000
 
316
020d040002ff02ff022d0103020b0000020d040002ff02ff022d0103020b0000020d0400
 
317
02ff02ff022d0103020c040d02ff02ff022e010302ff02ff0249010302ff02ff02490103
 
318
020200ff00ff00420400020201030202000004ff04ff04420202010302ff02ff02490103
 
319
020200ff00ff004302020103020200ff00ff00420700020201030202000105ff05ff053f
 
320
0701020201030202000105ff05ff053f0701020201030202000105ff05ff053f07010202
 
321
01030202000105ff05ff053f0701020201030202000105ff05ff053f0701020201030202
 
322
0001050b0604050406000503060205ff05ff052107010202010302020001050b0600050f
 
323
060005ff05ff052107010202010302020001050b060005060602050506000503060205ff
 
324
05ff051a07010202010302020001050b06000508060005050600050206000502060005ff
 
325
05ff051907010202010302020001050b06030505060005050600050206000502060005ff
 
326
05ff051907010202010302020001050b060005080600050506000502060405ff05ff0519
 
327
07010202010302020001050b060005080600050506000502060005ff05ff051d07010202
 
328
010302020001050b06000508060005050600050206000502060005ff05ff051907010202
 
329
010302020001050b060005080600050506000503060205ff05ff051a0701020201030202
 
330
000105ff05ff053f07010202010302020001050a060605ff05ff052d0701020201030202
 
331
0001050a060605ff05ff052d0701020201030202000105ff05ff053f0701020201030202
 
332
000105ff05ff053f0701020201030202000105ff05ff053f0701020201030202000107ff
 
333
07ff0741020201030202000007ff07ff074202020103020205ff05ff0543020201030202
 
334
05ff05ff054302020103020205ff05ff054302020103020205ff05ff0543020201030202
 
335
05ff05ff054302020103020205ff05ff054302020103020205ff05ff0543020201030202
 
336
05ff05ff054302020103020205ff05ff054302020103020205ff05ff0543020201030202
 
337
05ff05ff0543020201030202050400770501007705010077050100770558020201030202
 
338
050400760700050100760700050100760700050100760700055802020103020205040001
 
339
057307010501000105730701050100010573070105010001057307010558020201030202
 
340
050400010573070105010001057307010501000105730701050100010573070105580202
 
341
010302020504000105730701050100010573070105010001057307010501000105730701
 
342
055802020103020205040001057307010501000105730701050100010573070105010001
 
343
057307010558020201030202050400010573070105010001057307010501000105730701
 
344
050100010573070105580202010302020504000105730701050100010573070105010001
 
345
057307010501000105730701055802020103020205040001057307010501000105730701
 
346
050100010573070105010001057307010558020201030202050400010573070105010001
 
347
057307010501000105730701050100010573070105580202010302020504000105730701
 
348
050100010573070105010001057307010501000105730701055802020103020205040001
 
349
057307010501000105730701050100010573070105010001057307010558020201030202
 
350
05040001051d010405080100050601020510010405050100051f07010501000105080102
 
351
0514010005110102050b010005050100050601000520070105010001052c010205050100
 
352
053c070105010001052101020504010005480701055802020103020205040001051f0100
 
353
050a0100050801000512010005070100051f070105010001050801000501010005250100
 
354
05020100050a0100050501000528070105010001052b0100050201000542070105010001
 
355
05200100050201000503010005480701055802020103020205040001051f010005040102
 
356
05020100050001010505010005030102050b01000504010105000100051f070105010001
 
357
050801000501010005030102050301020503010205030102050901000506010205020104
 
358
05010104050201020502010005000101050301010500010005020102050b070105010001
 
359
052b0100050601020502010405020102052e070105010001052001000505010405020102
 
360
050201000500010105030102050301010500010005020102052407010558020201030202
 
361
05040001051f010005030100050201000501010105010100050401000502010005020100
 
362
050a01000503010005010101051f07010501000105080100050101000502010005020100
 
363
050101000502010005040100050201000502010005090100050401000502010005030100
 
364
0505010005060100050201010501010005010100050101010501010005020100050a0701
 
365
05010001052c010005070100050601000501010005020100052d07010501000105210100
 
366
050601000503010005020100050101010501010005010100050201000501010005010101
 
367
050101000502010005230701055802020103020205040001051f01000507010005010100
 
368
05020100050401000502010005020100050a01000503010005020100051f070105010001
 
369
0508010305060100050101000508010005020100050e0101050201000502010005030100
 
370
05050100050601000502010005020100050101000502010005010100050e070105010001
 
371
052d010105050100050501000502010005020100052d0701050100010522010105040100
 
372
050301000502010005010100050901000501010005020100050101000502010005230701
 
373
055802020103020205040001051f01000504010305010100050201000504010005020104
 
374
050a01000503010005020100051f07010501000105080100050201000502010305020102
 
375
050501000502010005100100050101040503010005050100050601000502010005020100
 
376
050101000502010005020102050b070105010001052f0100050401000504010005030104
 
377
052d07010501000105240100050301000503010005020100050101000506010305010100
 
378
050201000501010405230701055802020103020205040001051f01000503010005020100
 
379
05010100050201000504010005020100050e01000503010005020100051f070105010001
 
380
05080100050201000501010005020100050501000504010005020100050c010005020100
 
381
050101000507010005050100050601000502010005020100050101000502010005050100
 
382
050a070105010001052b0100050201000504010005030100050401000531070105010001
 
383
052001000502010005030100050301000502010005010100050501000502010005010100
 
384
050201000501010005270701055802020103020205040001051f01000503010005020100
 
385
0501010105010100050401000502010005020100050a01000503010005010101051f0701
 
386
050100010508010005020100050101000502010005010100050201000504010005020100
 
387
050201000508010005020100050101000502010005030100050501000506010005020100
 
388
0502010005010100050101010501010005020100050a070105010001052b010005020100
 
389
05040100050201000505010005020100052d070105010001052001000502010005030100
 
390
050301000502010005010100050501000502010005010100050101010501010005020100
 
391
05230701055802020103020205040001051f010005040103050101000500010105050100
 
392
05030102050901040502010105000100051f070105010001050801030503010305020102
 
393
0505010005030102050a0102050301020505010105040101050401000502010005020100
 
394
050201010500010005020102050b070105010001052c0102050501000502010405020102
 
395
052e07010501000105210102050501010502010205020100050601030502010105000100
 
396
050201020524070105580202010302020504000105730701050100010560010005110701
 
397
05010001057307010501000105470100052a070105580202010302020504000105730701
 
398
05010001055c010005020100051107010501000105730701050100010543010005020100
 
399
052a07010558020201030202050400010573070105010001055d01020512070105010001
 
400
057307010501000105440102052b07010558020201030202050400010573070105010001
 
401
057307010501000105730701050100010573070105580202010302020504000105730701
 
402
050100010573070105010001057307010501000105730701055802020103020205040001
 
403
057307010501000105730701050100010573070105010001057307010558020201030202
 
404
050400010573070105010001057307010501000105730701050100010573070105580202
 
405
010302020504000105730701050100010573070105010001057307010501000105730701
 
406
055802020103020205040001057307010501000105730701050100010573070105010001
 
407
05730701055802020103020205040001057400ff00c20504020201030202050400010574
 
408
00ff00c1070005040202010302020504000105ff05ff0535070105040202010302020504
 
409
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
410
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
411
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
412
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
413
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
414
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
415
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
416
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
417
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
418
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
419
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
420
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
421
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
422
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
423
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
424
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
425
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
426
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
427
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
428
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
429
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
430
02020504000105ff05ff0535070105040202010302020504000105d101ff0158050a0701
 
431
05040202010302020504000105d1010000ff00560100050a070105040202010302020504
 
432
000105d1010000ff00560100050a070105040202010302020504000105d1010000ff0056
 
433
0100050a070105040202010302020504000105d1010000ff00560100050a070105040202
 
434
010302020504000105d1010000ff00560100050a070105040202010302020504000105d1
 
435
010000ff00560100050a0701050402020103020205040001050a01040508010005060102
 
436
05100104059701000010010000ff00440100050a0701050402020103020205040001050c
 
437
0100050a01000508010005120100059901000010010000ff00440100050a070105040202
 
438
0103020205040001050c01000504010205020100050001010505010005030102050b0100
 
439
050301000502010005010100050001010503010205040101057c01000008010200020104
 
440
0002010200ff003c0100050a0701050402020103020205040001050c0100050301000502
 
441
01000501010105010100050401000502010005020100050a010005030100050201000501
 
442
010105010100050101000502010005030101057c01000007010000020100000301000003
 
443
01000002010000ff003b0100050a0701050402020103020205040001050c010005070100
 
444
0501010005020100050401000502010005020100050a0100050401000501010005010100
 
445
050201000501010005020100058201000007010000020100000301000003010000ff003f
 
446
0100050a0701050402020103020205040001050c01000504010305010100050201000504
 
447
010005020104050a01000504010005010100050101000502010005010104058201000007
 
448
0104000301000004010200ff003c0100050a0701050402020103020205040001050c0100
 
449
050301000502010005010100050201000504010005020100050e01000505010005000100
 
450
0501010005020100050101000586010000070100000701000007010000ff003b0100050a
 
451
0701050402020103020205040001050c0100050301000502010005010101050101000504
 
452
01000502010005020100050a010005050101050201010501010005010100050201000503
 
453
0101057c0100000701000002010000030100000301000002010000ff003b0100050a0701
 
454
050402020103020205040001050c01000504010305010100050001010505010005030102
 
455
050b01000506010005020100050001010503010205040101057c01000008010200050101
 
456
0002010200ff003c0100050a0701050402020103020205040001053e010005020100058d
 
457
010000ff00560100050a0701050402020103020205040001053b01000500010005030100
 
458
058d010000ff00560100050a0701050402020103020205040001053c010005040100058d
 
459
010000ff00560100050a070105040202010302020504000105d1010000ff00560100050a
 
460
070105040202010302020504000105d1010000ff00560100050a07010504020201030202
 
461
0504000105d1010000ff00560100050a070105040202010302020504000105d1010000ff
 
462
00560100050a070105040202010302020504000105d101ff0158050a0701050402020103
 
463
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
464
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
465
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
466
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
467
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
468
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
469
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
470
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
471
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
472
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
473
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
474
0202010302020504000105d101ff0158050a070105040202010302020504000105d10100
 
475
00ff00560100050a070105040202010302020504000105d1010000ff00560100050a0701
 
476
05040202010302020504000105d1010000ff00560100050a070105040202010302020504
 
477
000105d1010000ff00560100050a070105040202010302020504000105d10100000a0101
 
478
00a2010100a40100050a070105040202010302020504000105d101000009010000700100
 
479
002a01000008010000a30100050a0701050402020103020205040001050a010405080100
 
480
050601020510010405050100059001000009010000040102001901000006010000190100
 
481
000a0100000601020013010000040101000a010200040100000c01010002010000070100
 
482
00a30100050a0701050402020103020205040001050c0100050a01000508010005120100
 
483
050701000590010000090100000601000019010000210100000a01000008010000120100
 
484
0004010000010100000801000002010000020101000b0100000101000002010000060100
 
485
00a30100050a0701050402020103020205040001050c0100050401020502010005000101
 
486
0505010005030102050b0100050401010500010005030101058a01000009010000060100
 
487
000301020003010200030102000201040002010200030102000201000000010100090104
 
488
0002010200020100000001010005010000030102000a01000005010000010100000c0100
 
489
0001010000000100000b010000010100000301000005010000a30100050a070105040202
 
490
0103020205040001050c0100050301000502010005010101050101000504010005020100
 
491
05020100050a0100050301000501010105030101058a0100000901000006010000020100
 
492
000201000001010000020100000101000002010000030100000601000002010000020100
 
493
0001010100010100000a0100000301000002010000010101000101000004010000020100
 
494
00020100000801000006010000010100000c010000030100000b01000001010000040100
 
495
0004010000a30100050a0701050402020103020205040001050c01000507010005010100
 
496
05020100050401000502010005020100050a010005030100050201000590010000070101
 
497
000701000002010000020100000101000009010000030100000601000002010000020100
 
498
0001010000020100000a0100000701000001010000020100000401000002010000020100
 
499
000701000007010000010100000a010100040100000b0100000101000005010000040101
 
500
00a10100050a0701050402020103020205040001050c0100050401030501010005020100
 
501
0504010005020104050a0100050301000502010005900100000901000006010000020100
 
502
000201000001010000060103000301000006010000020100000201000001010000020100
 
503
000a01000004010300010100000201000004010000020104000801000006010000010100
 
504
000c010000030100000b010000010100000401000004010000a30100050a070105040202
 
505
0103020205040001050c0100050301000502010005010100050201000504010005020100
 
506
050e01000503010005020100059001000009010000060100000201000002010000010100
 
507
0005010000020100000301000006010000020100000201000001010000020100000a0100
 
508
000301000002010000010100000201000004010000020100000d01000005010000010100
 
509
000c010000030100000b010000010100000301000005010000a30100050a070105040202
 
510
0103020205040001050c0100050301000502010005010101050101000504010005020100
 
511
05020100050a0100050301000501010105030101058a0100000901000006010000020100
 
512
000201000001010000020100000101000002010000030100000601000002010000020100
 
513
0001010000020100000a0100000301000002010000010101000101000004010000020100
 
514
000201000003010100040100000401000001010000030101000201000002010000030100
 
515
000501010003010000010100000201000006010000a30100050a07010504020201030202
 
516
05040001050c010005040103050101000500010105050100050301020509010405020101
 
517
0500010005030101058a0100000901000006010000030102000301020003010300040101
 
518
00040100000301020002010000020100000b010100020103000101000000010100050100
 
519
000301020004010100050100000401010004010100030102000201040003010100040101
 
520
000201000007010000a30100050a070105040202010302020504000105d1010000090100
 
521
003a01050027010000060100002a01000008010000a30100050a07010504020201030202
 
522
0504000105d10100000a010100640101003b010100a40100050a07010504020201030202
 
523
0504000105d1010000ff00560100050a070105040202010302020504000105d1010000ff
 
524
00560100050a070105040202010302020504000105d1010000ff00560100050a07010504
 
525
0202010302020504000105d1010000ff00560100050a0701050402020103020205040001
 
526
05d1010000ff00560100050a070105040202010302020504000105d101ff0158050a0701
 
527
05040202010302020504000105ff05ff0535070105040202010302020504000105ff05ff
 
528
0535070105040202010302020504000105ff05ff05350701050402020103020205040001
 
529
05ff05ff0535070105040202010302020504000105ff05ff053507010504020201030202
 
530
0504000105ff05ff0535070105040202010302020504000105ff05ff0535070105040202
 
531
010302020504000105ff05ff0535070105040202010302020504000105ff05ff05350701
 
532
05040202010302020504000105ff05ff0535070105040202010302020504000105ff05ff
 
533
0535070105040202010302020504000105ff05ff05350701050402020103020205040001
 
534
05ff05ff0535070105040202010302020504000105ff05ff053507010504020201030202
 
535
0504000105ff05ff0535070105040202010302020504000105ff05ff0535070105040202
 
536
010302020504000105ff05ff0535070105040202010302020504000105ff05ff05350701
 
537
05040202010302020504000105ff05ff0535070105040202010302020504000105ff05ff
 
538
0535070105040202010302020504000105d101ff0158050a070105040202010302020504
 
539
000105d1010000ff00560100050a070105040202010302020504000105d1010000ff0056
 
540
0100050a070105040202010302020504000105d1010000ff00560100050a070105040202
 
541
010302020504000105d1010000ff00560100050a070105040202010302020504000105d1
 
542
010000ff00560100050a070105040202010302020504000105d1010000ff00560100050a
 
543
0701050402020103020205040001050a0104050801000506010205100100050201000597
 
544
010000080102001901000006010000190100000a01000006010200f60100050a07010504
 
545
02020103020205040001050c0100050a010005080100051001010501010005970100000a
 
546
01000019010000210100000a01000008010000f60100050a070105040202010302020504
 
547
0001050c0100050401020502010005000101050501000503010205090101050101000502
 
548
010205020101050001000503010205040101057c0100000a010000030102000301020003
 
549
010200020104000201020003010200020100000001010009010400020102000201000000
 
550
0101000501000003010200ef0100050a0701050402020103020205040001050c01000503
 
551
010005020100050101010501010005040100050201000502010005080100050001000500
 
552
01000501010005020100050101000500010005000100050101000502010005030101057c
 
553
0100000a0100000201000002010000010100000201000001010000020100000301000006
 
554
010000020100000201000001010100010100000a01000003010000020100000101010001
 
555
010000040100000201000002010000ee0100050a0701050402020103020205040001050c
 
556
010005070100050101000502010005040100050201000502010005080100050001000500
 
557
010005050100050101000500010005000100050101000502010005820100000a01000002
 
558
010000020100000101000009010000030100000601000002010000020100000101000002
 
559
0100000a010000070100000101000002010000040100000201000002010000ee0100050a
 
560
0701050402020103020205040001050c0100050401030501010005020100050401000502
 
561
01040508010005010101050201030501010005000100050001000501010405820100000a
 
562
010000020100000201000001010000060103000301000006010000020100000201000001
 
563
010000020100000a0100000401030001010000020100000401000002010400ee0100050a
 
564
0701050402020103020205040001050c0100050301000502010005010100050201000504
 
565
010005020100050c01000501010105010100050201000501010005000100050001000501
 
566
010005860100000a01000002010000020100000101000005010000020100000301000006
 
567
010000020100000201000001010000020100000a01000003010000020100000101000002
 
568
0100000401000002010000f20100050a0701050402020103020205040001050c01000503
 
569
010005020100050101010501010005040100050201000502010005080100050201000501
 
570
010005020100050101000500010005000100050101000502010005030101057c0100000a
 
571
010000020100000201000001010000020100000101000002010000030100000601000002
 
572
0100000201000001010000020100000a0100000301000002010000010101000101000004
 
573
0100000201000002010000ee0100050a0701050402020103020205040001050c01000504
 
574
010305010100050001010505010005030102050901000502010005020103050101000500
 
575
0100050001000502010205040101057c0100000a01000003010200030102000301030004
 
576
010100040100000301020002010000020100000b01010002010300010100000001010005
 
577
01000003010200ef0100050a070105040202010302020504000105d10100003e010500ff
 
578
00110100050a070105040202010302020504000105d1010000ff00560100050a07010504
 
579
0202010302020504000105d1010000ff00560100050a0701050402020103020205040001
 
580
05d1010000ff00560100050a070105040202010302020504000105d1010000ff00560100
 
581
050a070105040202010302020504000105d1010000ff00560100050a0701050402020103
 
582
02020504000105d1010000ff00560100050a070105040202010302020504000105d101ff
 
583
0158050a070105040202010302020504000105ff05ff0535070105040202010302020504
 
584
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
585
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
586
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
587
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
588
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
589
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
590
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
591
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
592
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
593
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
594
000105ff05ff0535070105040202010302020504000105d101ff0158050a070105040202
 
595
010302020504000105d1010000ff00560100050a070105040202010302020504000105d1
 
596
010000ff00560100050a070105040202010302020504000105d1010000ff00560100050a
 
597
070105040202010302020504000105d1010000ff00560100050a07010504020201030202
 
598
0504000105d1010000ff00560100050a070105040202010302020504000105d1010000ff
 
599
00560100050a0701050402020103020205040001050a0104050801000506010205100100
 
600
05020100051d010305130100050b0100051c0100053501000009010000ff004b0100050a
 
601
0701050402020103020205040001050c0100050a0100050801000510010105010100051d
 
602
010005020100051f0100051c0100053501000009010000ff004b0100050a070105040202
 
603
0103020205040001050c0100050401020502010005000101050501000503010205090101
 
604
050101000502010205020101050001000503010205090100050201000502010205030101
 
605
050001000502010205030102050201040502010205020100050001010503010205030101
 
606
0500010005030101052f0100000701040001010000000101000201000002010000020102
 
607
00ff00350100050a0701050402020103020205040001050c010005030100050201000501
 
608
010105010100050401000502010005020100050801000500010005000100050101000502
 
609
010005010100050001000500010005010100050201000508010005020100050101000502
 
610
010005010100050101010504010005020100050201000503010005030100050201000501
 
611
0101050101000501010005020100050101000501010105030101052f0100000901000003
 
612
0101000101000001010000020100000101000002010000ff00340100050a070105040202
 
613
0103020205040001050c0100050701000501010005020100050401000502010005020100
 
614
050801000500010005000100050501000501010005000100050001000501010005020100
 
615
050801030502010005020100050101000502010005040100050201000507010005030100
 
616
050201000501010005050100050201000501010005020100053501000009010000030100
 
617
0005010000020100000101000002010000ff00340100050a070105040202010302020504
 
618
0001050c0100050401030501010005020100050401000502010405080100050101010502
 
619
010305010100050001000500010005010104050801000501010005020104050101000502
 
620
010005040100050301020504010005030104050101000505010405010100050201000535
 
621
0100000901000003010000050100000201000001010400ff00340100050a070105040202
 
622
0103020205040001050c0100050301000502010005010100050201000504010005020100
 
623
050c010005010101050101000502010005010100050001000500010005010100050c0100
 
624
050201000501010005050100050201000504010005060100050301000503010005050100
 
625
050501000505010005020100053501000009010000030100000501000002010000010100
 
626
00ff00380100050a0701050402020103020205040001050c010005030100050201000501
 
627
010105010100050401000502010005020100050801000502010005010100050201000501
 
628
010005000100050001000501010005020100050801000502010005010100050201000501
 
629
010005010101050401000502010005020100050301000503010005020100050101000505
 
630
010005020100050101000501010105030101052f01000009010000030100000501000001
 
631
0101000101000002010000ff00340100050a0701050402020103020205040001050c0100
 
632
050401030501010005000101050501000503010205090100050201000502010305010100
 
633
050001000500010005020102050901000502010005020102050301010500010005040100
 
634
0503010205050101050201020502010005060102050301010500010005030101052f0100
 
635
000a01010001010000060101000001000002010200ff00350100050a0701050402020103
 
636
020205040001056901000566010000ff00560100050a0701050402020103020205040001
 
637
05650100050201000566010000ff00560100050a07010504020201030202050400010566
 
638
01020567010000ff00560100050a070105040202010302020504000105d1010000ff0056
 
639
0100050a070105040202010302020504000105d1010000ff00560100050a070105040202
 
640
010302020504000105d1010000ff00560100050a070105040202010302020504000105d1
 
641
010000ff00560100050a070105040202010302020504000105d101ff0158050a07010504
 
642
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
643
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
644
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
645
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
646
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
647
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
648
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
649
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
650
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
651
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
652
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
653
070105040202010302020504000105d101ff0158050a0701050402020103020205040001
 
654
05d1010000ff00560100050a070105040202010302020504000105d1010000ff00560100
 
655
050a070105040202010302020504000105d1010000ff00560100050a0701050402020103
 
656
02020504000105d1010000ff00560100050a070105040202010302020504000105d10100
 
657
00ff00560100050a070105040202010302020504000105d10100000b0100002a010000ff
 
658
001d0100050a0701050402020103020205040001050a0103053401020513010005190100
 
659
0503010005130104050801000506010205280100000a010000040101000a010200040100
 
660
000c01010002010000ff001c0100050a0701050402020103020205040001050a01000502
 
661
01000532010005020100052d01000503010005150100050a010005080100052801000009
 
662
01000004010000010100000801000002010000020101000b0100000101000002010000ff
 
663
001b0100050a0701050402020103020205040001050a0100050201000501010005000101
 
664
050301020503010205030102050301020503010205090100050201000501010005020100
 
665
050101000500010105030102050201000500010105030101050001000508010405010100
 
666
0500010105030102050b0100050401020502010005000101050501000503010205040101
 
667
051a0100000801000005010000010100000c01000001010000000100000b010000010100
 
668
0003010000ff001a0100050a0701050402020103020205040001050a0100050201000501
 
669
010105010100050101000502010005010100050201000501010005020100050101000502
 
670
010005010100050201000508010005020100050101000502010005010101050101000504
 
671
010005020101050101000501010005010101050a01000503010105010100050101000502
 
672
0100050a0100050301000502010005010101050101000504010005020100050201000503
 
673
0101051a0100000701000006010000010100000c010000030100000b0100000101000004
 
674
010000ff00190100050a0701050402020103020205040001050a01030502010005050100
 
675
050201000501010005050100050201000501010005050100050c01000502010005010100
 
676
050001000500010005010100050201000504010005020100050201000501010005020100
 
677
050a010005030100050201000501010005020100050a0100050701000501010005020100
 
678
05040100050201000502010005200100000601000007010000010100000a010100040100
 
679
000b0100000101000005010000ff00180100050a0701050402020103020205040001050a
 
680
010005050100050501000502010005010100050501040502010205030102050901000502
 
681
010005010100050001000500010005010100050201000504010005020100050201000501
 
682
010005020100050a0100050301000502010005010104050a010005040103050101000502
 
683
0100050401000502010405200100000701000006010000010100000c010000030100000b
 
684
0100000101000004010000ff00190100050a0701050402020103020205040001050a0100
 
685
050501000505010005020100050101000505010005090100050501000508010005020100
 
686
050101000500010005000100050101000502010005040100050201000502010005010100
 
687
05020100050a0100050301000502010005010100050e0100050301000502010005010100
 
688
05020100050401000502010005240100000801000005010000010100000c010000030100
 
689
000b0100000101000003010000ff001a0100050a0701050402020103020205040001050a
 
690
010005050100050501000502010005010100050201000501010005020100050101000502
 
691
010005010100050201000508010005020100050101000500010005000100050101000502
 
692
01000504010005020100050201000501010005010101050a010005030100050201000501
 
693
010005020100050a01000503010005020100050101010501010005040100050201000502
 
694
010005030101051a01000009010000040100000101000003010100020100000201000003
 
695
01000005010100030100000101000002010000ff001b0100050a07010504020201030202
 
696
05040001050a0100050501000506010205030102050301020503010205030102050a0102
 
697
050301000500010005020100050201000504010005020100050201000502010105000100
 
698
050b0101050101000502010005020102050b010005040103050101000500010105050100
 
699
0503010205040101051a0100000a01000004010100040101000301020002010400030101
 
700
000401010002010000ff001c0100050a0701050402020103020205040001056901000566
 
701
0100000b0100002a010000ff001d0100050a070105040202010302020504000105650100
 
702
050201000566010000ff00560100050a0701050402020103020205040001056601020567
 
703
010000ff00560100050a070105040202010302020504000105d1010000ff00560100050a
 
704
070105040202010302020504000105d1010000ff00560100050a07010504020201030202
 
705
0504000105d1010000ff00560100050a070105040202010302020504000105d1010000ff
 
706
00560100050a070105040202010302020504000105d101ff0158050a0701050402020103
 
707
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
708
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
709
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
710
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
711
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
712
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
713
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
714
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
715
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
716
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
717
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
718
0202010302020504000105d101ff0158050a070105040202010302020504000105d10100
 
719
00ff00560100050a070105040202010302020504000105d1010000ff00560100050a0701
 
720
05040202010302020504000105d1010000ff00560100050a070105040202010302020504
 
721
000105d1010000ff00560100050a070105040202010302020504000105d1010000ff0056
 
722
0100050a070105040202010302020504000105d1010000ff00560100050a070105040202
 
723
0103020205040001050a0100050201000527010105090102051301000517010305590100
 
724
00ff00560100050a0701050402020103020205040001050a01010501010005260100050a
 
725
010005020100052b0100050201000558010000ff00560100050a07010504020201030202
 
726
05040001050a01010501010005020102050201010500010005030102050a010205040100
 
727
050a01000502010005010100050201000501010005000101050301020502010005000101
 
728
050301010500010005080100050201000501010005000101050301020503010205030102
 
729
0503010205030102050401010528010000ff00560100050a070105040202010302020504
 
730
0001050a0100050001000500010005010100050201000501010005000100050001000501
 
731
010005020100050801000502010005010104050801000502010005010100050201000501
 
732
010105010100050401000502010105010100050101000501010105080100050201000501
 
733
010105010100050101000502010005010100050201000501010005020100050101000502
 
734
01000501010005020100050301010528010000ff00560100050a07010504020201030202
 
735
05040001050a010005000100050001000505010005010100050001000500010005010100
 
736
05020100050801000502010005030100050a010005020100050101000500010005000100
 
737
050101000502010005040100050201000502010005010100050201000508010305020100
 
738
050501000502010005010100050501000502010005010100050501000532010000ff0056
 
739
0100050a0701050402020103020205040001050a01000501010105020103050101000500
 
740
01000500010005010104050801000502010005030100050a010005020100050101000500
 
741
010005000100050101000502010005040100050201000502010005010100050201000508
 
742
010005050100050501000502010005010100050501040502010205030102052f010000ff
 
743
00560100050a0701050402020103020205040001050a0100050101010501010005020100
 
744
05010100050001000500010005010100050c01000502010005030100050a010005020100
 
745
050101000500010005000100050101000502010005040100050201000502010005010100
 
746
050201000508010005050100050501000502010005010100050501000509010005050100
 
747
052e010000ff00560100050a0701050402020103020205040001050a0100050201000501
 
748
010005020100050101000500010005000100050101000502010005080100050201000503
 
749
0100050a0100050201000501010005000100050001000501010005020100050401000502
 
750
010005020100050101000501010105080100050501000505010005020100050101000502
 
751
0100050101000502010005010100050201000501010005020100050301010528010000ff
 
752
00560100050a0701050402020103020205040001050a0100050201000502010305010100
 
753
050001000500010005020102050a010205040100050b0102050301000500010005020100
 
754
050201000504010005020100050201000502010105000100050801000505010005060102
 
755
05030102050301020503010205030102050401010528010000ff00560100050a07010504
 
756
02020103020205040001056901000566010000ff00560100050a07010504020201030202
 
757
0504000105650100050201000566010000ff00560100050a070105040202010302020504
 
758
0001056601020567010000ff00560100050a070105040202010302020504000105d10100
 
759
00ff00560100050a070105040202010302020504000105d1010000ff00560100050a0701
 
760
05040202010302020504000105d1010000ff00560100050a070105040202010302020504
 
761
000105d1010000ff00560100050a070105040202010302020504000105d101ff0158050a
 
762
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
763
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
764
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
765
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
766
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
767
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
768
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
769
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
770
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
771
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
772
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
773
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
774
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
775
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
776
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
777
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
778
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
779
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
780
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
781
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
782
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
783
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
784
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
785
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
786
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
787
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
788
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
789
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
790
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
791
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
792
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
793
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
794
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
795
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
796
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
797
070105040202010302020504000105ff05ff0535070105040202010302020504000105ff
 
798
05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504
 
799
000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103
 
800
02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504
 
801
0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535
 
802
070105040202010302020504000107ff07ff073705040202010100040504000007ff07ff
 
803
0738050400050202040005ff05ff054300000202040000000202040005ff05ff05430000
 
804
0202040000000202040005ff05ff054300000202040000000202040005ff05ff05430000
 
805
0202040000000202040005ff05ff0543000002020400000002020400000502ff02ff0237
 
806
00060202040000000208040002ff02ff023700000208040000000208040002ff02ff0237
 
807
00000208040000000208040001ff01ff01370000020804000000040901ff01ff01370000
 
808
0409
 
809
%%EndData
 
810
end
 
811
%%PageTrailer
 
812
%%Trailer
 
813
%%BoundingBox: 0 60 377 354
 
814
%%EOF