~ubuntu-branches/ubuntu/karmic/erlang/karmic-security

« back to all changes in this revision

Viewing changes to lib/orber/doc/src/iiop.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: (./iiop.tmp.eps)
 
4
%%CreationDate: (Tue Jun 12 17:52:35 2001)
 
5
%%BoundingBox: 0 29 377 291
 
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 29 377 291
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 29
 
271
377.000000 262.000000
 
272
12
 
273
461 321
 
274
1
 
275
0
 
276
0
 
277
8
 
278
ffffff
 
279
000000
 
280
009000
 
281
00b0b0
 
282
0000ff
 
283
900090
 
284
000000
 
285
000000
 
286
00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
 
287
00ff00ff00ff00ff00ff007c0101001e0101000e01000008010000ff00900100002e0101
 
288
0009010000ff008e0100002f0100000a010000ff008b0103000301020002010100000102
 
289
000001010004010300010102000001010000010200060100000301010000010200010100
 
290
00ff008a0100000101010001010100010101000201010001010100000101000201010000
 
291
01010002010000020101000101000006010000040100000001000003010000ff00890101
 
292
000101010001010000030100000101000000010000000101000101000002010100020100
 
293
0002010000010100000001000000010100050101000401010004010000ff002e0101001e
 
294
0101000e010000080100001d010000020100000101010003010000010101000101010001
 
295
0100000201000002010000030100000101010001010000060100000601000004010000ff
 
296
002f0100002e010100090100001b01010002010000010100000301010001010000020100
 
297
000201000001010100020100000301000001010000020100000601000005010100040100
 
298
00ff002e0100002f0100000a0100001b0100000201010001010000030100000201000002
 
299
010000020100000101000002010100020101000101000002010000060100000501010003
 
300
010100ff002b010300030102000201010000010200000101000401030001010200000101
 
301
0000010200060100000201010002010000020100001b0100000101030000010100010101
 
302
000101000002010000020100000001000000010000010102000001000000010000000101
 
303
00020102000501000004010000000100000001000001010000ff002b0100000101010001
 
304
010100010101000201010001010100000101000201010000010100020100000201010001
 
305
010000060100000301010001010000020100001c01010000010100020102000301000002
 
306
010000020101000201010001010100010101000001000002010100060100000201010002
 
307
01000001010100ff002a0101000101010001010000030100000101000000010000000101
 
308
000101000002010100020100000201000001010000000100000001010005010100040100
 
309
0001010000020100005101000009010000ff002b01000002010000010101000301000001
 
310
010100010101000101000002010000020100000301000001010100010100000601000005
 
311
01000001010000020100005101000008010000ff002b0101000201000001010000030101
 
312
000101000002010000020100000101010002010000030100000101000002010000060100
 
313
00050100000001000003010000ff00880100000201010001010000030100000201000002
 
314
010000020100000101000002010100020101000101000002010000060100000501020002
 
315
010100ff0088010000010103000001010001010100010100000201000002010000000100
 
316
000001000001010200000100000001000000010100020102000501000006010000030100
 
317
00ff008a0101000001010002010200030100000201000002010100020101000101010001
 
318
0101000001000002010100060100000601000002010100ff00bf01000004010000030100
 
319
00ff00c00100000301000003010000ff00c4010100ff00ff00ff00b9015500ff00760100
 
320
0053010000ff007601000053010000ff007601000053010000ff007601000053010000ed
 
321
05060005050500050501006d01000053010000ed05060005050500050501015400180100
 
322
0053010000ed05010016050100530100001801000053010000ff00060501005301000018
 
323
01000053010000ff0006050100530100001801000053010000f60504000a050100530100
 
324
001801000053010000f5050100020501000a010000530100001801000053010000f40501
 
325
000405010009010000530100001801000053010000f30501000605010008010000530100
 
326
001801000053010000ed0501000305010006050100080100005301000018010000530100
 
327
00ed050100030501000605010008010000530100001801000053010000ed050100030501
 
328
000605010008010000530100001801000053010000ed0501000305010006050100070501
 
329
00530100001801000053010000ed05010004050100040501000805010053010000180100
 
330
0053010000ed050100050501000205010009050100530100001801000053010000f60504
 
331
000a050100530100001801000053010000ff0006050100530100001801000053010000ff
 
332
0006050100530100001801000053010000ff0007010000530100001801000053010000ff
 
333
0007010000530100001801000053010000ff0007010000530100001801000053010000ed
 
334
0501001701000023040b00230100001801000053010000ed050100170100001f0403000b
 
335
0403001f0100001801000053010000ed050100030506000c0100001d040100130401001d
 
336
0100001801000053010000ed0501000405010002050200090501001a0402000103000002
 
337
03000002030000020300000203000002030000000402001a0100001801000053010000ed
 
338
050100040501000305010009050100190400001d040000190100001801000023040b0023
 
339
010000ed050100040501000305010009050100170401001f04010017010000180100001f
 
340
0403000b0403001f010000f4050100020502000905010016040000230400001601000018
 
341
0100001d040100130401001d010000f40506000a05010014040100040300000603000006
 
342
0300000603000006030004010014010000180100001a0402000103000002030000020300
 
343
00020300000203000002030000000402001a010000f4050100000501000c050100130400
 
