aboutsummaryrefslogblamecommitdiffstats
path: root/lib/appmon/doc/src/main_win.ps
blob: abb12d733b6e2283b73169e363181995f5f8419c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691


















































































































































































































































































































































































































































































































































































































































































































                                                                        
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (./main_win.tmp.eps)
%%CreationDate: (Tue Jun 12 17:57:00 2001)
%%BoundingBox: 0 26 377 164
%%DocumentData: Clean7Bit
%%LanguageLevel: 1
%%Pages: 0
%%EndComments

%%BeginDefaults
%%PageOrientation: Portrait
%%EndDefaults

%%BeginProlog
%
% Display a color image.  The image is displayed in color on
% Postscript viewers or printers that support color, otherwise
% it is displayed as grayscale.
%
/buffer 512 string def
/byte 1 string def
/color_packet 3 string def
/pixels 768 string def

/DirectClassPacket
{
  %
  % Get a DirectClass packet.
  %
  % Parameters:
  %   red.
  %   green.
  %   blue.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile color_packet readhexstring pop pop
  compression 0 gt
  {
    /number_pixels 3 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add 3 mul def
  } ifelse
  0 3 number_pixels 1 sub
  {
    pixels exch color_packet putinterval
  } for
  pixels 0 number_pixels getinterval
} bind def

/DirectClassImage
{
  %
  % Display a DirectClass image.
  %
  systemdict /colorimage known
  {
    columns rows 8
    [
      columns 0 0
      rows neg 0 rows
    ]
    { DirectClassPacket } false 3 colorimage
  }
  {
    %
    % No colorimage operator;  convert to grayscale.
    %
    columns rows 8
    [
      columns 0 0
      rows neg 0 rows
    ]
    { GrayDirectClassPacket } image
  } ifelse
} bind def

/GrayDirectClassPacket
{
  %
  % Get a DirectClass packet;  convert to grayscale.
  %
  % Parameters:
  %   red
  %   green
  %   blue
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile color_packet readhexstring pop pop
  color_packet 0 get 0.299 mul
  color_packet 1 get 0.587 mul add
  color_packet 2 get 0.114 mul add
  cvi
  /gray_packet exch def
  compression 0 gt
  {
    /number_pixels 1 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add def
  } ifelse
  0 1 number_pixels 1 sub
  {
    pixels exch gray_packet put
  } for
  pixels 0 number_pixels getinterval
} bind def

/GrayPseudoClassPacket
{
  %
  % Get a PseudoClass packet;  convert to grayscale.
  %
  % Parameters:
  %   index: index into the colormap.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile byte readhexstring pop 0 get
  /offset exch 3 mul def
  /color_packet colormap offset 3 getinterval def
  color_packet 0 get 0.299 mul
  color_packet 1 get 0.587 mul add
  color_packet 2 get 0.114 mul add
  cvi
  /gray_packet exch def
  compression 0 gt
  {
    /number_pixels 1 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add def
  } ifelse
  0 1 number_pixels 1 sub
  {
    pixels exch gray_packet put
  } for
  pixels 0 number_pixels getinterval
} bind def

/PseudoClassPacket
{
  %
  % Get a PseudoClass packet.
  %
  % Parameters:
  %   index: index into the colormap.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile byte readhexstring pop 0 get
  /offset exch 3 mul def
  /color_packet colormap offset 3 getinterval def
  compression 0 gt
  {
    /number_pixels 3 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add 3 mul def
  } ifelse
  0 3 number_pixels 1 sub
  {
    pixels exch color_packet putinterval
  } for
  pixels 0 number_pixels getinterval
} bind def

/PseudoClassImage
{
  %
  % Display a PseudoClass image.
  %
  % Parameters:
  %   class: 0-PseudoClass or 1-Grayscale.
  %
  currentfile buffer readline pop
  token pop /class exch def pop
  class 0 gt
  {
    currentfile buffer readline pop
    token pop /depth exch def pop
    /grays columns 8 add depth sub depth mul 8 idiv string def
    columns rows depth
    [
      columns 0 0
      rows neg 0 rows
    ]
    { currentfile grays readhexstring pop } image
  }
  {
    %
    % Parameters:
    %   colors: number of colors in the colormap.
    %   colormap: red, green, blue color packets.
    %
    currentfile buffer readline pop
    token pop /colors exch def pop
    /colors colors 3 mul def
    /colormap colors string def
    currentfile colormap readhexstring pop pop
    systemdict /colorimage known
    {
      columns rows 8
      [
        columns 0 0
        rows neg 0 rows
      ]
      { PseudoClassPacket } false 3 colorimage
    }
    {
      %
      % No colorimage operator;  convert to grayscale.
      %
      columns rows 8
      [
        columns 0 0
        rows neg 0 rows
      ]
      { GrayPseudoClassPacket } image
    } ifelse
  } ifelse
} bind def

