-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviolaIntro.ps
15060 lines (14996 loc) · 900 KB
/
violaIntro.ps
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
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-1.0
%%Title: Viola Overview
%%DocumentFonts: Times-Roman Times-Bold Times-Italic Courier Courier-Bold Courier-Oblique
%%Creator: NCSA Mosaic, Postscript by Ameet Raval & Frans van Hoesel
%%Pages: (atend)
%%EndComments
save
/D {def} def /E {exch} D
/M {moveto} D
/S {show} D
/R {rmoveto} D
/L {lineto} D
/RL {rlineto} D
/SQ {newpath 0 0 M 0 1 L 1 1 L 1 0 L closepath} D
/U {gsave currentpoint currentfont /FontInfo get /UnderlinePosition get
0 E currentfont /FontMatrix get dtransform E pop add newpath moveto
dup stringwidth rlineto stroke grestore S } D
/B {/r E D gsave -13 0 R currentpoint
newpath r 0 360 arc closepath fill grestore } D
/OB {/r E D gsave -13 0 R currentpoint
newpath r 0 360 arc closepath stroke grestore } D
/NP {xmargin topmargin translate scalfac dup scale } D
/HR {/l E D gsave l 0 RL stroke grestore } D
/SF {E findfont E scalefont setfont } D
/FF {/Courier } D
/FB {/Courier-Bold } D
/FI {/Courier-Oblique } D
/RF {/Times-Roman} D
/BF {/Times-Bold} D
/IF {/Times-Italic} D
/reencodeISO {
dup dup findfont dup length dict begin
{ 1 index /FID ne { def }{ pop pop } ifelse } forall
/Encoding ISOLatin1Encoding D
currentdict end definefont
} D
/ISOLatin1Encoding [
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright
/parenleft/parenright/asterisk/plus/comma/minus/period/slash
/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon
/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N
/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright
/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m
/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/dotlessi/grave/acute/circumflex/tilde/macron/breve
/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut
/ogonek/caron/space/exclamdown/cent/sterling/currency/yen/brokenbar
/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot
/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior
/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine
/guillemotright/onequarter/onehalf/threequarters/questiondown
/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute
/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis
/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave
/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex
/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis
/yacute/thorn/ydieresis
] D
[RF BF IF FF FB FI] {reencodeISO D} forall
/xmargin 43 D
/topmargin 720 D
/scalfac 0.76772 D
%%EndProlog
%%Page: 1 1
save
NP
0 -20 M
638 HR
0 -39 M
0 -56 M
BF 24 SF
0 -20 R
(A Brief Overview of the VIOLA Engine, and its)S
0 -84 M
0 -20 R
(Applications)S
0 -112 M
0 -129 M
638 HR
0 -148 M
0 -165 M
RF 17 SF
0 -13 R
(Viola is a tool for the development and support of visual interactive media)S
0 -184 M
0 -13 R
(applications. Possible viola applications range from a simple clock to a World Wide)S
0 -203 M
0 -13 R
(Web hypermedia browser \(ViolaWWW\). )S
0 -222 M
0 -239 M
0 -13 R
(ViolaWWW is what most people equate with "Viola". It's a convenient association,)S
0 -258 M
0 -13 R
(but it is important to keep in mind that ViolaWWW \(the Viola-based World Wide)S
0 -277 M
0 -13 R
(Web browser\) is just an application, albeit the most significant, of the Viola)S
0 -296 M
0 -13 R
(toolkit/language system. And, that Viola can be used to build many other)S
0 -315 M
0 -13 R
(applications. )S
0 -334 M
0 -351 M
0 -13 R
(This paper will briefly gloss over the basics of the Viola )S
(engine)S
(, then briefly describe)S
0 -370 M
0 -13 R
(some Viola )S
(applications)S
(. The first section is a little thick with technical material, so)S
0 -389 M
0 -13 R
(if you're more interested in what Viola can do, read the Applications section first. )S
0 -408 M
0 -425 M
638 HR
0 -444 M
0 -461 M
0 -13 R
(At the basic level, the Viola system is a combination of the following major)S
0 -480 M
0 -13 R
(subsytems: )S
0 -499 M
48 -516 M
0 -9 R
3.454545 B
0 -4 R
(An object oriented system. )S
48 -535 M
0 -9 R
3.454545 B
0 -4 R
(A scripting language for programming the behaviour of objects. )S
48 -554 M
0 -9 R
3.454545 B
0 -4 R
(A graphical user interface toolkit. )S
48 -573 M
0 -9 R
3.454545 B
0 -4 R
(Special applications supporting libraries, such as for XPM, GIF, and WWW. )S
48 -592 M
0 -609 M
BF 24 SF
0 -20 R
(The Object Orientation Support -- Classes and)S
0 -637 M
0 -20 R
(Objects)S
0 -665 M
0 -682 M
RF 17 SF
0 -13 R
(The basic motivation for an object model is to control complexity: to provide a)S
0 -701 M
0 -13 R
(relatively simple way of data encapsualization; for improving the size scalability and)S
0 -720 M
0 -13 R
(reusability. )S
0 -739 M
0 -756 M
0 -13 R
(The single inheritance classing model used in viola defines the basic types, or)S
0 -775 M
0 -13 R
("classes", of object instances. Many of these predefined class types happen to be GUI)S
0 -794 M
0 -13 R
(oriented, because of the current application emphasis on hypermedia. But, many)S
0 -813 M
0 -13 R
(classes are non-visual and have nothing to do with GUIs. )S
0 -832 M
0 -849 M
0 -13 R
(An object model is enforced to control complexity: to provide a relatively simple)S
showpage restore
%%Page: 2 2
save
NP
RF 17 SF
0 0 M
0 -13 R
(way of data encapsualization; for improving the scalability and reusability of viola)S
0 -19 M
0 -13 R
(applications; for network distribution of applications \(distintive objects as)S
0 -38 M
0 -13 R
(addressable resources\); and for security \(for confining operating scope of imported)S
0 -57 M
0 -13 R
(objects\). )S
0 -76 M
0 -93 M
0 -13 R
(Shown below is the Viola class hierarchy tree. Note that "cosmic" class is the root of)S
0 -112 M
0 -13 R
(the hierarchy. )S
0 -131 M
0 -148 M
20 dict begin
/pix 520 string def
gsave currentpoint 460 sub translate 0 2 translate 520 460 scale
/cmap 4 string def
currentfile cmap readhexstring
cc 66 f2 00
pop pop
/rlecmapimage {
/buffer 1 string def
/rgbval 3 string def
/block 384 string def
{ currentfile buffer readhexstring pop
/bcount exch 0 get store
bcount 128 ge
{
0 1 bcount 128 sub
{ currentfile buffer readhexstring pop pop
/rgbval cmap buffer 0 get 1 getinterval store
block exch rgbval putinterval
} for
block 0 bcount 127 sub getinterval
}
{
currentfile buffer readhexstring pop pop
/rgbval cmap buffer 0 get 1 getinterval store
0 1 bcount { block exch rgbval putinterval } for
block 0 bcount 1 add getinterval
} ifelse
}
image
} bind def
520 460 8
[520 0 0 -460 0 460]
rlecmapimage
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f007f000700
7f007f007f003e0033011400
7f007f007f003e003101820201001300
3a0042017f007f00400033011400
3a0042017f007f00400002012d0283010201001300
3a004001820201007f007f003f0002012e0201011400
3a0002013d0201017f007f00400002012d0283010201001300
3a0002013c0283010201007f007f003f0002012e0201011400
3a0002012a02810302100201017f007f00400002012d0283010201001300
3a0002012a028103020f0283010201007f007f003f000201050282030203810302810203810302
02020303020282030203010302028103020202810302060201011400
3a0002013d0201017f007f00400002010502010301020103010281030281020381030281020381
0302810203810302810203810302820203020202810302050283010201001300
3a0002010802030303020303030203030202820302038103028102038103020102810302010203
03090283010201007f007f003f0002010502810302010281030201028103028202030202028103
02820203020202810302820203020202810302060201011400
3a0002010702010301020103010201030102010301028103020202810302810203810302810203
8103028202030282020302810203810302810203810302080201017f007f004000020105028103
020102810302010281030281020304030102810302020281030282020302020281030205028301
0201001300
3a0002010702810302050281030202028103028202030205028103020102810302010281030282
020302820203020c0283010201007f007f003f0002010502810302010281030201028103028202
030205028103020202810302820203020202810302060201011400
3a0002010702810302050281030202028103020102030302028103020102810302010281030282
020302820203020d0201017f007f00400002010502810302010281030201028103028202030205
028103020202810302820203020202810302050283010201001300
3a0002010702810302050281030202028103020402010301028103020102810302010281030282
020302820203020c0283010201007f007f003f0002010502810302010281030201028103028102
03810302810203810302820203020202810302810203810302810203810302060201011400
3a0002010702810302020281030282020302020281030205028103028202030201028103020102
81030282020302820203020202810302080201017f007f00400002010502810302010281030201
0281030201020303020281030202028103020102020382020302050283010201001300
3a0002010702010301020103010201030102010301028103020202810302820203020102810302
010281030282020302810203810302810203810302070283010201007f007f003f0002012e0201
011400
3a0002010802030303020303030203030202810302010281030201028103028202030201020303
0a0201017f007f00400002012d0283010201001300
3a0002013c0283010201007f007f003f0002012e0201011400
3a0002013d0201017f007f0040000301b002010201020102010201020102010201020102010201
0201020102010201020102010201020102010201020102010201001300
3a0002013c0283010201007f007f003f00b1010201020102010201020102010201020102010201
0201020102010201020102010201020102010201020102010201020102820201001300
3a000301bd02010201020102010201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201020102010201020102018101007f007f003e008103
0132011400
3a00c3010201020102010201020102010201020102010201020102010201020102010201020102
01020102010201020102010201020102010201020102010201020102010201007f007f003b0002
034900
3a0042017f007f003a0001034c00
6c008103007f007f00470001034e00
6d0001037f007f00430002035000
6f008103007f007f003f0001035300
700001037f007f003c0001030d0034011200
72008103007f007f00370002030f0034011200
730001037f007f003400010312003201820201001100
75008103007f007f0030000103140002012f0201011200
760001037f007f002c000203160002012e0283010201001100
78008103007f007f00280001031900020111028103028202030208028103020d0201011200
790001037f007f00250001031b00020111028103028202030208028103020c0283010201001100
7b008103007f007f00200002031d00020111028103020b028103020d0201011200
7c0001037f007f001d000103200002010d02020382020302820203020102030302028103020c02
83010201001100
7e008103007f007f0019000103220002010c020103010201030102810302810203810302810203
810302820203020d0201011200
7f0001037f007f0015000203240002010c02810302020281030282020302050281030282020302
0c0283010201001100
7f0001008103007f007f0011000103270002010c02810302020281030282020302010204030102
8103020d0201011200
7f00020001037f007f000e000103290002010c0281030202028103028202030281020381030201
02810302820203020c0283010201001100
7f0004008103007f007f00090002032b0002010c02810302020281030282020302820203020202
810302820203020d0201011200
7f0005008103007f007f00060001032e0002010c02010301020103010281030281020381030281
0203810302820203020c0283010201001100
7f00060001037f007f0003000103300002010d0202038202030282020302010202038102038303
0203020d0201011200
7f0008008103007f007e000203320002012e0283010201001100
7f00090001037f007b000103350002012f0201011200
7f000b008103007f00770001033500010302012e0283010201001100
7f000c0001037f00730002033400020301000301af020102010201020102010201020102010201
0201020102010201020102010201020102010201020102010201020102018101001100
7f000e008103007f006f000103340002030400b501020102010201020102010201020102010201
02010201020102010201020102010201020102010201020102010201020102010201001100
7f000f0001037f006c00010333000203070034011200
7f0011008103007f0067000203310003035200
7f00120001037f0064000103310002035600
7f0014008103007f0060000103300002035900
7f00150001037f005c0002032f0002035c00
7f0017008103007f00580001032f0002035f00
7f00180001037f00550001032d00030319003d010a00
7f001a008103007f00500002032c0002031d003b01820201000900
7f001b0001037f004d0001032c00020320003d010a00
7f00030054017f00100001032b00020323000201370283010201000900
7f00030054017f000d0002032a00020326000201380201010a00
7f0003005201820201007f000a000103290003032900020126028103020e0283010201000900
7f00030002014f0201017f0009000103280002032d000201120281030211028103020f0201010a
00
7f00030002014e0283010201007f00060001032700020330000201120281030211028103020e02
83010201000900
7f00030002013402810302180201017f000400020326000203330002010b020303010203030102
030303020303020281030201028103020b0201010a00
7f00030002013402810302170283010201007f000100010326000203360002010a028103020202
81030282020302010201030102010301020103010201030102810302820203020b028301020100
0900
7f00030002014f0201017f0081000381030023000303390002010a028103020502810302060281
030282020302050283030203020d0201010a00
7f0003000201100202038202030201020303020282030203010303020303020282030203830302
030201020303110283010201007c000203230002033d0002010b02030302028103020202040301
02810302050201030e0283010201000900
7f00030002010f0201030102010301020103010201030102010301020103010201030102010301
0201030202810302810203810302810203810302100201017b00010323000203400002010e0201
03010281030201020103020281030282020302050283030203020d0201010a00
7f00030002010f0281030202028103028202030202028103028202030202028103028202030202
0281030282020302020281030282020302140283010201007800010322000203430002010f0281
0302820203020102810302020281030282020302020281030282020302820203020b0283010201
000900
7f00030002010f0281030202028103028102030403010281030202028103028102030403010281
0302020281030282020302150201017600020321000203460002010a0281030202028103028202
030201020103010201030102010301020103010281030201028103020b0201010a00
7f00030002010f0281030202028103028202030205028103020202810302820203020502810302
020281030282020302140283010201007300010320000303490002010b02030303020103010202
03810203810302810203020302028103020202810302090283010201000900
7f00030002010f0281030202028103028202030205028103020202810302820203020502810302
020281030282020302020281030210020101720001031f0002034a0002030201380201010a00
7f00030002010f0201030102010301020103010201030102810302020281030281020381030281
02038103028202030202028103028102038103028102038103020f0283010201006e0002031e00
02034800040302000201370283010201000900
7f0003000201100202038202030201020303020281030202028103020102030302028103020202
81030201020303120201016d0001031e0002034600040307000201380201010a00
7f00030002011402810302370283010201006a0001031d000203430005030c000301ba02010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201000900
7f00030002010f0201030102010339020101680002031b000303410004031200bb010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
020102010201020102010201020102820201000900
7f00030002011002030339028301020100650001031b0002034000040317003d010a00
7f0003000301cf0201020102010201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201810100630001031a0002033e0004036500
7f000300d501020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
0201020102010201020102010060000203190002033c0004036a00
7f00030054015f00010318000303390005036f00
7f003e0001037500010317000203380004037500
7f00400081030070000203160002033600040330003f010900
7f00410001036d000103160002033400040335003d01820201000800
7f0043008103006900010315000203320004033a003f010900
7f00440001036500020313000303300004033f000201390283010201000800
7f00460081030061000103130002032e000503440002013a0201010900
7f00470001035e000103120002032c0004034a0002011502810302050281030219028301020100
0800
7f00490081030059000203110002032a0004034f000201150281030205028103021a0201010900
7f004a000103560001031100020328000403540002011502810302050281030219028301020100
0800
7f004c000103520001030f00030326000403590002010802820302038303020302020281030283
020302030103020282030203010303020303020282030203810302070201010900
7f004e008103004d0002030e000203250004035e00020108020103020281030202028103028102
038103028102038103028102038103028102038103028102038103028102038103028102038103
02080283010201000800
7f004f0001034a0001030e00020322000503630002010802810302020281030202028103028202
03020202810302820203020202810302820203020202810302820203020a0201010900
7f005100810300460001030d000203200004036900020108028103020202810302020281030282
020302020281030282020302020281030281020304030102810302090283010201000800
7f0052000103420002030c0002031e0004036e0002010802810302020281030202028103028202
030202028103028202030202028103028202030205028103020a0201010900
7f0054008103003e0001030b0003031c0004036900090302010802810302020281030202028103
02820203020202810302820203020202810302820203020502810302090283010201000800
7f00550001033b0001030a0002031b00040362000b030900020108028103020202010301020103
01020103010201030102010301020103010201030102010301028103020a0201010900
7f0057008103003600020309000203190004035b000b0315000201080281030203020203820203
02830203020301030202820302030103030203030202810302090283010201000800
7f005800010333000103090002031600050354000b03210002013a0201010900
7f005a008103002f00010308000203140004034e000b032d000201390283010201000800
7f005b0001032b000203060003031200040347000b03390002013a0201010900
7f005d0081030027000103060002031100040340000b0345000301bc0201020102010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
02010201020102010201000800
7f0050003e018103000e0004033a000a035100bd01020102010201020102010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
01020102820201000800
7f0050003e010a00050333000b035c003f010900
7f0050003c0182020100040004032d000b037f003200
7f005000020139020101810003030326000b037f003e00
7f005000020138028401020103001e000b037f004a00
7f005000020111020203090281030205028103021002010114000b037f005600
7f0050000201100281030282020302080281030205028103020f02830102010007000b037f0062
00
7f005000020110028103020b0281030205028103021002010108037f0023003d010c00
7f00500002010f0202038202030201020303020281030201020203820203020f0283010201007f
002b003b01820201000b00
7f0050000201100281030282020302810203810302810203810302820203028102038103028102
03810302100201017f002c003d010c00
7f0050000201100281030282020302820203020202810302820203028202030202028103020f02
83010201007f002b000201370283010201000b00
7f0050000201100281030282020302810203040301028103028202030202028103021002010111
037f001a000201380201010c00
7f00500002011002810302820203028202030205028103028202030202028103020f0283010201
0010002103780002011202810302820203020502810302170283010201000b00
7f0050000201100281030282020302820203020502810302820203020202810302100201013300
2103560002011202810302820203020502810302180201010c00
7f0050000201100281030282020302810203810302810203810302820203028102038103028102
038103020f028301020100540020033500020112028103020802810302170283010201000b00
7f0050000201100281030282020302010203030202810302010202038202030210020101030372
002103130002010b02030302028103028202030201020203820203020102030302028203020381
03020a0201010c00
7f005000020138028301020100020006037f000d00130302010a02810302020281030282020302
820203028102038103028102038103028102038103028102038103028102038103020b02830102
01000b00
7f0050000201390201010a0006037f001a0002010a028103020502810302820203028202030202
02810302820203020202810302820203020d0201010c00
7f005000020138028301020100100005037f00140002010b020303020281030282020302820203
020202810302810203040301028103020c0283010201000b00
7f0050000301b90201020102010201020102010201020102010201020102010201020102010201
0201020102010201020102010201020102010201020102010201810103810300140006037f000d
0002010e0201030102810302820203028202030202028103028202030205028103020d0201010c
00
7f005000bf01020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201020102010201020102010201020100810003020318000603
7f00060002010f0281030282020302820203028202030202028103028202030205028103020c02
83010201000b00
7f0050003e01050002031c0005037f0081000101010a0281030202028103028202030282020302
810203810302810203810302810203810302810203810302820203020d0201010c00
7f005d00010307008103000400810300040081030004000103070002030e0003031e0006037900
02010b02030302028103028202030201020203820203020102030302028103020c028301020100
0b00
7f005c008103000700810300050081030004008103000600810300080001031000030321000603
72000201380201010c00
7f005b008103000700810300060081030005008103000600810300090001031200020325000503
6c000201370283010201000b00
7f005900010309008103000600810300050081030007008103000a000103130003032700060365
000201380201010c00
7f00580081030009008103000700810300060081030007008103000b000103150002032b000603
5e000301ba02010201020102010201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201020102010201000b00
7f0057008103000a0081030007008103000700810300070001030c000103160003032e00050358
00bb01020102010201020102010201020102010201020102010201020102010201020102010201
0201020102010201020102010201020102010201020102820201000b00
7f00550001030b008103000800810300070081030009008103000c000103180003033000060351
003d010c00
7f0054008103000b008103000900810300080081030009008103000d0001031a00020334000603
7f001500
7f0053008103000c00810300090081030008008103000a008103000e0001031b00030337000503
7f000f00
7f00510001030d008103000a0081030009008103000a008103000f0001031d000303390006037f
000800
7f0050008103000d008103000b0081030009008103000b000103100001031f0002033d0006037f
000100
7f004e0001030f008103000b008103000a008103000c008103001000010320000303400005037b
00
7f004d008103000f008103000b008103000c008103000c00810300110001032200030342000603
20003d011500
7f004c0081030010008103000b008103000c008103000d00810300120002032300020346000603
19003b01820201001400
7f004a00010311008103000c008103000d008103000d0081030014000103240003034900050313
003d011500
7f00490081030011008103000d008103000d008103000e00010315000103260002034c0006030c
000201370283010201001400
7f00480081030012008103000d008103000e008103000f0081030015000103270003034f000603
05000201380201011500
7f004600010313008103000e008103000e00810300100081030016000103290003035200050302
01370283010201001400
7f00450081030013008103000f008103000f008103001000810300170001032b00020355000201
1002810302250201011500
7f00440081030014008103000f008103000f008103001100810300180001032c00030351000201
1002810302240283010201001400
7f004200010315008103001000810300100081030011000103190001032e0003034d0002010f02
030383020302038103028102030203010281030203028103020f0201011500
7f004100810300160081030010008103001100810300120081030019000103300002034a000201
10028103020102010302020103010201038202030203028103020e0283010201001400
7f003f00010317008103001100810300110081030013008103001a000103310003034600020110
0281030201028103020702810302820203020102810302100201011500
7f003e0081030017008103001200810300120081030013008103001b0001033300020343000201
1002810302010281030203020403010281030201028103020f0283010201001400
7f003d0081030018008103001200810300120081030014008103001c000103340003033f000201
10028103020102810302020201030202810302010281030282020302100201011500
7f003b000103190081030013008103001300810300140001031d000203350003033b0002011002
81030201028103020202810302020281030201028303020302100283010201001400
7f003a008103001a008103001300810300130081030016008103001e0001033700020338000201
10028103020102810302020201030102010303020103120201011500
7f0039008103001a008103001400810300140081030016008103001f0001033800030334000201
1102010382020302030202038102038103020102810302110283010201001400
7f00370001031b00810300150081030015008103001600810300200001033a0003033000020123
02810302120201011500
7f0036008103001c00810300150081030015008103001700810300210001033c0002032d000201
22020103120283010201001400
7f0035008103001c008103001600810300160081030017000103220001033d0003032900020121
020103140201011500
7f00330001031d00810300170081030016008103001900810300220001033f00030325000301ba
020102010201020102010201020102010201020102010201020102010201020102010201020102
01020102010201020102010201020102010201001400
7f0032008103001e0081030017008103001700810300190081030023000103410002032200bb01
020102010201020102010201020102010201020102010201020102010201020102010201020102
0102010201020102010201020102010201020102820201001400
7f00300001031f00810300180081030017008103001a0081030024000103420003031e003d0115
00
7f002f008103002000810300180081030018008103001a0081030025000103440002036f00
7f002e008103002000810300190081030019008103001a00010326000103450003036b00
7f002c00010321008103001a0081030019008103001c0081030026000103470003036700
7f002b0081030022008103001a008103001a008103001c0081030027000203480002036400
7f002a0081030022008103001b008103001a008103001d00810300290001034900020347011900
7f002800010324008103001b008103001b008103001d008103002a0001034a0045018202010018
00
7f00270081030024008103001c008103001b008103001e0001032b000103480047011900
7f00260081030024008103001d008103001c008103001f008103002b0001034600020141028301
0201001800
7f002400010326008103001d008103001c0081030020008103002c000103440002014202010119
00
7f00230081030026008103001e008103001d0081030020008103002d0001034200020120028103
021e0283010201001800
7f002100010327008103001f008103001e0081030020008103002e000103400002012002810302
10028103020c0201011900
7f00200081030028008103001f008103001e00810300210001032f0001033e0002013302810302
0b0283010201001800
7f001f00810300280081030020008103001f0081030022008103002f0001033c0002010b028203
02030103020282030203810302810203020302028103020102030303020303010203030b020101
1900
7f001d0001032a0081030020008103001f008103002300810300300001033a0002010b02010301
020103010201030202010301020103010281030281020381030281020381030281020381030281
0203810302820203020b0283010201001800
7f001c008103002a0081030021008103002000810300230081030031000103380002010b028103
020202810302820203020202810302020281030282020302820203020202810302820203020502
8103020c0201011900
7f001b008103002a0081030022008103002000810300240081030032000203350002010b028103
020202810302820203020202810302020281030282020302810203040301028103020502810302
0b0283010201001800
7f00190001032c00810300220081030021008103002400010334000103330002010b0281030202
0281030282020302020281030202028103028202030282020302050281030205028103020c0201
011900
7f0018008103002c0081030023008103002200810300250081030034000103310002010b028103
020202810302820203020202810302020281030282020302820203020502810302020281030282
0203020b0283010201001800
7f0017008103002c00810300240081030022008103002600810300350001032f0002010b020103
010201030102810302020201030102010301028103028102038103028102038103028102038103
02810203810302820203020c0201011900
7f00150001032e00810300240081030023008103002600810300360001032d0002010b02820302
03010302028103020302030302028103020102030303020303030201030a0283010201001800
7f0014008103002e00810300250081030023008103002700810300370001032b0002010b028103
0212028103021f0201011900
7f0013008103002f00810300250081030024008103002700010338000103290002010b02810302
12028103021e0283010201001800
7f0011000103300081030026008103002400810300290081030038000103270002010b02810302
10020103210201011900
7f00100081030030008103002700810300250081030029008103003900010325000301c4020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
0201020102010201020102010201020102010201020102010201001800
7f000e0001033200810300260081030026008103002a008103003a0001032300c5010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
02010201020102010201020102010201020102010201020102820201001800
7f000d008103003200810300270081030027008103002a008103003b000103210047011900
7f000c008103003300810300270081030028008103002a0001033c0001037f000100
7f000a0001033400810300280081030028008103002c008103003c0001037f00
7f0009008103003400810300290081030029008103002c008103003d0002037c00
7f0008008103003500810300290081030029008103002d008103003f0001037a00
7f000600010336008103002a008103002a008103002d00810300320048013f00
7f00050081030036008103002b008103002a008103002e000103310048013f00
7f00040081030037008103002b008103002b008103002f008103002f004601820201003e00
7f000200010338008103002c008103002c008103002f008103002e000201430201013f00
7f00010081030039008103002c008103002c0081030030008103002d000201420283010201003e
00
7f0001033a008103002d008103002d0081030030008103002c0002010d02050305020203150281
03020e0201013f00
7e008103003a008103002e008103002d00810300310001032b0002010d02810302020201030202
01030202010313028103020d0283010201003e00
7d008103003b008103002e008103002e008103003200810300290002010d028103020302810302
0102810302030281030212028103020e0201013f00
7b0001033c008103002f008103002e008103003300810300280002010d02810302030281030282
020302080203030202820302038103028102030103820203020d0283010201003e00
7a008103003d008103002f008103002f008103003300810300270002010d028103020302810302
8202030207020103010201030102010302020103010201030f0201013f00
79008103003d00810300300081030030008103003300810300260002010d02050302028103020c
0281030282020302020281030202028103020d0283010201003e00
770001033e008103003100810300300081030034000103250002010d0281030203028103028202
0302080204030102810302020281030202028103020e0201013f00
76008103003f00810300310081030031008103003500810300230002010d028103020302810302
8202030207020103020281030282020302020281030202028103020d0283010201003e00
75008103003f00810300320081030031008103003600810300220002010d028103020302810302
0102810302030281030282020302020281030282020302020281030202028103020e0201013f00
730001034000810300330081030032008103003600810300210002010d02810302030281030201
020103020201030102010301020103010281030202020103010201030e0283010201003e00
72008103004100810300330081030032008103003700810300200002010d020503050202030402
0203810203830302030203020203820203020e0201013f00
70000103420081030034008103003300810300370001031f000201420283010201003e00
6f0081030043008103003400810300330081030039008103001d000201430201013f00
6e0081030043008103003500810300340081030039008103001c000201420283010201003e00
6c00010344008103003600810300350081030039008103001b000301c302010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201020102018101003e00
6b008103004500810300360081030035008103003a008103001a00c90102010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
0102010201020102010201020102010201020102010201003e00
6a008103004500810300370081030036008103003a000103190048013f00
680001034600810300380081030036008103003c008103007f002000
67008103004700810300380081030037008103003c008103007f001f00
66008103004700810300390081030037008103003d008103007f001e00
640001034900810300390081030038008103003d008103007f001d00
630081030049008103003a0081030039008103003d0001037f001c00
3400410137008103003b0081030039008103003f008103007f001a00
34003f018202010036008103003b008103003a00810300270049016900
3400410136008103003c008103003a0081030027004701820201006800
340002013b02830102010035008103003c008103003b00810300260049016900
340002013c02010135008103003d008103003b0081030026000201430283010201006800
340002011502810302820203022002830102010033008103003e008103003c0081030025000201
440201016900
3400020115028103028202030210028103020e02010134008103003e008103003d008103002400
02010e0206030402020315028103020d0283010201006800
34000201150281030213028103020d02830102010032008103003f008103003d00810300240002
010e02810302070201030202010313028103020e0201016900
340002010e020303020281030282020302010203030202820302030103010203030d0201013200
81030040008103003e00810300230002010e028103020702810302030281030212028103020d02
83010201006800
340002010d02010301020103010281030282020302810203810302810203810302810203810302
810203810302820203020d028301020100310081030040008103003e00810300230002010e0281
03020602810302080203030202820302038103028102030103820203020e0201016900
340002010d02810302050281030282020302820203020202810302820203020202810302820203
020e020101310081030041008103003f00810300220002010e0281030206028103020702010301
0201030102010302020103010201030e0283010201006800
340002010d02810302050281030282020302810203040301028103020202810302820203020d02
8301020100300081030041008103003f00810300220002010e02050302028103020c0281030282
020302020281030202028103020e0201016900
340002010d028103020502810302820203028202030205028103020202810302820203020e0201
01300081030042008103004000810300210002010e028103020602810302080204030102810302
020281030202028103020d0283010201006800
340002010d02810302020281030282020302820203028202030205028103020202810302820203
020d0283010201002e0081030042008103004100810300210002010e0281030206028103020702
0103020281030282020302020281030202028103020e0201016900
340002010d02010301020103010281030282020302810203810302810203810302820203020202
810302820203020e0201012f0081030042008103004200810300200002010e0281030207028103
02030281030282020302020281030282020302020281030202028103020d0283010201006800
340002010e0203030202810302820203020102030302028103020202810302010201030c028301
0201002d00810300430081030043008103001f0002010e02810302070201030202010301020103
01020103010281030202020103010201030f0201016900
340002013c0201012e00810300430081030043008103001f0002010e0281030209020203040202
03810203830302030203020203820203020d0283010201006800
340002013b0283010201002c00810300440081030044008103001e000201440201016900
340002013c0201012c00810300450081030044008103001e000201430283010201006800
34000301be02010201020102010201020102010201020102010201020102010201020102010201
02010201020102010201020102010201020102010201020102010201002b008103004500810300
45008103001d000201440201016900
3400bf010201020102010201020102010201020102010201020102010201020102010201020102
01020102010201020102010201020102010201020102010201020102820201002a008103004600
81030045008103001d000301c60201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
0102010201006800
340041012a00810300470081030046008103001c00c70102010201020102010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
01020102010201020102010201020102820201006800
450001030a008103004c00810300470081030047008103001b0049016900
44008103000a008103002d003401340081030047008103007f004f00
43008103000b008103002d003401340081030048008103007f004e00
42008103000c008103002d00320182020100330081030048008103007f004e00
400001030e008103002d0002012f02010118003a012c008103007f004d00
3f008103000e008103002e0002012e02830102010017003a010f0047017f002400
3e008103000f008103002e0002012f02010118003801820201000e004501820201007f002300
3d0081030010008103002e0002012e02830102010017000201350201010f0047017f002400
3c0081030011008103002e0002012f02010118000201340283010201000e000201410283010201
007f002300
3a00010313008103002e0002010702820302030103030203030202820302030103030203030902
8301020100170002010a0281030204028103028102030403020281030207028103020b0201010f
000201420201017f002400
390081030013008103002f00020107020103010201030102010301020103010201030102010301
0201030102010309020101180002010a0281030204028103028202030202020103010281030207
028103020a0283010201000e000201110281030204028103028102030403020281030207028103
02100283010201007f002300
380081030014008103002f00020107028103020202810302050281030282020302020281030282
020302020281030207028301020100170002010b02810302020281030201028103020302810302
810203810302050201030c0201010f000201110281030204028103028202030202020103010281
03020702810302110201017f002400
370081030015008103002f00020107028103020202810302010204030102810302020281030281
0203040309020101180002010c0281030282020302020281030203028103028402030203020302
83030203020a0283010201000e0002011202810302020281030201028103020302810302810203
81030205020103110283010201007f002300
3500010317008103002f0002010702810302020281030281020381030201028103028202030202
02810302820203020c028301020100170002010d02010304028103020202010301028303020302
030283030203020b0201010f000201130281030282020302020281030203028103028402030203
0203028303020302110201017f002400
340081030018008103002f00020107028103020202810302820203020202810302820203020202
810302820203020d020101180002010d0201030402050302028103028202030201028103028202
03020a0283010201000e0002011402010304028103020302810302840203020302030283030203
02100283010201007f002300
0a003b010700810300300002010702010301020103010201030102010301028103020202810302
81020381030281020381030207028301020100170002010c028103028202030202028103020602
810302820203020102810302820203020b0201010f000201140201030402050302028103028202
0302010281030282020302110201017f002400
0a0039018202010006008103003000020107028203020301030302020381020383030203020202
810302010203030a020101180002010b0281030202028103020102810302060281030201028303
02030201028103020a0283010201000e0002011302810302820203020202810302030281030282
02030282020302010281030282020302100283010201007f002300
0a003b01070081030030000201070281030224028301020100170002010b028103020202810302
010281030206028103020102830302030201028103020b0201010f000201120281030202028103
020102810302030281030282020302010283030203020102810302110201017f002400
0a00020135028301020100060081030030000201070281030225020101180002010a0281030204
02810302820203020602810302020281030202028103020a0283010201000e0002011202810302
02028103020102810302030281030282020302010283030203020102810302100283010201007f
002300
0a00020136020101070081030030000201070281030224028301020100170002010a0281030204
02810302820203020602810302020281030202028103020b0201010f0002011102810302040281
03028202030203028103028202030202028103020202810302110201017f002400
0a0002011d0281030215028301020100050081030031000301af02010201020102010201020102
010201020102010201020102010201020102010201020102010201020102010201020181010017
000201340283010201000e00020111028103020402810302810203040302028103020202810302
0202810302100283010201007f002300
0a0002011d028103020c028103020702010106008103003100b501020102010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
010017000201350201010f000201420201017f002400
0a0002011d028103020c0281030206028301020100050081030031003401180002013402830102
01000e000201410283010201007f002300
0a0002010602030303020303030203030202810302010281030201020303010203030602010106
008103004100810300030081030003008103002f000301b5020102010201020102010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
8101000e000201420201017f002400
0a0002010502810302020281030281020381030281020381030281020381030281020381030282
020302820203020102010301020103010281030206028301020100050081030040008103000400
81030003008103002f00bb01020102010201020102010201020102010201020102010201020102
01020102010201020102010201020102010201020102010201020102010201000e000301c40201
020102010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201020102010201020102010201007f002300
0a0002010502810302050281030202028103028202030205028303020302020281030202028103
02820203020702010105008103004000810300040081030004008103002f003a010f00c5010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
01020102010201020102010201020102010201020102010201020102820201007f002300
0a0002010602030302028103020202810302820203020502010304020503010281030206028301
02010004008103004000810300040081030004008103004e00810300290047017f002400
0a0002010902010301028103020202810302820203020502830302030202028103020502810302
0702010105008103003f00810300050081030005008103004d008103005300810300130001037f
002a00
0a0002010a02810302820203020202810302820203020202810302820203028202030201028103
0205028103020602830102010004008103003e00810300060081030005008103004d0081030053
00810300150002037f002700
0a0002010502810302020281030281020381030281020381030281020381030281020381030282
0203020102810302810203810302810203810302820203020702010105008103003d0081030006
0081030006008103004d008103005400810300170001037f002500
0a0002010602030303020303030203030202810302020281030281020302030302010305028301
02010003008103003e00810300060081030006008103004d008103005400810300190002037f00
2200
0a0002013602010104008103003d00810300070081030006008103004e0081030054008103001b
0001037f002000
0a0002013502830102010003008103003c00810300080081030007008103004d00810300550081
03001c0002037f001d00
0a0002013602010104008103003b00810300080081030008008103004d0081030055008103001f
0001037f001b00
0a000301b802010201020102010201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201020102010003008103003a00810300090081030008
008103004d008103005600810300200002037f001800
0a00b9010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201020102010201028202010002008103003b00810300090081
030008008103004d008103005600810300230001037f001600
0a003b0103008103003a008103000a0081030009008103004d008103005600810300240002037f
001300
4a0081030039008103000a008103000a008103004d008103005600810300270001037f001100
4a0081030038008103000b008103000a008103004d008103005700810300280002037f000e00
490081030039008103000b008103000a008103004d0081030058008103002a0001037f000c00
490081030038008103000c008103000a008103004d0081030058008103002c0001037f000a00
2f00310121008103000c008103000c008103004d0081030058008103002d0002037f000700
2f002f01820201001f008103000d008103000c008103004d008103005800810300300001037f00
0500
2f00310120008103000d008103000c008103004d008103005900810300310002037f000200
2f0002012b0283010201001e008103000e008103000c008103004d008103005900810300340001
037f000000
2f0002012c0201011e008103000e008103000d008103004d008103005a00810300350002037d00
2f0002012b0283010201001c008103000f008103000e008103004d008103005900810300380001
037b00
2f0002010e028103020102810302170201011d008103000f008103000e008103004d008103005a
00810300390002037800
2f0002010e028103020102810302160283010201001b0081030010008103000e008103004d0081
03005b008103003b0001037600
2f0002010d02080304028103020e0201011b0081030010008103000f008103004d008103005b00
8103003d0002037300
2f0002010e0281030201028103028202030203028103020d028301020100190081030011008103
0010008103004d008103005b008103003f0001037100
2f0002010e028103020102810302010281030201028103020f0201011a00810300110081030010
008103004d008103005b00810300410002036e00
2f0002010e028103020102810302010281030201028103020e0283010201001800810300120081
030010008103004d008103005c00810300430001036c00
2f0002010e0281030201028103020202810302820203020f020101180081030012008103001100
8103004d008103005c00810300450002036900
2f0002010e028103020102810302020283030203020f0283010201001600810300130081030011
008103004d008103005d00810300410040012e00
2f0002010e02810302010281030203020103110201011700810300130081030012008103004d00
8103005d00810300400040012e00
2f0002010f02010301020103020281030210028301020100150081030014008103001200810300
4d008103005d0081030040003e01820201002d00
2f0002011802810302110201011500810300140081030013008103004d008103005e008103003f
0002013b0201012e00
2f00020117020103110283010201001300810300150081030013008103004d008103005e008103
003f0002013a0283010201002d00
2f00020116020103130201011300810300160081030014008103004c008103005f008103003e00
02012602810302120201012e00
2f000301ae02010201020102010201020102010201020102010201020102010201020102010201
020102010201020102010201001200810300150081030015008103004d008103005e008103003e
0002010a028103021902810302110283010201002d00
2f00af010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102820201001100810300160081030015008103004d008103005f0081
03003d0002010a028103021902810302120201012e00
2f0031011100810300170081030015008103004d0081030060008103003c000201090203030102
03030302020382020302010202038202030282020302010203030b0283010201002d00
7200810300180081030015008103004d0081030060008103003c0002010a028103020102010301
0201030102010301020103010201030102010301028103028102038103028102038103020a0201
012e00
7200810300170081030017008103004c0081030061008103003b0002010a028103020102810302
020281030282020302020281030282020302020281030282020302820203020202810302090283
010201002d00
7100810300180081030017008103004d0081030060008103003b0002010a028103020102810302
02028103028202030202028103028202030202028103028202030281020304030b0201012e00
7000810300190081030017008103004d0081030061008103003a0002010a028103020102810302
020281030282020302020281030282020302020281030282020302820203020e0283010201002d
00
6f008103001a0081030017008103004d0081030038006001040002010a02810302010281030202
0281030282020302020281030282020302020281030282020302820203020f0201012e00
4c003701060081030019008103004c0081030038006001040002010a0281030201020103010201
030102010301020103010201030102010301028103028102038103028102038103020902830102
01002d00
4c0035018202010005008203000138012e0081030038005e0182020100030002010b0201030102
03030302020382020302010202038202030282020302010203030c0201012e00
4c0037010600820300013601820201002e00810300370002015b020101040002011b0281030205
02810302140283010201002d00
4c00020131028301020100050082030001380102006001050002015a0283010201000300020116
020103010201030102010301020103160201012e00
4c0002013202010105008103008100010101330283010201000100600105000201090281030204
0281030281020304030202810302070281030281020304032b0201010400020117020303030203
03160283010201002d00
4c000201050281030229028301020100040081030081000101013402010102005e018202010004
000201090281030204028103028202030202020103010281030207028103028202030202020103
090281030201028103021902830102010003000301bb0201020102010201020102010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
020102018101002d00
4c00020105028103022a0201010500810300810001010133028301020100010002015b02010105
0002010a0281030202028103020102810302030281030281020381030205020103010281030203
02810302080281030201028103021a0201010400c1010201020102010201020102010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
0201020102010201002d00
4c0002010502810302290283010201000400810300810001010134020101020002015a02830102
0100040002010b0281030282020302020281030203028103028402030203020302830302030282
02030203028103028202030202028203020306030102030302028203020301030a028301020100
030040012e00
4c0002010502820302030103020282030203010303020303020282030203010303020303070201
010400810300010002013302830102010001000201090281030204028103028102030403020281
0302070281030281020304032b020101050002010c020103040281030203028103028402030203
020302830302030282020302030281030282020302020281030282020302010281030201020103
0102010301020103010201030a0201012b008103004600
4c0002010502010301020103010201030102010301020103010201030102010301020103010201
030102010305028301020100030081030001000201060281030202028103028302030203010303
020303020282030203010303020303080201010200020109028103020402810302820203020202
010301028103020702810302820203020202010309028103020102810302190283010201000400
02010c020103040205030202810302820203020102810302820203028102030403020281030202
028103028202030201028103020102810302020281030282020302020281030208028301020100
2b008103004500
4c0002010502810302020281030282020302020281030205028103028202030202028103028202
030202028103020502010104008103000100020106028103020202810302810203810302810203
810302810203810302810203810302810203810302810203810302810203810302810203810302
05028301020100010002010a028103020202810302010281030203028103028102038103020502
010301028103020302810302080281030201028103021a020101050002010b0281030282020302
020281030203028103028202030282020302010281030282020302820203020302810302820203
02020281030282020302010281030201028103020202810302820203020202810302090201012d
008103004400
4c0002010502810302020281030282020302020281030201020403010281030202028103028102
030403050283010201000300810300010002010602810302020281030282020302020281030205
0281030282020302020281030282020302020281030206020101020002010b0281030282020302
020281030203028103028402030203020302830302030282020302030281030282020302020282
03020306030102030302028203020301030a028301020100040002010a02810302020281030201
028103020302810302820203020102830302030201028103028202030203028103028202030202
028103028202030201028103020102810302020281030282020302020281030208028301020100
2c008103004400
4c0002010502810302020281030282020302020281030281020381030201028103028202030202
02810302820203020a020101030081030002000201070281030282020302010281030202028103
020102040301028103020202810302810203040306028301020100010002010c02010304028103
020202010301028303020302030283030203028202030203028103028202030202028103028202
03020102810302010201030102010301020103010201030a020101050002010a02810302020281
030201028103020302810302820203020102830302030201028103028202030203028103028202
030202028103028202030201028103020102810302020281030282020302020281030209020101
2e008103004300
4c0002010502810302020281030282020302020281030282020302020281030282020302020281
030282020302090283010201000200810300020002010702810302820203020102810302020281
03028102038103020102810302820203020202810302820203020b020101020002010c02010304
020503020281030282020302010281030282020302810203040302028103020202810302820203
020102810302010281030202028103028202030202028103020802830102010004000201090281
030204028103028202030203028103028202030202028103020202810302820203020302810302
810203810302810203810302820203020102810302010201030102010301028103020202810302
080283010201002e008103004200
4c0002010502810302020281030281020381030281020381030281020381030281020381030282
020302020281030281020381030281020381030205020101030081030002000201070281030282
02030201028103020202810302820203020202810302820203020202810302820203020a028301
020100010002010b02810302820203020202810302060281030282020302010281030282020302
820203020302810302820203020202810302820203020102810302010281030202028103028202
030202028103020902010105000201090281030204028103028102030403020281030202028103
020202810302810203040303020203820203020102010301020103010203030202810302020281
0302090201012f008103004200
4c0002010502810302020281030283020302030103030202038102038303020302020281030201
020303060283010201000200810300020002010802010303020103010201030102010301020103
0102810302020281030281020381030281020381030206020101020002010a0281030202028103
020102810302060281030201028303020302010281030282020302030281030282020302020281
030282020302010281030201028103020202810302820203020202810302080283010201000400
02015a0283010201002f008103004100
4c0002010d02810302220201010200810300030002010802010303028203020301030302020381
0203830302030202028103020102030307028301020100010002010a0281030202028103020102
810302060281030201028303020302010281030282020302030281030282020302020281030282
02030201028103020102810302020281030282020302020281030209020101050002015b020101
31008103004000
4c0002010d02810302210283010201000100810300030002010e02810302230201010200020109
028103020402810302820203020602810302020281030202028103028202030203028103028102
038103028102038103028202030201028103020102010301020103010281030202028103020802
8301020100040002015a02830102010031008103003f00
4c0002010d02810302220201010200810300030002010e02810302220283010201000100020109
028103020402810302820203020602810302020281030202028103028102030403030202038202
0302010201030102010301020303020281030202028103020902010105000301db020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
020102010201020181010031008103003f00
4c000301b402010201020102010201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201000100810300030002010e02810302230201010200
02015a0283010201000400e1010201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201020102010201020102010201020102010032008103003e00
4c00b5010201020102010201020102010201020102010201020102010201020102010201020102
010201020102010201020102010201020102820201008200030004000301b60201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
0102010201020100010002015b0201010500600134008103003d00
4c00370101008103000400b7010201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201020102010201020102010282020100010002015a02
83010201007f001a008103003d00
7f0006008103000400390102000301db0201020102010201020102010201020102010201020102
010201020102010201020102010201020102010201020102010201020102010201020102010201
0201020102010201020102010201020102010201020102010201020102018101007f001b008103
003c00
7f0006008103004100e10102010201020102010201020102010201020102010201020102010201
020102010201020102010201020102010201020102010201020102010201020102010201020102
0102010201020102010201020102010201020102010201020102010201007f001c008103003b00