344
00290400001301000018010000190400001d04000019010000f4050100010501000c0100
 
345
00120400002b0400001201000018010000170401001f04010017010000f4050100020501
 
346
000b010000110400002d0400001101000018010000160400002304000016010000f40501
 
347
00020502000a010000100400000103000002030000020300000203000002030000020300
 
348
000203000002030000020300000203000002030000020300000004000010010000180100
 
349
00140401000403000006030000060300000603000006030004010014010000ed05010003
 
350
05030002050200090100000f040000310400000f01000018010000130400002904000013
 
351
010000ed050100170100000e040000330400000e01000018010000120400002b04000012
 
352
010000ed050100170100000e040000330400000e01000018010000110400002d04000011
 
353
010000ed050100160501000d040000040300000603000006030000060300000603000006
 
354
0300000603000400000d0100001801000010040000010300000203000002030000020300
 
355
000203000002030000020300000203000002030000020300000203000002030000000400
 
356
0010010000ed050100160501000c040000370400000c010000180100000f040000310400
 
357
000f010000ed050100160501000c040000370400000c010000180100000e040000330400
 
358
000e010000ff00060501000b040000390400000b010000180100000e040000330400000e
 
359
010000ff00060501000b0400000203000002030000020300000203000002030000020300
 
360
000203000002030000020300000203000002030000020300000203000002030000010400
 
361
000b010000180100000d0400000403000006030000060300000603000006030000060300
 
362
000603000400000d010000f30507000a0501000a0400003b0400000a010000180100000c
 
363
040000370400000c010000f4050100020502000a0100000a0400003b0400000a01000018
 
364
0100000c040000370400000c010000f4050100030501000a0100000a0400003b0400000a
 
365
010000180100000b040000390400000b010000f4050100030501000a0100000904000000
 
366
030000060300000603000006030000060300000603000006030000060300000304000009
 
367
010000180100000b04000002030000020300000203000002030000020300000203000002
 
368
03000002030000020300000203000002030000020300000203000002030000010400000b
 
369
010000ed05010004050100020501000b0100000904000010040200060400001504020008
 
370
04000009010000180100000a0400003b0400000a010000ed050100040506000b01000009
 
371
040000110401001e0400000904000009010000180100000a0400003b0400000a010000ed
 
372
05010004050100020502000a010000090400001104000019040000040400000904000009
 
373
010000180100000a0400003b0400000a010000ed05010004050100030501000905010008
 
374
040000010300000203000002030000000402000203000404000104020000030000010402
 
375
000103000000040200000403000103000000040000000300000203000002030000000400
 
376
000801000018010000090400000003000006030000060300000603000006030000060300
 
377
0006030000060300000304000009010000ed050100040501000305010009050100080400
 
378
000904010001040100020400000204000002040000030400000104000001040100010400
 
379
0001040100030400000b0400000801000018010000090400003d04000009010000ed0501
 
380
000405010002050200090501000804000009040000030400000104000003040000020400
 
381
0002040000010401000104000005040000040400000b0400000801000018010000090400
 
382
003d04000009010000f30506000b05010008040000080401000304000001040000030400
 
383
0002040000010404000104010005040000040400000b0400000801000018010000090400
 
384
003d04000009010000ff0006050100080400000103000005040003000002040100010400
 
385
000204010001030004000001040200000300000104000003030000010400000304010005
 
386
030000040400000801000018010000080400000103000002030000020300000203000002
 
387
030000020300000203000002030000020300000203000002030000020300000203000002
 
388
03000002030000020300000004000008010000ff00060501000804000008040000030400
 
389
00020400000204000002040000020400000504000005040100030400000c040000080100
 
390
0018010000080400003f04000008010000ff000701000008040000080401000104010001
 
391
040000020400000304000002040100010400000104010001040000010400000004000002
 
392
0400000c0400000801000018010000080400001104020006040000170400000904000008
 
393
010000ff0007010000080400000904020003040300040400000304020003040200020401
 
394
00010403000b040000080100001801000008040000120401001e04010009040000080100
 
395
00ff00070100000804000001030000020300000203000002030000020300000203000002
 
396
040000020300000203000002030000020300000203000002030000020300000203000002
 
397
030000000400000801000018010000080400000103000006030000060300040000050300
 
398
00060300000603000002040000020300040200030300000404000008010000ed05010017
 
399
0100000804000018040000250400000801000018010000080400000b0402000304040001
 
400
040200030402000304020000040300010402000a04000008010000ed0501001701000008
 
401
040000160402002504000008010000180100000804000009040100010401000204000002
 
402
04000002040000030400000104000001040100010400000104010001040100000400000a
 
403
04000008010000ed05010017010000080400003f04000008010000180100000804000009
 
404
040000030400000104000003040000020400000204000001040100010400000504000001
 
405
040100010400000a04000008010000ed0501001605010009040000000300000603000006
 
406
030000060300000603000006030000060300000603000003040000090100001801000008
 
407
040000010300000203000001040100020300040000010400000203000400000103000400
 
408
000104040001040100020300000104000300040100000300000004000000030000020300
 
409
00020300000004000008010000ed05010016050100090400003d04000009010000180100
 
410
000804000008040000030401000104000002040100020400000104020003040000060400
 
