-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuel.fodg
2785 lines (2784 loc) · 223 KB
/
fuel.fodg
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
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.graphics">
<office:meta><meta:initial-creator>Art Zemon</meta:initial-creator><meta:creation-date>2016-07-24T17:03:41.936731635</meta:creation-date><dc:date>2018-03-04T10:07:19.729710696</dc:date><dc:creator>Art Zemon</dc:creator><meta:editing-duration>PT5H4M5S</meta:editing-duration><meta:editing-cycles>69</meta:editing-cycles><meta:generator>LibreOffice/5.1.6.2$Linux_X86_64 LibreOffice_project/10m0$Build-2</meta:generator><meta:printed-by>Art Zemon</meta:printed-by><meta:print-date>2017-12-07T18:53:32.514007763</meta:print-date><meta:document-statistic meta:object-count="55"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="VisibleAreaTop" config:type="int">3250</config:config-item>
<config:config-item config:name="VisibleAreaLeft" config:type="int">10240</config:config-item>
<config:config-item config:name="VisibleAreaWidth" config:type="int">29510</config:config-item>
<config:config-item config:name="VisibleAreaHeight" config:type="int">19115</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
<config:config-item config:name="GridIsVisible" config:type="boolean">false</config:config-item>
<config:config-item config:name="GridIsFront" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToGrid" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToPageMargins" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsSnapToSnapLines" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsSnapToObjectFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsSnapToObjectPoints" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPlusHandlesAlwaysVisible" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsFrameDragSingles" config:type="boolean">true</config:config-item>
<config:config-item config:name="EliminatePolyPointLimitAngle" config:type="int">1500</config:config-item>
<config:config-item config:name="IsEliminatePolyPoints" config:type="boolean">false</config:config-item>
<config:config-item config:name="VisibleLayers" config:type="base64Binary">//////////////////////////////////////////8=</config:config-item>
<config:config-item config:name="PrintableLayers" config:type="base64Binary">//////////////////////////////////////////8=</config:config-item>
<config:config-item config:name="LockedLayers" config:type="base64Binary"/>
<config:config-item config:name="NoAttribs" config:type="boolean">false</config:config-item>
<config:config-item config:name="NoColors" config:type="boolean">true</config:config-item>
<config:config-item config:name="RulerIsVisible" config:type="boolean">true</config:config-item>
<config:config-item config:name="PageKind" config:type="short">0</config:config-item>
<config:config-item config:name="SelectedPage" config:type="short">0</config:config-item>
<config:config-item config:name="IsLayerMode" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsDoubleClickTextEdit" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsClickChangeRotation" config:type="boolean">true</config:config-item>
<config:config-item config:name="SlidesPerRow" config:type="short">4</config:config-item>
<config:config-item config:name="EditMode" config:type="int">0</config:config-item>
<config:config-item config:name="VisibleAreaTop" config:type="int">-441</config:config-item>
<config:config-item config:name="VisibleAreaLeft" config:type="int">-646</config:config-item>
<config:config-item config:name="VisibleAreaWidth" config:type="int">44618</config:config-item>
<config:config-item config:name="VisibleAreaHeight" config:type="int">28900</config:config-item>
<config:config-item config:name="GridCoarseWidth" config:type="int">1270</config:config-item>
<config:config-item config:name="GridCoarseHeight" config:type="int">1270</config:config-item>
<config:config-item config:name="GridFineWidth" config:type="int">127</config:config-item>
<config:config-item config:name="GridFineHeight" config:type="int">127</config:config-item>
<config:config-item config:name="GridSnapWidthXNumerator" config:type="int">127</config:config-item>
<config:config-item config:name="GridSnapWidthXDenominator" config:type="int">1</config:config-item>
<config:config-item config:name="GridSnapWidthYNumerator" config:type="int">127</config:config-item>
<config:config-item config:name="GridSnapWidthYDenominator" config:type="int">1</config:config-item>
<config:config-item config:name="IsAngleSnapEnabled" config:type="boolean">false</config:config-item>
<config:config-item config:name="SnapAngle" config:type="int">1500</config:config-item>
<config:config-item config:name="ZoomOnPage" config:type="boolean">true</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-indexed>
</config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="BitmapTableURL" config:type="string">$(user)/config/standard.sob</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="ColorTableURL" config:type="string">$(user)/config/standard.soc</config:config-item>
<config:config-item config:name="DashTableURL" config:type="string">$(user)/config/standard.sod</config:config-item>
<config:config-item config:name="DefaultTabStop" config:type="int">1270</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="ForbiddenCharacters">
<config:config-item-map-entry>
<config:config-item config:name="Language" config:type="string">en</config:config-item>
<config:config-item config:name="Country" config:type="string">US</config:config-item>
<config:config-item config:name="Variant" config:type="string"/>
<config:config-item config:name="BeginLine" config:type="string"/>
<config:config-item config:name="EndLine" config:type="string"/>
</config:config-item-map-entry>
</config:config-item-map-indexed>
<config:config-item config:name="GradientTableURL" config:type="string">$(user)/config/standard.sog</config:config-item>
<config:config-item config:name="HatchTableURL" config:type="string">$(user)/config/standard.soh</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintBooklet" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintBookletBack" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsPrintBookletFront" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsPrintDate" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintFitPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintHiddenPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsPrintPageName" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintTilePage" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsPrintTime" config:type="boolean">false</config:config-item>
<config:config-item config:name="LineEndTableURL" config:type="string">$(user)/config/standard.soe</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="MeasureUnit" config:type="short">7</config:config-item>
<config:config-item config:name="PageNumberFormat" config:type="int">4</config:config-item>
<config:config-item config:name="ParagraphSummation" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintQuality" config:type="int">0</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">low-resolution</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">Officejet-7000-E809aCMD</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">rQH+/09mZmljZWpldC03MDAwLUU4MDlhQ01EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpPZmZpY2VqZXQtNzAwMC1FODA5YUNNRAAAAAAWAAMAzwAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9T2ZmaWNlamV0LTcwMDAtRTgwOWFDTUQKb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkxldHRlcgBJbnB1dFNsb3Q6QXV0bwAAEgBDT01QQVRfRFVQTEVYX01PREUOAERVUExFWF9VTktOT1dO</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="ScaleDenominator" config:type="int">1</config:config-item>
<config:config-item config:name="ScaleNumerator" config:type="int">1</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
</config:config-item-set>
</office:settings>
<office:scripts>
<office:script script:language="ooo:Basic">
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink">
<ooo:library-embedded ooo:name="Standard"/>
</ooo:libraries>
</office:script>
</office:scripts>
<office:font-face-decls>
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans'" style:font-adornments="Regular" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans2" svg:font-family="'Liberation Sans'" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Noto Sans CJK SC Regular" svg:font-family="'Noto Sans CJK SC Regular'" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:styles>
<draw:gradient draw:name="Gradient_20_2" draw:display-name="Gradient 2" draw:style="linear" draw:start-color="#3465a4" draw:end-color="#ffffff" draw:start-intensity="100%" draw:end-intensity="100%" draw:angle="0" draw:border="0%"/>
<draw:gradient draw:name="Gradient_20_3" draw:display-name="Gradient 3" draw:style="linear" draw:start-color="#3465a4" draw:end-color="#ffffff" draw:start-intensity="100%" draw:end-intensity="100%" draw:angle="0" draw:border="0%"/>
<draw:hatch draw:name="Hatching_20_1" draw:display-name="Hatching 1" draw:style="single" draw:color="#3465a4" draw:distance="0.02cm" draw:rotation="0"/>
<draw:fill-image draw:name="Bitmape_20_1" draw:display-name="Bitmape 1">
<office:binary-data>iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAADAFBMVEUAAAAAAIAAgAAAgICA
AACAAICAgACAgIDAwMAAAP8A/wAA////AAD/AP///wD///8AAAAzAABmAACZAADMAAD/AAAA
MwAzMwBmMwCZMwDMMwD/MwAAZgAzZgBmZgCZZgDMZgD/ZgAAmQAzmQBmmQCZmQDMmQD/mQAA
zAAzzABmzACZzADMzAD/zAAA/wAz/wBm/wCZ/wDM/wD//wAAADMzADNmADOZADPMADP/ADMA
MzMzMzNmMzOZMzPMMzP/MzMAZjMzZjNmZjOZZjPMZjP/ZjMAmTMzmTNmmTOZmTPMmTP/mTMA
zDMzzDNmzDOZzDPMzDP/zDMA/zMz/zNm/zOZ/zPM/zP//zMAAGYzAGZmAGaZAGbMAGb/AGYA
M2YzM2ZmM2aZM2bMM2b/M2YAZmYzZmZmZmaZZmbMZmb/ZmYAmWYzmWZmmWaZmWbMmWb/mWYA
zGYzzGZmzGaZzGbMzGb/zGYA/2Yz/2Zm/2aZ/2bM/2b//2YAAJkzAJlmAJmZAJnMAJn/AJkA
M5kzM5lmM5mZM5nMM5n/M5kAZpkzZplmZpmZZpnMZpn/ZpkAmZkzmZlmmZmZmZnMmZn/mZkA
zJkzzJlmzJmZzJnMzJn/zJkA/5kz/5lm/5mZ/5nM/5n//5kAAMwzAMxmAMyZAMzMAMz/AMwA
M8wzM8xmM8yZM8zMM8z/M8wAZswzZsxmZsyZZszMZsz/ZswAmcwzmcxmmcyZmczMmcz/mcwA
zMwzzMxmzMyZzMzMzMz/zMwA/8wz/8xm/8yZ/8zM/8z//8wAAP8zAP9mAP+ZAP/MAP//AP8A
M/8zM/9mM/+ZM//MM///M/8AZv8zZv9mZv+ZZv/MZv//Zv8Amf8zmf9mmf+Zmf/Mmf//mf8A
zP8zzP9mzP+ZzP/MzP//zP8A//8z//9m//+Z///M//////8AuP8AAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4
0k8YAAAAFklEQVR4nGPgJwAYRhWMKhhVMFIVAADLVTwBNA/g8AAAAABJRU5ErkJggg==
</office:binary-data>
</draw:fill-image>
<draw:marker draw:name="Arrow" svg:viewBox="0 0 20 30" svg:d="M10 0l-10 30h20z"/>
<draw:marker draw:name="Arrowheads_20_17" draw:display-name="Arrowheads 17" svg:viewBox="0 0 20 30" svg:d="M10 0l-10 30h20z"/>
<draw:marker draw:name="Arrowheads_20_18" draw:display-name="Arrowheads 18" svg:viewBox="0 0 20 30" svg:d="M10 0l-10 30h20z"/>
<draw:marker draw:name="Circle" svg:viewBox="0 0 1131 1131" svg:d="M462 1118l-102-29-102-51-93-72-72-93-51-102-29-102-13-105 13-102 29-106 51-102 72-89 93-72 102-50 102-34 106-9 101 9 106 34 98 50 93 72 72 89 51 102 29 106 13 102-13 105-29 102-51 102-72 93-93 72-98 51-106 29-101 13z"/>
<draw:stroke-dash draw:name="Dashed_20__28_var_29_" draw:display-name="Dashed (var)" draw:style="rect" draw:dots1="1" draw:dots1-length="197%" draw:distance="127%"/>
<draw:stroke-dash draw:name="Dashed_20__28_var_29__20_1" draw:display-name="Dashed (var) 1" draw:style="rect" draw:dots1="1" draw:dots1-length="0.02cm" draw:dots2="1" draw:dots2-length="0.02cm" draw:distance="0.02cm"/>
<style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:punctuation-wrap="simple" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Serif" fo:font-size="24pt" fo:language="en" fo:country="US" style:font-name-asian="DejaVu Sans" style:font-size-asian="24pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans" style:font-size-complex="24pt" style:language-complex="hi" style:country-complex="IN"/>
</style:default-style>
<style:style style:name="standard" style:family="graphic">
<style:graphic-properties draw:stroke="solid" draw:stroke-dash="Dashed_20__28_var_29__20_1" svg:stroke-width="0.051cm" svg:stroke-color="#000000" draw:marker-start-width="0.279cm" draw:marker-start-center="false" draw:marker-end-width="0.279cm" draw:marker-end-center="false" draw:fill="none" draw:fill-color="#729fcf" draw:fill-image-width="0cm" draw:fill-image-height="0cm" draw:textarea-horizontal-align="justify" fo:padding-top="0.125cm" fo:padding-bottom="0.125cm" fo:padding-left="0.25cm" fo:padding-right="0.25cm" draw:shadow="hidden" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080">
<text:list-style style:name="standard">
<text:list-level-style-bullet text:level="1" text:bullet-char="●">
<style:list-level-properties text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:bullet-char="●">
<style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:bullet-char="●">
<style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:bullet-char="●">
<style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:bullet-char="●">
<style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:bullet-char="●">
<style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:bullet-char="●">
<style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:bullet-char="●">
<style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:bullet-char="●">
<style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:bullet-char="●">
<style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
</text:list-style>
</style:graphic-properties>
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-indent="0cm"/>
<style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="9pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="18pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="FreeSans" style:font-family-complex="FreeSans" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="18pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="objectwitharrow" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="solid" svg:stroke-width="0.15cm" svg:stroke-color="#000000" draw:marker-start="Arrow" draw:marker-start-width="0.7cm" draw:marker-start-center="true" draw:marker-end-width="0.3cm"/>
</style:style>
<style:style style:name="objectwithshadow" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
</style:style>
<style:style style:name="objectwithoutfill" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties svg:stroke-color="#000000" draw:fill="none"/>
</style:style>
<style:style style:name="Object_20_with_20_no_20_fill_20_and_20_no_20_line" style:display-name="Object with no fill and no line" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
</style:style>
<style:style style:name="text" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
</style:style>
<style:style style:name="textbody" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:text-properties fo:font-size="16pt"/>
</style:style>
<style:style style:name="textbodyjustfied" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:text-align="justify"/>
</style:style>
<style:style style:name="textbodyindent" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0.6cm"/>
</style:style>
<style:style style:name="title" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="14pt"/>
</style:style>
<style:style style:name="title1" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="solid" draw:fill-color="#008080" draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="24pt"/>
</style:style>
<style:style style:name="title2" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties svg:stroke-width="0.05cm" draw:fill-color="#ffcc99" draw:shadow="visible" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080"/>
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.2cm" fo:margin-top="0.1cm" fo:margin-bottom="0.1cm" fo:text-align="center" fo:text-indent="0cm"/>
<style:text-properties fo:font-size="36pt"/>
</style:style>
<style:style style:name="headline" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
<style:text-properties fo:font-size="24pt"/>
</style:style>
<style:style style:name="headline1" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
<style:text-properties fo:font-size="18pt" fo:font-weight="bold"/>
</style:style>
<style:style style:name="headline2" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:paragraph-properties fo:margin-top="0.42cm" fo:margin-bottom="0.21cm"/>
<style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold"/>
</style:style>
<style:style style:name="measure" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="solid" svg:stroke-color="#000000" draw:marker-start="Arrow" draw:marker-start-width="0.2cm" draw:marker-end="Arrow" draw:marker-end-width="0.2cm" draw:fill="none" draw:show-unit="true"/>
<style:text-properties fo:font-size="12pt"/>
</style:style>
<style:style style:name="Title_20_Box" style:display-name="Title Box" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="14pt"/>
</style:style>
<style:style style:name="Boxed_20_Text" style:display-name="Boxed Text" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="Unboxed_20_Text" style:display-name="Unboxed Text" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties draw:stroke="none" draw:stroke-dash="Dashed_20__28_var_29__20_1" svg:stroke-width="0.051cm" svg:stroke-color="#ffffff" draw:marker-start-width="0.279cm" draw:marker-start-center="false" draw:marker-end-width="0.279cm" draw:marker-end-center="false" svg:stroke-opacity="100%" draw:stroke-linejoin="round" svg:stroke-linecap="butt" draw:fill="solid" draw:fill-color="#ffffff" draw:secondary-fill-color="#729fcf" draw:gradient-step-count="0" draw:fill-hatch-solid="false" draw:opacity="100%" draw:fill-image-width="0cm" draw:fill-image-height="0cm" style:repeat="repeat" draw:fill-image-ref-point-x="0%" draw:fill-image-ref-point-y="0%" draw:fill-image-ref-point="center" draw:tile-repeat-offset="0% vertical" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="top" draw:auto-grow-height="false" draw:auto-grow-width="true" draw:fit-to-size="false" draw:fit-to-contour="false" fo:max-height="0cm" fo:max-width="0cm" fo:min-height="0cm" fo:min-width="0cm" fo:padding-top="0.125cm" fo:padding-bottom="0.125cm" fo:padding-left="0.25cm" fo:padding-right="0.25cm" fo:wrap-option="no-wrap" draw:shadow="hidden" draw:shadow-offset-x="0.2cm" draw:shadow-offset-y="0.2cm" draw:shadow-color="#808080" draw:shadow-opacity="100%" text:animation="none" text:animation-direction="left" text:animation-start-inside="false" text:animation-stop-inside="false" text:animation-repeat="0" text:animation-delay="P0D" text:animation-steps="0cm">
<text:list-style style:name="Unboxed_20_Text" style:display-name="Unboxed Text">
<text:list-level-style-bullet text:level="1" text:bullet-char="●">
<style:list-level-properties text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:bullet-char="●">
<style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:bullet-char="●">
<style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:bullet-char="●">
<style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:bullet-char="●">
<style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:bullet-char="●">
<style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:bullet-char="●">
<style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:bullet-char="●">
<style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:bullet-char="●">
<style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:bullet-char="●">
<style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
</text:list-style>
</style:graphic-properties>
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" fo:line-height="100%" fo:text-align="start" fo:text-indent="0cm" style:text-autospace="ideograph-alpha" style:punctuation-wrap="simple" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Liberation Sans2" fo:font-family="'Liberation Sans'" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="9pt" fo:letter-spacing="normal" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:letter-kerning="true" style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="18pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="FreeSans" style:font-family-complex="FreeSans" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="18pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:text-scale="100%" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color" fo:hyphenate="false"/>
</style:style>
<style:style style:name="Small_20_Unboxed_20_Text" style:display-name="Small Unboxed Text" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties draw:stroke="none" draw:fill="none"/>
<style:text-properties fo:font-size="7pt"/>
</style:style>
<style:style style:name="Switch_20_Label" style:display-name="Switch Label" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties svg:stroke-width="0cm" draw:marker-start-width="0.203cm" draw:marker-end-width="0.203cm" draw:fill="solid" draw:fill-color="#ffffff" draw:fill-gradient-name="Gradient_20_2" draw:fill-hatch-name="Hatching_20_1" draw:fill-image-name="Bitmape_20_1" draw:shadow="visible" draw:shadow-offset-x="0.051cm" draw:shadow-offset-y="0.051cm"/>
</style:style>
<style:style style:name="Wire_20_Label_20_Text" style:display-name="Wire Label Text" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties svg:stroke-color="#009900" draw:fill-gradient-name="Gradient_20_3" draw:fill-hatch-name="Hatching_20_1" draw:fill-image-name="Bitmape_20_1"/>
<style:text-properties fo:color="#009900"/>
</style:style>
</office:styles>
<office:automatic-styles>
<style:page-layout style:name="PM0">
<style:page-layout-properties fo:margin-top="0.635cm" fo:margin-bottom="0.635cm" fo:margin-left="0.635cm" fo:margin-right="0.635cm" fo:page-width="43.18cm" fo:page-height="27.94cm" style:print-orientation="landscape"/>
</style:page-layout>
<style:style style:name="dp1" style:family="drawing-page">
<style:drawing-page-properties draw:background-size="border" draw:fill="none"/>
</style:style>
<style:style style:name="dp2" style:family="drawing-page"/>
<style:style style:name="gr1" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr2" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties draw:textarea-vertical-align="middle" style:protect="size"/>
</style:style>
<style:style style:name="gr3" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties draw:textarea-vertical-align="middle" style:protect="size"/>
</style:style>
<style:style style:name="gr4" style:family="graphic" style:parent-style-name="Boxed_20_Text">
<style:graphic-properties draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr5" style:family="graphic" style:parent-style-name="Title_20_Box">
<style:graphic-properties fo:min-height="2.29cm" fo:min-width="7.12cm"/>
</style:style>
<style:style style:name="gr6" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties draw:stroke="none" svg:stroke-width="0cm" svg:stroke-color="#ffffff" draw:marker-start-width="0.203cm" draw:marker-end-width="0.203cm" draw:fill="none" fo:min-width="1.424cm"/>
</style:style>
<style:style style:name="gr7" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr8" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" svg:stroke-color="#000000" draw:fill="none" draw:fill-color="#ffffff" draw:textarea-horizontal-align="left" draw:auto-grow-height="true" draw:auto-grow-width="true" fo:min-height="0.357cm" fo:min-width="0.459cm"/>
</style:style>
<style:style style:name="gr9" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:fill="solid" draw:fill-color="#dddddd" draw:textarea-vertical-align="middle" draw:auto-grow-height="false"/>
</style:style>
<style:style style:name="gr10" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr11" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:marker-start="" draw:marker-start-width="0.203cm" draw:textarea-vertical-align="middle" draw:shadow="hidden" draw:shadow-offset-x="0.203cm" draw:shadow-offset-y="0.203cm"/>
</style:style>
<style:style style:name="gr12" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:marker-start="" draw:marker-start-width="0.203cm" draw:marker-end="" draw:textarea-vertical-align="middle" draw:shadow="hidden" draw:shadow-offset-x="0.203cm" draw:shadow-offset-y="0.203cm"/>
</style:style>
<style:style style:name="gr13" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:stroke="none" draw:fill="solid" draw:fill-color="#000000" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false" fo:min-height="0cm" fo:min-width="0cm"/>
</style:style>
<style:style style:name="gr14" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties draw:marker-end="Circle" draw:fill="none" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr15" style:family="graphic" style:parent-style-name="Small_20_Unboxed_20_Text">
<style:graphic-properties fo:min-width="0.535cm"/>
</style:style>
<style:style style:name="gr16" style:family="graphic" style:parent-style-name="objectwithoutfill">
<style:graphic-properties draw:fill="none" draw:textarea-vertical-align="middle"/>
</style:style>
<style:style style:name="gr17" style:family="graphic" style:parent-style-name="Unboxed_20_Text">
<style:graphic-properties fo:min-width="0.527cm"/>
</style:style>
<style:style style:name="gr18" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.442cm"/>
</style:style>
<style:style style:name="gr19" style:family="graphic" style:parent-style-name="standard">
<style:graphic-properties draw:fill-color="#ffffff" draw:textarea-horizontal-align="justify" draw:textarea-vertical-align="middle" draw:auto-grow-height="false" fo:min-height="1.465cm" fo:min-width="1.215cm"/>
</style:style>
<style:style style:name="gr20" style:family="graphic" style:parent-style-name="Object_20_with_20_no_20_fill_20_and_20_no_20_line">
<style:graphic-properties draw:textarea-vertical-align="middle" draw:color-mode="standard" draw:luminance="0%" draw:contrast="0%" draw:gamma="100%" draw:red="0%" draw:green="0%" draw:blue="0%" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:image-opacity="100%" style:mirror="none"/>
</style:style>
<style:style style:name="gr21" style:family="graphic" style:parent-style-name="Wire_20_Label_20_Text">
<style:graphic-properties draw:auto-grow-width="true" fo:min-height="0cm" fo:min-width="1.323cm"/>
</style:style>
<style:style style:name="P1" style:family="paragraph">
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="P2" style:family="paragraph">
<loext:graphic-properties draw:fill="none"/>
</style:style>
<style:style style:name="P3" style:family="paragraph">
<loext:graphic-properties draw:fill="none" draw:fill-color="#ffffff"/>
</style:style>
<style:style style:name="P4" style:family="paragraph">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#dddddd"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="P5" style:family="paragraph">
<loext:graphic-properties draw:fill="solid" draw:fill-color="#000000"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="P6" style:family="paragraph">
<loext:graphic-properties draw:fill="none"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="P7" style:family="paragraph">
<loext:graphic-properties draw:fill-color="#ffffff"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<text:list-style style:name="L1">
<text:list-level-style-bullet text:level="1" text:bullet-char="●">
<style:list-level-properties text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:bullet-char="●">
<style:list-level-properties text:space-before="0.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:bullet-char="●">
<style:list-level-properties text:space-before="1.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:bullet-char="●">
<style:list-level-properties text:space-before="1.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:bullet-char="●">
<style:list-level-properties text:space-before="2.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:bullet-char="●">
<style:list-level-properties text:space-before="3cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:bullet-char="●">
<style:list-level-properties text:space-before="3.6cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:bullet-char="●">
<style:list-level-properties text:space-before="4.2cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:bullet-char="●">
<style:list-level-properties text:space-before="4.8cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:bullet-char="●">
<style:list-level-properties text:space-before="5.4cm" text:min-label-width="0.6cm"/>
<style:text-properties fo:font-family="StarSymbol" style:use-window-font-color="true" fo:font-size="45%"/>
</text:list-level-style-bullet>
</text:list-style>
</office:automatic-styles>
<office:master-styles>
<draw:layer-set>
<draw:layer draw:name="layout"/>
<draw:layer draw:name="background"/>
<draw:layer draw:name="backgroundobjects"/>
<draw:layer draw:name="controls"/>
<draw:layer draw:name="measurelines"/>
</draw:layer-set>
<style:master-page style:name="Default" style:page-layout-name="PM0" draw:style-name="dp1">
<draw:custom-shape draw:style-name="gr1" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="38.1cm" svg:height="25.4cm" svg:x="2.54cm" svg:y="1.27cm">
<text:p/>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:g>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="33.02cm" svg:y="24.13cm">
<text:p text:style-name="P1">Drawing #</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="33.02cm" svg:y="24.765cm">
<text:p text:style-name="P1">Modified</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="33.02cm" svg:y="25.4cm">
<text:p text:style-name="P1">Created</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="33.02cm" svg:y="26.035cm">
<text:p text:style-name="P1">Drawn By</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="36.83cm" svg:y="24.13cm">
<text:p text:style-name="P1">FUEL-3</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr3" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="36.83cm" svg:y="24.765cm">
<text:p/>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="36.83cm" svg:y="25.4cm">
<text:p text:style-name="P1">3/4/2018</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr2" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="3.81cm" svg:height="0.635cm" svg:x="36.83cm" svg:y="26.035cm">
<text:p text:style-name="P1">Art Zemon</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr4" draw:text-style-name="P1" draw:layer="backgroundobjects" svg:width="15.24cm" svg:height="0.762cm" svg:x="25.4cm" svg:y="23.368cm">
<text:p text:style-name="P1">Bede BD-4C N2468Z</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr5" draw:layer="backgroundobjects" svg:width="7.62cm" svg:height="2.54cm" svg:x="25.4cm" svg:y="24.13cm">
<text:p>Fuel</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:type="rectangle" draw:enhanced-path="M 0 0 L 21600 0 21600 21600 0 21600 0 0 Z N"/>
</draw:custom-shape>
</draw:g>
</style:master-page>
</office:master-styles>
<office:body>
<office:drawing>
<draw:page draw:name="page1" draw:style-name="dp2" draw:master-page-name="Default">
<draw:frame draw:style-name="gr6" draw:text-style-name="P2" draw:layer="layout" svg:width="1.924cm" svg:height="0.607cm" svg:x="37.724cm" svg:y="24.771cm">
<draw:text-box>
<text:p>-</text:p>
</draw:text-box>
</draw:frame>
<draw:g>
<draw:custom-shape draw:style-name="gr7" draw:text-style-name="P1" draw:layer="layout" svg:width="1.27cm" svg:height="0.889cm" draw:transform="rotate (-3.14159265358979) translate (31.744cm 8.112cm)">
<text:p/>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:glue-points="?f0 0 ?f1 10800 0 21600 10800 21600 21600 21600 ?f7 10800" draw:text-areas="?f1 10800 ?f2 18000 ?f3 7200 ?f4 21600" draw:type="isosceles-triangle" draw:modifiers="10800" draw:enhanced-path="M ?f0 0 L 21600 21600 0 21600 Z N">
<draw:equation draw:name="f0" draw:formula="$0 "/>
<draw:equation draw:name="f1" draw:formula="$0 /2"/>
<draw:equation draw:name="f2" draw:formula="?f1 +10800"/>
<draw:equation draw:name="f3" draw:formula="$0 *2/3"/>
<draw:equation draw:name="f4" draw:formula="?f3 +7200"/>
<draw:equation draw:name="f5" draw:formula="21600-?f0 "/>
<draw:equation draw:name="f6" draw:formula="?f5 /2"/>
<draw:equation draw:name="f7" draw:formula="21600-?f6 "/>
<draw:handle draw:handle-position="$0 top" draw:handle-range-x-minimum="0" draw:handle-range-x-maximum="21600"/>
</draw:enhanced-geometry>
</draw:custom-shape>
<draw:frame draw:style-name="gr8" draw:text-style-name="P3" draw:layer="layout" svg:width="0.959cm" svg:height="0.607cm" svg:x="30.647cm" svg:y="7.204cm">
<draw:text-box>
<text:p>PG</text:p>
</draw:text-box>
</draw:frame>
</draw:g>
<draw:custom-shape draw:style-name="gr9" draw:text-style-name="P4" draw:layer="layout" svg:width="5.08cm" svg:height="0.762cm" draw:transform="rotate (1.5707963267949) translate (7.178cm 7.994cm)">
<text:p text:style-name="P1">Main Power Bus</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:path-stretchpoint-x="10800" draw:path-stretchpoint-y="10800" draw:text-areas="?f3 ?f4 ?f5 ?f6" draw:type="round-rectangle" draw:modifiers="3600" draw:enhanced-path="M ?f7 0 X 0 ?f8 L 0 ?f9 Y ?f7 21600 L ?f10 21600 X 21600 ?f9 L 21600 ?f8 Y ?f10 0 Z N">
<draw:equation draw:name="f0" draw:formula="45"/>
<draw:equation draw:name="f1" draw:formula="$0 *sin(?f0 *(pi/180))"/>
<draw:equation draw:name="f2" draw:formula="?f1 *3163/7636"/>
<draw:equation draw:name="f3" draw:formula="left+?f2 "/>
<draw:equation draw:name="f4" draw:formula="top+?f2 "/>
<draw:equation draw:name="f5" draw:formula="right-?f2 "/>
<draw:equation draw:name="f6" draw:formula="bottom-?f2 "/>
<draw:equation draw:name="f7" draw:formula="left+$0 "/>
<draw:equation draw:name="f8" draw:formula="top+$0 "/>
<draw:equation draw:name="f9" draw:formula="bottom-$0 "/>
<draw:equation draw:name="f10" draw:formula="right-$0 "/>
<draw:handle draw:handle-position="$0 top" draw:handle-switched="true" draw:handle-range-x-minimum="0" draw:handle-range-x-maximum="10800"/>
</draw:enhanced-geometry>
</draw:custom-shape>
<draw:g>
<draw:g>
<draw:g>
<draw:line draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:x1="8.985cm" svg:y1="5.454cm" svg:x2="9.49cm" svg:y2="5.454cm">
<text:p/>
</draw:line>
<draw:line draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:x1="9.289cm" svg:y1="5.263cm" svg:x2="9.49cm" svg:y2="5.454cm">
<text:p/>
</draw:line>
<draw:line draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:x1="9.289cm" svg:y1="5.645cm" svg:x2="9.49cm" svg:y2="5.454cm">
<text:p/>
</draw:line>
</draw:g>
<draw:g>
<draw:line draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:x1="9.647cm" svg:y1="5.454cm" svg:x2="10.001cm" svg:y2="5.454cm">
<text:p/>
</draw:line>
<draw:line draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:x1="9.446cm" svg:y1="5.263cm" svg:x2="9.647cm" svg:y2="5.454cm">
<text:p/>
</draw:line>
<draw:line draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:x1="9.446cm" svg:y1="5.645cm" svg:x2="9.647cm" svg:y2="5.454cm">
<text:p/>
</draw:line>
</draw:g>
</draw:g>
<draw:g>
<draw:g>
<draw:path draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:width="0.361cm" svg:height="0.125cm" svg:x="8.114cm" svg:y="5.328cm" svg:viewBox="0 0 362 126" svg:d="M0 126c182-284 362 0 362 0">
<text:p/>
</draw:path>
<draw:path draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:width="0.361cm" svg:height="0.125cm" svg:x="8.478cm" svg:y="5.456cm" svg:viewBox="0 0 362 126" svg:d="M0 0c182 284 362 0 362 0">
<text:p/>
</draw:path>
</draw:g>
<draw:custom-shape draw:style-name="gr1" draw:text-style-name="P1" draw:layer="layout" svg:width="0.144cm" svg:height="0.15cm" svg:x="7.968cm" svg:y="5.38cm">
<text:p/>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:mirror-horizontal="false" draw:mirror-vertical="false" draw:glue-points="10800 0 3163 3163 0 10800 3163 18437 10800 21600 18437 18437 21600 10800 18437 3163" draw:text-areas="3163 3163 18437 18437" draw:type="ellipse" draw:enhanced-path="U 10800 10800 10800 10800 0 360 Z N"/>
</draw:custom-shape>
<draw:custom-shape draw:style-name="gr1" draw:text-style-name="P1" draw:layer="layout" svg:width="0.144cm" svg:height="0.15cm" svg:x="8.84cm" svg:y="5.38cm">
<text:p/>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:mirror-horizontal="false" draw:mirror-vertical="false" draw:glue-points="10800 0 3163 3163 0 10800 3163 18437 10800 21600 18437 18437 21600 10800 18437 3163" draw:text-areas="3163 3163 18437 18437" draw:type="ellipse" draw:enhanced-path="U 10800 10800 10800 10800 0 360 Z N"/>
</draw:custom-shape>
</draw:g>
</draw:g>
<draw:g>
<draw:g>
<draw:line draw:style-name="gr11" draw:text-style-name="P1" draw:layer="layout" svg:x1="17.561cm" svg:y1="5.465cm" svg:x2="18.323cm" svg:y2="5.465cm">
<text:p/>
</draw:line>
<draw:line draw:style-name="gr12" draw:text-style-name="P1" draw:layer="layout" svg:x1="20.209cm" svg:y1="5.465cm" svg:x2="19.447cm" svg:y2="5.465cm">
<text:p/>
</draw:line>
<draw:line draw:style-name="gr10" draw:text-style-name="P1" draw:layer="layout" svg:x1="18.323cm" svg:y1="5.466cm" svg:x2="19.307cm" svg:y2="4.898cm">
<text:p/>
</draw:line>
</draw:g>
<draw:custom-shape draw:style-name="gr13" draw:text-style-name="P5" draw:layer="layout" svg:width="0.254cm" svg:height="0.254cm" svg:x="17.447cm" svg:y="5.33cm">
<text:p/>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:glue-points="10800 0 3163 3163 0 10800 3163 18437 10800 21600 18437 18437 21600 10800 18437 3163" draw:text-areas="3163 3163 18437 18437" draw:type="ellipse" draw:enhanced-path="U 10800 10800 10800 10800 0 360 Z N"/>
</draw:custom-shape>
<draw:line draw:style-name="gr14" draw:text-style-name="P6" draw:layer="layout" svg:x1="20.119cm" svg:y1="5.465cm" svg:x2="21.188cm" svg:y2="5.465cm">
<text:p/>
</draw:line>
</draw:g>
<draw:frame draw:style-name="gr15" draw:layer="layout" svg:width="1.129cm" svg:height="0.963cm" svg:x="7.873cm" svg:y="4.53cm">
<draw:text-box>
<text:p>FUEL</text:p>
<text:p>7A</text:p>
</draw:text-box>
</draw:frame>
<draw:line draw:style-name="gr16" draw:text-style-name="P6" draw:layer="layout" svg:x1="9.954cm" svg:y1="5.449cm" svg:x2="17.592cm" svg:y2="5.449cm">
<text:p/>
</draw:line>
<draw:frame draw:style-name="gr17" draw:layer="layout" svg:width="1.086cm" svg:height="0.607cm" svg:x="12.768cm" svg:y="5.14cm">
<draw:text-box>
<text:p>Red</text:p>
</draw:text-box>
</draw:frame>
<draw:frame draw:style-name="gr18" draw:layer="layout" svg:width="1.942cm" svg:height="0.607cm" svg:x="12.34cm" svg:y="5.802cm">
<draw:text-box>
<text:p>FUEL-1-A</text:p>
</draw:text-box>
</draw:frame>
<draw:line draw:style-name="gr16" draw:text-style-name="P6" draw:layer="layout" svg:x1="21.153cm" svg:y1="5.482cm" svg:x2="23.938cm" svg:y2="5.482cm">
<text:p/>
</draw:line>
<draw:line draw:style-name="gr16" draw:text-style-name="P6" draw:layer="layout" svg:x1="31.109cm" svg:y1="5.479cm" svg:x2="31.109cm" svg:y2="7.212cm">
<text:p/>
</draw:line>
<draw:custom-shape draw:style-name="gr19" draw:text-style-name="P7" draw:layer="layout" svg:width="2.425cm" svg:height="2.425cm" svg:x="23.949cm" svg:y="4.27cm">
<text:p text:style-name="P1">Fuel Pump</text:p>
<draw:enhanced-geometry svg:viewBox="0 0 21600 21600" draw:glue-points="10800 0 3163 3163 0 10800 3163 18437 10800 21600 18437 18437 21600 10800 18437 3163" draw:text-areas="3163 3163 18437 18437" draw:type="ellipse" draw:enhanced-path="U 10800 10800 10800 10800 0 360 Z N"/>
</draw:custom-shape>
<draw:line draw:style-name="gr16" draw:text-style-name="P6" draw:layer="layout" svg:x1="26.383cm" svg:y1="5.482cm" svg:x2="31.136cm" svg:y2="5.482cm">
<text:p/>
</draw:line>
<draw:frame draw:style-name="gr17" draw:layer="layout" svg:width="1.086cm" svg:height="0.607cm" svg:x="21.987cm" svg:y="5.154cm">
<draw:text-box>
<text:p>Red</text:p>
</draw:text-box>
</draw:frame>
<draw:frame draw:style-name="gr18" draw:layer="layout" svg:width="1.942cm" svg:height="0.607cm" svg:x="21.559cm" svg:y="5.816cm">
<draw:text-box>
<text:p>FUEL-1-B</text:p>
</draw:text-box>
</draw:frame>
<draw:frame draw:style-name="gr17" draw:layer="layout" svg:width="1.285cm" svg:height="0.607cm" svg:x="28.054cm" svg:y="5.154cm">
<draw:text-box>
<text:p>Black</text:p>
</draw:text-box>
</draw:frame>
<draw:frame draw:style-name="gr18" draw:layer="layout" svg:width="1.942cm" svg:height="0.607cm" svg:x="27.725cm" svg:y="5.816cm">
<draw:text-box>
<text:p>FUEL-1-C</text:p>
</draw:text-box>
</draw:frame>
<draw:frame draw:style-name="gr20" draw:text-style-name="P1" draw:layer="layout" svg:width="16.215cm" svg:height="8.527cm" svg:x="10.243cm" svg:y="11.301cm">
<draw:image xlink:href="">
<office:binary-data>iVBORw0KGgoAAAANSUhEUgAAArgAAAFuCAYAAABqT2uAAAG1l0lEQVR4nOydB4AkRfXG38zs
3l4iHeGOJFlUJCoqSTERRSUpKooY/0aCCIoKEgTMIknFQFBQyaACJpScc85IuAiXw+5O+Pfv
9XyztX09u3vc3dzebn2wNzPd1dXV1dVdX7366r22WgKLiIiIiIiIiIiIGCJoW9YFiIiIiIiI
iIiIiFiSiAQ3IiIiIiIiIiJiSCES3IiIiIiIiIiIiCGFSHAjIiIiIiIiIiKGFCLBjYiIiIiI
iIiIGFKIBDciIiIiIiIiImJIIRLciIiIiIiIiIiIIYVIcCMiIiIilnvg0r1QKOTsSP4K1WR/
0Xxvob7JqsmXolnOIREREcsIisyQPLNmxZ5tPMNWXKTHNRLciIiIiIjlHpBbkdxeZNc7ymry
u5hub3SRkdxGRAw21BrPZPK8WnfyiLabP8oMUBfxeY0ENyIiIiJiSGAhcmvmVp+0c4Toptu9
v7TIbyMiBhvSZzMZkLq1tt0WJ9RuJLgREREREcs9RGyzMoVUlpCQ22rSYcJ1sQpV25Lv7Amm
QSMiIgYBqgtt8cFooWyLSlkjwY2IiIiIWO4hYhtacK+88kq74rIrratStWKhYrVqKU1LJ1po
S35XkrSLYyOKiIhYkijWilYppM9xKRl7jhrbZt8/5ce2wgor1mdhBj4gjQQ3IiIiImLIILTg
3nLLLXbuOb+x6phi0nHWpz4LaRdZqRasWFp25YyIiMhDzSq19Dmuzk0Gq8n3Y485zlZccUVb
1NmWSHAjIiIiIpZrhFbb8HtbW5tVEhJ74NEbWamUstlKQnJLtYIVSgndXXg2NCIiYhkD/W3H
yKLdd91ku/2q2QnJLaaD02pxkThuJLgREREREcs1wsVloQXXf1eKVi0X0unNWtWqbKuWkq+p
d4WowY2IGGyoWLlcTT0quF4eGRHkNkoUBjWa+mpswXlade6IiIiIViP/3ZZafkRkcRLmUoVC
SG6jGTciYrChUEhnXIoJ2e3xfxslCoMa4Uv4rrvusn/+85/+ByCgG220kb3nPe+x/fffvxch
/f73v9847rOf/ayNGzeu8fvpp5+2iy++2KrVqm//3Oc+58eFx+jc5AnIH2y44YZL50IjIiIi
IiIiIpYRIsFdRvjGN77RIKDh9Nq///1v+9WvfmWf//zn7ayzzuqVXoAY//nPf24cA8E96qij
fB/kGALM9vCYvPMDyPAvf/nLaN2NiIiIiIiIGDKIBHcZ4Ac/+IGTWxHbMPoO4Dukc5tttnEC
GoJ9F110kR8vUhtCeYTps9u0HUCmV1555YWsvRERERERERERyysiwW0xXnnlFTvllFP8O8Tz
TW96k1tjkQogVfjQhz5kG2ywga2yyiq9ZAjFYtElCCKr3/zmN91ay/EhgSVdryg+9X0QZWQJ
zzzzjJ8fq68A4caiyzkjIiIiIiIiIpZ3RILbIshK+69//cumT5/u2/iNFVY6WAgrBDgPkNvQ
GssnMoZ//OMfDULbzFoLOAf5sx8iKw2ujoFca1tERERERERExPKMSHBbBBFJLKehNEGkEl0t
ZDerg4XACiLJWHjJ5+6773ZpAcQ1RKinzZJefu+777690oLQohsRERERERERsTwjEtwWQj4a
Q8IpMjpjxgy37ipdM0ss29Hnvve97/XvyAvCfeHx/elvIyIiIiIiIiKGIiLBbSFktQ2BJhb5
QF+ENAsstuho0eGSfqALxHQOSSRAaE2OiIiIiIiIiBgKiAQ3IiIiIiIiIiJiSCES3BYCaynW
19BSi8uvI4880rdX64HRByIhQK+LPhe/uc1kCHkuwwASh2zc9je/+c2LdW0REREREREREYMF
keC2GLj1gsxq8RjuufBggKYWDwoQXtCffpZ9+LDddtttcz0vZPW4pOU8yBNY0Bbmx6K17EK1
iIiIiIiIiIjlFZHgLgOcfPLJdueddza0sArXm10c1l8gB7S7RDs74IADcheuhenxkiBPCSF5
JsgDfngjIiIiIiIiIoYKIsFdBsCKC8FlkZjIZUg6cR1GuF35rc2TLCg9gSEgx2effXavfXnQ
MVhs3/3ud/s2ysDviIiIiIiIiIihgkhwlxGwvv7pT3/yPwgqgICKeAqhJTa07srlGEB+wF8W
Cg7RF6L3hIiIiIiIiIihhkhwBwFCS23WYpu3vRlpbUaA+0LeOSMiIiIiIiIilmdEgjtI0Ixo
DpSANiPIAz13RERERERERMRQwYAILpPYvSlQNdlYtGqhZkXfW2ykYcbb+VLyWfODupPt7T35
+D/V+u9iPd9q+r3GZ8H/a5ywcfKqn6fnM9jVOBe/07LVCr3LXNO++nmtcWyyrdCTb0+6YnoQ
F1RsDQHsSzvrRe2DvPZn3Y2IiIiIiIiIGC4YEMHtRfgMMgmBTGhiwiJrIlaNxPW0DYLZ3pOP
s8eyVWttKQmuE07tKyf5eoGS75X6tmKhTn4hn86e0/LUEhJbqJ8rJbPl+uVAVjm6FBDzapJX
0YmsFKeFOqlmWyEgz4U6OW5cVKFgg4UyRvIaEREREREREdE/+iW4qdW1WCd7ZXv59F9ZefJE
t3WufsKJPUSxlhDXufNs7jV/s3n3PpIQUw4oW3GTjWzsFlt6Xh1bbZWkbUvtp55xSiq7nnzW
Ftx7d+OcY3bczkoT1nayXE3OTarZf7/abM4CqyTnsVrJVt5vn7pFU8S5LaG11YTWUtZSnWen
xHXWJX9O0oxMCHTVVthue2tbc0KDKFfnzLfyxInWvsnGDcsvn04lBxmfzLPgRv1sRERERERE
RERv9EtwJSnAYjrr0ittzrV/Tb4XEgJbSRO4JdVsweRpNvlrR1h11sy6AABUrXDPfTb3osv9
17gvfcHG7LZbw15aq1tMi2NH2fRzzkvIacUqCemtzJ1tqxx0sMsDinVL7/TTzkz+rVgp2T9q
9z2TYyvJeUs9OoVa1fc1fovzVWs249wL3L7bXinb6I03suJa462QkPFZf7s2uaaLbaV997W2
ZHuhkMotONTJshP7HknEskYktxERERERERER/WMAFtyKW0xnX3aZvXLO7wx7antCBLskPajz
q/mX/tlqs2c7FSwlhHWl/T5i8+690zrve8DK1ZQMz0iOH7vjjlYYO7Z+aEJmk+OL49e0jm22
ss577knzuv62lOBCYBPMveHWJB1eAdoTvlq1Mdtvn5LbXrrZVMJQSwhpEXlCob6tzk1HJL8q
xRJ814+YcvL3bcH997kEF8lFqpmQkBdLsIQOg4PchojENiIiIiIiIiKiOfoluAtuvNVmnHeO
dU6cmJC9ghPHChZc39uzaGvODTdZsZou2FphvwNs7D7vtzG7v9ee+/BHrFhMiWp53gKb/9ST
NmrLLeq62nKSZ5sTyjHb72jlu+9IiGybladMtM6nHreOjTb0IpafeTSVIlS6rX3ttW3UVpvX
F5YVrTx/tnVdf6NVZs9ITj3C2ieMt44ddkyNum4hNrfiQlaLrqetJcT2AeueOzchipWEACek
d9Jk67z3bhvx2tdacdRYtyInW5MSpgvWBotUIev+K5LciIiIiIiIiIiF0S/B7UrI5vxJL1qh
1GYjt9zK5t57l5WwnlbS6XxQS/5b94I/WTUhjZ1PJMR0k43dwtr9wmRrr1Wtu54XqdvWmGD1
gxrSAn6ssNt7bHpCpG32bJdAdN1zb0JwN/akc2642dqrhYR4lmzMDjuYFrzNvfYam37u76w2
d76VExJb8vySf1Y4w9Y+4SQrbbyeNTwvQMzROyTpJn3rO1Yq1pzClpL0s6+5xmZdfa2NP/5Y
69hmS7dSm9xuFQYHvx2If9yIiIiIiIiIiIgBaXCLtspue9qohFhiDZ1/zz0J0awkBLF+qLsF
q7k3heKYUTZy662dEHZOnmyzzjrNraHFuqV31JbbWPuaE9xymnKytgaBhO9ixZ17zdXJtm6b
fePNtsJ+H7LOJ5+28sQpVi0ilWi30bvs5mnn3XKDzTj9NPe8AIUdtfEmCcGeYbWJk60ye65N
/M43bM2f/swKE9b0c/jyMzfj1qyYMOFqQpjxs1AroM5NSlhMo37J1VnN9b21QbPYjLKdcsop
dvTRR/cit4TaPemkk5Z18SIiIiIiIiIiBg36Jbgr7rdP+iUhfZ333udEtuQK1QWpEbZQTbWu
nihdoMV0/9QffN+qs+Y5ORyx8Wt97+pHHVk/ptDwiQvRrdUXsq2423ts1rVXO2HtTohtZfIk
zwuJbDEh2h0bb2SlNce7tGHuRRdbV6E9KUm3jdnp7bbakYcnebbbS5/9nBUmTnSr7uxr/26r
HHSQa4iLhdTFWC054jVXXm6Tv3Ns3XND0Vb+5MdtpX0/VPd7a3X3Y3Vt7iCCwvXqe/gZERER
EdF6VJKOpa1WsO5ixVYcUbKuUtIPVjG8lF0Ctzy8o0Nf69ntzbb19SnkHavteXn3Vz7CzxeL
xdzjwvyafe8r/zB9s7Jn04Tpmh030DIMFhRr1Xp5k79iIWnLrF8qWylp012dzNeXfeK9WGxz
Y2X9qPpntVm2ywQD8INb90OLy65izaf0q8mNqhY66oESkse4gPOv1BSLBXbKWb9wKQB0d+RW
W9oa3zjKcyqMGZ0S4brnBfeEwH91/7TtCREeufHG1vnU005I5//nJpv/4H1+LHmN2WWXlELX
2mzBU88mL5Wqk9DRyXasu+S5wq672LTzf2dtSb2Xn3zGG1VyfxJai6V2hOtyrR5UopoQ4iJl
qAXeF/x6c+JMDAKE2tvl5WGJiIiIGMpwj+v4ha8U7PpLJtncud1WLde8D0sXPi/rEvaPPELY
lwQu7H+y6fIIX1/f+5Pf9XeuZvmFa1Ygxn0R8Dxy2kz61+yc/R2zvMCvoVqvt4QfOecqlKw0
ombb7jrBRq5YSo2Fy8E19U9wIaMezYvPQur1ICG77bgjqLO/Nqb6E8I467zzbeYll9YXZpXd
E8IK++5b91BAXhWTTLbg69FKdTpZs0JdK4s1tvuJJ11KMPPWmxKS+oQfWk3yGLvTdmk2li4g
Y3SBFrg2d16DnFbmzvWRhrnGtuI3qVSr+OI1RtQlBXsocsZuJ7eF+nXIa0JPnIfB4yIsIiIi
ImIQAjLQlvQaCal94vY51l4cZSutsrJVKuXUH/xywHCbkck8ctiXlbav9SDNiGue+8twe5i+
mfU2PCZbZh2XLUf2e7My55Ulu28orYVRaC2/vvoa+wXzO23W3Bm2+c5FG53UZaVan+Ue5Nfd
P8EtKJStefSytkrVF2tVPIJY6scWnW3XjTfZrIsvTbYzmu22URtv6vvZVvf2ZYWEHY/aaQdr
mzC+ERitKLbrn0nlvfe97o6sUKlYV0Jui3Uz+Whcg41dse4NwWz0jjvYvBtvsLaEyM675mob
tfnWCdGdbXOuuSY1kiflGk2AiVoqSyg5F07KXC3X17bhSmxEkrZslflzrDY7IcYrjGmE/U1v
We/QwIMFizq9ExERERGxdFDAmFIse/9Cf7HjTtvZ7nvuYvMTUrA8ISQrIUnMS5Pd34x8kqZU
ypdphAS0Lx/vAyHZ2WMpS175FwV5fazOK6nEUOyHvf6YfbCUC40cMcYeuOdOO/+CC5O2jtGw
hzYOZnILBiBRqFs861qLamo0tTYaed2FFnbYGef91kUAJTdvl6zziSes8/En3dpbJ/tWK7Xb
+E02stKE1d1iW6hLDBQeF0tq2wqjbez2b7O5N95ebzzdVkxOusJOO5kvFaMAyfaV99nP5t93
v5Vnz7aue++z+Qce4PlpUVvHJpvaaAJCcP5Cam1GRpFqoio2Ys01bO69Za+AmX++1GZcfJmt
+4fzE5I71uQErTfZXfb4xje+4X9gsI+cIiIiIoYDnAgkfZ4V26ySdB2VpIOsdCf9TrnifWUa
QGhwoy9SGBJRoHSyiqov6u7u7kX4tL9arfY6T7P8sxbXvohjX8SSfZVKpen5BoLscSGRV/m4
3nDfouY5WOH1hwvVeqTZ7mLVuqr1ezr4m3IvDIDgWiMcb6k+1VIoVuueBqpO/roef8a6J05J
tru7Arf0pq65ii4TqLWlJtxC3XrqxLguCPC8/bBi6uYr+Ryzwzts3s23Jum6k30JLR2zoo3a
YfukDEmDKrb7qrT2jTe2NY873qaef35CcO91iUQq9q/amN3eb+M+fqDZmFFejvRhqDewCo2s
ZGN2fa+7H7N505PztFk5Oa789LNW3GLzuueEat0f7uCy3grLw4MSERERMdSR9mnMEpYtjSQU
WPlKRVseDHxZkpmd0tdnnlUVMslfW1tbw7oLyuWyH9Pe3t7IKySuWeLcbFFYuD8k1X3pgwdC
kvurjyx0vVm5RGjR7atcy0uf7eEMCtaQb5aKqaFPNbk8WawHRHDTRWZm7Vtuaa/5y1V16W3P
1H37azeydZPt6aIzc51uSUqOWo8ESVrXNINSIwJZgQVpjXVeVZcxrLPjlW79rUkTm6QpQG6d
F9eP3GRjW+u446w8cZKVp0xKy7LRhlYau6JrgGu1NP/1r7zcQpkBR7dt9Fpb+zdnW+fjj3nD
bBu/mpXWWMu9RBirBK0tPWIwrTKLiIiIiBhUUB+F/K3oi28qSQ+S9F2lQn0h9eA0koSAoH7g
Ax+wDTfc0J566im7/PLLG4QVdHV12ZZJ/7/LLrvY008/7fuRHmDFXHXVVe1Nb3qTve51r7MV
V1zRiS147rnn7K677rInnkjX0YwZM8Y+8YlP2P3332833nhjL+KbB4gUeb3zne+0bbbZxi6+
+GLPk+PydLQhSe/s7LRdd93VNtlkE/vVr37l6ZqRzpBYN5M1sJ1rfd/73mdrrbWW/eY3v3He
EFq9+1totrzAZxyqyfWUUst7pYKluj6YWQ705CEG5EVBD6i4aSNEri8aKzUWjimggls9654S
UtdcuvEV94DQDVm2akPi4K4oEDjU2upW31pdnF/Poz4qZilaodRDeku6iLUm+F+21D3tLCsw
ry9qGzPSRm29dbq9/peS8LY6MR98+tuIiIiIiMGDagFdIn1SQtiqqeSOub90Jfry0X9AXiCn
q6yyir3+9a+36667zmbPnu0kFkDkIJkrrbSSjRs3rkEi119/ffvIRz5iK6ywgj3zzDNOfkeM
GOHHQC4322wzu+yyy+z221PJ4RprrGGjRo1qaq0FoSV59OjR9uY3v9nPu+2229qzzz7bOA5A
zLPkVtteeukl/54lwBDScJvyYnszS6zI7PPPP29z5sxZSIcc5hlav5WvrlH1OZhBaK5SYVTC
yDqtzXXGpbqnKYJpUbcjlnURB4wBaXAb6LX4yvzCG7tqZfdUkG6puuSgUCfHPX4J2jyDduVR
aGRrYdCHgsymvqPs2qYeMWyxLplIrbNICdKzOBNulFnE2xFaketnSBe2FYNz9lxjz7W2Lkxv
3rQGgR0I5DAQoM09+eSTlxudT0RERMRQQLGW9DVJf1KGQNGvFNO+aHnQ3grqN6ZMmeJkdaON
NrI777zTCRkkEWIKyXz55ZcbRBDyue+++zqhO/vss+1///ufW3pF8Mhnn332sb333tutwlhA
+RsouSUtVmMI8W233eYEG+I9Y8aMBuHEKgzR1nk5jjJD1iHcWI9VHkkpxo4d27C8QlZ9Bret
zY/r6OhwYg9JHzlyZENnSzq2PfLII71IrKzMlIM8KAt/fCd/nU/W7nnz5vl3lXVxZBRLC8WE
oREAq61Wqls06x4T6nvzyzs4jYEDkij0hcYMfoPcctMLLi/wFWkDuGblIYlDb2JJEeuL0ZS2
bvlNf9QjpTlfrRPvWrqbkTVHpVpaJAulHpdlvniuUj/rsr8x2ZWhS7LRR9IbEREREdEMskhC
HqdPn+6W17vvvtv3QeCQH0ybNs1JG8QV4rbpppu6POGiiy6yJ5980gkhpFeYO3eu/fOf//T8
QkKo8/XVx4nAIn148cUX7YYbbnAL7lZbbWV///vfnYhSlgMOOMBeeeUV+/Of/+zpIZcc8573
vMePg5RDvjkXpPPd7363veUtb/GyQjaxLP/3v//149Zbbz07+OCDnUxz/SuvvLLNmjXLy8P5
SbfffvvZ2muv7bIHzgdZJU/KBhGfOnWqXXLJJW7ppYzvete77G1ve5uT4/nz53ve5JMNWBH7
6KWDxSa4PbraipPHik/O1O2wAzSAypuCWcBbpeGt1py4po4QfElqjwbY9U51GYPLHNKRBj5z
+a9YSx0Sp1raYoPc1ho231QpPFiaVd6qzUVxQ7K8i9sjIiIiIloPufPCyvjAAw/YXnvt1SB4
EEPI7K233urET9P8G2ywgVtOH3/8cSeMsoqyDdDvvPDCCw3ZgqQNoJnuVXlQDogkpPPSSy+1
yZMn26OPPupW3JtvvtnPwR8WVTS6EFksrxyP1RdLNNbmNddc0/OFkO+5555Obu+77z637iKh
2Hnnnb3snEOW3O23396JL4R+hx128OM5VtZb0gPOjyaX9A8++KCTfL6jM/75z3/udfaOd7zD
brrpJps4caL/pqwQfrTJ1El2QV/EksViE1yTTrW+aKxUJ54N/ewAkFpn65IBS3moFqj5ilQX
LWjqopJKIzxtrU6IZblNCXAx0CT0WJh7SHKh7v4itf4OLvKXteIuis/bZr4E4+gwIiIiIqIZ
RCwhuRBS+gwILBZHFp4xzc50P+QRkI5tWEGx8Er7ygIsrJYgdB+G3AGrZp53hDz/tnxyLkjr
Qw895OeA2H7mM59xYnrPPfc4QYRYQhpf+9rXOpHk/OiCIayrrbaa50O5tBAOYonFme1cGxIL
SO/111/fcHOG1RkrMWk4P0BnjEyDvCgLdQWp3nrrre3hhx+2P/zhD76duiMtdcYAgXQsjEOi
QZkh15JFhNcesXSwBCQKReu8916be+PNVpkyyW/oiDXXtlE7bmcjt9xqYBZcz6gSkFCh2yrW
7tKHQj1aWqFOpOus1RPPuehiKyeJRm24iY3cYovkafVwEE6+Cw0iXF/RyvHOg4uDykFCKHrX
7+y0zqLkk3XpEhERERERkYewv0GmACnbfPPN3WqLPAFLLNbc0Lct0/qQTJFjEWQWqgHIIL9X
X311J7csEAutlWG/FE7Xkw+aVha7Me1/4IEHelot0IL44omBbVhp0f5SVgjuxhtv7PlgVZb1
lt/IKjie4/ik3JSfdCxiw7osfTDXjrwAICsIyytpAdcGwaV8kFf2QfhnzpxpZ511lucDISbv
j370o543kgkINiRY1zJYdbhDBYtNcOffeINNO+WHSQtNyGQF1yhtNp9RytV/swnHH28jttm6
3zxSq217Qy7gC8E8sERKbtP9xbrbr7p8oW4hxiXZ9HPPM/yHFT75SRu51Zbu4qthBRYRbuTb
I8Otr520wajB5fPII4+0o446asB5RFIbEREREfFqEBpHkCkw/Q45ZcEZGtSsjADSC9lcZ511
nChC9tj2s5/9rJEfU/7HHHNMrq9bIZQpaHEZUgiIMsRYelxIJVIFrKPIF/CSQPp7773XXZyN
Hz/etthiCyec6HKbTf03I9bapyAR2bT6nRcEQsEs9B0CS1nPPPNM1w1jYYZwYzGmPrEwa7Ha
kvDbG5GPxSa4c/7+D6v6DWqz8d/8mlUmTrVp5/3OrbEz/3G1rbbJxrbg6aca6UduuJF/ahu/
K3PnWdekl6x9hbFWHDPWAzAQNnfsrruZO6148kmrzu60tjXXsK6J/7Oup5IR1sYbWseW2/iC
1XLSjttrJVf/Lrj7Htfsdqw53oqrj/dzlBPCXS2UrTThNdY2YQ3ribZsNmChcAuQ9zAtDqI0
ISIiIiJiUQApxcoI0URDCtCssh34LO2IES4dQMO6xx57uNUX3avIL+A7RDT0pwuYyscyKmmD
0pKnLLUs2kIDy2IupeOT/A455BAnjZBffOKifV2wYIGXBVnCVVddtZALMKQGEFcIMFpeuQ9D
FwsoPxZYELoUa0Y4KSPHYAVGyoH1mEV1WJ4POuggmzRpkpeXAcL555/vkgesyHiUgLz/7W9/
82OFSG6XDhab4BYnrGml4t3uO23+vQ9Y+1pr2jo//ZGVNtrUyeeCZHQ15dvHNNKPP/F4/9Q2
fnc9+bjNOPfChICu4kS2NmeWS2i7J0+0FQ862Kafe76H4y1uvLFVnnrSwx8m4zlb/evftNFv
3961t8gXwJy/X2uzk8Y2esedbPxRh1v3pFfspWO+45rcNX/2k+RzjYZ0wQ26hUHDbxcbAxlt
RkREREREZBG6rmKqHVL71re+1a236EZFVOU9gMVSBHzYf//97atf/arrS5ne1yIsLJVYLpE2
sJ3jyf81r3mNL96CnKqPQsv72GOP+cItLJ2Qxn/9619OEpUfBBjSi4WWxWYqF0QT0orGFsst
hDck1XxHyoA8AOLMb/KgbG984xtdi4v3AzSzQrOgDSFxhjSjLeZa0N1yXvLjuvFAAYGFdH/6
0592rTAeJiDUDB4g5HnR4iKWLBab4I77xCds6sQXrBNZwrVXeySwYrVmIxIyusqXv2Jh4Isq
ARbq99E1tQ35QEJXC11mE6faGieeYF2PP20vn/87m33JZbbSvvt5evwL1ia/aOtccKFNO+UU
W3D/PTbj8ktt9E47WrFWaHhhGLvbLjY3IbjzbrzRal/8ki24724XIXQkxJvwvqEkoSewQ0/U
tfRcKqMWqZXdQt3DhKu9/AEvDcQFYhERERERrYJC6wosnkIHC/GUZpQ0fCcdOlXSENVru+22
87QQTwGyScQydLx8xzctRBZiyV8ICCaL2LD+YuGE6EIKw2hnkg9AKllIBlnE2wFEEUkFcgnK
gyVVkgZ5dKDMWFH5DcklLelYXIZvXV1T6Kc3tOBqe5gnZYOEs42FaliHIb1YZykP13L11Vfb
jjvu6AvjANd0zTXXNK5Hn80iqEUsHhbfgjt2jI0/4QSb/9TTVr7nYZv39MPWef1N1vX0Uzbl
ByfZ6l/8shNbUKo7wq4wUmxEGktJbykhkNVizUZusWU6SqxWkrRt1vnk035srVq0ERtu7Ocb
udXWNve+e6342BOeX6HQ3fCkMHKrbaxtwnizSZMSonuDzbv/XkJI2Nj37tzwuCBereakY1Oi
G/rZTd2JQW5Txwv1h79YbCyEK4Ryh8XAogR1GAgI/HDSSSdFkhwRERER0SewahIKV7pZCB+6
WtxdQQRFNK+44ope2lFILoun8P2KpZU/kUKslEgRSEs6iOE555zj+7LeAxQUASvtHXfc4X+c
Nxv5i/0Q7p/+9KeeXuXCQoz2l3MqkhoWXsi1LK6QVMglpJtr5Lcs05QbWcGpp57qeShf3HsB
8sYii+73lltuaZSLcl977bWNbVyj6ot8kS5gzSV/BgfsUx2HRqwoUVg6WGyC+9JnPmOdk6dY
x/g1bMLPfmorjHm/TXzpcOtMCG7xpSlOAEuyjDotLCa/PfyCLxRzilhIR0/ulbZIvON0sRok
t0FCi3gMI6QDAvBqelwpJaPlQnuSZ6XRQFbeb3+bdvrptuDe+63zpv8m29tt9NvfnpLSWrDK
rG7NbZyjlvrPbcgWChZ4bCg7sU2Rui0rNujtksOiBHrIczGSjYkdyW1ERERERF+QTACE2lWk
CpA1WTMhrJA6SQDYJjKoKF4CpI19oS5XgROyCKODQQIhr9L8Zmcz2Uc+0uuqbNqmfESwRUbZ
p4ALyku6X/n2lacI1YGsteGnzqE6Ig/KHP4O6wYiTb0oT0U5i/3y0sdiE9xRW29t5WQE0z15
sk087GtmY8dY99NPe+jekVttZYWxK1q1qIaajGCu/YcvKMNjrmtnXbawoE54zWZfeol1Pf5U
Kjuwdhux8QZugfWweg/cZ2NuusXmJKOwUqFsIzbcxMlnG8EgyK+Qrn4csePbrXDe72zejTck
T1m7jdxpeyuNX9vJbaEnEHBapsCS25gyaFydFqKxMagqNMAFBQteMo10oP5um/kMzBPFR3Ib
EREREdEfsuFnNW0ucqs0QKQyTAuyxE2WyXBbM/dY2X6M88olV1jGbGCE8PistTd7PXnHZ/OQ
xwZty/PEkO1r884dXnN2f391FLHksNgEd8WDPumEFWtpZfJLVpiU3KyENY7Zehtb/cgjzVYY
YyM3XN/Tdj/1hM2+6UYbs+t7bQFCcAipW007nAQXk5s886KLrTpnjqdf7UtfSQjzClapueMv
K4wZY1NPOcHTF5Ltq37l0JR8FnGeWzbXxCZf28Z02Jhd9rQ5F13kHh5W2n7n1L8u/1Tr7sIK
dYttoKtNLbyMzFLLbiNIW8EUF8LhfnWxJhdS6+2S8KebZ3nN2591t5L9DNPGByYiIiIioj/k
9R95BDTcnu1jRNLCbc36oWwflz2/PrPEr6+88shi9jrC36Ff27DseX1qeK6QeDfztNBX35vn
piz21UsHi01wS2PQ4H7PypMmJwR3ktUqVSutvYa1r7F2Y7HWhJ/92D8773nAXX3heQFtrlZx
zXryKfeCUElu8voXXmhd995tpQlrp1raBJWkLZULJRuz8Ya22lG/drdhHRtt7OQZ5vmaK//i
+dDMKgk5Lq0w0mzODF9B1jZ2rI3cYdtUq1vrCfsLehpVz8Iztsy+5m/WVit5edKNFRubEOYG
CoW62KJgafCJJeNLN29kmOc/sD8rb/jAxIcnIiIiImIgCAlgSPqypA7k+ZAFoU/YvLwHYq3s
iyxnrb3ZsmUJcVjGbECJLMHsb8FXX9fQrG/O9uNZGWLU4C49LH4ks/o9bhs/PiGkq/dYPS2Q
AdTSxtex9ZaNMGXp/mrdklqxEVaxLoqT3OQRSBvcGttjNm0vdLnVtDR2jBW3fGOyP41opgVe
lIPHat61f7Pp5/0evwceJGKlffc1wgg78tqsF6SH3LLQ7JXTf+WkNkUaznfsrrt6AAlPUku9
OqTWXvKuLm41+qIwgjrkWV/DaZWsMD9PqhAiktuIiIiIiIGgmaVWXglCeUJIEEM0i8CZJY/N
rMT6rjRZoqs88ohttk/MIo+QZ+WB/fWZzUh0HmHNq4O831GisHSw2AS3IOun35seRWqPdtWc
NDqqSUMoKloZUoaEPCb7xuy0o7VvvEkakreQ2kadvBac5tq4T3zaah+caaWVVq5HNUtJpXs7
qKWLxrCilpL8R+64s63kDbDdOjba0DoSsmwqi4rUYOApge5NxguWZlty5QO22qonb+vhx/Vr
7cl28ZW4r4akZtM3Oz5acSMiIiIiBoqQLKpfCcmt0mTXf8h6mwdF+Ar7IhZgZY050v5mJQNh
PiBLrsN+Tl4ZQu2rvDRk81oUDWy2PM1kFHlkOa8fzrNURyw5LDbB7XNqvuFPtthIWujZWN9a
tLYJa/pf9lClJWpZ7nk9UaHnNxHNJqxhK+3/4YWLUsiUNiCphV7pCi5l6OVFoR5CeKFLK9hi
E9vwvOHnoh7X7PeryTMiIiJi+KBYN9SYz8qxGqOUdA0VPPMUim7o6AscyzyfVcupcaRacOML
xhIrVlJDTD8YqPWwlcibSs8D23GBhQ/c7bff3l2ChccDiCxux3CbRWCGVVdd1fbZZx+P7iVv
CYB9hN7lT+QzLAd/RAMjLO/vf//7hs/bEJxrpZVWcn+3r3vd6zyEMOkIRIEPXfaHnhUWxQCU
rYNFOXYoza5WC1Z/LvTs8COd1faYBb6+qebT3YVawXpqLfssLP7sd19YAgQ3IiIiIiJi+URV
NpdCKSFVaVjYSpUV9R3+2/ohItViNZ1JLJYak5W1Qjn5mRDeao8FMWsVDS1/2UVLy5smk2sh
EhjEk2ALQNZZ9o0bN87JL8T2D3/4g29fZ511PMDDCy+80EjHtve///0eyOGyyy7rJVEgP6Kc
EaSB+iEgBD5tIbCqK9KQB5HFILlEDcN3LSF8d999d9twww3tz3/+s1tzl2eCuWxRDQZ9rJ3i
s+SiURb1m9+z+vJ7J7dqy9n1SkuX3IJIcCMiIiIihi2KkNqEnNaqFZxNNnRstWqXlYqFtNPu
C5USmTR+Fop1mZ2TW48Q5Nv78kCQN/Wf/T7YQTmxlEJMAdbY0HXYnnvuaTvttJOttdZajYAH
RCL773//25AOYP3dZZddPPwtoW/vueeehqsy8tlqq63cN+/kyZM9ehjhdyGrkhkQUGG//fbz
Y375y1/a//73P7cu85v0kOedd97Zo42Rdnmq30ED5Jtupa36s0HttfkApVaXmGbXJaWeqQrF
gi+rSrH0yS2IBDciIiIiYvii0JYu5XCn6HUyirWJhVUD0GYWC+XUv3otDVSUhnKvrxEp1urL
RBb2U56HrKeA5YV8hZZoTf9DKqW5hdAS8QyMHj3aQ9pybaSBaErWABkl/C1hf9/0pjc5wQWQ
1zFjxrj1FqnBI488Yp/5zGfc0ov0gfNgvX3jG9/o1lqisj311FN+LvKGBEOmCRcM8db5mi2U
i2gO3KOWa6kVt5Q8O0UGH7Wyz4CkXqVC6YYGeNU6uS06CW5VdUeCGxERERExbAEZrWqxsodp
T6dRq9U0kE+tH2sTKzSKaHUtnZ6tBppDIm+SS9YDQdOyZHSvywtCi/Mqq6zi37He8se1b7LJ
Jm6ZJYoYIXG1iEzHCKQnohqW19e+9rVOaokCBnlFkjB27Fh74IEHPIQuRBWr7BNPPNEgVBBe
SDLkNrTQUvcQ2X/+858NYq1zL291vaxRqrlK3Wql5MmplF2c4KzW4wykz4/IbXpfNGNRqm8r
t6yskeBGRERERAxbqPOtJh1zxwgsTkUPLmTumYdFM6U+jy8XKlbtrrnnnYJHuSyk3njqfb4I
Vs+5Fn0h8WAnYa5bTogspPLzn/98Y3t4vVhx//KXv9j06dNtwoQJCx0f+teF1EJ2sbQq3O6b
3/xmJ77oaiG8N998s+266662+uqr28svv+zHYbElRC8kN4TyVojhrAZ6eajjwYKCjbRiab7P
VhTb0Z3XrM1nQSpJBctiW2ykTp4QSy23Reuudlutu68Fdj2SniWBSHAjIiIiIoYt0sXgCZmt
tNmUZ+elUoVS1b0pFCulNAJmHxg5umgrrjEiIV31BWTMxdalCpDecrlrocVjEC19h4yJXEHk
QtdWbM+6uxqM0LV1dXXZP/7xD98GoWVx2dvf/nbXzZ533nk2bdq0BsnMHh8GboDYytUXfywu
wzo7a9YsO/jggz0tZJZ6QZaAZZbvnJNjQ+8LWTJLfYfuyiK5XTRU2hdY5yvJ/Z3V6a5eFY3A
4x2gRa+qLtNIsTWfxWhLnoZO6xhVs7GrjGxS34sfLCuLSHAjIiIiIoYt3Gd6W8HuvWGS3XX1
K6mLr4YVqn9r0ogxbfbBr6xvpZUKDY8MRSs5QR6dkK21624uIVbSqELU8B6ABwCIm1xlTZky
xa2RLLqSv1c8E0AMBzsgilwjLr4ApJZtyAnwaoC1FW0s15VHcERuqZO1117bXnnlFdfqAkgs
+7Hm4okBcK45c+b4wrNbb721UafIFiDEjz32mFuURb45lsVreFK4/PLL3Uoc9bevAp0Fu/p3
z9nsl7rSwWGBmQtIbLtVi925jwz7aoVum7DeGNv9i+u5Bb63t5AlT25BJLgREa8CMXhGRMRQ
QTXpo0v28kvzbfVxE+xrXz/Ufv3r39rLU6fZ/h/ez9761re6yykI2x133GFXXHGFWwm/9KUv
+QKns88+2+bN77ZVVuxI3YW5zrDilqyOUSOdVNGRQ9rQjULKHn30USdcBxxwQK8ACfiFveaa
a+zBBx/07RyLBfS0007zqXe5E5PngEWJwNUKUAYt4OIT4v7QQw/Zf/7zH3vPe97jC81YRCZA
dCCaugau621ve5vLDqgH9qO7ZcEZhPX888/3c8hazPYPf/jDtvHGG7tHBeQL5Peud73LzwVB
locF3IdRBjTApBkM9bW8geZXTjjs7Indtseee9mee+7u7R/N81577eUeKtBg86zcfffddskl
l/iA7pBDDrFzzjnPJs58ONXtmDUWpaUY+IByURAJbsRiYbgRvewq5+F07RERQxFOMAvWIIwQ
K8jQhRdeaJtuuomn0RQ3ZOr//u//PKw66SBSILQEhlpSCC0EgOM/97nPuW4UCyfk77Of/aw9
//zzrkuVZhSd6Y477uiEgbyxNkLklK8kDe973/vc3yyETgu2lrUlMht5TO9GrKj4q2XR2Lvf
/W4fFIjUrrfeer6oTLIFiCqeEiCnEFZAHUD877//fk8TWmWfeeYZlyVgtYVIo++99tprnWwx
ALntttvcEoxFd7vttvP7gIswPsMAE9Rp+DuiL6QkdIMNNvB7RF1iEafthm3wQx/6kOuxv/nN
b3qda2FfKxHvaMQigxcuLyhGabyceDkMhhdsqyDXNjg2ZzqNF2MkuxERyyvSDrttRLtNmTbV
XlvewC666BInoVhbhXCl/jnnnGMHHXSQ/frXv27sc+SEbJWbKn7z7uB9wSIrLJMXXHCBp5XV
Ew8BkDaAlRcCsf/++zcInTwxcPyzzz7b0JIOhndvVnoQalzpM/7617/apz71Kdtjjz2c8NCH
IC/gT2AbrsH+/e9/u8Wa+mI/AwX84sonLqAe6YNIj6WbQclzzz3n7sCwjuNzF1mEgLcF9MGQ
Z/ndDfOKGBi4n6VSIRmYXekDjz/96U8+O5E+K+ECM/Pt5557rt/3//zneltzo1EtLWu8qxER
EREREREREUMKkeBGLDIYZeOuhSkyRsOMoocTcBaOtQC/jHzyO0oWIiKWT+jZLXdVbOzoMfaT
n/zEZ2iwAoaQDIEpcVbw/+AHP7B3vvOdvfKxYHpeQQTC8LyAPMgfq252apx9TLOzDYsjQQsk
ncCiSSQufMqiCcYSypT/pZde6ourQs8ArQaW1TvvvNMt0Ko31RdlwmKK9vX0009vWMaxfktP
K0sq1yirueoFqyt9jhbpCbKOEwkNvSfnlYUXOQOaXepJGmeswHyX9RbE9/WiQ7MJzCCgsV13
3XV9gR9IQ/T2AMs99X3yySfbrbfebt3dr7S0rJHgRiwyILSQW02dDdeXBDHNIbf8Ded6iIgY
CoBEve99+9vrX7+Zd9hZN1JaCKYV+RBNvAOceeaZvr2mYBHBYFdkgMVSIemFxELOcKOFkSCM
/kVI21tuucW1oyGhgyjcdNNNruNF38jUPHpWSIRI8LKSK3Be5GqQ/9Dnb0he+U7fIb/A1GEY
tjgMyBAGxZAHiTxXaZI/TJ06tUHwRag5PvQ+obw14Ajf2YNF5rE8IK3zsi9+fMc73uEDkmZ9
H3XKc7X++hv6gsrf/elnLS1rJLgRiwQaLC8yXsrhC2I4EjzqQNaK4XbtERFDBwmJrFRtwYIu
22rLrRskyYM0FKwXCQMiQlgUt95664Vyy4bYDRemhm7CIKf77ruve2XAcgnQjbLwCq8DOl9I
7CATEDqskRBg/iBzgyECWtblVuh/Vt+xympbSMrDwQMI8+nLB7COz2polWeo2c0L7iBEcjtw
qK622mobb3taBNlXWmYrWDxYunjpuANrhkhwIxYJ8nUoH4fh9uEGOiksM2A4EvyIiKECvCgk
fbBbVfUsV2tVXNU3tfLxnUU2gqer9lgrs+8EvS9E7ljt/973vtf222+/RhqI6+9//3sfOCvM
rabWRQgp41VXXeX7WOQ6mMhZ9h0owppnNZU1VdcWpgvzy15fuC3vvRtajMNjZT3XAATirMV/
EQOH6qvZoCKPF1DPsqq3EpHgRiwysiPfqD8dngQ/ImJoAOLTZu0jig1pQpYMgWznzH4CMwi+
v5jvQhAyhVZWUcwAhgJchEFYlVbWMFkemfKH8GaJoYjyYHnviqRmCU6ej16VO88qnr2mgRDe
LFSOENn8QjI2WOpweYHqn7aZ3V5wH7cLS2W4J6RvdT1HghuxyGjmCmaoIL7wIiKGE1LL6MiO
Nrv+hv/aVw79QibC0sLO50WQrr/++syemssa8qCQuyLP+mN7SPCyPnWz76Ms2R0MFtxFIYr9
lbevmcGBXGtfVt288sV3/aLB23fyWFx33XU+IGQwRhtOsbDExLfWZyyyA4+ljUhwI5YoWFXM
4gv834VY3kgj5UVji8N1fDJGREQMVTBNXvTp/n9f929flU/EK/Su1Wr+FPaYMWN8sRcO7nsh
w7+y+tvQMiyEHhay1mNtC9M2syhHRLQK7e2plw/aPz5ukdEIWcs8Mp4777zdA6OMXaOjpeWM
BDdiiQJyu/vuu9umm27a2LY8kduwrCwCwTl5RETE0IeT0OTR//rXv+4BGN7whtclJHfeQtPo
BGggCMNhhx3mi8wI36vjhSw5DafGs+Q2b0Fa+D2P1C5LjwkREdVyxbbd9q32ox/9yBdFEnWP
sMgglKBAbgm+wbOi8NKtRCS4EUsUWG4ht294wxuWWy8LYcdy3333LbQ9IiJi6EDPNbrWCRPW
8pCueDf43vdOsPe8ZxfXxeI5Bqst07FE4TryyCPtbW97m0fZEsENkfXXmvc9JAIhslbckBjo
mKw2NSKiVSgai/NqHpp3xRXH2sEHH2zHHnus7bPPPq4r51lhQRm+ojEQHX300famN73J2tpG
2JMv3dnSskaCG7HUEOqylpeXcZaU97VaNyIiYvlHoVBqPOuQyc997nMeCvczn/mcE94RI9oa
ARkgwZMnT7YvfvGL7ouWIARpHnVraqEnZK22QYohqOQhl1ecR4EeCPqgdws+Q4G0uvzJv2uo
X2ymyY2IWNpQn0hb3W+/T3rI+m9+85sezAFSyzNCm6dtExDqC1/4gh100MH2pS99KXpRiBg6
WB5fvNnyxlW2ERFDG+G0PyT2+eef98VjWKj23ntf22abrbzjxnUXEbMuuugi1+liwZVHhIZF
tdZjvaWDX3311e3DH/6wb1OnDx588EH717/+5UEdNtpoowbxxa8tnhUIBIHleIMNNnBXYn/6
05/8d57Xmvhuimgpij1uwgik8c9//tMDOey77962/fbbe/Q49Ou0cSKd3Xbbbfb2t+/s7b/V
iAQ3YomjrxWryxOGynVEREQ0B66N5BeVjvm4446zt7zlLW6RwjqFpUpusLbddlv72Mc+5tOu
yBSYlgWNRWGFnvcGBEB+bbHWfvSjH3WC/NBDDznRJezuWmutZRdffHEjYMzOO+/sfnF/+9vf
ehmIFIWFV7IE+cKNiFhWqNUq7iyB4CTf/e53fXHmZZdd4m2ZQZh8C7/1rW/16GXHH3+8HXXU
Ud52s75zlzYiwY1YohhKfnGX9/JHRET0D72rPJTsrOm2977vt1NPPTXpwOe5G6QwHZ06lij2
s3Dm17/+da88rGYLSZwguXT6dP7kh5V2tdVWsw033NDOP/98mzRpUsOCe/XVV9vGG2/svnFZ
oIOVl5CoeqeGLsUkXYiIaDXa2gp21VVX+OzG+ef/wTW3tO1QgsDAEEL7wx/+0NvqaaedYWtu
NKq15Wzp2SKGPOK0WURExPIErRGAgI5fY7xbZ/meygmKvdIBBVn4zne+4y4EFRyiGUReQ9+3
q6yySiPkbhjogbyx8iKJwM/ouHHjGseTZo011mjoc19++eUYiStimaBWK/hsx7HHHuczDAz8
QuOWoEVnRx75Dbv22n/YlDmPt7SckeBGRERERAxr1KoF6+zstn322c8XmKUuj3p7Qggts5BT
rLAsNPv+97/fb/6hZwRAVCesXkzvci6RWPLGMwOLc7SwTcdCJPDPCzmGVKNvJB/SRHdhEa0C
7bFSrtpue7zXNttsM7fUZqPChV5AGLTRZpHenP7bE1ta1khwIyIiIiKGNeiQFyzotvXX2yCz
J41klufuEOvp61//+gHlH3b8kFlkCjNnznTNLYvK5D1hm222cT/iv/zlL/13SBawkv3hD3/o
5ZUGchtdhkW0HEl722STTXtF5qt5iLNqr7audslgDR/50Q9uREREREREiyCtbK3WIyNoBlml
1IljhR0oIKNh3ldeeaVbgHGfJO8K6G7xs4sXBZEHLczhnLLWatFb+BkR0RoUaYwN3TrIBjLJ
C3qiWYpWIhLciIiIiIhhCzpjOt+OjjZ7+ZVpbpntQY/v2dAntkjlCy+80G/+Sk9YUyQFLFLj
nGho8ZbA6nN1/lOnTnVdLmkgDegX5SJMhLdZdLOIiNYgfSaYhZBvZhHdZhH38FRC+lbPNESC
GxERERExvFGoJgR3hAduOOxrX/UOWxHEws5aZBVgdcXFV79Z1zt1AkSEFmIIK8T1qaeeaqQN
XSnxHf3ixIkTey00y2IoeKyJWH7gg6ykCV977dU2adI3XIuOfCacUchqcvm87LLLMoPHpY9I
cCMiIiIihjXohEeOarO7br3DAzkcfPCnbebM6blhdNmGf9wLL7zQ7rrrrgHlL3lBNi/+ZNFV
uuyCtHBqN7TcDhV3jBHLFzQIw70dWvETTzxxoSAk4cCQBWZ//OMfPTjKhA2jm7CIiIiIiIgW
oUdX295W8kAPq68+3vbcc3cPwIAVVYCMjhkzxq655ho79thj7X3ve59dccUV/Z4hj4SGK81D
Ip21goXIkttIcCNajdQzQtl23XVXt8q+5jWv8fDW8+d3JkR3QSOdnhXc3RHsYcUVV0za9PyW
ljUS3IiIiIiIYYxUR1jurtr48Wvbxz5+gH35y1+0++//nO2///629tpr+2IyrFTIDIhMRoCH
gw8+2EPxQnAbBLX+MRDSmfUZGm5rRlyzvkYjuY1oNQo0veRv441f65H8jjnmmORZud++8IUv
2Prrv8Y6OkYlz0rZpk2bYmeccYadeeaZ/qzccMNN9tAzN7a0rJHgRkREREQMY/SEv4XEYpVd
c801PeADUZh22GEHt0Zhyb3jjjtcb8i07Lvf/W7761//6sdJVpAuMK81rK+p+7Eeq5ass8gO
IM3yIRou1sHfrfJEs8h52RZafCMilhX0rDC7gVu7H/zgB3bIIYfYOeec427vaNc059tvv9V9
PGO9xfXdP//575aXNRLciIiIiIhhDVlN6ZyffPJJ+8UvfmFvfetb7YMf/KCT22nTprnuFmf1
+K2lMyeqmMgocM1sPVQv31mEhv4QV2AQWoX55TvnuOGGG2zzzTe3LbbYouFu7JlnnrFbb73V
v0NsiWgGabjlllucfIs4K4IZ58mzBEdELC2ordFmmdE466yz7A1veIM/G0gS0OZOmLCW7b33
B1zCcN555/mAkYh9rW6mkeBGRERERAxrQBJZOPPKrFn2rW99yztrPok0FsoF+ES2QPQyNLh7
7rmnb28QzIL10tRCUp944gknpkQhe+yxxzxKGYT5bW97m2+DvGINA295y1s8khpRypA/7LXX
XrbOOut4GvKEHENu2YfLsTCKVEREK6C2Nnv2TH9GNtxwQ/v5z3/ugznaZtpGaavps/LTn/7U
ZQzFYltCittbWtZIcCMiIiIihjUUYYwp1Y8euL9LEPBBS0hceTsQkSQdC9H4jb4Q5FlRSUce
t912m6fFUvvII4/YvffeayuttJLrF7FwPfDAA41jnn76abccjx071nbaaSe3hmEVU/5Ycfnb
bbfd7Oabb7YHH3zQ90dEtBIjOtq97TJAO/vss71tEpmvZ6CVRgDkGUDqw/6TTjrFJmzY0dJy
RoIbERERETGsgXUJKyoLyo488hsuJ0Bi0CxEL8T18MMPdw3u448/3rO/Zgsdk2oS084eiQKW
4vHjx/s2JAnIEHQMEcyuuuoqlz4gheCTEKfKD2sZ5JeIZxtvvLFbmJ977jkn5uQf5QoRrYD7
iLaSffvb3/Z2x7OT6sPxc1vslY6Zhq985St28cWX2pQ5j7W0nJHgRkREREQMa6TW0bLt+/4P
+vS/LLfZNFrkhfQATS5TsFh7GwgOaebqC4g8Qw74HvrIHTdunBNozoFrJZ2bdLhkWnfddZ3g
brDBBq4DRu4AwY3ENqJVQIKw2y7v9UEWMhmQtj8Fe2DGo9YIVkI7Rov+818f39JyRoIbERER
ETGMUax7Oyjb+uuv39iatYZmCSvfN91000ZaR8Ax81x9aWEYllq+v/71r/dFZToPFuSPfexj
dsEFF9iUKVN6HYcl+D//+Y9bl7/0pS/5IrX77rvPLbqh9Tb6xo1YunBXIfba1762ET46RCjn
kecPBmdp+mKTPJcOIsGNiIiIiBjGSDtoOGFIDLMW0SxxHKjFVMewilwuwpjS/ec//2nvf//7
3SIrV2J4VWAh2ssvv9zwkMBxAhIHtqO9xWqL/lYRz6Jv3IiWoQ9/z+m2gicKya4f1uJZhkhw
IyIiIiKGNSCJ7e1Ft5pmraDZ0KPhMXhEUBrfn8Mt1cHffvvtnj9yBH5DUpFCQGpFYiG9LDoT