-
Notifications
You must be signed in to change notification settings - Fork 8
/
cluck.h
1349 lines (1344 loc) · 104 KB
/
cluck.h
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
/*
* Colditz Escape - Rewritten Engine for "Escape From Colditz"
* copyright (C) 2008-2017 Aperture Software
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* ---------------------------------------------------------------------------
* cluck.h: Chicken and other additional SFXs
* ---------------------------------------------------------------------------
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
uint8_t cluck_sfx[] = {
0x80,0x82,0x82,0x83,0x85,0x84,0x84,0x85,0x83,0x82,0x82,0x81,0x7f,0x80,0x7e,
0x7c,0x7a,0x79,0x79,0x79,0x79,0x79,0x78,0x76,0x78,0x7a,0x79,0x7a,0x7c,0x7c,
0x7c,0x7c,0x7b,0x7c,0x7b,0x7c,0x7a,0x79,0x79,0x7a,0x77,0x79,0x7b,0x77,0x7b,
0x7a,0x75,0x73,0x70,0x6c,0x70,0x76,0x6e,0x72,0x66,0x5b,0x75,0x80,0x85,0x89,
0x8d,0x9a,0xa1,0xa0,0xa5,0xa4,0x9c,0x97,0x94,0x92,0x8e,0x86,0x80,0x86,0x85,
0x8a,0x91,0x8a,0x8f,0x8f,0x8f,0x92,0x93,0x93,0x91,0x90,0x89,0x83,0x80,0x7a,
0x72,0x70,0x78,0x74,0x76,0x74,0x6c,0x69,0x68,0x6f,0x77,0x7f,0x80,0x81,0x7b,
0x74,0x75,0x6f,0x71,0x77,0x7b,0x7d,0x7e,0x77,0x73,0x70,0x70,0x78,0x81,0x87,
0x8b,0x8f,0x8f,0x88,0x7f,0x74,0x6b,0x6a,0x6d,0x72,0x7a,0x80,0x87,0x8a,0x8c,
0x8d,0x8f,0x90,0x8f,0x8f,0x90,0x8f,0x8e,0x85,0x79,0x6d,0x63,0x62,0x66,0x6e,
0x73,0x79,0x7d,0x7f,0x82,0x86,0x8d,0x91,0x93,0x93,0x8f,0x8c,0x85,0x6d,0x56,
0x44,0x3e,0x53,0x74,0x9f,0xbb,0xbb,0xaf,0x8d,0x6c,0x5d,0x58,0x70,0x87,0xa5,
0xb8,0xae,0xa2,0x7f,0x65,0x56,0x56,0x60,0x5d,0x62,0x68,0x7b,0x87,0x95,0x9d,
0x9c,0x97,0x89,0x84,0x71,0x73,0x70,0x70,0x7a,0x79,0x83,0x83,0x85,0x7f,0x7b,
0x7d,0x76,0x78,0x86,0x8f,0x9c,0x95,0x90,0x83,0x75,0x6f,0x78,0x86,0x90,0x96,
0x8f,0x7f,0x71,0x6a,0x6a,0x70,0x7a,0x7c,0x7c,0x78,0x72,0x70,0x72,0x74,0x77,
0x7c,0x7b,0x7e,0x81,0x84,0x8a,0x88,0x81,0x7b,0x76,0x7a,0x7e,0x82,0x83,0x86,
0x7f,0x7a,0x7b,0x7c,0x86,0x87,0x87,0x83,0x7e,0x7d,0x80,0x85,0x89,0x8a,0x87,
0x81,0x79,0x7a,0x7c,0x81,0x84,0x85,0x7f,0x7c,0x78,0x78,0x7b,0x83,0x85,0x85,
0x81,0x7c,0x7e,0x7d,0x81,0x81,0x81,0x80,0x7d,0x7e,0x7e,0x83,0x81,0x80,0x7f,
0x7e,0x7d,0x82,0x85,0x85,0x81,0x7d,0x7e,0x80,0x84,0x84,0x84,0x7f,0x7c,0x7a,
0x7f,0x81,0x81,0x7f,0x7d,0x7a,0x7a,0x7d,0x7f,0x81,0x7f,0x7d,0x7b,0x7d,0x80,
0x80,0x81,0x7f,0x7d,0x7e,0x7e,0x7f,0x80,0x80,0x80,0x7f,0x7d,0x7f,0x80,0x80,
0x80,0x7f,0x7d,0x7f,0x81,0x80,0x80,0x80,0x80,0x7f,0x7f,0x80,0x80,0x81,0x7e,
0x7d,0x7d,0x7f,0x80,0x81,0x7f,0x7e,0x7e,0x7f,0x81,0x80,0x80,0x80,0x7f,0x7f,
0x80,0x80,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,0x7f,0x7e,
0x7e,0x7f,0x81,0x80,0x81,0x7f,0x7e,0x7e,0x7f,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,0x80,0x7f,0x7e,0x7e,
0x7f,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,0x80,0x80,0x7f,0x7e,0x7e,0x7e,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,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,0x80,0x80,
0x80,0x80,0x80,0x7f,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,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,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,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,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,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,0x7f,0x81,0x7e,0x7f,
0x80,0x80,0x7f,0x82,0x7d,0x79,0x82,0x81,0x82,0x7b,0x79,0x77,0x7b,0x7c,0x73,
0x75,0x7b,0x83,0x8b,0x8f,0x89,0x83,0x7e,0x81,0x85,0x96,0x74,0x5c,0x62,0x77,
0x9f,0x99,0x81,0x6a,0x69,0x7c,0x8f,0x93,0x84,0x77,0x76,0x83,0x86,0x88,0x88,
0x77,0x71,0x6c,0x72,0x81,0x8d,0x84,0x7f,0x82,0x94,0x88,0x73,0x70,0x72,0x82,
0x8a,0x90,0x88,0x7a,0x6a,0x66,0x6a,0x73,0x84,0x86,0x88,0x82,0x7c,0x7e,0x83,
0x8a,0x8f,0x8e,0x8a,0x8a,0x80,0x6b,0x60,0x5a,0x6e,0x8b,0x98,0x93,0x81,0x73,
0x7c,0x8c,0x9a,0x9a,0x9d,0x8e,0x5f,0x4c,0x3e,0x5f,0x99,0xb3,0xae,0x79,0x58,
0x60,0x85,0xae,0xb8,0xac,0x84,0x48,0x2e,0x31,0x6f,0xbb,0xce,0xa4,0x59,0x43,
0x67,0xa7,0xcf,0xbd,0x8e,0x4d,0x24,0x36,0x6b,0xb4,0xd2,0xaa,0x67,0x3c,0x54,
0x98,0xcb,0xd2,0xa1,0x51,0x10,0x22,0x62,0xbd,0xe3,0xb2,0x64,0x2f,0x4b,0xa5,
0xe5,0xe6,0x9a,0x22,0x01,0x23,0x8b,0xf9,0xeb,0x98,0x2e,0x1b,0x5f,0xc5,0xf6,
0xe4,0x79,0x0b,0x09,0x30,0xb8,0xfd,0xe6,0x78,0x0b,0x21,0x72,0xe3,0xfb,0xca,
0x4a,0x00,0x10,0x4f,0xe4,0xfa,0xc1,0x55,0x0c,0x2e,0x96,0xeb,0xfe,0xad,0x11,
0x01,0x0a,0x9c,0xff,0xf3,0xa2,0x13,0x0d,0x56,0xc8,0xfe,0xdf,0x3f,0x00,0x0a,
0x65,0xf3,0xf6,0xbf,0x42,0x18,0x3a,0x9c,0xf0,0xf0,0x66,0x06,0x0a,0x56,0xe3,
0xfa,0xc4,0x55,0x22,0x36,0x8f,0xe9,0xe8,0x5f,0x03,0x0c,0x68,0xe9,0xf1,0xb3,
0x58,0x39,0x45,0x91,0xe9,0xc5,0x2d,0x00,0x1e,0x9a,0xe5,0xd4,0x9b,0x50,0x4e,
0x60,0xa9,0xdf,0x71,0x0d,0x11,0x5d,0xd0,0xd2,0xae,0x6c,0x57,0x63,0x83,0xd4,
0xa8,0x25,0x0a,0x3c,0xb5,0xdd,0xb5,0x83,0x53,0x5d,0x70,0xba,0xcb,0x45,0x01,
0x25,0x8e,0xe1,0xc1,0x9b,0x60,0x56,0x64,0x9a,0xd4,0x66,0x0f,0x2a,0x78,0xd6,
0xc5,0xa0,0x72,0x5d,0x68,0x7d,0xc7,0x8e,0x17,0x22,0x5c,0xbf,0xcc,0xa5,0x8c,
0x5e,0x66,0x73,0xc4,0x9d,0x2e,0x1e,0x4d,0xb0,0xc9,0x9c,0x8c,0x65,0x69,0x71,
0xb9,0xad,0x28,0x1a,0x4e,0xb4,0xd2,0xa2,0x91,0x6a,0x67,0x6c,0xa3,0xbb,0x34,
0x14,0x51,0xa4,0xd7,0xa5,0x8f,0x6a,0x6d,0x68,0x98,0xbe,0x53,0x1f,0x48,0x93,
0xcb,0xa4,0x95,0x7a,0x67,0x67,0x93,0xc9,0x54,0x1e,0x43,0x89,0xc0,0xa5,0x9c,
0x7f,0x68,0x69,0x8d,0xba,0x4f,0x22,0x53,0x92,0xc4,0xa9,0x98,0x79,0x6b,0x6a,
0x90,0xb6,0x63,0x1d,0x41,0x89,0xcb,0xab,0x98,0x86,0x67,0x60,0x89,0xc8,0x59,
0x0f,0x4d,0x8e,0xc9,0xa4,0x95,0x85,0x70,0x68,0x84,0xbf,0x71,0x25,0x42,0x82,
0xbb,0xa4,0x96,0x8e,0x6f,0x5f,0x73,0xc0,0x82,0x2b,0x33,0x76,0xb9,0xb1,0x94,
0x98,0x79,0x65,0x6b,0xbd,0x9e,0x2f,0x2e,0x5c,0xa6,0xb7,0xa1,0x9c,0x79,0x62,
0x62,0xaa,0xb0,0x2f,0x27,0x67,0x9d,0xb3,0x99,0xa0,0x87,0x74,0x63,0x9e,0xaa,
0x4e,0x2c,0x52,0x95,0xb3,0x98,0x9e,0x88,0x6a,0x60,0x9a,0xb8,0x59,0x29,0x4c,
0x97,0xba,0x95,0x9d,0x8c,0x73,0x64,0x92,0xbc,0x5b,0x2a,0x55,0x93,0xb9,0x9a,
0x9d,0x92,0x73,0x60,0x81,0xc1,0x6f,0x24,0x51,0x8c,0xb7,0x98,0xa1,0x9e,0x6a,
0x68,0x7f,0xb7,0x77,0x32,0x49,0x85,0xb7,0x9f,0x91,0x9b,0x7d,0x71,0x6e,0xc1,
0x9a,0x35,0x36,0x62,0xa3,0xae,0x90,0x9f,0x84,0x63,0x66,0xaf,0xb9,0x4c,0x20,
0x5a,0x9b,0xad,0x95,0xa1,0x92,0x68,0x59,0x8f,0xbf,0x72,0x2a,0x46,0x91,0xac,
0x99,0x9a,0x9c,0x77,0x5f,0x76,0xb6,0x93,0x44,0x37,0x67,0xa1,0xa2,0x90,0xa4,
0x82,0x65,0x6a,0xa4,0xab,0x4c,0x32,0x5b,0x95,0xa4,0x92,0xa2,0x89,0x6a,0x66,
0x91,0xb4,0x71,0x35,0x4d,0x8d,0xa8,0x99,0x9a,0x99,0x73,0x5f,0x7d,0xb4,0x93,
0x3f,0x3d,0x77,0xa1,0x9e,0x96,0xa2,0x82,0x64,0x6d,0x9f,0x9f,0x5a,0x3d,0x5f,
0x8e,0x9d,0x93,0x9d,0x8c,0x6f,0x65,0x8c,0xb1,0x7a,0x47,0x4b,0x81,0x9b,0x96,
0x98,0x9a,0x78,0x67,0x79,0xa6,0x8f,0x5d,0x49,0x6c,0x96,0x97,0x91,0x9b,0x86,
0x68,0x6e,0x97,0x99,0x6d,0x50,0x5c,0x8b,0x95,0x94,0x97,0x8e,0x77,0x70,0x86,
0x96,0x70,0x55,0x5c,0x87,0x9c,0x94,0x94,0x8f,0x7a,0x75,0x8a,0x96,0x6f,0x54,
0x5c,0x84,0x98,0x93,0x94,0x8c,0x7b,0x74,0x8e,0x8f,0x63,0x52,0x63,0x8f,0x98,
0x8f,0x94,0x8a,0x7a,0x77,0x91,0x84,0x5d,0x56,0x6c,0x95,0x94,0x94,0x93,0x86,
0x7b,0x7c,0x8b,0x6b,0x50,0x61,0x88,0x9b,0x92,0x90,0x8c,0x7c,0x7a,0x8c,0x88,
0x5f,0x54,0x6b,0x92,0x99,0x96,0x91,0x83,0x76,0x7f,0x88,0x6d,0x5f,0x67,0x84,
0x96,0x90,0x95,0x8b,0x83,0x85,0x83,0x68,0x52,0x65,0x8b,0x98,0x96,0x98,0x87,
0x7f,0x83,0x80,0x65,0x50,0x6f,0x91,0x98,0x96,0x93,0x87,0x83,0x88,0x7b,0x52,
0x4e,0x78,0x8f,0x9c,0x9a,0x8f,0x85,0x83,0x87,0x70,0x4c,0x5a,0x86,0x99,0x9d,
0x97,0x8a,0x80,0x85,0x80,0x65,0x51,0x69,0x8b,0x95,0x9d,0x93,0x87,0x85,0x82,
0x72,0x57,0x58,0x7a,0x94,0x98,0x9a,0x8c,0x84,0x8b,0x80,0x67,0x4f,0x60,0x89,
0x94,0x9e,0x98,0x87,0x89,0x85,0x70,0x54,0x54,0x7d,0x93,0x99,0x9c,0x8c,0x86,
0x88,0x7c,0x63,0x4e,0x6d,0x8c,0x92,0x9f,0x94,0x8c,0x8a,0x7f,0x67,0x51,0x63,
0x87,0x92,0x9d,0x98,0x84,0x8a,0x89,0x6e,0x56,0x59,0x81,0x90,0x96,0x99,0x88,
0x8a,0x8b,0x70,0x59,0x55,0x7c,0x8f,0x93,0x9f,0x8f,0x8a,0x86,0x72,0x59,0x53,
0x7e,0x90,0x96,0x9a,0x8a,0x8c,0x8b,0x72,0x5b,0x51,0x78,0x90,0x94,0x9d,0x8b,
0x8b,0x8a,0x75,0x5a,0x53,0x79,0x93,0x95,0x9e,0x8a,0x89,0x8b,0x72,0x59,0x57,
0x7c,0x93,0x95,0x9a,0x8c,0x89,0x8a,0x71,0x58,0x57,0x82,0x92,0x96,0x9b,0x86,
0x8a,0x85,0x6f,0x55,0x5d,0x82,0x91,0x97,0x98,0x89,0x8b,0x85,0x6f,0x53,0x60,
0x88,0x91,0x98,0x98,0x87,0x89,0x84,0x6a,0x50,0x5f,0x8a,0x94,0x9a,0x95,0x86,
0x89,0x82,0x68,0x53,0x64,0x8b,0x94,0x99,0x96,0x85,0x8a,0x80,0x64,0x50,0x69,
0x8f,0x93,0x9c,0x98,0x86,0x8a,0x78,0x5d,0x53,0x72,0x91,0x97,0x9a,0x8d,0x87,
0x87,0x73,0x58,0x57,0x7a,0x95,0x98,0x9b,0x8a,0x8a,0x87,0x68,0x51,0x5a,0x88,
0x97,0x9a,0x99,0x84,0x8a,0x82,0x62,0x53,0x67,0x91,0x94,0x9e,0x97,0x86,0x8b,
0x7b,0x5e,0x4d,0x73,0x91,0x97,0x9e,0x8e,0x84,0x8b,0x7a,0x59,0x4e,0x7a,0x94,
0x98,0x9e,0x8d,0x84,0x8c,0x77,0x55,0x50,0x7a,0x94,0x98,0x9d,0x8b,0x85,0x86,
0x78,0x52,0x50,0x84,0x91,0x94,0x9e,0x8c,0x83,0x8b,0x78,0x52,0x54,0x82,0x92,
0x97,0x9f,0x8a,0x85,0x86,0x72,0x51,0x59,0x85,0x96,0x99,0x9a,0x87,0x85,0x89,
0x6c,0x4b,0x5c,0x8a,0x98,0x9e,0x9b,0x87,0x88,0x89,0x65,0x48,0x63,0x8d,0x96,
0x9e,0x99,0x87,0x86,0x80,0x62,0x4a,0x6c,0x8e,0x9a,0x9c,0x97,0x83,0x87,0x83,
0x5f,0x4f,0x6d,0x8e,0x98,0x9c,0x91,0x86,0x89,0x7d,0x5a,0x4d,0x72,0x91,0x98,
0x9b,0x91,0x84,0x8c,0x7d,0x53,0x4b,0x7c,0x94,0x99,0x9d,0x8c,0x85,0x89,0x74,
0x4b,0x55,0x7f,0x99,0x99,0x9b,0x88,0x83,0x8c,0x71,0x47,0x5b,0x85,0x9a,0x9d,
0x9b,0x89,0x83,0x8c,0x69,0x46,0x58,0x87,0x9b,0x9a,0x99,0x86,0x81,0x87,0x63,
0x45,0x66,0x8d,0x97,0x98,0x98,0x84,0x87,0x85,0x60,0x4e,0x6a,0x8e,0x9b,0x9d,
0x94,0x86,0x8a,0x7d,0x59,0x4c,0x70,0x92,0x99,0x9d,0x92,0x82,0x89,0x7e,0x56,
0x52,0x73,0x94,0x98,0x9a,0x92,0x84,0x8c,0x78,0x54,0x4f,0x79,0x94,0x98,0x9d,
0x8e,0x84,0x8b,0x75,0x4c,0x51,0x79,0x9a,0x9e,0x9c,0x8a,0x86,0x85,0x6e,0x4c,
0x59,0x84,0x98,0x9e,0x97,0x89,0x8c,0x85,0x67,0x48,0x5d,0x8b,0x98,0x9f,0x9a,
0x87,0x8a,0x81,0x5c,0x48,0x65,0x8e,0x9c,0xa2,0x96,0x85,0x8b,0x7e,0x5c,0x45,
0x6e,0x94,0x98,0xa2,0x8f,0x84,0x8d,0x7c,0x5a,0x4b,0x73,0x94,0x9c,0x9e,0x8d,
0x86,0x88,0x78,0x52,0x4e,0x74,0x93,0x9e,0xa0,0x8d,0x86,0x88,0x74,0x52,0x4d,
0x7a,0x99,0x99,0x9f,0x8d,0x8a,0x87,0x6f,0x4f,0x50,0x81,0x97,0xa1,0x9a,0x87,
0x8b,0x84,0x6d,0x4e,0x56,0x82,0x95,0xa0,0x98,0x87,0x8a,0x84,0x68,0x48,0x59,
0x89,0x98,0xa0,0x99,0x88,0x8b,0x7e,0x63,0x48,0x61,0x8e,0x9d,0xa2,0x94,0x87,
0x8b,0x7d,0x5c,0x44,0x6a,0x92,0x9b,0xa1,0x90,0x86,0x8a,0x7c,0x5d,0x49,0x6d,
0x92,0x9c,0xa0,0x91,0x89,0x8a,0x77,0x57,0x4a,0x73,0x93,0x9e,0xa3,0x8f,0x87,
0x84,0x76,0x56,0x48,0x75,0x95,0xa0,0x9d,0x8c,0x8a,0x89,0x75,0x4d,0x4d,0x78,
0x97,0xa1,0x9e,0x8c,0x88,0x86,0x70,0x4e,0x4e,0x7f,0x97,0xa1,0xa2,0x8c,0x88,
0x83,0x6b,0x49,0x58,0x83,0x99,0xa2,0x9c,0x8a,0x88,0x85,0x67,0x42,0x59,0x85,
0x9c,0xa4,0x98,0x8c,0x8a,0x7b,0x5c,0x40,0x63,0x91,0xa0,0xa5,0x93,0x88,0x89,
0x7c,0x58,0x44,0x6b,0x94,0xa2,0xa2,0x91,0x89,0x88,0x76,0x51,0x4a,0x76,0x9a,
0xa6,0xa0,0x8f,0x88,0x88,0x6e,0x45,0x4c,0x7d,0x9d,0xa3,0x9f,0x8c,0x88,0x86,
0x64,0x44,0x56,0x8b,0xa2,0xa2,0x9a,0x8a,0x89,0x82,0x58,0x40,0x61,0x93,0xa4,
0xa3,0x96,0x89,0x8b,0x78,0x49,0x47,0x76,0x9a,0xa4,0xa1,0x90,0x88,0x8a,0x6d,
0x45,0x4d,0x7c,0xa0,0xa5,0x9b,0x8a,0x8a,0x85,0x5a,0x41,0x5c,0x8f,0xa3,0xa4,
0x99,0x88,0x8d,0x7c,0x4f,0x40,0x6c,0x9a,0xa4,0xa2,0x92,0x86,0x8a,0x6b,0x44,
0x4c,0x7d,0xa2,0xa6,0x9e,0x8b,0x85,0x88,0x60,0x41,0x59,0x8b,0xa4,0xa1,0x9b,
0x83,0x8b,0x7d,0x54,0x42,0x68,0x99,0xa4,0xa5,0x93,0x85,0x8e,0x6e,0x48,0x48,
0x79,0xa4,0xa5,0xa3,0x8f,0x8b,0x87,0x54,0x3d,0x56,0x92,0xaa,0xa5,0x9b,0x84,
0x89,0x79,0x47,0x40,0x6f,0x9d,0xa6,0xa2,0x92,0x85,0x8e,0x67,0x39,0x4a,0x85,
0xa5,0xa2,0xa1,0x8b,0x87,0x88,0x56,0x3d,0x5a,0x93,0xa6,0xa3,0x9b,0x86,0x8f,
0x74,0x47,0x46,0x71,0xa3,0xa7,0xa4,0x8f,0x87,0x8f,0x60,0x3b,0x53,0x8a,0xa4,
0xa6,0x9f,0x87,0x8b,0x78,0x3d,0x3c,0x71,0xa2,0xa6,0xa2,0x93,0x85,0x8e,0x61,
0x38,0x4e,0x88,0xa6,0xa4,0xa0,0x8b,0x8c,0x7d,0x44,0x3f,0x6c,0xa2,0xa4,0xa1,
0x9a,0x87,0x8f,0x64,0x3e,0x54,0x88,0xa6,0xa2,0x9f,0x8c,0x8e,0x7a,0x40,0x40,
0x72,0xa6,0xa4,0x9c,0x92,0x84,0x97,0x65,0x35,0x55,0x86,0xa7,0xa1,0x9c,0x8c,
0x8e,0x7f,0x3d,0x34,0x69,0xa8,0xab,0xa1,0x95,0x83,0x91,0x60,0x2f,0x54,0x8d,
0xaa,0xa1,0x9d,0x8c,0x8c,0x7d,0x3d,0x42,0x76,0xa5,0xa8,0x9b,0x98,0x87,0x95,
0x59,0x2d,0x5a,0x8c,0xaf,0x9d,0xa0,0x8d,0x8d,0x88,0x31,0x3e,0x7b,0xa0,0xaa,
0x9c,0x97,0x82,0x96,0x5c,0x29,0x5c,0x91,0xac,0x9e,0x9f,0x8a,0x91,0x7b,0x35,
0x44,0x7a,0xa6,0xa7,0x9c,0x95,0x88,0x8f,0x46,0x32,0x68,0x9f,0xaf,0x9d,0x98,
0x86,0x96,0x71,0x2b,0x4f,0x8a,0xa8,0xa5,0x9b,0x8c,0x8c,0x84,0x3a,0x3d,0x78,
0xa0,0xa8,0x9b,0x95,0x8a,0x92,0x59,0x2b,0x61,0x94,0xae,0xa4,0x97,0x89,0x94,
0x6b,0x34,0x49,0x86,0xb4,0x9f,0x9e,0x8b,0x89,0x80,0x41,0x3a,0x70,0xa6,0xae,
0xa3,0x8d,0x85,0x95,0x4d,0x2d,0x71,0x94,0xae,0xa5,0x9a,0x82,0x95,0x74,0x1c,
0x57,0x8a,0xa4,0xa8,0x9d,0x8a,0x8a,0x86,0x2f,0x3f,0x7a,0xab,0xae,0x98,0x94,
0x80,0x93,0x45,0x2d,0x6f,0xa2,0xb8,0x96,0x98,0x83,0x93,0x5e,0x29,0x5d,0x9b,
0xb9,0x92,0xa2,0x8d,0x92,0x7c,0x13,0x4e,0x8d,0xab,0xa4,0x91,0x87,0x88,0x7f,
0x26,0x4c,0x89,0xab,0xa5,0x95,0x8f,0x82,0x94,0x48,0x36,0x7a,0x9c,0xaa,0x99,
0x94,0x8c,0x99,0x60,0x2e,0x6e,0x9b,0xb3,0x9f,0x9b,0x7f,0x97,0x6a,0x10,0x5b,
0x94,0xae,0x9f,0x92,0x86,0x88,0x88,0x20,0x46,0x8a,0xa1,0xa6,0x93,0x95,0x85,
0x9c,0x44,0x39,0x72,0x9b,0xab,0x9c,0x96,0x80,0x9b,0x53,0x23,0x76,0x91,0xaf,
0x98,0x8e,0x79,0x95,0x69,0x17,0x6c,0x8a,0xa3,0x96,0x94,0x8b,0x91,0x7c,0x2e,
0x5e,0x88,0xa3,0xa5,0x94,0x8f,0x87,0x9a,0x41,0x4b,0x87,0x98,0xa9,0x97,0x8f,
0x81,0x9c,0x50,0x2f,0x83,0x93,0xb0,0x95,0x9d,0x7e,0x9e,0x70,0x24,0x74,0x92,
0xab,0x95,0x94,0x84,0x8d,0x81,0x2e,0x60,0x85,0x9f,0x9c,0x93,0x8d,0x89,0x95,
0x39,0x4f,0x85,0x94,0xa4,0x98,0x95,0x81,0x9c,0x54,0x1f,0x75,0x91,0xb0,0x99,
0x8e,0x7a,0x96,0x89,0x22,0x5b,0x89,0x95,0xa0,0x94,0x89,0x7e,0xa2,0x4e,0x31,
0x7b,0x8f,0xa7,0x93,0x8f,0x80,0x96,0x82,0x32,0x63,0x83,0x9b,0x99,0x97,0x94,
0x7f,0x9f,0x50,0x47,0x7c,0x89,0x9f,0x8d,0x97,0x80,0x97,0x81,0x3b,0x56,0x7d,
0xae,0x9f,0x8e,0x8f,0x7d,0x9c,0x63,0x41,0x69,0x7e,0xa0,0x94,0x9a,0x87,0x82,
0xa4,0x54,0x41,0x73,0x85,0xa1,0x94,0x99,0x80,0x81,0x9e,0x5a,0x4c,0x6a,0x80,
0x9a,0x94,0x98,0x83,0x7d,0xa1,0x7d,0x4b,0x57,0x70,0x97,0x9b,0x98,0x8b,0x77,
0x84,0x9e,0x64,0x44,0x64,0x7d,0x9c,0x99,0x9a,0x87,0x7d,0x80,0x9b,0x63,0x51,
0x65,0x75,0xa1,0x98,0x9d,0x84,0x75,0x83,0x8b,0x5a,0x5b,0x6d,0x86,0x99,0x92,
0x98,0x82,0x78,0x85,0x94,0x63,0x59,0x61,0x83,0xa0,0x95,0x96,0x85,0x75,0x82,
0x8c,0x61,0x65,0x65,0x87,0x99,0x90,0x93,0x7b,0x7b,0x83,0x99,0x63,0x5b,0x5d,
0x7b,0x9e,0x90,0x9b,0x7f,0x7a,0x7e,0x94,0x6a,0x5f,0x69,0x74,0x9f,0x92,0xa1,
0x86,0x7d,0x79,0x90,0x81,0x58,0x6c,0x68,0x94,0x94,0x96,0x8a,0x77,0x79,0x86,
0x8e,0x60,0x6a,0x6b,0x8a,0x99,0x91,0x95,0x78,0x77,0x7c,0x95,0x79,0x5e,0x69,
0x73,0x94,0x94,0x94,0x84,0x77,0x77,0x87,0x92,0x66,0x5f,0x69,0x7d,0x98,0x93,
0x8e,0x80,0x77,0x79,0x8a,0x8a,0x70,0x68,0x6e,0x82,0x93,0x95,0x8c,0x7b,0x75,
0x78,0x8a,0x8d,0x74,0x68,0x6b,0x7f,0x91,0x92,0x8b,0x7e,0x74,0x76,0x83,0x93,
0x85,0x73,0x68,0x6d,0x86,0x93,0x94,0x85,0x76,0x71,0x79,0x8e,0x95,0x84,0x6e,
0x67,0x6f,0x88,0x96,0x93,0x83,0x73,0x6f,0x7c,0x8c,0x93,0x82,0x71,0x6b,0x75,
0x87,0x93,0x91,0x82,0x75,0x73,0x7b,0x87,0x8b,0x85,0x7c,0x76,0x75,0x81,0x89,
0x8a,0x82,0x7a,0x75,0x79,0x80,0x87,0x87,0x80,0x7a,0x77,0x7b,0x81,0x86,0x87,
0x80,0x78,0x78,0x80,0x83,0x84,0x83,0x7e,0x7b,0x7e,0x82,0x84,0x84,0x81,0x7e,
0x7b,0x7e,0x80,0x82,0x83,0x81,0x7f,0x7d,0x7d,0x82,0x84,0x85,0x83,0x89,0x72,
0x76,0x81,0x7e,0x86,0x7d,0x80,0x75,0x7e,0x7e,0x84,0x84,0x80,0x81,0x7c,0x7e,
0x7f,0x81,0x82,0x80,0x7f,0x7d,0x7d,0x80,0x81,0x81,0x80,0x81,0x82,0x7c,0x7b,
0x7f,0x7f,0x82,0x83,0x82,0x7f,0x7f,0x81,0x80,0x80,0x7f,0x7e,0x7f,0x81,0x7f,
0x80,0x82,0x80,0x80,0x82,0x81,0x78,0x7d,0x7c,0x80,0x81,0x7e,0x7f,0x7e,0x82,
0x80,0x84,0x85,0x82,0x81,0x7e,0x7a,0x7c,0x81,0x85,0x83,0x82,0x7b,0x77,0x7c,
0x7e,0x82,0x81,0x81,0x7d,0x7e,0x80,0x7d,0x80,0x81,0x80,0x7d,0x80,0x80,0x82,
0x81,0x81,0x80,0x7d,0x7f,0x7f,0x82,0x83,0x81,0x7b,0x7d,0x7d,0x80,0x82,0x80,
0x7f,0x7e,0x80,0x81,0x83,0x80,0x7e,0x7d,0x7d,0x83,0x82,0x82,0x7d,0x7d,0x7f,
0x7f,0x81,0x80,0x7f,0x7e,0x7e,0x7f,0x81,0x7f,0x81,0x7f,0x7e,0x7e,0x80,0x81,
0x81,0x7f,0x7e,0x7e,0x7f,0x81,0x80,0x81,0x80,0x81,0x80,0x80,0x80,0x81,0x7f,
0x7e,0x7e,0x80,0x81,0x80,0x81,0x7f,0x7e,0x7f,0x81,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x7f,0x7e,0x7f,0x81,0x80,0x80,0x7f,0x7d,0x7f,0x81,0x81,
0x80,0x80,0x80,0x81,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,
0x7f,0x81,0x80,0x80,0x80,0x80,0x80,0x81,0x7f,0x7d,0x7f,0x81,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,0x7d,0x7f,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x7f,0x7f,0x81,0x80,0x80,0x80,
0x7f,0x7e,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x81,0x7f,0x7f,0x81,0x80,0x80,0x80,0x81,0x7f,0x7f,
0x81,0x80,0x81,0x7f,0x7f,0x81,0x7f,0x81,0x7e,0x80,0x7f,0x7f,0x81,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,0x7e,0x80,0x80,0x80,0x80,0x7f,0x7d,
0x80,0x80,0x80,0x80,0x81,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x81,0x7f,0x81,
0x7e,0x80,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x7f,
0x7f,0x80,0x80,0x80,0x80,0x7f,0x7f,0x80,0x7f,0x80,0x80,0x81,0x7e,0x7f,0x80,
0x80,0x80,0x80,0x80,0x7e,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7e,0x7f,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,0x7f,0x7f,0x80,0x7f,0x80,0x80,0x80
};
uint8_t thriller_sfx[] = {
0x7e,0x7e,0x7f,0x80,0x80,0x7f,0x82,0x83,0x7d,0x7f,0x82,0x81,0x81,0x81,0x84,
0x86,0x87,0x88,0x86,0x85,0x86,0x86,0x85,0x81,0x80,0x80,0x80,0x80,0x7e,0x79,
0x77,0x7c,0x7c,0x79,0x79,0x7d,0x7e,0x7b,0x7a,0x7a,0x7b,0x7e,0x7d,0x7d,0x7b,
0x79,0x7b,0x80,0x82,0x7f,0x80,0x84,0x87,0x88,0x86,0x84,0x84,0x84,0x84,0x83,
0x82,0x84,0x83,0x81,0x7f,0x7f,0x81,0x7f,0x7e,0x7d,0x7b,0x78,0x7e,0x83,0x80,
0x81,0x84,0x82,0x7f,0x7e,0x7f,0x81,0x85,0x82,0x7d,0x7d,0x7d,0x80,0x81,0x7c,
0x7b,0x7c,0x7f,0x82,0x82,0x81,0x80,0x85,0x85,0x80,0x7d,0x7f,0x81,0x7e,0x79,
0x77,0x78,0x79,0x7b,0x7a,0x79,0x7a,0x7c,0x80,0x85,0x84,0x84,0x85,0x85,0x83,
0x81,0x82,0x83,0x83,0x82,0x7f,0x7c,0x7a,0x7c,0x7c,0x79,0x79,0x7b,0x7e,0x81,
0x81,0x81,0x81,0x84,0x87,0x83,0x81,0x82,0x83,0x83,0x80,0x7f,0x7f,0x80,0x7f,
0x7c,0x7b,0x7c,0x7e,0x81,0x80,0x7f,0x83,0x86,0x86,0x84,0x82,0x80,0x80,0x80,
0x7f,0x7e,0x7f,0x80,0x7f,0x7c,0x7a,0x7b,0x7d,0x7e,0x7f,0x7f,0x7f,0x81,0x85,
0x85,0x82,0x7f,0x82,0x86,0x84,0x82,0x81,0x7e,0x7f,0x7f,0x7e,0x7e,0x7f,0x81,
0x8e,0x86,0x72,0x79,0x76,0x71,0x72,0x76,0x71,0x81,0x87,0x7f,0x70,0x7c,0x92,
0xa2,0xa7,0xa0,0x8c,0x7f,0x7c,0x78,0x6f,0x64,0x70,0x74,0x6a,0x57,0x57,0x64,
0x77,0x82,0x8c,0x98,0x9e,0x84,0x89,0x8c,0x8a,0x95,0xa4,0x6d,0xbe,0x6b,0xe8,
0x56,0x2e,0x7f,0x83,0x54,0x5d,0x62,0x7d,0x53,0x8a,0x8d,0x59,0x57,0x60,0x81,
0xa8,0x92,0x57,0x94,0x95,0x8e,0xa9,0xa9,0x9b,0x94,0xb9,0x98,0x99,0xb0,0xab,
0x98,0x8c,0x8e,0x8e,0x82,0x86,0x87,0x8c,0x7f,0x8e,0x81,0x96,0xa0,0xb8,0x9c,
0x6f,0x6d,0x80,0x95,0x6c,0x2d,0x27,0x62,0x3c,0x10,0x08,0x17,0x1a,0x27,0x1e,
0x17,0x26,0x41,0x58,0x54,0x4e,0x5a,0x76,0x85,0x74,0x6a,0x78,0x7c,0x76,0x74,
0x79,0x7c,0x7e,0x8b,0x9a,0xac,0xc0,0xb3,0xb6,0xe1,0xfd,0xf6,0xd4,0xbe,0xe1,
0xf1,0xe0,0xb9,0xb1,0xc4,0xd1,0xcb,0xb4,0xa2,0xa9,0xb4,0xc3,0xb6,0xa3,0xba,
0xbd,0xb7,0xaa,0xa2,0xa3,0xa5,0xa7,0xa0,0xa1,0x98,0x8d,0x90,0x96,0x99,0x9a,
0x7c,0x6c,0x85,0x93,0x70,0x3a,0x1a,0x39,0x4c,0x33,0x0d,0x02,0x1c,0x34,0x2a,
0x1b,0x19,0x28,0x41,0x4c,0x3a,0x2e,0x33,0x3c,0x3a,0x29,0x1d,0x1f,0x2a,0x26,
0x21,0x22,0x2a,0x33,0x41,0x55,0x6b,0x79,0x71,0x74,0x9a,0xb3,0xa1,0x81,0x7c,
0x95,0xa1,0x8d,0x6e,0x5f,0x65,0x72,0x7f,0x73,0x68,0x7c,0x98,0x9e,0xa0,0xa7,
0xb7,0xcd,0xd0,0xc9,0xcb,0xd2,0xd8,0xd3,0xcb,0xc6,0xc7,0xc7,0xcb,0xd2,0xd6,
0xd5,0xcc,0xcb,0xdd,0xe6,0xd8,0xc0,0xba,0xc3,0xd0,0xc9,0xad,0x9b,0xa2,0xae,
0xb0,0xa2,0x95,0x96,0x99,0x94,0x8d,0x87,0x8a,0x8d,0x87,0x7f,0x78,0x75,0x77,
0x75,0x6b,0x68,0x69,0x6a,0x6c,0x75,0x7a,0x76,0x70,0x6e,0x75,0x78,0x69,0x4c,
0x39,0x37,0x41,0x37,0x19,0x07,0x11,0x22,0x27,0x24,0x23,0x27,0x33,0x3b,0x3e,
0x3e,0x45,0x50,0x53,0x52,0x51,0x4e,0x51,0x50,0x4c,0x48,0x47,0x4b,0x52,0x59,
0x64,0x6b,0x6d,0x77,0x86,0x96,0x8f,0x81,0x80,0x85,0x8f,0x8d,0x77,0x63,0x67,
0x70,0x72,0x75,0x71,0x76,0x84,0x8c,0x8d,0x8e,0x90,0x97,0xa2,0xa0,0xa0,0xa8,
0xac,0xb0,0xb4,0xb6,0xb8,0xbc,0xc0,0xc7,0xc7,0xc4,0xc2,0xc4,0xc9,0xce,0xc5,
0xb8,0xaf,0xae,0xb0,0xaf,0x9f,0x8a,0x88,0x92,0x95,0x93,0x90,0x93,0x9d,0xa5,
0xa5,0xa2,0x9e,0x9f,0xa2,0x9f,0x9a,0x9a,0x99,0x93,0x8d,0x87,0x87,0x8a,0x8d,
0x91,0x94,0x94,0x92,0x92,0x99,0x9a,0x96,0x8c,0x85,0x7e,0x77,0x75,0x68,0x52,
0x48,0x4c,0x4c,0x4a,0x43,0x44,0x48,0x4e,0x50,0x56,0x58,0x5e,0x64,0x66,0x66,
0x69,0x6d,0x6c,0x6a,0x67,0x63,0x64,0x6a,0x6d,0x72,0x74,0x73,0x75,0x78,0x78,
0x79,0x76,0x71,0x6f,0x75,0x77,0x71,0x63,0x5c,0x5f,0x62,0x64,0x66,0x67,0x6c,
0x73,0x74,0x77,0x79,0x79,0x79,0x78,0x75,0x74,0x75,0x7b,0x80,0x83,0x84,0x87,
0x8d,0x92,0x94,0x97,0x9a,0x98,0x99,0x99,0x97,0x92,0x87,0x82,0x81,0x80,0x7b,
0x70,0x63,0x5f,0x60,0x60,0x61,0x60,0x63,0x6b,0x70,0x74,0x79,0x7c,0x80,0x87,
0x8b,0x8a,0x8b,0x8a,0x88,0x85,0x81,0x80,0x84,0x87,0x89,0x8c,0x8b,0x90,0x92,
0x94,0x97,0x94,0x91,0x8d,0x8a,0x8c,0x8c,0x88,0x80,0x75,0x71,0x72,0x70,0x6e,
0x6b,0x6d,0x74,0x79,0x7b,0x7e,0x83,0x89,0x8e,0x91,0x92,0x95,0x98,0x9b,0x9c,
0x9d,0xa1,0xa8,0xab,0xaa,0xaa,0xaa,0xab,0xaa,0xa3,0x9e,0x9a,0x98,0x99,0x94,
0x91,0x90,0x8b,0x8b,0x85,0x81,0x85,0x86,0x88,0x8d,0x8f,0x90,0x93,0x92,0x90,
0x90,0x8c,0x89,0x8a,0x8b,0x8d,0x8d,0x8f,0x91,0x90,0x92,0x91,0x91,0x90,0x91,
0x91,0x90,0x8d,0x8c,0x86,0x80,0x7c,0x78,0x79,0x6d,0x5e,0x5e,0x5b,0x57,0x51,
0x48,0x48,0x4b,0x4d,0x50,0x51,0x53,0x58,0x5d,0x61,0x62,0x63,0x65,0x67,0x66,
0x63,0x62,0x65,0x67,0x65,0x64,0x65,0x67,0x67,0x67,0x68,0x68,0x67,0x66,0x63,
0x63,0x61,0x5e,0x5f,0x60,0x59,0x58,0x5b,0x5e,0x63,0x5d,0x5d,0x65,0x67,0x67,
0x69,0x6a,0x6c,0x70,0x73,0x78,0x7a,0x7b,0x82,0x88,0x8b,0x8e,0x93,0x96,0x9a,
0x99,0x99,0x9b,0x9d,0x9a,0x96,0x92,0x91,0x91,0x90,0x90,0x91,0x8e,0x8d,0x8e,
0x8f,0x8f,0x8b,0x8c,0x94,0x96,0x93,0x96,0x99,0x9b,0x9c,0x9b,0x9c,0x9e,0x9f,
0xa2,0xa3,0xa4,0xa4,0xa4,0xa6,0xa6,0xa5,0xa3,0xa5,0xa8,0xa7,0xa5,0xa4,0xa5,
0xa3,0xa0,0x9c,0x99,0x95,0x91,0x8e,0x8b,0x89,0x84,0x80,0x7f,0x7e,0x7b,0x7b,
0x7d,0x7f,0x81,0x7f,0x7f,0x82,0x83,0x83,0x83,0x83,0x82,0x82,0x83,0x84,0x83,
0x82,0x82,0x82,0x80,0x7e,0x7c,0x79,0x77,0x74,0x6f,0x6c,0x6a,0x68,0x67,0x67,
0x68,0x69,0x68,0x67,0x67,0x67,0x67,0x66,0x66,0x67,0x67,0x67,0x66,0x65,0x66,
0x67,0x68,0x69,0x6a,0x6e,0x72,0x75,0x76,0x77,0x78,0x79,0x79,0x77,0x77,0x78,
0x78,0x78,0x78,0x76,0x76,0x76,0x74,0x72,0x72,0x71,0x70,0x6f,0x6e,0x6f,0x72,
0x75,0x78,0x7b,0x7c,0x7d,0x7f,0x80,0x81,0x82,0x83,0x84,0x84,0x86,0x87,0x87,
0x87,0x88,0x88,0x88,0x87,0x87,0x89,0x8b,0x8b,0x8c,0x8c,0x8b,0x89,0x87,0x86,
0x86,0x87,0x87,0x86,0x85,0x84,0x84,0x84,0x84,0x85,0x85,0x84,0x85,0x85,0x83,
0x82,0x81,0x80,0x80,0x81,0x83,0x84,0x86,0x89,0x8b,0x8b,0x8b,0x89,0x88,0x86,
0x84,0x83,0x83,0x82,0x81,0x7e,0x7d,0x7b,0x7a,0x7b,0x7c,0x7e,0x7f,0x7f,0x80,
0x80,0x81,0x81,0x80,0x80,0x81,0x81,0x82,0x82,0x83,0x82,0x81,0x82,0x82,0x81,
0x7f,0x7f,0x80,0x81,0x82,0x82,0x82,0x82,0x82,0x85,0x86,0x86,0x88,0x89,0x88,
0x87,0x85,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,0x7b,0x7b,0x7c,0x7d,0x7e,0x80,0x81,
0x80,0x81,0x82,0x81,0x81,0x80,0x81,0x81,0x81,0x80,0x80,0x7f,0x7e,0x7e,0x7d,
0x7d,0x7f,0x80,0x80,0x80,0x80,0x80,0x7f,0x7f,0x7e,0x7e,0x7c,0x7c,0x7c,0x7c,
0x7c,0x7d,0x7d,0x7c,0x7b,0x7b,0x7b,0x7a,0x79,0x7a,0x7b,0x7b,0x7b,0x7a,0x7a,
0x7a,0x7d,0x7e,0x80,0x82,0x83,0x82,0x81,0x80,0x80,0x7f,0x7f,0x80,0x81,0x80,
0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x7f,0x7f,0x7e,0x7d,0x7e,0x7d,0x7c,
0x7c,0x7e,0x81,0x82,0x83,0x85,0x84,0x83,0x82,0x80,0x7e,0x7e,0x80,0x82,0x83,
0x84,0x86,0x86,0x86,0x8c,0x82,0x7e,0x77,0x78,0x77,0x80,0x7d,0x7a,0x87,0x9a,
0x9e,0x8d,0x82,0x7c,0x74,0x76,0x6a,0x5b,0x62,0x6f,0x7b,0x8a,0x80,0x82,0x88,
0x94,0x94,0x8c,0x86,0x78,0x6f,0x6e,0x6b,0x6b,0x73,0x6f,0x74,0x81,0x8a,0x8e,
0x84,0x82,0x8d,0x92,0x8f,0x87,0x81,0x80,0x77,0x6c,0x6c,0x6c,0x6e,0x74,0x78,
0x7d,0x86,0x8f,0x95,0x94,0x90,0x8c,0x82,0x79,0x70,0x69,0x66,0x68,0x6f,0x77,
0x81,0x8c,0x93,0x99,0x9a,0x93,0x89,0x80,0x77,0x73,0x6d,0x6c,0x73,0x7d,0x85,
0x8b,0x92,0x98,0x99,0x95,0x91,0x8e,0x87,0x7d,0x73,0x71,0x74,0x76,0x78,0x7a,
0x7c,0x7f,0x83,0x89,0x8d,0x8b,0x87,0x84,0x86,0x86,0x82,0x7b,0x76,0x73,0x73,
0x74,0x78,0x7c,0x7d,0x7e,0x85,0x91,0x96,0x8f,0x89,0x86,0x7f,0x79,0x72,0x6e,
0x6e,0x71,0x76,0x7d,0x84,0x89,0x8a,0x8a,0x8a,0x89,0x84,0x7c,0x74,0x6d,0x68,
0x64,0x69,0x72,0x7d,0x84,0x8b,0x92,0x94,0x91,0x8b,0x85,0x80,0x7b,0x7a,0x7a,
0x79,0x79,0x7a,0x7c,0x7f,0x82,0x82,0x84,0x87,0x8a,0x8b,0x88,0x86,0x85,0x84,
0x81,0x7d,0x7b,0x77,0x74,0x75,0x7b,0x80,0x83,0x87,0x8c,0x8e,0x8a,0x84,0x7e,
0x79,0x76,0x74,0x74,0x76,0x78,0x7c,0x82,0x88,0x8d,0x91,0x90,0x8d,0x88,0x82,
0x7c,0x76,0x70,0x6c,0x6b,0x70,0x78,0x7f,0x84,0x89,0x8b,0x8a,0x87,0x85,0x83,
0x7f,0x7b,0x78,0x77,0x77,0x75,0x75,0x79,0x7d,0x80,0x82,0x82,0x81,0x81,0x7f,
0x7f,0x80,0x7f,0x7d,0x7c,0x7b,0x79,0x76,0x76,0x7b,0x7e,0x81,0x83,0x85,0x87,
0x85,0x81,0x7f,0x7b,0x79,0x78,0x78,0x78,0x77,0x79,0x7c,0x82,0x87,0x8a,0x8c,
0x8c,0x8c,0x89,0x84,0x7f,0x7a,0x77,0x76,0x76,0x77,0x7b,0x80,0x84,0x88,0x8a,
0x8a,0x8a,0x89,0x87,0x85,0x82,0x7e,0x7c,0x7b,0x7c,0x7d,0x7d,0x7e,0x80,0x81,
0x82,0x84,0x87,0x88,0x89,0x88,0x86,0x82,0x80,0x7d,0x7b,0x7c,0x7f,0x80,0x84,
0x84,0x84,0x84,0x81,0x7f,0x7d,0x79,0x77,0x75,0x75,0x75,0x76,0x77,0x79,0x7b,
0x7f,0x84,0x88,0x89,0x88,0x86,0x82,0x7d,0x77,0x74,0x72,0x71,0x72,0x76,0x7a,
0x7e,0x82,0x87,0x8a,0x8b,0x89,0x85,0x83,0x81,0x7f,0x7e,0x7d,0x7e,0x7f,0x80,
0x80,0x80,0x7f,0x7e,0x7e,0x7f,0x80,0x80,0x81,0x81,0x80,0x7f,0x7c,0x7b,0x7c,
0x7f,0x82,0x83,0x84,0x84,0x84,0x85,0x85,0x83,0x81,0x80,0x80,0x80,0x80,0x81,
0x83,0x84,0x84,0x82,0x84,0x87,0x88,0x88,0x88,0x86,0x83,0x80,0x7b,0x78,0x76,
0x73,0x74,0x77,0x7a,0x7c,0x80,0x83,0x86,0x85,0x83,0x81,0x7f,0x7f,0x80,0x81,
0x80,0x7f,0x7e,0x7e,0x7e,0x7c,0x7c,0x7d,0x7f,0x80,0x81,0x80,0x7f,0x7f,0x7e,
0x7c,0x7a,0x7a,0x7a,0x7d,0x7f,0x7f,0x7e,0x7f,0x7f,0x7e,0x7e,0x7c,0x79,0x78,
0x79,0x7a,0x79,0x79,0x7b,0x7d,0x7f,0x80,0x81,0x83,0x86,0x87,0x89,0x87,0x83,
0x82,0x80,0x7e,0x7b,0x7a,0x7b,0x7e,0x81,0x83,0x85,0x87,0x88,0x87,0x85,0x83,
0x82,0x82,0x83,0x82,0x81,0x7f,0x7e,0x7e,0x7d,0x7c,0x7b,0x7c,0x7d,0x7f,0x80,
0x82,0x83,0x83,0x83,0x84,0x83,0x83,0x83,0x86,0x88,0x88,0x85,0x83,0x82,0x80,
0x7c,0x78,0x77,0x78,0x7a,0x7b,0x7c,0x7c,0x7e,0x80,0x81,0x81,0x82,0x83,0x82,
0x82,0x82,0x81,0x7e,0x7a,0x78,0x76,0x75,0x75,0x74,0x76,0x7b,0x80,0x83,0x84,
0x84,0x84,0x85,0x85,0x83,0x80,0x7f,0x7f,0x7e,0x7c,0x7b,0x7a,0x7a,0x79,0x79,
0x7a,0x7c,0x7d,0x7f,0x81,0x82,0x82,0x83,0x85,0x86,0x84,0x84,0x82,0x81,0x81,
0x80,0x7f,0x7e,0x7d,0x7d,0x7d,0x7c,0x7d,0x7f,0x7f,0x81,0x82,0x82,0x81,0x83,
0x85,0x85,0x84,0x84,0x83,0x81,0x80,0x7e,0x7d,0x7b,0x7a,0x7c,0x7d,0x7d,0x81,
0x83,0x86,0x87,0x87,0x86,0x86,0x85,0x85,0x84,0x83,0x80,0x7f,0x7d,0x7e,0x7e,
0x7d,0x7c,0x7c,0x7d,0x7e,0x80,0x81,0x82,0x83,0x81,0x7f,0x7d,0x7c,0x7c,0x7e,
0x7e,0x7e,0x7d,0x7e,0x7e,0x7e,0x7b,0x79,0x78,0x77,0x77,0x79,0x7c,0x7f,0x81,
0x82,0x83,0x83,0x83,0x84,0x86,0x87,0x86,0x84,0x82,0x80,0x7e,0x7d,0x7b,0x78,
0x77,0x78,0x7a,0x7c,0x7f,0x81,0x84,0x86,0x83,0x80,0x7f,0x80,0x81,0x80,0x7d,
0x7d,0x7f,0x80,0x81,0x81,0x80,0x7f,0x7d,0x7d,0x7f,0x81,0x82,0x83,0x84,0x86,
0x87,0x87,0x87,0x87,0x86,0x84,0x81,0x7e,0x7e,0x7f,0x80,0x7f,0x7d,0x7a,0x7a,
0x7b,0x7b,0x7b,0x7d,0x7f,0x80,0x80,0x81,0x81,0x82,0x82,0x82,0x80,0x7f,0x7e,
0x7e,0x7e,0x7e,0x7c,0x7b,0x7a,0x7c,0x7e,0x81,0x81,0x82,0x82,0x82,0x81,0x80,
0x7f,0x7e,0x7e,0x7d,0x7c,0x7b,0x7b,0x7e,0x80,0x7f,0x7d,0x7d,0x7f,0x80,0x81,
0x80,0x7f,0x7f,0x7e,0x7d,0x7c,0x7b,0x7d,0x7e,0x7f,0x7e,0x7f,0x80,0x81,0x83,
0x83,0x81,0x80,0x7e,0x7f,0x80,0x81,0x82,0x83,0x83,0x83,0x83,0x82,0x83,0x84,
0x84,0x82,0x80,0x7e,0x7e,0x7e,0x7c,0x7a,0x7a,0x7b,0x7e,0x82,0x84,0x85,0x87,
0x86,0x84,0x82,0x80,0x80,0x81,0x80,0x7f,0x7f,0x80,0x80,0x80,0x7f,0x7e,0x7e,
0x7d,0x7d,0x7d,0x7d,0x80,0x81,0x7e,0x7d,0x7e,0x80,0x80,0x7c,0x7d,0x82,0x82,
0x81,0x7c,0x79,0x7d,0x81,0x7a,0x77,0x77,0x7a,0x7e,0x81,0x82,0x85,0x88,0x88,
0x89,0x87,0x85,0x86,0x86,0x83,0x80,0x7d,0x7c,0x7d,0x7a,0x7a,0x7d,0x7a,0x78,
0x77,0x7b,0x83,0x81,0x7d,0x81,0x84,0x83,0x81,0x7e,0x7d,0x7e,0x82,0x82,0x7e,
0x7c,0x7f,0x83,0x7d,0x77,0x7a,0x7f,0x81,0x7f,0x7c,0x81,0x8a,0x89,0x83,0x7f,
0x7f,0x85,0x88,0x84,0x81,0x80,0x81,0x81,0x7f,0x7c,0x7b,0x7b,0x79,0x79,0x79,
0x7c,0x81,0x82,0x80,0x81,0x80,0x7f,0x7f,0x80,0x85,0x84,0x7e,0x7d,0x7e,0x7d,
0x7d,0x7b,0x79,0x7a,0x7f,0x84,0x84,0x82,0x82,0x84,0x84,0x81,0x7f,0x7f,0x80,
0x7f,0x80,0x80,0x81,0x81,0x7f,0x7d,0x7c,0x7f,0x80,0x7e,0x7e,0x7d,0x7e,0x7f,
0x80,0x80,0x81,0x7f,0x80,0x85,0x85,0x85,0x87,0x86,0x83,0x80,0x7f,0x7f,0x7e,
0x7b,0x7a,0x7c,0x7d,0x7e,0x7f,0x7f,0x80,0x80,0x80,0x81,0x82,0x84,0x83,0x80,
0x81,0x81,0x7e,0x7b,0x79,0x79,0x79,0x79,0x7b,0x7d,0x7f,0x80,0x80,0x81,0x82,
0x82,0x82,0x82,0x82,0x82,0x83,0x84,0x82,0x80,0x7e,0x7d,0x7f,0x80,0x7e,0x7d,
0x7e,0x7e,0x7e,0x80,0x83,0x84,0x80,0x81,0x83,0x81,0x81,0x80,0x81,0x81,0x7e,
0x7b,0x7d,0x7d,0x7e,0x89,0x9e,0x8e,0x58,0x4f,0x77,0x82,0x80,0x76,0x6f,0x7f,
0x8d,0x8c,0x86,0x84,0x82,0x88,0x84,0x84,0x87,0x81,0x88,0x8a,0x84,0x84,0x86,
0x7f,0x7f,0x87,0x83,0x89,0x81,0x81,0x91,0xa6,0xac,0x83,0x6b,0x8b,0xa6,0x94,
0x51,0x4b,0x78,0x80,0x7b,0x6a,0x5f,0x68,0x78,0x7c,0x7f,0x8b,0x89,0x5a,0x4a,
0x6d,0x78,0x75,0x80,0x75,0x75,0x7a,0x7e,0x80,0x7a,0x7c,0x80,0x7d,0x7f,0x83,
0x86,0x95,0x9f,0x89,0x7b,0x9c,0xa3,0x8e,0x70,0x69,0x7d,0x77,0x78,0x8c,0x94,
0x90,0x73,0x69,0x7b,0x88,0x79,0x59,0x56,0x71,0x7d,0x79,0x75,0x78,0x7b,0x83,
0x8a,0x84,0x83,0x86,0x8b,0x88,0x7f,0x81,0x95,0xa6,0xa1,0x89,0x82,0x92,0x9c,
0x90,0x73,0x6c,0x7a,0x83,0x8e,0x94,0x95,0x93,0x84,0x80,0x92,0x8e,0x73,0x5b,
0x5d,0x75,0x78,0x75,0x71,0x73,0x7a,0x83,0x81,0x7f,0x7e,0x86,0x88,0x83,0x7c,
0x81,0x91,0x9e,0x9c,0x88,0x82,0x90,0x96,0x8f,0x74,0x69,0x74,0x7b,0x81,0x80,
0x7d,0x7d,0x76,0x7d,0x86,0x85,0x70,0x5c,0x65,0x73,0x73,0x71,0x6e,0x6f,0x72,
0x73,0x73,0x74,0x75,0x7b,0x7c,0x7c,0x79,0x80,0x8c,0x98,0x9a,0x8f,0x8c,0x97,
0x9b,0x93,0x7b,0x73,0x78,0x7d,0x7f,0x7f,0x80,0x7d,0x7b,0x80,0x84,0x80,0x6e,
0x61,0x6b,0x74,0x75,0x76,0x78,0x7a,0x7d,0x7e,0x81,0x7f,0x7f,0x81,0x82,0x81,
0x7e,0x82,0x8c,0x94,0x95,0x8d,0x8a,0x92,0x9a,0x90,0x80,0x7c,0x80,0x84,0x87,
0x8a,0x88,0x83,0x82,0x85,0x86,0x80,0x6d,0x64,0x6d,0x70,0x70,0x71,0x73,0x79,
0x80,0x83,0x86,0x85,0x84,0x85,0x84,0x7d,0x7d,0x81,0x89,0x90,0x92,0x8d,0x8b,
0x8e,0x92,0x8a,0x7d,0x78,0x7b,0x7e,0x81,0x82,0x83,0x7e,0x7c,0x83,0x86,0x80,
0x72,0x6d,0x72,0x74,0x73,0x72,0x70,0x70,0x74,0x76,0x74,0x77,0x7b,0x7c,0x7f,
0x81,0x83,0x86,0x8a,0x8e,0x91,0x8f,0x8e,0x8f,0x8f,0x87,0x7d,0x79,0x78,0x7b,
0x7d,0x7e,0x7f,0x7d,0x7b,0x80,0x83,0x7d,0x72,0x6f,0x72,0x77,0x75,0x74,0x76,
0x79,0x7c,0x81,0x80,0x7e,0x80,0x7f,0x7f,0x7f,0x80,0x81,0x85,0x89,0x8d,0x8c,
0x8c,0x90,0x94,0x8f,0x86,0x83,0x82,0x82,0x84,0x84,0x80,0x7b,0x7b,0x7d,0x7b,
0x71,0x6b,0x6c,0x71,0x76,0x78,0x78,0x78,0x7c,0x81,0x82,0x83,0x82,0x81,0x80,
0x80,0x83,0x84,0x85,0x86,0x89,0x8c,0x8c,0x89,0x8a,0x8b,0x88,0x82,0x80,0x82,
0x83,0x85,0x84,0x80,0x7d,0x7e,0x81,0x7f,0x75,0x6f,0x6f,0x71,0x73,0x73,0x72,
0x73,0x75,0x78,0x78,0x78,0x7a,0x7e,0x82,0x86,0x88,0x89,0x88,0x89,0x8d,0x91,
0x92,0x8f,0x8d,0x8c,0x89,0x82,0x7c,0x7d,0x7f,0x81,0x80,0x7d,0x7a,0x7d,0x83,
0x83,0x7b,0x75,0x72,0x72,0x72,0x71,0x70,0x71,0x76,0x7b,0x7d,0x7d,0x7e,0x80,
0x81,0x82,0x81,0x82,0x83,0x86,0x8a,0x8e,0x91,0x90,0x8f,0x92,0x91,0x8d,0x87,
0x83,0x83,0x82,0x80,0x7b,0x77,0x76,0x79,0x78,0x72,0x6d,0x6e,0x75,0x7a,0x7a,
0x79,0x79,0x7c,0x7f,0x7d,0x7a,0x7a,0x7b,0x7a,0x7a,0x7b,0x7e,0x83,0x88,0x8b,
0x8e,0x8f,0x8d,0x8c,0x8d,0x8c,0x8b,0x86,0x80,0x7f,0x81,0x83,0x81,0x7d,0x7c,
0x7f,0x7d,0x77,0x70,0x6e,0x72,0x75,0x72,0x6f,0x70,0x75,0x7b,0x7d,0x7e,0x80,
0x82,0x85,0x87,0x86,0x87,0x87,0x89,0x8b,0x8a,0x88,0x89,0x88,0x87,0x87,0x87,
0x84,0x81,0x7e,0x82,0x85,0x85,0x82,0x7e,0x7f,0x81,0x7d,0x76,0x71,0x72,0x73,
0x73,0x71,0x71,0x75,0x7b,0x7c,0x7b,0x7a,0x7c,0x7f,0x81,0x81,0x81,0x83,0x87,
0x8b,0x8c,0x8c,0x8f,0x90,0x91,0x8d,0x8a,0x88,0x85,0x83,0x7d,0x7b,0x7b,0x7b,
0x79,0x77,0x78,0x7a,0x7a,0x76,0x77,0x7b,0x7b,0x7a,0x79,0x79,0x7a,0x79,0x79,
0x78,0x78,0x7a,0x7d,0x7e,0x7f,0x81,0x85,0x89,0x8a,0x8a,0x8a,0x8b,0x8d,0x8d,
0x8a,0x87,0x86,0x85,0x84,0x82,0x7b,0x7b,0x7d,0x7a,0x77,0x74,0x73,0x74,0x71,
0x72,0x76,0x76,0x77,0x7a,0x7d,0x80,0x81,0x82,0x83,0x85,0x84,0x84,0x84,0x85,
0x84,0x83,0x83,0x83,0x85,0x86,0x86,0x88,0x89,0x8a,0x8b,0x8a,0x87,0x85,0x84,
0x86,0x7f,0x79,0x7a,0x79,0x76,0x73,0x71,0x70,0x6e,0x71,0x73,0x76,0x7a,0x7c,
0x7e,0x7f,0x80,0x83,0x84,0x86,0x86,0x87,0x86,0x88,0x89,0x8a,0x8a,0x89,0x87,
0x84,0x83,0x83,0x82,0x7f,0x7e,0x7d,0x7f,0x7d,0x7b,0x7e,0x80,0x82,0x7d,0x77,
0x7a,0x7b,0x7b,0x79,0x6f,0x6f,0x77,0x79,0x79,0x78,0x77,0x7e,0x84,0x85,0x86,
0x88,0x8b,0x8e,0x8c,0x8a,0x89,0x8a,0x89,0x88,0x84,0x81,0x7f,0x80,0x7e,0x7d,
0x7b,0x7a,0x7a,0x79,0x79,0x78,0x78,0x7a,0x7b,0x7e,0x7e,0x7b,0x7a,0x7b,0x7e,
0x7d,0x79,0x7b,0x7e,0x7f,0x7f,0x7c,0x7c,0x7f,0x82,0x83,0x84,0x85,0x87,0x8a,
0x8b,0x8b,0x8c,0x8b,0x89,0x87,0x85,0x80,0x7c,0x7e,0x7c,0x77,0x79,0x78,0x76,
0x75,0x75,0x76,0x78,0x79,0x79,0x7d,0x7f,0x81,0x82,0x81,0x82,0x83,0x81,0x7f,
0x7f,0x7f,0x80,0x80,0x81,0x81,0x80,0x82,0x85,0x83,0x84,0x87,0x86,0x87,0x87,
0x86,0x87,0x86,0x84,0x83,0x80,0x7f,0x7f,0x7e,0x7b,0x79,0x7a,0x76,0x74,0x77,
0x77,0x76,0x78,0x7a,0x7c,0x7f,0x82,0x83,0x85,0x87,0x87,0x85,0x82,0x81,0x7f,
0x7e,0x7d,0x7e,0x7e,0x7d,0x7d,0x7f,0x7f,0x7f,0x82,0x84,0x84,0x84,0x83,0x81,
0x81,0x81,0x7f,0x7e,0x7c,0x7b,0x7c,0x7c,0x7d,0x7d,0x7c,0x7b,0x7a,0x79,0x7a,
0x7c,0x7e,0x7f,0x80,0x82,0x83,0x84,0x86,0x86,0x86,0x87,0x87,0x85,0x83,0x7f,
0x7c,0x7c,0x7d,0x7d,0x7c,0x7d,0x7f,0x80,0x81,0x82,0x84,0x84,0x84,0x85,0x83,
0x80,0x7e,0x7e,0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x7a,0x7a,0x7b,0x7d,0x82,0x85,
0x84,0x83,0x83,0x82,0x83,0x85,0x84,0x82,0x80,0x7e,0x7d,0x7f,0x81,0x80,0x7c,
0x78,0x79,0x7c,0x7e,0x7f,0x7f,0x81,0x84,0x85,0x82,0x80,0x81,0x82,0x82,0x81,
0x7f,0x80,0x81,0x7e,0x7b,0x7b,0x7a,0x7a,0x7b,0x7a,0x79,0x79,0x7b,0x7f,0x84,
0x85,0x82,0x81,0x81,0x83,0x86,0x84,0x80,0x7e,0x80,0x81,0x7d,0x7a,0x7d,0x7d,
0x7a,0x79,0x7c,0x80,0x83,0x86,0x85,0x82,0x82,0x85,0x86,0x81,0x7e,0x7f,0x80,
0x80,0x7e,0x7b,0x7c,0x7f,0x7f,0x7d,0x7a,0x7c,0x7f,0x7f,0x7f,0x7e,0x7e,0x80,
0x83,0x84,0x83,0x85,0x86,0x8c,0x8d,0x7d,0x74,0x75,0x70,0x70,0x73,0x70,0x7a,
0x7f,0x7d,0x77,0x84,0x8f,0xa1,0xb0,0xb0,0x93,0x83,0x80,0x80,0x74,0x68,0x71,
0x70,0x64,0x58,0x54,0x60,0x6f,0x79,0x88,0x98,0x91,0x81,0x87,0x90,0x8f,0x99,
0xa5,0xaf,0xbc,0x8f,0x5a,0x63,0x6f,0x6a,0x70,0x62,0x60,0x67,0x6f,0x78,0x6e,
0x6b,0x7b,0x8f,0x91,0x93,0x96,0x8a,0x89,0x88,0x85,0x93,0x96,0x97,0x95,0x85,
0x7e,0x7c,0x7c,0x79,0x77,0x65,0x5b,0x62,0x78,0x89,0x85,0x7a,0x7e,0x95,0x9d,
0x98,0x9a,0xaf,0xa2,0x70,0x73,0x86,0x7e,0x7c,0x72,0x65,0x66,0x64,0x63,0x65,
0x63,0x62,0x67,0x6c,0x78,0x80,0x83,0x8c,0x94,0x94,0x9a,0x9a,0x9f,0x9d,0x8a,
0x81,0x83,0x73,0x63,0x64,0x6e,0x6e,0x6d,0x76,0x89,0x90,0x8c,0x90,0x9b,0x98,
0x8a,0x86,0x8d,0x87,0x7e,0x7e,0x7a,0x79,0x75,0x74,0x70,0x69,0x65,0x68,0x6c,
0x72,0x76,0x7b,0x7f,0x81,0x7f,0x7f,0x81,0x85,0x89,0x8a,0x8c,0x8e,0x8e,0x87,
0x83,0x81,0x83,0x87,0x93,0x9f,0xa1,0x9a,0x95,0x91,0x8c,0x84,0x7d,0x70,0x67,
0x66,0x6a,0x70,0x71,0x70,0x72,0x79,0x80,0x89,0x8e,0x8d,0x89,0x84,0x7f,0x7e,
0x7c,0x7c,0x77,0x70,0x6b,0x6a,0x6d,0x71,0x73,0x72,0x77,0x7c,0x82,0x8b,0x8d,
0x90,0x95,0x9c,0xa8,0xa7,0xa3,0x9f,0x99,0x8d,0x82,0x73,0x6a,0x64,0x5c,0x58,
0x5e,0x61,0x69,0x71,0x78,0x79,0x7f,0x84,0x8b,0x8c,0x87,0x82,0x80,0x80,0x7f,
0x7e,0x7c,0x7a,0x79,0x76,0x77,0x79,0x7c,0x7a,0x7b,0x79,0x7a,0x7d,0x86,0x8e,
0x95,0x99,0x9d,0xa0,0xa1,0x99,0x93,0x8a,0x85,0x7c,0x75,0x72,0x71,0x6d,0x6c,
0x6a,0x69,0x6b,0x6a,0x6b,0x6f,0x6f,0x78,0x7e,0x7f,0x85,0x88,0x8a,0x8a,0x90,
0x90,0x91,0x8e,0x8b,0x88,0x82,0x7d,0x79,0x72,0x6f,0x73,0x7a,0x7e,0x85,0x8d,
0x8d,0x91,0x95,0x93,0x91,0x8f,0x8b,0x87,0x84,0x7f,0x7c,0x78,0x72,0x71,0x70,
0x6d,0x6e,0x6d,0x6a,0x68,0x6b,0x71,0x77,0x79,0x7f,0x82,0x88,0x8c,0x92,0x91,
0x8f,0x8d,0x8c,0x86,0x85,0x82,0x7d,0x7a,0x7d,0x7e,0x85,0x88,0x8d,0x8b,0x86,
0x87,0x86,0x80,0x7a,0x7c,0x77,0x77,0x7d,0x7d,0x78,0x77,0x78,0x7a,0x7d,0x7d,
0x7e,0x7e,0x79,0x7c,0x7b,0x76,0x74,0x77,0x77,0x76,0x79,0x7c,0x7d,0x80,0x84,
0x86,0x88,0x88,0x8a,0x89,0x8d,0x91,0x91,0x90,0x92,0x91,0x8d,0x88,0x84,0x7d,
0x77,0x71,0x70,0x6c,0x6a,0x6d,0x73,0x76,0x7a,0x7e,0x80,0x84,0x88,0x8a,0x89,
0x85,0x83,0x7e,0x7c,0x7a,0x78,0x77,0x74,0x74,0x74,0x73,0x76,0x78,0x7b,0x7e,
0x81,0x84,0x87,0x8e,0x91,0x94,0x99,0x98,0x96,0x94,0x90,0x8a,0x83,0x7b,0x79,
0x75,0x6e,0x6e,0x6d,0x6f,0x6f,0x73,0x75,0x78,0x7a,0x7c,0x81,0x81,0x83,0x81,
0x80,0x81,0x7e,0x80,0x81,0x80,0x7f,0x81,0x7d,0x7b,0x7b,0x7a,0x7b,0x79,0x7a,
0x7e,0x83,0x8a,0x8f,0x93,0x96,0x99,0x97,0x94,0x90,0x8a,0x84,0x7e,0x79,0x77,
0x74,0x75,0x74,0x74,0x77,0x73,0x71,0x71,0x72,0x75,0x76,0x78,0x79,0x7e,0x81,
0x82,0x84,0x85,0x86,0x85,0x85,0x81,0x7c,0x7c,0x7b,0x7d,0x7c,0x80,0x81,0x83,
0x87,0x89,0x90,0x91,0x90,0x90,0x8c,0x8a,0x87,0x83,0x7d,0x7a,0x7d,0x7a,0x77,
0x75,0x74,0x75,0x74,0x72,0x74,0x75,0x73,0x77,0x79,0x78,0x79,0x7d,0x7f,0x81,
0x80,0x82,0x80,0x7f,0x7f,0x82,0x82,0x81,0x83,0x83,0x84,0x89,0x8c,0x93,0x95,
0x95,0x92,0x8c,0x88,0x86,0x84,0x7e,0x7a,0x76,0x75,0x76,0x75,0x75,0x75,0x77,
0x77,0x77,0x79,0x7c,0x7c,0x7a,0x7e,0x7d,0x7c,0x7c,0x7d,0x7d,0x7b,0x7b,0x7d,
0x7c,0x7c,0x7c,0x7c,0x7d,0x7e,0x81,0x85,0x87,0x8e,0x91,0x93,0x9a,0x9a,0x95,
0x8f,0x89,0x86,0x82,0x7c,0x79,0x74,0x6f,0x70,0x70,0x6f,0x71,0x76,0x76,0x76,
0x79,0x7b,0x7e,0x81,0x81,0x81,0x7e,0x7c,0x7e,0x7d,0x7d,0x7e,0x7d,0x7d,0x7c,
0x7e,0x7d,0x7c,0x7c,0x7e,0x80,0x82,0x84,0x89,0x8f,0x97,0x9b,0x95,0x94,0x92,
0x8b,0x85,0x81,0x7d,0x78,0x76,0x75,0x70,0x71,0x72,0x74,0x73,0x72,0x71,0x73,
0x75,0x79,0x7e,0x82,0x83,0x86,0x85,0x86,0x84,0x84,0x7f,0x7e,0x7c,0x7d,0x7e,
0x7b,0x7b,0x7d,0x7d,0x81,0x85,0x88,0x8b,0x90,0x90,0x92,0x90,0x8f,0x8b,0x86,
0x83,0x84,0x80,0x7c,0x7b,0x7a,0x75,0x71,0x72,0x72,0x6f,0x70,0x6f,0x6f,0x71,
0x77,0x7a,0x7e,0x82,0x85,0x87,0x86,0x87,0x86,0x83,0x82,0x81,0x7e,0x7d,0x7d,
0x7e,0x7f,0x81,0x85,0x8a,0x89,0x8c,0x8c,0x8a,0x89,0x8a,0x88,0x85,0x83,0x82,
0x7e,0x7e,0x7e,0x7a,0x77,0x77,0x78,0x75,0x70,0x74,0x76,0x75,0x74,0x76,0x77,
0x79,0x7c,0x7e,0x80,0x81,0x82,0x85,0x85,0x83,0x85,0x85,0x84,0x85,0x83,0x83,
0x88,0x88,0x88,0x86,0x86,0x87,0x86,0x84,0x86,0x85,0x82,0x80,0x81,0x80,0x7d,
0x7a,0x7a,0x7a,0x7a,0x77,0x79,0x78,0x78,0x7a,0x79,0x79,0x7b,0x7b,0x78,0x7a,
0x7c,0x7f,0x7f,0x7a,0x78,0x7e,0x81,0x85,0x87,0x85,0x87,0x8b,0x8b,0x8c,0x87,
0x88,0x88,0x86,0x81,0x7f,0x7f,0x7e,0x7c,0x79,0x7a,0x7c,0x7b,0x7c,0x7d,0x7c,
0x79,0x7a,0x7c,0x79,0x7a,0x78,0x79,0x78,0x7c,0x7f,0x7e,0x7f,0x80,0x81,0x7e,
0x7f,0x85,0x86,0x86,0x86,0x86,0x89,0x8a,0x89,0x8a,0x8b,0x8a,0x89,0x87,0x84,
0x81,0x7e,0x7c,0x7b,0x7a,0x77,0x76,0x78,0x78,0x7a,0x79,0x79,0x7d,0x7b,0x7b,
0x7e,0x7e,0x7c,0x7d,0x7e,0x7c,0x77,0x79,0x7e,0x80,0x80,0x83,0x86,0x87,0x88,
0x8c,0x8b,0x8a,0x8c,0x8a,0x87,0x86,0x83,0x7e,0x7e,0x79,0x78,0x75,0x75,0x74,
0x78,0x7c,0x80,0x7c,0x7b,0x7b,0x7e,0x7b,0x79,0x79,0x7b,0x7e,0x7d,0x7d,0x80,
0x7d,0x7f,0x82,0x7e,0x7e,0x80,0x85,0x85,0x87,0x8a,0x8b,0x87,0x86,0x84,0x85,
0x82,0x81,0x81,0x84,0x83,0x83,0x7f,0x7d,0x7b,0x7a,0x76,0x79,0x79,0x76,0x77,
0x7b,0x7e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7c,0x81,0x83,0x83,0x82,0x82,0x81,0x84,
0x85,0x83,0x83,0x83,0x83,0x81,0x82,0x83,0x82,0x83,0x80,0x7e,0x7b,0x7d,0x7f,
0x7c,0x7b,0x7e,0x7e,0x81,0x81,0x7e,0x81,0x82,0x83,0x83,0x80,0x7d,0x7b,0x7b,
0x7b,0x7e,0x7f,0x7e,0x7f,0x7f,0x82,0x87,0x8b,0x8d,0x8f,0x97,0x9b,0x85,0x68,
0x75,0x82,0x7c,0x79,0x73,0x73,0x78,0x7b,0x78,0x79,0x78,0x7d,0x81,0x82,0x85,
0x7f,0x7d,0x7a,0x79,0x71,0x79,0x7d,0x75,0x81,0x9c,0xa7,0x93,0x7a,0x83,0x8e,
0x87,0x75,0x5e,0x63,0x7c,0x8b,0x8f,0x7e,0x69,0x7b,0x9a,0x96,0x8b,0x85,0x73,
0x6e,0x6f,0x69,0x61,0x73,0x6a,0x6d,0x77,0x75,0x8e,0x72,0x66,0xa2,0x8f,0xdd,
0x44,0x58,0xac,0x7d,0x5e,0x54,0x78,0x74,0x66,0x95,0x65,0x89,0x9e,0xa1,0x96,
0xa7,0x78,0x79,0xa6,0x74,0x54,0x83,0x7f,0x85,0x90,0xac,0x9e,0xb3,0xa3,0xbb,
0xad,0xa6,0x99,0x82,0x86,0x9a,0x96,0x78,0x47,0x89,0x9e,0xaa,0x9e,0x8f,0x7d,
0x72,0x65,0x3f,0x51,0x51,0x34,0x47,0x2e,0x29,0x31,0x2c,0x30,0x20,0x2b,0x3e,
0x57,0x57,0x62,0x6b,0x7d,0x7b,0x8b,0x74,0x85,0x8b,0x7f,0xab,0x8f,0x8d,0x7f,
0x8b,0x9e,0x8b,0xa7,0x98,0xa3,0x9a,0xa5,0x97,0x82,0x84,0x98,0x9f,0xa6,0xb0,
0xb3,0xad,0xb8,0xb5,0xb6,0xc4,0xbe,0xc6,0xac,0xad,0xa3,0xcd,0x78,0x7d,0xd7,
0xc8,0xe6,0xc5,0xcd,0xc5,0xe3,0xe7,0xe1,0xa5,0xa2,0xae,0xab,0x9c,0xb8,0x95,
0xa6,0x77,0x70,0x7d,0x43,0x76,0x67,0x50,0x34,0x37,0x47,0x1e,0x06,0x0a,0x22,
0x11,0x02,0x03,0x00,0x00,0x00,0x07,0x1d,0x06,0x02,0x01,0x04,0x01,0x01,0x0a,
0x0b,0x13,0x2c,0x39,0x3d,0x5e,0x66,0x70,0x80,0x83,0x9f,0xae,0xb5,0xb7,0xc2,
0xd1,0xcb,0xc9,0xcc,0xc9,0xbf,0xc2,0xad,0xb9,0xa3,0xa1,0x94,0xaa,0xb8,0xac,
0xc8,0xb5,0xdf,0xcd,0xd7,0xd5,0xd0,0xd6,0xc1,0xbb,0xc1,0xc5,0xcf,0xcc,0xbc,
0xcb,0xb5,0xb7,0xb1,0xac,0xaf,0x5d,0x8c,0x8c,0xcb,0xb2,0x58,0x84,0x91,0x89,
0x8a,0x82,0x6a,0x51,0x91,0x8e,0xc1,0x94,0x52,0x6f,0xa7,0xb8,0xc5,0xaf,0x83,
0xb7,0x7c,0x79,0x6d,0x8a,0x96,0x89,0x8f,0x97,0x70,0x7c,0x68,0x81,0x68,0x66,
0x4e,0x30,0x4b,0x67,0x49,0x5e,0x2e,0x50,0x2a,0x35,0x1b,0x2e,0x25,0x0f,0x0a,
0x14,0x0c,0x23,0x14,0x13,0x29,0x0d,0x2a,0x3a,0x20,0x3e,0x3c,0x44,0x49,0x5e,
0x49,0x59,0x63,0x6d,0xa8,0x6a,0xae,0xb4,0x50,0x51,0x52,0x86,0xce,0xa9,0x78,
0x74,0x9c,0xc3,0x9a,0x80,0x72,0xdf,0xf4,0xad,0x8b,0x80,0xb9,0x9c,0xc5,0xb4,
0xc4,0xfc,0xe7,0xb4,0x7c,0x88,0xa9,0xc6,0xda,0xc5,0xa7,0x95,0xc1,0x93,0x9d,
0xa5,0x71,0x89,0x99,0x81,0x90,0x67,0x4b,0x85,0x9c,0xb6,0x98,0x92,0x5d,0x79,
0x62,0x97,0x94,0x6c,0xb5,0xe3,0xc0,0xa7,0x96,0x62,0x70,0xa7,0xf0,0xce,0x98,
0x80,0xa1,0xc8,0xd1,0xa4,0x8f,0x88,0x9d,0xc1,0x87,0x77,0x70,0x70,0x5c,0x9e,
0x92,0xae,0x57,0x36,0x46,0x74,0x2d,0x5e,0x7a,0x57,0x23,0x26,0x53,0x50,0x88,
0x3d,0x5b,0x46,0x5b,0x4f,0x61,0x77,0x49,0x4c,0x78,0x73,0x68,0x5a,0x61,0x60,
0x64,0x6f,0x61,0x8b,0x8d,0x3e,0x36,0x64,0x80,0x60,0x6b,0x60,0x6f,0x8d,0x6e,
0x8b,0x86,0x57,0x7c,0x83,0x94,0xb7,0x98,0x97,0x65,0x7f,0xb9,0xcb,0x9c,0x6c,
0x6d,0x62,0x8a,0xb5,0x8e,0x6c,0x7d,0x96,0x9d,0x73,0x64,0xa8,0x8e,0x76,0x58,
0x61,0x3e,0x56,0x9b,0x94,0x6c,0x41,0x5b,0x5d,0x5c,0x78,0x75,0x83,0x84,0x66,
0x46,0x9b,0xa0,0x73,0x93,0x61,0x6d,0x83,0xa7,0x9c,0x98,0x7b,0x63,0x84,0x8b,
0xa6,0xb9,0x86,0x7c,0x6c,0x8b,0x85,0x86,0x91,0xb7,0x96,0x7b,0x5a,0x8a,0x83,
0x71,0x8d,0x9c,0xb2,0x97,0x82,0x78,0x6f,0x77,0xaf,0xa4,0xa7,0x90,0x68,0x8b,
0xa9,0x87,0x9c,0x8b,0xa7,0xa4,0x9b,0xae,0x94,0x8e,0xa6,0xa6,0xa9,0xa5,0x84,
0x6d,0x89,0x7d,0xb4,0xad,0x77,0x85,0x7f,0x86,0x93,0xaa,0xa9,0x6e,0x80,0x9c,
0x99,0x84,0x9c,0x82,0x94,0x8d,0x80,0x87,0x93,0x80,0x8a,0x97,0x93,0x97,0x92,
0x77,0x7b,0x9d,0xa3,0xa3,0x8b,0x7a,0x55,0x4d,0x6e,0x67,0x72,0x76,0x72,0x48,
0x38,0x57,0x78,0x59,0x51,0x40,0x55,0x54,0x64,0x5d,0x5b,0x53,0x61,0x4a,0x59,
0x6f,0x62,0x5a,0x52,0x66,0x62,0x5c,0x54,0x5c,0x61,0x68,0x5d,0x77,0x84,0x7a,
0x57,0x55,0x5a,0x60,0x62,0x74,0x69,0x4e,0x6b,0x64,0x56,0x57,0x58,0x67,0x6a,
0x73,0x81,0x75,0x74,0x60,0x7e,0x93,0x85,0x7f,0x8e,0x92,0x7b,0x81,0x92,0x87,
0x9f,0xac,0x9a,0x87,0x8f,0x94,0x90,0x86,0x8c,0x87,0x9a,0xa2,0x99,0x89,0x7d,
0x8e,0x98,0x9e,0x99,0x95,0x94,0x8f,0x9c,0x98,0x95,0x96,0xa5,0x9d,0x9a,0x98,
0x9c,0xab,0xa5,0x96,0x9e,0xa7,0xa4,0x9f,0xa6,0xb4,0xb2,0xa2,0xa4,0x9d,0xa0,
0x94,0x91,0x98,0x8c,0x94,0x97,0x8f,0x7e,0x80,0x85,0x85,0x7e,0x8a,0x8f,0x8f,
0x88,0x87,0x81,0x84,0x88,0x82,0x7c,0x7b,0x7e,0x81,0x7c,0x78,0x7f,0x80,0x78,
0x80,0x7d,0x82,0x81,0x85,0x80,0x85,0x83,0x7a,0x6f,0x75,0x6e,0x64,0x61,0x63,
0x66,0x65,0x64,0x5f,0x5f,0x65,0x65,0x54,0x56,0x72,0x77,0x72,0x63,0x62,0x69,
0x74,0x80,0x75,0x66,0x62,0x66,0x80,0x78,0x76,0x7d,0x77,0x74,0x73,0x76,0x77,
0x78,0x7b,0x71,0x6e,0x74,0x78,0x7a,0x71,0x73,0x71,0x6a,0x68,0x6c,0x71,0x71,
0x74,0x75,0x70,0x77,0x78,0x7d,0x80,0x83,0x85,0x8a,0x8b,0x88,0x86,0x87,0x89,
0x90,0x93,0x93,0x90,0x8b,0x87,0x94,0x8d,0x83,0x86,0x8b,0x86,0x87,0x89,0x7f,
0x7d,0x83,0x89,0x82,0x7d,0x7b,0x80,0x82,0x84,0x8c,0x8c,0x85,0x7f,0x80,0x86,
0x86,0x7e,0x80,0x81,0x86,0x87,0x85,0x8d,0x8f,0x8a,0x89,0x87,0x8a,0x91,0x97,
0x91,0x8a,0x82,0x82,0x8b,0x88,0x7a,0x75,0x7e,0x7d,0x79,0x7a,0x76,0x73,0x77,
0x77,0x72,0x75,0x6e,0x73,0x7f,0x86,0x84,0x83,0x81,0x82,0x82,0x80,0x82,0x7f,
0x83,0x85,0x90,0x8a,0x8b,0x87,0x88,0x88,0x8a,0x84,0x81,0x82,0x89,0x89,0x89,
0x7c,0x7d,0x78,0x7b,0x7b,0x7b,0x78,0x79,0x7e,0x78,0x76,0x77,0x7e,0x7b,0x78,
0x75,0x80,0x83,0x81,0x7d,0x7e,0x85,0x8c,0x8d,0x89,0x89,0x8a,0x87,0x8b,0x85,
0x81,0x87,0x8c,0x81,0x79,0x7d,0x80,0x82,0x7b,0x75,0x78,0x7f,0x7f,0x78,0x73,
0x6e,0x72,0x7b,0x7d,0x7c,0x78,0x78,0x80,0x7e,0x78,0x74,0x7d,0x80,0x7e,0x79,
0x7e,0x78,0x79,0x7d,0x82,0x81,0x7f,0x88,0x87,0x83,0x80,0x81,0x86,0x89,0x81,
0x80,0x7e,0x7f,0x81,0x80,0x84,0x82,0x81,0x7b,0x77,0x72,0x74,0x76,0x73,0x76,
0x89,0x85,0x83,0x7f,0x74,0x77,0x81,0x8d,0x7f,0x75,0x74,0x86,0x8d,0x8b,0x7e,
0x7c,0x7f,0x82,0x8c,0x8b,0x83,0x84,0x86,0x85,0x83,0x85,0x88,0x82,0x87,0x83,
0x81,0x7f,0x7f,0x88,0x7f,0x73,0x73,0x79,0x77,0x7e,0x7d,0x7d,0x73,0x7a,0x7b,
0x7d,0x7d,0x7c,0x84,0x82,0x7b,0x81,0x81,0x7e,0x7f,0x7d,0x80,0x7b,0x80,0x82,
0x7d,0x80,0x87,0x81,0x7a,0x78,0x83,0x83,0x83,0x80,0x7f,0x7d,0x7e,0x85,0x85,
0x79,0x75,0x78,0x7d,0x79,0x78,0x81,0x7f,0x7f,0x7d,0x7c,0x79,0x76,0x84,0x89,
0x7a,0x74,0x81,0x83,0x7b,0x78,0x80,0x8a,0x8c,0x85,0x79,0x7b,0x80,0x89,0x92,
0x8b,0x7b,0x7d,0x88,0x87,0x86,0x80,0x7b,0x83,0x85,0x86,0x89,0x89,0x79,0x7e,
0x82,0x7b,0x80,0x85,0x84,0x83,0x7f,0x76,0x7a,0x7d,0x85,0x91,0x91,0x80,0x79,
0x7b,0x7c,0x7c,0x82,0x8c,0x87,0x88,0x80,0x7d,0x84,0x7e,0x77,0x79,0x83,0x86,
0x84,0x81,0x7a,0x6f,0x76,0x80,0x80,0x7c,0x8e,0x89,0x76,0x75,0x76,0x77,0x80,
0x86,0x84,0x83,0x7c,0x7c,0x80,0x7d,0x7d,0x86,0x87,0x7b,0x75,0x80,0x7f,0x81,
0x7f,0x79,0x76,0x80,0x80,0x77,0x71,0x7e,0x9b,0xb2,0x6d,0x50,0x9f,0x71,0x55,
0x78,0x96,0x7c,0x84,0x89,0x80,0x8b,0x88,0x7f,0x7f,0x72,0x7c,0x88,0x84,0x8c,
0x7d,0x6b,0x70,0x86,0x8c,0x8a,0xb7,0x9b,0x8e,0xb2,0x89,0x33,0x72,0x91,0x59,
0x74,0xa8,0x70,0x5e,0x81,0x83,0x9f,0xa2,0x4f,0x48,0x8f,0x66,0x52,0x83,0x89,
0x79,0x7f,0x76,0x69,0x7e,0x85,0x87,0x98,0x8c,0x85,0xa6,0xa5,0x54,0x56,0x8c,
0x6d,0x7a,0x91,0x82,0xa8,0x97,0x74,0x94,0x8a,0x3a,0x67,0x89,0x51,0x6d,0x99,
0x72,0x70,0x81,0x74,0x70,0x81,0x75,0x6f,0x8f,0x9e,0x87,0x92,0xc5,0x8f,0x52,
0x8c,0x84,0x5f,0x90,0x92,0x9e,0xaa,0x82,0x92,0xab,0x5c,0x4d,0x90,0x77,0x60,
0x94,0x89,0x6d,0x7d,0x7c,0x74,0x74,0x6f,0x65,0x76,0x94,0x95,0x7e,0xab,0xbb,
0x6f,0x6e,0x97,0x6b,0x6e,0x89,0x91,0x9f,0x8b,0x75,0xa7,0x9d,0x56,0x64,0x8a,
0x65,0x72,0x87,0x79,0x7a,0x77,0x67,0x6c,0x6f,0x64,0x69,0x84,0x99,0x74,0x76,
0xb5,0x9e,0x64,0x79,0x7f,0x6e,0x73,0x72,0x7f,0x97,0x7b,0x86,0xb6,0x89,0x52,
0x77,0x7f,0x65,0x76,0x7e,0x7d,0x87,0x7c,0x7a,0x7c,0x74,0x6c,0x74,0x8e,0x8f,
0x7c,0x97,0xaa,0x87,0x71,0x7f,0x80,0x74,0x72,0x77,0x8c,0x8f,0x78,0x8d,0xa7,
0x81,0x5f,0x7b,0x78,0x67,0x72,0x7e,0x81,0x82,0x7e,0x81,0x81,0x7c,0x76,0x7e,
0x8f,0x8e,0x8c,0x9e,0xa6,0x8f,0x82,0x86,0x86,0x7e,0x78,0x7a,0x8b,0x85,0x7e,
0x93,0x9d,0x7e,0x6e,0x77,0x7b,0x76,0x75,0x7a,0x7a,0x77,0x74,0x76,0x77,0x70,
0x71,0x7d,0x7d,0x7e,0x84,0x8f,0x98,0x86,0x7f,0x82,0x86,0x80,0x77,0x81,0x82,
0x81,0x82,0x91,0x92,0x85,0x78,0x7b,0x78,0x75,0x75,0x76,0x79,0x6e,0x73,0x79,
0x72,0x71,0x76,0x7b,0x7d,0x7b,0x82,0x8f,0x90,0x81,0x80,0x86,0x82,0x77,0x73,
0x78,0x7e,0x83,0x86,0x8b,0x92,0x87,0x7e,0x7a,0x76,0x79,0x7c,0x78,0x79,0x7e,
0x86,0x81,0x7e,0x78,0x77,0x7a,0x7d,0x84,0x85,0x8a,0x8f,0x85,0x86,0x85,0x7a,
0x7b,0x83,0x82,0x7d,0x82,0x88,0x90,0x8a,0x86,0x89,0x8a,0x80,0x7b,0x7c,0x7c,
0x7a,0x77,0x7d,0x74,0x74,0x78,0x79,0x7c,0x79,0x7c,0x82,0x8b,0x8f,0x8a,0x87,
0x84,0x83,0x7f,0x7b,0x7a,0x83,0x87,0x84,0x87,0x88,0x87,0x89,0x83,0x7e,0x79,
0x79,0x78,0x7f,0x79,0x75,0x72,0x72,0x76,0x74,0x73,0x78,0x7b,0x82,0x84,0x82,
0x82,0x7f,0x78,0x7c,0x7c,0x7e,0x7d,0x7d,0x81,0x86,0x87,0x88,0x8a,0x85,0x87,
0x85,0x80,0x7f,0x7d,0x81,0x7a,0x78,0x7c,0x77,0x79,0x78,0x7a,0x7b,0x7f,0x82,
0x87,0x86,0x88,0x88,0x80,0x7c,0x7e,0x81,0x80,0x7e,0x82,0x87,0x87,0x83,0x86,
0x85,0x83,0x84,0x85,0x7b,0x7a,0x7e,0x80,0x7c,0x79,0x79,0x73,0x78,0x7b,0x81,
0x82,0x82,0x83,0x8c,0x8c,0x8c,0x88,0x83,0x81,0x82,0x80,0x81,0x84,0x80,0x81,
0x81,0x85,0x8a,0x83,0x7e,0x79,0x7a,0x75,0x78,0x76,0x70,0x6d,0x6d,0x75,0x7e,
0x76,0x76,0x7b,0x82,0x87,0x88,0x8c,0x89,0x88,0x82,0x81,0x7e,0x83,0x83,0x82,
0x80,0x85,0x87,0x85,0x83,0x83,0x83,0x84,0x7b,0x7d,0x81,0x7b,0x75,0x79,0x7b,
0x7c,0x7f,0x7b,0x7c,0x7d,0x7b,0x7d,0x85,0x81,0x7d,0x7f,0x81,0x82,0x7c,0x80,
0x84,0x86,0x83,0x85,0x89,0x85,0x82,0x83,0x88,0x86,0x7d,0x7e,0x79,0x7b,0x7c,
0x78,0x75,0x75,0x79,0x7a,0x7b,0x7f,0x81,0x8a,0x84,0x85,0x88,0x86,0x85,0x84,
0x86,0x80,0x7c,0x83,0x83,0x83,0x7e,0x80,0x7f,0x7e,0x7d,0x82,0x81,0x7d,0x78,
0x77,0x7a,0x7d,0x7b,0x76,0x76,0x7e,0x81,0x7c,0x7b,0x85,0x8a,0x83,0x84,0x81,
0x7f,0x7f,0x7c,0x79,0x7b,0x7a,0x7d,0x80,0x7c,0x82,0x80,0x83,0x85,0x85,0x82,
0x7f,0x7b,0x78,0x79,0x76,0x7c,0x7e,0x7b,0x75,0x7c,0x80,0x7f,0x80,0x87,0x85,
0x83,0x84,0x83,0x89,0x87,0x83,0x85,0x87,0x84,0x85,0x89,0x8a,0x8a,0x87,0x7d,
0x7c,0x7f,0x7f,0x7c,0x76,0x77,0x7e,0x7a,0x79,0x7a,0x7b,0x7d,0x80,0x84,0x84,
0x7e,0x81,0x80,0x80,0x83,0x80,0x82,0x82,0x7f,0x7f,0x7e,0x81,0x7d,0x7c,0x80,
0x82,0x84,0x83,0x80,0x7b,0x81,0x7e,0x7b,0x83,0x82,0x79,0x77,0x78,0x7b,0x7d,
0x7e,0x81,0x7f,0x80,0x86,0x82,0x80,0x83,0x84,0x86,0x83,0x80,0x80,0x82,0x85,
0x85,0x80,0x7e,0x7d,0x83,0x81,0x7d,0x78,0x7e,0x7c,0x74,0x74,0x78,0x7c,0x7f,
0x80,0x7f,0x7b,0x7e,0x85,0x86,0x87,0x89,0x84,0x7d,0x79,0x7c,0x7f,0x81,0x81,
0x7c,0x7b,0x7e,0x86,0x86,0x81,0x7e,0x82,0x86,0x83,0x7d,0x7d,0x7d,0x82,0x83,
0x7f,0x7f,0x7d,0x7c,0x7f,0x7f,0x7f,0x7c,0x7b,0x7f,0x7f,0x7d,0x7c,0x7f,0x7e,
0x7f,0x80,0x84,0x8a,0x88,0x88,0x87,0x87,0x84,0x82,0x7e,0x7e,0x7b,0x7d,0x7c,
0x7b,0x7d,0x7d,0x77,0x78,0x79,0x7e,0x80,0x7d,0x7c,0x7e,0x80,0x82,0x80,0x7c,
0x7e,0x7d,0x7e,0x80,0x7f,0x81,0x83,0x7d,0x7b,0x7c,0x80,0x84,0x84,0x81,0x7e,
0x82,0x85,0x84,0x84,0x88,0x89,0x84,0x82,0x80,0x7f,0x7e,0x7d,0x81,0x83,0x80,
0x7f,0x7c,0x7b,0x7c,0x7c,0x7b,0x7a,0x7e,0x82,0x87,0x83,0x82,0x82,0x81,0x84,
0x84,0x83,0x81,0x82,0x81,0x7b,0x78,0x79,0x7d,0x7e,0x7e,0x7d,0x78,0x7b,0x7d,
0x7b,0x7c,0x81,0x7f,0x83,0x80,0x80,0x82,0x82,0x8b,0x8c,0x8e,0x83,0x76,0x7a,
0x73,0x71,0x77,0x71,0x71,0x81,0x86,0x77,0x7c,0x8c,0x99,0xa5,0xaa,0x9b,0x8e,
0x85,0x7c,0x76,0x67,0x6b,0x73,0x6c,0x5e,0x54,0x5b,0x69,0x77,0x7e,0x8e,0x9c,
0x85,0x7e,0x8f,0x96,0x93,0xa1,0x9b,0x91,0x89,0x84,0x79,0x6a,0x67,0x6f,0x71,
0x6d,0x62,0x6e,0x79,0x7a,0x75,0x78,0x80,0x8b,0x91,0x98,0x97,0x8c,0x88,0x86,
0x91,0x95,0x94,0x8f,0x8b,0x86,0x7d,0x7a,0x7a,0x76,0x6d,0x69,0x6b,0x69,0x66,
0x6c,0x77,0x7a,0x77,0x81,0x88,0x8d,0x96,0x99,0x9a,0x98,0x92,0x8f,0x8b,0x85,
0x7e,0x75,0x71,0x6e,0x65,0x61,0x64,0x69,0x67,0x6d,0x78,0x83,0x8a,0x8e,0x95,
0x97,0xa1,0xa0,0xa2,0x99,0x8e,0x85,0x7c,0x75,0x6d,0x6a,0x65,0x64,0x65,0x6b,
0x71,0x71,0x75,0x7d,0x83,0x8d,0x90,0x94,0x96,0x96,0x8e,0x88,0x88,0x89,0x8a,
0x7f,0x7a,0x73,0x6b,0x72,0x73,0x73,0x74,0x75,0x7c,0x7f,0x7e,0x81,0x83,0x84,
0x81,0x86,0x88,0x89,0x88,0x87,0x84,0x80,0x7a,0x7d,0x83,0x83,0x7f,0x7d,0x78,
0x77,0x76,0x76,0x75,0x76,0x7a,0x80,0x84,0x85,0x82,0x85,0x86,0x8e,0x95,0x95,
0x98,0x96,0x8d,0x84,0x7d,0x7f,0x7a,0x75,0x70,0x6d,0x68,0x68,0x6b,0x70,0x72,
0x72,0x79,0x83,0x87,0x8f,0x91,0x8f,0x8c,0x8e,0x8a,0x8b,0x8c,0x85,0x7d,0x75,
0x6f,0x6d,0x6d,0x70,0x6a,0x6b,0x76,0x7d,0x82,0x88,0x88,0x89,0x8d,0x90,0x93,
0x91,0x88,0x83,0x82,0x81,0x7e,0x7b,0x79,0x76,0x7a,0x7d,0x7e,0x7e,0x79,0x77,
0x77,0x7c,0x7f,0x82,0x83,0x81,0x82,0x83,0x87,0x89,0x88,0x88,0x87,0x85,0x83,
0x80,0x80,0x7f,0x81,0x7d,0x7c,0x79,0x7c,0x7c,0x77,0x74,0x71,0x72,0x7a,0x7b,
0x7a,0x7d,0x81,0x87,0x8a,0x8c,0x8f,0x8f,0x8e,0x8b,0x84,0x7d,0x7d,0x7b,0x76,
0x74,0x75,0x77,0x76,0x78,0x7c,0x7f,0x84,0x85,0x85,0x85,0x88,0x8a,0x8f,0x8e,
0x89,0x85,0x82,0x80,0x7d,0x78,0x79,0x73,0x6c,0x6b,0x6d,0x71,0x73,0x76,0x7c,
0x84,0x87,0x88,0x87,0x87,0x8a,0x88,0x88,0x86,0x84,0x85,0x80,0x7c,0x7c,0x7b,
0x7c,0x7b,0x7e,0x80,0x7d,0x76,0x76,0x7a,0x7c,0x81,0x83,0x83,0x85,0x83,0x84,
0x87,0x87,0x86,0x83,0x82,0x82,0x84,0x81,0x80,0x7d,0x7e,0x7b,0x78,0x78,0x78,
0x75,0x76,0x77,0x79,0x7f,0x87,0x88,0x8b,0x8c,0x8a,0x88,0x8a,0x89,0x87,0x83,
0x84,0x80,0x7f,0x7c,0x7a,0x79,0x76,0x71,0x72,0x72,0x72,0x75,0x79,0x7d,0x84,
0x8a,0x8a,0x8d,0x8e,0x8e,0x8a,0x86,0x83,0x7e,0x79,0x7b,0x77,0x74,0x74,0x76,
0x75,0x7b,0x7f,0x7e,0x80,0x81,0x82,0x83,0x86,0x87,0x87,0x83,0x87,0x8b,0x85,
0x7f,0x80,0x7d,0x7a,0x79,0x77,0x73,0x72,0x76,0x7a,0x7e,0x82,0x84,0x81,0x82,
0x84,0x87,0x87,0x85,0x82,0x84,0x84,0x85,0x87,0x85,0x81,0x81,0x81,0x7f,0x80,
0x7d,0x7a,0x78,0x7a,0x79,0x7a,0x7a,0x7a,0x7c,0x81,0x84,0x83,0x88,0x85,0x84,
0x83,0x83,0x81,0x80,0x80,0x7e,0x7b,0x7c,0x7e,0x7e,0x7c,0x7b,0x7b,0x7b,0x79,
0x7b,0x7d,0x7e,0x7f,0x85,0x88,0x89,0x89,0x8b,0x8a,0x86,0x85,0x84,0x80,0x7e,
0x79,0x77,0x76,0x75,0x76,0x74,0x75,0x7a,0x7c,0x7d,0x83,0x82,0x82,0x83,0x83,
0x84,0x84,0x86,0x87,0x87,0x86,0x86,0x83,0x7e,0x7b,0x78,0x77,0x7a,0x7d,0x7b,
0x7d,0x7d,0x7c,0x7d,0x7e,0x7d,0x7d,0x7e,0x7f,0x80,0x7e,0x7f,0x80,0x80,0x85,
0x85,0x82,0x81,0x7f,0x80,0x83,0x82,0x80,0x80,0x7e,0x7f,0x81,0x80,0x80,0x86,
0x85,0x82,0x83,0x84,0x84,0x82,0x82,0x81,0x80,0x7f,0x82,0x81,0x7f,0x7e,0x7d,
0x79,0x79,0x79,0x7a,0x7b,0x7a,0x7b,0x7e,0x7e,0x7f,0x80,0x81,0x84,0x85,0x83,
0x83,0x82,0x81,0x80,0x80,0x81,0x7d,0x7b,0x7d,0x7f,0x7d,0x7c,0x7d,0x7f,0x7e,
0x7e,0x7f,0x81,0x83,0x83,0x86,0x85,0x81,0x82,0x83,0x84,0x7f,0x7b,0x7e,0x79,
0x75,0x7a,0x7a,0x7a,0x7f,0x7f,0x7e,0x7b,0x7b,0x7d,0x80,0x7f,0x7f,0x81,0x83,
0x85,0x85,0x86,0x87,0x84,0x84,0x85,0x82,0x82,0x83,0x81,0x80,0x7d,0x79,0x7c,
0x7e,0x7a,0x79,0x7b,0x7c,0x7c,0x7d,0x7e,0x81,0x80,0x7f,0x82,0x80,0x7e,0x81,
0x83,0x81,0x81,0x81,0x80,0x7e,0x7f,0x7c,0x79,0x7b,0x7c,0x7e,0x80,0x81,0x7f,
0x81,0x84,0x82,0x82,0x84,0x83,0x85,0x87,0x84,0x82,0x82,0x82,0x7d,0x7d,0x7a,
0x7a,0x7d,0x7c,0x7a,0x7e,0x7f,0x7e,0x7e,0x7f,0x7f,0x80,0x81,0x84,0x86,0x86,
0x84,0x83,0x83,0x81,0x7e,0x7f,0x7c,0x7c,0x7b,0x7b,0x7a,0x7d,0x7d,0x7d,0x7d,
0x7d,0x7c,0x7f,0x80,0x80,0x7e,0x80,0x81,0x82,0x82,0x81,0x80,0x7f,0x7e,0x7e,
0x7e,0x7f,0x82,0x81,0x7d,0x7c,0x7e,0x7e,0x7e,0x80,0x81,0x83,0x84,0x84,0x85,
0x89,0x88,0x83,0x82,0x82,0x7f,0x7e,0x7e,0x7e,0x7d,0x7c,0x7b,0x7b,0x79,0x79,
0x7b,0x7e,0x7e,0x7c,0x7f,0x82,0x81,0x7f,0x81,0x81,0x81,0x83,0x84,0x81,0x7f,
0x80,0x7f,0x7e,0x7f,0x7d,0x7a,0x7c,0x7e,0x7a,0x7b,0x7e,0x7e,0x81,0x85,0x85,
0x83,0x82,0x83,0x83,0x83,0x83,0x82,0x7f,0x80,0x7f,0x7b,0x7a,0x7e,0x7f,0x7f,
0x7f,0x7d,0x7d,0x80,0x82,0x80,0x81,0x81,0x81,0x80,0x80,0x81,0x82,0x7f,0x81,
0x81,0x7f,0x7f,0x7f,0x7d,0x7b,0x7c,0x7c,0x7b,0x7d,0x7e,0x81,0x82,0x80,0x81,
0x81,0x7e,0x7f,0x81,0x80,0x81,0x84,0x83,0x7e,0x81,0x80,0x7f,0x82,0x80,0x7d,
0x7e,0x7b,0x7a,0x7d,0x7e,0x7d,0x7e,0x80,0x82,0x83,0x82,0x82,0x84,0x84,0x81,
0x82,0x82,0x81,0x7f,0x7e,0x7f,0x80,0x81,0x7f,0x7e,0x7e,0x80,0x7b,0x7d,0x7d,
0x78,0x7b,0x80,0x7e,0x80,0x82,0x82,0x84,0x84,0x80,0x80,0x82,0x82,0x83,0x80,
0x7e,0x7e,0x80,0x7d,0x7c,0x7b,0x7c,0x7f,0x81,0x81,0x81,0x80,0x7d,0x7e,0x7f,
0x7e,0x7f,0x81,0x82,0x81,0x7f,0x7e,0x7f,0x7f,0x7c,0x7b,0x7f,0x7e,0x7a,0x7c,
0x7f,0x7e,0x7d,0x81,0x80,0x7f,0x81,0x82,0x83,0x84,0x82,0x83,0x84,0x82,0x81,
0x81,0x80,0x7f,0x7f,0x80,0x80,0x7e,0x7f,0x7d,0x7d,0x7b,0x7c,0x7f,0x7f,0x7e,
0x81,0x83,0x82,0x82,0x84,0x83,0x80,0x80,0x81,0x80,0x7f,0x7f,0x7e,0x80,0x80,
0x80,0x7f,0x80,0x7f,0x7e,0x7f,0x80,0x7f,0x7f,0x80,0x7f,0x7f,0x7f,0x81,0x81,
0x7e,0x7e,0x80,0x81,0x7f,0x7e,0x7e,0x7d,0x7d,0x7d,0x7b,0x7d,0x7c,0x7d,0x81,
0x82,0x82,0x82,0x82,0x82,0x80,0x80,0x80,0x81,0x81,0x7e,0x7f,0x84,0x85,0x7e,
0x7e,0x81,0x7e,0x80,0x80,0x7c,0x7e,0x7f,0x7f,0x83,0x80,0x79,0x7c,0x81,0x81,
0x7a,0x7f,0x82,0x81,0x7d,0x7d,0x80,0x7d,0x7c,0x7d,0x7b,0x7a,0x7d,0x82,0x84,
0x7e,0x7a,0x7e,0x80,0x7f,0x80,0x80,0x83,0x88,0x85,0x84,0x84,0x82,0x81,0x81,
0x82,0x80,0x7f,0x81,0x83,0x7f,0x7b,0x7d,0x82,0x7e,0x6d,0x6f,0x74,0x81,0x9b,
0x90,0x8d,0x8d,0x8c,0x8f,0x85,0x67,0x6f,0x77,0x6c,0x6b,0x72,0x7e,0x8c,0x88,
0x8a,0x8a,0x8b,0x8b,0x88,0x76,0x71,0x73,0x70,0x6f,0x74,0x79,0x8d,0x91,0x88,
0x90,0x96,0x87,0x86,0x79,0x68,0x70,0x6e,0x67,0x70,0x6e,0x76,0x96,0xbb,0xa6,
0x5a,0x99,0x98,0x50,0x4a,0x8f,0x7c,0x6f,0x81,0x82,0x7f,0x83,0x7e,0x84,0x84,
0x78,0x7c,0x71,0x7a,0x8f,0x8d,0x9c,0xbd,0x90,0x81,0xb8,0x84,0x3f,0x93,0x8f,
0x57,0x8d,0x9d,0x6c,0x78,0x81,0x75,0x80,0x77,0x6f,0x84,0x83,0x76,0x84,0x7a,
0x73,0x83,0x99,0xac,0xc6,0x93,0x43,0x86,0xb1,0x50,0x56,0x9c,0x72,0x5e,0x95,
0x87,0x70,0x7f,0x8a,0x8a,0x8f,0x74,0x72,0x71,0x7c,0x89,0x7e,0x93,0xb9,0x7e,
0x79,0xa8,0x60,0x35,0x7e,0x7a,0x89,0x71,0x4e,0x7a,0x6c,0x4f,0x81,0x94,0x76,
0x80,0x83,0x73,0x72,0x6b,0x5d,0x64,0x69,0x65,0x6d,0x95,0x98,0x90,0xae,0x93,
0x48,0x84,0x95,0x7a,0xb3,0x88,0x4a,0x86,0x7f,0x5f,0x8b,0x94,0x85,0x95,0x8e,
0x85,0x8a,0x74,0x6b,0x75,0x6c,0x6b,0x7d,0x8a,0x73,0x67,0x8c,0x6a,0x2f,0x6f,
0x67,0x51,0xa2,0x89,0x4c,0x7b,0x80,0x5f,0x73,0x74,0x6e,0x7f,0x7d,0x78,0x7c,
0x75,0x7c,0x83,0x7e,0x84,0x9f,0xaf,0xa3,0xa1,0xd1,0xad,0x94,0xcb,0xa6,0x7c,
0xa8,0x97,0x70,0x8e,0x94,0x7f,0x89,0x8a,0x85,0x8c,0x8c,0x86,0x84,0x7e,0x71,
0x76,0x78,0x83,0xa4,0xab,0x92,0x9f,0xc1,0x9c,0x82,0x91,0x7f,0x72,0x8e,0x8d,
0x7d,0x8a,0x9c,0x93,0x91,0x95,0x9d,0xa0,0x97,0x7c,0x70,0x70,0x6c,0x67,0x69,
0x66,0x84,0x91,0x76,0x8a,0xaf,0x95,0x86,0x85,0x6b,0x6a,0x7c,0x7a,0x72,0x6b,
0x70,0x7e,0x72,0x71,0x7f,0x80,0x7e,0x73,0x5a,0x66,0x6d,0x6a,0x5c,0x53,0x5e,
0x62,0x5a,0x68,0x78,0x66,0x5d,0x64,0x62,0x60,0x69,0x72,0x72,0x70,0x72,0x71,
0x6d,0x6e,0x70,0x70,0x70,0x70,0x6f,0x70,0x75,0x75,0x72,0x77,0x82,0x81,0x81,
0x8a,0x91,0x8b,0x85,0x8a,0x95,0xa4,0xb0,0xab,0x98,0x87,0x81,0x82,0x84,0x82,
0x7f,0x7e,0x7e,0x7d,0x7f,0x7e,0x80,0x82,0x80,0x80,0x84,0x85,0x82,0x84,0x87,
0x88,0x85,0x84,0x89,0x85,0x7c,0x77,0x74,0x72,0x72,0x74,0x72,0x6f,0x6f,0x72,
0x77,0x82,0x89,0x83,0x7d,0x7b,0x76,0x74,0x76,0x75,0x73,0x73,0x77,0x79,0x79,
0x7e,0x87,0x8d,0x8c,0x8e,0x8e,0x8d,0x8b,0x88,0x83,0x82,0x7f,0x7e,0x81,0x87,
0x8d,0x92,0x92,0x91,0x92,0x93,0x90,0x8a,0x84,0x83,0x85,0x85,0x84,0x80,0x7c,
0x79,0x76,0x75,0x76,0x75,0x75,0x75,0x77,0x78,0x77,0x78,0x7b,0x7c,0x7d,0x80,
0x80,0x7f,0x80,0x7f,0x7f,0x82,0x82,0x85,0x8b,0x90,0x95,0x9a,0x9a,0x9c,0xa0,
0xa8,0xb2,0xb4,0xaa,0x9a,0x87,0x7a,0x78,0x7d,0x83,0x83,0x82,0x81,0x7e,0x7f,
0x7f,0x7e,0x7a,0x6d,0x70,0x77,0x86,0x9b,0x93,0x93,0x9c,0x9c,0x98,0x8f,0x7d,
0x7b,0x79,0x6f,0x6f,0x7a,0x84,0x96,0x92,0x8d,0x95,0x9b,0x96,0x8b,0x6f,0x69,
0x6e,0x67,0x64,0x70,0x78,0x86,0x89,0x82,0x86,0x8e,0x8a,0x89,0x81,0x7b,0x82,
0x7a,0x6c,0x69,0x64,0x69,0x75,0x6d,0x70,0x81,0x7f,0x7b,0x71,0x5d,0x65,0x6b,
0x6d,0x6e,0x6a,0x65,0x60,0x60,0x63,0x65,0x67,0x69,0x6a,0x68,0x68,0x69,0x6b,
0x6e,0x6e,0x70,0x70,0x70,0x71,0x72,0x73,0x76,0x77,0x76,0x79,0x78,0x78,0x7b,
0x7e,0x7d,0x7e,0x81,0x83,0x85,0x86,0x85,0x85,0x89,0x93,0x9e,0xa5,0x9e,0x90,
0x84,0x7b,0x77,0x7b,0x81,0x84,0x84,0x80,0x7c,0x7b,0x7b,0x7d,0x81,0x86,0x88,
0x88,0x8a,0x8a,0x87,0x85,0x86,0x88,0x88,0x87,0x83,0x7d,0x7a,0x78,0x78,0x77,
0x78,0x78,0x79,0x7a,0x7c,0x7d,0x7d,0x7b,0x76,0x75,0x78,0x7b,0x7b,0x7c,0x7c,
0x7d,0x7b,0x7b,0x7b,0x7c,0x7f,0x84,0x8d,0x93,0x95,0x92,0x8d,0x84,0x7e,0x7d,
0x7d,0x7e,0x81,0x87,0x8b,0x8f,0x91,0x90,0x90,0x93,0x93,0x91,0x8e,0x8a,0x87,
0x84,0x84,0x84,0x83,0x82,0x81,0x7e,0x7c,0x79,0x78,0x78,0x76,0x75,0x76,0x79,
0x7a,0x7c,0x7d,0x7f,0x7f,0x81,0x83,0x85,0x86,0x89,0x8b,0x8d,0x8f,0x91,0x92,
0x93,0x94,0x95,0x97,0x9d,0xa5,0xad,0xae,0xa6,0x98,0x88,0x7b,0x75,0x73,0x75,
0x79,0x7c,0x7b,0x7c,0x7a,0x78,0x72,0x67,0x72,0x7a,0x8c,0x98,0x90,0x91,0x96,
0x95,0x93,0x8a,0x81,0x81,0x7c,0x70,0x73,0x78,0x80,0x89,0x84,0x85,0x8f,0x8d,
0x86,0x7e,0x70,0x72,0x72,0x6c,0x6d,0x75,0x7a,0x85,0x81,0x7e,0x83,0x87,0x81,
0x80,0x79,0x7e,0x85,0x7e,0x72,0x72,0x6f,0x6f,0x6b,0x67,0x6c,0x78,0x76,0x77,
0x72,0x6e,0x72,0x73,0x73,0x72,0x70,0x6d,0x6a,0x66,0x65,0x66,0x66,0x67,0x69,
0x6a,0x6c,0x6d,0x6c,0x6f,0x71,0x6f,0x71,0x74,0x75,0x76,0x79,0x7a,0x7a,0x7a,
0x79,0x7a,0x7b,0x7a,0x7a,0x7b,0x7d,0x7d,0x7f,0x82,0x83,0x83,0x85,0x87,0x8c,
0x94,0x9b,0x9d,0x99,0x90,0x8a,0x7f,0x78,0x77,0x77,0x7b,0x7f,0x7e,0x80,0x82,
0x80,0x7c,0x7d,0x7f,0x7f,0x81,0x83,0x85,0x8a,0x8d,0x8e,0x8e,0x8d,0x87,0x82,
0x81,0x7d,0x7a,0x79,0x79,0x7a,0x7a,0x7d,0x7f,0x7e,0x7c,0x7a,0x76,0x72,0x74,
0x77,0x77,0x79,0x7c,0x7d,0x7d,0x80,0x82,0x7f,0x82,0x86,0x8a,0x90,0x93,0x93,
0x91,0x8a,0x81,0x7a,0x77,0x75,0x78,0x7f,0x84,0x89,0x8d,0x8f,0x91,0x92,0x93,
0x91,0x91,0x8f,0x8c,0x89,0x87,0x86,0x86,0x85,0x83,0x83,0x82,0x80,0x7f,0x7d,
0x79,0x78,0x77,0x74,0x75,0x78,0x78,0x79,0x7c,0x7d,0x7f,0x82,0x83,0x83,0x85,
0x89,0x8b,0x8f,0x91,0x93,0x95,0x95,0x93,0x95,0x99,0x9e,0xa1,0xa2,0x9e,0x94,
0x8a,0x81,0x78,0x72,0x72,0x75,0x77,0x79,0x7c,0x7e,0x79,0x6a,0x72,0x79,0x88,
0x92,0x8a,0x8b,0x8d,0x91,0x90,0x8d,0x8c,0x88,0x81,0x7e,0x7b,0x7a,0x7c,0x7c,
0x7d,0x82,0x83,0x84,0x84,0x81,0x7d,0x78,0x78,0x77,0x73,0x74,0x76,0x74,0x78,
0x77,0x76,0x77,0x7a,0x7c,0x81,0x80,0x85,0x84,0x86,0x7f,0x7c,0x74,0x6f,0x69,
0x6b,0x6a,0x6f,0x6f,0x75,0x77,0x7b,0x78,0x7d,0x7b,0x7d,0x75,0x74,0x6c,0x6e,
0x6a,0x5f,0x62,0x69,0x61,0x79,0x55,0x9b,0x7d,0xc0,0x79,0x1c,0x5e,0x92,0x5c,
0x63,0x52,0x89,0x59,0x5b,0x85,0x54,0x83,0x79,0x70,0x7d,0x9c,0x67,0x91,0xa4,
0x7d,0x8e,0xae,0xbd,0xa9,0xbf,0xc7,0xac,0xb0,0xad,0xa7,0x93,0x93,0x97,0x86,
0x8b,0x8b,0x8a,0x7e,0x88,0x80,0x7b,0x82,0x83,0x82,0x4c,0x40,0x49,0x57,0x6c,
0x77,0x44,0x4a,0x57,0x4e,0x59,0x4a,0x34,0x38,0x3f,0x35,0x34,0x39,0x3e,0x43,
0x47,0x4a,0x50,0x64,0x6e,0x69,0x71,0x76,0x6d,0x6f,0x7a,0x82,0x8b,0x95,0x9e,
0xae,0xb7,0xbc,0xc7,0xce,0xcd,0xcf,0xd1,0xd2,0xd1,0xd1,0xd2,0xd9,0xdb,0xdf,
0xde,0xe4,0xe9,0xe4,0xdd,0xda,0xd1,0xd3,0xc0,0xc0,0xc0,0xb6,0xb2,0xad,0xad,
0xa3,0x9e,0x9a,0x96,0x90,0x88,0x85,0x7f,0x78,0x6f,0x6b,0x65,0x5d,0x5a,0x58,
0x52,0x50,0x50,0x4e,0x4b,0x47,0x41,0x40,0x42,0x3e,0x3c,0x3a,0x3a,0x3b,0x3c,
0x3b,0x3b,0x3a,0x39,0x3a,0x36,0x33,0x2e,0x2f,0x32,0x32,0x36,0x3a,0x3f,0x43,
0x42,0x4b,0x56,0x61,0x67,0x69,0x6d,0x70,0x72,0x78,0x82,0x87,0x82,0x88,0x91,
0x92,0x8c,0x96,0xa0,0x9c,0x9e,0xa7,0xab,0xa7,0xac,0xaf,0xb4,0xb5,0xb6,0xb6,
0xb7,0xb7,0xbb,0xbc,0xbe,0xbf,0xc2,0xc3,0xc5,0xc5,0xc3,0xc4,0xc5,0xc3,0xc2,
0xbe,0xbc,0xb9,0xb8,0xb2,0xae,0xb0,0xb0,0xb1,0xad,0xa9,0xa8,0xa4,0xa2,0x9e,
0x98,0x94,0x92,0x8d,0x8a,0x84,0x7d,0x7a,0x79,0x74,0x70,0x69,0x68,0x66,0x63,
0x5a,0x56,0x53,0x4e,0x4c,0x4c,0x47,0x42,0x40,0x43,0x40,0x3b,0x3c,0x3f,0x3e,
0x3a,0x39,0x3a,0x3d,0x3b,0x3d,0x40,0x40,0x41,0x42,0x45,0x45,0x45,0x4a,0x48,
0x4c,0x4b,0x4a,0x49,0x4a,0x50,0x52,0x54,0x58,0x5c,0x5e,0x5e,0x62,0x68,0x68,
0x6b,0x70,0x72,0x76,0x79,0x7d,0x80,0x83,0x83,0x88,0x89,0x89,0x8e,0x90,0x93,
0x97,0x99,0x9c,0x9e,0x9e,0xa0,0xa0,0xa0,0xa3,0xa6,0xa7,0xa8,0xaa,0xb0,0xb3,
0xb0,0xb2,0xb8,0xb7,0xb5,0xb7,0xb8,0xb9,0xb9,0xba,0xb9,0xb6,0xb2,0xb0,0xae,
0xb0,0xae,0xad,0xb1,0xaf,0xa9,0xa9,0xa8,0xa7,0xa8,0xa8,0xa6,0xa7,0xa5,0xa1,
0xa0,0x9f,0x9d,0x98,0x97,0x96,0x93,0x90,0x8e,0x8a,0x89,0x87,0x86,0x83,0x7e,
0x7c,0x7c,0x77,0x75,0x75,0x75,0x70,0x70,0x6e,0x6c,0x68,0x68,0x68,0x68,0x65,
0x62,0x64,0x63,0x61,0x63,0x62,0x60,0x60,0x60,0x5e,0x5e,0x5e,0x5e,0x61,0x63,
0x62,0x61,0x63,0x64,0x62,0x65,0x62,0x65,0x66,0x68,0x6a,0x6d,0x6d,0x70,0x72,
0x72,0x75,0x76,0x74,0x73,0x73,0x74,0x76,0x75,0x77,0x7b,0x7c,0x7c,0x7f,0x7c,
0x7e,0x7f,0x7c,0x7d,0x7c,0x79,0x7a,0x7b,0x79,0x7c,0x7f,0x80,0x81,0x81,0x80,
0x7f,0x7d,0x7c,0x7f,0x7e,0x79,0x7b,0x7b,0x78,0x79,0x79,0x76,0x79,0x78,0x79,
0x7c,0x7c,0x78,0x7b,0x7c,0x79,0x79,0x79,0x7a,0x7b,0x7d,0x7d,0x7f,0x7d,0x7b,
0x7d,0x7d,0x7a,0x7a,0x7d,0x7b,0x7c,0x7b,0x7d,0x7f,0x7e,0x80,0x83,0x82,0x83,
0x82,0x83,0x84,0x84,0x84,0x84,0x86,0x83,0x84,0x88,0x89,0x88,0x8a,0x8e,0x8d,
0x8c,0x8c,0x8e,0x8e,0x8b,0x8d,0x90,0x8d,0x8e,0x92,0x92,0x93,0x95,0x96,0x96,
0x97,0x95,0x98,0x97,0x95,0x96,0x98,0x97,0x9b,0x9a,0x9a,0x9d,0x9d,0x9c,0x9c,
0x9c,0x99,0x97,0x99,0x98,0x96,0x98,0x99,0x97,0x95,0x95,0x95,0x93,0x91,0x91,
0x91,0x8d,0x8a,0x8d,0x88,0x86,0x87,0x84,0x82,0x82,0x80,0x7f,0x7e,0x7a,0x77,
0x76,0x77,0x74,0x71,0x73,0x73,0x6e,0x6c,0x6c,0x68,0x68,0x67,0x64,0x63,0x62,
0x61,0x61,0x61,0x5d,0x5c,0x5e,0x5b,0x5a,0x5c,0x5c,0x5a,0x5a,0x5a,0x5a,0x5c,
0x5c,0x5b,0x5d,0x5b,0x5b,0x60,0x5e,0x5d,0x5f,0x5f,0x5f,0x63,0x61,0x61,0x64,
0x66,0x64,0x67,0x67,0x68,0x6b,0x70,0x70,0x71,0x74,0x74,0x75,0x76,0x77,0x79,
0x7c,0x7c,0x7f,0x81,0x81,0x81,0x82,0x83,0x84,0x84,0x85,0x86,0x8a,0x8c,0x8c,
0x8f,0x93,0x93,0x95,0x97,0x98,0x99,0x98,0x97,0x97,0x98,0x97,0x97,0x98,0x9a,
0x9b,0x9d,0x9e,0x9d,0x9d,0x9f,0x9e,0x9f,0x9f,0x9d,0xa0,0xa2,0x9e,0x9e,0xa1,
0x9d,0x9d,0xa0,0x9d,0x9c,0x9c,0x9a,0x97,0x97,0x94,0x93,0x93,0x92,0x92,0x93,
0x93,0x91,0x90,0x91,0x91,0x8f,0x8f,0x8d,0x8d,0x8b,0x89,0x88,0x86,0x83,0x83,
0x82,0x81,0x81,0x80,0x7e,0x7d,0x7b,0x79,0x79,0x78,0x76,0x75,0x74,0x75,0x75,
0x75,0x77,0x75,0x74,0x75,0x72,0x70,0x72,0x6f,0x6d,0x6d,0x6b,0x69,0x6c,0x6e,
0x6c,0x6d,0x6e,0x6d,0x6c,0x6b,0x6b,0x6a,0x6a,0x69,0x6c,0x6c,0x6b,0x6d,0x6d,
0x6d,0x6e,0x6e,0x6d,0x6e,0x6e,0x6c,0x6e,0x6f,0x6f,0x6f,0x71,0x72,0x74,0x75,
0x75,0x76,0x76,0x76,0x76,0x77,0x77,0x79,0x79,0x79,0x7b,0x7c,0x7b,0x7b,0x7b,
0x7a,0x7d,0x7e,0x7c,0x7e,0x80,0x7f,0x81,0x80,0x81,0x83,0x84,0x83,0x85,0x87,
0x88,0x87,0x87,0x87,0x87,0x89,0x8c,0x8a,0x89,0x8a,0x8a,0x88,0x88,0x89,0x89,
0x8a,0x88,0x87,0x88,0x89,0x89,0x87,0x87,0x89,0x88,0x89,0x8b,0x8b,0x8a,0x8a,
0x89,0x87,0x84,0x85,0x87,0x85,0x83,0x85,0x84,0x84,0x84,0x81,0x83,0x84,0x80,
0x81,0x82,0x80,0x7f,0x80,0x7d,0x7f,0x81,0x82,0x83,0x84,0x82,0x81,0x81,0x7f,
0x7b,0x7c,0x80,0x7e,0x7e,0x81,0x81,0x81,0x80,0x7f,0x7f,0x7e,0x7e,0x7f,0x80,
0x7e,0x7f,0x7f,0x7e,0x80,0x82,0x81,0x82,0x82,0x82,0x81,0x81,0x80,0x7d,0x7e,
0x81,0x7d,0x7e,0x84,0x82,0x81,0x85,0x84,0x82,0x84,0x82,0x80,0x82,0x80,0x7f,
0x7e,0x7c,0x7d,0x80,0x7f,0x7e,0x7f,0x80,0x81,0x81,0x80,0x7f,0x81,0x81,0x7e,
0x7f,0x81,0x80,0x80,0x82,0x81,0x81,0x82,0x82,0x82,0x81,0x7e,0x7d,0x7d,0x7a,
0x79,0x7b,0x7c,0x7a,0x7d,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7d,0x7b,0x7c,0x7d,
0x7b,0x7a,0x7d,0x7d,0x7c,0x7c,0x7e,0x79,0x6a,0x70,0x77,0x87,0x94,0x86,0x88,
0x90,0x8b,0x88,0x80,0x6e,0x77,0x75,0x6a,0x6d,0x71,0x79,0x91,0x89,0x85,0x90,
0x90,0x88,0x7f,0x6c,0x71,0x76,0x6e,0x6f,0x74,0x76,0x8d,0x8c,0x85,0x90,0x96,
0x90,0x8e,0x79,0x70,0x78,0x74,0x6c,0x73,0x79,0x89,0x91,0x87,0x8f,0x9c,0x94,
0x8c,0x7e,0x6f,0x74,0x73,0x78,0x76,0x77,0x7c,0x7d,0x7f,0x82,0x7e,0x80,0x84,
0x82,0x83,0x84,0x82,0x82,0x82,0x7f,0x80,0x82,0x83,0x85,0x82,0x83,0x83,0x82,
0x86,0x88,0x88,0x89,0x86,0x86,0x8a,0x8c,0x8e,0x92,0x94,0x91,0x82,0x74,0x71,
0x6d,0x6b,0x6c,0x70,0x73,0x70,0x71,0x73,0x6c,0x6b,0x70,0x73,0x76,0x79,0x7b,
0x7f,0x89,0x8e,0x84,0x77,0x74,0x6f,0x6d,0x6e,0x6d,0x6d,0x73,0x79,0x76,0x6f,
0x67,0x67,0x68,0x6b,0x71,0x71,0x72,0x7f,0x8b,0x89,0x7b,0x73,0x75,0x79,0x77,
0x79,0x7b,0x7e,0x7f,0x7d,0x7e,0x82,0x82,0xa2,0xb7,0x69,0x67,0xab,0x7e,0x70,
0x98,0x99,0x92,0x9e,0x9a,0x95,0x9b,0x9b,0xa2,0x9e,0x9b,0x9e,0x9d,0xa4,0xa5,
0x94,0x8a,0x93,0xb4,0xc2,0xb3,0xc4,0xbf,0x85,0x98,0xbf,0x73,0x4e,0x9e,0x80,
0x59,0x94,0xb0,0x9b,0x58,0x46,0x7d,0x76,0x68,0x89,0x82,0x70,0x7d,0x73,0x6d,
0x79,0x69,0x65,0x73,0x77,0x74,0x6c,0x79,0x88,0x79,0x6f,0x9a,0x83,0x35,0x61,
0xa3,0x75,0x52,0x89,0x80,0x3e,0x52,0x7b,0x50,0x56,0x88,0x7b,0x5f,0x68,0x68,
0x89,0xa3,0x8b,0x7d,0x7c,0x7c,0x74,0x5c,0x65,0x8e,0x84,0x66,0x83,0x95,0x59,
0x67,0xa9,0x9f,0x87,0xa6,0x9d,0x53,0x43,0x73,0x60,0x53,0x6b,0x6e,0x6f,0x83,
0x75,0x70,0x7e,0x7c,0x70,0x6a,0x61,0x68,0x68,0x67,0x78,0x88,0x7f,0x93,0xb9,
0x90,0x6b,0xa1,0xa7,0x7f,0x84,0x9d,0x78,0x59,0x79,0x71,0x62,0x79,0x8b,0x98,
0x9f,0x8d,0x7b,0x7b,0x7d,0x7d,0x7c,0x7a,0x79,0x78,0x75,0x7a,0x8a,0x89,0x81,
0xa0,0xb4,0x99,0x96,0xa9,0x95,0x8f,0xb1,0xa4,0x7f,0x8d,0x97,0x8a,0x94,0x99,
0x8a,0x84,0x7f,0x77,0x74,0x71,0x6f,0x6d,0x68,0x67,0x6d,0x6e,0x6e,0x79,0x83,
0x81,0x88,0x9d,0x9f,0x8f,0x97,0x98,0x86,0x8c,0x92,0x81,0x84,0x91,0x83,0x74,
0x73,0x6f,0x71,0x7d,0x7f,0x7a,0x74,0x6d,0x6b,0x6c,0x6d,0x79,0x83,0x85,0x83,
0x7e,0x79,0x77,0x7e,0x8f,0x90,0x8b,0x89,0x85,0x8b,0x92,0x8a,0x82,0x81,0x7e,
0x7c,0x7d,0x7c,0x7e,0x82,0x83,0x84,0x83,0x85,0x88,0x89,0x88,0x89,0x8a,0x88,
0x87,0x89,0x8c,0x8d,0x8f,0x96,0x9f,0xa4,0xaa,0xb3,0xb4,0xa8,0x96,0x87,0x7e,
0x7c,0x7d,0x7a,0x74,0x72,0x71,0x70,0x70,0x70,0x6e,0x6f,0x75,0x78,0x73,0x6f,
0x6c,0x67,0x68,0x6d,0x6d,0x6c,0x71,0x7a,0x82,0x81,0x79,0x75,0x77,0x7b,0x7b,
0x76,0x72,0x70,0x6c,0x67,0x67,0x64,0x65,0x66,0x65,0x65,0x68,0x6b,0x72,0x78,
0x71,0x66,0x6a,0x69,0x7c,0x88,0x85,0x8d,0x93,0x8b,0x86,0x78,0x6f,0x7f,0x83,
0x79,0x79,0x75,0x77,0x7f,0x72,0x76,0x86,0x86,0x7d,0x6e,0x59,0x60,0x63,0x60,
0x66,0x6f,0x73,0x85,0x7e,0x79,0x80,0x84,0x7c,0x76,0x68,0x6e,0x79,0x79,0x78,
0x85,0x90,0xa0,0xa0,0x98,0x9a,0x9f,0x93,0x8b,0x7c,0x73,0x79,0x79,0x7b,0x7a,
0x7b,0x7f,0x86,0x92,0x9d,0x9d,0x94,0x87,0x7e,0x7d,0x82,0x86,0x8c,0x91,0x93,
0x92,0x92,0x96,0x98,0x9a,0x9d,0x9f,0x9e,0x97,0x92,0x8e,0x8a,0x8a,0x8d,0x8f,
0x93,0x98,0x9a,0x99,0x94,0x8c,0x86,0x82,0x7d,0x79,0x77,0x75,0x72,0x6e,0x6f,
0x74,0x76,0x79,0x7f,0x85,0x87,0x8a,0x8f,0x91,0x93,0x91,0x88,0x7e,0x77,0x72,
0x76,0x7e,0x80,0x80,0x7c,0x75,0x70,0x6e,0x70,0x77,0x78,0x74,0x72,0x70,0x6d,
0x70,0x77,0x7f,0x87,0x8a,0x87,0x83,0x7f,0x7d,0x7f,0x82,0x82,0x7f,0x7f,0x7d,
0x79,0x78,0x79,0x78,0x79,0x79,0x79,0x7c,0x7f,0x7f,0x80,0x81,0x82,0x82,0x84,
0x86,0x87,0x8a,0x8c,0x8c,0x8c,0x90,0x93,0x95,0x96,0x95,0x96,0x9c,0xa1,0xa6,
0xa5,0x9a,0x8b,0x7e,0x76,0x73,0x75,0x76,0x78,0x77,0x75,0x73,0x71,0x72,0x74,
0x76,0x7a,0x78,0x74,0x71,0x70,0x6f,0x6f,0x72,0x79,0x7d,0x80,0x7f,0x7c,0x77,
0x72,0x6f,0x6f,0x6f,0x6e,0x6e,0x6d,0x6b,0x6b,0x6a,0x69,0x6a,0x69,0x69,0x6b,
0x6b,0x6d,0x72,0x76,0x72,0x66,0x6b,0x6f,0x7f,0x8c,0x84,0x8d,0x99,0x96,0x91,
0x84,0x74,0x78,0x76,0x6b,0x6e,0x72,0x75,0x80,0x77,0x74,0x80,0x85,0x7f,0x7b,
0x6b,0x6a,0x6a,0x63,0x60,0x6c,0x74,0x85,0x86,0x84,0x8a,0x91,0x88,0x86,0x7a,
0x78,0x80,0x7d,0x76,0x7e,0x83,0x8e,0x94,0x8f,0x92,0x9c,0x96,0x8f,0x85,0x7b,
0x82,0x80,0x80,0x82,0x82,0x82,0x83,0x88,0x90,0x95,0x96,0x93,0x8c,0x86,0x83,
0x82,0x84,0x89,0x8f,0x91,0x93,0x94,0x92,0x91,0x93,0x93,0x92,0x8f,0x8b,0x86,
0x83,0x82,0x83,0x84,0x88,0x8e,0x8f,0x8e,0x8c,0x87,0x85,0x83,0x81,0x83,0x82,
0x82,0x83,0x80,0x7d,0x7b,0x7b,0x7b,0x77,0x77,0x78,0x7c,0x80,0x7c,0x7f,0x80,
0x7c,0x7d,0x78,0x6e,0x71,0x76,0x7b,0x81,0x82,0x81,0x81,0x7f,0x7d,0x7c,0x79,
0x79,0x79,0x78,0x78,0x7a,0x7b,0x7e,0x85,0x8b,0x8a,0x8a,0x8b,0x86,0x82,0x80,
0x81,0x7e,0x7f,0x82,0x7e,0x7d,0x7c,0x77,0x79,0x7a,0x79,0x7d,0x80,0x7f,0x82,
0x82,0x83,0x88,0x88,0x8a,0x8d,0x8c,0x8d,0x8f,0x8e,0x8e,0x8f,0x90,0x90,0x90,
0x8f,0x90,0x93,0x96,0x9a,0x99,0x94,0x8a,0x7e,0x75,0x73,0x70,0x6f,0x73,0x73,
0x72,0x73,0x74,0x77,0x77,0x75,0x74,0x75,0x73,0x71,0x6e,0x6e,0x72,0x77,0x78,
0x77,0x76,0x73,0x70,0x6f,0x6d,0x6a,0x6b,0x6b,0x69,0x6c,0x70,0x70,0x70,0x6f,
0x6f,0x70,0x71,0x6f,0x70,0x73,0x77,0x7b,0x7a,0x6b,0x70,0x75,0x7d,0x91,0x86,
0x85,0x90,0x92,0x8e,0x89,0x7c,0x7d,0x7d,0x72,0x6c,0x73,0x74,0x7f,0x7b,0x78,
0x7f,0x89,0x84,0x80,0x76,0x75,0x78,0x71,0x69,0x6e,0x73,0x81,0x85,0x82,0x87,
0x91,0x8a,0x86,0x7e,0x75,0x7a,0x78,0x70,0x74,0x7a,0x81,0x8c,0x88,0x89,0x92,
0x92,0x8c,0x89,0x7f,0x84,0x86,0x86,0x86,0x87,0x87,0x88,0x89,0x8d,0x92,0x94,
0x94,0x91,0x8a,0x85,0x7e,0x78,0x79,0x7b,0x7b,0x7f,0x84,0x86,0x87,0x89,0x89,
0x8a,0x8a,0x87,0x85,0x85,0x85,0x87,0x8c,0x90,0x93,0x95,0x94,0x92,0x91,0x8d,
0x8a,0x89,0x88,0x87,0x87,0x86,0x83,0x81,0x7e,0x7b,0x79,0x75,0x73,0x75,0x76,
0x77,0x7a,0x7c,0x7e,0x7d,0x7b,0x79,0x78,0x78,0x79,0x7b,0x81,0x85,0x88,0x89,
0x88,0x87,0x88,0x87,0x83,0x7f,0x7c,0x77,0x7a,0x7b,0x7b,0x7a,0x7a,0x7a,0x79,
0x7f,0x7e,0x76,0x7c,0x8f,0x99,0x8e,0x81,0x7b,0x77,0x78,0x71,0x61,0x64,0x77,
0x82,0x90,0x88,0x87,0x8a,0x9e,0xa0,0x9b,0x8f,0x81,0x7b,0x7f,0x75,0x79,0x7d,
0x77,0x7c,0x8a,0x8f,0x92,0x8d,0x8d,0x9d,0xa6,0xa1,0x98,0x91,0x89,0x7a,0x65,
0x62,0x60,0x65,0x6b,0x76,0x7b,0x83,0x8d,0x96,0x8f,0x8b,0x82,0x76,0x6c,0x61,
0x57,0x5b,0x5c,0x68,0x72,0x77,0x80,0x86,0x8b,0x88,0x80,0x77,0x6f,0x68,0x63,
0x5e,0x5b,0x5f,0x6d,0x74,0x7a,0x81,0x8a,0x8b,0x8a,0x85,0x84,0x7c,0x64,0x5a,
0x61,0x6c,0x85,0x7f,0x7b,0x83,0x89,0x8a,0x90,0x97,0xac,0x98,0x5b,0x54,0x7b,
0x75,0x76,0x64,0x54,0x65,0x73,0x79,0x7a,0x73,0x76,0x89,0x94,0x89,0x86,0x80,
0x8a,0x8c,0x75,0x6e,0x73,0x6f,0x72,0x78,0x7b,0x8c,0x84,0x84,0x9d,0xb4,0xb4,
0x91,0x73,0x99,0xa5,0x81,0x52,0x66,0x8d,0x8e,0x64,0x5b,0x85,0x92,0x91,0x88,
0x73,0x77,0x85,0x8e,0x8e,0x7f,0x79,0x86,0x8b,0x84,0x75,0x78,0x84,0x89,0x82,
0x83,0x87,0x83,0x84,0x8e,0x96,0x9b,0x89,0x77,0x97,0xb5,0xae,0x8e,0x73,0x90,
0xac,0x96,0x78,0x6a,0x6e,0x7a,0x76,0x6a,0x63,0x6a,0x74,0x83,0x7f,0x7a,0x84,
0x92,0x96,0x8b,0x7f,0x84,0x86,0x80,0x75,0x6d,0x6e,0x6c,0x6e,0x7d,0x91,0x9f,
0x92,0x8c,0xae,0xc4,0xb1,0x8f,0x77,0x84,0x8c,0x72,0x5a,0x4a,0x50,0x6a,0x70,
0x6d,0x71,0x78,0x82,0x89,0x7e,0x74,0x7a,0x82,0x7f,0x74,0x6c,0x73,0x7b,0x7d,
0x7e,0x83,0x89,0x8a,0x8d,0x97,0xa2,0xa0,0x90,0x8e,0xa3,0xad,0x99,0x81,0x7b,
0x8a,0x90,0x82,0x70,0x6a,0x78,0x82,0x7b,0x70,0x6b,0x72,0x7b,0x7e,0x7b,0x7b,
0x88,0x94,0x90,0x86,0x82,0x85,0x84,0x7f,0x78,0x78,0x74,0x74,0x77,0x81,0x88,
0x8b,0x86,0x8c,0x99,0x9d,0x8d,0x7f,0x7f,0x81,0x7c,0x6d,0x5b,0x53,0x54,0x58,
0x54,0x51,0x56,0x5e,0x68,0x6b,0x6a,0x6d,0x77,0x7d,0x7c,0x76,0x76,0x7b,0x7c,
0x78,0x73,0x65,0x67,0x70,0x7f,0x9e,0x9b,0x99,0x9f,0xa6,0xa7,0xa1,0x90,0x89,
0x85,0x7f,0x77,0x6e,0x62,0x65,0x65,0x65,0x69,0x6c,0x6a,0x71,0x6f,0x6c,0x6f,
0x6f,0x6c,0x71,0x72,0x76,0x7a,0x7c,0x83,0x89,0x87,0x89,0x88,0x83,0x89,0x8c,
0x89,0x8a,0x8f,0x96,0x9f,0x99,0x93,0x91,0x94,0x94,0x8e,0x7e,0x7d,0x7c,0x78,
0x77,0x77,0x72,0x71,0x73,0x79,0x7a,0x80,0x89,0x8e,0x90,0x91,0x8d,0x89,0x88,
0x85,0x7e,0x7c,0x7b,0x7b,0x7b,0x81,0x89,0x8d,0x93,0x9d,0xa1,0xa0,0x9f,0x99,
0x92,0x92,0x8f,0x87,0x7c,0x76,0x75,0x71,0x6d,0x72,0x73,0x75,0x7c,0x81,0x7f,
0x7f,0x82,0x80,0x7c,0x7e,0x7f,0x7e,0x7f,0x81,0x80,0x7f,0x7f,0x7f,0x7e,0x7f,
0x80,0x82,0x84,0x88,0x8b,0x8a,0x8a,0x8b,0x8a,0x8a,0x8a,0x84,0x7b,0x78,0x74,
0x6c,0x69,0x6a,0x6b,0x6b,0x70,0x72,0x72,0x74,0x78,0x7b,0x7a,0x7b,0x80,0x83,
0x86,0x87,0x86,0x86,0x87,0x85,0x87,0x89,0x8b,0x8e,0x90,0x94,0x98,0x97,0x97,
0x98,0x97,0x94,0x93,0x8e,0x86,0x7e,0x7a,0x74,0x71,0x70,0x72,0x76,0x77,0x78,
0x7d,0x82,0x88,0x8b,0x8d,0x8b,0x87,0x86,0x85,0x80,0x79,0x76,0x76,0x78,0x7a,
0x7d,0x83,0x89,0x8e,0x92,0x92,0x8e,0x88,0x85,0x83,0x7d,0x78,0x75,0x71,0x69,
0x61,0x5d,0x5d,0x5c,0x5e,0x61,0x60,0x5e,0x62,0x66,0x68,0x69,0x6d,0x70,0x74,
0x78,0x7a,0x7c,0x7e,0x80,0x7a,0x6f,0x79,0x7f,0x90,0x9d,0x96,0x96,0x96,0x96,
0x93,0x8f,0x90,0x8f,0x8a,0x86,0x82,0x79,0x70,0x6a,0x66,0x61,0x61,0x65,0x64,
0x65,0x68,0x6e,0x71,0x73,0x75,0x7a,0x7c,0x7e,0x7f,0x80,0x7f,0x7f,0x82,0x82,
0x84,0x87,0x89,0x8d,0x92,0x92,0x92,0x94,0x92,0x8e,0x8f,0x8f,0x8a,0x87,0x85,
0x7f,0x7c,0x77,0x74,0x76,0x76,0x76,0x79,0x7b,0x7e,0x82,0x87,0x89,0x89,0x8b,
0x8b,0x89,0x87,0x83,0x7f,0x7f,0x7f,0x7f,0x82,0x85,0x87,0x8d,0x91,0x8f,0x8e,
0x90,0x92,0x8f,0x8c,0x8b,0x8a,0x87,0x83,0x7f,0x7d,0x7a,0x76,0x77,0x78,0x77,
0x78,0x7c,0x7d,0x7d,0x7e,0x7f,0x83,0x83,0x82,0x87,0x8a,0x88,0x89,0x8a,0x87,
0x85,0x83,0x81,0x83,0x84,0x81,0x80,0x84,0x86,0x84,0x87,0x8b,0x8a,0x87,0x85,
0x83,0x7e,0x79,0x71,0x6c,0x69,0x68,0x6b,0x6c,0x6a,0x6e,0x72,0x76,0x7a,0x7b,
0x7d,0x7f,0x81,0x83,0x83,0x84,0x85,0x85,0x86,0x88,0x8a,0x8d,0x91,0x90,0x91,
0x94,0x94,0x93,0x94,0x95,0x90,0x8c,0x8c,0x8d,0x8a,0x7f,0x76,0x79,0x7b,0x75,
0x76,0x78,0x75,0x7a,0x80,0x7c,0x80,0x85,0x85,0x86,0x87,0x84,0x82,0x80,0x7f,