411
00000406000904000008010000ed05010016050100090400003d04000009010000180100
 
412
000804000008040000030400000204000002040000020400000204000005040000050401
 
413
00040400000b04000008010000ff0006050100090400003d040000090100001801000008
 
414
040000080401000104010001040000020400000304000002040100010400000104010001
 
415
0400000104000000040000030400000b04000008010000ff00060501000a040003000002
 
416
030000020300000203000002030000020300000203000002030000020300000203000002
 
417
03000002030000020300000203000002030000020400000a010000180100000904000000
 
418
030000060402000304030004040000030402030000020402000003000000040100030401
 
419
000503000003040000080506000505050005050100ed0501000a0400003b0400000a0100
 
420
0018010000090400001804000023040000080506000505050005050100ee010000070401
 
421
00000400003b0400000a0100001801000009040000170400002404000008050100160501
 
422
00ee0100000504010003040000390400000b010000180100000904000015040200240400
 
423
000901000016050100ee0100000204020005040000060300000603000006030000060300
 
424
00060300000603000006030000010400000b010000180100000a04000300000203000002
 
425
030000020300000203000002030000020300000203000002030000020300000203000002
 
426
030000020300000203000002030000020400000a01000016050100d40501001701000000
 
427
04010009040000370400000c010000180100000a0400003b0400000a01000016050100d4
 
428
05010016040001000400000b040000370400000c010000180100000a0400003b04000000
 
429
04000008010000ed05010013040200000100000d040000350400000d010000180100000b
 
430
040000390400000204010006010000ed05010011040100020501000e0400030000020300
 
431
000203000002030000020300000203000002030000020300000203000002030000020300
 
432
000203000002030000020400000e010000180100000b0400000603000006030000060300
 
433
0006030000060300000603000006030000010400000404010004010000ed0501000e0402
 
434
00040501000e040000330400000e010000180100000c0400003704000007040100010501
 
435
00ed0501000c040100070501000f040000310400000f010000180100000c040000370400
 
436
00090401050100f904020009050100100400002f04000010010000180100000d04000035
 
437
0400000c050100f70401000c050100110400000003000006030000060300000603000006
 
438
030000060300000304000011010000180100000d02000400030000020300000203000002
 
439
030000020300000203000002030000020300000203000002030000020300000203000002
 
440
030000020400000d050104010014050100db0402000e050100120400002b040000120100
 
441
00180100000c02000000040000330400000d0501000104010012050100d8040200120100
 
442
00130400002904000013010000180100000f040000310400000e05010003040100100501
 
443
00d60401001501000014040100250401001401000018010000100400002f040000100100
 
444
000504000504000a050100d3040200170100001604000300000203000002030000020300
 
445
000203000002030000020300000203000002030000020400001601000018010000110400
 
446
000003000006030000060300000603000006030000060300000304000011010000050501
 
447
0401000005010009050100d10401000005010017010000170401001f0401001701000018
 
448
010000120400002b040000120100000405010002040105010008050100ce040200020501
 
449
0017010000190400001d04000019010000180100000a0200000704000029040000130100
 
450
0003050100050400050100d604010005050100170100001a040200170402001a01000018
 
451
0100000a02000008040100250401001401000003050100060501040000d2040200070501
 
452
00160501001d0401000303000006030000060401001d0100001801000016040003000002
 
453
030000020300000203000002030000020300000203000002030000020300000204000016
 
454
010000030501000605010000040100cd0402000a050100160501001f0403000b0403001f
 
455
01000018010000170401001f04010016050100030501000605010002040100c90401000d
 
456
0501001605010023040b002301000018010000190400001d040000180501000305010006
 
457
05010004040100c404020028050100530100001801000009020000050200000804020017
 
458
04020019050100040501000405010007040100c00401002b050100530100001801000009
 
459
020000040200000c0401000303000006030000060401001c050100050501000205010009
 
460
0501040000bb0402002d050100530100001801000008020000150403000b0403001e0501
 
461
00060504000a05010000040100b70401001a050500050505000401000053010000180100
 
462
0023040b00220501001605010002040100b20402001c0505000505050004015500180100
 
463
000e020000430100001605010004040100ad040200a50100005301000016050100060401
 
464
00a9040100a80100000702000004020000440100001605010008040100a4040200aa0100
 
465
00070200004a01000023040100a0040100ad010000070200001a040b0023010000250401
 
466
001c0473000a040200af01000006020000170403000b0403001f010000270401001a0400
 
467
030000020300000203000002030000020300000203000002030000020300000203000002
 
468
030000020300000203000002030000020300000203000002030000020300000203000002
 
469
030000020300000203000002030000020300000203000002030000020300000203000002
 
470
030000020300000004000008040100b20100001d040100130401001c050100030506001e
 
471
040100180400007104000005040200b40100000e0200000a040200010300000203000002
 
472
030000020300000203000002030000000402001905010004050100020502001e04010016
 
473
0400007104000002040200b70100000e020000090400001d040000180501000405010003
 
474
05010020040100140400007104000000040100ba0100000e020000070401001f04010016
 
475
050100040501000305010009050100160401001204000003030000060300000603000006
 
476
030000060300000603000006030000060300000603000006030000060300000603000006
 
477
0300000603000004040100bc010000050200000f04000023040000150501000405010002
 
