forked from cxinping/PyQt5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapprcc.py
4908 lines (4900 loc) · 313 KB
/
apprcc.py
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
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.6.0)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x42\x3e\
\x00\
\x00\x01\x00\x01\x00\x40\x40\x00\x00\x01\x00\x20\x00\x28\x42\x00\
\x00\x16\x00\x00\x00\x28\x00\x00\x00\x40\x00\x00\x00\x80\x00\x00\
\x00\x01\x00\x20\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x36\x3a\x3a\x00\x49\x4c\x4d\
\x00\x0c\x10\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x02\
\x00\x0f\x11\x11\x00\x13\x14\x14\x00\x18\x1a\x1a\x00\x23\x25\x24\
\x00\x2c\x2d\x2d\x00\x17\x1a\x18\x00\x1a\x1c\x1b\x00\x2c\x2e\x2c\
\x00\x21\x23\x23\x00\x19\x1c\x1b\x00\x1a\x1c\x1c\x00\x00\x00\x00\
\x00\x77\x7b\x7a\x07\x4c\x50\x50\x12\x46\x4a\x4a\x17\x41\x44\x45\
\x19\x3b\x3e\x3f\x19\x4f\x53\x53\x09\x4b\x4e\x4e\x00\x78\x7b\x7c\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x39\x39\x00\x46\x49\x4a\
\x1b\x1d\x21\x21\x6f\x18\x1c\x1d\x7f\x15\x18\x19\x7a\x11\x14\x14\
\x73\x15\x17\x16\x6b\x19\x1a\x1a\x5d\x1f\x22\x21\x3d\x2c\x2f\x2e\
\x12\x41\x43\x42\x0a\x1d\x20\x1e\x17\x21\x23\x21\x13\x3a\x3d\x3a\
\x08\x27\x2a\x29\x0e\x21\x24\x22\x1d\x1d\x1f\x1f\x23\x10\x12\x12\
\x72\x11\x13\x14\xa3\x15\x16\x17\xbd\x18\x1a\x1a\xcc\x18\x1a\x1a\
\xd1\x18\x19\x1a\xd2\x27\x29\x2a\x5b\x19\x1b\x1b\x00\x77\x7a\x7b\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x41\x42\x00\x53\x56\x57\
\x47\x1a\x1f\x1f\xf4\x14\x19\x19\xff\x0e\x12\x12\xff\x0a\x0d\x0d\
\xff\x09\x0c\x0c\xfd\x09\x0c\x0c\xf9\x0c\x0f\x0f\xec\x0f\x11\x10\
\xc2\x0d\x0e\x0e\xac\x0a\x0a\x0a\xd2\x0a\x0a\x0a\xcb\x14\x14\x14\
\x82\x12\x14\x13\x9e\x0a\x0b\x0b\xdb\x09\x09\x09\xd9\x05\x07\x06\
\xfe\x08\x0c\x0c\xff\x0b\x0f\x0f\xff\x13\x17\x18\xff\x13\x17\x18\
\xff\x10\x13\x14\xff\x29\x2b\x2d\x7b\x07\x0a\x0b\x00\x7e\x7e\x81\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f\x52\x52\x00\x62\x65\x66\
\x30\x27\x2a\x2a\xd9\x13\x17\x17\xff\x0b\x0d\x0d\xff\x06\x09\x08\
\xff\x06\x08\x08\xff\x06\x07\x07\xff\x05\x06\x06\xff\x04\x04\x04\
\xff\x03\x03\x02\xff\x02\x01\x01\xff\x01\x00\x00\xff\x0f\x10\x0f\
\x9f\x0e\x0e\x0e\xb4\x00\x00\x00\xff\x01\x00\x00\xff\x03\x03\x02\
\xff\x04\x04\x04\xff\x04\x05\x05\xff\x06\x08\x08\xff\x06\x08\x07\
\xff\x0f\x10\x10\xcf\x3a\x3c\x3d\x38\x24\x26\x26\x00\x80\x7f\x83\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x64\x63\x00\xff\xff\xff\
\x01\x2d\x2f\x2e\x3c\x13\x14\x13\x9e\x0d\x0e\x0d\xd1\x07\x06\x04\
\xe9\x08\x06\x03\xfb\x0b\x09\x05\xff\x0d\x0c\x07\xff\x0a\x09\x05\
\xff\x05\x05\x03\xff\x02\x02\x01\xff\x02\x02\x02\xff\x12\x13\x13\
\x7f\x0a\x0b\x0b\x9b\x00\x00\x00\xff\x03\x02\x00\xff\x04\x03\x01\
\xff\x00\x01\x00\xff\x00\x00\x00\xff\x04\x04\x03\xe8\x12\x12\x11\
\x81\x2a\x2b\x2c\x25\x22\x25\x23\x00\x5c\x5e\x5b\x00\x45\x47\x43\
\x00\x85\x89\x87\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x59\x5b\x5b\x00\x7f\x80\x81\
\x00\x1b\x1e\x1b\x00\x8b\x8c\x8d\x05\x28\x2b\x2b\x12\x46\x44\x3a\
\x63\x34\x2e\x1b\xf2\x35\x2d\x18\xff\x30\x2a\x17\xff\x23\x20\x0f\
\xff\x15\x14\x08\xff\x0e\x0e\x08\xff\x0f\x10\x0e\xff\x1f\x21\x1e\
\xd2\x26\x26\x22\xdd\x25\x24\x1e\xff\x25\x24\x1b\xff\x1d\x1d\x13\
\xff\x12\x12\x0b\xff\x0a\x0b\x05\xff\x08\x0a\x05\xf4\x16\x19\x12\
\x78\x29\x2b\x20\x19\x35\x38\x33\x0c\x00\x00\x00\x00\x3a\x3c\x35\
\x00\x3d\x40\x3a\x00\x48\x4b\x47\x00\x64\x64\x65\x00\x57\x58\x57\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x86\x8a\x8c\x00\x90\x95\x98\x00\x72\x75\x74\
\x00\x4c\x4a\x41\x00\x64\x6a\x6b\x09\x3f\x3f\x38\x28\x3f\x3d\x32\
\x9e\x36\x33\x24\xff\x3e\x3b\x2d\xff\x48\x43\x38\xff\x46\x43\x3a\
\xff\x3c\x3c\x36\xff\x45\x41\x38\xff\x4c\x48\x3f\xff\x4d\x47\x3d\
\xff\x4f\x48\x3c\xff\x53\x4a\x3d\xff\x50\x47\x39\xff\x48\x42\x33\
\xff\x42\x3c\x2e\xff\x3a\x35\x27\xff\x33\x2f\x21\xff\x2e\x2b\x1e\
\xf7\x32\x30\x24\xd8\x36\x36\x2d\xb5\x36\x36\x2e\x84\x37\x3a\x33\
\x4f\x3b\x40\x3b\x23\x4e\x52\x51\x09\x2a\x2d\x23\x00\x35\x37\x31\
\x00\x45\x47\x42\x00\x3e\x40\x3a\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x85\x88\x8a\
\x00\x8e\x92\x96\x00\x79\x7a\x79\x00\x00\x00\x00\x00\x7b\x80\x81\
\x1d\x5f\x5f\x5b\x60\x4c\x4a\x42\xac\x48\x43\x38\xe4\x4b\x45\x39\
\xfb\x54\x4c\x3e\xff\x58\x4d\x3e\xff\x55\x4b\x3e\xff\x58\x51\x4a\
\xff\x5b\x54\x4f\xff\x61\x56\x4b\xff\x5e\x54\x49\xff\x59\x4f\x43\
\xff\x56\x4c\x3f\xff\x50\x48\x3a\xff\x50\x46\x38\xff\x50\x45\x36\
\xff\x51\x46\x37\xff\x51\x46\x37\xff\x50\x46\x37\xff\x50\x46\x38\
\xff\x4c\x44\x37\xff\x49\x44\x38\xff\x47\x43\x39\xff\x47\x45\x3c\
\xf5\x44\x44\x3d\xdf\x3e\x40\x39\xaa\x36\x39\x31\x65\x39\x3b\x35\
\x24\xc0\xc6\xd4\x01\x3c\x3f\x38\x00\xff\xff\xff\x00\x6e\x71\x6f\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x8b\x8e\x8f\x00\x97\x9b\x9f\x00\x7f\x7f\x7f\
\x00\x00\x00\x00\x00\x7c\x80\x80\x20\x6d\x6e\x6a\x76\x63\x5e\x58\
\xd0\x58\x51\x47\xfa\x56\x50\x44\xff\x5d\x53\x45\xff\x63\x52\x3e\
\xff\x62\x50\x3e\xff\x5d\x4f\x40\xff\x5f\x53\x44\xff\x5f\x58\x51\
\xff\x67\x59\x4c\xff\x6e\x5b\x48\xff\x67\x55\x41\xff\x63\x51\x3c\
\xff\x5d\x4c\x38\xff\x5b\x4a\x36\xff\x57\x48\x36\xff\x56\x49\x38\
\xff\x5a\x4d\x3d\xff\x5a\x4d\x3c\xff\x53\x47\x37\xff\x55\x48\x38\
\xff\x57\x4b\x3a\xff\x57\x4b\x3c\xff\x55\x4b\x3c\xff\x53\x4a\x3d\
\xff\x51\x4a\x3f\xff\x4c\x48\x3e\xff\x3d\x3e\x35\xfb\x2e\x30\x27\
\xd8\x30\x33\x29\x79\x42\x47\x41\x15\x28\x2b\x20\x00\x94\x97\x9a\
\x00\x65\x68\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa7\xae\xb2\
\x00\x00\x00\x00\x00\x8a\x8b\x8d\x00\x5d\x51\x46\x00\x84\x87\x88\
\x1e\x74\x72\x70\x75\x6b\x66\x60\xd1\x62\x59\x4f\xfd\x60\x55\x49\
\xff\x66\x5b\x4e\xff\x6d\x5e\x4c\xff\x63\x51\x3d\xff\x5e\x4b\x38\
\xff\x6a\x55\x40\xff\x70\x5b\x44\xff\x71\x5f\x4d\xff\x63\x5b\x54\
\xff\x64\x54\x42\xff\x64\x4f\x3a\xff\x62\x4e\x38\xff\x64\x4f\x39\
\xff\x5f\x4b\x35\xff\x5d\x4a\x35\xff\x59\x47\x32\xff\x5d\x4c\x37\
\xff\x64\x53\x3e\xff\x62\x52\x3f\xff\x5d\x4e\x3b\xff\x61\x50\x3d\
\xff\x63\x52\x3f\xff\x62\x51\x3e\xff\x63\x52\x3f\xff\x5d\x4f\x3e\
\xff\x58\x4d\x3d\xff\x59\x4e\x40\xff\x56\x4f\x45\xff\x42\x41\x38\
\xff\x31\x32\x28\xfd\x32\x33\x29\xb5\x4a\x4d\x46\x2c\x28\x29\x1e\
\x00\xa8\xae\xb1\x00\x8b\x8e\x8e\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x96\x98\x9b\x00\xa5\xab\xaf\
\x00\x7e\x7b\x7a\x00\x94\x9a\xa0\x0d\x7c\x7a\x78\x60\x72\x6c\x66\
\xcc\x6c\x62\x58\xfd\x69\x5b\x4e\xff\x67\x59\x4a\xff\x6f\x60\x4f\
\xff\x76\x62\x4e\xff\x71\x5c\x46\xff\x62\x50\x3d\xff\x5e\x4f\x3d\
\xff\x66\x54\x41\xff\x70\x5a\x43\xff\x75\x62\x4f\xff\x68\x5f\x56\
\xff\x70\x5c\x46\xff\x6e\x57\x3f\xff\x6c\x56\x3f\xff\x66\x52\x3b\
\xff\x63\x50\x39\xff\x65\x51\x3b\xff\x64\x50\x3a\xff\x67\x52\x3c\
\xff\x69\x55\x3f\xff\x68\x55\x3f\xff\x67\x55\x3f\xff\x66\x53\x3c\
\xff\x6e\x59\x41\xff\x6d\x59\x42\xff\x6d\x59\x43\xff\x69\x56\x41\
\xff\x64\x53\x3f\xff\x61\x50\x3d\xff\x63\x51\x41\xff\x5a\x51\x47\
\xff\x45\x45\x3f\xff\x3a\x3a\x30\xff\x37\x38\x2e\xc3\x52\x53\x4d\
\x28\x3f\x3f\x37\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x9d\x9b\x9b\x00\xa3\xa4\xa6\x00\x3e\x24\x10\
\x00\x8d\x8e\x8f\x33\x7a\x77\x72\xaa\x71\x68\x5e\xf7\x71\x62\x55\
\xff\x71\x5f\x4f\xff\x70\x5f\x4d\xff\x77\x63\x50\xff\x74\x5e\x47\
\xff\x6f\x5a\x44\xff\x6f\x5c\x49\xff\x72\x5f\x4a\xff\x7a\x65\x4d\
\xff\x80\x6a\x52\xff\x84\x6b\x52\xff\x7a\x69\x57\xff\x6f\x64\x57\
\xff\x79\x61\x47\xff\x73\x5c\x41\xff\x76\x5e\x44\xff\x77\x5f\x45\
\xff\x75\x5d\x44\xff\x6d\x58\x3f\xff\x70\x5a\x43\xff\x76\x5e\x47\
\xff\x75\x5e\x47\xff\x71\x5b\x44\xff\x78\x61\x49\xff\x7a\x63\x4a\
\xff\x7b\x63\x49\xff\x7e\x65\x49\xff\x7d\x66\x4a\xff\x77\x61\x48\
\xff\x71\x5c\x44\xff\x6f\x5a\x43\xff\x67\x57\x47\xff\x4c\x47\x42\
\xff\x2d\x2d\x2b\xff\x45\x43\x3a\xff\x3f\x3d\x34\xff\x44\x44\x3d\
\xa9\x67\x6a\x66\x0e\x5c\x5d\x58\x00\x85\x7e\x7b\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xa4\xa2\xa1\x00\xa9\xa9\xa9\x00\xce\xd5\xdd\x05\x8b\x88\x86\
\x5e\x7a\x74\x6e\xdc\x74\x68\x5c\xff\x75\x64\x55\xff\x76\x64\x51\
\xff\x75\x61\x4d\xff\x7c\x65\x4f\xff\x79\x62\x4b\xff\x6f\x5b\x46\
\xff\x76\x62\x4d\xff\x84\x6b\x51\xff\x85\x6c\x51\xff\x8e\x74\x59\
\xff\x9c\x80\x63\xff\x9a\x7e\x62\xff\x88\x76\x63\xff\x7b\x6c\x5b\
\xff\x84\x6a\x4d\xff\x7f\x66\x49\xff\x81\x68\x4b\xff\x7f\x65\x4a\
\xff\x7d\x64\x49\xff\x83\x69\x4e\xff\x89\x6e\x53\xff\x88\x6d\x52\
\xff\x89\x6d\x52\xff\x86\x6b\x4f\xff\x8a\x6e\x53\xff\x8b\x71\x56\
\xff\x8f\x74\x58\xff\x92\x76\x57\xff\x93\x77\x57\xff\x8e\x75\x56\
\xff\x86\x6d\x52\xff\x7d\x69\x54\xff\x5f\x58\x52\xff\x25\x27\x27\
\xff\x1e\x20\x21\xff\x33\x34\x33\xff\x41\x3d\x33\xff\x45\x40\x36\
\xf7\x57\x51\x4a\x5d\x3b\x48\x47\x00\xb5\x8a\x7c\x00\xa1\xb9\xd0\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb7\xb3\xb2\
\x00\xb4\xb2\xb3\x00\xe0\xe9\xf4\x05\x93\x8e\x8a\x71\x83\x79\x71\
\xf1\x7d\x6e\x5f\xff\x78\x66\x54\xff\x78\x64\x51\xff\x7c\x67\x51\
\xff\x7e\x68\x4f\xff\x7a\x64\x4d\xff\x7a\x65\x4e\xff\x85\x6f\x56\
\xff\x8f\x75\x59\xff\x8b\x71\x54\xff\x93\x79\x5c\xff\x9e\x82\x63\
\xff\xa5\x86\x65\xff\x9e\x7f\x60\xff\x90\x7e\x6a\xff\x80\x70\x5f\
\xff\x8e\x71\x51\xff\x8e\x70\x50\xff\x90\x72\x52\xff\x8b\x6f\x51\
\xff\x8d\x71\x54\xff\x93\x77\x58\xff\x96\x79\x5a\xff\x94\x78\x5a\
\xff\x92\x75\x59\xff\x90\x73\x56\xff\x8c\x71\x53\xff\x97\x7b\x5b\
\xff\xa4\x86\x65\xff\x9f\x82\x62\xff\x97\x79\x57\xff\x9e\x80\x5c\
\xff\xa5\x88\x66\xff\x8a\x7c\x6d\xff\x3d\x3d\x3c\xff\x1e\x23\x25\
\xff\x23\x27\x29\xff\x21\x24\x26\xff\x3a\x5e\x6c\xff\x4e\x76\x84\
\xff\x59\x6c\x71\xbf\x6b\x72\x76\x18\x64\xa1\xbd\x00\xec\xc7\xd9\
\x00\x97\xc7\xea\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc6\xc5\xca\
\x00\x5c\x57\x48\x00\x94\x90\x8a\x56\x78\x75\x70\xf0\x7b\x71\x66\
\xff\x85\x71\x5d\xff\x80\x6b\x55\xff\x85\x6f\x57\xff\x89\x70\x56\
\xff\x89\x71\x57\xff\x8d\x75\x5a\xff\x93\x79\x5c\xff\x99\x7d\x5d\
\xff\x9b\x7e\x5e\xff\x9d\x7f\x5d\xff\x9a\x7c\x5b\xff\x94\x78\x57\
\xff\x90\x75\x55\xff\x97\x7a\x59\xff\x8d\x7c\x68\xff\x81\x71\x5d\
\xff\x8c\x6e\x4d\xff\x8f\x70\x4e\xff\x8f\x70\x4e\xff\x91\x72\x50\
\xff\x92\x72\x52\xff\x8c\x6f\x4f\xff\x8d\x71\x50\xff\x91\x74\x53\
\xff\x9b\x7d\x5c\xff\x9a\x7c\x5d\xff\x8e\x71\x51\xff\x9b\x79\x56\
\xff\xa9\x87\x60\xff\xae\x90\x6a\xff\x95\x78\x57\xff\x9f\x7c\x55\
\xff\xab\x91\x6e\xff\x78\x74\x6a\xff\x24\x27\x28\xff\x28\x2d\x2f\
\xff\x23\x27\x29\xff\x1f\x21\x22\xff\x38\x87\xa6\xff\x50\xcc\xfa\
\xff\x52\xbd\xe4\xfd\x58\xb6\xde\xab\x77\xc6\xef\x27\x33\xc7\xf8\
\x00\xc5\xc6\xe2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd2\xd3\xd5\x00\xa9\xa1\x9b\
\x00\xb4\xae\xa9\x1f\x89\x7f\x74\xcd\x6f\x64\x55\xff\x6e\x68\x5e\
\xff\x7f\x71\x62\xff\x8f\x76\x5c\xff\x98\x7c\x5f\xff\x9d\x7f\x62\
\xff\xa1\x83\x63\xff\xa1\x81\x5e\xff\x9a\x7a\x58\xff\x9a\x7b\x58\
\xff\xa1\x80\x5b\xff\x9d\x7d\x58\xff\x97\x78\x54\xff\x99\x79\x55\
\xff\x99\x79\x54\xff\x99\x78\x54\xff\x88\x78\x63\xff\x82\x73\x5e\
\xff\x95\x75\x52\xff\x8c\x6d\x4b\xff\x89\x68\x45\xff\x8c\x6a\x47\
\xff\x8e\x6d\x4a\xff\x8e\x6e\x4b\xff\x8b\x6d\x4c\xff\x8c\x6d\x4c\
\xff\x97\x77\x54\xff\xa1\x81\x5e\xff\x93\x75\x55\xff\x92\x72\x51\
\xff\x94\x72\x4e\xff\xa4\x80\x58\xff\xa0\x80\x5a\xff\x93\x71\x4b\
\xff\x9d\x89\x6d\xff\x44\x42\x39\xff\x17\x1c\x1d\xff\x29\x2e\x2f\
\xff\x27\x2a\x2a\xff\x22\x2a\x2e\xff\x41\xa2\xc5\xff\x52\xd0\xf8\
\xff\x51\xcf\xf5\xff\x4f\xcb\xf5\xff\x58\xc5\xf1\xbf\x87\xcb\xef\
\x1b\x74\xc7\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x00\x77\x61\x49\
\x00\xa5\x9a\x8f\x6d\x8b\x7c\x6b\xfd\x8a\x70\x54\xff\x7d\x69\x54\
\xff\x84\x78\x68\xff\x9e\x81\x61\xff\xa2\x83\x62\xff\xa6\x85\x60\
\xff\x99\x79\x55\xff\x99\x78\x54\xff\x97\x77\x53\xff\x9a\x7a\x56\
\xff\x9c\x7b\x55\xff\x99\x78\x53\xff\x9b\x79\x53\xff\x93\x73\x4e\
\xff\x91\x71\x4d\xff\x8e\x6e\x4a\xff\x91\x77\x58\xff\x95\x7a\x5a\
\xff\x9c\x7a\x55\xff\x93\x74\x51\xff\x8a\x6b\x48\xff\x87\x67\x46\
\xff\x82\x65\x44\xff\x84\x67\x47\xff\x8c\x6f\x4e\xff\x92\x74\x53\
\xff\x9d\x7e\x5b\xff\xa6\x86\x64\xff\xa1\x84\x64\xff\x99\x7f\x5f\
\xff\x99\x7c\x5b\xff\x93\x73\x51\xff\x8b\x69\x43\xff\x8d\x6d\x49\
\xff\x73\x63\x50\xff\x35\x28\x16\xff\x2d\x24\x18\xff\x1e\x24\x26\
\xff\x1d\x20\x20\xff\x23\x3a\x44\xff\x3d\xab\xd5\xff\x4d\xcb\xf4\
\xff\x54\xd0\xf4\xff\x53\xcf\xf4\xff\x50\xc9\xf3\xf9\x7b\xce\xf3\
\x59\x6c\xcb\xf2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9d\x94\x89\x00\xa6\x9d\x93\
\x1a\x92\x84\x75\xbf\x94\x7e\x66\xff\x99\x79\x57\xff\x92\x75\x55\
\xff\x8b\x7b\x66\xff\xa4\x85\x61\xff\xa4\x82\x5c\xff\x9b\x7d\x5b\
\xff\x9d\x80\x5d\xff\xa0\x81\x5c\xff\x9f\x80\x5b\xff\x9f\x7f\x5a\
\xff\x9d\x7e\x58\xff\xa1\x80\x59\xff\xa4\x82\x5b\xff\xa0\x80\x5a\
\xff\xa7\x85\x5d\xff\xa2\x80\x59\xff\xa1\x7e\x58\xff\x9d\x7b\x56\
\xff\x97\x77\x52\xff\x9b\x7a\x55\xff\x98\x78\x53\xff\x97\x77\x54\
\xff\x99\x7a\x57\xff\x96\x7a\x58\xff\x93\x78\x57\xff\x9b\x7d\x5b\
\xff\xa1\x81\x5e\xff\x9b\x7c\x5a\xff\x9b\x7d\x5a\xff\xa4\x85\x62\
\xff\xb0\x92\x6e\xff\xa7\x8a\x69\xff\x73\x58\x3d\xff\x67\x59\x47\
\xff\x5a\x57\x53\xff\x49\x52\x53\xff\x3a\x54\x5c\xff\x2f\x61\x7a\
\xff\x1c\x60\x84\xff\x1e\x70\xa1\xff\x25\x7e\xbe\xff\x36\xa4\xdc\
\xff\x41\xca\xf3\xff\x55\xd3\xf5\xff\x52\xcd\xf3\xfe\x70\xcd\xf3\
\x6f\x66\xcc\xf3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xa8\xd5\xf3\x00\xaa\xd6\xf3\x00\xa7\xd4\xf2\
\x00\xae\xd2\xf1\x00\xac\xd4\xf2\x00\x96\x88\x79\x00\xa0\x92\x82\
\x53\x83\x74\x64\xf6\x9b\x82\x66\xff\xa6\x82\x5c\xff\xa4\x80\x5b\
\xff\x94\x7c\x60\xff\xa4\x85\x60\xff\xa5\x87\x63\xff\xb3\x96\x6f\
\xff\xb3\x92\x68\xff\xad\x8b\x62\xff\xa9\x87\x5e\xff\xa1\x80\x59\
\xff\x9c\x7c\x56\xff\xa6\x83\x5b\xff\xa6\x84\x5c\xff\xa5\x82\x5b\
\xff\xa7\x84\x5c\xff\xa5\x82\x5a\xff\x9a\x7a\x55\xff\x97\x78\x54\
\xff\x90\x73\x51\xff\x90\x71\x4f\xff\x94\x74\x4f\xff\x98\x77\x53\
\xff\x9f\x7e\x5a\xff\x9b\x7c\x59\xff\x97\x79\x56\xff\x99\x78\x55\
\xff\x96\x74\x52\xff\x8e\x6e\x4c\xff\x89\x6a\x48\xff\x88\x68\x46\
\xff\x7e\x61\x40\xff\x7d\x60\x42\xff\x62\x53\x41\xff\x3d\x7b\x95\
\xff\x38\x9b\xc4\xff\x35\xa3\xd1\xff\x32\xa8\xdb\xff\x2f\xaa\xe2\
\xff\x2c\xab\xe6\xff\x22\xa5\xe6\xff\x1c\x8a\xd4\xff\x26\x99\xd7\
\xff\x3f\xce\xf4\xff\x5b\xd7\xf6\xff\x57\xcf\xf4\xfe\x71\xcf\xf3\
\x6f\x68\xce\xf3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x7b\xd6\xf5\x00\x8b\xd8\xf5\x00\xff\xff\xed\x00\xff\xe7\xf3\
\x05\x0a\xa2\xec\x00\x61\xb7\xeb\x00\x83\x79\x6d\x00\x8f\x7f\x6e\
\x15\x70\x77\x75\xae\x74\x86\x86\xff\x89\x89\x7d\xff\x89\x84\x77\
\xff\x85\x80\x72\xff\x9b\x83\x63\xff\xad\x8a\x60\xff\xa6\x85\x5b\
\xff\xa2\x7f\x58\xff\xa2\x80\x58\xff\xa6\x84\x5b\xff\xa1\x80\x59\
\xff\xa5\x84\x5d\xff\xa7\x84\x5c\xff\x96\x77\x53\xff\x8f\x75\x55\
\xff\x9a\x81\x60\xff\x91\x79\x5a\xff\x7c\x67\x4d\xff\x74\x60\x48\
\xff\x7d\x69\x50\xff\x8e\x76\x58\xff\x8b\x76\x5c\xff\x7d\x68\x4f\
\xff\x81\x63\x42\xff\x98\x78\x53\xff\x9c\x7c\x5a\xff\x9e\x7e\x5c\
\xff\x9b\x7c\x5b\xff\x98\x7a\x5a\xff\x90\x75\x56\xff\x88\x6d\x50\
\xff\x7b\x62\x46\xff\x84\x68\x4c\xff\x72\x6e\x64\xff\x40\xa9\xd3\
\xff\x41\xc0\xef\xff\x41\xbd\xec\xff\x3e\xbb\xec\xff\x3a\xb9\xec\
\xff\x36\xb7\xed\xff\x2a\xb2\xed\xff\x1a\x96\xdc\xff\x24\xa5\xde\
\xff\x50\xd4\xf6\xff\x62\xd9\xf6\xff\x5a\xcf\xf4\xfb\x7f\xd2\xf4\
\x64\x72\xd0\xf4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x91\xe0\xf8\
\x00\x88\xda\xf6\x00\x90\xd9\xf5\x0f\x69\xcf\xf4\x74\x57\xc2\xf1\
\x9f\x52\xb3\xee\x67\x6e\xb7\xea\x18\x0f\xa8\xf0\x00\x37\x9d\xc9\
\x00\x7d\xcb\xef\x7b\x59\xc1\xeb\xff\x57\xc0\xe6\xff\x5b\xc0\xe3\
\xff\x5d\xb3\xcf\xff\x8b\x81\x6b\xff\xa7\x84\x5c\xff\xab\x8b\x63\
\xff\xaf\x8e\x63\xff\xae\x8c\x62\xff\xaa\x8a\x60\xff\xa6\x85\x5c\
\xff\xa2\x80\x57\xff\x93\x75\x51\xff\x8d\x7b\x60\xff\xa5\x87\x61\
\xff\x82\x67\x48\xff\x35\x29\x1c\xff\x6d\x56\x3b\xff\x66\x50\x37\
\xff\x26\x1c\x12\xff\x6a\x52\x38\xff\xa5\x84\x5e\xff\x8f\x7d\x64\
\xff\x79\x63\x49\xff\x7c\x5f\x3f\xff\x9b\x7d\x5a\xff\xa1\x82\x60\
\xff\x9b\x7d\x5d\xff\x99\x7a\x5b\xff\x8f\x73\x55\xff\x88\x6c\x4f\
\xff\x81\x66\x4a\xff\x79\x5e\x43\xff\x62\x65\x5f\xff\x4a\xb6\xde\
\xff\x4a\xc6\xf4\xff\x48\xc4\xf1\xff\x47\xc1\xf1\xff\x42\xbf\xf1\
\xff\x3b\xbe\xf1\xff\x2f\xb8\xf0\xff\x1c\x9f\xe0\xff\x2f\xb8\xe9\
\xff\x59\xd7\xf6\xff\x5e\xd8\xf6\xff\x59\xce\xf4\xf0\x90\xd6\xf5\
\x42\x7b\xd2\xf4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9f\xe2\xf8\
\x00\xda\xef\xfb\x04\x74\xd9\xf5\x83\x5b\xd3\xf5\xfb\x4e\xcb\xf3\
\xff\x40\xc0\xf1\xfb\x38\xb4\xee\xbe\x44\xa9\xe7\x36\xff\xff\xff\
\x00\x6c\xcb\xf0\x95\x59\xcf\xf4\xff\x62\xd6\xf7\xff\x65\xd9\xf9\
\xff\x66\xd0\xed\xff\x97\x94\x80\xff\xaf\x8a\x5f\xff\xaf\x8e\x64\
\xff\xac\x8a\x60\xff\xac\x8a\x60\xff\xac\x8b\x61\xff\xae\x8a\x5f\
\xff\x97\x73\x4b\xff\x8c\x77\x5a\xff\xa5\x88\x63\xff\x9d\x7b\x54\
\xff\x33\x27\x1b\xff\x6b\x54\x39\xff\x7d\x63\x44\xff\x87\x6a\x49\
\xff\x6f\x56\x3b\xff\x32\x26\x1a\xff\x9c\x7b\x55\xff\x9f\x87\x67\
\xff\x7c\x6b\x55\xff\x77\x5b\x3d\xff\x99\x7b\x5a\xff\x9b\x7d\x5b\
\xff\x94\x76\x56\xff\x94\x74\x54\xff\x88\x69\x4a\xff\x7e\x62\x44\
\xff\x7c\x5f\x42\xff\x78\x5b\x3f\xff\x6b\x6e\x67\xff\x50\xbc\xe3\
\xff\x4d\xc8\xf4\xff\x4a\xc6\xf2\xff\x48\xc3\xf2\xff\x44\xc1\xf1\
\xff\x3e\xbf\xf1\xff\x32\xb8\xf0\xff\x1d\xa4\xe0\xff\x3d\xc5\xef\
\xff\x61\xd8\xf6\xff\x5b\xd5\xf5\xff\x61\xce\xf4\xd2\x96\xd5\xf4\
\x1a\x84\xd2\xf4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc1\xeb\xf8\x00\x85\xe0\xf7\
\x00\x90\xe2\xf8\x36\x68\xdb\xf6\xe8\x5f\xd7\xf5\xff\x4a\xce\xf4\
\xff\x55\xd0\xf4\xff\x39\xc4\xf3\xff\x20\xaf\xee\xd0\x3f\xa3\xe4\
\x3f\x58\xc6\xed\x98\x54\xd0\xf4\xff\x64\xd8\xf6\xff\x67\xdc\xf8\
\xff\x69\xd0\xea\xff\x8c\x8a\x78\xff\xa7\x84\x5b\xff\xae\x8b\x62\
\xff\xa8\x86\x5d\xff\xac\x88\x5f\xff\xb2\x8e\x62\xff\xb5\x90\x64\
\xff\xa1\x7d\x55\xff\x91\x81\x66\xff\xae\x8c\x63\xff\x81\x64\x43\
\xff\x63\x4d\x34\xff\x95\x75\x50\xff\x1e\x17\x0f\xff\x4f\x3c\x28\
\xff\x7a\x5f\x41\xff\x4d\x3b\x28\xff\x9c\x79\x54\xff\x9a\x81\x62\
\xff\x81\x6d\x54\xff\x79\x5d\x3f\xff\x9b\x7d\x5c\xff\x97\x79\x58\
\xff\x8f\x72\x51\xff\x8a\x6d\x4d\xff\x88\x6a\x4b\xff\x81\x65\x46\
\xff\x7a\x5e\x41\xff\x75\x59\x3d\xff\x65\x6a\x64\xff\x50\xbd\xe4\
\xff\x4f\xc9\xf4\xff\x4b\xc6\xf2\xff\x48\xc5\xf2\xff\x45\xc3\xf2\
\xff\x42\xc0\xf1\xff\x35\xb8\xf0\xff\x25\xae\xe7\xff\x4f\xcc\xf3\
\xff\x62\xd7\xf6\xff\x58\xd0\xf4\xff\x6b\xcd\xf3\x94\xff\xfc\xfa\
\x03\xb7\xde\xf6\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x76\x77\x78\x00\xd1\xee\xf4\x00\x00\xa4\xea\
\x00\x7c\xde\xf7\x7d\x68\xdb\xf6\xff\x55\xd4\xf5\xff\x26\xbc\xef\
\xfc\x53\xcd\xf2\xff\x5b\xd4\xf5\xff\x2d\xbf\xf2\xff\x1b\xa4\xe8\
\xcd\x3d\xae\xe0\xb8\x53\xd3\xf4\xff\x62\xd9\xf6\xff\x65\xdd\xf8\
\xff\x69\xcf\xe8\xff\x95\x90\x7c\xff\xa9\x85\x5c\xff\xab\x87\x5e\
\xff\xa9\x85\x5c\xff\xaa\x86\x5c\xff\xb0\x8b\x60\xff\xaa\x87\x5e\
\xff\xa0\x7c\x54\xff\x9a\x86\x69\xff\xa8\x88\x60\xff\x8f\x70\x4c\
\xff\x3b\x2d\x1e\xff\x87\x69\x49\xff\x6c\x55\x3a\xff\x79\x5f\x41\
\xff\x43\x33\x23\xff\x54\x41\x2c\xff\xa3\x7f\x58\xff\x98\x80\x62\
\xff\x82\x6d\x53\xff\x76\x5b\x3e\xff\x99\x7b\x59\xff\x96\x78\x56\
\xff\x8f\x72\x51\xff\x8e\x71\x52\xff\x90\x73\x55\xff\x85\x69\x4c\
\xff\x74\x5a\x3e\xff\x72\x59\x3d\xff\x62\x66\x60\xff\x4d\xbb\xe3\
\xff\x4b\xc9\xf5\xff\x4b\xc7\xf2\xff\x4b\xc5\xf2\xff\x47\xc3\xf2\
\xff\x47\xc0\xf1\xff\x3c\xba\xf0\xff\x32\xb8\xef\xff\x55\xcd\xf3\
\xff\x5a\xd3\xf5\xff\x59\xcb\xf3\xef\x84\xd2\xf4\x44\x73\xce\xf3\
\x00\x44\xbf\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x65\x69\x68\x00\x8c\xc8\xdf\x00\xbf\xff\xff\
\x0c\x6b\xdb\xfd\xb8\x61\xd7\xf9\xff\x40\xca\xf4\xff\x26\xb5\xed\
\xb7\x52\xcb\xf2\xca\x62\xd8\xf6\xff\x52\xd0\xf4\xff\x26\xb7\xef\
\xff\x26\xab\xe5\xfa\x50\xd2\xf5\xfe\x5f\xd9\xf6\xff\x65\xdc\xf8\
\xff\x68\xcd\xe6\xff\x90\x87\x73\xff\xa6\x81\x57\xff\xa8\x86\x5e\
\xff\xa7\x85\x5c\xff\xa9\x85\x5c\xff\xa9\x85\x5c\xff\xa6\x83\x5a\
\xff\x9b\x79\x51\xff\x91\x81\x65\xff\xa7\x85\x5c\xff\xb0\x8b\x5e\
\xff\x63\x4d\x34\xff\x3a\x2c\x1e\xff\x81\x66\x46\xff\x50\x3e\x29\
\xff\x4d\x3b\x28\xff\x98\x76\x51\xff\xa5\x81\x58\xff\x9d\x86\x68\
\xff\x79\x69\x53\xff\x78\x5c\x3e\xff\x94\x75\x53\xff\x93\x73\x51\
\xff\x8d\x6d\x4c\xff\x87\x69\x4a\xff\x88\x6c\x4e\xff\x7d\x65\x49\
\xff\x5b\x4f\x3c\xff\x57\x4b\x39\xff\x5c\x5e\x56\xff\x46\xa7\xcc\
\xff\x42\xbe\xee\xff\x46\xc3\xf3\xff\x4a\xc3\xf2\xff\x49\xc2\xf1\
\xff\x47\xc1\xf1\xff\x43\xbd\xf1\xff\x3d\xbe\xf1\xff\x4a\xc8\xf3\
\xff\x4e\xca\xf3\xff\x68\xca\xf2\xbc\xb8\xdc\xf5\x10\x9c\xd6\xf4\
\x00\xe6\xec\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x6c\x6f\x6e\x00\x7c\x76\x70\x0a\x47\x55\x5b\
\x79\x3d\x81\x9c\xef\x3d\xa2\xca\xff\x27\xb1\xe9\xfb\x2d\xb3\xf4\
\x60\x62\xd2\xf4\x4a\x56\xd4\xf5\xee\x64\xd9\xf6\xff\x4f\xce\xf4\
\xff\x36\xc3\xf2\xff\x4e\xd1\xf4\xff\x5f\xd8\xf6\xff\x64\xda\xf8\
\xff\x68\xca\xe5\xff\x90\x87\x72\xff\x9a\x7a\x55\xff\xa3\x84\x5d\
\xff\xa5\x83\x59\xff\xa8\x85\x5b\xff\xa8\x85\x5c\xff\xa7\x82\x58\
\xff\x98\x75\x4f\xff\x8e\x7d\x63\xff\xa1\x83\x5e\xff\xa5\x86\x61\
\xff\x9f\x82\x5f\xff\x80\x6a\x4e\xff\x77\x61\x48\xff\x7f\x68\x4d\
\xff\x91\x77\x58\xff\x92\x77\x58\xff\x8d\x72\x53\xff\x8b\x75\x59\
\xff\x6d\x58\x40\xff\x79\x5c\x3d\xff\x8c\x6e\x4d\xff\x90\x72\x53\
\xff\x87\x6b\x4d\xff\x6d\x56\x3d\xff\x65\x4d\x33\xff\x70\x5a\x3e\
\xff\x53\x4e\x41\xff\x3f\x3d\x36\xff\x57\x4f\x42\xff\x63\x68\x63\
\xff\x53\x76\x81\xff\x48\x8e\xad\xff\x44\xaa\xd9\xff\x44\xba\xee\
\xff\x45\xbe\xf1\xff\x45\xbd\xf0\xff\x45\xbe\xf0\xff\x48\xc2\xf1\
\xff\x53\xc2\xf1\xff\x88\xcc\xf0\x99\xff\xff\xff\x03\xe8\xed\xf6\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x68\x6a\x6b\x00\x78\x7b\x7c\x1b\x3f\x43\x44\
\xdc\x2e\x33\x34\xff\x22\x31\x37\xff\x0d\x35\x4b\xf9\x28\x47\x5b\
\x79\xd1\xc8\xcf\x08\x63\xd5\xf6\x79\x5a\xd6\xf5\xf7\x5e\xd8\xf6\
\xff\x46\xce\xf4\xff\x4f\xd0\xf4\xff\x5c\xd6\xf5\xff\x5c\xd8\xf9\
\xff\x60\xc2\xdf\xff\x7f\x7a\x6b\xff\x7d\x70\x5c\xff\x89\x6d\x4b\
\xff\x96\x76\x51\xff\xa2\x82\x5c\xff\x9f\x7e\x58\xff\x95\x75\x50\
\xff\x95\x73\x4e\xff\x8b\x6e\x4c\xff\x8a\x6c\x49\xff\x89\x6b\x48\
\xff\x8b\x6c\x49\xff\x93\x72\x4c\xff\x95\x73\x4d\xff\x90\x6f\x4a\
\xff\x8d\x6b\x48\xff\x86\x66\x43\xff\x7f\x60\x3e\xff\x7d\x5e\x3c\
\xff\x80\x5f\x3d\xff\x7f\x5f\x3e\xff\x82\x62\x41\xff\x84\x65\x46\
\xff\x7f\x62\x44\xff\x73\x59\x3f\xff\x6a\x52\x37\xff\x69\x5c\x49\
\xff\x4c\x45\x38\xff\x39\x34\x2b\xff\x58\x45\x30\xff\x72\x55\x39\
\xff\x6d\x54\x3b\xff\x69\x57\x46\xff\x60\x65\x63\xff\x4d\x7b\x90\
\xff\x43\xa0\xca\xff\x41\xb4\xe8\xff\x45\xbb\xef\xff\x47\xbc\xee\
\xff\x5e\xbe\xec\xff\xaa\xd1\xed\x9e\xff\xff\xff\x05\xf3\xf4\xf8\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x77\x7d\x7f\x00\x65\x69\x6b\x00\x78\x7b\x7d\x26\x3b\x40\x41\
\xe3\x32\x38\x39\xff\x1f\x26\x28\xff\x06\x11\x18\xff\x25\x31\x3a\
\x8b\xff\xff\xff\x02\xb7\xe7\xfc\x0a\x66\xd4\xf5\x8a\x52\xd3\xf5\
\xfb\x4b\xcf\xf4\xff\x4f\xcf\xf4\xff\x53\xd3\xf7\xff\x55\xc5\xe8\
\xff\x71\x97\x9f\xff\x57\x53\x47\xff\x59\x53\x44\xff\x79\x63\x46\
\xff\x8e\x6f\x4c\xff\x95\x74\x50\xff\x96\x74\x51\xff\x95\x77\x57\
\xff\x91\x7a\x5d\xff\x8a\x7c\x63\xff\x85\x7f\x6a\xff\x81\x81\x70\
\xff\x7f\x83\x75\xff\x82\x88\x7b\xff\x86\x8f\x82\xff\x7f\x8e\x84\
\xff\x7d\x8d\x84\xff\x7a\x8d\x85\xff\x79\x8f\x8a\xff\x76\x8a\x85\
\xff\x76\x88\x82\xff\x76\x84\x7c\xff\x76\x80\x76\xff\x6d\x72\x69\
\xff\x70\x6f\x63\xff\x6f\x69\x5d\xff\x72\x67\x57\xff\x63\x61\x58\
\xff\x67\x5f\x53\xff\x5f\x59\x50\xff\x64\x5a\x4c\xff\x65\x51\x3b\
\xff\x63\x4d\x34\xff\x64\x4d\x34\xff\x66\x4e\x36\xff\x68\x53\x3f\
\xff\x5f\x5b\x54\xff\x4f\x6d\x79\xff\x47\x8e\xaf\xff\x46\xa6\xd5\
\xff\x6b\xba\xe7\xff\xb3\xd4\xee\xa3\xff\xff\xfd\x07\xe4\xec\xf5\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\xd2\xd3\
\x00\x95\x9b\x9e\x00\xff\xff\xff\x02\x50\x55\x57\x7a\x2a\x2f\x31\
\xfb\x2b\x31\x32\xff\x16\x1e\x22\xff\x10\x1c\x23\xdc\x47\x51\x58\
\x2c\x3b\x44\x4b\x00\x86\xd9\xf7\x00\x9c\xdc\xf6\x10\x61\xd0\xf4\
\xac\x4c\xcb\xf3\xff\x4b\xcd\xf7\xff\x54\xba\xda\xff\x80\x90\x88\
\xff\x97\x7b\x59\xff\x50\x47\x36\xff\x5b\x52\x43\xff\x78\x6a\x56\
\xff\x84\x71\x57\xff\x7d\x86\x7a\xff\x71\x9a\x9d\xff\x68\xad\xbc\
\xff\x61\xb9\xd0\xff\x60\xc2\xde\xff\x5f\xc8\xe8\xff\x60\xcb\xec\
\xff\x60\xcd\xef\xff\x60\xcf\xf0\xff\x5f\xcf\xf2\xff\x5f\xd1\xf3\
\xff\x60\xd2\xf3\xff\x60\xd2\xf3\xff\x5d\xd1\xf4\xff\x5a\xd0\xf3\
\xff\x58\xce\xf2\xff\x59\xcb\xf0\xff\x56\xc8\xed\xff\x54\xc4\xe9\
\xff\x55\xc1\xe5\xff\x55\xbb\xdd\xff\x59\xb5\xd4\xff\x54\xa9\xc3\
\xff\x56\xa9\xc1\xff\x53\xaa\xc8\xff\x52\xa5\xc4\xff\x56\x8d\x9e\
\xff\x59\x73\x77\xff\x5d\x5c\x54\xff\x61\x50\x40\xff\x68\x51\x3b\
\xff\x68\x50\x39\xff\x62\x4c\x36\xff\x5e\x50\x42\xff\x5b\x5f\x5e\
\xff\x67\x82\x91\xff\x86\x9e\xb0\xbc\x95\x98\x9a\x0f\x8f\x99\xa0\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0e\x12\x1a\
\x00\x50\x55\x58\x00\x66\x6b\x6e\x3d\x2f\x35\x37\xe8\x21\x26\x28\
\xff\x1d\x23\x25\xff\x0f\x1b\x21\xff\x15\x28\x34\xd1\x59\x68\x75\
\x1e\x47\x58\x64\x00\x2a\x9d\xc2\x00\x6d\xce\xf3\x00\x8c\xd5\xf4\
\x37\x57\xca\xf5\xe7\x51\xb0\xd0\xff\x88\x8a\x7b\xff\x9f\x7c\x56\
\xff\xa1\x81\x5c\xff\x89\x7a\x64\xff\x7b\x7a\x6d\xff\x6c\x87\x86\
\xff\x5d\xac\xc2\xff\x55\xc9\xeb\xff\x59\xd5\xf8\xff\x5f\xda\xf9\
\xff\x65\xdc\xf9\xff\x67\xdf\xfb\xff\x66\xe0\xfd\xff\x64\xde\xfb\
\xff\x62\xdc\xf8\xff\x63\xdc\xf8\xff\x63\xdd\xfa\xff\x62\xde\xfc\
\xff\x63\xde\xfc\xff\x65\xde\xfa\xff\x66\xdc\xf9\xff\x66\xda\xf7\
\xff\x66\xd9\xf6\xff\x65\xd8\xf6\xff\x64\xd8\xf6\xff\x62\xd7\xf7\
\xff\x5f\xd7\xf7\xff\x5e\xd5\xf7\xff\x59\xd4\xf8\xff\x56\xd4\xf9\
\xff\x53\xd2\xf8\xff\x51\xd0\xf7\xff\x50\xcd\xf7\xff\x4c\xca\xf6\
\xff\x4c\xc0\xeb\xff\x4c\xac\xd1\xff\x50\x8b\x9f\xff\x57\x6a\x6e\
\xff\x5e\x57\x4f\xff\x5e\x4d\x3d\xff\x5f\x49\x36\xff\x61\x4c\x38\
\xff\x63\x54\x47\xff\x79\x75\x73\xd0\xaa\xab\xab\x16\x9c\x9c\x9b\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x90\x94\
\x00\xec\xee\xf4\x05\x46\x4a\x4d\x9c\x2b\x30\x33\xff\x2a\x30\x32\
\xff\x1f\x25\x28\xff\x1e\x25\x29\xff\x0a\x1d\x29\xfe\x2b\x40\x4e\
\x7e\xff\xff\xff\x01\x87\x93\x98\x00\xb0\xdd\xf7\x00\xf0\xff\xff\
\x06\x6f\xaa\xc4\xa8\x78\x7c\x6f\xff\x9e\x7c\x55\xff\x9c\x7d\x5b\
\xff\x81\x83\x77\xff\x54\xa1\xb9\xff\x51\xb9\xd7\xff\x58\xcf\xf0\
\xff\x5f\xd9\xf9\xff\x66\xdc\xf8\xff\x6a\xdd\xf7\xff\x6b\xdf\xf8\
\xff\x68\xde\xf8\xff\x50\xbb\xd7\xff\x3b\x86\xa4\xff\x2b\x65\x85\
\xff\x25\x57\x79\xff\x24\x55\x79\xff\x28\x5f\x81\xff\x30\x71\x90\
\xff\x37\x84\xa0\xff\x47\xa3\xbd\xff\x57\xc2\xe2\xff\x5e\xd8\xf4\
\xff\x64\xde\xfb\xff\x66\xdb\xf8\xff\x66\xda\xf6\xff\x66\xda\xf6\
\xff\x65\xd9\xf6\xff\x64\xd7\xf6\xff\x5f\xd6\xf5\xff\x5a\xd4\xf5\
\xff\x57\xd2\xf5\xff\x53\xd0\xf4\xff\x51\xcf\xf4\xff\x50\xcd\xf4\
\xff\x4f\xcb\xf4\xff\x4d\xca\xf6\xff\x4b\xc6\xf5\xff\x4a\xbc\xe8\
\xff\x4a\xa5\xc9\xff\x4f\x88\x9e\xff\x58\x6d\x74\xff\x59\x57\x52\
\xff\x5d\x52\x49\xff\x89\x7f\x78\xda\xbf\xbb\xb9\x1c\xb0\xab\xa7\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x62\x66\x69\
\x00\x70\x75\x78\x32\x30\x35\x38\xe6\x2b\x30\x32\xff\x2d\x32\x33\
\xff\x17\x1d\x1d\xff\x27\x2c\x2d\xff\x14\x1f\x25\xff\x10\x24\x30\
\xd8\x4a\x5e\x6a\x24\x3a\x4e\x59\x00\x8a\x83\x76\x00\x8a\x88\x81\
\x23\x88\x76\x5e\xc8\x98\x79\x54\xff\x91\x79\x5c\xff\x6f\x89\x8b\
\xff\x3f\xac\xd2\xff\x47\xcb\xf4\xff\x5f\xd9\xf9\xff\x67\xdc\xf7\
\xff\x6a\xdd\xf7\xff\x6c\xde\xf7\xff\x6e\xdf\xf9\xff\x63\xd5\xef\
\xff\x38\x7d\x98\xff\x21\x32\x4d\xff\x16\x17\x34\xff\x2f\x2d\x48\
\xff\x4a\x48\x5f\xff\x50\x4f\x67\xff\x26\x24\x42\xff\x1b\x1a\x34\
\xff\x3c\x3e\x4c\xff\x38\x3f\x4e\xff\x2d\x3d\x5f\xff\x22\x4e\x69\
\xff\x34\x82\x9e\xff\x51\xc1\xe0\xff\x5f\xd9\xf8\xff\x65\xda\xf6\
\xff\x64\xd9\xf6\xff\x62\xd8\xf6\xff\x5e\xd7\xf6\xff\x5b\xd5\xf5\
\xff\x57\xd3\xf5\xff\x55\xd1\xf4\xff\x54\xcf\xf4\xff\x52\xce\xf4\
\xff\x50\xcb\xf3\xff\x4f\xc9\xf3\xff\x4f\xc7\xf2\xff\x4e\xc7\xf3\
\xff\x4a\xc7\xf5\xff\x49\xc3\xf3\xff\x4b\xb7\xe5\xff\x4e\xa0\xc6\
\xff\x59\x80\x96\xff\x79\x84\x8d\xc8\xad\xab\xac\x14\x9e\x9f\xa3\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\
\x03\x50\x55\x57\x8c\x1e\x25\x27\xff\x15\x1c\x1e\xff\x13\x18\x19\
\xff\x0e\x12\x12\xff\x10\x13\x12\xfc\x1a\x1e\x1f\xfb\x0e\x19\x1f\
\xfe\x27\x38\x44\x87\xca\xd3\xdc\x03\x6f\x63\x52\x00\x83\x78\x69\
\x71\x83\x6a\x4c\xff\x88\x6f\x53\xff\x5f\x84\x8d\xff\x33\xaf\xdc\
\xff\x48\xca\xf4\xff\x5f\xd8\xf6\xff\x66\xdc\xf6\xff\x6a\xdd\xf7\
\xff\x6c\xdd\xf7\xff\x6e\xde\xf8\xff\x66\xdc\xf5\xff\x40\x7f\x8f\
\xff\x7f\x7d\x82\xff\xb6\xb4\xb6\xff\xad\xae\xb4\xff\xdc\xdc\xde\
\xff\xef\xef\xf0\xff\xf0\xf0\xf2\xff\xc4\xc4\xc8\xff\xc3\xc3\xc9\
\xff\xea\xea\xea\xff\xe4\xe3\xe4\xff\xc5\xc3\xc9\xff\x73\x71\x7c\
\xff\x7a\x79\x85\xff\x89\x9f\xab\xff\x79\xc8\xde\xff\x5e\xd8\xf7\
\xff\x62\xd8\xf6\xff\x61\xd7\xf6\xff\x5e\xd6\xf5\xff\x5b\xd5\xf5\
\xff\x58\xd2\xf5\xff\x54\xd1\xf4\xff\x54\xcf\xf4\xff\x52\xce\xf4\
\xff\x52\xcb\xf3\xff\x4e\xc9\xf3\xff\x4e\xc8\xf3\xff\x4d\xc7\xf2\
\xff\x4c\xc5\xf2\xff\x4f\xc3\xf1\xff\x4f\xc1\xef\xff\x54\xbe\xed\
\xff\x6f\xbe\xe8\xff\xa4\xcd\xea\xb9\xef\xee\xf8\x0e\xd4\xe3\xf3\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x86\x89\x8b\
\x2b\x38\x3c\x3f\xdb\x18\x1f\x22\xff\x06\x0d\x11\xff\x09\x0c\x0c\
\xff\x0f\x15\x16\xff\x12\x14\x13\xe3\x21\x24\x24\xde\x21\x27\x29\
\xff\x17\x1f\x23\xdf\x42\x48\x4a\x24\x68\x60\x55\x00\x9c\x8c\x7b\
\x49\x7d\x6b\x57\xf2\x57\x79\x86\xff\x32\xaa\xd9\xff\x46\xc9\xf2\
\xff\x5b\xd4\xf5\xff\x64\xda\xf6\xff\x69\xdc\xf7\xff\x69\xdd\xf7\
\xff\x6c\xdd\xf6\xff\x6e\xe0\xfa\xff\x46\xad\xc4\xff\x47\x51\x55\
\xff\xbb\xba\xba\xff\xcf\xd0\xd1\xff\xd4\xd3\xd3\xff\xe5\xe4\xe4\
\xff\xe6\xe5\xe5\xff\xe1\xe1\xe1\xff\xd8\xd6\xd7\xff\xe2\xe0\xe0\
\xff\xea\xe6\xe6\xff\xf0\xec\xeb\xff\xf2\xef\xee\xff\xe2\xe2\xe1\
\xff\xe6\xe6\xe6\xff\xdd\xda\xd9\xff\xc6\xc7\xc8\xff\x82\xc3\xd6\
\xff\x5b\xd5\xf5\xff\x60\xd6\xf5\xff\x5d\xd5\xf5\xff\x59\xd4\xf5\
\xff\x57\xd2\xf5\xff\x53\xd1\xf4\xff\x53\xcf\xf4\xff\x51\xcd\xf3\
\xff\x4f\xcb\xf3\xff\x4c\xc9\xf3\xff\x4c\xc8\xf2\xff\x4b\xc6\xf2\
\xff\x4e\xc5\xf2\xff\x50\xc3\xf1\xff\x4f\xc1\xf0\xff\x57\xbe\xec\
\xff\x73\xc1\xea\xff\xa6\xcf\xec\xbb\xea\xea\xf3\x0f\xd3\xe1\xf1\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x84\x85\
\x41\x35\x3a\x3b\xec\x24\x2a\x2c\xff\x07\x0f\x13\xff\x0a\x0d\x0d\
\xff\x10\x16\x18\xff\x13\x16\x16\xde\x2d\x31\x30\xb9\x2a\x2f\x30\
\xff\x1b\x24\x2a\xd4\x3f\x47\x4e\x21\x5b\x5e\x60\x00\xaf\xa6\x9d\
\x15\x54\x54\x54\xce\x26\x74\x98\xff\x48\xc4\xf1\xff\x58\xd1\xf4\
\xff\x63\xd7\xf6\xff\x66\xdb\xf6\xff\x67\xdc\xf7\xff\x67\xdc\xf7\
\xff\x68\xdb\xf6\xff\x67\xdc\xf9\xff\x42\xac\xc8\xff\x45\x91\xaa\
\xff\x69\xc1\xdd\xff\x6e\xc5\xe1\xff\x75\xc8\xe1\xff\x7f\xd0\xe8\
\xff\x81\xd1\xe7\xff\x80\xcf\xe5\xff\x7e\xcc\xe1\xff\x87\xcb\xdf\
\xff\x92\xca\xdc\xff\xa1\xcb\xd9\xff\xb3\xcd\xd6\xff\xba\xc6\xcb\
\xff\xcb\xcd\xce\xff\xd0\xce\xce\xff\xc4\xbf\xbe\xff\x9a\x9b\x9b\
\xff\x5a\xb2\xcc\xff\x56\xd3\xf8\xff\x57\xd2\xf4\xff\x54\xd1\xf4\
\xff\x54\xd0\xf4\xff\x52\xcf\xf4\xff\x52\xce\xf4\xff\x4f\xcc\xf3\
\xff\x4d\xcb\xf3\xff\x4d\xc9\xf3\xff\x4c\xc7\xf2\xff\x4c\xc6\xf2\
\xff\x4d\xc4\xf2\xff\x4e\xc3\xf1\xff\x50\xc1\xf0\xff\x59\xbe\xed\
\xff\x73\xc1\xeb\xff\xa5\xd0\xec\xb8\xe9\xea\xf3\x0e\xd0\xe1\xf1\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x86\x88\x87\
\x0e\x4c\x50\x4f\x8c\x34\x38\x38\xd5\x2f\x34\x36\xc2\x20\x25\x25\
\xfa\x23\x29\x2c\xff\x0b\x16\x1c\xed\x3a\x42\x47\x57\x45\x49\x49\
\x72\x4a\x52\x57\x41\xa9\xdf\xff\x01\x89\x90\x97\x00\xff\xff\xff\
\x03\x3b\x3f\x42\x52\x53\x92\xaf\xd0\x5e\xce\xf5\xff\x5e\xd4\xf5\
\xff\x65\xd9\xf6\xff\x65\xdb\xf6\xff\x64\xdb\xf6\xff\x66\xda\xf6\
\xff\x62\xd7\xf6\xff\x58\xd2\xf5\xff\x4f\xcb\xf5\xff\x4a\xc5\xf4\
\xff\x44\xc0\xef\xff\x43\xc4\xf0\xff\x49\xca\xf3\xff\x52\xd0\xf5\
\xff\x5d\xd6\xf6\xff\x64\xd9\xf7\xff\x64\xda\xf7\xff\x61\xd8\xf7\
\xff\x5a\xd4\xf6\xff\x54\xcf\xf4\xff\x51\xc9\xef\xff\x56\xc1\xe7\
\xff\x60\xbb\xde\xff\x70\xb7\xd5\xff\x7c\xab\xc0\xff\x66\x76\x7f\
\xff\x40\x67\x78\xff\x44\xc0\xee\xff\x4c\xc8\xf3\xff\x4d\xca\xf3\
\xff\x50\xcb\xf3\xff\x50\xcb\xf3\xff\x50\xcb\xf3\xff\x4d\xcb\xf3\
\xff\x4c\xca\xf3\xff\x4d\xc9\xf3\xff\x4e\xc7\xf2\xff\x4d\xc6\xf2\
\xff\x4c\xc4\xf2\xff\x4f\xc2\xf1\xff\x51\xc0\xf0\xff\x5a\xbe\xed\
\xff\x73\xc2\xeb\xff\xa4\xce\xec\xb4\xe2\xe2\xee\x0c\xca\xda\xed\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x73\x72\
\x00\x94\x96\x96\x08\x63\x66\x66\x17\x7a\x7c\x7c\x3d\x3c\x3f\x3f\
\xe4\x28\x2e\x2f\xff\x1f\x2a\x30\xc1\x50\x5f\x6c\x18\x1a\x22\x25\
\x00\x24\x2f\x35\x00\x68\x79\x8c\x00\x77\x7e\x84\x00\xd1\xd3\xd6\
\x00\x34\x79\x96\x00\x90\xd2\xf2\x7f\x68\xd0\xf3\xff\x61\xd5\xf5\
\xff\x66\xd9\xf6\xff\x66\xda\xf6\xff\x65\xda\xf6\xff\x61\xd7\xf7\
\xff\x55\xce\xf4\xff\x49\xbe\xec\xff\x41\xab\xdc\xff\x3a\x98\xc8\
\xff\x31\x92\xc3\xff\x2a\x9a\xce\xff\x2c\xaa\xdf\xff\x38\xb9\xe9\
\xff\x49\xc5\xef\xff\x57\xcf\xf4\xff\x5d\xd3\xf5\xff\x5b\xd2\xf5\
\xff\x55\xce\xf4\xff\x4b\xc6\xf0\xff\x3d\xbc\xea\xff\x31\xaf\xdf\
\xff\x2a\xa1\xd4\xff\x27\x99\xcd\xff\x2d\x99\xd0\xff\x34\x99\xcd\
\xff\x32\x8c\xbc\xff\x3a\xae\xe3\xff\x3f\xb8\xeb\xff\x44\xbe\xef\
\xff\x4a\xc2\xf1\xff\x4d\xc4\xf2\xff\x4d\xc6\xf2\xff\x4b\xc8\xf2\
\xff\x4c\xc8\xf3\xff\x4e\xc8\xf3\xff\x4e\xc7\xf2\xff\x4c\xc6\xf2\
\xff\x4c\xc5\xf2\xff\x4f\xc2\xf1\xff\x51\xc0\xf0\xff\x5b\xbe\xed\
\xff\x75\xc2\xeb\xff\xa5\xcf\xec\xad\xf2\xec\xf2\x0a\xd1\xe0\xf0\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x52\x56\x55\
\x00\x75\x77\x77\x00\x60\x63\x63\x00\xd5\xd4\xd3\x04\x63\x65\x65\
\x4c\x4b\x4e\x4e\x77\x62\x65\x66\x2d\x00\x00\x00\x00\xc9\xc7\xca\
\x00\xcf\xcf\xcf\x00\xcf\xcf\xcf\x00\x00\x00\x00\x00\xff\xff\xff\
\x00\x8e\xd0\xf1\x00\x9a\xd2\xf2\x6e\x71\xd0\xf3\xfe\x66\xd5\xf5\
\xff\x68\xd9\xf6\xff\x66\xdb\xf7\xff\x67\xd4\xf1\xff\x72\xc2\xdb\
\xff\x85\xb8\xcb\xff\x8c\xac\xbb\xff\x92\xa7\xb2\xff\x96\xa4\xad\
\xff\x86\x97\xa1\xff\x64\x82\x93\xff\x39\x73\x94\xff\x24\x83\xb7\
\xff\x2b\xa3\xdc\xff\x3c\xb6\xe7\xff\x4a\xc4\xed\xff\x49\xc7\xee\
\xff\x40\xbf\xe9\xff\x46\xb2\xdb\xff\x58\xa7\xc9\xff\x6c\x9f\xb8\
\xff\x78\x99\xab\xff\x73\x8c\x9b\xff\x5a\x77\x88\xff\x41\x6d\x85\
\xff\x3a\x7f\xa5\xff\x36\x99\xcc\xff\x39\xaa\xe1\xff\x40\xb2\xe6\
\xff\x45\xb8\xeb\xff\x47\xbc\xef\xff\x48\xc0\xf1\xff\x48\xc3\xf2\
\xff\x4c\xc5\xf2\xff\x4c\xc7\xf2\xff\x4c\xc7\xf2\xff\x4c\xc6\xf2\
\xff\x4e\xc4\xf2\xff\x4e\xc2\xf1\xff\x50\xc0\xef\xff\x5b\xbd\xed\
\xff\x76\xc2\xeb\xff\xa7\xd0\xed\xa6\xff\xf8\xf8\x08\xda\xe6\xf3\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x80\x80\x80\x00\x9d\x9d\x9d\x00\x4b\x4d\x4d\
\x00\x14\x19\x19\x00\x4d\x52\x54\x00\xef\xf1\xff\x00\x84\x88\x90\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xec\xf5\
\x00\x9a\xd3\xf2\x00\xa6\xd5\xf2\x61\x79\xd1\xf3\xfa\x6b\xd6\xf5\
\xff\x67\xda\xf7\xff\x72\xd3\xec\xff\x97\xba\xc5\xff\xa8\xaa\xad\
\xff\xba\xb8\xb7\xff\xc0\xc2\xbf\xff\xc2\xc4\xc6\xff\xc5\xc6\xca\
\xff\xba\xbb\xbd\xff\xab\xae\xaf\xff\x92\x99\x9b\xff\x56\x6a\x75\
\xff\x24\x60\x86\xff\x21\x89\xc5\xff\x2b\xa0\xd6\xff\x41\xad\xd7\
\xff\x76\xae\xc6\xff\x9a\xaa\xb3\xff\xb2\xb5\xb7\xff\xc0\xbe\xbf\
\xff\xc8\xc5\xc8\xff\xc4\xc2\xc4\xff\xaf\xaf\xaf\xff\x92\x96\x97\
\xff\x71\x79\x7c\xff\x48\x62\x73\xff\x35\x82\xac\xff\x3a\xa7\xdd\
\xff\x41\xb1\xe4\xff\x44\xb6\xea\xff\x44\xba\xee\xff\x45\xbe\xf0\
\xff\x48\xc1\xf1\xff\x4b\xc5\xf2\xff\x4d\xc6\xf2\xff\x4d\xc6\xf2\
\xff\x4f\xc4\xf2\xff\x4f\xc2\xf1\xff\x53\xbf\xef\xff\x5c\xbd\xec\
\xff\x78\xc2\xeb\xff\xa9\xd1\xed\xa2\xff\xff\xfd\x06\xdf\xe9\xf5\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbf\xbf\xc1\x00\xbf\xbf\xc1\
\x00\xc0\xc0\xc2\x00\xff\xff\xff\x00\xca\xca\xca\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xa1\xd6\xf3\x00\xaf\xd9\xf3\x58\x7d\xd1\xf3\xf7\x6b\xd6\xf6\
\xff\x76\xd0\xe8\xff\x9f\xb2\xba\xff\xb9\xb7\xba\xff\xbd\xc2\xc4\
\xff\x94\xb6\xc5\xff\x74\xb2\xcf\xff\x6e\xb6\xd7\xff\x7d\xbd\xda\
\xff\xa2\xc8\xda\xff\xc1\xca\xd1\xff\xb8\xb9\xbb\xff\xa3\xaa\xab\
\xff\x57\x61\x64\xff\x14\x3c\x59\xff\x34\x77\xa9\xff\x91\xa9\xb9\
\xff\xb5\xb3\xb8\xff\xc5\xc6\xc9\xff\xbf\xcc\xd4\xff\xaa\xc8\xd7\
\xff\xa4\xc7\xda\xff\xb1\xcc\xdb\xff\xc3\xcd\xd2\xff\xbf\xbf\xbf\
\xff\xa7\xa9\xaa\xff\x8b\x8f\x92\xff\x4d\x5d\x67\xff\x3b\x84\xac\
\xff\x3f\xac\xe0\xff\x42\xb3\xe5\xff\x42\xb7\xea\xff\x43\xba\xed\
\xff\x46\xbd\xef\xff\x4b\xc2\xf1\xff\x4e\xc5\xf2\xff\x4d\xc5\xf2\
\xff\x4d\xc4\xf2\xff\x4e\xc1\xf0\xff\x54\xbe\xee\xff\x5d\xbd\xeb\
\xff\x7b\xc2\xea\xff\xab\xd0\xed\xa0\xff\xff\xfe\x06\xe1\xeb\xf5\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc7\xc3\xc3\
\x00\xa5\xd6\xf3\x00\xb3\xdb\xf6\x4a\x7d\xd0\xf4\xf2\x6e\xd0\xf0\
\xff\x97\xb3\xbc\xff\xba\xba\xbb\xff\xab\xb5\xb9\xff\x46\x88\xa8\
\xff\x2f\xa2\xd4\xff\x3c\xb5\xe7\xff\x47\xbb\xea\xff\x48\xb9\xe7\
\xff\x45\xb1\xdf\xff\x5d\xaf\xd8\xff\xaf\xce\xdf\xff\xc4\xc7\xc9\
\xff\x9e\xa3\xa5\xff\x5a\x63\x65\xff\x8f\x97\x9c\xff\xc3\xc3\xc7\
\xff\xb5\xc1\xca\xff\x64\xa0\xc0\xff\x3d\xa0\xcd\xff\x39\xa8\xd9\
\xff\x3a\xab\xdc\xff\x3b\xaa\xda\xff\x4c\xaa\xd5\xff\x8c\xbf\xd7\
\xff\xc5\xca\xd0\xff\xb2\xb3\xb7\xff\x8e\x93\x97\xff\x4d\x61\x70\
\xff\x3e\x96\xc4\xff\x3e\xaf\xe1\xff\x41\xb2\xe4\xff\x43\xb5\xe7\
\xff\x44\xb9\xeb\xff\x49\xbe\xee\xff\x4c\xc3\xf0\xff\x4b\xc4\xf1\
\xff\x4c\xc2\xf0\xff\x4e\xc0\xee\xff\x53\xbd\xeb\xff\x5e\xbc\xe9\
\xff\x7d\xc2\xe9\xff\xaa\xd1\xed\xa4\xff\xff\xff\x07\xdd\xe9\xf7\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc9\xc5\xc4\
\x00\x00\x62\xe0\x00\x89\xac\xc2\x61\x63\xb9\xe2\xf7\x7f\xb9\xd1\
\xff\xb5\xb4\xb6\xff\xb9\xbc\xbd\xff\x36\x6f\x8e\xff\x44\xa9\xdd\
\xff\x85\xd1\xf1\xff\xaf\xdd\xf0\xff\xc6\xe5\xf2\xff\xd0\xec\xf6\
\xff\xce\xeb\xf7\xff\xb5\xde\xf2\xff\x97\xca\xe6\xff\xc9\xda\xe6\
\xff\xbf\xc0\xc2\xff\xa5\xaa\xab\xff\xbf\xc4\xc3\xff\xb6\xc0\xc7\
\xff\x48\x80\xa6\xff\x66\xaf\xda\xff\x9a\xd6\xf1\xff\xb4\xe6\xf8\
\xff\xb9\xe9\xfa\xff\xa9\xe3\xf8\xff\x87\xd3\xf1\xff\x5a\xb6\xe1\
\xff\x76\xb6\xd9\xff\xce\xd5\xdb\xff\xb1\xb4\xb6\xff\x81\x83\x86\
\xff\x45\x73\x8d\xff\x39\xa5\xd9\xff\x3d\xab\xdd\xff\x40\xae\xe0\
\xff\x40\xb1\xe3\xff\x42\xb7\xe6\xff\x45\xbc\xe8\xff\x47\xbe\xea\
\xff\x4b\xbc\xea\xff\x4c\xbb\xe9\xff\x51\xba\xe8\xff\x5f\xba\xe7\
\xff\x78\xbf\xe7\xff\x97\xc1\xe0\xae\xcd\xc9\xce\x0c\xb7\xc6\xd5\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd3\xd1\xd0\
\x00\xff\xff\xff\x04\x82\x8d\x95\x97\x56\x7a\x90\xff\x94\xa3\xac\
\xff\xd3\xd2\xd1\xff\x66\x7a\x87\xff\x58\x8e\xb8\xff\xc5\xdc\xee\
\xff\xea\xf1\xf7\xff\xf2\xf7\xfa\xff\xf8\xfd\xfd\xff\xf8\xf9\xf9\
\xff\xdd\xde\xe2\xff\xdf\xe0\xe5\xff\xe6\xeb\xef\xff\xd0\xd9\xdf\
\xff\xd9\xdb\xdf\xff\xbc\xbf\xc2\xff\xd0\xd5\xd5\xff\x6a\x84\x99\
\xff\x9d\xb7\xcb\xff\xe2\xea\xef\xff\xf8\xfb\xfb\xff\xe5\xe6\xe8\
\xff\xc9\xca\xd6\xff\xdf\xe1\xe7\xff\xf5\xf9\xfb\xff\xdd\xeb\xf6\
\xff\x9d\xc5\xe1\xff\xab\xca\xe0\xff\xd2\xd6\xd6\xff\x9c\x9f\xa1\
\xff\x4e\x5a\x63\xff\x3e\x7a\x9a\xff\x39\x9c\xce\xff\x32\x9f\xd5\
\xff\x33\xa1\xd6\xff\x33\xa4\xd8\xff\x33\xa7\xd9\xff\x37\xa8\xd9\
\xff\x3a\xa5\xd7\xff\x3b\xa2\xd3\xff\x40\x9e\xcc\xff\x4b\x96\xc0\
\xff\x50\x85\xa6\xff\x5e\x73\x83\xe4\xa3\xa3\xa2\x38\x8d\x91\x94\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe5\xe5\xe4\
\x00\x12\x13\x13\x00\x89\x89\x89\x7e\x72\x70\x6f\xff\xb1\xb2\xb1\
\xff\xc7\xca\xca\xff\x4f\x63\x74\xff\xba\xc6\xd3\xff\xe8\xee\xf2\
\xff\xf0\xf9\xfc\xff\xf8\xfe\xff\xff\xf3\xf6\xf6\xff\x8a\x92\xa9\
\xff\x41\x57\x95\xff\x4b\x65\xae\xff\x9f\xa9\xc7\xff\xd8\xde\xe1\
\xff\xd9\xdd\xe2\xff\xe0\xe4\xe8\xff\xb0\xb5\xb9\xff\x80\x8c\x96\
\xff\xd7\xdd\xe1\xff\xf0\xf7\xf9\xff\xc9\xcd\xd6\xff\x52\x64\x97\
\xff\x3a\x59\xa9\xff\x4d\x68\xb2\xff\xb2\xba\xcf\xff\xf5\xfa\xfc\
\xff\xe2\xe8\xee\xff\xbe\xc9\xd3\xff\xe0\xe6\xe8\xff\xb4\xba\xbb\
\xff\x60\x61\x62\xff\x56\x56\x57\xff\x3f\x64\x7b\xff\x24\x5a\x79\
\xff\x26\x59\x76\xff\x26\x58\x74\xff\x28\x56\x70\xff\x2c\x54\x6b\
\xff\x31\x52\x65\xff\x38\x52\x61\xff\x42\x54\x5e\xff\x4f\x58\x5e\
\xff\x5e\x61\x63\xff\x7c\x7c\x7d\xe6\xb3\xb3\xb3\x30\xa1\xa2\xa2\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe5\xe4\xe4\
\x00\x00\x00\x00\x00\x8d\x8f\x90\x8a\x72\x74\x74\xff\xc5\xc7\xc8\
\xff\xb8\xba\xbb\xff\x65\x6c\x71\xff\xcd\xd4\xdb\xff\xe6\xee\xf2\
\xff\xf3\xfa\xfc\xff\xfd\xff\xff\xff\xc0\xc3\xcc\xff\x28\x3a\x67\
\xff\x16\x24\x3f\xff\x22\x39\x6e\xff\x42\x57\x99\xff\xbf\xc6\xd0\
\xff\xd7\xdc\xde\xff\xeb\xef\xf1\xff\x9a\x9e\x9e\xff\x96\x9d\xa1\
\xff\xdf\xe7\xea\xff\xef\xf3\xf3\xff\x6a\x75\x98\xff\x1d\x33\x6e\
\xff\x14\x20\x3a\xff\x1f\x37\x72\xff\x4d\x5d\x94\xff\xe7\xeb\xee\
\xff\xe9\xf1\xf5\xff\xc9\xd0\xd6\xff\xd8\xdd\xe0\xff\xc9\xcd\xcf\
\xff\x6b\x6c\x6d\xff\x55\x54\x54\xff\x44\x44\x46\xff\x30\x31\x32\
\xff\x32\x33\x33\xff\x32\x32\x33\xff\x33\x32\x33\xff\x33\x32\x32\
\xff\x34\x34\x34\xff\x36\x37\x37\xff\x3e\x3f\x3f\xff\x48\x49\x4a\
\xff\x57\x58\x5a\xff\x7c\x7e\x7f\xd8\xaf\xaf\xb0\x18\xa1\xa2\xa2\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\
\x00\x7c\x7d\x7d\x00\xa2\xa3\xa3\x36\x8e\x8f\x8d\xc1\xd3\xd6\xd6\
\xfe\xbc\xbe\xc1\xff\x5d\x61\x63\xff\xc6\xce\xd4\xff\xe4\xeb\xef\
\xff\xf2\xf9\xfa\xff\xfe\xff\xff\xff\xb6\xba\xc4\xff\x2e\x3b\x60\
\xff\x1c\x21\x21\xff\x4c\x56\x67\xff\x47\x59\x94\xff\xb5\xbc\xc7\
\xff\xd8\xda\xdd\xff\xed\xf1\xf2\xff\x94\x98\x98\xff\x95\x9c\xa0\
\xff\xe2\xe9\xec\xff\xf0\xf3\xf3\xff\x6b\x75\x95\xff\x23\x33\x5f\
\xff\x19\x1c\x1c\xff\x49\x53\x69\xff\x4d\x5c\x8f\xff\xe3\xe6\xea\
\xff\xeb\xf1\xf4\xff\xc6\xce\xd3\xff\xd0\xd4\xd8\xff\xd9\xdd\xde\
\xff\x7f\x80\x80\xff\x60\x5e\x5d\xff\x3f\x41\x43\xff\x29\x2d\x2f\
\xff\x29\x2d\x2e\xff\x28\x2b\x2d\xff\x28\x2b\x2c\xff\x2b\x2d\x2e\
\xff\x30\x31\x32\xff\x36\x37\x38\xff\x41\x42\x42\xff\x4f\x50\x51\
\xff\x66\x67\x69\xfe\x8e\x8f\x90\xac\xd3\xd4\xd3\x0e\xbc\xbd\xbd\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfd\xfe\xfe\
\x00\xff\xff\xff\x00\xb0\xb2\xb0\x00\xbe\xc0\xbd\x2b\xdd\xe1\xe1\
\xdd\xd6\xd9\xdc\xff\x5e\x61\x65\xff\xa9\xb0\xb7\xff\xdc\xe3\xe9\
\xff\xec\xf3\xf5\xff\xf7\xfd\xfc\xff\xe7\xe9\xea\xff\x66\x6d\x86\
\xff\x2e\x38\x57\xff\x3b\x49\x77\xff\x7c\x85\xa3\xff\xc8\xce\xd3\
\xff\xda\xdc\xdf\xff\xf6\xf8\xf9\xff\x9e\xa2\xa4\xff\x7d\x84\x89\
\xff\xd7\xdf\xe2\xff\xf2\xf7\xf8\xff\xbe\xc1\xc9\xff\x46\x51\x7a\
\xff\x33\x3e\x64\xff\x42\x4f\x7d\xff\x94\x99\xae\xff\xf5\xf8\xf9\
\xff\xe4\xea\xee\xff\xbc\xc3\xc8\xff\xd1\xd5\xd8\xff\xe5\xea\xe8\
\xff\x7b\x7b\x79\xff\x50\x51\x51\xff\x41\x42\x43\xff\x30\x32\x33\
\xff\x34\x35\x37\xff\x36\x3a\x3d\xff\x3b\x43\x48\xff\x41\x4e\x56\
\xff\x46\x5a\x66\xff\x4c\x68\x77\xff\x56\x79\x8d\xff\x64\x8f\xa7\
\xff\x90\xad\xc0\xcb\xb7\xbb\xbf\x21\x69\x7e\x8c\x00\xf4\xf5\xf7\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xb1\xb3\xb3\x00\xd8\xdc\xdb\x00\xe3\xe9\xe7\x05\xdc\xe0\xdf\
\x9f\xee\xf1\xf2\xff\x8f\x92\x95\xff\x6f\x76\x7d\xff\xc1\xc9\xd0\
\xff\xdd\xe4\xe9\xff\xea\xf1\xf3\xff\xf2\xf8\xf9\xff\xe0\xe3\xe5\
\xff\xa8\xad\xb9\xff\xab\xb2\xc1\xff\xd5\xdc\xe0\xff\xbf\xc5\xca\
\xff\xe5\xe8\xea\xff\xff\xff\xff\xff\xca\xcc\xce\xff\x5f\x68\x6e\
\xff\xb3\xbc\xc0\xff\xdf\xe6\xe9\xff\xf1\xf6\xf6\xff\xd4\xd7\xdb\
\xff\xac\xae\xbd\xff\xc0\xc4\xcf\xff\xf2\xf5\xf6\xff\xef\xf4\xf7\
\xff\xd5\xdc\xe0\xff\xb1\xb7\xbd\xff\xe2\xe5\xe9\xff\xe0\xe4\xe3\
\xff\x5e\x5b\x58\xff\x5c\x58\x58\xff\x4d\x62\x6c\xff\x3b\x69\x7d\
\xff\x40\x80\x9a\xff\x43\x92\xb2\xff\x46\xa1\xc5\xff\x4b\xaa\xd2\
\xff\x50\xb0\xdb\xff\x58\xb6\xe0\xff\x62\xb9\xe4\xff\x7c\xc1\xe7\
\xff\xac\xd4\xee\x84\x00\x00\x00\x00\xf3\xf9\xff\x00\xd9\xda\xdb\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xff\xff\xff\x00\xce\xd5\xd6\x00\xd0\xd8\xda\
\x51\xe8\xec\xec\xf4\xdd\xdf\xe1\xff\x6e\x74\x78\xff\x74\x80\x89\
\xff\xb8\xbf\xc6\xff\xd2\xd9\xde\xff\xdd\xe4\xe9\xff\xe4\xeb\xee\
\xff\xe6\xed\xef\xff\xda\xe1\xe5\xff\xbb\xc2\xc7\xff\xcf\xd0\xd4\
\xff\xfb\xfc\xfc\xff\xfc\xfc\xfa\xff\xf5\xf6\xf6\xff\x84\x8a\x8e\
\xff\x6c\x77\x80\xff\xb8\xc0\xc5\xff\xd9\xe0\xe4\xff\xea\xf0\xf1\
\xff\xf3\xf8\xf8\xff\xf2\xf9\xf9\xff\xeb\xf3\xf5\xff\xdc\xe3\xe7\
\xff\xb9\xc0\xc6\xff\xbf\xc3\xc9\xff\xf9\xfa\xfb\xff\xbf\xc2\xc0\
\xff\x46\x60\x6c\xff\x67\x82\x8e\xff\x55\xb3\xd9\xff\x4a\xbc\xea\
\xff\x4b\xc1\xee\xff\x4d\xc3\xef\xff\x4e\xc3\xef\xff\x51\xc1\xed\
\xff\x57\xbf\xea\xff\x5e\xbf\xe9\xff\x6b\xc0\xe8\xff\x90\xc8\xe9\
\xeb\xc0\xdb\xee\x3a\xb6\xd7\xed\x00\xe4\xee\xfb\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xe9\xf1\xf3\x00\xc4\xda\xe4\x00\xc2\xdb\xe6\
\x11\xc6\xd9\xdf\xbc\xf0\xf3\xf3\xff\xde\xde\xe0\xff\x85\x8d\x93\
\xff\x6b\x7a\x87\xff\x8f\x9b\xa6\xff\xa8\xb1\xb9\xff\xb1\xba\xc1\
\xff\xae\xb7\xbd\xff\xad\xb4\xb9\xff\xca\xce\xd1\xff\xf8\xf7\xf7\
\xff\xd4\xd6\xd6\xff\x92\xa6\xad\xff\xe6\xed\xee\xff\xe6\xe7\xe7\
\xff\x7e\x85\x8c\xff\x6a\x75\x7f\xff\x9b\xa3\xaa\xff\xbc\xc4\xc9\
\xff\xca\xd0\xd5\xff\xcd\xd4\xd8\xff\xc3\xcb\xd0\xff\xaa\xb2\xb8\
\xff\xaf\xb4\xb9\xff\xed\xee\xf0\xff\xef\xec\xe9\xff\x7f\xa3\xb1\
\xff\x45\xb1\xdc\xff\x4d\xbd\xe7\xff\x4f\xc2\xee\xff\x50\xc4\xef\
\xff\x50\xc5\xf1\xff\x52\xc5\xf1\xff\x53\xc6\xf1\xff\x56\xc4\xf0\
\xff\x5c\xc2\xed\xff\x64\xc3\xec\xff\x78\xc5\xeb\xff\xa1\xd0\xec\
\xa7\xf0\xec\xf8\x09\xcb\xdf\xf3\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xff\x00\x97\xcb\xde\
\x00\xab\xda\xef\x54\xb5\xda\xe6\xf3\xea\xf0\xef\xff\xf4\xf2\xf2\
\xff\xc8\xca\xce\xff\xa7\xae\xb4\xff\xa1\xab\xb2\xff\xae\xb8\xbf\
\xff\xc7\xcd\xd1\xff\xe8\xe8\xe9\xff\xfa\xf7\xf5\xff\xd1\xd4\xd4\
\xff\x6d\x98\xad\xff\x42\xa6\xce\xff\x87\xcf\xe5\xff\xec\xf3\xf2\
\xff\xf1\xef\xef\xff\xb3\xb9\xbb\xff\x86\x91\x98\xff\x84\x8f\x99\
\xff\x8c\x98\xa1\xff\x8e\x9e\xa8\xff\x97\xa6\xae\xff\xb9\xc0\xc3\
\xff\xee\xef\xef\xff\xf1\xf0\xee\xff\x99\xbe\xcc\xff\x4d\xb8\xe1\
\xff\x4d\xc4\xf0\xff\x51\xc5\xf0\xff\x52\xc6\xf2\xff\x53\xc8\xf2\
\xff\x51\xc8\xf3\xff\x53\xc9\xf3\xff\x55\xc9\xf2\xff\x5a\xc6\xf1\
\xff\x62\xc5\xef\xff\x6d\xc6\xee\xff\x8a\xca\xec\xec\xb4\xd7\xee\
\x41\x9e\xcd\xeb\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\xed\xfb\x00\xba\xe6\xfa\
\x00\xd3\xf0\xff\x08\x98\xd9\xf3\x96\x99\xd7\xea\xff\xc6\xe2\xe9\
\xff\xea\xf0\xf0\xff\xf6\xf5\xf2\xff\xf5\xf4\xf1\xff\xf6\xf6\xf3\
\xff\xf3\xf4\xf2\xff\xdb\xe8\xea\xff\xa3\xcf\xdd\xff\x66\xb7\xd5\
\xff\x52\xc3\xec\xff\x5f\xd3\xf7\xff\x61\xd5\xf5\xff\x8a\xd9\xeb\
\xff\xd3\xe7\xe8\xff\xf5\xf5\xf2\xff\xf3\xf2\xf1\xff\xe1\xe1\xe4\
\xff\xd7\xda\xdd\xff\xdb\xe0\xe3\xff\xec\xed\xed\xff\xf6\xf5\xf3\
\xff\xdb\xdf\xdd\xff\x8e\xc2\xd3\xff\x54\xc5\xeb\xff\x50\xcc\xf4\
\xff\x53\xca\xf3\xff\x53\xca\xf3\xff\x53\xca\xf3\xff\x52\xcc\xf3\
\xff\x52\xcc\xf3\xff\x55\xcb\xf3\xff\x59\xca\xf3\xff\x5e\xc9\xf1\
\xff\x68\xc9\xf0\xff\x7d\xcb\xee\xfd\xa0\xd3\xee\x86\xff\xf4\xf7\
\x04\xcb\xe1\xf2\x00\xec\xf2\xf8\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\xe1\xf8\
\x00\xaf\xe1\xf7\x00\xb9\xe3\xf8\x1a\x91\xdb\xf5\xb5\x84\xd8\xf2\
\xff\x91\xd8\xed\xff\x98\xdc\xe9\xff\x9f\xde\xe7\xff\x9e\xdd\xe8\
\xff\x8b\xd7\xea\xff\x6f\xd2\xed\xff\x5e\xd0\xf3\xff\x62\xd5\xf7\
\xff\x69\xd9\xf6\xff\x6d\xdb\xf6\xff\x70\xdc\xf6\xff\x6b\xdc\xf7\
\xff\x76\xda\xf1\xff\x96\xd8\xe4\xff\xb8\xdc\xe1\xff\xd3\xe6\xe8\
\xff\xde\xeb\xeb\xff\xda\xe9\xeb\xff\xc5\xe0\xe5\xff\x9e\xd4\xe2\
\xff\x76\xc9\xe2\xff\x5f\xce\xf0\xff\x57\xd3\xf6\xff\x54\xd0\xf4\
\xff\x55\xce\xf4\xff\x55\xce\xf4\xff\x53\xcf\xf4\xff\x53\xcf\xf4\
\xff\x54\xcf\xf4\xff\x58\xcd\xf3\xff\x5d\xcc\xf3\xff\x66\xcc\xf2\
\xff\x77\xcd\xef\xff\x94\xd2\xef\xa8\xc0\xdf\xf1\x13\xb4\xdb\xf0\
\x00\xbc\xda\xef\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x9c\xea\x00\x93\xd9\xf4\x00\xb7\xe3\xf5\x1f\x94\xdc\xf5\
\xa6\x86\xd9\xf5\xfa\x7d\xda\xf5\xff\x71\xdc\xf6\xff\x6b\xdc\xf7\
\xff\x6a\xdd\xf7\xff\x6d\xdd\xf7\xff\x72\xdc\xf6\xff\x73\xdd\xf6\
\xff\x70\xdd\xf6\xff\x72\xdd\xf6\xff\x73\xdd\xf6\xff\x71\xde\xf6\
\xff\x6f\xde\xf7\xff\x6d\xde\xf7\xff\x71\xdb\xf4\xff\x72\xd9\xf1\
\xff\x77\xd7\xee\xff\x73\xd7\xf0\xff\x6c\xd8\xf3\xff\x68\xd9\xf6\
\xff\x68\xda\xf8\xff\x5f\xd7\xf6\xff\x58\xd4\xf5\xff\x57\xd2\xf5\
\xff\x58\xd1\xf4\xff\x57\xd1\xf4\xff\x55\xd2\xf5\xff\x55\xd1\xf4\
\xff\x58\xd0\xf4\xff\x5d\xcf\xf4\xff\x68\xcf\xf3\xff\x7a\xd0\xf1\
\xf9\x94\xd4\xf0\x9f\xb9\xdf\xf2\x19\xa0\xd5\xee\x00\x75\xc2\xe7\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xe0\xef\xf9\x00\xff\xff\xff\x00\xa0\xdd\xf4\x00\xbc\xe2\xf5\
\x0f\x9f\xde\xf6\x73\x8f\xdb\xf5\xe0\x84\xda\xf6\xff\x7c\xdb\xf6\
\xff\x77\xdc\xf6\xff\x71\xdc\xf6\xff\x6e\xdd\xf7\xff\x6a\xdd\xf7\
\xff\x67\xdd\xf7\xff\x69\xdd\xf7\xff\x68\xdd\xf7\xff\x68\xdd\xf7\
\xff\x68\xdd\xf7\xff\x6a\xdd\xf7\xff\x6b\xdd\xf7\xff\x69\xde\xf7\
\xff\x6b\xdd\xf7\xff\x68\xdd\xf7\xff\x69\xdd\xf7\xff\x67\xdc\xf6\
\xff\x65\xda\xf6\xff\x62\xd9\xf6\xff\x61\xd8\xf6\xff\x5f\xd6\xf5\
\xff\x5b\xd4\xf5\xff\x5a\xd3\xf5\xff\x5a\xd3\xf5\xff\x5c\xd2\xf5\
\xff\x64\xd2\xf5\xff\x73\xd4\xf5\xff\x86\xd4\xf2\xda\x9d\xd8\xf0\
\x6f\xc6\xe2\xf0\x0d\xa5\xd8\xef\x00\x2f\xae\xe3\x00\xe9\xf2\xf9\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xdf\xee\xf7\x00\x62\xc9\xf0\x00\xa1\xc8\xd8\
\x00\xa7\x94\x8e\x06\x7f\x99\xa3\x6b\x90\xcd\xe0\xac\x8b\xde\xf6\
\xe1\x80\xdb\xf6\xff\x7d\xdc\xf7\xff\x7a\xdb\xf6\xff\x75\xda\xf6\
\xff\x71\xda\xf6\xff\x6f\xda\xf6\xff\x6d\xd9\xf6\xff\x6b\xdb\xf6\
\xff\x6b\xdc\xf6\xff\x6d\xdb\xf6\xff\x6d\xdb\xf6\xff\x6c\xdb\xf6\
\xff\x6c\xdb\xf6\xff\x6c\xdb\xf6\xff\x6d\xda\xf6\xff\x6c\xda\xf6\
\xff\x6b\xda\xf6\xff\x68\xd9\xf6\xff\x65\xd9\xf6\xff\x60\xd7\xf6\
\xff\x5f\xd6\xf5\xff\x63\xd4\xf5\xff\x68\xd4\xf5\xff\x76\xd7\xf7\
\xfb\x81\xcf\xea\xe7\x8e\xc3\xd7\xa9\xa8\xd3\xe6\x2f\x00\x36\x8c\
\x00\xb1\xdc\xf0\x00\x87\xcf\xec\x00\xe6\xee\xf7\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe1\xdd\xdb\x00\x6c\x70\x72\
\x00\x71\x74\x77\x20\x6d\x6e\x6f\x59\x80\x80\x80\x2c\x83\x9d\xa6\
\x61\x85\xb8\xc9\xab\x89\xd4\xeb\xd1\x83\xdb\xf5\xef\x7b\xd9\xf5\
\xff\x76\xd8\xf6\xff\x73\xd9\xf6\xff\x6f\xda\xf6\xff\x6d\xdb\xf7\
\xff\x6b\xdb\xf6\xff\x6a\xdb\xf6\xff\x6b\xdb\xf6\xff\x6c\xdb\xf6\
\xff\x6b\xda\xf6\xff\x6a\xda\xf6\xff\x6a\xda\xf6\xff\x6a\xda\xf7\
\xff\x67\xd9\xf6\xff\x67\xda\xf8\xff\x67\xd6\xf5\xff\x6b\xd6\xf4\
\xff\x75\xd8\xf6\xfd\x81\xd8\xf4\xea\x82\xc2\xd7\xcb\x85\xad\xbc\
\xa6\x83\x97\x9f\x51\x6c\x6c\x6d\x60\x6d\x69\x68\x16\x7f\x85\x8a\
\x00\xa6\xc5\xd4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x80\x82\x00\x82\x85\x87\
\x03\x76\x79\x7b\x3c\x77\x7a\x7c\x42\x7c\x7e\x80\x1d\x67\x69\x6b\
\x58\x6e\x6c\x6d\x4a\x7a\x82\x87\x58\x87\xaa\xb5\x64\x70\x9a\xa9\
\xbf\x8b\xd7\xef\xad\x87\xda\xf3\xda\x7d\xd6\xf0\xf4\x76\xd2\xec\
\xfa\x77\xdc\xf7\xfd\x74\xdc\xf8\xff\x70\xd9\xf5\xff\x6f\xd7\xf3\
\xff\x70\xdb\xf8\xff\x70\xdb\xf8\xff\x6f\xd5\xf1\xff\x71\xd0\xeb\
\xfc\x79\xd9\xf5\xf7\x78\xcb\xe4\xf3\x81\xc9\xdf\xd5\x77\xaa\xbc\
\xc9\x8b\xb7\xc6\x9b\x85\x9d\xa5\x6e\x7f\x83\x85\x3e\x63\x63\x64\
\x72\x65\x65\x67\x2a\x70\x74\x76\x59\x73\x77\x77\x34\x00\x00\x00\
\x00\x7a\x7c\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x88\x89\x8a\x00\x7e\x80\x83\x00\x7e\x80\x83\
\x12\x7a\x7c\x7f\x42\x7d\x81\x82\x22\x78\x7c\x7d\x29\x6e\x73\x75\
\x4e\x75\x78\x7a\x40\x72\x74\x76\x3d\x66\x66\x68\x43\x61\x60\x62\
\x67\x99\x9a\x9c\x1a\x88\x9b\xa2\x4c\x78\x8e\x97\x89\x78\x98\xa4\
\x95\x89\xbe\xd0\x91\x86\xc1\xd4\xa6\x7f\xba\xce\xae\x7c\xb4\xc6\
\xba\x7c\xb7\xca\xba\x82\xbd\xd1\xb0\x8f\xc8\xdd\x8f\x7d\xa0\xad\
\x9a\x8a\xad\xba\x76\x6b\x79\x7f\x9a\x7a\x83\x86\x53\x61\x62\x64\
\x6f\x68\x66\x67\x52\x6b\x6c\x6e\x56\x6e\x72\x74\x27\x6e\x72\x74\
\x5e\x6a\x6c\x6e\x39\x76\x79\x7b\x33\x77\x7a\x7c\x48\x7c\x7d\x7e\
\x07\x7a\x7c\x7d\x00\x80\x81\x84\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x89\x8a\x8b\x00\x97\x96\x96\x01\x80\x82\x84\
\x25\x7e\x81\x82\x2f\x85\x87\x89\x11\x76\x79\x7c\x3a\x71\x75\x77\
\x3b\x78\x7b\x7d\x36\x74\x77\x79\x2d\x76\x79\x7b\x3c\x75\x78\x7a\
\x37\x7d\x7e\x80\x16\x76\x77\x79\x34\x6f\x70\x71\x55\x66\x66\x68\
\x4c\x6b\x68\x67\x37\x75\x70\x70\x39\x6b\x6a\x6b\x43\x6a\x69\x6a\
\x45\x64\x62\x62\x48\x6f\x6c\x6c\x40\x76\x6e\x6d\x20\x68\x68\x69\
\x51\x6e\x6a\x6a\x27\x69\x6a\x6c\x6b\x6d\x70\x72\x42\x66\x6a\x6d\
\x4d\x72\x75\x78\x47\x76\x79\x7b\x46\x6e\x71\x73\x34\x79\x7c\x7d\
\x3b\x72\x74\x76\x3c\x7d\x7f\x81\x15\x79\x7c\x7e\x47\x7e\x80\x81\
\x17\x7d\x80\x81\x00\xa3\xa7\x98\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x86\x88\x89\x00\x88\x8a\x8b\x04\x81\x84\x85\
\x25\x7f\x82\x84\x0e\x88\x8a\x8d\x08\x77\x7a\x7c\x3a\x7a\x7d\x7f\
\x21\x7d\x80\x82\x24\x78\x7b\x7d\x1f\x79\x7c\x7e\x34\x7a\x7e\x7f\
\x12\x83\x86\x88\x10\x7e\x82\x84\x24\x79\x7c\x7e\x38\x72\x75\x78\
\x34\x79\x7c\x7f\x24\x78\x7b\x7e\x27\x74\x77\x7a\x31\x73\x77\x79\
\x24\x72\x75\x77\x2f\x77\x7a\x7b\x29\x78\x7b\x7c\x16\x74\x78\x7a\
\x42\x78\x7b\x7d\x1c\x77\x7a\x7c\x42\x73\x76\x78\x34\x6f\x72\x75\
\x31\x77\x7a\x7c\x3a\x7c\x7e\x80\x1f\x73\x75\x78\x34\x7e\x80\x81\
\x24\x7b\x7e\x80\x3b\x7b\x7e\x80\x0e\x7f\x81\x83\x2f\x81\x83\x85\
\x23\x8a\x8a\x89\x01\x85\x86\x86\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x85\x88\x89\x00\x85\x88\x8a\x02\x83\x86\x87\
\x0e\x80\x83\x85\x01\x80\x83\x84\x07\x7f\x81\x82\x1c\x81\x84\x86\
\x05\x80\x83\x85\x14\x81\x84\x86\x0c\x7c\x7f\x80\x27\x73\x76\x78\