-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqrc_resource.cpp
1493 lines (1479 loc) · 116 KB
/
qrc_resource.cpp
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
/****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.12.1
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// D:/project/wuziqi/res/sound/lose.wav
0x0,0x0,0x21,0x70,
0x52,
0x49,0x46,0x46,0x68,0x21,0x0,0x0,0x57,0x41,0x56,0x45,0x66,0x6d,0x74,0x20,0x10,
0x0,0x0,0x0,0x1,0x0,0x1,0x0,0xf8,0x2a,0x0,0x0,0xf8,0x2a,0x0,0x0,0x1,
0x0,0x8,0x0,0x64,0x61,0x74,0x61,0x44,0x21,0x0,0x0,0x80,0x80,0x80,0x80,0x80,
0x7f,0x7e,0x7d,0x7a,0x78,0x78,0x78,0x79,0x7a,0x7c,0x7f,0x81,0x84,0x85,0x86,0x87,
0x88,0x88,0x89,0x88,0x88,0x89,0x8d,0x92,0x96,0x97,0x97,0x95,0x94,0x93,0x91,0x90,
0x8e,0x8c,0x8a,0x88,0x87,0x88,0x8c,0x91,0x94,0x96,0x96,0x94,0x92,0x90,0x8e,0x8b,
0x88,0x86,0x86,0x8e,0x94,0x96,0x95,0x94,0x92,0x92,0x8c,0x82,0x72,0x63,0x5a,0x50,
0x48,0x3f,0x39,0x36,0x3a,0x43,0x51,0x52,0x4d,0x49,0x44,0x40,0x38,0x30,0x2a,0x26,
0x27,0x2c,0x33,0x3e,0x4f,0x60,0x6f,0x7c,0x85,0x8c,0x91,0x98,0x9e,0x9f,0x99,0x92,
0x90,0x99,0xa8,0xb5,0xbb,0xbe,0xbe,0xbc,0xbc,0xb8,0xb5,0xb1,0xac,0xa5,0xa0,0x9c,
0x9c,0xa0,0xa5,0xac,0xb3,0xb6,0xb4,0xb2,0xad,0xa8,0xa1,0x9a,0x96,0x9a,0xa0,0xa2,
0xa4,0xa4,0xa8,0xad,0xb0,0xae,0xa5,0x96,0x80,0x6b,0x5d,0x4d,0x3a,0x2b,0x21,0x21,
0x2c,0x3a,0x44,0x48,0x4a,0x46,0x3e,0x33,0x28,0x21,0x1b,0x1a,0x1a,0x1e,0x25,0x32,
0x44,0x5a,0x6f,0x7c,0x88,0x93,0x9e,0xa6,0xaa,0xa7,0x9e,0x9b,0xa0,0xa8,0xb0,0xba,
0xc1,0xc8,0xc9,0xc9,0xc7,0xc5,0xc1,0xbb,0xb5,0xaf,0xaa,0xa7,0xa6,0xa7,0xad,0xb3,
0xb6,0xb9,0xbb,0xba,0xb6,0xb0,0xac,0xac,0xb2,0xbc,0xc4,0xcd,0xd2,0xd2,0xd1,0xcf,
0xcd,0xc6,0xb3,0x98,0x7e,0x68,0x54,0x42,0x2d,0x21,0x1b,0x1d,0x23,0x2d,0x35,0x37,
0x31,0x22,0x19,0x15,0x13,0x11,0x10,0xc,0xb,0xd,0x16,0x29,0x3f,0x54,0x5d,0x65,
0x6d,0x79,0x86,0x90,0x91,0x90,0x90,0x92,0x99,0xa4,0xad,0xb3,0xb4,0xb5,0xb6,0xbb,
0xbf,0xbb,0xb9,0xbb,0xbf,0xc7,0xce,0xd6,0xdf,0xe4,0xe9,0xec,0xed,0xe9,0xe3,0xd8,
0xd1,0xcf,0xce,0xce,0xd1,0xd7,0xd9,0xd8,0xd5,0xd5,0xd6,0xd5,0xce,0xbf,0xae,0x99,
0x83,0x6d,0x5b,0x46,0x32,0x22,0x1a,0x1b,0x22,0x2d,0x31,0x2e,0x24,0x19,0x12,0x11,
0x12,0x10,0xd,0x7,0x5,0x6,0x10,0x22,0x2d,0x36,0x3f,0x4b,0x59,0x6a,0x79,0x82,
0x84,0x82,0x82,0x84,0x8c,0x92,0x99,0x9d,0xa3,0xa9,0xad,0xad,0xac,0xaa,0xa9,0xaa,
0xaf,0xb8,0xc0,0xc6,0xca,0xd0,0xd6,0xdb,0xdb,0xd7,0xd1,0xc9,0xc2,0xbf,0xc3,0xc9,
0xcc,0xca,0xc6,0xc5,0xc6,0xcc,0xce,0xcc,0xc4,0xb7,0xa8,0x98,0x88,0x79,0x62,0x49,
0x34,0x25,0x1e,0x1d,0x22,0x29,0x2d,0x2a,0x1f,0x17,0x15,0x14,0x12,0xe,0x9,0x2,
0x3,0x5,0xa,0x10,0x19,0x23,0x30,0x41,0x54,0x65,0x71,0x78,0x7a,0x7d,0x80,0x82,
0x83,0x88,0x8f,0x98,0xa0,0xa6,0xaa,0xab,0xab,0xa8,0xa9,0xac,0xb1,0xb7,0xbd,0xc3,
0xca,0xcf,0xd5,0xda,0xdb,0xd7,0xcf,0xc8,0xc6,0xc6,0xc9,0xcb,0xcd,0xcd,0xcb,0xcb,
0xce,0xd1,0xd1,0xcf,0xca,0xc2,0xba,0xaf,0x9e,0x87,0x6e,0x57,0x44,0x36,0x2d,0x2a,
0x2c,0x31,0x34,0x2d,0x28,0x24,0x20,0x1c,0x17,0x12,0xc,0x9,0x8,0xa,0xc,0x11,
0x16,0x1f,0x2d,0x40,0x53,0x63,0x70,0x78,0x7c,0x7f,0x80,0x82,0x86,0x8c,0x92,0x99,
0x9e,0xa5,0xa9,0xac,0xac,0xac,0xad,0xae,0xb2,0xb8,0xbf,0xc8,0xce,0xd5,0xd9,0xdc,
0xdb,0xd5,0xcd,0xca,0xc8,0xcb,0xcf,0xd3,0xd3,0xd0,0xd0,0xd2,0xd5,0xd4,0xd4,0xd0,
0xcd,0xca,0xc3,0xb9,0xaa,0x97,0x7e,0x65,0x4e,0x3d,0x35,0x36,0x38,0x38,0x35,0x30,
0x2d,0x2a,0x26,0x22,0x1a,0x13,0xc,0x9,0x8,0x9,0x9,0xb,0xf,0x16,0x24,0x35,
0x49,0x5b,0x6a,0x72,0x78,0x7b,0x7f,0x84,0x85,0x88,0x8b,0x90,0x98,0xa1,0xa7,0xac,
0xab,0xa9,0xaa,0xad,0xb2,0xb7,0xbe,0xc5,0xce,0xd6,0xdc,0xdc,0xd8,0xd1,0xca,0xc8,
0xc9,0xcf,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd4,0xd4,0xd4,0xd2,0xcf,0xc9,0xc1,0xb8,
0xac,0x9e,0x8a,0x72,0x5b,0x4b,0x42,0x3d,0x3b,0x39,0x34,0x2d,0x2a,0x29,0x28,0x24,
0x1e,0x16,0x10,0xe,0xc,0xb,0x9,0x8,0x8,0xf,0x1c,0x2c,0x3d,0x4d,0x5e,0x6a,
0x74,0x79,0x7e,0x81,0x84,0x85,0x86,0x87,0x8d,0x97,0x9f,0xa4,0xa4,0xa5,0xa4,0xa8,
0xae,0xb4,0xbe,0xc6,0xce,0xd4,0xd7,0xd6,0xd1,0xca,0xc7,0xc8,0xc9,0xcc,0xcf,0xd2,
0xd4,0xd4,0xd4,0xd3,0xd1,0xd2,0xd3,0xd2,0xd0,0xc8,0xbe,0xb2,0xa7,0x9e,0x96,0x85,
0x70,0x5d,0x4d,0x42,0x3c,0x3a,0x33,0x2a,0x24,0x23,0x25,0x26,0x26,0x21,0x19,0x12,
0xe,0xd,0x9,0x7,0x9,0xe,0x15,0x20,0x2e,0x40,0x51,0x5e,0x69,0x70,0x77,0x7e,
0x82,0x85,0x85,0x84,0x84,0x88,0x90,0x97,0x9c,0x9f,0xa0,0xa3,0xa9,0xb3,0xbd,0xc7,
0xce,0xd2,0xd4,0xd2,0xcf,0xc9,0xc7,0xc6,0xc9,0xcc,0xd0,0xd4,0xd6,0xd5,0xd3,0xd3,
0xd3,0xd5,0xd5,0xd4,0xd0,0xc8,0xbd,0xaf,0xa5,0x9d,0x97,0x8d,0x82,0x73,0x61,0x52,
0x48,0x3e,0x34,0x29,0x1f,0x1d,0x20,0x25,0x2b,0x2c,0x28,0x20,0x13,0x9,0x3,0x1,
0x4,0xa,0x13,0x1e,0x27,0x31,0x3d,0x4c,0x5c,0x6a,0x73,0x7b,0x81,0x85,0x8a,0x8b,
0x8c,0x88,0x86,0x87,0x8e,0x99,0xa2,0xa7,0xac,0xb4,0xbb,0xc4,0xce,0xd6,0xd6,0xd3,
0xcf,0xcb,0xc9,0xc9,0xca,0xce,0xd3,0xd6,0xd8,0xd7,0xd4,0xd5,0xd6,0xd8,0xd8,0xd6,
0xd2,0xcc,0xc2,0xb6,0xaa,0x9f,0x94,0x8c,0x87,0x83,0x7e,0x73,0x62,0x4c,0x39,0x2d,
0x22,0x1b,0x18,0x1a,0x23,0x2d,0x32,0x2f,0x26,0x17,0xa,0x0,0x2,0x9,0x13,0x1b,
0x23,0x2a,0x30,0x37,0x42,0x55,0x67,0x74,0x7c,0x82,0x87,0x8d,0x90,0x8e,0x8a,0x82,
0x80,0x86,0x91,0x9c,0xa5,0xae,0xb8,0xc4,0xce,0xd5,0xd6,0xd3,0xd0,0xd0,0xcf,0xce,
0xce,0xce,0xd0,0xd4,0xd8,0xd8,0xd7,0xd5,0xd5,0xd7,0xd7,0xd6,0xd3,0xce,0xc7,0xbe,
0xb3,0xa7,0x99,0x8c,0x85,0x82,0x80,0x7f,0x7d,0x71,0x5c,0x3f,0x26,0x1a,0x18,0x1a,
0x1f,0x24,0x28,0x2e,0x30,0x2f,0x21,0x14,0xb,0x7,0x9,0x11,0x1b,0x23,0x2a,0x31,
0x38,0x40,0x4a,0x5d,0x6c,0x79,0x80,0x86,0x89,0x8c,0x8e,0x8e,0x8a,0x83,0x7f,0x81,
0x8d,0x9b,0xab,0xb8,0xc4,0xcf,0xd6,0xd9,0xd8,0xd7,0xd5,0xd5,0xd6,0xd6,0xd4,0xd2,
0xd1,0xd0,0xd3,0xd9,0xda,0xd9,0xd7,0xd4,0xd0,0xcc,0xca,0xc7,0xc0,0xb4,0xa4,0x96,
0x8a,0x83,0x7e,0x7a,0x78,0x75,0x73,0x6f,0x68,0x4b,0x33,0x24,0x1e,0x1c,0x1f,0x22,
0x22,0x21,0x20,0x1f,0x1d,0x17,0xf,0x9,0x8,0xc,0x17,0x26,0x34,0x3c,0x42,0x44,
0x49,0x53,0x62,0x72,0x7d,0x84,0x86,0x87,0x8a,0x8b,0x8b,0x87,0x84,0x83,0x87,0x93,
0xa5,0xb8,0xca,0xd7,0xdf,0xe0,0xdd,0xdf,0xe1,0xe0,0xdc,0xd6,0xce,0xc9,0xc9,0xd5,
0xde,0xdf,0xde,0xda,0xd6,0xd2,0xd0,0xce,0xcb,0xc5,0xb7,0xa7,0x97,0x8c,0x84,0x7f,
0x7b,0x75,0x6c,0x69,0x6c,0x70,0x72,0x6b,0x59,0x41,0x2d,0x1f,0x19,0x16,0x11,0x10,
0x10,0x15,0x1a,0x1f,0x1f,0x1e,0x19,0x18,0x1c,0x23,0x2d,0x37,0x41,0x45,0x4a,0x4e,
0x56,0x61,0x6e,0x78,0x7f,0x81,0x81,0x83,0x88,0x8c,0x8c,0x8c,0x8d,0x90,0x9c,0xb1,
0xcb,0xdc,0xe6,0xe9,0xea,0xe9,0xe5,0xe1,0xd9,0xd3,0xd0,0xd1,0xd5,0xdb,0xe0,0xe2,
0xe1,0xdf,0xdc,0xd6,0xce,0xc5,0xbb,0xaf,0xa4,0x9a,0x90,0x8a,0x84,0x7f,0x78,0x71,
0x6b,0x6c,0x6e,0x73,0x77,0x76,0x71,0x62,0x50,0x3a,0x23,0x10,0x6,0x3,0xb,0x13,
0x19,0x1f,0x23,0x26,0x28,0x29,0x2a,0x2a,0x2b,0x2e,0x34,0x3b,0x44,0x4a,0x4d,0x4e,
0x52,0x57,0x5e,0x69,0x75,0x81,0x8a,0x91,0x96,0x9a,0x9d,0x9e,0xa1,0xa8,0xb7,0xc9,
0xdc,0xe8,0xed,0xeb,0xe7,0xe3,0xe2,0xe3,0xe1,0xdf,0xde,0xe1,0xe8,0xef,0xec,0xe3,
0xd7,0xc9,0xbd,0xb4,0xad,0xab,0xa7,0xa0,0x97,0x8d,0x83,0x7d,0x7d,0x7d,0x79,0x75,
0x73,0x73,0x75,0x76,0x73,0x67,0x56,0x46,0x3b,0x33,0x2a,0x21,0x19,0x13,0x10,0x10,
0x15,0x1d,0x25,0x2e,0x33,0x34,0x33,0x30,0x2f,0x2e,0x2f,0x32,0x38,0x3c,0x41,0x44,
0x4a,0x53,0x60,0x70,0x7d,0x88,0x92,0x9c,0xa2,0xa7,0xa7,0xa5,0xa5,0xaa,0xb6,0xc6,
0xd6,0xe2,0xea,0xef,0xf3,0xf2,0xee,0xec,0xea,0xe9,0xe6,0xe2,0xdf,0xdb,0xd3,0xcb,
0xc4,0xbc,0xb4,0xad,0xaa,0xa6,0xa2,0x9b,0x92,0x8a,0x85,0x86,0x83,0x7f,0x7a,0x75,
0x70,0x6b,0x67,0x64,0x61,0x5d,0x59,0x52,0x4b,0x40,0x33,0x28,0x20,0x1c,0x19,0x1a,
0x1c,0x22,0x28,0x30,0x33,0x34,0x2f,0x2a,0x27,0x27,0x2d,0x37,0x41,0x44,0x44,0x43,
0x47,0x50,0x5d,0x6f,0x7f,0x8b,0x93,0x9b,0xa2,0xa4,0xa4,0xa2,0xa2,0xa8,0xb5,0xc7,
0xdc,0xec,0xf3,0xf3,0xef,0xeb,0xe6,0xe6,0xe5,0xe5,0xe2,0xde,0xda,0xd7,0xd1,0xcc,
0xc4,0xba,0xb1,0xad,0xad,0xac,0xa9,0xa3,0x9c,0x93,0x8a,0x84,0x80,0x7c,0x76,0x70,
0x6b,0x67,0x66,0x66,0x64,0x60,0x5b,0x56,0x51,0x4a,0x42,0x38,0x2e,0x25,0x1c,0x1b,
0x1b,0x1e,0x21,0x27,0x2c,0x31,0x32,0x30,0x30,0x33,0x38,0x3d,0x3e,0x3e,0x3d,0x3c,
0x41,0x4b,0x58,0x67,0x74,0x7f,0x88,0x93,0x9c,0xa2,0xa6,0xa7,0xa9,0xac,0xb3,0xbe,
0xce,0xdb,0xe4,0xe7,0xe6,0xe4,0xe3,0xe4,0xe4,0xe3,0xdf,0xdd,0xda,0xd9,0xd4,0xd0,
0xc9,0xc0,0xbb,0xb7,0xb6,0xb3,0xaf,0xa6,0x9d,0x95,0x8c,0x87,0x81,0x7d,0x78,0x73,
0x70,0x6e,0x6c,0x69,0x65,0x62,0x60,0x5d,0x5a,0x55,0x4d,0x41,0x34,0x28,0x1e,0x1a,
0x1a,0x1e,0x23,0x29,0x2e,0x31,0x31,0x31,0x31,0x31,0x35,0x3b,0x3e,0x3d,0x3b,0x3a,
0x3d,0x44,0x4e,0x5a,0x68,0x77,0x85,0x91,0x99,0x9f,0xa0,0xa0,0xa0,0xa2,0xaa,0xb6,
0xc7,0xd3,0xdb,0xe0,0xe1,0xe2,0xe4,0xe4,0xe4,0xe4,0xe1,0xde,0xde,0xdd,0xda,0xd3,
0xcc,0xc4,0xc0,0xbd,0xbc,0xb8,0xb3,0xaa,0xa0,0x99,0x92,0x8d,0x87,0x82,0x7d,0x7a,
0x77,0x73,0x70,0x6d,0x69,0x64,0x61,0x60,0x5f,0x5b,0x53,0x49,0x3d,0x33,0x29,0x22,
0x1f,0x20,0x22,0x27,0x2d,0x32,0x32,0x30,0x2f,0x30,0x33,0x36,0x39,0x39,0x3a,0x3a,
0x3b,0x3f,0x44,0x4f,0x5c,0x69,0x77,0x84,0x8f,0x98,0x9b,0x9b,0x9a,0x9b,0xa1,0xac,
0xbd,0xc9,0xd1,0xd7,0xda,0xdc,0xe0,0xe4,0xe4,0xe3,0xe2,0xe4,0xe3,0xe2,0xdd,0xd6,
0xcf,0xc9,0xc7,0xc6,0xc7,0xc1,0xb9,0xb1,0xa8,0x9e,0x96,0x90,0x8b,0x89,0x86,0x82,
0x7d,0x77,0x73,0x6e,0x6a,0x66,0x65,0x65,0x66,0x61,0x5a,0x52,0x47,0x3d,0x32,0x2a,
0x22,0x20,0x21,0x26,0x2d,0x2f,0x2f,0x2d,0x2d,0x2d,0x2f,0x32,0x35,0x37,0x37,0x37,
0x37,0x38,0x3c,0x44,0x4e,0x5b,0x67,0x74,0x82,0x8e,0x95,0x96,0x96,0x98,0x9d,0xa6,
0xb2,0xbd,0xc6,0xce,0xd5,0xdb,0xdf,0xdf,0xdf,0xe0,0xe1,0xe4,0xe7,0xe6,0xe2,0xdc,
0xd6,0xd1,0xce,0xcb,0xc9,0xc4,0xbf,0xb7,0xae,0xa5,0x9d,0x9a,0x95,0x90,0x8b,0x88,
0x85,0x80,0x7b,0x73,0x6d,0x68,0x66,0x66,0x67,0x64,0x60,0x5b,0x54,0x4b,0x40,0x33,
0x28,0x25,0x26,0x29,0x2c,0x2b,0x2b,0x29,0x29,0x2a,0x2f,0x35,0x37,0x37,0x36,0x34,
0x33,0x33,0x33,0x39,0x41,0x4c,0x58,0x66,0x75,0x83,0x8c,0x8f,0x90,0x92,0x97,0x9e,
0xa8,0xb1,0xbb,0xc4,0xc9,0xcf,0xd4,0xd8,0xdb,0xdf,0xe2,0xe5,0xe7,0xe5,0xe2,0xdf,
0xdb,0xd6,0xd3,0xd0,0xcf,0xcb,0xc5,0xbd,0xb4,0xad,0xa5,0x9e,0x97,0x90,0x8b,0x88,
0x87,0x87,0x86,0x7e,0x74,0x69,0x60,0x5a,0x58,0x58,0x58,0x58,0x56,0x55,0x55,0x55,
0x53,0x4f,0x48,0x41,0x3a,0x34,0x31,0x2c,0x28,0x26,0x28,0x2d,0x34,0x3a,0x40,0x44,
0x44,0x42,0x3e,0x3e,0x3e,0x40,0x43,0x49,0x51,0x59,0x63,0x6e,0x79,0x84,0x8d,0x96,
0xa1,0xac,0xb5,0xbb,0xbd,0xbc,0xbb,0xbc,0xc3,0xcd,0xd4,0xda,0xdf,0xe2,0xe4,0xe4,
0xe4,0xe1,0xdd,0xd9,0xd5,0xd0,0xcb,0xc6,0xbf,0xba,0xb2,0xa9,0x9f,0x98,0x92,0x91,
0x90,0x8b,0x86,0x80,0x7b,0x75,0x72,0x6f,0x69,0x62,0x5c,0x58,0x56,0x56,0x57,0x58,
0x58,0x5a,0x5a,0x5c,0x5b,0x5a,0x59,0x56,0x53,0x4d,0x48,0x42,0x3c,0x37,0x34,0x33,
0x35,0x3c,0x44,0x4c,0x50,0x53,0x52,0x4f,0x49,0x43,0x43,0x44,0x49,0x50,0x5b,0x68,
0x78,0x87,0x98,0xa5,0xab,0xae,0xb1,0xb3,0xb7,0xb9,0xb9,0xba,0xbd,0xbe,0xc0,0xc6,
0xce,0xd6,0xdd,0xe3,0xe6,0xe6,0xe1,0xda,0xd0,0xc4,0xb8,0xae,0xa6,0xa2,0xa0,0xa2,
0xa4,0xa2,0x9e,0x98,0x92,0x8a,0x83,0x7e,0x79,0x74,0x6e,0x6a,0x64,0x60,0x5d,0x5d,
0x5c,0x5d,0x5d,0x5d,0x5f,0x62,0x65,0x66,0x66,0x64,0x62,0x60,0x5f,0x5b,0x57,0x52,
0x4c,0x46,0x3f,0x3e,0x3e,0x42,0x47,0x4f,0x56,0x5b,0x5b,0x59,0x54,0x4d,0x47,0x45,
0x46,0x4a,0x50,0x59,0x63,0x71,0x81,0x8f,0x9b,0xa3,0xa9,0xae,0xb1,0xb1,0xb1,0xb0,
0xaf,0xad,0xad,0xb1,0xb8,0xc5,0xd1,0xda,0xde,0xde,0xda,0xd4,0xcc,0xc1,0xb5,0xac,
0xa5,0xa1,0xa2,0xa0,0xa0,0x9f,0x9e,0x9b,0x99,0x92,0x8a,0x84,0x7e,0x79,0x74,0x6f,
0x69,0x64,0x61,0x61,0x62,0x66,0x66,0x66,0x66,0x66,0x66,0x68,0x69,0x69,0x69,0x68,
0x66,0x65,0x64,0x63,0x60,0x5a,0x53,0x4d,0x48,0x46,0x47,0x4b,0x51,0x56,0x5a,0x5b,
0x5a,0x55,0x51,0x4d,0x47,0x44,0x44,0x4a,0x53,0x5e,0x69,0x74,0x80,0x8b,0x97,0x9f,
0xa5,0xa8,0xab,0xab,0xab,0xab,0xaa,0xaa,0xac,0xb3,0xbe,0xcf,0xd8,0xdc,0xdd,0xda,
0xd4,0xcb,0xc2,0xb8,0xb0,0xa9,0xa5,0xa2,0xa2,0xa1,0xa2,0xa2,0xa0,0x9d,0x97,0x90,
0x89,0x84,0x7e,0x78,0x71,0x6b,0x69,0x67,0x66,0x66,0x68,0x68,0x68,0x68,0x68,0x6a,
0x69,0x68,0x68,0x69,0x69,0x68,0x68,0x68,0x68,0x67,0x64,0x5d,0x56,0x4f,0x4b,0x49,
0x4a,0x4e,0x54,0x59,0x5a,0x59,0x57,0x53,0x4b,0x44,0x40,0x41,0x46,0x4d,0x55,0x5f,
0x6a,0x75,0x82,0x8e,0x98,0x9f,0xa3,0xa7,0xa8,0xa7,0xa6,0xa6,0xa6,0xa9,0xae,0xb8,
0xc2,0xcd,0xd6,0xda,0xdb,0xd6,0xd0,0xc8,0xc1,0xb9,0xb1,0xab,0xa5,0xa3,0xa3,0xa5,
0xa5,0xa4,0xa1,0x9c,0x96,0x8f,0x89,0x83,0x7b,0x74,0x6f,0x6c,0x6c,0x6a,0x69,0x69,
0x68,0x68,0x68,0x69,0x69,0x66,0x62,0x5f,0x5c,0x5c,0x5c,0x5f,0x62,0x67,0x6d,0x71,
0x71,0x71,0x6f,0x6a,0x63,0x5c,0x54,0x4c,0x4b,0x4e,0x50,0x52,0x52,0x52,0x52,0x53,
0x55,0x55,0x57,0x59,0x5b,0x61,0x69,0x70,0x77,0x7e,0x84,0x8a,0x8e,0x92,0x95,0x9b,
0xa1,0xa7,0xad,0xb1,0xb5,0xb8,0xbc,0xc1,0xc6,0xc6,0xc6,0xc4,0xc0,0xbe,0xba,0xb7,
0xb2,0xae,0xaa,0xa7,0xa5,0xa3,0xa2,0xa2,0xa0,0x9b,0x97,0x91,0x8a,0x81,0x79,0x73,
0x6d,0x6a,0x67,0x68,0x6a,0x6c,0x6c,0x6e,0x6e,0x6d,0x6e,0x6b,0x69,0x65,0x64,0x64,
0x65,0x67,0x69,0x69,0x69,0x6a,0x6e,0x73,0x77,0x7a,0x7b,0x7d,0x7d,0x7b,0x75,0x6c,
0x63,0x5a,0x55,0x53,0x53,0x54,0x56,0x58,0x5a,0x5c,0x5f,0x60,0x61,0x65,0x6a,0x70,
0x74,0x77,0x78,0x79,0x79,0x7a,0x7f,0x86,0x8f,0x9a,0xa2,0xa8,0xac,0xaf,0xaf,0xaf,
0xaf,0xae,0xaa,0xa7,0xa7,0xa7,0xab,0xac,0xab,0xa8,0xa6,0xa6,0xa6,0xa6,0xa5,0xa2,
0x9d,0x98,0x92,0x8d,0x89,0x85,0x81,0x7e,0x7c,0x7a,0x79,0x76,0x74,0x73,0x73,0x71,
0x72,0x71,0x71,0x72,0x72,0x74,0x74,0x74,0x74,0x74,0x74,0x74,0x73,0x73,0x74,0x75,
0x77,0x77,0x79,0x7c,0x81,0x86,0x87,0x85,0x7e,0x76,0x6e,0x69,0x64,0x5f,0x5a,0x56,
0x55,0x55,0x59,0x5c,0x5e,0x5f,0x62,0x66,0x6c,0x6f,0x71,0x71,0x71,0x71,0x74,0x76,
0x7b,0x80,0x85,0x8b,0x92,0x98,0x9a,0x9c,0x9e,0x9f,0xa0,0xa0,0xa0,0xa0,0xa2,0xa4,
0xa4,0xa5,0xa5,0xa5,0xa5,0xa5,0xa4,0xa1,0x9e,0x99,0x99,0x96,0x95,0x93,0x90,0x8d,
0x8a,0x8a,0x87,0x84,0x7f,0x7b,0x78,0x79,0x78,0x78,0x77,0x77,0x79,0x7a,0x7c,0x7f,
0x80,0x80,0x7f,0x7f,0x7e,0x7d,0x7b,0x79,0x76,0x75,0x74,0x74,0x78,0x7c,0x82,0x86,
0x88,0x87,0x83,0x7d,0x76,0x6e,0x67,0x60,0x59,0x56,0x55,0x55,0x55,0x55,0x57,0x5a,
0x5f,0x63,0x67,0x69,0x6a,0x6d,0x6f,0x6f,0x6f,0x6f,0x70,0x75,0x7d,0x88,0x8e,0x92,
0x94,0x96,0x99,0x9c,0x9c,0x9c,0x9d,0x9e,0xa0,0xa3,0xa3,0xa4,0xa6,0xa6,0xa7,0xa6,
0xa4,0xa3,0xa2,0xa0,0x9c,0x99,0x96,0x94,0x91,0x90,0x8f,0x8e,0x8c,0x88,0x86,0x82,
0x80,0x7c,0x7a,0x7a,0x7a,0x7b,0x7b,0x7c,0x7c,0x7e,0x80,0x84,0x84,0x84,0x82,0x7e,
0x7c,0x78,0x78,0x74,0x73,0x71,0x71,0x71,0x73,0x75,0x77,0x79,0x7a,0x7c,0x7e,0x80,
0x7f,0x7d,0x78,0x71,0x6b,0x63,0x5d,0x57,0x51,0x50,0x56,0x5d,0x63,0x68,0x6d,0x72,
0x76,0x79,0x7a,0x7a,0x79,0x78,0x78,0x79,0x7b,0x7c,0x7e,0x82,0x87,0x8b,0x8f,0x95,
0x9b,0xa3,0xa5,0xa5,0xa2,0x9f,0x9c,0x9b,0x97,0x96,0x96,0x95,0x96,0x98,0x99,0x99,
0x97,0x95,0x93,0x92,0x8f,0x8d,0x8b,0x89,0x86,0x84,0x81,0x7f,0x7b,0x7a,0x79,0x78,
0x78,0x7a,0x7d,0x7f,0x80,0x80,0x82,0x82,0x82,0x82,0x82,0x81,0x7e,0x7c,0x7a,0x7a,
0x7a,0x7a,0x7b,0x7b,0x7b,0x7d,0x7d,0x7d,0x7d,0x7d,0x7f,0x7f,0x7e,0x7f,0x7d,0x7b,
0x78,0x77,0x79,0x7a,0x79,0x76,0x71,0x6c,0x68,0x65,0x66,0x65,0x67,0x68,0x6b,0x70,
0x74,0x75,0x77,0x77,0x75,0x74,0x73,0x73,0x74,0x76,0x77,0x77,0x77,0x78,0x7b,0x82,
0x89,0x8c,0x8f,0x90,0x92,0x93,0x93,0x91,0x8d,0x8b,0x8a,0x8b,0x8c,0x8e,0x91,0x93,
0x95,0x97,0x98,0x98,0x96,0x94,0x92,0x91,0x8f,0x8e,0x8b,0x89,0x86,0x85,0x85,0x85,
0x87,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x87,0x85,0x84,0x82,0x82,0x83,0x83,0x83,
0x82,0x81,0x81,0x81,0x83,0x83,0x83,0x81,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7e,0x7e,
0x7e,0x80,0x80,0x7e,0x7a,0x76,0x73,0x71,0x6f,0x6c,0x6a,0x67,0x67,0x67,0x67,0x68,
0x69,0x69,0x69,0x6a,0x6a,0x6b,0x6a,0x69,0x69,0x6b,0x6b,0x6b,0x6c,0x6f,0x73,0x76,
0x79,0x7b,0x7e,0x83,0x88,0x8a,0x8d,0x8d,0x8e,0x8e,0x8f,0x91,0x91,0x92,0x95,0x98,
0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9a,0x98,0x96,0x94,0x91,0x91,0x90,0x8f,
0x8d,0x8c,0x8b,0x8b,0x8c,0x8c,0x8c,0x8b,0x89,0x88,0x89,0x88,0x88,0x87,0x85,0x84,
0x82,0x82,0x81,0x81,0x81,0x80,0x7e,0x7e,0x7c,0x7b,0x7b,0x7b,0x7b,0x7b,0x7c,0x7e,
0x7e,0x7d,0x7c,0x7c,0x7c,0x7c,0x79,0x76,0x70,0x6c,0x68,0x66,0x66,0x66,0x68,0x68,
0x69,0x6a,0x6b,0x6a,0x6a,0x69,0x6a,0x6a,0x68,0x68,0x67,0x69,0x6b,0x6e,0x71,0x73,
0x77,0x7c,0x81,0x85,0x89,0x8c,0x8e,0x8f,0x8f,0x8f,0x8f,0x90,0x92,0x96,0x99,0x99,
0x99,0x99,0x99,0x9c,0x9d,0x9d,0x9d,0x9b,0x9a,0x97,0x97,0x97,0x97,0x95,0x93,0x90,
0x8e,0x8d,0x8d,0x8d,0x8d,0x8c,0x8b,0x8b,0x8a,0x8a,0x8a,0x89,0x87,0x85,0x85,0x84,
0x83,0x82,0x82,0x82,0x7f,0x7f,0x7d,0x7c,0x7c,0x7c,0x7b,0x7c,0x7a,0x79,0x77,0x75,
0x75,0x75,0x76,0x7a,0x7e,0x82,0x86,0x89,0x8a,0x89,0x81,0x75,0x67,0x5e,0x59,0x5a,
0x5d,0x61,0x66,0x6b,0x72,0x77,0x78,0x77,0x72,0x6c,0x69,0x69,0x6a,0x6a,0x6a,0x6a,
0x6a,0x6b,0x6d,0x73,0x7b,0x85,0x8e,0x93,0x95,0x95,0x95,0x92,0x8f,0x8a,0x85,0x82,
0x82,0x8d,0x94,0x99,0x9a,0x9c,0x9d,0x9e,0x9d,0x9e,0x9d,0x9a,0x97,0x93,0x92,0x8f,
0x8e,0x8c,0x8c,0x8b,0x89,0x89,0x88,0x88,0x87,0x87,0x86,0x86,0x86,0x85,0x84,0x83,
0x83,0x83,0x83,0x85,0x85,0x85,0x87,0x88,0x87,0x87,0x84,0x82,0x7f,0x7e,0x7d,0x7d,
0x7c,0x7d,0x7e,0x7e,0x7e,0x80,0x84,0x88,0x89,0x89,0x8a,0x89,0x88,0x88,0x82,0x7b,
0x71,0x68,0x62,0x60,0x5d,0x5c,0x5d,0x5f,0x64,0x6a,0x6d,0x6d,0x6a,0x65,0x60,0x5b,
0x58,0x58,0x57,0x58,0x58,0x5a,0x5d,0x62,0x6b,0x74,0x7c,0x82,0x86,0x8a,0x8d,0x90,
0x90,0x8f,0x8c,0x89,0x88,0x8b,0x91,0x97,0x9c,0xa1,0xa4,0xa7,0xa9,0xa9,0xaa,0xa8,
0xa5,0xa1,0x9d,0x97,0x93,0x8f,0x8e,0x8e,0x8e,0x8e,0x8e,0x8d,0x8c,0x8b,0x8a,0x8b,
0x8a,0x89,0x88,0x87,0x86,0x86,0x86,0x86,0x85,0x84,0x86,0x87,0x88,0x89,0x88,0x88,
0x86,0x83,0x80,0x7f,0x7d,0x7c,0x7c,0x7c,0x7e,0x82,0x88,0x8e,0x8f,0x8c,0x88,0x85,
0x85,0x85,0x83,0x7f,0x77,0x70,0x6c,0x6a,0x65,0x5f,0x59,0x55,0x54,0x55,0x5a,0x5f,
0x62,0x61,0x5d,0x58,0x52,0x51,0x50,0x52,0x56,0x59,0x5b,0x5d,0x63,0x6b,0x73,0x77,
0x7b,0x7e,0x85,0x8b,0x92,0x94,0x96,0x95,0x93,0x94,0x94,0x97,0x9c,0xa2,0xa7,0xac,
0xaf,0xaf,0xb0,0xaf,0xae,0xad,0xab,0xa7,0xa2,0x9e,0x9a,0x98,0x95,0x96,0x95,0x93,
0x90,0x8e,0x8c,0x8b,0x8a,0x89,0x88,0x86,0x85,0x83,0x84,0x83,0x83,0x82,0x82,0x84,
0x85,0x86,0x88,0x88,0x87,0x86,0x84,0x84,0x81,0x7e,0x7c,0x7a,0x7b,0x7e,0x83,0x88,
0x8a,0x89,0x87,0x86,0x86,0x87,0x87,0x85,0x81,0x7d,0x7a,0x77,0x72,0x6d,0x67,0x5f,
0x59,0x55,0x56,0x59,0x5d,0x5f,0x60,0x5d,0x58,0x55,0x52,0x53,0x54,0x57,0x57,0x58,
0x5b,0x5e,0x62,0x67,0x6d,0x72,0x79,0x7f,0x86,0x8a,0x8f,0x93,0x94,0x94,0x94,0x94,
0x94,0x97,0x9c,0xa2,0xa6,0xa9,0xab,0xab,0xad,0xaf,0xaf,0xb0,0xaf,0xaa,0xa4,0xa0,
0x9b,0x99,0x98,0x96,0x93,0x91,0x8f,0x8e,0x8c,0x8a,0x89,0x87,0x86,0x85,0x85,0x84,
0x83,0x83,0x83,0x83,0x83,0x84,0x84,0x84,0x84,0x85,0x85,0x86,0x85,0x83,0x80,0x7b,
0x79,0x79,0x7c,0x80,0x84,0x85,0x86,0x87,0x87,0x88,0x87,0x86,0x83,0x81,0x7e,0x7e,
0x7c,0x7b,0x76,0x6e,0x67,0x60,0x5b,0x58,0x57,0x59,0x5d,0x5e,0x5d,0x5b,0x58,0x55,
0x53,0x53,0x54,0x54,0x55,0x57,0x5a,0x5c,0x5f,0x63,0x67,0x6d,0x74,0x7b,0x80,0x87,
0x8d,0x90,0x91,0x92,0x92,0x92,0x93,0x96,0x9b,0x9f,0xa2,0xa4,0xa8,0xab,0xae,0xb0,
0xb0,0xb0,0xad,0xa8,0xa4,0xa0,0x9d,0x9a,0x97,0x96,0x93,0x91,0x90,0x8d,0x8a,0x86,
0x85,0x85,0x84,0x82,0x81,0x80,0x7e,0x7e,0x7e,0x7f,0x7e,0x7f,0x7f,0x7f,0x81,0x83,
0x86,0x86,0x85,0x82,0x7f,0x7e,0x7e,0x7f,0x80,0x82,0x84,0x86,0x8a,0x8f,0x91,0x91,
0x8e,0x89,0x84,0x7e,0x7b,0x7a,0x7d,0x7f,0x82,0x82,0x82,0x81,0x7f,0x7c,0x77,0x71,
0x6b,0x64,0x5e,0x58,0x51,0x4c,0x48,0x48,0x4a,0x4f,0x53,0x56,0x58,0x5b,0x5c,0x5d,
0x5d,0x5c,0x5a,0x5a,0x5a,0x5d,0x61,0x69,0x71,0x7a,0x82,0x89,0x91,0x97,0x9d,0x9f,
0xa1,0xa0,0xa1,0xa0,0x9f,0xa1,0xa2,0xa5,0xa9,0xab,0xad,0xae,0xae,0xae,0xad,0xaa,
0xa8,0xa5,0xa1,0x9b,0x97,0x93,0x8f,0x8e,0x8e,0x8c,0x8a,0x88,0x86,0x87,0x86,0x85,
0x83,0x83,0x82,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x82,0x82,0x84,
0x87,0x8b,0x8c,0x8d,0x8c,0x8c,0x8b,0x89,0x89,0x87,0x85,0x82,0x80,0x7f,0x7f,0x7c,
0x7a,0x79,0x78,0x79,0x7b,0x7e,0x7e,0x7d,0x79,0x72,0x69,0x5f,0x59,0x53,0x51,0x4f,
0x4e,0x4e,0x4e,0x51,0x54,0x57,0x57,0x57,0x58,0x58,0x5a,0x5b,0x5b,0x5b,0x5b,0x5c,
0x60,0x65,0x6c,0x74,0x7c,0x84,0x8c,0x93,0x9a,0x9f,0xa2,0xa5,0xa5,0xa5,0xa5,0xa6,
0xa6,0xa7,0xa9,0xab,0xae,0xb1,0xb3,0xb4,0xb3,0xb0,0xaf,0xab,0xa9,0xa5,0xa0,0x9e,
0x9a,0x97,0x93,0x91,0x8e,0x8c,0x8b,0x89,0x89,0x87,0x85,0x82,0x81,0x81,0x82,0x81,
0x81,0x81,0x7f,0x7f,0x7e,0x7e,0x7d,0x7c,0x7c,0x7d,0x7f,0x83,0x87,0x88,0x88,0x87,
0x87,0x87,0x87,0x88,0x89,0x88,0x86,0x84,0x80,0x80,0x7d,0x7d,0x7b,0x79,0x79,0x7b,
0x7d,0x7f,0x7f,0x7d,0x7b,0x75,0x70,0x68,0x62,0x5c,0x55,0x50,0x4e,0x4f,0x51,0x53,
0x53,0x55,0x56,0x57,0x58,0x5a,0x5c,0x5c,0x5b,0x5b,0x5b,0x5c,0x5f,0x63,0x67,0x6d,
0x74,0x7d,0x86,0x8f,0x95,0x9a,0x9f,0xa2,0xa4,0xa4,0xa4,0xa4,0xa5,0xa5,0xa5,0xa5,
0xa8,0xab,0xad,0xb0,0xb0,0xb0,0xae,0xab,0xa7,0xa4,0xa2,0xa1,0x9f,0x9c,0x98,0x93,
0x8f,0x8d,0x8d,0x8b,0x89,0x87,0x83,0x81,0x81,0x81,0x81,0x81,0x80,0x7e,0x7d,0x7c,
0x7c,0x7b,0x7a,0x79,0x79,0x7b,0x7d,0x81,0x84,0x86,0x86,0x87,0x87,0x87,0x87,0x86,
0x85,0x85,0x85,0x84,0x84,0x81,0x7d,0x79,0x76,0x75,0x76,0x7a,0x7d,0x7e,0x7d,0x7c,
0x79,0x78,0x74,0x6e,0x67,0x60,0x59,0x53,0x51,0x51,0x51,0x50,0x52,0x52,0x53,0x55,
0x56,0x58,0x59,0x5a,0x59,0x5a,0x5a,0x5c,0x5d,0x5f,0x63,0x68,0x6f,0x77,0x80,0x87,
0x8f,0x97,0x9d,0xa0,0xa0,0xa2,0xa2,0xa2,0xa3,0xa4,0xa5,0xa6,0xa6,0xa8,0xab,0xae,
0xaf,0xaf,0xaf,0xae,0xab,0xa8,0xa6,0xa2,0x9f,0x9c,0x98,0x96,0x92,0x91,0x8e,0x8a,
0x87,0x85,0x82,0x81,0x82,0x81,0x81,0x80,0x80,0x7e,0x7f,0x7d,0x7b,0x7a,0x79,0x79,
0x7a,0x7c,0x7e,0x80,0x80,0x82,0x85,0x85,0x85,0x85,0x85,0x84,0x83,0x83,0x83,0x83,
0x83,0x81,0x7f,0x7d,0x7b,0x7b,0x79,0x79,0x78,0x77,0x76,0x74,0x73,0x70,0x6e,0x6c,
0x6b,0x6b,0x6d,0x6d,0x6d,0x6b,0x68,0x63,0x5b,0x52,0x4e,0x4c,0x4e,0x52,0x56,0x5a,
0x5f,0x64,0x68,0x6b,0x6c,0x6b,0x69,0x68,0x6b,0x6e,0x70,0x74,0x79,0x80,0x87,0x8c,
0x92,0x99,0xa0,0xa5,0xa8,0xa8,0xa8,0xa7,0xa5,0xa4,0xa3,0xa0,0x9e,0x9e,0xa0,0xa6,
0xaa,0xab,0xab,0xa9,0xa5,0xa2,0x9f,0x9a,0x99,0x96,0x92,0x8d,0x8b,0x88,0x89,0x88,
0x87,0x86,0x86,0x85,0x84,0x85,0x84,0x82,0x7e,0x7c,0x7a,0x7a,0x7b,0x7d,0x7f,0x80,
0x82,0x85,0x87,0x89,0x8c,0x8e,0x8e,0x8d,0x8c,0x8b,0x89,0x87,0x84,0x82,0x82,0x81,
0x82,0x81,0x81,0x81,0x82,0x82,0x81,0x7e,0x7a,0x75,0x6e,0x69,0x64,0x65,0x63,0x63,
0x63,0x65,0x68,0x6a,0x6d,0x70,0x72,0x71,0x6f,0x68,0x61,0x5a,0x55,0x52,0x4f,0x4f,
0x52,0x57,0x5f,0x68,0x6f,0x75,0x77,0x76,0x76,0x74,0x73,0x72,0x74,0x78,0x7c,0x80,
0x83,0x88,0x8e,0x96,0x9e,0xa5,0xa8,0xa9,0xa8,0xa7,0xa6,0xa3,0xa2,0x9f,0x9d,0x9c,
0x9e,0xa1,0xa5,0xa8,0xaa,0xaa,0xa9,0xa8,0xa4,0xa2,0x9d,0x99,0x94,0x90,0x8d,0x8b,
0x8c,0x8b,0x8b,0x8a,0x89,0x86,0x86,0x83,0x80,0x7e,0x7c,0x7c,0x7b,0x7c,0x7b,0x7a,
0x79,0x79,0x7b,0x7f,0x88,0x8e,0x90,0x8e,0x8b,0x88,0x86,0x82,0x7f,0x7c,0x79,0x78,
0x79,0x7c,0x7f,0x80,0x7f,0x7d,0x7c,0x7a,0x78,0x75,0x72,0x6e,0x6a,0x66,0x64,0x61,
0x60,0x63,0x65,0x67,0x68,0x6b,0x6f,0x74,0x77,0x77,0x73,0x6d,0x67,0x61,0x5c,0x57,
0x55,0x55,0x5b,0x61,0x68,0x6e,0x72,0x76,0x7a,0x7a,0x7a,0x78,0x77,0x77,0x77,0x78,
0x78,0x79,0x7c,0x80,0x88,0x8f,0x95,0x9a,0x9d,0xa0,0xa2,0xa3,0xa2,0xa2,0x9e,0x9a,
0x97,0x97,0x98,0x9c,0xa0,0xa2,0xa4,0xa5,0xa6,0xa5,0xa6,0xa2,0x9f,0x9a,0x95,0x93,
0x90,0x90,0x8e,0x8c,0x8a,0x89,0x88,0x87,0x87,0x87,0x86,0x82,0x7f,0x7c,0x7b,0x79,
0x77,0x77,0x77,0x79,0x7d,0x81,0x85,0x87,0x89,0x8b,0x8b,0x8b,0x8b,0x86,0x82,0x7e,
0x7c,0x7b,0x7c,0x7d,0x7e,0x80,0x81,0x80,0x7e,0x7e,0x7b,0x79,0x74,0x70,0x6b,0x66,
0x66,0x65,0x64,0x64,0x63,0x63,0x65,0x6b,0x70,0x74,0x75,0x74,0x73,0x72,0x6e,0x6a,
0x64,0x5f,0x5b,0x58,0x59,0x5b,0x61,0x67,0x70,0x76,0x79,0x79,0x79,0x79,0x77,0x77,
0x77,0x76,0x75,0x77,0x79,0x7d,0x81,0x86,0x8c,0x91,0x97,0x9c,0xa1,0xa4,0xa4,0xa4,
0x9f,0x9c,0x99,0x97,0x97,0x98,0x9c,0xa0,0xa2,0xa5,0xa6,0xa5,0xa6,0xa4,0xa1,0x9d,
0x9a,0x96,0x94,0x91,0x8f,0x8d,0x8b,0x8b,0x8b,0x8b,0x8a,0x88,0x84,0x81,0x80,0x80,
0x80,0x7d,0x7a,0x77,0x77,0x78,0x7a,0x7f,0x83,0x88,0x8a,0x8c,0x8b,0x8c,0x88,0x84,
0x80,0x7d,0x7b,0x7a,0x7b,0x7e,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x78,0x73,
0x6f,0x6d,0x69,0x67,0x64,0x63,0x63,0x63,0x67,0x6b,0x6d,0x6e,0x71,0x74,0x75,0x75,
0x73,0x6f,0x69,0x64,0x5e,0x5b,0x5a,0x5d,0x62,0x66,0x6b,0x6f,0x73,0x75,0x77,0x78,
0x7a,0x79,0x77,0x77,0x76,0x75,0x76,0x79,0x7c,0x80,0x86,0x8c,0x93,0x99,0x9e,0xa1,
0xa1,0xa0,0x9e,0x9b,0x9a,0x99,0x99,0x99,0x9b,0x9b,0x9b,0x9e,0xa1,0xa5,0xa5,0xa5,
0xa3,0x9f,0x9c,0x99,0x96,0x93,0x91,0x8f,0x8d,0x8b,0x8a,0x8a,0x89,0x88,0x85,0x84,
0x82,0x80,0x7c,0x79,0x77,0x75,0x74,0x74,0x76,0x7a,0x7d,0x80,0x83,0x85,0x86,0x86,
0x84,0x82,0x7f,0x7e,0x7d,0x7e,0x7d,0x7c,0x7c,0x7c,0x7e,0x82,0x85,0x85,0x83,0x7f,
0x7b,0x78,0x75,0x73,0x72,0x70,0x6d,0x6c,0x6c,0x6d,0x70,0x72,0x72,0x72,0x71,0x70,
0x6f,0x6e,0x6e,0x6e,0x6f,0x72,0x74,0x76,0x79,0x7a,0x79,0x77,0x74,0x72,0x6f,0x6d,
0x6d,0x6d,0x6d,0x6f,0x71,0x75,0x78,0x79,0x7b,0x7c,0x7c,0x7c,0x7b,0x79,0x77,0x77,
0x77,0x77,0x7c,0x80,0x86,0x8a,0x8f,0x93,0x97,0x9a,0x9c,0x9c,0x9c,0x9c,0x9b,0x9b,
0x9a,0x99,0x99,0x9a,0x9d,0xa0,0xa1,0xa2,0xa3,0xa2,0xa1,0xa0,0x9f,0x9c,0x99,0x95,
0x93,0x90,0x8f,0x8d,0x8a,0x87,0x83,0x80,0x7e,0x7d,0x7d,0x7d,0x7f,0x80,0x82,0x84,
0x86,0x86,0x85,0x82,0x80,0x7e,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,0x7d,0x7e,0x7e,0x7d,
0x7b,0x7a,0x7b,0x7a,0x7b,0x77,0x73,0x6f,0x6c,0x6b,0x6b,0x6e,0x70,0x70,0x70,0x72,
0x73,0x73,0x73,0x72,0x71,0x70,0x6f,0x6e,0x6e,0x70,0x71,0x71,0x73,0x75,0x7a,0x7e,
0x82,0x85,0x86,0x85,0x82,0x7f,0x7b,0x78,0x76,0x75,0x74,0x74,0x75,0x76,0x79,0x7b,
0x7d,0x7e,0x7d,0x7e,0x7c,0x7a,0x77,0x76,0x76,0x76,0x76,0x78,0x7c,0x7e,0x83,0x88,
0x8f,0x93,0x95,0x96,0x98,0x97,0x96,0x96,0x95,0x95,0x94,0x94,0x96,0x98,0x9b,0x9d,
0xa0,0xa0,0x9f,0x9e,0x9d,0x9a,0x99,0x96,0x94,0x93,0x90,0x8e,0x8b,0x88,0x84,0x82,
0x81,0x81,0x80,0x7f,0x7f,0x7f,0x81,0x84,0x85,0x85,0x85,0x83,0x81,0x80,0x7f,0x80,
0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7d,0x7d,0x7b,0x78,0x74,
0x72,0x70,0x70,0x70,0x70,0x71,0x71,0x71,0x72,0x72,0x72,0x72,0x72,0x72,0x72,0x72,
0x73,0x72,0x71,0x70,0x70,0x71,0x73,0x79,0x7d,0x81,0x83,0x84,0x83,0x83,0x80,0x7e,
0x7b,0x77,0x75,0x72,0x73,0x73,0x75,0x76,0x78,0x7a,0x7c,0x7c,0x7c,0x7a,0x79,0x79,
0x78,0x77,0x75,0x75,0x76,0x77,0x7a,0x7e,0x83,0x88,0x8d,0x90,0x93,0x96,0x96,0x96,
0x95,0x94,0x92,0x92,0x92,0x93,0x97,0x9a,0x9c,0x9c,0x9c,0x9d,0x9e,0x9d,0x9d,0x9c,
0x9a,0x98,0x93,0x91,0x8e,0x8d,0x8a,0x88,0x85,0x84,0x81,0x80,0x80,0x80,0x82,0x84,
0x84,0x84,0x84,0x82,0x81,0x80,0x80,0x81,0x7f,0x7d,0x7c,0x7c,0x7c,0x7d,0x7d,0x7e,
0x7e,0x7e,0x7e,0x7d,0x7e,0x7d,0x7b,0x77,0x74,0x71,0x71,0x71,0x71,0x71,0x71,0x72,
0x72,0x72,0x72,0x72,0x72,0x72,0x73,0x72,0x73,0x72,0x71,0x6f,0x6f,0x70,0x70,0x74,
0x77,0x7b,0x7f,0x82,0x84,0x84,0x84,0x83,0x80,0x7c,0x79,0x77,0x77,0x77,0x76,0x75,
0x77,0x77,0x79,0x7b,0x7c,0x7c,0x7b,0x7a,0x79,0x7a,0x77,0x76,0x75,0x75,0x75,0x77,
0x7a,0x7e,0x83,0x87,0x8c,0x90,0x92,0x94,0x94,0x93,0x91,0x91,0x91,0x92,0x94,0x96,
0x98,0x98,0x99,0x9b,0x9d,0x9d,0x9d,0x9c,0x9b,0x9a,0x98,0x98,0x95,0x92,0x8f,0x8c,
0x89,0x87,0x85,0x84,0x84,0x83,0x83,0x83,0x84,0x84,0x84,0x84,0x84,0x83,0x82,0x82,
0x80,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7d,0x79,
0x76,0x73,0x71,0x72,0x72,0x72,0x71,0x71,0x71,0x71,0x71,0x71,0x71,0x71,0x70,0x70,
0x70,0x70,0x70,0x70,0x71,0x72,0x72,0x73,0x76,0x78,0x78,0x79,0x79,0x7a,0x7a,0x7c,
0x7e,0x80,0x83,0x85,0x86,0x87,0x87,0x85,0x85,0x85,0x84,0x83,0x7f,0x7a,0x76,0x75,
0x76,0x7a,0x7f,0x80,0x82,0x82,0x83,0x83,0x84,0x82,0x7e,0x7b,0x7b,0x7c,0x7c,0x7e,
0x81,0x83,0x85,0x87,0x89,0x8c,0x92,0x95,0x96,0x96,0x96,0x94,0x95,0x94,0x93,0x91,
0x91,0x92,0x94,0x96,0x98,0x98,0x96,0x95,0x94,0x93,0x90,0x8d,0x8b,0x88,0x87,0x87,
0x87,0x87,0x88,0x88,0x89,0x88,0x87,0x88,0x87,0x87,0x85,0x83,0x81,0x81,0x80,0x80,
0x81,0x81,0x83,0x84,0x84,0x84,0x82,0x7f,0x7c,0x7a,0x77,0x77,0x74,0x73,0x71,0x70,
0x6f,0x70,0x70,0x72,0x73,0x73,0x72,0x72,0x73,0x72,0x70,0x6e,0x6d,0x6d,0x6d,0x6e,
0x71,0x74,0x76,0x78,0x79,0x7b,0x7e,0x7e,0x7f,0x7f,0x7f,0x7e,0x7e,0x7d,0x7d,0x7d,
0x7f,0x81,0x84,0x85,0x87,0x88,0x88,0x88,0x89,0x89,0x88,0x85,0x80,0x7b,0x78,0x77,
0x78,0x77,0x79,0x7a,0x7d,0x7f,0x82,0x82,0x81,0x7f,0x7c,0x79,0x78,0x78,0x7a,0x7c,
0x7e,0x7f,0x80,0x81,0x84,0x88,0x8e,0x91,0x93,0x94,0x93,0x94,0x93,0x91,0x90,0x90,
0x90,0x92,0x93,0x95,0x96,0x96,0x96,0x96,0x97,0x94,0x90,0x8d,0x8b,0x8a,0x8a,0x8a,
0x88,0x87,0x87,0x87,0x87,0x8a,0x8a,0x8a,0x88,0x85,0x82,0x7f,0x80,0x7d,0x7d,0x7c,
0x7c,0x7e,0x80,0x82,0x82,0x82,0x80,0x7e,0x7b,0x7a,0x77,0x76,0x75,0x73,0x72,0x70,
0x71,0x70,0x6f,0x6f,0x6f,0x71,0x72,0x74,0x75,0x75,0x73,0x72,0x71,0x71,0x71,0x74,
0x76,0x76,0x77,0x79,0x7c,0x7d,0x7f,0x7f,0x81,0x82,0x81,0x82,0x80,0x7f,0x7d,0x7d,
0x7e,0x7f,0x82,0x83,0x84,0x84,0x85,0x86,0x88,0x88,0x87,0x85,0x83,0x81,0x7d,0x7b,
0x78,0x76,0x75,0x75,0x76,0x7b,0x7e,0x80,0x80,0x7d,0x7b,0x79,0x79,0x79,0x7a,0x7b,
0x7b,0x7b,0x7d,0x7f,0x82,0x85,0x87,0x89,0x8c,0x8f,0x92,0x92,0x93,0x92,0x90,0x8e,
0x8f,0x8f,0x90,0x91,0x93,0x95,0x97,0x97,0x95,0x93,0x90,0x8f,0x8e,0x8e,0x8c,0x8a,
0x89,0x88,0x88,0x89,0x89,0x8a,0x8a,0x89,0x87,0x85,0x84,0x84,0x84,0x82,0x7f,0x7e,
0x7d,0x7d,0x7f,0x82,0x82,0x81,0x80,0x7e,0x7e,0x7d,0x7b,0x79,0x76,0x74,0x72,0x72,
0x71,0x70,0x70,0x70,0x70,0x71,0x73,0x73,0x73,0x72,0x72,0x72,0x73,0x72,0x71,0x73,
0x73,0x73,0x75,0x78,0x7a,0x7c,0x7c,0x7d,0x7f,0x81,0x81,0x81,0x80,0x7e,0x7d,0x7d,
0x7d,0x80,0x80,0x81,0x81,0x82,0x82,0x84,0x85,0x85,0x85,0x85,0x84,0x83,0x82,0x7f,
0x7c,0x78,0x76,0x75,0x76,0x79,0x7c,0x80,0x80,0x80,0x7f,0x7f,0x7d,0x7b,0x7a,0x7a,
0x7a,0x7b,0x7d,0x7e,0x80,0x80,0x81,0x84,0x88,0x8c,0x8e,0x91,0x92,0x91,0x8f,0x90,
0x8f,0x8f,0x8f,0x90,0x92,0x94,0x96,0x96,0x95,0x94,0x93,0x92,0x93,0x90,0x8e,0x8c,
0x8a,0x8a,0x8a,0x8a,0x8c,0x8c,0x8c,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x82,0x80,0x80,
0x80,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x81,0x80,0x7d,0x7b,0x79,0x75,0x75,0x72,
0x71,0x70,0x70,0x71,0x71,0x71,0x73,0x73,0x73,0x75,0x75,0x75,0x74,0x73,0x73,0x73,
0x73,0x75,0x75,0x77,0x77,0x77,0x79,0x7b,0x7f,0x82,0x82,0x82,0x80,0x7f,0x7f,0x7f,
0x7f,0x80,0x80,0x80,0x80,0x81,0x83,0x84,0x86,0x86,0x86,0x85,0x86,0x85,0x85,0x84,
0x81,0x7e,0x7a,0x79,0x78,0x78,0x79,0x7c,0x7f,0x80,0x80,0x80,0x7f,0x7d,0x7c,0x7c,
0x7c,0x7c,0x7c,0x7c,0x7c,0x7e,0x7f,0x81,0x84,0x87,0x88,0x8b,0x8e,0x90,0x90,0x90,
0x90,0x8e,0x8e,0x8e,0x8f,0x92,0x93,0x93,0x93,0x94,0x94,0x94,0x94,0x93,0x91,0x90,
0x8d,0x8b,0x8b,0x8a,0x8b,0x8b,0x8c,0x8c,0x8c,0x8c,0x8b,0x88,0x84,0x82,0x80,0x81,
0x80,0x81,0x81,0x80,0x7f,0x7f,0x80,0x80,0x80,0x7f,0x7d,0x7c,0x7c,0x78,0x77,0x75,
0x72,0x70,0x6e,0x6f,0x6e,0x6f,0x6f,0x71,0x72,0x71,0x72,0x71,0x71,0x70,0x70,0x70,
0x72,0x73,0x75,0x77,0x77,0x79,0x7b,0x7d,0x7d,0x7d,0x7d,0x7f,0x81,0x84,0x85,0x85,
0x85,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x83,0x82,0x81,0x82,0x81,0x81,0x81,0x82,
0x84,0x85,0x87,0x87,0x87,0x86,0x84,0x81,0x81,0x7e,0x7d,0x7d,0x7c,0x7c,0x7b,0x7c,
0x7b,0x7b,0x7b,0x7c,0x7d,0x7d,0x7d,0x7d,0x7c,0x7b,0x7a,0x7a,0x7a,0x7a,0x7b,0x7d,
0x7e,0x80,0x84,0x88,0x8b,0x8c,0x8c,0x8d,0x8d,0x8d,0x8f,0x90,0x90,0x90,0x90,0x8f,
0x8f,0x8e,0x8d,0x8f,0x90,0x92,0x94,0x96,0x96,0x96,0x93,0x91,0x8e,0x8a,0x8a,0x88,
0x87,0x87,0x86,0x86,0x86,0x85,0x83,0x81,0x80,0x80,0x81,0x81,0x81,0x80,0x7c,0x78,
0x75,0x73,0x74,0x74,0x74,0x73,0x73,0x72,0x73,0x72,0x71,0x70,0x70,0x6f,0x6f,0x6f,
0x6f,0x71,0x71,0x72,0x72,0x73,0x74,0x74,0x76,0x76,0x77,0x79,0x7b,0x7d,0x7e,0x80,
0x80,0x81,0x82,0x82,0x84,0x86,0x86,0x87,0x87,0x87,0x87,0x87,0x86,0x85,0x84,0x84,
0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x85,0x87,0x89,0x8b,0x8a,0x89,0x88,0x85,
0x83,0x81,0x81,0x80,0x81,0x7f,0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7b,
0x7a,0x79,0x79,0x78,0x77,0x77,0x77,0x79,0x7c,0x80,0x83,0x85,0x87,0x89,0x8a,0x8c,
0x8e,0x8f,0x8f,0x8f,0x8f,0x8e,0x8f,0x8e,0x8e,0x8e,0x8e,0x91,0x92,0x92,0x94,0x95,
0x95,0x94,0x93,0x93,0x91,0x8f,0x8d,0x8b,0x8a,0x89,0x8a,0x89,0x87,0x85,0x84,0x83,
0x84,0x84,0x84,0x83,0x80,0x7e,0x7c,0x7b,0x78,0x78,0x77,0x77,0x76,0x75,0x76,0x75,
0x74,0x73,0x71,0x70,0x71,0x70,0x71,0x71,0x71,0x71,0x71,0x71,0x71,0x71,0x71,0x73,
0x75,0x78,0x7a,0x7a,0x7a,0x7a,0x7b,0x7c,0x7e,0x80,0x82,0x84,0x84,0x84,0x84,0x85,
0x85,0x85,0x85,0x85,0x85,0x85,0x86,0x85,0x85,0x84,0x84,0x83,0x84,0x83,0x83,0x84,
0x84,0x86,0x88,0x89,0x89,0x89,0x87,0x86,0x85,0x82,0x83,0x80,0x7f,0x7d,0x7c,0x7c,
0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x7a,0x7b,0x7b,0x7b,0x78,0x76,0x74,0x74,0x74,0x77,
0x7a,0x7c,0x7e,0x80,0x83,0x84,0x86,0x88,0x88,0x8a,0x8c,0x8c,0x8c,0x8c,0x8b,0x8b,
0x8a,0x8a,0x8c,0x8d,0x8f,0x90,0x92,0x92,0x93,0x93,0x92,0x91,0x8f,0x8d,0x8b,0x8c,
0x8c,0x8b,0x88,0x86,0x85,0x85,0x86,0x86,0x85,0x83,0x83,0x82,0x83,0x80,0x80,0x7f,
0x7c,0x7a,0x77,0x77,0x76,0x76,0x76,0x77,0x76,0x75,0x75,0x73,0x72,0x71,0x71,0x72,
0x72,0x72,0x72,0x72,0x72,0x72,0x73,0x73,0x75,0x75,0x75,0x77,0x79,0x7b,0x7b,0x7c,
0x7c,0x7c,0x7c,0x7e,0x81,0x83,0x84,0x84,0x84,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
0x85,0x84,0x85,0x84,0x83,0x83,0x84,0x84,0x85,0x85,0x86,0x88,0x88,0x89,0x89,0x89,
0x89,0x87,0x84,0x81,0x80,0x7f,0x80,0x7f,0x7e,0x7c,0x7b,0x7a,0x7b,0x7a,0x7b,0x7b,
0x7b,0x7b,0x7a,0x7a,0x79,0x79,0x77,0x77,0x77,0x78,0x7a,0x7d,0x81,0x83,0x85,0x86,
0x86,0x88,0x89,0x8b,0x8b,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8e,0x8f,0x91,0x93,
0x93,0x92,0x91,0x91,0x92,0x92,0x91,0x8f,0x8d,0x8b,0x8a,0x8a,0x89,0x89,0x88,0x87,
0x86,0x85,0x86,0x85,0x85,0x83,0x81,0x7e,0x7e,0x7d,0x7b,0x7b,0x7a,0x78,0x77,0x77,
0x76,0x76,0x76,0x76,0x76,0x75,0x76,0x74,0x73,0x73,0x73,0x73,0x73,0x74,0x74,0x74,
0x74,0x74,0x76,0x77,0x79,0x7a,0x7a,0x7a,0x7b,0x7b,0x7d,0x7f,0x81,0x81,0x82,0x82,
0x83,0x84,0x84,0x85,0x85,0x85,0x85,0x85,0x86,0x86,0x85,0x84,0x83,0x82,0x83,0x83,
0x84,0x84,0x86,0x86,0x86,0x87,0x87,0x86,0x86,0x86,0x86,0x87,0x85,0x83,0x81,0x7f,
0x7d,0x7d,0x7d,0x7d,0x7d,0x7c,0x7c,0x7c,0x7d,0x7c,0x7b,0x7b,0x79,0x78,0x77,0x77,
0x77,0x78,0x79,0x7b,0x7d,0x7f,0x80,0x82,0x84,0x85,0x87,0x8a,0x8b,0x8b,0x8b,0x8b,
0x8a,0x8a,0x8b,0x8b,0x8c,0x8d,0x8e,0x91,0x93,0x93,0x93,0x93,0x91,0x8f,0x8e,0x8e,
0x8e,0x8e,0x8e,0x8c,0x8a,0x88,0x86,0x86,0x85,0x86,0x86,0x86,0x85,0x83,0x83,0x80,
0x7f,0x7c,0x7a,0x7a,0x7a,0x7a,0x7a,0x78,0x77,0x77,0x75,0x76,0x75,0x74,0x74,0x73,
0x73,0x73,0x74,0x73,0x72,0x72,0x72,0x73,0x74,0x75,0x75,0x76,0x76,0x76,0x77,0x79,
0x7a,0x7c,0x7d,0x7d,0x7d,0x7f,0x80,0x81,0x82,0x82,0x83,0x83,0x83,0x83,0x84,0x85,
0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x86,0x86,0x86,0x86,0x85,0x84,0x83,0x83,
0x83,0x83,0x84,0x84,0x84,0x85,0x85,0x85,0x85,0x85,0x84,0x83,0x83,0x82,0x82,0x81,
0x7f,0x7d,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7a,0x79,0x79,0x78,0x78,0x78,0x78,
0x7a,0x7b,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,0x81,0x83,0x84,0x86,0x86,0x88,0x88,0x8a,
0x8b,0x8c,0x8c,0x8c,0x8e,0x90,0x90,0x91,0x91,0x91,0x90,0x8e,0x8e,0x8e,0x8e,0x8e,
0x8d,0x8c,0x8c,0x8c,0x8c,0x8b,0x89,0x87,0x85,0x83,0x82,0x80,0x7e,0x7d,0x7d,0x7b,
0x7a,0x7b,0x79,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x77,0x75,0x74,0x74,0x74,0x75,
0x76,0x76,0x76,0x76,0x77,0x77,0x77,0x78,0x78,0x79,0x79,0x7a,0x7b,0x7b,0x7b,0x7b,
0x7c,0x7c,0x7d,0x7f,0x80,0x80,0x81,0x81,0x81,0x81,0x82,0x83,0x83,0x83,0x85,0x85,
0x85,0x85,0x85,0x85,0x85,0x86,0x87,0x87,0x87,0x86,0x85,0x84,0x84,0x85,0x85,0x85,
0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x83,0x82,0x82,0x82,0x81,0x80,0x7f,0x7e,
0x7d,0x7e,0x7d,0x7c,0x7b,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7b,0x7c,0x7b,
0x7a,0x7a,0x7c,0x7d,0x7d,0x7d,0x7f,0x7f,0x7f,0x7f,0x80,0x84,0x86,0x88,0x89,0x89,
0x89,0x89,0x8b,0x8d,0x8d,0x8d,0x8f,0x90,0x90,0x90,0x90,0x90,0x8f,0x8f,0x8f,0x8f,
0x8f,0x8e,0x8d,0x8c,0x8c,0x8b,0x8b,0x89,0x88,0x85,0x84,0x83,0x81,0x81,0x7f,0x7d,
0x7b,0x7b,0x7b,0x7c,0x7c,0x7b,0x79,0x78,0x78,0x78,0x79,0x79,0x79,0x78,0x77,0x76,
0x76,0x76,0x77,0x78,0x78,0x78,0x78,0x78,0x78,0x79,0x79,0x79,0x7a,0x7b,0x7b,0x7c,
0x7c,0x7c,0x7c,0x7e,0x80,0x80,0x80,0x81,0x81,0x81,0x82,0x82,0x82,0x83,0x83,0x83,
0x85,0x85,0x86,0x86,0x86,0x86,0x86,0x87,0x87,0x87,0x87,0x87,0x86,0x84,0x84,0x84,
0x84,0x84,0x84,0x84,0x84,0x83,0x84,0x83,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,
0x7f,0x7d,0x7c,0x7d,0x7c,0x7c,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7c,0x7b,0x7b,0x7b,
0x7b,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,0x7f,0x80,0x80,0x82,0x83,0x85,0x87,
0x88,0x88,0x88,0x8a,0x8a,0x8a,0x8c,0x8d,0x8d,0x8e,0x8f,0x8f,0x8f,0x8f,0x8e,0x8e,
0x8e,0x8e,0x8e,0x8e,0x8e,0x8c,0x8b,0x89,0x88,0x88,0x85,0x84,0x82,0x81,0x80,0x80,
0x7f,0x7e,0x7c,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,0x79,0x78,0x77,0x77,0x77,0x78,
0x77,0x77,0x77,0x77,0x77,0x78,0x78,0x78,0x78,0x78,0x79,0x79,0x79,0x79,0x7a,0x7b,
0x7b,0x7c,0x7c,0x7c,0x7c,0x7d,0x7d,0x7e,0x7f,0x7f,0x80,0x80,0x80,0x81,0x81,0x81,
0x83,0x83,0x84,0x84,0x84,0x85,0x85,0x85,0x85,0x85,0x84,0x85,0x84,0x84,0x84,0x84,
0x84,0x83,0x84,0x83,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,0x81,0x81,0x81,
0x81,0x80,0x7e,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,
0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,0x7d,0x7f,0x81,0x81,0x83,0x84,
0x84,0x86,0x86,0x88,0x88,0x8a,0x8c,0x8d,0x8d,0x8d,0x8d,0x8d,0x8e,0x8e,0x8e,0x8e,
0x8e,0x8e,0x8d,0x8c,0x8c,0x8c,0x8c,0x8c,0x8a,0x89,0x87,0x87,0x85,0x84,0x84,0x82,
0x81,0x7e,0x7e,0x7d,0x7c,0x7c,0x7c,0x7c,0x7b,0x7c,0x7b,0x7a,0x79,0x79,0x78,0x79,
0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x79,0x7a,0x7b,0x7c,0x7c,0x7c,
0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x83,
0x83,0x84,0x84,0x84,0x84,0x85,0x85,0x85,0x85,0x86,0x87,0x86,0x86,0x86,0x87,0x86,
0x86,0x84,0x83,0x83,0x83,0x84,0x83,0x83,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x80,
0x80,0x80,0x80,0x80,0x80,0x7f,0x7e,0x7d,0x7d,0x7d,0x7d,0x7e,0x7e,0x7e,0x7d,0x7e,
0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7e,0x7e,0x80,0x82,0x82,
0x82,0x84,0x86,0x86,0x88,0x89,0x89,0x89,0x89,0x8b,0x8c,0x8c,0x8c,0x8c,0x8d,0x8d,
0x8e,0x8e,0x8e,0x8e,0x8d,0x8b,0x8b,0x8b,0x8b,0x8b,0x8a,0x88,0x86,0x84,0x84,0x82,
0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x7e,0x7c,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,0x79,
0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x79,0x79,0x79,0x79,0x79,0x79,0x7a,
0x7b,0x7b,0x7b,0x7b,0x7b,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,0x7e,0x7e,0x7f,0x7f,0x80,
0x80,0x81,0x81,0x81,0x83,0x83,0x83,0x83,0x84,0x84,0x84,0x85,0x85,0x85,0x85,0x84,
0x84,0x85,0x85,0x85,0x85,0x84,0x83,0x84,0x82,0x81,0x81,0x80,0x80,0x80,0x80,0x80,
0x80,0x7f,0x80,0x80,0x7f,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,
0x7f,0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,0x7d,0x7d,0x7e,0x7e,0x7d,0x7b,0x7b,0x7b,0x7b,
0x7b,0x7d,0x7f,0x7f,0x80,0x80,0x80,0x82,0x83,0x83,0x85,0x86,0x86,0x88,0x88,0x88,
0x88,0x8a,0x8b,0x8c,0x8c,0x8d,0x8d,0x8d,0x8d,0x8c,0x8d,0x8c,0x8b,0x8a,0x89,0x89,
0x89,0x89,0x88,0x86,0x84,0x82,0x82,0x82,0x82,0x81,0x80,0x7f,0x7d,0x7c,0x7c,0x7d,
0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,
0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,
0x7d,0x7e,0x7e,0x7e,0x7f,0x80,0x81,0x81,0x81,0x81,0x82,0x82,0x82,0x82,0x83,0x84,
0x84,0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x86,0x86,0x86,0x86,0x85,0x83,0x83,0x83,
0x83,0x83,0x82,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x81,
0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x81,0x81,0x81,0x81,0x81,
0x80,0x7e,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x80,
0x82,0x83,0x84,0x84,0x84,0x85,0x87,0x87,0x89,0x89,0x89,0x8a,0x8a,0x8b,0x8c,0x8c,
0x8c,0x8c,0x8b,0x8a,0x8b,0x8a,0x8a,0x88,0x88,0x88,0x88,0x87,0x86,0x86,0x83,0x81,
0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x7e,0x7c,0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,
0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,0x7d,0x7c,0x7c,0x7c,0x7d,0x7d,0x7d,0x7c,
0x7c,0x7c,0x7c,0x7c,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7e,0x7e,0x7e,0x7f,0x80,
0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x81,0x82,0x82,0x82,0x83,0x83,0x83,0x83,0x83,
0x83,0x84,0x84,0x84,0x84,0x84,0x84,0x83,0x82,0x80,0x81,0x81,0x81,0x81,0x81,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x80,0x7f,0x7e,0x7d,
0x7d,0x7d,0x7e,0x7e,0x7e,0x7d,0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x81,0x83,0x83,0x83,
0x83,0x85,0x86,0x86,0x88,0x89,0x89,0x8a,0x8a,0x8a,0x8a,0x89,0x89,0x89,0x89,0x89,
0x88,0x88,0x87,0x86,0x86,0x84,0x83,0x83,0x82,0x81,0x82,0x82,0x81,0x7f,0x7e,0x7e,
0x7e,0x7f,0x7f,0x7e,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,
0x7d,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7d,0x7d,0x7d,0x7d,0x7e,0x7e,0x7e,0x7e,0x7d,
0x7d,0x7d,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x81,
0x81,0x82,0x82,0x82,0x83,0x83,0x83,0x83,0x83,0x84,0x84,0x84,0x84,0x84,0x84,0x83,
0x83,0x84,0x83,0x82,0x83,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,0x81,0x81,
0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x82,0x82,0x82,0x82,0x82,0x82,
0x82,0x82,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7f,0x80,0x80,0x80,0x81,0x81,0x81,0x83,0x84,0x85,0x85,0x85,0x87,0x87,0x88,
0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x87,0x87,0x86,0x86,0x86,0x85,
0x83,0x83,0x83,0x83,0x83,0x82,0x82,0x81,0x80,0x7f,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,
0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7f,0x7e,0x7e,0x7f,0x7f,
0x7f,0x7f,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x82,
0x82,0x82,0x82,0x82,0x83,0x83,0x83,0x83,0x83,0x83,0x82,0x82,0x82,0x82,0x82,0x82,
0x82,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x82,0x82,0x82,0x82,0x82,
0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,0x82,0x81,0x81,0x80,0x80,0x80,0x81,0x80,
0x80,0x7f,0x7f,0x7f,0x7f,0x80,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x80,0x80,0x80,
0x80,0x80,0x81,0x82,0x84,0x85,0x85,0x86,0x86,0x86,0x86,0x87,0x87,0x87,0x88,0x88,
0x88,0x88,0x88,0x87,0x86,0x85,0x86,0x85,0x85,0x85,0x84,0x84,0x84,0x85,0x83,0x81,
0x80,0x80,0x80,0x80,0x81,0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x7f,0x7f,0x7f,
0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,
0x7e,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x82,0x82,0x82,0x82,0x83,
0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
0x82,0x82,0x82,0x82,0x81,0x81,0x81,0x81,0x82,0x82,0x81,0x7f,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x80,0x81,0x82,0x82,0x82,0x82,
0x83,0x85,0x85,0x86,0x86,0x87,0x87,0x87,0x87,0x87,0x87,0x88,0x87,0x87,0x86,0x86,
0x86,0x86,0x85,0x85,0x85,0x84,0x85,0x84,0x84,0x84,0x82,0x82,0x82,0x82,0x82,0x82,
0x81,0x81,0x80,0x7f,0x80,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x7f,0x7f,0x7f,
0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7e,0x7f,0x7f,
0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x82,0x82,0x82,
0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,0x81,0x81,0x81,0x81,
0x81,0x81,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
0x82,0x82,0x82,0x82,0x81,0x81,0x81,0x80,0x81,0x80,0x80,0x7f,0x7f,0x7f,0x80,0x80,
0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x81,0x81,
0x82,0x83,0x83,0x84,0x84,0x84,0x84,0x84,0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x84,
0x85,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x83,0x82,0x82,0x83,0x83,0x82,
0x82,0x81,0x81,0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x7f,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7f,
0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7f,
0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x81,0x81,0x81,
0x81,0x82,0x82,0x82,0x82,0x82,0x82,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
0x82,0x82,0x82,0x82,0x82,0x82,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x7f,0x7f,0x80,0x7f,0x80,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,
0x81,0x81,0x81,0x82,0x83,0x84,0x84,0x84,0x84,0x84,0x84,0x85,0x85,0x85,0x85,0x85,
0x85,0x85,0x85,0x85,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x83,0x84,0x82,0x81,
0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,
0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
0x81,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
0x82,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x82,0x82,0x82,0x82,0x81,0x80,0x80,0x80,0x81,
0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x81,0x81,0x81,0x81,0x81,0x81,0x82,0x83,0x83,0x83,0x84,0x84,0x84,0x84,
0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x83,0x83,0x83,0x83,0x83,0x83,
0x83,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,0x82,0x81,0x81,0x81,0x81,
0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,
0x81,0x81,0x81,0x80,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,
// D:/project/wuziqi/res/sound/chessone.wav
0x0,0x0,0x8,0x86,
0x52,
0x49,0x46,0x46,0x7e,0x8,0x0,0x0,0x57,0x41,0x56,0x45,0x66,0x6d,0x74,0x20,0x10,
0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x11,0x2b,0x0,0x0,0x11,0x2b,0x0,0x0,0x1,
0x0,0x8,0x0,0x64,0x61,0x74,0x61,0x59,0x8,0x0,0x0,0x7c,0x7c,0x7e,0x7e,0x7c,
0x7a,0x7e,0x74,0x7c,0x74,0x86,0x82,0x7c,0x7e,0x76,0x8c,0x72,0x74,0x74,0x80,0x8a,
0x62,0xa6,0x7e,0x5e,0xa0,0x7c,0x70,0x6e,0x86,0x90,0x62,0x9a,0x64,0x7c,0x86,0x82,
0x60,0x70,0xa2,0x82,0x88,0x68,0x6a,0x86,0x74,0x8a,0x70,0x78,0x80,0x6c,0x80,0x8a,
0x6e,0x80,0x86,0x80,0x7a,0x88,0x78,0x7c,0x84,0x76,0x7a,0x78,0x88,0x80,0x78,0x80,
0x88,0x7e,0x78,0x78,0x7c,0x78,0x76,0x7e,0x78,0x76,0x7a,0x76,0x7c,0x7a,0x7a,0x70,
0x7e,0x80,0x8a,0x76,0x72,0x82,0x74,0x78,0x80,0x82,0x7a,0x7e,0x84,0x80,0x7c,0x7e,
0x7e,0x7c,0x7c,0x86,0x82,0x82,0x7c,0x7e,0x84,0x7a,0x88,0x70,0x7e,0x80,0x76,0x80,
0x76,0x7c,0x7a,0x88,0x7e,0x7a,0x84,0x80,0x7a,0x7c,0x82,0x80,0x7a,0x7a,0x7e,0x7e,
0x7c,0x7c,0x7c,0x7a,0x7a,0x80,0x78,0x7e,0x7c,0x78,0x7c,0x7e,0x7a,0x74,0x7e,0x86,
0x30,0x4e,0xfe,0x2e,0xa4,0x48,0x54,0xa2,0x88,0x54,0x3e,0x8a,0x98,0x68,0x86,0x76,
0x64,0x8a,0x6a,0x90,0x86,0x62,0x74,0x8e,0x6c,0x8e,0x94,0x70,0x7c,0x80,0x8c,0x8e,
0x7a,0x78,0x70,0x98,0x94,0x70,0x8a,0x94,0x9e,0x82,0x74,0x86,0x82,0x80,0x7e,0x88,
0x94,0x76,0x7c,0x7c,0x82,0x82,0x8a,0x90,0x90,0x8e,0x78,0x80,0x80,0x7e,0x76,0x76,
0x84,0x82,0x72,0x72,0x7e,0x80,0x70,0x72,0x7e,0x7e,0x78,0x66,0x6e,0x6e,0x68,0x68,
0x6c,0x72,0x6c,0x72,0x72,0x76,0x72,0x6a,0x72,0x70,0x70,0x72,0x78,0x78,0x7c,0x78,
0x7c,0x8c,0x7e,0x7e,0x8a,0x82,0x74,0x84,0x80,0x82,0x84,0x80,0x88,0x82,0x82,0x86,
0x86,0x8c,0x86,0x90,0x8c,0x82,0x86,0x7a,0x7a,0x84,0x7a,0x7c,0x84,0x78,0x7c,0x7e,
0x78,0x7e,0x82,0x7a,0x78,0x78,0x82,0x78,0x72,0x7a,0x74,0x70,0x7e,0x62,0x7a,0x68,
0x6a,0x6e,0x68,0x72,0x70,0x66,0x72,0x64,0x6a,0x6c,0x5e,0x64,0x66,0x6e,0x6e,0x66,
0x60,0x6c,0x68,0x6c,0x6e,0x70,0x72,0x72,0x74,0x74,0x76,0x7a,0x74,0x7a,0x7a,0x80,
0x86,0x82,0x86,0x84,0x8a,0x8a,0x88,0x90,0x90,0x94,0x94,0x8e,0x9c,0x96,0x92,0x9a,
0x9a,0x9e,0x9e,0xa4,0xa2,0x96,0xa0,0x9e,0x98,0x96,0x96,0x98,0x94,0x8e,0x8a,0x92,
0x8e,0x90,0x88,0x8c,0x88,0x88,0x86,0x80,0x7c,0x7c,0x82,0x7c,0x74,0x72,0x74,0x78,
0x72,0x6a,0x6c,0x6c,0x6a,0x68,0x68,0x64,0x62,0x66,0x62,0x62,0x64,0x5e,0x5c,0x5e,
0x60,0x5e,0x5c,0x60,0x5c,0x60,0x66,0x64,0x60,0x68,0x6a,0x6a,0x6a,0x6c,0x72,0x6e,
0x74,0x74,0x6e,0x72,0x78,0x72,0x78,0x7a,0x7c,0x82,0x82,0x82,0x84,0x88,0x8c,0x8c,
0x8e,0x8c,0x8e,0x92,0x90,0x90,0x90,0x92,0x98,0x96,0x90,0x98,0x96,0x98,0x98,0x96,
0x94,0x98,0x96,0x92,0x92,0x96,0x90,0x8c,0x92,0x8c,0x8a,0x8a,0x8a,0x86,0x84,0x80,
0x82,0x80,0x7e,0x7e,0x78,0x7a,0x74,0x78,0x7a,0x7a,0x78,0x76,0x70,0x6e,0x72,0x70,
0x68,0x6c,0x68,0x6c,0x6c,0x6c,0x68,0x6c,0x6a,0x6a,0x6e,0x6e,0x6c,0x70,0x6e,0x6a,
0x6e,0x6c,0x6a,0x6a,0x6e,0x70,0x72,0x74,0x74,0x76,0x78,0x7a,0x7c,0x7c,0x7c,0x80,
0x82,0x82,0x7e,0x80,0x82,0x7e,0x80,0x86,0x88,0x8a,0x8a,0x8a,0x8a,0x8c,0x8e,0x8c,
0x8c,0x8c,0x8e,0x8a,0x8e,0x8c,0x8a,0x88,0x88,0x8a,0x8a,0x88,0x8a,0x86,0x80,0x84,
0x86,0x84,0x80,0x80,0x82,0x82,0x7a,0x7a,0x7a,0x78,0x78,0x74,0x76,0x76,0x74,0x76,
0x74,0x74,0x74,0x74,0x72,0x6e,0x74,0x70,0x72,0x6e,0x70,0x72,0x6e,0x6c,0x70,0x70,
0x70,0x70,0x6c,0x6e,0x6e,0x76,0x72,0x74,0x72,0x74,0x74,0x78,0x76,0x74,0x78,0x78,
0x7a,0x7a,0x7a,0x7e,0x7a,0x7c,0x7a,0x80,0x7c,0x7c,0x7c,0x7e,0x80,0x82,0x82,0x80,
0x80,0x82,0x84,0x84,0x84,0x86,0x84,0x80,0x84,0x82,0x84,0x84,0x82,0x82,0x82,0x84,
0x82,0x82,0x82,0x82,0x84,0x84,0x7e,0x80,0x80,0x82,0x80,0x80,0x80,0x7e,0x7e,0x7a,
0x7a,0x7e,0x7c,0x7c,0x7c,0x7e,0x7c,0x7a,0x78,0x7a,0x7a,0x7a,0x78,0x7a,0x78,0x76,
0x76,0x74,0x78,0x7a,0x7a,0x7a,0x78,0x78,0x7a,0x7a,0x7c,0x7c,0x7c,0x7a,0x7a,0x7a,
0x7a,0x7c,0x7c,0x7a,0x7c,0x7c,0x7e,0x7e,0x7c,0x7e,0x7e,0x80,0x80,0x7e,0x80,0x7e,
0x80,0x80,0x7e,0x7c,0x7e,0x80,0x80,0x7e,0x7e,0x7e,0x7e,0x80,0x80,0x7e,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7c,0x7c,0x7e,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7a,0x7c,0x7a,0x7a,
0x7a,0x7a,0x7a,0x7c,0x7a,0x7e,0x7c,0x7a,0x7e,0x7c,0x7c,0x7a,0x7c,0x7c,0x7c,0x7c,
0x7c,0x7c,0x7e,0x7e,0x80,0x80,0x80,0x7e,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,0x7c,0x7c,0x7c,0x7c,0x7e,0x7c,0x7a,0x7a,0x7c,0x7a,
0x7c,0x7c,0x7a,0x7c,0x7c,0x7c,0x7a,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7a,
0x7c,0x7a,0x7c,0x7e,0x7a,0x7c,0x7c,0x7c,0x7a,0x7c,0x7e,0x7c,0x7c,0x7c,0x7c,0x7c,
0x7c,0x7e,0x7a,0x7e,0x7c,0x7c,0x7e,0x7c,0x7e,0x7c,0x7c,0x7e,0x7e,0x7c,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7e,0x7e,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x7e,0x80,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7c,0x7e,0x7e,0x7c,0x7c,0x7c,0x7c,0x7e,0x7c,0x7c,0x7a,0x7a,0x7c,0x7a,
0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7a,0x7c,0x7e,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,
0x7a,0x7c,0x7c,0x7c,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7c,0x7c,0x7e,0x7c,0x7c,0x7c,0x7c,0x7e,0x7e,0x7c,0x7c,0x7e,0x7e,0x7e,0x7e,0x7c,
0x7e,0x7c,0x7e,0x7c,0x7e,0x7c,0x7e,0x7e,0x7e,0x7c,0x7c,0x7e,0x7c,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,0x7c,
0x7e,0x7e,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7a,0x7c,0x7a,0x7a,
0x7e,0x7c,0x7c,0x7c,0x7a,0x7e,0x7e,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7c,0x7c,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x80,0x80,
0x80,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,0x7c,0x7c,0x7e,0x7c,0x7c,0x7c,
0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,
0x7a,0x7a,0x7a,0x7a,0x7c,0x7c,0x7c,0x7c,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x80,0x80,0x7e,0x7e,0x7e,0x80,0x80,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7c,0x7c,0x7c,0x7e,
0x7c,0x7c,0x7c,0x7c,0x7e,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7e,0x7c,
0x7c,0x7c,0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,
0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7c,0x7e,
0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7c,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7c,0x7e,0x7c,0x7e,0x7c,
0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,
0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x82,0x88,0x7c,0x70,0x78,0x80,0x82,0x7e,0x78,0x7a,0x84,0x82,0x78,0x76,0x7e,0x82,
0x82,0x80,0x72,0x76,0x80,0x7e,0x78,0x74,0x7a,0x7e,0x7e,0x7a,0x78,0x7c,0x7e,0x7c,
0x7c,0x7e,0x78,0x80,0x7a,0x78,0x7e,0x78,0x7e,0x7a,0x7a,0x7e,0x7c,0x7c,0x7c,0x80,
0x7e,0x84,0x7e,0x70,0x80,0x78,0x76,0x7a,0x7c,0x7e,0x80,0x80,0x7e,0x82,0x80,0x80,
0x86,0x8a,0x7c,0x74,0x88,0x72,0x7e,0x74,0x7c,0x72,0x7c,0x84,0x7e,0x72,0x82,0x68,
0x90,0x74,0x74,0x84,0x86,0x7c,0x70,0x7e,0x66,0x84,0x6a,0x80,0x70,0x88,0x80,0x68,
0x72,0x84,0x86,0x76,0x7c,0x84,0x7c,0x84,0x7e,0x70,0x78,0x82,0x76,0x7c,0x84,0x76,
0x80,0x80,0x84,0x7e,0x7e,0x82,0x84,0x80,0x80,0x78,0x80,0x82,0x7c,0x7e,0x7a,0x82,
0x7c,0x80,0x7a,0x86,0x82,0x7c,0x7e,0x82,0x84,0x78,0x7a,0x76,0x7e,0x74,0x7e,0x80,
0x7e,0x80,0x82,0x7a,0x80,0x7c,0x7c,0x7e,0x80,0x7c,0x78,0x7e,0x7e,0x78,0x7e,0x70,
0x78,0x7c,0x72,0x7a,0x7e,0x7e,0x74,0x7e,0x78,0x7a,0x7a,0x7e,0x76,0x7c,0x80,0x78,
0x7a,0x80,0x7c,0x7c,0x7a,0x7e,0x80,0x7c,0x7e,0x7e,0x80,0x7a,0x80,0x80,0x80,0x80,
0x80,0x84,0x7e,0x80,0x7e,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7e,0x7e,0x80,0x7a,
0x7c,0x7c,0x7e,0x7c,0x7e,0x7a,0x7e,0x7e,0x80,0x7c,0x80,0x7e,0x7e,0x80,0x7c,0x7e,
0x7c,0x7e,0x7a,0x7c,0x7c,0x7a,0x7e,0x7a,0x7c,0x7c,0x7e,0x7e,0x7c,0x7e,0x7e,0x7c,
0x7e,0x7c,0x7c,0x7a,0x7e,0x7a,0x7c,0x80,0x7e,0x7e,0x7e,0x7c,0x7c,0x7a,0x7c,0x7a,
0x7a,0x7c,0x7a,0x7a,0x7c,0x7c,0x7a,0x7c,0x7c,0x7c,0x7c,0x7c,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7c,0x7e,0x7e,0x7c,0x7c,0x7a,0x7c,0x7c,0x7c,0x7e,0x7c,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7c,0x7e,0x7c,0x7e,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x80,0x7e,0x80,0x80,0x80,0x80,0x7e,0x80,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7c,0x7c,0x7e,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,0x7c,0x7c,0x7c,
0x7c,0x7c,0x7c,0x7c,0x78,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7e,0x7e,0x7c,0x7e,0x7c,
0x7c,0x7c,0x7c,0x7c,0x7c,0x7a,0x7a,0x7a,0x7c,0x7a,0x7e,0x7e,0x7a,0x7e,0x7e,0x7e,
0x7c,0x7e,0x80,0x7e,0x80,0x7e,0x80,0x80,0x80,0x7c,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7c,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7c,0x80,0x7c,0x7e,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x7c,0x7a,0x7a,0x7e,0x7c,0x7a,0x7c,0x7c,0x7c,0x7c,0x7e,0x7c,
0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,
0x7e,0x7e,0x80,0x80,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7e,0x7e,
0x7e,0x7e,0x7e,0x7e,0x0,
// D:/project/wuziqi/res/sound/win.wav
0x0,0x0,0x2b,0xf0,
0x52,
0x49,0x46,0x46,0xe8,0x2b,0x0,0x0,0x57,0x41,0x56,0x45,0x66,0x6d,0x74,0x20,0x12,
0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x11,0x2b,0x0,0x0,0x11,0x2b,0x0,0x0,0x1,
0x0,0x8,0x0,0x0,0x0,0x66,0x61,0x63,0x74,0x4,0x0,0x0,0x0,0xb6,0x2b,0x0,
0x0,0x64,0x61,0x74,0x61,0xb6,0x2b,0x0,0x0,0x7f,0x7f,0x80,0x80,0x80,0x7f,0x7f,
0x7e,0x7e,0x7d,0x7d,0x7d,0x7d,0x7d,0x7e,0x7e,0x7f,0x81,0x82,0x83,0x83,0x83,0x82,
0x81,0x7e,0x7a,0x79,0x7a,0x7a,0x7a,0x7b,0x7c,0x7d,0x80,0x82,0x81,0x81,0x83,0x82,
0x81,0x7f,0x7c,0x76,0x74,0x77,0x78,0x79,0x7a,0x7a,0x7e,0x85,0x89,0x87,0x87,0x86,
0x85,0x82,0x7d,0x76,0x72,0x75,0x76,0x78,0x78,0x75,0x78,0x7d,0x87,0x8d,0x8c,0x8b,
0x89,0x88,0x85,0x7c,0x75,0x71,0x71,0x71,0x74,0x77,0x77,0x79,0x80,0x8a,0x8f,0x8a,
0x83,0x81,0x85,0x85,0x7c,0x7a,0x7d,0x75,0x70,0x75,0x7c,0x79,0x79,0x84,0x92,0x96,
0x87,0x76,0x73,0x7c,0x7f,0x81,0x87,0x85,0x7c,0x71,0x71,0x7a,0x78,0x76,0x83,0x99,
0xa1,0x8b,0x69,0x5e,0x6c,0x7b,0x80,0x86,0x80,0x7d,0x74,0x6f,0x76,0x7a,0x78,0x8d,
0xaf,0xb1,0x7c,0x5c,0x5c,0x64,0x75,0x7f,0x83,0x82,0x7e,0x79,0x72,0x7c,0x83,0x80,
0x98,0xad,0xad,0x87,0x68,0x65,0x6a,0x7d,0x80,0x7e,0x7e,0x7b,0x72,0x6e,0x7b,0x7f,
0x6b,0x79,0xa0,0xa9,0x88,0x65,0x6c,0x80,0x8e,0x81,0x89,0x86,0x84,0x77,0x6f,0x76,
0x75,0x61,0x75,0x8e,0x90,0x7e,0x64,0x69,0x7e,0x84,0x7e,0x87,0x89,0x90,0x89,0x85,
0x89,0x80,0x6d,0x84,0x99,0x96,0x73,0x5e,0x6e,0x7b,0x79,0x81,0x7f,0x81,0x80,0x85,
0x82,0x74,0x5a,0x60,0x84,0x97,0x93,0x71,0x67,0x81,0x93,0xa0,0x9d,0x91,0x88,0x84,
0x8f,0x97,0x87,0x58,0x57,0x80,0x95,0x6d,0x4a,0x61,0x78,0x87,0x97,0x8c,0x84,0x85,
0x8c,0x98,0xa4,0x87,0x5a,0x6f,0x99,0x92,0x56,0x49,0x71,0x80,0x9a,0x97,0x87,0x7a,
0x73,0x79,0x83,0x89,0x6c,0x5f,0x82,0xa3,0x89,0x5d,0x67,0x82,0x8d,0xa1,0x9d,0x8b,
0x77,0x74,0x81,0x8e,0x84,0x64,0x6d,0x8a,0xa1,0x7a,0x4d,0x56,0x70,0x8f,0x9f,0x92,
0x85,0x7d,0x82,0x95,0x9b,0x7f,0x6d,0x70,0x7e,0x87,0x6b,0x5f,0x6d,0x7a,0x97,0x9a,
0x92,0x85,0x72,0x76,0x82,0x82,0x5d,0x5b,0x69,0x82,0x8e,0x75,0x7e,0x8d,0x9a,0xa5,
0x9d,0x91,0x73,0x59,0x72,0x85,0x75,0x5e,0x67,0x79,0x8a,0x79,0x54,0x61,0x75,0x88,
0x94,0x95,0x91,0x75,0x73,0x94,0xa1,0x83,0x6d,0x73,0x8d,0x85,0x59,0x49,0x72,0x96,
0x96,0x96,0xa1,0x90,0x75,0x70,0x86,0x7b,0x62,0x5e,0x77,0x8d,0x73,0x48,0x59,0x99,
0xb2,0xa0,0x9b,0x93,0x7e,0x66,0x76,0x95,0x7a,0x67,0x6c,0x94,0x97,0x6b,0x4f,0x69,
0x98,0x99,0x82,0x81,0x7a,0x71,0x66,0x85,0x9b,0x6f,0x6b,0x7c,0x97,0x78,0x54,0x5c,
0x7e,0xac,0x9f,0x87,0x8b,0x93,0x8f,0x78,0x8b,0x7a,0x54,0x55,0x74,0x87,0x64,0x59,
0x69,0x8e,0xb4,0x9d,0x7e,0x7b,0x7d,0x74,0x71,0x90,0x6e,0x5f,0x77,0xa4,0xaf,0x7c,
0x63,0x74,0x87,0xaa,0x97,0x6f,0x6f,0x77,0x7e,0x75,0x88,0x85,0x66,0x6a,0x85,0x9b,
0x78,0x3e,0x56,0x98,0xb9,0x9b,0x7d,0x8f,0x94,0x8a,0x7c,0x89,0x69,0x59,0x75,0x97,
0x91,0x60,0x43,0x72,0xc5,0xbd,0x78,0x60,0x76,0x7e,0x7c,0x79,0x78,0x59,0x66,0x9d,
0xc4,0xa6,0x5e,0x48,0x75,0xbf,0xa4,0x62,0x55,0x6a,0x75,0x79,0x83,0x72,0x50,0x5a,
0x9a,0xab,0x7f,0x48,0x47,0x82,0xc0,0x97,0x77,0x95,0xa2,0x93,0x7d,0x71,0x5c,0x59,
0x75,0xa2,0x98,0x6a,0x59,0x71,0x9d,0xaa,0x64,0x53,0x85,0x92,0x74,0x71,0x73,0x6b,
0x71,0xb1,0xd0,0xa7,0x72,0x5f,0x78,0x9c,0x90,0x4f,0x4c,0x88,0x8b,0x78,0x78,0x68,
0x5e,0x6b,0xa2,0xb1,0x80,0x57,0x63,0x9d,0xa2,0x7e,0x75,0x95,0xa7,0x86,0x6f,0x70,
0x78,0x72,0x7b,0x98,0x91,0x71,0x5d,0x74,0xab,0x81,0x41,0x5f,0x94,0x90,0x68,0x5e,
0x64,0x76,0x86,0xb4,0xb5,0x8d,0x6a,0x5e,0x8d,0xba,0x71,0x3b,0x6b,0x8d,0x7b,0x5b,
0x57,0x77,0x88,0x7e,0x9d,0x99,0x73,0x58,0x6e,0xb1,0xb4,0x66,0x6a,0xa8,0xad,0x7e,
0x5c,0x63,0x83,0x81,0x84,0x94,0x79,0x5a,0x50,0x78,0xbb,0x8d,0x3a,0x5e,0x98,0x88,
0x63,0x55,0x6f,0x94,0xa8,0xbf,0xb2,0x84,0x64,0x6d,0xaa,0xbd,0x6f,0x3e,0x73,0x99,
0x7d,0x57,0x52,0x74,0x76,0x78,0x84,0x7a,0x6a,0x5d,0x78,0xb8,0xb1,0x70,0x69,0x95,
0xb4,0x84,0x58,0x59,0x7e,0x89,0x8f,0x96,0x77,0x60,0x5c,0x83,0xc1,0xa5,0x4c,0x3d,
0x8e,0xa1,0x82,0x63,0x61,0x78,0x93,0xa1,0xa1,0x8d,0x61,0x54,0x96,0xd1,0xa5,0x45,
0x5b,0x90,0x78,0x65,0x5a,0x6d,0x79,0x7b,0x7d,0x7b,0x74,0x6d,0x89,0xc3,0xc4,0x81,
0x52,0xa4,0xb7,0x88,0x5c,0x5b,0x81,0x8f,0x7d,0x73,0x6d,0x56,0x59,0x96,0xc5,0x9b,
0x4e,0x54,0x92,0x8e,0x87,0x6c,0x6e,0x87,0x8c,0x92,0x93,0x88,0x66,0x64,0xb3,0xd3,
0x89,0x31,0x5e,0x90,0x7a,0x65,0x5d,0x62,0x67,0x71,0x6b,0x5e,0x67,0x72,0xa7,0xda,
0xab,0x67,0x60,0xb5,0xbc,0x88,0x58,0x56,0x85,0x8b,0x74,0x65,0x69,0x64,0x64,0xb4,
0xd5,0x83,0x37,0x45,0x91,0x91,0x80,0x7a,0x74,0x6f,0x79,0x81,0x7d,0x8b,0x78,0x83,
0xc4,0xb1,0x68,0x41,0x76,0xb3,0x81,0x60,0x6a,0x84,0x8c,0x67,0x47,0x53,0x77,0x87,
0xc4,0xdb,0x8f,0x54,0x5a,0xae,0xbb,0x7e,0x5a,0x5b,0x69,0x6c,0x60,0x54,0x64,0x71,
0x8f,0xda,0xca,0x7b,0x3e,0x3b,0x93,0x94,0x7a,0x7d,0x7d,0x7f,0x76,0x6a,0x71,0x8a,
0x8b,0xac,0xc8,0x86,0x4a,0x42,0x83,0xa7,0x76,0x64,0x73,0x85,0x88,0x61,0x32,0x37,
0x6d,0xa1,0xe0,0xc9,0x72,0x53,0x6e,0xbe,0xb8,0x77,0x5f,0x5f,0x6d,0x69,0x53,0x49,
0x6c,0x90,0xbb,0xe7,0xb4,0x73,0x5b,0x5f,0x87,0x6c,0x6d,0x77,0x85,0x7c,0x70,0x5e,
0x66,0x8e,0xa8,0xac,0xbb,0x8f,0x42,0x43,0x6d,0x9d,0x93,0x6a,0x7b,0x83,0x8c,0x7a,
0x4e,0x39,0x59,0x8c,0xcf,0xe1,0x8a,0x58,0x71,0x9d,0xcb,0x93,0x60,0x5f,0x5a,0x4e,
0x42,0x4a,0x76,0xa2,0xbd,0xda,0xb2,0x72,0x70,0x77,0x84,0x7e,0x49,0x66,0x7f,0x73,
0x5d,0x54,0x75,0x9f,0xae,0xbd,0xb5,0x67,0x3e,0x52,0x6e,0xa7,0x95,0x74,0x83,0x7d,
0x7b,0x68,0x4d,0x5a,0x7f,0x9e,0xc4,0xa7,0x64,0x64,0x85,0xb0,0xbf,0x70,0x60,0x67,
0x54,0x47,0x42,0x5b,0x90,0xae,0xce,0xd3,0x91,0x7a,0x8a,0x7c,0x84,0x7e,0x60,0x70,
0x62,0x59,0x5c,0x68,0x8a,0xa6,0xa8,0xbe,0x98,0x46,0x40,0x5c,0x7d,0xb3,0x94,0x7a,
0x7b,0x71,0x75,0x69,0x5e,0x6e,0x84,0xae,0xc8,0x80,0x58,0x7b,0x90,0xa0,0xa3,0x63,
0x5a,0x5c,0x50,0x48,0x4d,0x71,0x93,0xae,0xd8,0xbe,0x6e,0x78,0x87,0x74,0x88,0x83,
0x6e,0x79,0x60,0x56,0x63,0x7d,0x97,0x9a,0x99,0xa6,0x6d,0x46,0x6b,0x70,0x7d,0x9e,
0x83,0x79,0x7f,0x71,0x73,0x72,0x6f,0x74,0x8a,0xbf,0xc0,0x68,0x62,0x82,0x87,0x9f,
0x93,0x65,0x68,0x5e,0x5d,0x65,0x6c,0x7a,0x8f,0xa6,0xc1,0x8e,0x63,0x86,0x85,0x7d,
0x8e,0x7b,0x71,0x7f,0x6c,0x64,0x72,0x7e,0x86,0x84,0x9a,0x9a,0x56,0x54,0x72,0x70,
0x8b,0x96,0x78,0x7a,0x77,0x7d,0x85,0x77,0x6d,0x70,0x80,0xb2,0xb4,0x6e,0x68,0x7c,
0x81,0x9f,0x92,0x68,0x66,0x66,0x67,0x6e,0x6a,0x75,0x80,0x93,0xa8,0x81,0x69,0x8e,
0x87,0x7a,0x8b,0x83,0x81,0x91,0x87,0x7e,0x74,0x70,0x7a,0x7e,0x95,0x96,0x60,0x5a,
0x6d,0x6b,0x8d,0x99,0x7e,0x75,0x6e,0x7a,0x8e,0x7e,0x6a,0x6d,0x88,0xae,0x9d,0x79,
0x7f,0x77,0x7c,0x97,0x89,0x6d,0x72,0x6d,0x74,0x78,0x6a,0x71,0x84,0x9e,0x9a,0x6e,
0x70,0x87,0x75,0x77,0x85,0x83,0x90,0x92,0x86,0x80,0x6c,0x6b,0x79,0x84,0x95,0x81,
0x60,0x68,0x6d,0x70,0x8b,0x8e,0x7d,0x76,0x71,0x84,0x8d,0x70,0x67,0x79,0xa0,0xae,
0x91,0x82,0x81,0x6e,0x7e,0x8c,0x7f,0x7a,0x77,0x70,0x78,0x6e,0x66,0x71,0x87,0x98,
0x82,0x67,0x78,0x82,0x78,0x83,0x85,0x8f,0x96,0x8e,0x8e,0x85,0x6b,0x6e,0x7b,0x8d,
0x90,0x7a,0x70,0x70,0x6a,0x6f,0x7f,0x84,0x81,0x74,0x70,0x83,0x7f,0x6b,0x6b,0x85,
0xa3,0x9c,0x85,0x81,0x7b,0x74,0x8c,0x89,0x83,0x80,0x77,0x7a,0x79,0x6a,0x69,0x77,
0x8b,0x8b,0x76,0x6f,0x78,0x7b,0x7a,0x7d,0x87,0x96,0x91,0x8b,0x8e,0x7a,0x66,0x71,
0x85,0x8d,0x82,0x77,0x75,0x72,0x6e,0x7c,0x7f,0x83,0x82,0x71,0x76,0x80,0x76,0x6d,
0x74,0x8f,0x99,0x8e,0x85,0x83,0x79,0x7c,0x87,0x84,0x87,0x80,0x7d,0x82,0x76,0x69,
0x6f,0x7e,0x86,0x7c,0x72,0x74,0x79,0x78,0x7f,0x83,0x91,0x99,0x8a,0x89,0x88,0x76,
0x6e,0x7b,0x89,0x85,0x7c,0x79,0x78,0x74,0x6f,0x78,0x7d,0x79,0x7f,0x77,0x76,0x80,
0x78,0x71,0x79,0x8d,0x97,0x8d,0x86,0x83,0x7c,0x75,0x85,0x89,0x8c,0x87,0x7a,0x7d,
0x78,0x6b,0x6e,0x79,0x7f,0x7a,0x74,0x74,0x77,0x78,0x7d,0x80,0x88,0x98,0x91,0x87,
0x89,0x7b,0x70,0x79,0x88,0x88,0x7e,0x7b,0x7b,0x77,0x6f,0x7b,0x7c,0x81,0x81,0x77,
0x79,0x7c,0x75,0x75,0x7e,0x8c,0x90,0x8b,0x86,0x80,0x79,0x7b,0x83,0x85,0x8a,0x83,
0x7a,0x7f,0x77,0x70,0x74,0x7b,0x7c,0x78,0x78,0x78,0x79,0x78,0x80,0x82,0x8d,0x92,
0x8a,0x87,0x83,0x78,0x76,0x7d,0x86,0x83,0x7c,0x7c,0x7a,0x74,0x75,0x7a,0x79,0x7d,
0x7b,0x79,0x7b,0x7a,0x79,0x7b,0x80,0x87,0x89,0x87,0x85,0x81,0x7d,0x7f,0x82,0x88,
0x86,0x80,0x7e,0x7b,0x72,0x73,0x77,0x79,0x78,0x77,0x7a,0x7b,0x7b,0x7c,0x7f,0x84,
0x8b,0x8a,0x8b,0x86,0x81,0x7c,0x7c,0x80,0x82,0x81,0x7f,0x7b,0x79,0x76,0x76,0x78,
0x7b,0x78,0x7c,0x7f,0x7d,0x7a,0x7c,0x80,0x84,0x87,0x87,0x87,0x84,0x81,0x7e,0x7c,
0x82,0x84,0x7f,0x82,0x7e,0x79,0x75,0x75,0x77,0x76,0x77,0x7b,0x7c,0x7d,0x7d,0x7d,
0x7d,0x86,0x87,0x8a,0x8c,0x82,0x7e,0x7d,0x7e,0x81,0x81,0x80,0x7e,0x7b,0x79,0x77,
0x75,0x78,0x79,0x77,0x7e,0x80,0x7b,0x7b,0x7c,0x80,0x85,0x88,0x87,0x84,0x81,0x81,
0x7f,0x7b,0x7f,0x83,0x82,0x85,0x7f,0x78,0x76,0x76,0x77,0x78,0x7a,0x7c,0x7b,0x7c,
0x7d,0x7d,0x7e,0x84,0x86,0x89,0x8b,0x83,0x7f,0x7d,0x7d,0x7f,0x82,0x82,0x7d,0x7a,
0x7a,0x79,0x78,0x78,0x78,0x79,0x80,0x81,0x7c,0x7b,0x7c,0x7e,0x82,0x87,0x87,0x81,
0x80,0x80,0x80,0x7e,0x7d,0x7f,0x81,0x84,0x7e,0x79,0x78,0x78,0x78,0x79,0x7c,0x7c,
0x7c,0x7e,0x7e,0x7e,0x7f,0x81,0x83,0x85,0x86,0x82,0x81,0x7e,0x7c,0x7e,0x82,0x82,
0x7c,0x7a,0x7b,0x7b,0x7b,0x77,0x77,0x7b,0x81,0x80,0x7c,0x7c,0x7c,0x7f,0x82,0x84,
0x85,0x82,0x82,0x82,0x81,0x7f,0x7e,0x7f,0x80,0x80,0x7d,0x7a,0x79,0x77,0x77,0x7b,
0x7e,0x7e,0x7c,0x7d,0x7e,0x7e,0x7e,0x80,0x84,0x86,0x85,0x82,0x81,0x7e,0x7d,0x7e,
0x81,0x81,0x7c,0x7b,0x7b,0x7b,0x79,0x76,0x78,0x7c,0x81,0x7f,0x7c,0x7c,0x7c,0x7f,
0x84,0x85,0x83,0x81,0x81,0x81,0x7f,0x7c,0x7c,0x80,0x7f,0x7f,0x7c,0x7b,0x7a,0x78,
0x79,0x7d,0x81,0x7f,0x7d,0x7d,0x80,0x81,0x7f,0x7f,0x82,0x85,0x84,0x81,0x7e,0x7d,
0x7d,0x7f,0x80,0x7e,0x7a,0x7a,0x7c,0x7c,0x79,0x78,0x7c,0x7f,0x81,0x7f,0x7e,0x7e,
0x7e,0x81,0x85,0x86,0x81,0x80,0x81,0x82,0x80,0x7d,0x7c,0x7f,0x80,0x7e,0x7b,0x7a,
0x7b,0x7a,0x7c,0x7f,0x80,0x7d,0x7b,0x7e,0x7f,0x80,0x7f,0x80,0x82,0x84,0x84,0x80,
0x7e,0x7d,0x7d,0x7f,0x82,0x80,0x7c,0x7b,0x7e,0x7e,0x7b,0x79,0x7a,0x7e,0x81,0x7f,
0x7c,0x7d,0x7e,0x7f,0x81,0x83,0x82,0x7e,0x7e,0x80,0x7f,0x7d,0x7b,0x7c,0x7f,0x80,
0x7f,0x7b,0x7a,0x7a,0x7d,0x80,0x7f,0x7d,0x7c,0x7f,0x80,0x7f,0x7e,0x7e,0x81,0x83,
0x83,0x80,0x7e,0x7d,0x7d,0x7e,0x80,0x7f,0x7b,0x7a,0x7d,0x7e,0x7c,0x7a,0x7b,0x7e,
0x81,0x80,0x7e,0x7e,0x7e,0x80,0x83,0x83,0x80,0x7f,0x7f,0x80,0x7f,0x7c,0x7b,0x7c,
0x7f,0x7f,0x7e,0x7d,0x7a,0x7a,0x7d,0x81,0x7f,0x7b,0x7a,0x7e,0x81,0x81,0x7e,0x7e,
0x81,0x83,0x81,0x7f,0x7e,0x7c,0x7c,0x7e,0x81,0x7f,0x7c,0x7c,0x7e,0x7e,0x7d,0x7a,
0x7b,0x7e,0x80,0x7f,0x7d,0x7d,0x7e,0x80,0x83,0x83,0x7f,0x7c,0x7f,0x80,0x7f,0x7d,
0x7a,0x7e,0x80,0x7f,0x7d,0x7b,0x7b,0x7b,0x7e,0x81,0x80,0x7c,0x7b,0x7f,0x81,0x82,
0x7e,0x7d,0x80,0x82,0x81,0x7f,0x7c,0x7c,0x7d,0x7f,0x7f,0x7d,0x7a,0x7d,0x7e,0x7d,
0x7c,0x7c,0x7e,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x81,0x82,0x81,0x7f,0x7d,0x7f,0x80,
0x7e,0x7a,0x7a,0x7d,0x80,0x7f,0x7c,0x7b,0x7c,0x7e,0x81,0x80,0x7e,0x7d,0x7e,0x80,
0x81,0x7f,0x7d,0x7e,0x81,0x81,0x80,0x7f,0x7c,0x7b,0x7e,0x81,0x80,0x7c,0x7c,0x7d,
0x7f,0x7f,0x7c,0x7b,0x7d,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x81,0x81,0x7f,0x7f,
0x7f,0x7f,0x7f,0x7d,0x7b,0x7d,0x7f,0x7f,0x7d,0x7b,0x7b,0x7c,0x7f,0x80,0x7d,0x7c,
0x7f,0x80,0x81,0x80,0x7d,0x7d,0x81,0x82,0x80,0x7e,0x7c,0x7c,0x7d,0x7e,0x80,0x7e,
0x7d,0x7d,0x7d,0x7f,0x7d,0x7c,0x7c,0x7f,0x80,0x80,0x7e,0x7e,0x80,0x81,0x81,0x81,
0x7e,0x7e,0x7f,0x7f,0x7e,0x7b,0x7b,0x7f,0x80,0x7e,0x7c,0x7b,0x7b,0x7e,0x7f,0x7f,
0x7c,0x7c,0x7d,0x81,0x83,0x81,0x7c,0x7e,0x82,0x83,0x80,0x7d,0x7b,0x7c,0x7e,0x7f,
0x7e,0x7d,0x7c,0x7c,0x80,0x80,0x7d,0x7b,0x7e,0x7f,0x7f,0x7f,0x7f,0x7e,0x80,0x81,
0x82,0x7f,0x7f,0x7f,0x80,0x81,0x7e,0x7a,0x7d,0x81,0x81,0x7d,0x7b,0x7b,0x7d,0x80,
0x80,0x7d,0x7c,0x7c,0x7e,0x81,0x82,0x80,0x7c,0x7e,0x82,0x82,0x80,0x7c,0x7b,0x7c,
0x7f,0x80,0x7d,0x7c,0x7c,0x7d,0x80,0x7f,0x7c,0x7d,0x7f,0x7f,0x7f,0x7f,0x7e,0x7e,
0x80,0x81,0x81,0x80,0x7f,0x7f,0x7f,0x80,0x7e,0x7a,0x7c,0x7f,0x7f,0x7e,0x7b,0x7a,
0x7d,0x80,0x81,0x7f,0x7d,0x7d,0x7f,0x83,0x82,0x7f,0x7d,0x7f,0x80,0x80,0x7f,0x7c,
0x7a,0x7b,0x7e,0x7f,0x7f,0x7c,0x7a,0x7e,0x82,0x81,0x7e,0x7f,0x81,0x82,0x82,0x81,
0x81,0x81,0x82,0x80,0x7e,0x7e,0x7c,0x7b,0x7d,0x7c,0x79,0x79,0x7c,0x7d,0x7c,0x7c,
0x7d,0x7d,0x7e,0x82,0x83,0x82,0x80,0x7f,0x80,0x83,0x84,0x7f,0x7b,0x7a,0x7d,0x7c,
0x7a,0x77,0x77,0x78,0x7a,0x7c,0x7d,0x7c,0x7b,0x7c,0x81,0x84,0x83,0x83,0x85,0x85,
0x85,0x84,0x83,0x81,0x80,0x7f,0x7d,0x79,0x78,0x78,0x7a,0x7a,0x77,0x76,0x78,0x7a,
0x7a,0x7a,0x7b,0x7f,0x84,0x87,0x89,0x89,0x88,0x87,0x86,0x88,0x86,0x81,0x7c,0x7b,
0x7a,0x79,0x78,0x74,0x73,0x75,0x78,0x79,0x79,0x78,0x79,0x7d,0x82,0x85,0x86,0x88,
0x88,0x85,0x85,0x84,0x83,0x82,0x81,0x80,0x80,0x7f,0x7c,0x7c,0x7c,0x7b,0x78,0x77,
0x7a,0x7b,0x7a,0x78,0x77,0x7a,0x81,0x87,0x87,0x86,0x83,0x80,0x81,0x82,0x81,0x80,
0x81,0x83,0x82,0x81,0x7e,0x76,0x72,0x72,0x75,0x76,0x75,0x74,0x77,0x82,0x89,0x8c,
0x8f,0x92,0x91,0x8a,0x7e,0x74,0x70,0x71,0x74,0x77,0x77,0x77,0x79,0x7e,0x85,0x85,
0x81,0x7f,0x7f,0x7e,0x7b,0x74,0x71,0x76,0x7e,0x88,0x8e,0x8c,0x84,0x80,0x83,0x88,
0x84,0x7f,0x7c,0x7f,0x84,0x81,0x7a,0x77,0x74,0x6d,0x6b,0x6f,0x73,0x70,0x74,0x81,
0x8f,0x92,0x8d,0x87,0x89,0x8c,0x89,0x86,0x83,0x7f,0x78,0x73,0x75,0x7a,0x79,0x7c,
0x85,0x91,0x8c,0x77,0x63,0x61,0x6e,0x79,0x7b,0x7c,0x7b,0x7d,0x7d,0x81,0x86,0x82,
0x84,0x96,0xa8,0x9a,0x75,0x68,0x6b,0x74,0x80,0x80,0x7f,0x7c,0x7a,0x72,0x71,0x78,
0x79,0x7a,0x89,0x94,0x8d,0x76,0x6e,0x74,0x80,0x8a,0x87,0x88,0x85,0x82,0x79,0x75,
0x7d,0x78,0x6c,0x7b,0x89,0x96,0x89,0x77,0x77,0x86,0x8d,0x87,0x85,0x82,0x81,0x7b,
0x75,0x7a,0x74,0x62,0x6b,0x7f,0x8d,0x88,0x7b,0x7e,0x8d,0x8c,0x85,0x85,0x86,0x86,
0x81,0x7e,0x81,0x73,0x64,0x6e,0x82,0x8c,0x7c,0x6e,0x75,0x7e,0x83,0x88,0x88,0x88,
0x87,0x87,0x84,0x7f,0x6f,0x6d,0x7f,0x8e,0x86,0x72,0x73,0x7e,0x81,0x87,0x89,0x8f,
0x8e,0x87,0x83,0x7b,0x67,0x57,0x6b,0x8d,0x96,0x7e,0x72,0x7f,0x87,0x93,0x97,0x92,
0x90,0x89,0x80,0x7e,0x76,0x5f,0x50,0x6c,0x92,0x8e,0x75,0x6c,0x66,0x69,0x7c,0x85,
0x87,0x8a,0x8e,0x89,0x8b,0x83,0x72,0x79,0x92,0x9e,0x81,0x6e,0x72,0x71,0x76,0x7d,
0x85,0x8d,0x96,0x99,0x85,0x6d,0x58,0x58,0x6c,0x80,0x89,0x7e,0x78,0x7f,0x87,0x94,
0x94,0x93,0x8a,0x8b,0x95,0x8c,0x78,0x60,0x62,0x77,0x86,0x86,0x7c,0x75,0x6a,0x6a,
0x75,0x7a,0x81,0x82,0x8d,0x99,0x96,0x85,0x72,0x77,0x81,0x85,0x80,0x77,0x7a,0x75,
0x73,0x77,0x7b,0x83,0x82,0x86,0x85,0x75,0x64,0x67,0x77,0x7c,0x7f,0x7a,0x79,0x85,
0x89,0x87,0x85,0x88,0x8a,0x8b,0x91,0x8d,0x74,0x61,0x6a,0x77,0x78,0x74,0x5e,0x5f,
0x6e,0x73,0x76,0x7a,0x83,0x8c,0x94,0x99,0x95,0x84,0x84,0x8c,0x8f,0x86,0x74,0x6b,
0x83,0x8c,0x7a,0x6e,0x78,0x83,0x84,0x81,0x7e,0x65,0x54,0x6b,0x84,0x89,0x78,0x6e,
0x72,0x89,0xa4,0x9f,0x7d,0x78,0x87,0x90,0x8e,0x8e,0x83,0x5e,0x5f,0x7c,0x88,0x73,
0x5f,0x65,0x69,0x78,0x74,0x69,0x7d,0x95,0x98,0x8f,0x94,0x8c,0x73,0x80,0x8e,0x88,
0x72,0x6b,0x79,0x85,0x91,0x73,0x69,0x83,0x93,0x8a,0x72,0x65,0x4f,0x5e,0x89,0xa1,
0x99,0x70,0x64,0x84,0xa3,0xa9,0x80,0x70,0x87,0x9b,0x97,0x7f,0x65,0x50,0x66,0x8c,
0xa1,0x8d,0x56,0x48,0x68,0x85,0x85,0x76,0x87,0x9a,0xa0,0x8c,0x7d,0x6d,0x79,0x9a,
0xa8,0xa2,0x86,0x67,0x62,0x7d,0x8a,0x6e,0x62,0x7d,0x93,0x8b,0x65,0x4f,0x4c,0x71,
0xa1,0xb4,0xa3,0x7b,0x56,0x57,0x99,0xa9,0x80,0x71,0x86,0x9e,0x97,0x6e,0x46,0x51,
0x78,0x9b,0xa0,0x8a,0x61,0x3e,0x4b,0x8e,0x83,0x72,0x8e,0xb2,0xae,0x7d,0x5e,0x62,
0x84,0x9e,0xb0,0xa0,0x87,0x73,0x56,0x58,0x7f,0x73,0x63,0x89,0xa7,0x93,0x5d,0x3e,
0x51,0x7d,0xaa,0xc7,0xa8,0x85,0x67,0x5c,0x7a,0x91,0x8b,0x86,0xa1,0xa1,0x7f,0x50,
0x38,0x5a,0x82,0x9f,0x9f,0x8a,0x85,0x65,0x4d,0x57,0x60,0x79,0xa5,0xbf,0x9a,0x69,
0x51,0x64,0x9c,0xbf,0xb3,0x8a,0x7c,0x7d,0x5c,0x5e,0x5f,0x57,0x7e,0xb2,0xb7,0x8c,
0x53,0x28,0x46,0x7c,0xac,0xad,0x8c,0x83,0x77,0x79,0x8c,0x76,0x75,0x9e,0xab,0x92,
0x61,0x37,0x3f,0x74,0x9f,0xb3,0x8e,0x80,0x8d,0x7f,0x79,0x56,0x2d,0x42,0xa3,0xd5,
0xb4,0x6b,0x37,0x57,0x8a,0xb7,0xc9,0x81,0x61,0x6c,0x6b,0x81,0x6c,0x50,0x78,0xaf,
0xba,0x99,0x67,0x4e,0x59,0x62,0x8e,0xae,0x92,0x86,0x7d,0x81,0x9c,0x80,0x62,0x94,
0xad,0x96,0x61,0x28,0x30,0x5b,0x88,0xb0,0x99,0x7f,0x83,0x81,0x94,0x8c,0x52,0x47,
0x9d,0xc3,0x9c,0x5c,0x46,0x6f,0x8e,0xb2,0xaf,0x7e,0x67,0x5f,0x65,0x89,0x88,0x6d,
0x77,0xaf,0xb1,0x8d,0x5f,0x4d,0x5b,0x6d,0x90,0x86,0x7e,0x81,0x65,0x79,0xa1,0x9c,
0x85,0x97,0xa8,0x85,0x4d,0x28,0x4c,0x70,0x98,0xa6,0x84,0x87,0x86,0x84,0xa4,0x9b,
0x71,0x6c,0x93,0xa2,0x89,0x5c,0x4a,0x6a,0x8c,0xab,0x8e,0x70,0x76,0x56,0x5e,0x88,
0x8e,0x8c,0x96,0xa9,0x9e,0x7f,0x58,0x62,0x73,0x86,0x99,0x7b,0x73,0x6b,0x5f,0x96,
0xb3,0x99,0x86,0x89,0x98,0x7c,0x4a,0x2f,0x43,0x67,0x9e,0x9c,0x7c,0x83,0x77,0x7e,
0xa5,0x8b,0x72,0x82,0xa4,0xa4,0x71,0x41,0x51,0x78,0x9a,0xa7,0x74,0x5f,0x67,0x57,
0x80,0xa2,0x8f,0x8b,0x96,0xb7,0x9e,0x6e,0x61,0x65,0x65,0x83,0x8c,0x76,0x72,0x62,
0x66,0x9d,0xa6,0x8a,0x87,0x92,0x9a,0x69,0x3d,0x43,0x5d,0x87,0xa5,0x8e,0x77,0x77,
0x73,0x99,0xb1,0x8b,0x7b,0x81,0xaf,0xa9,0x60,0x44,0x5e,0x77,0x92,0x88,0x5c,0x59,
0x5f,0x70,0xa0,0x9f,0x79,0x7f,0x9c,0xc3,0x92,0x74,0x58,0x65,0x77,0x8d,0x94,0x78,
0x72,0x6e,0x64,0x90,0xab,0x8d,0x7f,0x81,0x93,0x7e,0x3d,0x38,0x5c,0x79,0x91,0x7e,
0x60,0x6a,0x7c,0x9c,0xba,0x99,0x73,0x89,0xad,0xcc,0x84,0x40,0x4d,0x76,0x9a,0x94,
0x64,0x56,0x64,0x6c,0x8e,0xa3,0x8c,0x85,0x94,0x9d,0x9a,0x62,0x54,0x69,0x76,0x8c,
0x83,0x74,0x7f,0x83,0x80,0x97,0x9d,0x87,0x85,0x88,0x9c,0x7d,0x39,0x41,0x60,0x86,
0x90,0x71,0x61,0x70,0x83,0xa2,0xae,0x8a,0x7b,0x95,0xad,0xb9,0x77,0x3c,0x50,0x72,
0x8f,0x7c,0x5f,0x63,0x68,0x72,0x97,0x9c,0x88,0x8e,0x97,0x96,0x8c,0x5c,0x5c,0x69,
0x74,0x7d,0x7b,0x87,0x99,0x8d,0x87,0x95,0x93,0x89,0x8e,0x90,0x97,0x68,0x30,0x46,
0x65,0x80,0x7b,0x6a,0x6e,0x77,0x80,0x9e,0xa2,0x8a,0x8f,0xa5,0xae,0xab,0x70,0x4e,
0x60,0x7d,0x84,0x74,0x72,0x77,0x68,0x70,0x8c,0x90,0x8b,0x95,0x8e,0x8a,0x7e,0x57,
0x5d,0x6e,0x7b,0x7f,0x88,0x98,0x96,0x85,0x8b,0x8f,0x8c,0x8f,0x92,0x8d,0x86,0x5c,
0x35,0x4d,0x68,0x7a,0x79,0x77,0x72,0x6f,0x82,0x96,0x90,0x8b,0x9b,0xa6,0x9f,0x99,
0x6c,0x57,0x68,0x80,0x81,0x7d,0x83,0x74,0x61,0x72,0x81,0x83,0x8a,0x95,0x87,0x7e,
0x74,0x55,0x5f,0x74,0x7c,0x82,0x98,0x9a,0x88,0x83,0x90,0x8b,0x8c,0x97,0x97,0x83,
0x78,0x5b,0x43,0x55,0x6f,0x79,0x7f,0x85,0x79,0x67,0x71,0x82,0x8a,0x89,0x98,0xa0,
0x9d,0x9b,0x7b,0x62,0x70,0x86,0x89,0x92,0x8f,0x75,0x62,0x6b,0x74,0x79,0x84,0x91,
0x80,0x73,0x70,0x5b,0x5c,0x76,0x83,0x91,0xa1,0x9b,0x83,0x80,0x83,0x82,0x84,0x8e,
0x8e,0x80,0x73,0x61,0x53,0x63,0x76,0x7c,0x8c,0x8b,0x76,0x66,0x77,0x80,0x83,0x8b,
0x97,0x8e,0x85,0x7f,0x66,0x68,0x82,0x92,0xa1,0xa7,0x95,0x6e,0x60,0x6d,0x70,0x70,
0x7c,0x83,0x78,0x70,0x6a,0x63,0x6e,0x7d,0x89,0x98,0x9e,0x98,0x87,0x8c,0x95,0x92,
0x8f,0x85,0x73,0x6e,0x5f,0x52,0x56,0x76,0x8a,0x92,0x89,0x77,0x5f,0x5c,0x7f,0x8e,
0x8e,0x95,0x95,0x88,0x8e,0x80,0x6c,0x6d,0x81,0x9f,0xa3,0x84,0x5c,0x4d,0x6d,0x88,
0x91,0x89,0x82,0x68,0x58,0x60,0x5f,0x57,0x78,0xb2,0xd1,0xa7,0x7f,0x62,0x5c,0x88,
0x99,0x95,0x94,0x9c,0x81,0x5f,0x56,0x50,0x55,0x76,0x98,0xb4,0x95,0x60,0x4f,0x6c,
0x92,0x89,0x88,0x93,0x9d,0x7f,0x64,0x7a,0x7d,0x65,0x7c,0xb1,0xc6,0x8d,0x48,0x55,
0x6b,0x82,0x8f,0x95,0x8a,0x88,0x71,0x5d,0x68,0x4d,0x38,0x65,0x96,0xbd,0xab,0x81,
0x8c,0xb2,0xae,0x95,0x70,0x6d,0x75,0x59,0x56,0x6f,0x66,0x64,0x8d,0xa9,0x95,0x45,
0x2b,0x5d,0x80,0x90,0xa2,0xac,0xb4,0xb1,0xab,0x96,0x72,0x3b,0x3c,0x77,0x9a,0x80,
0x5e,0x81,0xa8,0xae,0xa9,0x89,0x64,0x43,0x48,0x74,0x99,0x88,0x6e,0x99,0xc8,0xb5,
0x58,0x34,0x65,0x79,0x85,0x9b,0xb1,0xb1,0xa0,0x87,0x84,0x8e,0x69,0x22,0x36,0x85,
0x86,0x62,0x68,0xaf,0xc2,0xb0,0x9c,0x7c,0x62,0x53,0x5f,0x7f,0xb2,0xa7,0x87,0xb4,
0xd1,0x8a,0x25,0x1b,0x54,0x70,0x8a,0xa2,0xb6,0xad,0x9b,0x93,0x88,0x65,0x2b,0x36,
0x70,0xa1,0x92,0x75,0x92,0xc7,0xc6,0xa5,0x86,0x79,0x54,0x3e,0x56,0x93,0x9c,0x74,
0x94,0xb8,0x97,0x5f,0x43,0x54,0x5e,0x76,0x9e,0xbf,0xbc,0x97,0x9b,0x9a,0x95,0x5f,
0x33,0x45,0x65,0x86,0x70,0x66,0x93,0xae,0x98,0x7d,0x95,0x6a,0x33,0x3e,0xa0,0xa2,
0x69,0x7d,0xbc,0xac,0x66,0x56,0x63,0x74,0x67,0x85,0xac,0xa7,0x8f,0x81,0x8d,0x8a,
0x5e,0x3f,0x4a,0x5c,0x6d,0x57,0x44,0x8e,0xc2,0xab,0x89,0xa1,0x9d,0x63,0x38,0x7b,
0x96,0x6f,0x78,0xa4,0xbd,0x72,0x39,0x42,0x7c,0x75,0x64,0x7f,0x91,0x8d,0x96,0x9b,
0x9f,0x86,0x60,0x64,0x6b,0x76,0x4e,0x43,0x79,0xcf,0xd2,0x85,0x84,0x92,0x72,0x3e,
0x4c,0x79,0x4a,0x60,0x9c,0xb4,0x80,0x5a,0x74,0x7a,0x7e,0x7b,0x74,0x6a,0x95,0xb5,
0xa7,0x87,0x7f,0x63,0x5b,0x61,0x6f,0x57,0x38,0x64,0xa8,0xd2,0x90,0x75,0x9a,0x97,
0x70,0x52,0x7d,0x65,0x44,0x91,0xc1,0xa2,0x5e,0x5f,0x88,0x7c,0x7b,0x80,0x6e,0x79,
0x9b,0xb1,0x87,0x69,0x6d,0x68,0x63,0x67,0x8e,0x5a,0x33,0x82,0xd9,0xc1,0x79,0x81,
0xa0,0x94,0x6f,0x71,0x7c,0x4b,0x46,0x96,0xcb,0x92,0x64,0x5a,0x68,0x7c,0x99,0x82,
0x68,0x67,0xac,0xc6,0x7e,0x5d,0x61,0x76,0x7a,0x97,0x91,0x5a,0x2c,0x6a,0xcc,0xa0,
0x64,0x85,0x96,0x7d,0x6f,0x74,0x47,0x39,0x80,0xda,0xb5,0x6f,0x62,0x55,0x5a,0x9f,
0x9a,0x68,0x77,0xad,0xd3,0x80,0x4d,0x59,0x60,0x71,0x9f,0x9f,0x63,0x4b,0x5c,0xa4,
0xb0,0x6b,0x70,0x92,0x8e,0x7e,0x70,0x4d,0x4e,0x83,0xdc,0xcc,0x8a,0x73,0x63,0x4f,
0x6a,0x93,0x6d,0x6f,0x9c,0xc3,0x8f,0x57,0x48,0x50,0x69,0x9b,0xae,0x83,0x5a,0x67,
0xac,0x9d,0x7c,0x7a,0x89,0x82,0x66,0x6e,0x65,0x55,0x71,0xc7,0xc8,0x93,0x75,0x58,
0x50,0x71,0x83,0x74,0x6f,0x94,0xbb,0x8a,0x63,0x54,0x51,0x6a,0x93,0x9e,0x99,0x6d,
0x5c,0xa7,0xb6,0x77,0x69,0x6e,0x72,0x68,0x62,0x72,0x69,0x61,0xb0,0xca,0x9c,0x7c,
0x53,0x4e,0x7b,0x8c,0x81,0x86,0x87,0xb2,0x99,0x62,0x67,0x53,0x51,0x8b,0xa4,0x8d,
0x6f,0x53,0x98,0xd5,0x94,0x73,0x6c,0x65,0x6c,0x6d,0x71,0x88,0x6b,0x96,0xcb,0xa8,
0x7b,0x45,0x47,0x84,0x9f,0x76,0x74,0x80,0x9f,0xa6,0x6a,0x58,0x4e,0x51,0x88,0xaa,
0x8c,0x77,0x5d,0x90,0xd7,0xb8,0x6f,0x4c,0x5f,0x74,0x75,0x70,0x80,0x69,0x93,0xc2,
0xa5,0x7a,0x40,0x38,0x8a,0xba,0x9f,0x70,0x71,0xa3,0xa7,0x83,0x6f,0x4a,0x32,0x61,
0xae,0xa1,0x7b,0x6e,0x63,0xa5,0xdb,0xae,0x5a,0x22,0x61,0x91,0x81,0x70,0x79,0x75,
0xa5,0xc6,0x8f,0x5a,0x2b,0x50,0xb7,0xd0,0x9e,0x74,0x70,0xa4,0xa2,0x89,0x4a,0x20,
0x43,0xa4,0xa8,0x80,0x75,0x62,0x96,0xd5,0xbc,0x6f,0x22,0x46,0x8f,0x97,0x7a,0x70,
0x6d,0x92,0xb7,0x99,0x62,0x3a,0x42,0xad,0xd7,0xa5,0x82,0x67,0x94,0x98,0x8c,0x55,
0x1c,0x28,0x8f,0xa8,0x82,0x85,0x6a,0x85,0xd0,0xc7,0x85,0x3f,0x3c,0x8c,0x97,0x85,
0x72,0x60,0x78,0xa6,0xa2,0x63,0x3c,0x34,0x9e,0xdf,0xb5,0x97,0x67,0x80,0x9c,0x8c,
0x70,0x30,0x1a,0x72,0xa4,0x8a,0x8b,0x7f,0x83,0xc9,0xc9,0x8c,0x51,0x39,0x89,0x91,
0x81,0x83,0x64,0x6b,0x90,0x9b,0x76,0x49,0x2e,0x8e,0xdf,0xb9,0xa7,0x7e,0x71,0x9c,
0x81,0x74,0x48,0x17,0x5a,0x9a,0x8e,0x86,0x8b,0x85,0xc6,0xd0,0x98,0x62,0x39,0x80,
0x96,0x78,0x86,0x6f,0x62,0x82,0x85,0x7b,0x5a,0x30,0x7a,0xdc,0xbb,0xa6,0x97,0x77,
0x91,0x77,0x6e,0x5e,0x1b,0x4d,0x8d,0x8d,0x84,0x90,0x91,0xc1,0xd1,0xa2,0x6d,0x38,
0x6a,0xa5,0x7d,0x83,0x70,0x54,0x77,0x7f,0x7e,0x66,0x43,0x6e,0xd3,0xc8,0xac,0xa7,
0x85,0x85,0x77,0x60,0x57,0x23,0x40,0x85,0x90,0x8e,0x99,0x9e,0xb8,0xca,0xaa,0x7d,
0x47,0x45,0x93,0x80,0x7a,0x78,0x5a,0x69,0x71,0x7a,0x68,0x59,0x56,0xa8,0xd5,0xb8,
0xb0,0xa4,0x83,0x86,0x72,0x59,0x30,0x17,0x54,0x80,0x8d,0x9a,0xa4,0xa5,0xc2,0xbf,
0x95,0x74,0x43,0x62,0x81,0x73,0x74,0x6f,0x5b,0x69,0x83,0x69,0x60,0x60,0x9f,0xd4,
0xbe,0xae,0xad,0x83,0x82,0x7b,0x4a,0x28,0x14,0x41,0x79,0x8d,0x98,0xa7,0x9d,0xc0,
0xcc,0x99,0x7b,0x5b,0x5c,0x84,0x7d,0x6e,0x6b,0x5b,0x64,0x8a,0x6b,0x5a,0x61,0x95,
0xd5,0xcd,0xb7,0xb2,0x7f,0x74,0x81,0x49,0x22,0x21,0x35,0x6d,0x99,0xa0,0xa4,0xa9,
0xc3,0xce,0x92,0x6e,0x65,0x55,0x78,0x7b,0x66,0x60,0x61,0x5f,0x8e,0x7f,0x5d,0x61,
0x8c,0xcc,0xd2,0xbd,0xb5,0x8b,0x68,0x7f,0x4b,0x15,0x27,0x35,0x5a,0x9c,0xab,0x92,
0xa1,0xc3,0xdb,0x9e,0x71,0x67,0x4f,0x69,0x86,0x6a,0x56,0x68,0x57,0x82,0x86,0x5d,
0x61,0x8b,0xc7,0xd3,0xc0,0xac,0x99,0x69,0x7f,0x52,0x12,0x1f,0x3f,0x59,0xa4,0xb7,
0x8e,0x9c,0xc5,0xe4,0xa3,0x6f,0x66,0x51,0x62,0x8d,0x70,0x4c,0x68,0x59,0x82,0x93,
0x60,0x55,0x88,0xc3,0xd4,0xc4,0xa8,0x96,0x72,0x7e,0x54,0x11,0x16,0x3d,0x55,0xa2,
0xbb,0x92,0x9a,0xc9,0xeb,0xad,0x70,0x62,0x4f,0x5b,0x81,0x6d,0x47,0x66,0x6b,0x81,
0x93,0x62,0x48,0x7d,0xbe,0xce,0xc0,0xaa,0x8d,0x76,0x86,0x6a,0x1a,0x10,0x37,0x58,
0x95,0xba,0x97,0x94,0xca,0xe0,0xdd,0x92,0x65,0x58,0x4f,0x6a,0x7f,0x5d,0x49,0x68,
0x83,0x99,0x90,0x53,0x4a,0x9b,0xce,0xc2,0xb0,0xa0,0x7f,0x7b,0x86,0x5b,0xd,0x1c,
0x4d,0x7c,0xa4,0xac,0x8d,0xa0,0xdf,0xde,0x9a,0x66,0x50,0x50,0x68,0x7d,0x61,0x49,
0x5c,0x82,0xa1,0x94,0x55,0x45,0x93,0xcd,0xba,0xa5,0xa0,0x7f,0x7f,0x8f,0x60,0x1d,
0x16,0x45,0x7c,0x9c,0xa4,0x92,0x9b,0xd9,0xdb,0x9b,0x64,0x47,0x4c,0x64,0x76,0x66,
0x4d,0x5f,0x87,0xae,0x9f,0x61,0x44,0x8a,0xc7,0xb6,0xa1,0xa1,0x7f,0x7b,0x9b,0x62,
0x2e,0x16,0x3f,0x78,0x99,0x9e,0x8d,0x91,0xd1,0xde,0xab,0x6b,0x44,0x52,0x60,0x71,
0x6d,0x5f,0x5e,0x85,0xb1,0xa2,0x67,0x40,0x84,0xbf,0xb3,0x9a,0x96,0x82,0x77,0x99,
0x71,0x3d,0x18,0x3b,0x6e,0x99,0x9e,0x8e,0x8c,0xcd,0xdf,0xb0,0x6c,0x39,0x4e,0x59,
0x69,0x69,0x6f,0x5d,0x7f,0xb6,0xab,0x71,0x42,0x7c,0xb5,0xaf,0x9b,0x92,0x87,0x7a,
0x90,0x78,0x4c,0x1d,0x36,0x5f,0x8e,0x93,0x84,0x8c,0xc7,0xe2,0xba,0x7a,0x3e,0x4b,
0x57,0x62,0x66,0x7a,0x68,0x7b,0xb4,0xb7,0x7a,0x45,0x71,0xa8,0xa6,0x95,0x89,0x86,
0x80,0x8f,0x83,0x68,0x2d,0x2a,0x58,0x8f,0x9a,0x7b,0x8c,0xbd,0xde,0xbf,0x86,0x4b,
0x4c,0x55,0x65,0x64,0x7e,0x70,0x76,0xad,0xbd,0x87,0x42,0x5f,0x97,0xa0,0x91,0x80,
0x82,0x85,0x8a,0x81,0x79,0x53,0x28,0x4c,0x89,0x9d,0x79,0x83,0xb8,0xdc,0xc2,0x8f,
0x50,0x43,0x47,0x5b,0x5a,0x7f,0x84,0x65,0x86,0xb5,0xae,0x5c,0x40,0x70,0x96,0x97,
0x80,0x7f,0x87,0x95,0x83,0x8b,0x89,0x45,0x32,0x68,0x98,0x87,0x6f,0x8e,0xcb,0xcd,
0xad,0x74,0x4b,0x45,0x59,0x55,0x80,0x98,0x67,0x88,0xb7,0xbe,0x75,0x36,0x5f,0x8f,
0x97,0x7f,0x77,0x7d,0x97,0x7f,0x84,0x9b,0x5a,0x30,0x62,0x8e,0x89,0x6b,0x80,0xc9,
0xd3,0xb2,0x7f,0x4d,0x45,0x5b,0x55,0x7e,0xa2,0x75,0x7f,0xa8,0xbc,0x8b,0x37,0x4f,
0x8b,0x91,0x75,0x6e,0x79,0x9f,0x85,0x82,0xa4,0x6c,0x30,0x5d,0x86,0x89,0x6c,0x68,
0xb3,0xd1,0xb3,0x88,0x4c,0x40,0x58,0x50,0x7c,0xa2,0x8a,0x89,0xa7,0xb6,0x9f,0x40,
0x3c,0x89,0x93,0x7a,0x71,0x77,0xa0,0x8a,0x7e,0xa8,0x80,0x3e,0x56,0x79,0x84,0x6d,
0x54,0x9c,0xd2,0xb9,0x93,0x51,0x3f,0x5e,0x51,0x79,0xa1,0x92,0x8d,0xa6,0xa7,0xaa,
0x50,0x2f,0x82,0x95,0x75,0x6a,0x6d,0xa2,0x9c,0x82,0xa4,0x87,0x52,0x56,0x73,0x84,
0x75,0x4e,0x82,0xca,0xb5,0x97,0x5b,0x44,0x63,0x50,0x6b,0x93,0x95,0x9c,0xac,0x97,
0xa4,0x5a,0x24,0x78,0xa2,0x7b,0x68,0x66,0x9c,0xa5,0x84,0xa4,0x88,0x62,0x5e,0x67,
0x7c,0x78,0x4e,0x76,0xc7,0xb8,0x9f,0x65,0x48,0x68,0x5a,0x61,0x8e,0x97,0xa7,0xb2,