478
05020009050100180401001004000071040000bd010000050200000d0401000403000006
 
479
030000060300000603000006030004010013050100040506000a0501001a0401000e0400
 
480
0071040000bd0100001002000001040000290400001301000004050100000501000c0501
 
481
001c0401000c04000071040000bd0100001102000400002b040000120100000405010001
 
482
0501000b0501001e0401000a040003000002030000020300000203000002030000020300
 
483
000203000002030000020300000203000002030000020300000203000002030000020300
 
484
000203000002030000020300000203000002030000020300000203000002030000020300
 
485
00020300000203000002030000020300000203000000040000bd010000110400002d0400
 
486
001101000004050100020501000a0501002004010008040000710400004e015a00130100
 
487
001004000001030000020300000203000002030000020300000203000002030000020300
 
488
0002030000020300000203000002030000000400001001000004050100020502002e0401
 
489
0006040000710400004e01000058010000130100000402000009040000310400000f0100
 
490
0003050300020502002f04010004040000710400004e0100005801000013010000040200
 
491
0008040000330400000e0100003f04010002040000030300000603000006030000060300
 
492
000603000006030000060300000603000006030000060300000603000006030000060300
 
493
0006030000040400004e01000058010000130100000402000008040000330400000d0501
 
494
0041040100000400007104000035050500050505000505010058010000130100000d0400
 
495
000403000006030000060300000603000006030000060300000603000400000c05010043
 
496
0401007104000035050500050505000505010058010000130100000c040000370400000b
 
497
05010044040000710400004d05010058010000130100000c040000370400000b05010016
 
498
0501002b0400030000020300000203000002030000020300000203000002030000020300
 
499
000203000002030000020300000203000002030000020300000203000002030000020300
 
500
000203000002030000020300000203000002030000020300000203000002030000020300
 
501
00020300000203000002030000000400004d05010058010000130100000b040000390400
 
502
000a050100160501002b040000710400004d05010029040b0022010000130100000b0400
 
503
000203000002030000020300000203000002030000020300000203000002030000020300
 
504
000203000002030000020300000203000002030000010400000a050100160501002b0400
 
505
00710400003405010016050100250403000b0403001e0100001301000003020000050400
 
506
003b0400000a010000030507000a0501002b040000710400003405010017010000230401
 
507
00130401001c0100001301000003020000050400003b0400000a01000004050100020502
 
508
00090501002b040000030300000603000006030000060300000603000006030000060300
 
509
000603000006030000060300000603000006030000060300000603000004040000340501
 
510
001701000020040200010300000203000002030000020300000203000002030000000402
 
511
0019010000130100000a0400003b0400000a0100000405010003050100090501002b0400
 
512
007104000034050100170100001f0400001d040000180100001301000009040000000300
 
513
000603000006030000060300000603000006030000060300000603000003040000090100
 
514
000405010003050100370400007104000034050100170100001d0401001f040100160100
 
515
001301000009040000100402000604000014040400070400000901000004050100020501
 
516
00380400007104000034050100170100001c040000230400001501000013010000090400
 
517
00110401001c0400000b0400000901000004050600380400030000020300000203000002
 
518
030000020300000203000002030000020300000203000001040500000405030000020300
 
519
040500000300000203000408000103000002030000020300000203000002030000020300
 
520
0002030000020300000203000002030000000400004e0100001a04010004030000060300
 
521
000603000006030000060300040100130100001301000003020000040400001104000019
 
522
040000010400000c04000008050100040501000205020037040000240401000404010005
 
523
040100030401000604010003040100260400004d05010019040000290400001201000013
 
524
010000030200000304000001030000020300000203000000040200020300040400010402
 
525
000003000001040200010300000004020000040300010401000103000002030000020300
 
526
000004000007050100040501000305010037040000240401000404010004040000060401
 
527
000504010004040100250400004d050100180400002b0400001101000013010000030200
 
528
000304000009040100010401000204000002040000020400000304000001040000010401
 
529
000104000001040100040400000a04000007050100040501000305010037040000240401
 
530
000404010003040100070401000404010004040100250400004d050100170400002d0400
 
531
001001000013010000030200000304000009040000030400000104000003040000020400
 
532
000204000001040100010400000504000005040100090400000705010004050100020502
 
533
00090501002b040000030300000603000006030000060300000603000401000404010003
 
534
040000000300000604010004040100040401030000060300000603000006030000060300
 
535
00040400004d050100160400000103000002030000020300000203000002030000020300
 
536
00020300000203000002030000020300000203000002030000000400000f010000130100
 
537
000804000008040100030400000104000003040000020400000104040001040100050400
 
538
0005040100090408050104030506040b0501042c00240401000404010002040100090401
 
539
000304010004040100250400004d05010015040000310400000e01000013010000080400
 
540
000103000005040003000002040100010400000204010001030004000001040200000300
 
541
000104000003030000010400000303000000040000040300000404000007050100160501
 
542
002b04000024040100040401000204010009040100030401000304010026040000340501
 
543
001605010014040000330400000d01000013010000080400000804000003040000020400
 
544
000204000002040000020400000504000005040100050400000a04000008010000160501
 
545
002b04000024040100040401000204010009040100030405002804000034050100170100
 
546
0014040000330400000d0100001301000008040000080401000104010001040000020400
 