/DisplayImage
{
  %
  % Display a DirectClass or PseudoClass image.
  %
  % Parameters:
  %   x & y translation.
  %   x & y scale.
  %   label pointsize.
  %   image label.
  %   image columns & rows.
  %   class: 0-DirectClass or 1-PseudoClass.
  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
  %   hex color packets.
  %
  gsave
  currentfile buffer readline pop
  token pop /x exch def
  token pop /y exch def pop
  x y translate
  currentfile buffer readline pop
  token pop /x exch def
  token pop /y exch def pop
  currentfile buffer readline pop
  token pop /pointsize exch def pop
  /Helvetica findfont pointsize scalefont setfont
  x y scale
  currentfile buffer readline pop
  token pop /columns exch def
  token pop /rows exch def pop
  currentfile buffer readline pop
  token pop /class exch def pop
  currentfile buffer readline pop
  token pop /compression exch def pop
  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
  grestore
} bind def
%%EndProlog
%%Page:  1 1
%%PageBoundingBox: 0 26 377 164
userdict begin
%%BeginData:
DisplayImage
0 26
377.000000 138.000000
12
520 191
1
0
0
16
ffffff
000000
708090
b03060
d9d9d9
808080
00ff00
666666
999999
ececc5
000000
000000
000000
000000
000000
000000
03ff03ff03ff03ff03ff0305040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400031b040c03e4040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000307040c03050400030a0400030a040103030405030104050301
040103040401030304030303040103020401030b0403031e0401032c0401030004010300
040103000401031104010305040403020401030404010305040103000401030904000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003080400030204000302
04000302040003050400030a040003090403030204010302040103000401030204010300
04010304040103020401030104010302040203010401030a040103010401034c04010303
040103000401031104010303040103040400030804010308040103080400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003070400030204000302
040003020400030504000303040203030400030904000301040003020401030204010300
040103020401030004020302040203010401030304010301040203010401030104010305
040103030401030004010302040103010403030104010300040303020401030004010301
040303010401030104010301040103050403030104010300040103060401030004010300
040103000401030004010300040103020403030104010300040503020400030604000300
040103010401030004010300040103000403030004010309040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030804000302040003020400030204000305
040003020404030204000308040103010401030104010302040103000401030204010300
040203020402030104010303040103010401030004000300040103010401030504010303
040103000401030204010300040103010401030004060302040103000401030004010301
040103000401030104010301040103040401030104010300040203000401030404010300
040203000401030004010300040203000401030004010301040103000404030004010302
040003020401030004000300040003000401030004010300040203000406030004010308
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000307
040403020400030204000305040003010406030104000308040103010401030104050301
040503010403030004030301040103030401030104010300040003000401030904010303
040103010401030004010301040103010401030004020302040103000401030104010300
040103010401030104010300040103000401030504010301040103000401030104010304
040103010401030004010300040103000401030104010300040103010401030004020302
040103020400030104000301040003010400030004010300040103010401030004020301
040103000401030904000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003080400030604000302040003050400030104060301040003080405030104010305
040103050401030004000300040003000401030104010303040103010401030104020309
040103030401030104010300040103010405030004010303040103000401030104010300
040503010401030004010300040103050401030104010300040103010401030404010301
040103000401030004010300040103010401030004050300040103030401030204000300
040003020400030104000300040103000401030104010300040103020401030004010308
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000307
040003060400030204000305040003010406030104000307040103030401030004010305
040103050401030004020300040103010401030304010301040103010402030904010303
040103020402030204010304040103040402030204010300040103050401030004010300
040103050401030104010300040103010401030404010301040103000401030004010300
040103010401030004010304040103030401030204000300040003010401030004000301
040103000401030104010300040103020401030004010309040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030804000306040003020400030504000302
040403020400030704010303040103000401030504010305040103010400030104010302
040103010401030204010302040103010401030604010301040103030402030204010301
040103000401030404020302040103000401030104010302040103010401030604010301
040103000401030104010304040103000402030004010300040103000402030004010300
040103010401030004010303040103000400030004000301040103000401030204010300
040103000402030004010302040103000401030804000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030704080302040003050400030304020303
040003070401030304010300040103050401030504010301040003010401030304030303
040103020401030104010307040303050400030404030301040103050400030304010301
040303030401030104010307040303010401030104010305040103000401030004010300
040103000401030004010302040303010401030404010302040003080401030104010300
040103000401030204010300040103090400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
0400030004000300040003080400030a040003050400030a040003be0404032004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
04000300040003000400030004000300040003000400030004000300040003070400030a
040003050400030a040003e5040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
04000300040003080400030a04000305040c03e404000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
0400030004000300040003000400030004000307040c03f8040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
040003000400030004000300040003000400030004000300040003000400030004000300
04000300040003000400030004000300040003ff03ff03ff03ff032802ff02ff02ff02ff
020f00ff00ff00ff00ff000e0500000104ff04ff04030501000104ff04ff040305010001
04ff04ff04030501000104ff04ff04030501000104ff04ff040305010001040401040404
01000403010204130100040c01000406010004200102040b010004060100041f01000402
0100040c010004ff043601000402010004090102040c0501000104040100040f01000413
0100040c01000427010004020100040a01000427010104010100040c010004ff04360100
04020100040b0100040c0501000104040100040601020405010004030102040b01000400
010004030102040201040402010204030102040201000400010104030102040a01000402
01000401010004000101040201040402010204030102040201000400010104030102040a
010104010100040201020403010104000100040201020403010204ff0429010004020100
040201020405010004020100040001010405050100010404010004080100040501000402
010004020100040a01000400010004020100040201000403010004060100040201000402
010004010101040101000401010004020100040901000402010004010101040101000403
010004060100040201000402010004010101040101000401010004020100040901000400
010004000100040101000402010004010100040101010401010004020100040101000402
010004ff0428010004020100040101000402010004040100040201010401010004040501
00010404010304050100040501000402010004020100040a010004000100040201000407
0100040601000402010004020100040101000402010004010100040d0100040201000401
01000402010004030100040601000402010004020100040101000402010004010100040d
010004000100040001000401010004020100040101000402010004010100040201000401
010004ff042c010404010100040201000404010004020100040201000404050100010404
010004080100040501000402010404090100040201000401010004070100040601000402
010004020100040101000402010004020102040a01000402010004010100040201000403
0100040601000402010004020100040101000402010004020102040a0100040101010401
0100040201000401010004020100040101040402010204ff042901000402010004010104
04040100040201000402010004040501000104040100040801000405010004020100040d
010404010100040701000406010004020100040201000401010004020100040501000409
010004020100040101000402010004030100040601000402010004020100040101000402
010004050100040901000401010104010100040201000401010004020100040101000409
010004ff0428010004020100040101000408010004020100040201000404050100010404
010004080100040501000402010004020100040901000402010004010100040201000403
010004060100040201000402010004010100040201000401010004020100040901000402
010004010101040101000403010004060100040201000402010004010100040201000401
010004020100040901000402010004010100040201000401010004010101040101000402
0100040101000402010004ff042801000402010004010100040201000404010004020101
0401010004040501000104040100040801000405010004030102040a0100040201000402
0102040501010404010004030102040201000402010004020102040b0102040201000400
0101040501010404010004030102040201000402010004020102040a0100040201000402
01020403010104000100040201020403010204ff04290100040201000402010204050100
04020100040001010405050100010468010004ff048f01000408050100010468010004ff
048f01000408050100010468010004ff048f010004080501000104ff04ff040305010001
04ff04ff04030501000104ff04ff04030501000105ff05ff0505000005ff05ff050604ff
04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff
04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff
04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04cf01ff01ff
010704ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff
04ff044c01150400010104010100041a017204ff045d0100081201010400010104000101
041a017204ff045d01000812010404010100041a017204ff045d01000812010104000101
04010100041a017204ff045d0100081201010400010104010100041a017204ff045d0114
04050100041a011909010100090101000901010009010111090101050904010209010104
09010105090101000901011704ff045d0100081201000421011909010103090101000901
0111090101030901010409000108090101080901011704ff045d01000812010004210116
090101000901010009010100090101000901010009010102090301010901010009050102
090001060900010009010101090101000901010009010100090301000901011704ff045d
010008120100042101150901010009020100090101000901010009020100090101000901
010109010100090401000901010209000102090101000900010009000100090101000901
010009020100090601000901011704ff045d010008120100042101150901010109010100
090101000901010009010101090101000901010109010100090201020901010209000101
090001010900010109000100090101000901010109010100090201010901010009010117
04ff045d0114042101150901010109010100090101000901010009010101090101000905
010009010103090101020900010009000102090001010900010009010100090101010901
010009010102090101000901011704ff045d010008120100042101150901010109010100
090101000901010009010101090101000901010409010103090101020900010009000101
090101000900010109010100090101010901010009010102090101000901011704ff045d
010008120100042101150901010009020100090101000901010009020100090101000901
010109010100090101030901010009000100090001010901010009010102090101000901
01000902010009010102090101000901011704ff045d0100081201000421011609010100
090101000901010009010100090101000901010209030101090101040901010209000108
09010101090101000901010009010102090101000901011704ff045d0100081201000421
013d0904012f04ff045d01140421017204ff045d0100081201000421017204ff045d0100
081201000421017204ff045d0100081201000421017204ff045d01000812010004210172
04ff045d01140421017204ff045d01000812010004ff04f201000812010004ff04f20100
0812010004ff04f201000812010004ff04f2011404ff04f201000812010004ff04f20100
0812010004ff04f201000812010004ff04f201000812010004ff04f201140444010004ff
04ac0100081201000444010004ff04ac0100081201000444010004ff04ac010008120100
0444010004ff04ac0100081201000444010004ff04ac01140444010004ff04ac01000812
01000444010004ff04ac0100081201000444010004ff04ac0100081201000444010004ff
04ac0100081201000444010004ff04ac01140444010004ff04ac01000812010004440100
04ff04ac0100081201000444010004ff04ac0100081201000444010004ff04ac01000812
01000444010004ff04ac01140444010004ff04ac0100081201000444010004ff04ac0100
081201000444010004ff04ac0100081201000444010004ff04ac01000812010004440100
04ff04ac0114044401a004ff040c01000812010004440100044e0100044e010004ff040c
01000812010004440100044e0100044e010004ff040c01000812010004440100044e0100
044e010004ff040c01000812010004440100044e0100044e010004ff040c011404440100
044e0100044e010004ff040c01000812010004440100044e0100044e010004ff040c0100
0812010004440100044e0100044e010004ff040c01000812010004440100044e0100044e
010004ff040c01000812010004440100044e0100044e010004ff040c011404440100044e
0100044e010004ff040c01000812010004440100044e0100044e010004ff040c01000812
010004440100044e0100044e010004ff040c01000812010004440100044e0100044e0100
04ff040c01000812010004440100044e0100044e010004ff040c011404440100044e0100
044e010004ff040c01000812010004440100044e0100044e010004ff040c010008120100
04440100044e0100044e010004ff040c01000812010004440100044e0100044e010004ff
040c01000812010004210045040900450409004504ea0114042000450701040700450701
04070045070104e901000812010004200001044307010407000104430701040700010443
070104e901000812010004200001044307010407000104430701040700010443070104e9
01000812010004200001044307010407000104430701040700010443070104e901000812
010004200001044307010407000104430701040700010443070104e9011404200001040f
0101041e01010410070104070001042a010104160701040700010443070104e901000612
0101041f0001040f0101041e01010410070104070001042a010104160701040700010443
070104e90100061201010403010204180001040f01010401010104010103040101010400
010304000101040201030401010104100701040700010416010304020103040201030401
01010416070104070001040d010004000102040001020401010104020101040101030401
0101040001010401010104000101040f070104e901000612010104020101040001010417
0001040f0101040001010401010104010101040001070400010104000101040101010400
010104100701040700010415010104010101040001010401010104000101040101010400
01010416070104070001040d010104010101040101010400010104020101040001010401
010104000102040001010400010204000101040e070104e9010006120101040201010400
010104170001040f01030402010104010101040001020401010104010101040001010401
010104000101041007010407000104150102040701010400010204030101041607010407
0001040d0101040101010401010104010101040001010405010104000101040101010400
010104010101040e070104e901170401010204180001040f010304020105040001010402
010104010101040001050400010104100701040700010417010204020104040201020401
01010416070104070001040d010104010101040101010401010104000101040201040400
0101040101010400010104010101040e070104e901010403010204010101040201030400
01020402010004190001040f010104000101040101010404010104020101040101010400
010104040101041007010407000104180102040001010401010104030102040001010416
070104070001040d01010401010104010101040201020402010104010101040001010401
01010400010104010101040e070104e90101040201010400010104000102040001010400
010104210001040f01010401010104000101040101010400010104020101040101010400
010104010101040001010410070104070001041501010401010104000101040101010400
010104010101040001010416070104070001040d01010401010104010101040201020402
01010401010104000102040001010400010204000101040e070104e90101040201010400
010104000102040001010400010104210001040f01010402010104000103040101010402
010104010101040101030401010104100701040700010416010304020102040001010400
0103040101010416070104070001040d0101040101010401010104030101040301020400
0103040001010401010104000101040f070104e901030401010204010102040101030421
000104430701040700010443070104070001041b0100040a0101040401010412070104ea
01020402010004030100040301000423000104430701040700010443070104070001041a
0101040a0101040401010412070104ff041f000104430701040700010443070104070001
04190101040b0101040401010412070104ff041f00010443070104070001044307010407
00010443070104ff041f0001044307010407000104430701040700010443070104ff041f
0000074604070000074604070000074604ff04200746040807460408074604ff04ff04ff
04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff042c01ff
01ff010704ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff
04ff04ff0447
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 26 377 164
%%EOF