547
0003040000020401000104000001040100010400000104000000040000030400000b0400
 
548
0008010000160501002b0400030000020300000203000002030000020300000203000002
 
549
030000020300000203000002030004010000030000020401000103000401000003000002
 
550
030000020300040100000300000104010002030000020300000203000002030000020300
 
551
000203000002030000020300000203000002030000020300000004000034050100170100
 
552
00130400000403000006030000060300000603000006030000060300000603000400000c
 
553
010000130100000302000003040000090402000304030004040000030402000304020002
 
554
040100000403000c04000008010000160501002b04000024040100040401000204010009
 
555
040100030401002c04000034050100060504000b01000012040000370400000b01000013
 
556
010000030200000304000001030000020300000203000002030000020300000203000002
 
557
040000020300000203000002030000020300000203000002030000020300000203000002
 
558
03000000040000080100004404000024040100040401000304010008040000040401002c
 
559
0400003405010005050100020501000a01000012040000370400000b0100001301000003
 
560
020000030400001804000025040000080100004404000024040100040401000304010007
 
561
040100040401002c0400003405010004050100040501000901000011040000390400000a
 
562
010000130100000302000003040000160402002504000008010000440400000303000006
 
563
030000060300000603000006030004010004040100040401000604000005040100060300
 
564
0006030000060300000603000006030000040400003a0501000605010008010000110400
 
565
000203000002030000020300000203000002030000020300000203000002030000020300
 
566
000203000002030000020300000203000002030000010400000a01000013010000080400
 
567
003f040000070501004404000024040100040401000504010003040100060401002c0400
 
568
003a0501000605010007050100100400003b040000090100001301000009040000000300
 
569
000603000006030000060300000603000006030000060300000603000003040000080501
 
570
0044040000220405000004050004040500050405002a0400003a05010006050100070501
 
571
00100400003b0400000901000013010000090400003d0400000805010044040000710400
 
572
003a0501000605010007050100100400003b0400000901000013010000090400003d0400
 
573
0008050100160501002b0400030000020300000203000002030000020300000203000002
 
574
030000020300000203000002030000020300000203000002030000020300000203000002
 
575
030000020300000203000002030000020300000203000002030000020300000203000002
 
576
03000002030000020300000203000002030000000400003a05010006050100070501000f
 
577
040000000300000603000006030000060300000603000006030000060300000603000003
 
578
040000080100001301000003020000040400003d04000008050100160501002b04000071
 
579
0400003b05010004050100080501000f0400003d04000008010000130100000302000005
 
580
040003000002030000020300000203000002030000020300000203000002030000020300
 
581
000203000002030000020300000203000002030000020300000204000009050100160501
 
582
002b04000071040000340501000505010002050100090501000f0400003d040000080100
 
583
001301000003020000050400003b0400000a010000160501002b04000071040000340501
 
584
00060504000b0100000f0400000f04020006040000130403000a04000008010000130100
 
585
0003020000050400003b0400000a010000160501002b0400000303000006030000060300
 
586
000603000006030000060300000603000006030000060300000603000006030000060300
 
587
0006030000060300000404000034050100170100000e0400000103000002030000020300
 
588
000203000002040100010300000203000002030000020300000203000002030000020300
 
589
0400000103000401000003000002030000020300000004000007010000130100000b0400
 
590
00390400000b01000016050100290402007104000034050100170100000e040000110400
 
591
0019040000050400000a04000007010000130100000b0400000603000006030000060300
 
592
0006030000060300000603000006030000010400000b0100004004010001040000710400
 
593
0034050100170100000e0400000a04020003040400010402000304020003040200000403
 
594
00040400000a04000007010000130100000c040000370400000c0100003e040100030400
 
595
007104000034050100170100000e04000008040100010401000204000002040000020400
 
596
000304000001040000010401000104000001040100040401000a04000007010000130100
 
597
000402000006040000370400000c0100003d040000050400030000020300000203000002
 
598
030000020300000203000002030000020300000203000002030000020300000203000002
 
599
030000020300000203000002030000020300000203000002030000020300000203000002
 
600
03000002030000020300000203000002030000020300000203000002030000000400004e
 
601
0100000e0400000103000005040003000002040000010400030000020400000204000002
 
602
040000010401000104000003030000000400000404010005030000040400000701000013
 
603
0100000402000007040000350400000c0501003b04010006040000710400004d0501000e
 
604
040000070401000304000001040000030400000204000001040400010401000504000004
 
605
0400000c0400000701000013010000040200000804000300000203000002030000020300
 
606
000203000002030000020300000203000002030000020300000203000002030000020300
 
607
00020400000d0501003904010008040000710400004d0501000e04000007040000030401
 
608
00010400000204010002040000010402000304000006040000030400000d040000070100
 
609
00130100000402000008040000330400000d050100370401000a040000710400003a0506
 
610
000b0501000e040000070400000304000002040000020400000204000002040000050400
 
611
0005040100020400000e04000007010000130100000f040000310400000e050100160501
 
612
001c0401000c040000030300000603000006030000060300000603000006030000060300
 
613
0006030000060300000603000006030000060300000603000006030000040400003b0501
 
614
0002050200090501000e0400000103000002030000000401030000000401030000000400
 
615
000003000000040000000300000104000300000104010001040003000000040103000000
 
616
040000000300040000000400030004000001030004000001030000020300000203000000
 
617
0400000701000013010000100400002f0400000f050100160501001b0400000e04000071
 
618
0400003b05010003050100090501000e0400000804020003040300040400000304020003
 
619
04020002040100000405000b040000070100001301000011040000000300000603000006
 
620
030000060300000603000006030000030400001005010016050100190401000f04000071
 
621
04350501040405010403050104090501040f001804000025040000070100001301000005
 
622
0200000b0400002b04000012010000160501001704010011040000710400003405010004
 
623
050100020502000a0100000e04000017040000260400000701000013010000050200000c
 
624
040000290400001301000016050100150401001304000300000203000002030000020300
 
625
000203000002030000020300000203000002030000020300000203000002030000020300
 
626
000203000002030000020300000203000002030000020300000203000002030000020300
 
627
000203000002030000020300000203000002030000020300000203000000040000340501
 
628
00040506000b0100000f0400000003000006030000060300000204020000030000060300
 
629
00060300000603000006030000030400000801000013010000050200000d040100250401
 
630
0014010000160501001404000015040000710400003405010004050100000501000d0100
 
631
000f0400003d0400000801000013010000050200000f0400030000020300000203000002
 
632
030000020300000203000002030000020300000203000002040000160100002b04010016
 
633
040000710400003405010004050100010501000c0100000f0400003d0400000801000013
 
634
0100001602000401001f0401001701000029040100180400007104000034050100040501
 
635
00020501000b0100000f0400003d040000080100001301000015020000020400001d0400
 
636
0019010000270401001a0400000303000006030000060300000603000006030000060300
 
637
000603000006030000060300000603000006030000060300000603000006030000040400
 
638
003b050100020502000a0100001004000300000203000002030000020300000203000002
 
639
030000020300000203000002030000020300000203000002030000020300000203000002
 
640
0300000204000009010000130100001a0402001704020019050100250401001c04000071
 
641
0400003a0503000205020008050100100400003b04000009010000130100000602000015
 
642
0401000303000006030000060401001c050100240400001e040000710400004d05010010
 
643
0400003b0400000901000013010000060200000a0200000b0403000b0403001e05010022
 
644
0401001f040000710400004d05010011040000390400000a01000013010000060200000a
 
645
0200000f040b002205010016050100070401002104000300000203000002030000020300
 
646
000203000002030000020300000203000002030000020300000203000002030000020300
 
647
000203000002030000020300000203000002030000020300000203000002030000020300
 
648
0002030000020300000203000002030000020300000203000002030000000400004d0501
 
649
001104000006030000060300000603000006030000060300000603000006030000010400
 
650
000a01000013010000120200003e050100160501000504010023040000710400004d0501
 
651
0012040000370400000b0100001301000052050100160501000404000025040000710400
 
652
00340501001605010012040000370400000b010000130100005301000016050100020401
 
653
002604000071040000340501001701000013040000350400000c01000013010000120200
 
654
003f01000016050100000401002804000003030000060300000603000006030000060300
 
655
000603000006030000060300000603000006030000060300000603000006030000060300
 
656
000404000034050100170100001404000300000203000002030000020300000203000002
 
657
03000002030000020300000203000002030000020300000203000002030000020400000d
 
658
0100001301000008020000080200000f040b00230100001605010400002a047400330501
 
659
00030507000b01000014040000330400000d0100001301000008020000080200000b0403
 
660
000b0403001f01000015040100a10403002f05010004050100020502000a010000150400
 
661
00310400000e01000013010000080200000802000009040100130401001d010000140400
 
662
00a70403002b05010004050100030501000a010000160400002f0400000f010000130100
 
663
001a040200010300000203000002030000020300000203000002030000000402001a0100
 
664
0012040100ac0403002e050100030501000a010000170400000003000006030000060300
 
665
00060300000603000006030000030400001001000013010000190400001d040000180501
 
666
0010040100b20403002a050100020501000a050100180400002b04000011010000130100
 
667
0015020000000401001f040100160501000e040100b8040200270506000a050100190400
 
668
00290400001201000013010000090200000b04000023040000150501000d040000bd0403
 
669
002305010002050200090501001a040100250401000002000011010000130100000a0200
 
670
000804010004030000060300000603000006030000060300040100130501000b04010008
 
671
050100b70403001f05010003050100090501001c04000300000203000002030000020300
 
672
0002030000020300000203000002030000020300000204000015010000130100000a0200
 
673
00070400002904000012050100090401000a050100bb0403001b05010003050100090501
 
674
001d0401001f0401001601000013010000120400002b04000011050100070401000c0501
 
675
00bf040300100501000405010002050200090501001f0400001d04000018010000130100
 
676
00110400002d04000011010000050401000e050100c30402000d050100030506000c0100
 
677
002004020017040200090200000e01000013010000100400000103000002030000020300
 
678
000203000002030000020300000203000002030000020300000203000002030000020300
 
679
0000040000100100000404000010050100c6040300090501001701000023040100030300
 
680
0006030000060401000c0200000e010000130100000b02000002040000310400000f0100
 
681
000204010011050100ca0403000505010017010000250403000b0403000e0200000e0100
 
682
00130100000c02000000040000330400000e01000000040100e404030001050100170100
 
683
0029040b0022010000130100000c02000000040000330400000e0100040000ea04010501
 
684
001701000058010000130100000d04000004030000060300000603000006030000060300
 
685
00060300000603000400000c0400010000ef040200140100001f040b002c010000130100
 
686
000c04000037040000090401050100f20403000f0501001b0403000b040300190200000d
 
687
010000130100000c040000370400000704010001050100f60403000b0501001904010013
 
688
040100170200000d010000130100000b040000390400000404010003050100fa04030007
 
689
050100160402000103000002030000020300000203000002030000020300000004020014
 
690
0200000d010000130100000b040000020300000203000002030000020300000203000002
 
691
030000020300000203000002030000020300000203000002030000020300000203000001
 
692
04000002040100050502000505050005050500e504030003050100150400001d04000013
 
693
0200000d010000130100000a0400003b04000000040000070502000505050005050500e9
 
694
04020000050100130401001f04010020010000130100000a0400003b0400000a010000ed
 
695
050100150400050104000011040000230400001f010000130100000a0400003b0400000a
 
696
010000ed05010017010000000403000b0401000403000006030000060300000603000006
 
697
03000401001d010000130100000904000000030000060300000603000006030000060300
 
698
000603000006030000060300000304000009010000ed0501001701000004040300060400
 
699
00290400000b0200000f0100001301000009040000100402000604000015040300070400
 
700
0009010000ed0501001701000008040300010400002b0400000a0200000f010000130100
 
701
0009040000110401001d0400000a04000009010000ed050100170100000c0401002d0400
 
702
00080200001001000013010000090400001104000019040000010400000c040000090100
 
703
00ed050100170100000c0400000103000002030000020300000203000002030000020300
 
704
000203000002030000020300000203000002030000020300000004000019010000130100
 
705
000804000001030000020300000203000000040200020300040400010402000003000001
 
706
040200010300000004020000040300000403000003000002030000020300000004000008
 
707
010000ff00070100000b0400003104000018010000130100000804000009040100010401
 
708
000204000002040000020400000304000001040000010401000104000001040100000400
 
709
00020401000904000008010000ff00060501000a04000033040000020200001301000013
 
710
010000080400000904000003040000010400000304000002040000020400000104010001
 
711
0400000504000001040000020401000904000008010000ff00060501000a040000330400
 
712
000102000014010000130100000804000008040100030400000104000003040000020400
 
713
0001040400010401000504000000040000030401000904000008010000ff000605010009
 
714
040000040300000603000006030000060300000603000006030000060300040000160100
 
715
001301000008040000010300000504000300000204010001040000020401000103000400
 
716
000104020000030000010400000303000001040000000400000103000000040100030300
 
717
000404000008010000ff0006050100080400003704000015010000130100000804000008
 
718
040000030400000204000002040000020400000204000005040000050401000004000003
 
719
0400000a04000008010000ff000605010008040000370400001501000013010000080400
 
720
000804010001040100010400000204000003040000020401000104000001040100010400
 
721
000104000000040200010401000a04000008010000ed0501001605010007040000390400
 
722
001401000013010000080400000904020003040300040400000304020003040200020401
 
723
00010403000b04000008010000ed05010017010000070400000203000002030000020300
 
724
000203000002030000020300000203000002030000020300000203000002030000020300
 
725
000203000002030000010400001401000013010000080400000103000002030000020300
 
726
000203000002030000020300000204000002030000020300000203000002030000020300
 
727
00020300000203000002030000020300000004000008010000ed05010017010000060400
 
728
003b040000130100001301000008040000180400002504000008010000ed050100170100
 
729
00060400003b040000130100001301000008040000160402002504000008010000ed0501
 
730
0017010000060400003b0400001301000013010000080400003f04000008010000ed0501
 
731
001701000005040000000300000603000006030000060300000603000006030000060300
 
732
000603000003040000120100001301000009040000000300000603000006030000060300
 
733
00060300000603000006030000060300000304000009010000ff0007010000050400000f
 
734
0402000604000014040300090400001201000013010000090400003d04000009010000ff
 
735
000605010005040000100401001b04010001040000090400001201000013010000090400
 
736
003d04000009010000ff0006050100050400001004000019040000040401000904000012
 
737
01000013010000090400003d04000009010000ff00060501000404000001030000020300
 
738
000203000402030000020404000104020001030000000402000203000402030004030002
 
739
0400000203000002030000020300000004000011010000130100000a0400030000020300
 
740
000203000002030000020300000203000002030000020300000203000002030000020300
 
741
0002030000020300000203000002030000020400000a010000ff00060501000404000008
 
742
040100010401000204000002040000020400000304000001040000010401000104000001
 
743
040100010402000c04000011010000130100000a0400003b0400000a010000ee05050005
 
744
050500050501000404000008040000030400000104000003040000020400000204000001
 
745
0401000104000005040000040401000b04000011010000130100000a0400003b0400000a
 
746
010000ee0505000505050005050100040400000704010003040000010400000304000002
 
747
040000010404000104010005040000050400000b04000011010000130100000b04000039
 
748
0400000b010000ff00070100000404000001030000040400000003000001040100010400
 
749
030000010401000204000001040200010300000004000004030000000400000403000400
 
750
00050300000404000011010000130100000b040000060300000603000006030000060300
 
751
00060300000603000006030000010400000b010000ff0007010000040400000704000003
 
752
040000020400000204000002040000020400000504000005040100050400000b04000011
 
753
010000130100000c040000370400000c010000ff00070100000404000007040100010401
 
754
000104000002040000030400000204010001040000010401000104000001040000000400
 
755
00030400000c04000011010000130100000c040000370400000c010000ff000701000004
 
756
040000080402000304030004040000030402000304020002040100000403000d04000011
 
757
010000130100000d040000350400000d010000ff00070100000404000001030000020300
 
758
000203000002030000020300000203000001040003000002030000020300000203000002
 
759
03000002030000020300000203000002030000020300000004000011010000130100000e
 
760
040003000002030000020300000203000002030000020300000203000002030000020300
 
761
0002030000020300000203000002030000020400000e010000ff00070100000404000017
 
762
0400002604000011010000130100000e040000330400000e010000ff0007010000040400
 
763
00150402002604000011010000130100000f040000310400000f010000ff000701000004
 
764
0400003f0400001101000013010000100400002f04000010010000ff0007010000050400
 
765
000003000006030000060300000603000006030000060300000603000006030000030400
 
766
001201000013010000110400000003000006030000060300000603000006030000060300
 
767
000304000011010000ff0007010000050400003d0400001201000013010000120400002b
 
768
04000012010000ff0007010000050400003d040000120100001301000013040000290400
 
769
0013010000ff0007010000050400003d0400001201000013010000140401002504010014
 
770
010000ff0007010000060400030000020300000203000002030000020300000203000002
 
771
030000020300000203000002030000020300000203000002030000020300000203000002
 
772
040000130100001301000016040003000002030000020300000203000002030000020300
 
773
000203000002030000020300000204000016010000ff0007010000060400003b04000013
 
774
01000013010000170401001f04010017010000ff0007010000060400003b040000130100
 
775
0013010000190400001d04000019010000ff000701000007040000390400001401000013
 
776
0100001a040200170402001a010000ff0007010000070400000603000006030000060300
 
777
00060300000603000006030000060300000104000014010000130100001d040100030300
 
778
0006030000060401001d010000ff0007010000080400003704000015010000130100001f
 
779
0403000b0403001f010000ff00070100000804000037040000150100001301000023040b
 
780
0023010000ff00070100000904000035040000160100001301000053010000ff00070100
 
781
000a04000300000203000002030000020300000203000002030000020300000203000002
 
782
0300000203000002030000020300000203000002040000170100001301000053010000ff
 
783
00070100000a04000033040000170100001301000053010000ff00070100000b04000031
 
784
040000180100001301000053010000ff00070100000c0400002f04000019010000130100
 
785
0053010000ff00070100000d040000000300000603000006030000060300000603000006
 
786
030000030400001a0100001301000053010000ff00070100000e0400002b0400001b0100
 
787
001301000053010000ff00070100000f040000290400001c0100001301000053010000ff
 
788
000701000010040100250401001d0100001301000053010000ff00070100001204000300
 
789
000203000002030000020300000203000002030000020300000203000002030000020400
 
790
001f0100001301000053010000ff0007010000130401001f040100200100001301000053
 
791
010000ff0007010000150400001d040000220100001301000053010000ff000701000016
 
792
04020017040200230100001301000053010000ff00070100001904010003030000060300
 
793
0006040100260100001301000053010000ff00070100001b0403000b0403002801000013
 
794
015500ff00070100001f040b002c010000ff007101000058010000ff0071010000580100
 
795
00ff007101000058010000ff007101000058010000ff0071015a00ff00ff00ff00ff00ff
 
796
00ff00ed0101001e0101000e01000007010000ff00910100002e01010008010000ff008f
 
797
0100002f01000009010000ff008c01030003010200020101000001020000010100040103
 
798
00010102000001010000010200060100000201040002010000ff008b0100000101010001
 
799
010100010101000201010001010100000101000201010000010100020100000201010001
 
800
01000006010000020100000101000003010000ff008a0101000101010001010000030100
 
801
000101000000010000000101000101000002010100020100000201000001010000000100
 
802
0000010100050101000501000003010000ff008a01000002010000010101000301000001
 
803
010100010101000101000002010000020100000301000001010100010100000601000005
 
804
01000004010000ff00890101000201000001010000030101000101000002010000020100
 
805
000101010002010000030100000101000002010000060100000401000005010000ff0089
 
806
010000020101000101000003010000020100000201000002010000010100000201010002
 
807
0101000101000002010000060100000301010004010100ff008901000001010300000101
 
808
000101010001010000020100000201000000010000000100000101020000010000000100
 
809
00000101000201020005010000030100000101000002010000ff008b0101000001010002
 
810
010200030100000201000002010100020101000101010001010100000100000201010006
 
811
0100000201040001010100ff00c001000008010000ff00c101000007010000ff00ff00ff
 
812
00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
 
813
00ff00ff00ff00ff00ff00ff0019
 
814
%%EndData
 
815
end
 
816
%%PageTrailer
 
817
%%Trailer
 
818
%%BoundingBox: 0 29 377 291
 
819
%%EOF