-
Notifications
You must be signed in to change notification settings - Fork 0
/
rampdown.hex
2209 lines (2209 loc) · 123 KB
/
rampdown.hex
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
0x4952,0x4646,0x8a02,0x0000,0x4157,0x4556,0x6d66,0x2074,
0x0010,0x0000,0x0001,0x0001,0x3e80,0x0000,0x7d00,0x0000,
0x0002,0x0010,0x6164,0x6174,0x89de,0x0000,0x0307,0x054b,
0x04d9,0x0568,0x0552,0x05b3,0x05b2,0x0603,0x060a,0x0651,
0x065c,0x069a,0x06ae,0x06dc,0x06fc,0x071c,0x0741,0x075f,
0x077f,0x079d,0x07b9,0x07db,0x07f1,0x0811,0x0829,0x0840,
0x085f,0x086f,0x088e,0x089e,0x08b8,0x08cb,0x08e1,0x08f3,
0x0906,0x0918,0x092b,0x093b,0x094e,0x095c,0x096a,0x097c,
0x0988,0x0996,0x09a4,0x09ae,0x09bc,0x09c8,0x09d1,0x09df,
0x09e5,0x09f1,0x09f8,0x0a04,0x0a08,0x0a15,0x0a15,0x0a23,
0x0a26,0x0a2b,0x0a34,0x0a34,0x0a40,0x0a3f,0x0a47,0x0a47,
0x0a4f,0x0a4c,0x0a56,0x0a52,0x0a5a,0x0a56,0x0a5e,0x0a5a,
0x0a5d,0x0a5f,0x0a5b,0x0a5f,0x0a5f,0x0a59,0x0a5e,0x0a5d,
0x0a59,0x0a5c,0x0a54,0x0a56,0x0a54,0x0a53,0x0a4c,0x0a4f,
0x0a47,0x0a48,0x0a47,0x0b11,0x0c81,0x0dab,0x0efb,0x101e,
0x1157,0x1275,0x139b,0x14ad,0x15c7,0x16c6,0x17d7,0x18cb,
0x19c9,0x1ab8,0x1ba3,0x1c89,0x1d6a,0x1e40,0x1f1c,0x1fe2,
0x20b8,0x2169,0x224b,0x220a,0x200f,0x1e32,0x1c58,0x1a86,
0x18c9,0x16ff,0x155b,0x13a4,0x120d,0x106c,0x0ee5,0x0d55,
0x0bdf,0x0a5e,0x08fa,0x078b,0x0630,0x04d7,0x0388,0x023c,
0x0103,0xffbe,0xfe96,0xfd62,0xfc3f,0xfb1d,0xfa09,0xf8f4,
0xf7e5,0xf6e7,0xf5da,0xf4f0,0xf3eb,0xf30c,0xf216,0xf13d,
0xf058,0xef83,0xeeae,0xeddf,0xed16,0xec52,0xeb93,0xead7,
0xea21,0xe970,0xe8c2,0xe81c,0xe7e3,0xe7f3,0xe7f8,0xe801,
0xe809,0xe814,0xe81a,0xe827,0xe830,0xe83c,0xe842,0xe855,
0xe856,0xe86f,0xe86d,0xe88a,0xe886,0xe8a3,0xe8a6,0xe8b6,
0xe8ca,0xe8cd,0xe8ec,0xe8e9,0xe907,0xe90c,0xe923,0xe92c,
0xe945,0xe94c,0xe966,0xe970,0xe982,0xe996,0xe9a5,0xe9b9,
0xe9c7,0xe9df,0xe9e9,0xea04,0xea0e,0xea28,0xea37,0xea4b,
0xea5c,0xea6f,0xea88,0xea93,0xeaad,0xeacd,0xeb7f,0xec39,
0xeceb,0xeda5,0xee4c,0xef00,0xefa4,0xf04a,0xf0ea,0xf18d,
0xf224,0xf2c1,0xf351,0xf3e7,0xf476,0xf502,0xf58e,0xf613,
0xf695,0xf71e,0xf793,0xf819,0xf88a,0xf908,0xf978,0xf9ef,
0xfa5b,0xfacc,0xfb35,0xfb9f,0xfc08,0xfc69,0xfcd1,0xfd2b,
0xfd8f,0xfde8,0xfe46,0xfe98,0xfef5,0xff45,0xff9c,0xffec,
0x0037,0x0087,0x00d4,0x0119,0x016a,0x01a7,0x01f4,0x0231,
0x027a,0x02b3,0x02f9,0x0331,0x0371,0x03a9,0x03e2,0x041e,
0x044d,0x048b,0x04b7,0x04f0,0x051d,0x0551,0x057d,0x05ac,
0x05d8,0x0604,0x062f,0x0657,0x0681,0x06a5,0x06d0,0x06f0,
0x071a,0x0737,0x075e,0x077d,0x079c,0x07c0,0x07da,0x07fa,
0x0816,0x0833,0x084c,0x0868,0x0880,0x089a,0x08b2,0x08c7,
0x08e3,0x08ef,0x0910,0x0918,0x0939,0x093f,0x095a,0x0966,
0x097f,0x0985,0x09a0,0x09a5,0x09b9,0x09c9,0x09d1,0x09e5,
0x09e9,0x09fe,0x09ff,0x0a14,0x0a18,0x0a25,0x0a2d,0x0a33,
0x0a42,0x0a43,0x0a51,0x0a53,0x0a5b,0x0a65,0x0a63,0x0a76,
0x0a6b,0x0a80,0x0a74,0x0ab8,0x0b6b,0x0c0f,0x0cb2,0x0d56,
0x0dee,0x0e88,0x0f1f,0x0fae,0x103c,0x10c6,0x1149,0x11d3,
0x124c,0x12cb,0x1344,0x13ba,0x142f,0x1499,0x150c,0x156f,
0x15df,0x1639,0x16a5,0x16f7,0x175f,0x16d5,0x15ce,0x14e6,
0x13ee,0x130c,0x1222,0x1146,0x1067,0x0f93,0x0ec0,0x0dec,
0x0d2d,0x0c58,0x0ba5,0x0adb,0x0a28,0x0970,0x08bc,0x0810,
0x0763,0x06bb,0x061a,0x0578,0x04da,0x0440,0x03be,0x03bf,
0x03dd,0x03eb,0x0407,0x0415,0x042d,0x043d,0x0453,0x0463,
0x0476,0x0485,0x0499,0x04a6,0x04b7,0x04c6,0x04d3,0x04e5,
0x04ef,0x04ff,0x050b,0x0518,0x0523,0x0530,0x0537,0x054e,
0x0513,0x047b,0x03d8,0x0347,0x02af,0x0221,0x0191,0x0108,
0x007c,0xfffd,0xff79,0xfef9,0xfe81,0xfe02,0xfd91,0xfd19,
0xfcaa,0xfc39,0xfbd0,0xfb61,0xfb03,0xfa94,0xfa3b,0xf9cf,
0xf97f,0xf917,0xf8c8,0xf868,0xf819,0xf7c3,0xf772,0xf725,
0xf6d6,0xf68d,0xf642,0xf5fb,0xf5b6,0xf572,0xf532,0xf4ee,
0xf4b5,0xf473,0xf43a,0xf401,0xf3c7,0xf395,0xf35a,0xf32d,
0xf2f5,0xf2c9,0xf296,0xf26e,0xf23a,0xf217,0xf1e5,0xf1c4,
0xf19a,0xf172,0xf151,0xf12a,0xf10b,0xf0e6,0xf0c8,0xf0a9,
0xf08b,0xf071,0xf04e,0xf03b,0xf01a,0xf007,0xefeb,0xefd9,
0xefbd,0xefad,0xef95,0xef84,0xef71,0xef5d,0xef51,0xef3c,
0xef30,0xef1d,0xef16,0xef03,0xeefb,0xeeeb,0xeee5,0xeed8,
0xeecf,0xeec6,0xeebc,0xeeb8,0xeead,0xeeab,0xeea3,0xee9b,
0xee9b,0xee92,0xee95,0xee89,0xee8e,0xee87,0xee86,0xee89,
0xee83,0xeef3,0xefa4,0xf03f,0xf0ec,0xf17c,0xf226,0xf2ae,
0xf350,0xf3d8,0xf46c,0xf4f6,0xf57f,0xf608,0xf687,0xf70c,
0xf787,0xf806,0xf87d,0xf8f3,0xf969,0xf9da,0xfa4a,0xfab9,
0xfb1f,0xfb8e,0xfbee,0xfc57,0xfcb7,0xfd18,0xfd76,0xfdd2,
0xfe2c,0xfe82,0xfedd,0xff2a,0xff85,0xffce,0x0021,0x0069,
0x00ba,0x0100,0x0149,0x018f,0x01d5,0x0217,0x0259,0x0299,
0x02d8,0x0316,0x0350,0x038d,0x03c3,0x03ff,0x0430,0x0469,
0x049b,0x04ce,0x04ff,0x0531,0x055b,0x058f,0x05b5,0x05e6,
0x060c,0x0637,0x065f,0x0685,0x06af,0x06ce,0x06f8,0x0714,
0x073f,0x0759,0x077f,0x0798,0x07bd,0x07d2,0x07f8,0x080e,
0x082c,0x08b3,0x097d,0x0a34,0x0aef,0x0ba0,0x0c51,0x0cf9,
0x0da7,0x0e41,0x0ee7,0x0f7c,0x1017,0x10a8,0x113d,0x11bf,
0x1254,0x12cd,0x1357,0x13d3,0x144a,0x14ca,0x1537,0x15af,
0x1617,0x1688,0x16eb,0x1755,0x16da,0x15dd,0x14f5,0x1413,
0x132c,0x1256,0x117a,0x10a8,0x0fda,0x0f0d,0x0e48,0x0d82,
0x0cc3,0x0c0c,0x0b51,0x0aa1,0x09eb,0x0946,0x0897,0x07f8,
0x0754,0x06b4,0x061d,0x0582,0x04ef,0x0460,0x03ce,0x0346,
0x02bc,0x0236,0x01b6,0x0134,0x00b9,0x003f,0xffc7,0xff57,
0xfedf,0xfe77,0xfe01,0xfda0,0xfd2f,0xfcd4,0xfc67,0xfc0a,
0xfbab,0xfb4b,0xfaf7,0xfa97,0xfa4a,0xf9ec,0xf9a3,0xf94a,
0xf906,0xf8a9,0xf8a8,0xf901,0xf967,0xf9bc,0xfa1a,0xfa70,
0xfacb,0xfb18,0xfb74,0xfbbc,0xfc13,0xfc5d,0xfcad,0xfcf3,
0xfd42,0xfd84,0xfdcc,0xfe13,0xfe51,0xfe9a,0xfed3,0xff15,
0xff52,0xff8c,0xffce,0xfffe,0x003b,0x007f,0x0154,0x022b,
0x0305,0x03d3,0x04a0,0x0567,0x062a,0x06e8,0x07a5,0x0859,
0x090a,0x09ba,0x0a5e,0x0b0c,0x0ba3,0x0c4a,0x0cdc,0x0d77,
0x0e07,0x0e96,0x0f23,0x0fa7,0x1031,0x10ab,0x1130,0x11a2,
0x1221,0x11b7,0x10c6,0x0ff9,0x0f1b,0x0e55,0x0d80,0x0cbe,
0x0bf8,0x0b39,0x0a7d,0x09c5,0x0910,0x0860,0x07b7,0x0709,
0x0669,0x05c2,0x0527,0x0489,0x03f4,0x035f,0x02ce,0x023f,
0x01b2,0x012e,0x00a4,0x002a,0xffa0,0xff32,0xfea7,0xfe43,
0xfdbe,0xfd59,0xfce0,0xfc7d,0xfc09,0xfbaa,0xfb3d,0xfae2,
0xfa7d,0xfa20,0xf9c4,0xf967,0xf915,0xf8bc,0xf868,0xf81b,
0xf7c3,0xf782,0xf728,0xf6ed,0xf698,0xf65b,0xf613,0xf5d2,
0xf591,0xf553,0xf514,0xf4da,0xf49d,0xf468,0xf42d,0xf3fe,
0xf3c2,0xf396,0xf362,0xf332,0xf307,0xf2d6,0xf2ad,0xf283,
0xf257,0xf233,0xf20b,0xf1e5,0xf1c5,0xf19a,0xf181,0xf15a,
0xf13d,0xf120,0xf0fe,0xf0e5,0xf0c8,0xf0ae,0xf096,0xf07b,
0xf066,0xf04c,0xf03b,0xf020,0xf014,0xeff8,0xefec,0xefd9,
0xefc7,0xefbb,0xefa6,0xef9e,0xef8c,0xef81,0xef71,0xef6c,
0xef5c,0xef54,0xef4c,0xef3c,0xef40,0xef2b,0xef2f,0xef1e,
0xef54,0xf002,0xf096,0xf13d,0xf1d0,0xf26b,0xf2fc,0xf38e,
0xf41b,0xf4a8,0xf52d,0xf5b6,0xf636,0xf6b8,0xf735,0xf7b0,
0xf829,0xf89e,0xf914,0xf982,0xf9f4,0xfa60,0xfac9,0xfb32,
0xfb99,0xfbfa,0xfc5e,0xfcb9,0xfd52,0xfe5c,0xff58,0x004f,
0x0145,0x0230,0x031c,0x03fb,0x04dd,0x05b6,0x0685,0x075c,
0x081e,0x08ed,0x09a7,0x0a69,0x0b1e,0x0bd2,0x0c86,0x0d2c,
0x0dd8,0x0e77,0x0f19,0x0fb2,0x104d,0x10df,0x116c,0x1203,
0x125b,0x11b7,0x10e6,0x1023,0x0f5f,0x0ea3,0x0de4,0x0d34,
0x0c7b,0x0bd0,0x0b24,0x0a79,0x09d8,0x0933,0x0898,0x07f9,
0x0768,0x06cc,0x0643,0x05b0,0x0526,0x049e,0x0418,0x0395,
0x0317,0x029b,0x021d,0x01a9,0x0131,0x00c1,0x0050,0xffe5,
0xff78,0xff11,0xfeaa,0xfe47,0xfde3,0xfd86,0xfd28,0xfccc,
0xfc73,0xfc1c,0xfbc7,0xfb75,0xfb24,0xfad0,0xfa8a,0xfa38,
0xf9f3,0xf9ab,0xf960,0xf922,0xf8da,0xf89e,0xf858,0xf823,
0xf7dc,0xf7bb,0xf81b,0xf885,0xf8f9,0xf95c,0xf9c7,0xfa2e,
0xfa8b,0xfaf2,0xfb52,0xfba9,0xfc0e,0xfc5f,0xfcbb,0xfd12,
0xfd60,0xfdb8,0xfe05,0xfe56,0xfea2,0xfeeb,0xff38,0xff7d,
0xffc9,0x0007,0x004d,0x008d,0x00d0,0x010e,0x014c,0x0186,
0x01c1,0x01fd,0x0231,0x026e,0x029b,0x02da,0x0304,0x033b,
0x036b,0x0398,0x03cb,0x03f3,0x0423,0x044c,0x0476,0x04a0,
0x04c7,0x04ed,0x0517,0x0534,0x0564,0x0578,0x05ab,0x05bc,
0x05eb,0x05fe,0x0626,0x063e,0x065f,0x0676,0x0698,0x06ab,
0x06cd,0x06e1,0x06fa,0x0714,0x0727,0x0742,0x0754,0x076e,
0x077a,0x0797,0x07a1,0x07bb,0x07c9,0x07db,0x07ed,0x07fa,
0x080d,0x0818,0x0829,0x0838,0x0845,0x084d,0x0861,0x0861,
0x08af,0x0965,0x0a10,0x0abe,0x0b65,0x0c07,0x0ca9,0x0d3e,
0x0dde,0x0e6b,0x0f00,0x0f88,0x1017,0x1095,0x1121,0x1195,
0x121a,0x128c,0x1307,0x1375,0x13e7,0x1452,0x14bc,0x1522,
0x1585,0x15e8,0x1643,0x16a2,0x16fc,0x172c,0x1650,0x1550,
0x145e,0x1368,0x1283,0x1197,0x10b7,0x0fd8,0x0efe,0x0e28,
0x0d5d,0x0c8a,0x0bc7,0x0b01,0x0a3e,0x0988,0x08cb,0x081c,
0x0764,0x06c2,0x060e,0x0572,0x04c7,0x0431,0x038f,0x02fe,
0x0262,0x01d8,0x0143,0x00be,0x0032,0xffb1,0xff2e,0xfeaf,
0xfe32,0xfdbb,0xfd41,0xfcd1,0xfc5d,0xfbef,0xfb80,0xfb1c,
0xfab0,0xfa4e,0xf9ec,0xf985,0xf932,0xf8cd,0xf87c,0xf81e,
0xf7cf,0xf775,0xf72c,0xf6d6,0xf691,0xf63d,0xf5fa,0xf5b3,
0xf567,0xf52e,0xf4e0,0xf4ab,0xf467,0xf42a,0xf3f2,0xf3b6,
0xf380,0xf348,0xf313,0xf2e3,0xf2af,0xf27f,0xf24e,0xf225,
0xf1f4,0xf1cd,0xf1a2,0xf176,0xf157,0xf129,0xf10b,0xf0e2,
0xf0c6,0xf0a0,0xf085,0xf05f,0xf04a,0xf027,0xf07c,0xf112,
0xf194,0xf222,0xf2a2,0xf327,0xf3a6,0xf421,0xf49e,0xf513,
0xf58c,0xf5fd,0xf670,0xf6dc,0xf74d,0xf7b1,0xf822,0xf87d,
0xf8ec,0xf946,0xf9ab,0xfa0a,0xfa5e,0xfac4,0xfb12,0xfb71,
0xfbc0,0xfc12,0xfc6b,0xfca2,0xfc5a,0xfbfd,0xfba6,0xfb51,
0xfafc,0xfaac,0xfa5b,0xfa0f,0xf9c3,0xf974,0xf934,0xf8e4,
0xf8a8,0xf85d,0xf823,0xf7df,0xf7a1,0xf767,0xf72b,0xf6ef,
0xf6bd,0xf680,0xf650,0xf619,0xf5e7,0xf5b8,0xf584,0xf55e,
0xf527,0xf505,0xf4d3,0xf4af,0xf484,0xf45f,0xf437,0xf417,
0xf3ef,0xf3d0,0xf3ad,0xf38c,0xf370,0xf34f,0xf333,0xf318,
0xf2f8,0xf2e4,0xf2c6,0xf2b0,0xf299,0xf280,0xf26c,0xf254,
0xf246,0xf22c,0xf21d,0xf20d,0xf1f3,0xf1f1,0xf1cf,0xf206,
0xf2a2,0xf334,0xf3ce,0xf45a,0xf4eb,0xf578,0xf5fb,0xf686,
0xf707,0xf788,0xf806,0xf880,0xf8f9,0xf973,0xf9e2,0xfa57,
0xfac0,0xfb33,0xfb9d,0xfc01,0xfc6c,0xfccc,0xfd2e,0xfd8f,
0xfdec,0xfe47,0xfea2,0xfef9,0xff4d,0xffa3,0xfff4,0x0041,
0x0094,0x00dc,0x012c,0x016f,0x01bc,0x01fe,0x0244,0x0288,
0x02c6,0x0309,0x0344,0x0384,0x03bc,0x03fa,0x042e,0x0469,
0x049b,0x04d3,0x0505,0x0536,0x056a,0x0595,0x05c8,0x05f1,
0x0620,0x0648,0x0676,0x069b,0x06c3,0x06ec,0x070f,0x0735,
0x0759,0x0778,0x079f,0x07bb,0x07de,0x07fb,0x081a,0x0836,
0x0854,0x086b,0x088b,0x08a1,0x08bd,0x08d3,0x08ec,0x0901,
0x0918,0x092e,0x0940,0x0956,0x0968,0x097c,0x098c,0x099f,
0x09ae,0x09bf,0x09d1,0x09da,0x09ed,0x09f7,0x0a08,0x0a13,
0x0a1e,0x0a2b,0x0a34,0x0a3f,0x0a4b,0x0a50,0x0a60,0x0a60,
0x0a6f,0x0a73,0x0a79,0x0a86,0x0a86,0x0a91,0x0a92,0x0a9a,
0x0a9e,0x0aa3,0x0aa7,0x0aaa,0x0aaf,0x0aaf,0x0ab4,0x0ab4,
0x0ab9,0x0ab8,0x0abc,0x0ab9,0x0abf,0x0ab8,0x0ac0,0x0abc,
0x0ab9,0x0ac1,0x0ab5,0x0abc,0x0ab6,0x0ab8,0x0ab4,0x0ab4,
0x0aaf,0x0aaf,0x0aaa,0x0aaa,0x0aa5,0x0aa1,0x0aa1,0x0a96,
0x0a9a,0x0a8d,0x0a91,0x0a87,0x0a85,0x0a81,0x0a78,0x0a8a,
0x0b18,0x0bc0,0x0c56,0x0cf8,0x0d83,0x0e1d,0x0ea6,0x0f32,
0x0fb8,0x103e,0x10ba,0x113d,0x11b2,0x122a,0x129e,0x130f,
0x137d,0x13e6,0x144e,0x14b7,0x1513,0x1577,0x15d1,0x162d,
0x1685,0x16d7,0x172e,0x177b,0x17cb,0x1819,0x1839,0x1756,
0x163f,0x154d,0x1440,0x1358,0x125b,0x1170,0x1089,0x0fa1,
0x0ec3,0x0dea,0x0d0e,0x0c44,0x0b6f,0x0aa8,0x09e4,0x0920,
0x0866,0x07aa,0x06f6,0x0643,0x0599,0x04ea,0x0447,0x03a4,
0x0304,0x0268,0x01d3,0x0137,0x00aa,0x002b,0x0037,0x005e,
0x006f,0x0098,0x00a7,0x00ce,0x00dc,0x0104,0x010d,0x0135,
0x013f,0x0163,0x0170,0x018d,0x019f,0x01b6,0x01cc,0x01de,
0x01f3,0x0205,0x0219,0x022b,0x023d,0x0250,0x025f,0x0270,
0x0282,0x028e,0x02a2,0x02b0,0x0299,0x0177,0x0031,0xff03,
0xfdc9,0xfcaa,0xfb7c,0xfa6b,0xf94a,0xf843,0xf734,0xf635,
0xf531,0xf445,0xf345,0xf267,0xf176,0xf099,0xefbf,0xeee6,
0xee16,0xed49,0xec83,0xebc3,0xeb01,0xea4e,0xe992,0xe8ec,
0xe839,0xe798,0xe6f1,0xe656,0xe5bc,0xe523,0xe497,0xe403,
0xe37e,0xe2f3,0xe276,0xe1f1,0xe179,0xe102,0xe088,0xe020,
0xdfab,0xdf45,0xdedb,0xde78,0xde15,0xddba,0xdd5c,0xdd07,
0xdcae,0xdc60,0xdc0d,0xdbc0,0xdb77,0xdb2c,0xdaeb,0xdaa6,
0xda63,0xda28,0xd9e8,0xd9d5,0xdad0,0xdbeb,0xdcf9,0xde0b,
0xdf0c,0xe015,0xe10e,0xe20a,0xe2fc,0xe3ec,0xe4d7,0xe5be,
0xe69f,0xe77d,0xe856,0xe92d,0xe9f8,0xeacf,0xeb8b,0xec5e,
0xed11,0xeddc,0xee8c,0xef47,0xeff8,0xf0a2,0xf156,0xf1f5,
0xf2a2,0xf33c,0xf3dd,0xf479,0xf510,0xf5a3,0xf639,0xf6c0,
0xf753,0xf7d8,0xf85e,0xf8e6,0xf95f,0xf9e3,0xfa5b,0xfad6,
0xfb49,0xfbbf,0xfc2f,0xfc9f,0xfd0d,0xfd71,0xfde0,0xfe3f,
0xfea5,0xff0a,0xff63,0xffc5,0x001c,0x0074,0x00ce,0x0123,
0x0173,0x01c7,0x0214,0x0262,0x02b0,0x02f5,0x0343,0x0386,
0x03cd,0x040e,0x0453,0x048f,0x04d2,0x050b,0x054b,0x0582,
0x05bd,0x05f1,0x062c,0x065b,0x0696,0x06be,0x06f8,0x0721,
0x0752,0x0782,0x07a7,0x07da,0x07fb,0x0829,0x084f,0x0875,
0x089c,0x08be,0x08e1,0x0903,0x0928,0x0941,0x0968,0x097f,
0x09a3,0x09bb,0x09da,0x09f2,0x0a0d,0x0a25,0x0a40,0x0a52,
0x0a70,0x0a80,0x0a95,0x0aae,0x0abd,0x0ad4,0x0ae4,0x0af6,
0x0b06,0x0b17,0x0b28,0x0b35,0x0b45,0x0b51,0x0b5f,0x0b6e,
0x0b75,0x0b86,0x0b8c,0x0b9b,0x0ba0,0x0bac,0x0bb5,0x0bbd,
0x0bc5,0x0bcb,0x0bd3,0x0bda,0x0bde,0x0be7,0x0be9,0x0bf1,
0x0bf2,0x0bf8,0x0bfc,0x0bfc,0x0c06,0x0bfd,0x0c0b,0x0c03,
0x0c0b,0x0c08,0x0c0d,0x0c07,0x0c0d,0x0c07,0x0c0d,0x0c09,
0x0c05,0x0c08,0x0c02,0x0c05,0x0bff,0x0bfe,0x0bfc,0x0bf8,
0x0bf6,0x0bf2,0x0bec,0x0bed,0x0be4,0x0be3,0x0bdc,0x0bd8,
0x0bd4,0x0bcd,0x0bca,0x0bc3,0x0bbe,0x0bb7,0x0bb4,0x0bab,
0x0ba7,0x0b9e,0x0b99,0x0b90,0x0b8b,0x0b84,0x0b7b,0x0b76,
0x0b6d,0x0b62,0x0b63,0x0b51,0x0b54,0x0b41,0x0b3f,0x0b36,
0x0b2c,0x0b28,0x0b1a,0x0b14,0x0b09,0x0b02,0x0af6,0x0af4,
0x0ae0,0x0ae3,0x0ad1,0x0acc,0x0ac1,0x0ab7,0x0ab1,0x0aa1,
0x0a9e,0x0a8f,0x0a8a,0x0a7d,0x0a74,0x0a6b,0x0a60,0x0a57,
0x0a4b,0x0a3f,0x0a40,0x0a25,0x0b04,0x0c53,0x0d87,0x0ec8,
0x0fea,0x111c,0x1235,0x1351,0x1463,0x156e,0x1677,0x1773,
0x186d,0x1962,0x1a49,0x1b39,0x1c10,0x1cf5,0x1dc4,0x1e98,
0x1f60,0x2028,0x20e6,0x21a3,0x2259,0x230b,0x23b6,0x245e,
0x2502,0x25a3,0x2638,0x26d8,0x271c,0x2543,0x2330,0x212e,
0x1f30,0x1d4a,0x1b56,0x198d,0x17a8,0x15f4,0x1425,0x127f,
0x10c8,0x0f30,0x0d8b,0x0c08,0x0a71,0x0901,0x0778,0x0618,
0x04a7,0x034c,0x01f2,0x00a3,0xff58,0xfe1d,0xfcdc,0xfbac,
0xfa7e,0xf956,0xf83e,0xf71d,0xf613,0xf501,0xf3fd,0xf300,
0xf203,0xf111,0xf026,0xef37,0xee5b,0xed7b,0xeca2,0xebd2,
0xeb04,0xea38,0xe97d,0xe8b4,0xe804,0xe748,0xe69d,0xe5ee,
0xe548,0xe4a7,0xe404,0xe36e,0xe2d4,0xe243,0xe1ba,0xe125,
0xe0ad,0xe01b,0xdfaa,0xdf21,0xdeb8,0xde32,0xde07,0xde45,
0xde78,0xdebc,0xdeec,0xdf2e,0xdf60,0xdfa0,0xdfce,0xe011,
0xe03e,0xe07b,0xe0af,0xe0e3,0xe11e,0xe14e,0xe187,0xe1b8,
0xe1ee,0xe221,0xe257,0xe284,0xe2be,0xe2e8,0xe322,0xe34f,
0xe381,0xe3b0,0xe3e5,0xe40d,0xe447,0xe46c,0xe4a1,0xe4cf,
0xe4fa,0xe52e,0xe556,0xe587,0xe5b0,0xe5e2,0xe606,0xe63d,
0xe65d,0xe692,0xe6b7,0xe6e5,0xe70f,0xe736,0xe766,0xe788,
0xe7b7,0xe7dd,0xe806,0xe831,0xe856,0xe87e,0xe8a9,0xe8c9,
0xe8f8,0xe918,0xe945,0xe964,0xe992,0xe9af,0xe9de,0xe9f7,
0xea5a,0xeb31,0xebef,0xecbd,0xed78,0xee39,0xeef3,0xefa8,
0xf059,0xf10b,0xf1b0,0xf263,0xf2fc,0xf3a6,0xf440,0xf4db,
0xf575,0xf606,0xf69b,0xf726,0xf7b6,0xf83a,0xf8c4,0xf947,
0xf9c5,0xfa45,0xfabe,0xfb3a,0xfbad,0xfc21,0xfc92,0xfd03,
0xfd6c,0xfdd7,0xfe41,0xfea1,0xff0b,0xff67,0xffc9,0x0024,
0x007d,0x00d7,0x012f,0x0181,0x01d6,0x0226,0x0276,0x02c4,
0x030d,0x0358,0x03a0,0x03e6,0x042e,0x046c,0x04b1,0x04f0,
0x052d,0x056d,0x05a6,0x05e0,0x061d,0x064b,0x068b,0x06b6,
0x06f1,0x0720,0x074e,0x0780,0x07ae,0x07d7,0x0808,0x082d,
0x085c,0x087d,0x08ac,0x08cb,0x08f7,0x0914,0x093b,0x095b,
0x097d,0x099d,0x09bc,0x09d6,0x09fc,0x0a0a,0x0a37,0x0a3f,
0x0a69,0x0a75,0x0a94,0x0aaa,0x0abd,0x0ad9,0x0ae5,0x0b02,
0x0b0f,0x0b26,0x0b34,0x0b49,0x0b56,0x0b69,0x0b78,0x0b81,
0x0b9c,0x0b98,0x0bb6,0x0bb4,0x0bcc,0x0bcc,0x0be2,0x0bdf,
0x0bf5,0x0bf5,0x0c05,0x0c06,0x0c11,0x0c17,0x0c1c,0x0c29,
0x0c24,0x0c34,0x0c30,0x0c3b,0x0c38,0x0c45,0x0c3f,0x0c4b,
0x0c43,0x0c4e,0x0c48,0x0c52,0x0c4b,0x0c51,0x0c4e,0x0c50,
0x0c4f,0x0c52,0x0c48,0x0c52,0x0c46,0x0c4e,0x0c46,0x0c45,
0x0c42,0x0c40,0x0c3a,0x0c3d,0x0c32,0x0c36,0x0c29,0x0c2c,
0x0c24,0x0c21,0x0c1c,0x0c17,0x0c10,0x0c0c,0x0c07,0x0c01,
0x0bfa,0x0bf4,0x0bef,0x0be5,0x0be6,0x0bd3,0x0bdb,0x0bc2,
0x0bdf,0x0c61,0x0d0e,0x0d9e,0x0e3d,0x0ec8,0x0f60,0x0fe6,
0x1070,0x10f7,0x1172,0x11fb,0x126c,0x12ec,0x135b,0x13d1,
0x143d,0x14ab,0x1511,0x157a,0x15da,0x163e,0x1697,0x16f6,
0x174c,0x17a3,0x17f6,0x1847,0x1896,0x18e1,0x192b,0x1976,
0x19b5,0x1a02,0x1a14,0x1929,0x1813,0x170a,0x1605,0x1508,
0x1408,0x131e,0x121d,0x1147,0x1049,0x0f7c,0x0e8d,0x0dc3,
0x0ce3,0x0c1e,0x0b46,0x0a8c,0x09ba,0x0908,0x0841,0x0792,
0x06db,0x062a,0x0585,0x04d3,0x0437,0x0390,0x02f5,0x025b,
0x01c2,0x0131,0x009d,0x0015,0xff88,0xff6d,0xffa1,0xffb3,
0xffe6,0xfff6,0x0022,0x003b,0x005d,0x0079,0x0098,0x00b5,
0x00cd,0x00f1,0x0100,0x0128,0x0135,0x0156,0x016d,0x0180,
0x01a1,0x01ad,0x01ca,0x01de,0x01f4,0x0205,0x021d,0x022e,
0x0244,0x0255,0x0265,0x0279,0x028b,0x0299,0x02af,0x0282,
0x01e5,0x0151,0x00c1,0x002b,0xffa9,0xff1a,0xfe95,0xfe16,
0xfd8f,0xfd1a,0xfc9a,0xfc25,0xfbaf,0xfb3f,0xface,0xfa63,
0xf9f9,0xf98f,0xf92c,0xf8c8,0xf867,0xf80b,0xf7ae,0xf753,
0xf6ff,0xf6a5,0xf656,0xf602,0xf5b8,0xf564,0xf51f,0xf4d5,
0xf487,0xf44d,0xf3fe,0xf3c5,0xf382,0xf342,0xf30b,0xf2ca,
0xf295,0xf25c,0xf227,0xf1f0,0xf1c1,0xf18b,0xf15f,0xf12e,
0xf102,0xf0d7,0xf0ab,0xf082,0xf05c,0xf034,0xf00e,0xefec,
0xefca,0xefa3,0xef8b,0xef61,0xef4e,0xef27,0xef14,0xeef0,
0xeee0,0xeebd,0xeeaf,0xee8d,0xee85,0xee63,0xee55,0xee43,
0xee28,0xee26,0xee06,0xee01,0xedea,0xede1,0xedce,0xedc9,
0xedb2,0xedb3,0xeda0,0xed9a,0xed91,0xed84,0xed84,0xed74,
0xed76,0xed6b,0xed67,0xed61,0xed60,0xed59,0xed5a,0xed56,
0xed51,0xed55,0xed4c,0xed56,0xed4c,0xed57,0xed4d,0xed57,
0xed56,0xed55,0xed60,0xed5a,0xed63,0xed66,0xed68,0xed6e,
0xed76,0xed76,0xed82,0xed82,0xed8e,0xed91,0xed9c,0xed9e,
0xedab,0xedae,0xedbe,0xedbc,0xedcf,0xedd3,0xedda,0xedec,
0xeded,0xedfd,0xee07,0xee0c,0xee1e,0xee22,0xee35,0xee39,
0xee4e,0xee4c,0xee99,0xef55,0xeffe,0xf0b4,0xf158,0xf202,
0xf2a5,0xf341,0xf3e6,0xf476,0xf516,0xf5a3,0xf637,0xf6c4,
0xf74f,0xf7d6,0xf85e,0xf8dc,0xf960,0xf9dd,0xfa52,0xfad2,
0xfb3f,0xfbb9,0xfc25,0xfc94,0xfd02,0xfd67,0xfdd5,0xfe31,
0xfe9e,0xfef4,0xff5c,0xffb0,0x0011,0x0063,0x00bf,0x010f,
0x0165,0x01b2,0x0203,0x0250,0x029a,0x02e6,0x032b,0x0376,
0x03b4,0x03fe,0x043b,0x047b,0x04ba,0x04f7,0x0533,0x056b,
0x05a5,0x05db,0x0612,0x0647,0x0678,0x06ab,0x06dc,0x0709,
0x0739,0x0765,0x0791,0x07bc,0x07e3,0x080f,0x0831,0x085d,
0x087c,0x08a6,0x08c3,0x08e8,0x090b,0x0926,0x0949,0x0966,
0x0983,0x099e,0x09be,0x09d2,0x09f3,0x0a06,0x0a21,0x0a39,
0x0a4d,0x0a67,0x0a77,0x0a90,0x0aa1,0x0ab4,0x0ac6,0x0ad7,
0x0aeb,0x0af7,0x0b0c,0x0b15,0x0b26,0x0b36,0x0b3d,0x0b50,
0x0b58,0x0b66,0x0b6f,0x0b7c,0x0bef,0x0cad,0x0d54,0x0dfd,
0x0ea3,0x0f42,0x0fde,0x1078,0x1108,0x119e,0x1225,0x12b4,
0x133c,0x13b5,0x1442,0x14ae,0x1535,0x159f,0x161c,0x1682,
0x16f5,0x1758,0x17c3,0x1823,0x1888,0x18e2,0x193e,0x1997,
0x19ed,0x1a3f,0x1a91,0x1add,0x1b2f,0x1b6f,0x1bc6,0x1b8d,
0x1a7a,0x1972,0x186e,0x176d,0x167a,0x157d,0x1494,0x13a4,
0x12c2,0x11db,0x1104,0x1024,0x0f57,0x0e80,0x0dbc,0x0cec,
0x0c2e,0x0b6d,0x0ab0,0x09fb,0x0945,0x0894,0x07e8,0x0741,
0x0699,0x05f8,0x0557,0x04c2,0x0422,0x0399,0x02fa,0x0276,
0x01e7,0x015e,0x00db,0x0059,0xffd7,0xff64,0xfede,0xfe71,
0xfdf5,0xfd8c,0xfd13,0xfcae,0xfc40,0xfbda,0xfb74,0xfb11,
0xfab1,0xfa52,0xf9f6,0xf99e,0xf941,0xf8f2,0xf899,0xf84a,
0xf7fa,0xf7ad,0xf760,0xf719,0xf6ce,0xf689,0xf645,0xf604,
0xf5c0,0xf586,0xf542,0xf509,0xf4d0,0xf496,0xf461,0xf498,
0xf512,0xf584,0xf5ed,0xf660,0xf6c4,0xf734,0xf792,0xf7ff,
0xf858,0xf8bd,0xf91c,0xf972,0xf9d7,0xfa23,0xfa85,0xfad4,
0xfb27,0xfb7c,0xfbc8,0xfc19,0xfc66,0xfcac,0xfcfd,0xfd3b,
0xfd8d,0xfdc6,0xfe12,0xfe50,0xfe92,0xfed1,0xff0c,0xff4d,
0xff83,0xffc2,0xfff5,0x009e,0x017e,0x025d,0x0324,0x0402,
0x04bd,0x058f,0x0646,0x070a,0x07be,0x0873,0x0923,0x09d0,
0x0a74,0x0b1a,0x0bba,0x0c54,0x0cef,0x0d81,0x0e12,0x0e9f,
0x0f2a,0x0fb0,0x1031,0x10b4,0x112d,0x11a5,0x1223,0x128c,
0x1303,0x136a,0x13da,0x143d,0x14a5,0x1502,0x1562,0x14ec,
0x13d6,0x12ff,0x11ff,0x112c,0x1038,0x0f6a,0x0e86,0x0dba,
0x0ce6,0x0c1c,0x0b54,0x0a91,0x09cf,0x0919,0x085e,0x07ad,
0x06fd,0x064d,0x05aa,0x0501,0x0462,0x03c4,0x0329,0x0291,
0x0201,0x016a,0x00e5,0x0054,0xffd0,0xff4c,0xfeca,0xfe4b,
0xfdd4,0xfd55,0xfce4,0xfc6d,0xfbfe,0xfb8d,0xfb28,0xfab7,
0xfa56,0xf9f2,0xf98b,0xf931,0xf8d0,0xf876,0xf81f,0xf7c7,
0xf772,0xf71f,0xf6d1,0xf680,0xf638,0xf5ea,0xf5a2,0xf55d,
0xf515,0xf4d5,0xf492,0xf453,0xf415,0xf3da,0xf39d,0xf368,
0xf32d,0xf2f8,0xf2c6,0xf290,0xf263,0xf22e,0xf206,0xf1d0,
0xf1ad,0xf17e,0xf157,0xf12d,0xf106,0xf0e6,0xf0bb,0xf09f,
0xf077,0xf05b,0xf039,0xf01c,0xefff,0xefe1,0xefc9,0xefac,
0xef92,0xef7d,0xef63,0xef4f,0xef3a,0xef22,0xef10,0xef01,
0xeee7,0xeee0,0xeec4,0xeec2,0xeea6,0xeea4,0xee8c,0xee88,
0xee77,0xee70,0xee64,0xee58,0xee55,0xee45,0xee45,0xee3a,
0xee33,0xee2f,0xee27,0xee25,0xee20,0xee1e,0xee18,0xee17,
0xee15,0xee12,0xee16,0xee0f,0xee14,0xee11,0xee14,0xee15,
0xee16,0xee19,0xee1b,0xee1e,0xee21,0xee27,0xee25,0xee32,
0xee2e,0xee3b,0xee3a,0xee45,0xee47,0xee51,0xee54,0xee5b,
0xee78,0xef15,0xefc9,0xf06e,0xf118,0xf1ba,0xf25e,0xf2f7,
0xf396,0xf428,0xf4c0,0xf551,0xf5dd,0xf668,0xf6f4,0xf776,
0xf7fc,0xf879,0xf8f9,0xf972,0xf9ed,0xfa5f,0xfad6,0xfb46,
0xfbb5,0xfc1f,0xfc8d,0xfcf1,0xfd59,0xfdbd,0xfe18,0xfe80,
0xfed6,0xff34,0xff8f,0xffe0,0x003a,0x009b,0x0188,0x027e,
0x036d,0x0459,0x053f,0x061d,0x06fe,0x07cb,0x08a5,0x0969,
0x0a37,0x0af5,0x0bb9,0x0c6c,0x0d26,0x0dd4,0x0e82,0x0f2d,
0x0fcd,0x1072,0x110c,0x11a1,0x123f,0x12c6,0x135b,0x13df,
0x1468,0x14eb,0x1567,0x15e7,0x165b,0x16d3,0x1747,0x17b1,
0x181f,0x188f,0x1880,0x1783,0x16a3,0x15bc,0x14d9,0x1403,
0x1323,0x1258,0x1185,0x10ba,0x0ff6,0x0f30,0x0e76,0x0db7,
0x0cff,0x0c4e,0x0b9d,0x0af3,0x0a47,0x09a3,0x0901,0x0860,
0x07ca,0x072e,0x069b,0x0609,0x0579,0x04f0,0x0466,0x03e1,
0x035e,0x02dd,0x0260,0x01e8,0x0169,0x00fe,0x0081,0x0018,
0xffab,0xff39,0xfedb,0xfe69,0xfe0c,0xfdaa,0xfd44,0xfcf1,
0xfc8b,0xfc38,0xfbdd,0xfb8b,0xfb35,0xfae7,0xfa92,0xfa4b,
0xf9fd,0xf9b4,0xf96c,0xf924,0xf8e1,0xf89e,0xf85e,0xf81b,
0xf7e4,0xf79f,0xf76b,0xf72f,0xf6f6,0xf6c2,0xf68f,0xf655,
0xf62b,0xf5f3,0xf5ca,0xf595,0xf582,0xf5e8,0xf66d,0xf6de,
0xf75b,0xf7cc,0xf841,0xf8af,0xf91e,0xf986,0xf9f4,0xfa56,
0xfabb,0xfb21,0xfb7e,0xfbdf,0xfc3a,0xfc93,0xfcf0,0xfd43,
0xfd9b,0xfdec,0xfe3b,0xfe92,0xfed8,0xff29,0xff73,0xffb7,
0x0006,0x0043,0x008d,0x00ce,0x010b,0x0153,0x0187,0x01cc,
0x0205,0x023b,0x027c,0x02ab,0x02e7,0x0318,0x034e,0x0380,
0x03b0,0x03e3,0x040c,0x0440,0x0468,0x0497,0x04bd,0x04eb,
0x0510,0x0538,0x0560,0x0581,0x05ab,0x05c8,0x05f1,0x060d,
0x062f,0x0651,0x066d,0x068d,0x06aa,0x06c6,0x06e0,0x0700,
0x0714,0x0731,0x0747,0x075f,0x0779,0x078b,0x07a6,0x07b4,
0x07d0,0x07dc,0x07fa,0x07fe,0x081f,0x0823,0x083c,0x084a,
0x0857,0x0869,0x0875,0x0884,0x0892,0x089d,0x08ad,0x08b5,
0x08c4,0x08cb,0x08d7,0x08e2,0x08e9,0x08f5,0x08fc,0x0904,
0x090e,0x0912,0x091b,0x0922,0x0926,0x092e,0x0932,0x0939,
0x093b,0x0942,0x0946,0x0947,0x0951,0x09b8,0x0a74,0x0b10,
0x0bb8,0x0c54,0x0cef,0x0d86,0x0e16,0x0eab,0x0f32,0x0fbe,
0x103f,0x10c4,0x1140,0x11bd,0x1232,0x12aa,0x131a,0x138a,
0x13f5,0x145e,0x14c2,0x1529,0x1585,0x15e8,0x163d,0x169e,
0x16ea,0x1749,0x178f,0x17e6,0x182f,0x1879,0x18c1,0x1906,
0x194c,0x1988,0x19cf,0x1928,0x1809,0x1700,0x15f6,0x14f3,
0x13f6,0x12fa,0x1209,0x1119,0x102e,0x0f4a,0x0e67,0x0d8d,
0x0cb5,0x0be2,0x0b13,0x0a48,0x0985,0x08bd,0x0807,0x0744,
0x0694,0x05e0,0x052e,0x048a,0x03de,0x033a,0x02a0,0x01fc,
0x0169,0x00d1,0x003c,0xffb4,0xff20,0xfea1,0xfe11,0xfd97,
0xfd0f,0xfc9a,0xfc19,0xfba7,0xfb2f,0xfac1,0xfa4d,0xf9e2,
0xf97a,0xf90f,0xf8ad,0xf84b,0xf7e7,0xf78d,0xf72f,0xf6d5,
0xf67f,0xf62d,0xf5d1,0xf58c,0xf533,0xf4ef,0xf49f,0xf457,
0xf414,0xf3c7,0xf390,0xf341,0xf30b,0xf2c8,0xf28c,0xf258,
0xf216,0xf1e7,0xf1a8,0xf17f,0xf142,0xf11a,0xf0e3,0xf0b9,
0xf08d,0xf05e,0xf036,0xf00e,0xefe3,0xefc5,0xef96,0xef7a,
0xef54,0xef31,0xef17,0xeef1,0xeed9,0xeeb7,0xeea1,0xee82,
0xee6d,0xee4e,0xee3f,0xee1d,0xee16,0xedf3,0xedec,0xedce,
0xedc4,0xedad,0xeda2,0xed91,0xed7e,0xed78,0xed61,0xed61,
0xed4a,0xed48,0xed37,0xed35,0xed24,0xed8f,0xee37,0xeecf,
0xef6c,0xeffe,0xf098,0xf125,0xf1b8,0xf23c,0xf2cb,0xf34c,
0xf3d6,0xf44f,0xf4d3,0xf54a,0xf5c8,0xf63a,0xf6b3,0xf721,
0xf795,0xf7fe,0xf86c,0xf8d6,0xf93b,0xf9a3,0xfa02,0xfa63,
0xfac5,0xfb1e,0xfb7e,0xfbd0,0xfc2f,0xfc7b,0xfcd9,0xfd21,
0xfd79,0xfdc0,0xfe16,0xfe22,0xfdc0,0xfd64,0xfd0c,0xfcab,
0xfc5e,0xfbfe,0xfbb7,0xfb5d,0xfb16,0xfabf,0xfa81,0xfa29,
0xf9f0,0xf99e,0xf961,0xf91c,0xf8dc,0xf89b,0xf861,0xf820,
0xf7eb,0xf7ac,0xf77b,0xf73d,0xf710,0xf6d6,0xf6a9,0xf677,
0xf646,0xf61a,0xf5ec,0xf5c1,0xf597,0xf56d,0xf548,0xf51d,
0xf4fa,0xf4d5,0xf4b0,0xf494,0xf46b,0xf44e,0xf431,0xf40d,
0xf3f6,0xf3d5,0xf3bc,0xf3a2,0xf386,0xf373,0xf353,0xf344,
0xf327,0xf316,0xf301,0xf2ea,0xf2dc,0xf2c5,0xf2b6,0xf2a7,
0xf292,0xf28b,0xf273,0xf26d,0xf25a,0xf24f,0xf247,0xf234,
0xf230,0xf222,0xf218,0xf212,0xf207,0xf200,0xf1f6,0xf204,
0xf295,0xf338,0xf3d4,0xf46c,0xf507,0xf596,0xf629,0xf6b8,
0xf73e,0xf7cc,0xf848,0xf8d7,0xf94a,0xf9d1,0xfa44,0xfac0,
0xfb34,0xfba8,0xfc16,0xfc86,0xfcf0,0xfd5d,0xfdc0,0xfe28,
0xfe88,0xfeea,0xff49,0xffa2,0x0002,0x0051,0x00b0,0x00fd,
0x0155,0x01a4,0x01f3,0x0240,0x028d,0x02d3,0x0321,0x0360,
0x03aa,0x03ea,0x042b,0x046d,0x04ab,0x04e4,0x0525,0x055b,
0x0594,0x05cf,0x05fd,0x0639,0x0667,0x069c,0x06ca,0x06fc,
0x0725,0x0758,0x077e,0x07ab,0x07d8,0x07f7,0x082a,0x0844,
0x0872,0x0891,0x08b9,0x08d4,0x08fe,0x0915,0x093b,0x0955,
0x0975,0x098f,0x09ae,0x09c4,0x09e3,0x09f7,0x0a14,0x0a26,
0x0a42,0x0a55,0x0a69,0x0a80,0x0a91,0x0aa9,0x0ab5,0x0acd,
0x0ad4,0x0af0,0x0af6,0x0b0b,0x0b16,0x0b25,0x0b32,0x0b41,
0x0b49,0x0b58,0x0b61,0x0b6b,0x0b78,0x0b7c,0x0b8d,0x0b8c,
0x0b9c,0x0b9d,0x0ba8,0x0bad,0x0bb4,0x0bb8,0x0bbf,0x0bc3,
0x0bc6,0x0bcd,0x0bce,0x0bd4,0x0bd3,0x0bd9,0x0bd9,0x0bdb,
0x0bdf,0x0bdc,0x0be1,0x0bde,0x0be1,0x0bdd,0x0be1,0x0bdc,
0x0be0,0x0bdb,0x0bda,0x0bd9,0x0bd5,0x0bd6,0x0bcf,0x0bd0,
0x0bc8,0x0bcb,0x0bc3,0x0bc1,0x0bbf,0x0bb6,0x0bb3,0x0bb3,
0x0ba7,0x0ba8,0x0ba1,0x0b98,0x0b99,0x0b8e,0x0b8b,0x0b87,
0x0b79,0x0b7d,0x0b6b,0x0b71,0x0b5f,0x0b60,0x0b54,0x0b4e,
0x0b49,0x0b3e,0x0b39,0x0b32,0x0b24,0x0b25,0x0b14,0x0b13,
0x0b06,0x0b00,0x0af9,0x0aea,0x0aec,0x0ad6,0x0ad9,0x0ac9,
0x0ac4,0x0ab9,0x0aaf,0x0aa9,0x0a9b,0x0a9a,0x0a86,0x0a88,
0x0a72,0x0a74,0x0a61,0x0a61,0x0a4b,0x0a4f,0x0a33,0x0a72,
0x0b0f,0x0ba8,0x0c44,0x0cce,0x0d6a,0x0dec,0x0e7c,0x0efc,
0x0f83,0x0ffe,0x107c,0x10f4,0x1168,0x11dc,0x124a,0x12b9,
0x131f,0x138a,0x13e9,0x144b,0x14b0,0x1502,0x1566,0x15b3,
0x160d,0x1660,0x16ab,0x16fd,0x1744,0x178f,0x17d6,0x1819,
0x185a,0x189d,0x18d9,0x1917,0x1952,0x1965,0x1869,0x174e,
0x163f,0x152c,0x142b,0x1325,0x122c,0x1133,0x103f,0x0f52,
0x0e6c,0x0d84,0x0cac,0x0bc7,0x0afc,0x0a21,0x0958,0x0891,
0x07c8,0x070d,0x064c,0x0596,0x04e0,0x042f,0x0385,0x02d7,
0x0237,0x0192,0x00f3,0x005d,0xffc0,0xff31,0xfe9e,0xfe10,
0xfd89,0xfcfe,0xfc7c,0xfbfb,0xfbe7,0xfc21,0xfc45,0xfc73,
0xfc9a,0xfcc5,0xfce8,0xfd15,0xfd37,0xfd5f,0xfd84,0xfda3,
0xfdcf,0xfde7,0xfe13,0xfe2a,0xfe55,0xfe6a,0xfe94,0xfea5,
0xfed0,0xfee4,0xff04,0xff22,0xff38,0xff59,0xff6c,0xff8c,
0xffa1,0xffbd,0xffd1,0xffec,0x0000,0x0018,0x0028,0x0049,
0x004e,0x007a,0x000d,0xfec4,0xfd9d,0xfc62,0xfb3f,0xfa1d,
0xf8fc,0xf7f0,0xf6da,0xf5d4,0xf4d2,0xf3d4,0xf2e2,0xf1ea,
0xf107,0xf01a,0xef41,0xee60,0xed92,0xecb8,0xebfa,0xeb28,
0xea6e,0xe9ad,0xe8fa,0xe844,0xe797,0xe6ee,0xe647,0xe5a9,
0xe505,0xe475,0xe3d7,0xe351,0xe2b9,0xe238,0xe1b2,0xe12c,
0xe0b5,0xe036,0xdfc1,0xdf50,0xdedb,0xde76,0xde04,0xdda7,
0xdd3c,0xdce1,0xdc82,0xdc2a,0xdbd1,0xdb7e,0xdb2e,0xdadc,
0xda94,0xda49,0xda02,0xd9be,0xd97c,0xd93d,0xd902,0xd8c4,
0xd891,0xd854,0xd82a,0xd7f0,0xd7c5,0xd796,0xd769,0xd744,
0xd718,0xd6f7,0xd6cd,0xd6b3,0xd689,0xd679,0xd646,0xd6ae,
0xd7eb,0xd916,0xda4b,0xdb66,0xdc96,0xdda1,0xdec4,0xdfd0,
0xe0da,0xe1e6,0xe2e1,0xe3e2,0xe4d6,0xe5cc,0xe6b8,0xe7a2,
0xe888,0xe967,0xea46,0xeb19,0xebf2,0xecbd,0xed8e,0xee4f,
0xef16,0xefd2,0xf093,0xf145,0xf200,0xf2a8,0xf35f,0xf3fb,
0xf4b1,0xf546,0xf5ee,0xf685,0xf71e,0xf7b9,0xf843,0xf8dc,
0xf961,0xf9ef,0xfa73,0xfafa,0xfb76,0xfbfc,0xfc70,0xfcef,
0xfd5e,0xfddb,0xfe42,0xfebc,0xff20,0xff8e,0xfff3,0x005c,
0x00ba,0x0121,0x0179,0x01d8,0x0237,0x0288,0x02e5,0x0335,
0x0387,0x03de,0x0424,0x047c,0x04ba,0x050f,0x054e,0x059a,
0x05db,0x061e,0x0660,0x069d,0x06df,0x0715,0x0756,0x078c,
0x07c2,0x07ff,0x0828,0x0869,0x088e,0x08cc,0x08ee,0x0928,
0x094d,0x097c,0x09a7,0x09cf,0x09f7,0x0a23,0x0a3e,0x0a70,
0x0a88,0x0ab6,0x0ace,0x0af4,0x0b12,0x0b30,0x0b52,0x0b67,
0x0b8a,0x0b9f,0x0bbe,0x0bd4,0x0bee,0x0c04,0x0c1d,0x0c2f,
0x0c46,0x0c5b,0x0c6d,0x0c81,0x0c91,0x0ca5,0x0cb4,0x0cc4,
0x0cd5,0x0cdf,0x0cf5,0x0cf7,0x0d0f,0x0d0f,0x0d28,0x0d26,
0x0d39,0x0d40,0x0d46,0x0d54,0x0d58,0x0d60,0x0d6b,0x0d6b,
0x0d77,0x0d78,0x0d81,0x0d82,0x0d8a,0x0d89,0x0d91,0x0d91,
0x0d96,0x0d95,0x0d9c,0x0d96,0x0d9f,0x0d99,0x0d9a,0x0da0,
0x0d93,0x0da3,0x0d90,0x0d9e,0x0d91,0x0d97,0x0d90,0x0d8f,
0x0d8a,0x0d88,0x0d86,0x0d80,0x0d7f,0x0d75,0x0d77,0x0d6d,
0x0d6c,0x0d63,0x0d62,0x0d57,0x0d58,0x0d48,0x0d4d,0x0d3d,
0x0d3c,0x0d32,0x0d2c,0x0d27,0x0d1c,0x0d17,0x0d0d,0x0d08,
0x0cfa,0x0cfa,0x0ce7,0x0ceb,0x0cd9,0x0cd6,0x0cc9,0x0cc2,
0x0cb8,0x0cb0,0x0ca4,0x0c9a,0x0c97,0x0c82,0x0c85,0x0c70,
0x0c6b,0x0c61,0x0c56,0x0c4c,0x0c3f,0x0c3a,0x0c28,0x0c27,
0x0c11,0x0c10,0x0bfd,0x0bf8,0x0beb,0x0be0,0x0bd5,0x0bc8,
0x0bc0,0x0bb1,0x0ba9,0x0b9b,0x0b91,0x0b86,0x0b79,0x0b70,
0x0b5f,0x0b5b,0x0b48,0x0b43,0x0b32,0x0b2a,0x0b1c,0x0b11,
0x0b05,0x0afb,0x0aea,0x0ae4,0x0ad3,0x0acb,0x0abd,0x0ab0,
0x0aaa,0x0a95,0x0a95,0x0a7b,0x0a7c,0x0a67,0x0a60,0x0a51,
0x0a47,0x0a3a,0x0a30,0x0a21,0x0a16,0x0a0b,0x09fe,0x09f4,
0x09e6,0x09db,0x09cf,0x09c2,0x09b9,0x09ab,0x099f,0x0995,
0x0987,0x097e,0x096f,0x0967,0x0954,0x0975,0x0a94,0x0bde,
0x0d12,0x0e44,0x0f71,0x1092,0x11b2,0x12c6,0x13d3,0x14e1,
0x15df,0x16df,0x17d1,0x18c5,0x19ad,0x1a8f,0x1b72,0x1c44,
0x1d21,0x1de4,0x1eb7,0x1f70,0x2039,0x20ea,0x21a3,0x2250,
0x22fd,0x23a0,0x2445,0x24df,0x2579,0x260e,0x2699,0x272d,
0x27ab,0x283e,0x28a2,0x294e,0x28bb,0x268b,0x246d,0x224f,
0x204b,0x1e42,0x1c50,0x1a60,0x1880,0x16a7,0x14d8,0x1315,
0x1159,0x0fa6,0x0e02,0x0c5b,0x0acc,0x0937,0x07b9,0x0637,
0x04c5,0x0357,0x01ef,0x009a,0xff3f,0xfdf5,0xfcad,0xfb70,
0xfa38,0xf907,0xf7dd,0xf6b8,0xf5a0,0xf488,0xf37c,0xf26e,
0xf171,0xf070,0xef7b,0xee8b,0xed9d,0xecbc,0xebd8,0xeb02,
0xea28,0xe95c,0xe893,0xe7c9,0xe70d,0xe64f,0xe598,0xe4e8,
0xe438,0xe390,0xe2ed,0xe24d,0xe1af,0xe11b,0xe082,0xdffc,
0xdf65,0xdee9,0xde5c,0xdde5,0xdd62,0xdced,0xdc76,0xdc07,
0xdb99,0xdb2c,0xdac6,0xda60,0xda05,0xd9a0,0xd949,0xd8f0,
0xd89b,0xd85a,0xd8a8,0xd8fe,0xd959,0xd9b4,0xda04,0xda60,
0xdab0,0xdb09,0xdb57,0xdbae,0xdbfb,0xdc50,0xdc9a,0xdced,
0xdd37,0xdd89,0xddd1,0xde1f,0xde67,0xdeb1,0xdefd,0xdf3f,
0xdf8e,0xdfcd,0xe01a,0xe05a,0xe0a2,0xe0e2,0xe128,0xe16b,
0xe1aa,0xe1ec,0xe22c,0xe26e,0xe2ab,0xe2e8,0xe326,0xe364,
0xe3a3,0xe3dc,0xe418,0xe452,0xe48c,0xe4c9,0xe4ff,0xe536,
0xe573,0xe5a0,0xe5e3,0xe610,0xe64b,0xe67d,0xe6b3,0xe6e7,
0xe717,0xe74f,0xe77e,0xe7b2,0xe7e6,0xe80f,0xe849,0xe86f,
0xe8ab,0xe8ce,0xe907,0xe92b,0xe961,0xe98a,0xe9ba,0xe9e5,
0xea11,0xea3d,0xea67,0xea95,0xeabb,0xeaea,0xeb10,0xeba9,
0xec83,0xed47,0xee13,0xeed8,0xef95,0xf058,0xf107,0xf1c3,
0xf272,0xf31e,0xf3cd,0xf46e,0xf515,0xf5b2,0xf653,0xf6e9,
0xf780,0xf815,0xf8a2,0xf932,0xf9b9,0xfa45,0xfac3,0xfb4c,
0xfbc5,0xfc45,0xfcbc,0xfd36,0xfda7,0xfe1b,0xfe89,0xfef7,
0xff61,0xffca,0x002f,0x0090,0x00f5,0x0150,0x01b5,0x0204,
0x026a,0x02b5,0x0314,0x0361,0x03b2,0x0408,0x044b,0x04a1,
0x04e3,0x052e,0x0577,0x05b5,0x05fe,0x063b,0x067f,0x06b9,
0x06f8,0x0731,0x076c,0x07a5,0x07d8,0x0810,0x0843,0x0876,
0x08a8,0x08d5,0x0907,0x0931,0x0960,0x0988,0x09b3,0x09de,
0x0a00,0x0a2c,0x0a4b,0x0a74,0x0a94,0x0ab9,0x0ad6,0x0afa,
0x0b16,0x0b32,0x0b55,0x0b6d,0x0b87,0x0ba7,0x0bb9,0x0bd7,
0x0bef,0x0bfe,0x0c22,0x0c27,0x0c48,0x0c57,0x0c69,0x0c7f,
0x0c8b,0x0ca1,0x0cac,0x0cc3,0x0cc8,0x0cdf,0x0ce5,0x0cf8,
0x0d00,0x0d0e,0x0d15,0x0d26,0x0d29,0x0d39,0x0d3c,0x0d48,
0x0d4d,0x0d56,0x0d5d,0x0d61,0x0d69,0x0d6e,0x0d6f,0x0d7a,
0x0d79,0x0d7e,0x0d83,0x0d82,0x0d88,0x0d88,0x0d88,0x0d8b,
0x0d8b,0x0d8a,0x0d8e,0x0d86,0x0d90,0x0d84,0x0d8e,0x0d82,
0x0d88,0x0d81,0x0d81,0x0d7e,0x0d79,0x0d76,0x0d73,0x0d6f,
0x0d6c,0x0d65,0x0d63,0x0d5d,0x0d55,0x0d56,0x0d49,0x0d48,
0x0d43,0x0d39,0x0d35,0x0d2f,0x0d24,0x0d20,0x0d1a,0x0d0d,
0x0d10,0x0cfb,0x0cff,0x0cef,0x0ced,0x0ce1,0x0cda,0x0ccf,
0x0cc9,0x0cbf,0x0cb6,0x0cb0,0x0ca2,0x0c9c,0x0c90,0x0c8a,
0x0c7b,0x0c77,0x0c67,0x0c60,0x0c58,0x0c49,0x0c45,0x0c34,
0x0c2c,0x0c25,0x0c13,0x0c12,0x0bfd,0x0bfb,0x0be9,0x0be4,
0x0bd5,0x0c00,0x0cac,0x0d38,0x0dd8,0x0e64,0x0ef7,0x0f7e,
0x100a,0x1089,0x110d,0x1188,0x1206,0x127a,0x12ef,0x1360,
0x13d0,0x1438,0x14a4,0x1504,0x156d,0x15c6,0x162b,0x167e,
0x16db,0x172e,0x1781,0x17d4,0x181f,0x186d,0x18b4,0x1900,
0x193f,0x1988,0x19c2,0x1a05,0x1a43,0x1a78,0x1ab5,0x1aef,
0x1ab1,0x1986,0x1873,0x175e,0x1652,0x154a,0x1448,0x134a,
0x1250,0x1161,0x106b,0x0f8d,0x0e99,0x0dc9,0x0cde,0x0c14,
0x0b39,0x0a6f,0x09a4,0x08dc,0x0820,0x075b,0x06ab,0x05ec,
0x0543,0x048f,0x03e8,0x0340,0x029c,0x0200,0x0162,0x00cb,
0x0036,0xffa4,0xff17,0xfe8b,0xfe02,0xfd7e,0xfcf7,0xfcb5,
0xfce4,0xfd10,0xfd37,0xfd64,0xfd8b,0xfdb3,0xfddb,0xfe00,
0xfe27,0xfe49,0xfe70,0xfe90,0xfeb6,0xfed3,0xfefb,0xff13,
0xff3a,0xff54,0xff73,0xff92,0xffac,0xffcc,0xffe5,0x0001,
0x001a,0x0034,0x004e,0x0067,0x0080,0x0095,0x00ae,0x00c4,
0x00db,0x00f0,0x0104,0x0119,0x012c,0x0146,0x0119,0x0086,
0xffed,0xff64,0xfed6,0xfe4b,0xfdc7,0xfd45,0xfcc0,0xfc4c,
0xfbc9,0xfb59,0xfadb,0xfa74,0xf9fd,0xf996,0xf928,0xf8bd,
0xf863,0xf7f4,0xf79f,0xf738,0xf6e1,0xf686,0xf630,0xf5da,
0xf589,0xf535,0xf4ea,0xf49b,0xf451,0xf40a,0xf3bf,0xf380,
0xf338,0xf2f8,0xf2ba,0xf27b,0xf242,0xf200,0xf1d2,0xf18e,
0xf167,0xf128,0xf0fa,0xf0cd,0xf094,0xf06f,0xf03b,0xf017,
0xefe5,0xefc7,0xef92,0xef79,0xef4c,0xef2e,0xef09,0xeee7,
0xeeca,0xeea9,0xee8d,0xee71,0xee52,0xee3d,0xee1f,0xee09,
0xedf3,0xedd9,0xedc9,0xedb0,0xed9e,0xed8c,0xed78,0xed6a,
0xed58,0xed4a,0xed3c,0xed2c,0xed24,0xed12,0xed0b,0xed00,
0xecf1,0xecf1,0xecdf,0xece0,0xecd2,0xecd1,0xecc8,0xecc2,
0xecc3,0xecb6,0xecbc,0xecb3,0xecb2,0xecb1,0xecb0,0xecad,
0xecb0,0xecae,0xecaf,0xecb1,0xecb4,0xecb3,0xecb9,0xecb8,
0xecbe,0xecc2,0xecc6,0xeccc,0xecce,0xecd6,0xecda,0xece1,
0xece9,0xecf0,0xecf2,0xed01,0xed03,0xed0e,0xed15,0xed1f,
0xed28,0xed32,0xed39,0xed46,0xed4c,0xed5d,0xed5f,0xed72,
0xed75,0xed89,0xed8d,0xed9f,0xeda5,0xedb6,0xedbe,0xedd0,
0xedd7,0xede9,0xedf3,0xee01,0xee0f,0xee1c,0xee28,0xee3b,
0xee43,0xee57,0xee60,0xee71,0xee81,0xee8e,0xee9c,0xeeab,
0xeebc,0xeec6,0xef13,0xefce,0xf081,0xf132,0xf1e0,0xf288,
0xf32f,0xf3d1,0xf472,0xf50c,0xf5a9,0xf63b,0xf6d2,0xf75f,
0xf7ed,0xf879,0xf8fa,0xf987,0xf9ff,0xfa8b,0xfaf7,0xfb82,
0xfbea,0xfc67,0xfcd8,0xfd44,0xfdb4,0xfe1f,0xfe84,0xfef2,
0xff4c,0xffb8,0x000d,0x0072,0x00cc,0x0120,0x017f,0x01ce,
0x0226,0x0275,0x02c8,0x0311,0x0363,0x03a7,0x03f6,0x0438,
0x047f,0x04c4,0x0501,0x0548,0x0581,0x05c5,0x05fa,0x063b,
0x066c,0x06a8,0x06dc,0x0714,0x0744,0x0778,0x07a8,0x07d7,
0x0808,0x0831,0x0861,0x0888,0x08b6,0x08d7,0x0906,0x0923,
0x0952,0x096e,0x0996,0x09b4,0x09d9,0x09f4,0x0a1a,0x0a2e,
0x0a57,0x0a67,0x0a8e,0x0a9d,0x0ac1,0x0ad0,0x0af1,0x0aff,
0x0b1d,0x0b2d,0x0b47,0x0b57,0x0b6d,0x0b7d,0x0b8f,0x0ba2,
0x0bb0,0x0bc5,0x0bce,0x0be3,0x0be8,0x0bfb,0x0c08,0x0c10,
0x0c24,0x0c24,0x0c3a,0x0c38,0x0c4b,0x0c4f,0x0c59,0x0c62,
0x0c63,0x0c74,0x0c6e,0x0c82,0x0c7b,0x0c8a,0x0c85,0x0ca3,
0x0d3a,0x0dea,0x0e89,0x0f33,0x0fc4,0x106c,0x10f3,0x1193,
0x1213,0x12ab,0x1327,0x13b4,0x142a,0x14b0,0x1525,0x159c,
0x1612,0x167a,0x16f0,0x1754,0x17c1,0x181e,0x1888,0x18dd,
0x1941,0x1996,0x19ec,0x1a43,0x1a8e,0x1ae7,0x1b27,0x1b7c,
0x1bbe,0x1c03,0x1c4c,0x1c84,0x1ccc,0x1d05,0x1d1d,0x1c23,
0x1b09,0x19fb,0x18f0,0x17ec,0x16e7,0x15f5,0x14f0,0x1410,
0x1313,0x123a,0x114e,0x1071,0x0f9b,0x0ec1,0x0df3,0x0d23,
0x0c5e,0x0b96,0x0ad9,0x0a18,0x0964,0x08ab,0x07fe,0x074e,
0x06a5,0x05fe,0x055e,0x04bc,0x0426,0x0385,0x02f9,0x025f,
0x01d7,0x0146,0x00c2,0x0039,0xffbc,0xff37,0xfebd,0xfe44,
0xfdc9,0xfd59,0xfce4,0xfc73,0xfc0c,0xfb9d,0xfb36,0xfad3,
0xfa6e,0xfa0e,0xf9af,0xf954,0xf8f9,0xf8a1,0xf84d,0xf7f7,
0xf7a7,0xf759,0xf707,0xf6c0,0xf673,0xf62d,0xf5e7,0xf5a1,
0xf562,0xf51e,0xf4e2,0xf4a1,0xf46b,0xf42a,0xf3f8,0xf3bd,
0xf38a,0xf354,0xf325,0xf2f0,0xf2c5,0xf2fe,0xf38a,0xf3f5,
0xf477,0xf4df,0xf558,0xf5c3,0xf634,0xf69a,0xf706,0xf767,
0xf7d5,0xf82d,0xf897,0xf8ee,0xf94e,0xf9a8,0xfa01,0xfa55,
0xfab1,0xfafc,0xfb58,0xfb9c,0xfbf4,0xfc3b,0xfc8b,0xfccf,
0xfd1c,0xfd5e,0xfda8,0xfde8,0xfe2c,0xfe6b,0xfead,0xfee6,
0xff2a,0xff5b,0xffa3,0xffc9,0x0047,0x0126,0x01fb,0x02d6,
0x039e,0x0473,0x0534,0x05f7,0x06b7,0x076e,0x0824,0x08d5,
0x0982,0x0a2b,0x0ad0,0x0b71,0x0c0d,0x0ca6,0x0d3f,0x0dcc,
0x0e5f,0x0ee7,0x0f6b,0x0ff7,0x106e,0x10f3,0x116a,0x11e0,
0x1258,0x12c5,0x1334,0x13a0,0x1407,0x146d,0x14d0,0x152d,
0x1590,0x15e2,0x1646,0x166d,0x1593,0x1493,0x139d,0x12ad,
0x11bf,0x10d6,0x0ff6,0x0f13,0x0e40,0x0d64,0x0c97,0x0bc8,
0x0b00,0x0a3e,0x0977,0x08c4,0x0803,0x0754,0x06a2,0x05f2,
0x054f,0x04a0,0x0409,0x035e,0x02d0,0x022d,0x019f,0x0109,
0x007f,0xfff4,0xff6a,0xfee7,0xfe67,0xfde2,0xfd6f,0xfcec,
0xfc7b,0xfc07,0xfb93,0xfb29,0xfab8,0xfa53,0xf9e8,0xf986,
0xf922,0xf8c3,0xf865,0xf80b,0xf7b1,0xf75c,0xf703,0xf6b5,
0xf65f,0xf617,0xf5c6,0xf57f,0xf532,0xf4ee,0xf4a8,0xf466,
0xf423,0xf3e5,0xf3a7,0xf36a,0xf330,0xf2f5,0xf2c1,0xf287,
0xf258,0xf222,0xf1f1,0xf1c2,0xf195,0xf163,0xf13e,0xf10c,
0xf0eb,0xf0bd,0xf09d,0xf070,0xf054,0xf029,0xf00e,0xefed,
0xefc9,0xefb2,0xef8e,0xef75,0xef5c,0xef3b,0xef2b,0xef0c,
0xeef7,0xeee5,0xeec8,0xeebc,0xeea2,0xee93,0xee83,0xee6d,
0xee63,0xee4c,0xee45,0xee34,0xee27,0xee1e,0xee0d,0xee0a,
0xedf7,0xedf6,0xedea,0xeddf,0xedde,0xedd1,0xedd0,0xedc8,
0xedc1,0xedc2,0xedb7,0xedb9,0xedb6,0xedb0,0xedb3,0xedad,
0xedaf,0xedb0,0xedae,0xedb2,0xedaf,0xedb4,0xedb5,0xedb4,
0xedbf,0xedb8,0xedc8,0xedc1,0xedcc,0xedce,0xedd2,0xeddc,
0xeddb,0xede8,0xede9,0xedf3,0xedfc,0xedfd,0xee0c,0xee10,
0xee16,0xee26,0xee26,0xee35,0xee3e,0xee45,0xee50,0xee5d,
0xee62,0xeee0,0xef97,0xf042,0xf0f1,0xf195,0xf23d,0xf2d8,
0xf37c,0xf413,0xf4aa,0xf543,0xf5ce,0xf662,0xf6ec,0xf773,
0xf7fc,0xf87b,0xf900,0xf979,0xf9f7,0xfa72,0xfae1,0xfb5d,
0xfbc3,0xfc40,0xfc9f,0xfd16,0xfd72,0xfde0,0xfe3c,0xfea5,
0xfefd,0xff61,0xffb5,0x0014,0x0064,0x00bb,0x0113,0x0158,
0x01eb,0x02e2,0x03d2,0x04bd,0x05a6,0x0680,0x0766,0x082e,
0x0911,0x09ce,0x0aa0,0x0b5f,0x0c1c,0x0cdd,0x0d8a,0x0e41,
0x0eed,0x0f94,0x103a,0x10db,0x1177,0x1211,0x12a4,0x1337,
0x13c1,0x144e,0x14d3,0x1556,0x15d5,0x1654,0x16c7,0x1741,
0x17b2,0x181f,0x188f,0x18f0,0x1962,0x19b6,0x1a2c,0x1a4d,
0x1988,0x1887,0x179e,0x16ae,0x15cd,0x14e7,0x140f,0x1331,
0x1261,0x118e,0x10c5,0x0ffa,0x0f39,0x0e78,0x0dbb,0x0d05,
0x0c4e,0x0b9f,0x0aef,0x0a49,0x09a0,0x0900,0x085f,0x07c3,
0x0729,0x0699,0x05ff,0x0578,0x04e4,0x045d,0x03db,0x0350,
0x02d6,0x0253,0x01db,0x0161,0x00ee,0x0077,0x0007,0xff9d,
0xff2e,0xfec4,0xfe61,0xfdf6,0xfd99,0xfd35,0xfcd8,0xfc7d,
0xfc22,0xfbce,0xfb74,0xfb23,0xfad0,0xfa81,0xfa33,0xf9e7,
0xf99e,0xf954,0xf90f,0xf8c8,0xf889,0xf843,0xf808,0xf7c5,
0xf78c,0xf74f,0xf718,0xf6db,0xf6ab,0xf671,0xf63f,0xf60d,
0xf5dc,0xf5ac,0xf580,0xf54e,0xf529,0xf4f5,0xf50b,0xf58f,
0xf60e,0xf682,0xf706,0xf773,0xf7ed,0xf85c,0xf8cb,0xf938,
0xf9a5,0xfa0b,0xfa75,0xfad5,0xfb3b,0xfb98,0xfbfa,0xfc52,
0xfcb2,0xfd02,0xfd63,0xfdab,0xfe0b,0xfe51,0xfeaa,0xfeee,
0xff44,0xff85,0xffd6,0x0012,0x0062,0x009c,0x00e7,0x0122,
0x0164,0x01a4,0x01da,0x021e,0x0250,0x028d,0x02c3,0x02f6,
0x032d,0x0361,0x0391,0x03c6,0x03f1,0x0422,0x0450,0x0479,
0x04aa,0x04cd,0x04ff,0x051e,0x054a,0x056f,0x0594,0x05ba,
0x05dc,0x05fd,0x0621,0x063e,0x0662,0x067c,0x069d,0x06b8,
0x06d4,0x06f4,0x0707,0x0729,0x073a,0x075b,0x076d,0x0786,
0x079b,0x07b0,0x07c8,0x07d8,0x07f1,0x07fb,0x0819,0x081d,
0x083d,0x0842,0x0858,0x0867,0x0872,0x0884,0x088f,0x08a0,
0x08a8,0x08ba,0x08bf,0x08d0,0x08d6,0x08e5,0x08eb,0x08f7,
0x08ff,0x0904,0x0912,0x0912,0x0924,0x0920,0x0930,0x092d,
0x093a,0x093d,0x0941,0x0948,0x0949,0x094f,0x0953,0x0956,
0x095b,0x095b,0x0960,0x0961,0x0963,0x09d3,0x0a82,0x0b23,
0x0bc9,0x0c5f,0x0d01,0x0d8e,0x0e25,0x0eaf,0x0f3d,0x0fc2,
0x1048,0x10c5,0x1145,0x11bd,0x1236,0x12a8,0x1318,0x1388,
0x13f0,0x145a,0x14bd,0x1522,0x157d,0x15e0,0x1634,0x1692,
0x16e4,0x1735,0x178a,0x17d4,0x181f,0x1870,0x18a9,0x18ff,
0x1932,0x197e,0x19b4,0x19fc,0x19c1,0x189b,0x178d,0x1681,
0x1576,0x1474,0x137a,0x127b,0x118d,0x109e,0x0faf,0x0ed3,
0x0dea,0x0d14,0x0c3b,0x0b67,0x0a9b,0x09d1,0x090a,0x084b,
0x0788,0x06d5,0x0619,0x056d,0x04bd,0x040f,0x036e,0x02c6,
0x022c,0x018d,0x00f5,0x0060,0xffcb,0xff46,0xfeae,0xfe33,
0xfda3,0xfd27,0xfca3,0xfc2b,0xfbad,0xfb3a,0xfac3,0xfa54,
0xf9e4,0xf97a,0xf90c,0xf8a9,0xf842,0xf7e2,0xf781,0xf724,
0xf6c9,0xf66f,0xf61a,0xf5c2,0xf574,0xf521,0xf4d2,0xf48b,
0xf438,0xf3fa,0xf3ad,0xf369,0xf329,0xf2e6,0xf2a8,0xf26b,
0xf22c,0xf1f7,0xf1b8,0xf18b,0xf14c,0xf121,0xf0e6,0xf0bc,
0xf08a,0xf05d,0xf035,0xefff,0xefe2,0xefb1,0xef8e,0xef67,
0xef42,0xef21,0xeefe,0xeedb,0xeec0,0xee9c,0xee86,0xee62,
0xee4c,0xee2f,0xee1b,0xedfc,0xedeb,0xedd0,0xedbe,0xeda8,
0xed98,0xed7f,0xed76,0xed5d,0xed54,0xed40,0xed34,0xed27,
0xed18,0xed10,0xed02,0xecf9,0xecf0,0xece4,0xecde,0xecd7,
0xeccc,0xecce,0xecbe,0xed2d,0xedd6,0xee71,0xef14,0xefa9,
0xf043,0xf0d1,0xf169,0xf1f1,0xf27f,0xf306,0xf38c,0xf411,
0xf48f,0xf50f,0xf588,0xf603,0xf67a,0xf6ec,0xf760,0xf7ce,
0xf83b,0xf8aa,0xf90d,0xf979,0xf9da,0xfa3e,0xfa9e,0xfafe,
0xfb57,0xfbb8,0xfc0a,0xfc65,0xfcb9,0xfd0a,0xfd62,0xfda9,
0xfdfe,0xfe47,0xfe81,0xfe31,0xfdd1,0xfd74,0xfd1c,0xfcc1,
0xfc6e,0xfc17,0xfbc8,0xfb72,0xfb2a,0xfad8,0xfa94,0xfa43,
0xfa03,0xf9b9,0xf977,0xf935,0xf8f4,0xf8b3,0xf87d,0xf837,
0xf807,0xf7c6,0xf795,0xf75c,0xf729,0xf6f5,0xf6c3,0xf692,
0xf667,0xf631,0xf611,0xf5d9,0xf5b9,0xf58a,0xf566,0xf53e,
0xf519,0xf4f5,0xf4d2,0xf4af,0xf48d,0xf471,0xf44b,0xf437,
0xf411,0xf3f9,0xf3dd,0xf3c1,0xf3aa,0xf390,0xf37a,0xf361,
0xf34e,0xf334,0xf326,0xf30d,0xf2fd,0xf2e9,0xf2d9,0xf2c8,
0xf2b8,0xf2a9,0xf299,0xf28f,0xf27b,0xf278,0xf260,0xf261,
0xf24c,0xf248,0xf23c,0xf236,0xf227,0xf227,0xf217,0xf216,
0xf212,0xf203,0xf274,0xf317,0xf3ba,0xf453,0xf4ec,0xf586,
0xf60e,0xf6ac,0xf729,0xf7c2,0xf83d,0xf8c9,0xf945,0xf9c7,
0xfa41,0xfabc,0xfb30,0xfba9,0xfc18,0xfc86,0xfcfa,0xfd59,
0xfdd0,0xfe29,0xfe97,0xfef1,0xff57,0xffb0,0x0010,0x0063,
0x00bf,0x0112,0x0169,0x01b7,0x020a,0x0254,0x02a7,0x02e9,
0x033a,0x037c,0x03c4,0x0407,0x0449,0x048a,0x04cb,0x0502,
0x0548,0x0578,0x05ba,0x05ee,0x0621,0x0661,0x0688,0x06c3,
0x06f0,0x071e,0x0751,0x077d,0x07ab,0x07d0,0x0801,0x0824,
0x084f,0x0876,0x0897,0x08c2,0x08e1,0x0904,0x0928,0x0944,
0x0968,0x0985,0x09a1,0x09c1,0x09da,0x09f4,0x0a13,0x0a25,
0x0a46,0x0a57,0x0a6f,0x0a88,0x0a9a,0x0ab1,0x0ac5,0x0ad6,
0x0ae9,0x0afe,0x0b09,0x0b20,0x0b2c,0x0b3b,0x0b4c,0x0b58,
0x0b64,0x0b77,0x0b7a,0x0b90,0x0b8f,0x0ba5,0x0ba4,0x0bba,
0x0bb7,0x0bca,0x0bca,0x0bd4,0x0bde,0x0bdf,0x0be9,0x0bee,
0x0bf1,0x0bfa,0x0bfb,0x0c00,0x0c03,0x0c08,0x0c08,0x0c0e,
0x0c0e,0x0c10,0x0c14,0x0c0f,0x0c18,0x0c0e,0x0c19,0x0c11,
0x0c12,0x0c16,0x0c0c,0x0c17,0x0c09,0x0c10,0x0c0a,0x0c05,
0x0c0a,0x0bfc,0x0c05,0x0bf7,0x0bfc,0x0bf1,0x0bf2,0x0bea,
0x0be9,0x0be2,0x0bdc,0x0bda,0x0bd3,0x0bcd,0x0bca,0x0bc0,
0x0bbe,0x0bb4,0x0baf,0x0bab,0x0b9f,0x0b9e,0x0b92,0x0b8e,
0x0b87,0x0b7e,0x0b7b,0x0b6c,0x0b68,0x0b62,0x0b57,0x0b52,
0x0b48,0x0b3d,0x0b3d,0x0b29,0x0b29,0x0b1d,0x0b13,0x0b0e,
0x0afe,0x0afd,0x0aee,0x0ae9,0x0ade,0x0ad3,0x0acd,0x0ac1,
0x0ab8,0x0aad,0x0aa6,0x0a9b,0x0a90,0x0a8a,0x0a7c,0x0a76,
0x0a68,0x0a60,0x0a56,0x0a4d,0x0a40,0x0a38,0x0a2c,0x0a21,
0x0a2c,0x0ab8,0x0b56,0x0bef,0x0c81,0x0d13,0x0da0,0x0e2b,
0x0eaf,0x0f34,0x0fb0,0x1031,0x10a6,0x1120,0x118f,0x1204,
0x126a,0x12de,0x1339,0x13ac,0x1402,0x146b,0x14bc,0x1522,
0x1570,0x15ce,0x1617,0x1671,0x16b6,0x1707,0x174e,0x1794,
0x17dd,0x181d,0x185e,0x189e,0x18d7,0x1917,0x1948,0x198d,
0x1990,0x189a,0x1772,0x166a,0x154e,0x144f,0x1343,0x1248,
0x114a,0x1059,0x0f65,0x0e7c,0x0d95,0x0cb4,0x0bd6,0x0aff,
0x0a29,0x095b,0x0890,0x07ca,0x0707,0x0648,0x058f,0x04d6,
0x0425,0x0377,0x02c9,0x0227,0x017d,0x00e4,0x0040,0xffaf,
0xff14,0xfe85,0xfdf5,0xfd68,0xfce3,0xfc57,0xfbde,0xfb50,
0xfb18,0xfb47,0xfb74,0xfba1,0xfbd0,0xfbf8,0xfc23,0xfc4d,
0xfc75,0xfc9e,0xfcc6,0xfcea,0xfd13,0xfd34,0xfd5b,0xfd7d,
0xfda2,0xfdc0,0xfde6,0xfe02,0xfe24,0xfe45,0xfe5f,0xfe7f,
0xfea0,0xfeb5,0xfeda,0xfeef,0xff0d,0xff26,0xff3f,0xff5b,
0xff6f,0xff8f,0xff9c,0xffc0,0xffc7,0xffef,0xfff2,0x001c,
0xffb6,0xfe6b,0xfd42,0xfc0a,0xfae8,0xf9c3,0xf8aa,0xf793,
0xf689,0xf57e,0xf47d,0xf382,0xf28c,0xf199,0xf0b6,0xefca,
0xeef0,0xee11,0xed40,0xec6c,0xebaa,0xeadb,0xea22,0xe963,
0xe8aa,0xe7fe,0xe749,0xe6a3,0xe600,0xe55b,0xe4c3,0xe429,
0xe392,0xe30a,0xe273,0xe1f8,0xe165,0xe0ef,0xe06a,0xdff5,
0xdf7e,0xdf0a,0xde9e,0xde2e,0xddc9,0xdd5f,0xdd01,0xdca0,
0xdc43,0xdbeb,0xdb92,0xdb41,0xdaef,0xdaa1,0xda56,0xda0c,
0xd9c8,0xd981,0xd942,0xd904,0xd8c5,0xd88e,0xd855,0xd81f,
0xd7ee,0xd7b9,0xd78d,0xd75d,0xd736,0xd709,0xd6e5,0xd6bb,
0xd69e,0xd67a,0xd658,0xd640,0xd61b,0xd60a,0xd5eb,0xd5d9,
0xd697,0xd7ec,0xd910,0xda4c,0xdb6b,0xdc96,0xddae,0xdeca,
0xdfdc,0xe0ea,0xe1f2,0xe2f6,0xe3f5,0xe4ea,0xe5e8,0xe6cc,
0xe7c5,0xe89e,0xe98c,0xea62,0xeb40,0xec14,0xece3,0xedb4,
0xee7a,0xef3e,0xf000,0xf0bd,0xf176,0xf22e,0xf2dc,0xf38c,
0xf438,0xf4db,0xf584,0xf620,0xf6c0,0xf757,0xf7f0,0xf883,
0xf913,0xf9a3,0xfa29,0xfab7,0xfb35,0xfbbe,0xfc36,0xfcb8,
0xfd2d,0xfda9,0xfe1a,0xfe8d,0xff00,0xff66,0xffd9,0x0038,
0x00a7,0x0103,0x0167,0x01c8,0x0221,0x0283,0x02d5,0x0332,
0x0381,0x03db,0x0426,0x047a,0x04c4,0x050e,0x055c,0x059f,
0x05ea,0x062b,0x0671,0x06ae,0x06f1,0x072c,0x076c,0x07a4,
0x07de,0x0818,0x0849,0x0887,0x08af,0x08ee,0x0913,0x094c,
0x0975,0x09a2,0x09d4,0x09f6,0x0a27,0x0a4b,0x0a70,0x0a9e,
0x0ab9,0x0ae6,0x0b01,0x0b28,0x0b45,0x0b66,0x0b87,0x0b9f,
0x0bc2,0x0bd9,0x0bf6,0x0c11,0x0c27,0x0c42,0x0c58,0x0c6d,
0x0c88,0x0c96,0x0cb1,0x0cbe,0x0cd6,0x0ce3,0x0cf8,0x0d05,
0x0d17,0x0d27,0x0d32,0x0d42,0x0d4f,0x0d5c,0x0d68,0x0d72,
0x0d7e,0x0d84,0x0d94,0x0d97,0x0da4,0x0da7,0x0db4,0x0db4,
0x0dc4,0x0dbe,0x0dcd,0x0dcd,0x0dd4,0x0dd4,0x0ddf,0x0dd8,
0x0de5,0x0de0,0x0de1,0x0dea,0x0de3,0x0de9,0x0de7,0x0de7,
0x0de7,0x0de8,0x0de3,0x0de7,0x0de1,0x0de0,0x0de1,0x0dd6,
0x0de0,0x0dcb,0x0dd8,0x0dc9,0x0dcd,0x0dc3,0x0dc4,0x0db5,
0x0dbf,0x0dab,0x0db0,0x0da5,0x0da1,0x0d99,0x0d97,0x0d89,
0x0d8c,0x0d7b,0x0d7b,0x0d6f,0x0d6a,0x0d61,0x0d5a,0x0d51,
0x0d4c,0x0d3b,0x0d3f,0x0d29,0x0d2b,0x0d1a,0x0d17,0x0d07,
0x0d05,0x0cf7,0x0cef,0x0ce6,0x0cdb,0x0cd1,0x0cc7,0x0cc0,
0x0caf,0x0cad,0x0c99,0x0c98,0x0c88,0x0c7d,0x0c78,0x0c62,
0x0c64,0x0c4c,0x0c4d,0x0c39,0x0c33,0x0c24,0x0c1b,0x0c0d,
0x0c06,0x0bf8,0x0bec,0x0be2,0x0bd4,0x0bc9,0x0bbf,0x0bb1,
0x0ba8,0x0b99,0x0b8f,0x0b81,0x0b78,0x0b69,0x0b60,0x0b52,
0x0b46,0x0b3a,0x0b2e,0x0b21,0x0b19,0x0b08,0x0afe,0x0af0,
0x0ae5,0x0adb,0x0ac9,0x0ac6,0x0aae,0x0aad,0x0a98,0x0a93,
0x0a80,0x0a7a,0x0a69,0x0a60,0x0a52,0x0a46,0x0a3c,0x0a2c,
0x0a24,0x0a14,0x0a09,0x0a00,0x09ec,0x09eb,0x09d3,0x09d3,
0x09bc,0x09ba,0x09a5,0x09a3,0x098c,0x0989,0x0978,0x096c,
0x0965,0x0952,0x094b,0x093d,0x0934,0x0923,0x0920,0x0908,
0x09e4,0x0b31,0x0c67,0x0d9f,0x0ec9,0x0ff2,0x110e,0x122a,
0x1336,0x1446,0x1549,0x1647,0x173e,0x1835,0x1916,0x1a0c,
0x1adc,0x1bc5,0x1c91,0x1d64,0x1e32,0x1ef0,0x1fb6,0x206e,
0x2125,0x21d8,0x2282,0x232a,0x23ce,0x246b,0x2508,0x259b,
0x262e,0x26bb,0x2743,0x27cc,0x2846,0x28cd,0x293d,0x29b5,
0x287a,0x2618,0x2414,0x21ea,0x1fe5,0x1dde,0x1bec,0x19f9,
0x1819,0x1642,0x146f,0x12ad,0x10ee,0x0f3f,0x0d92,0x0bf9,
0x0a59,0x08d2,0x0748,0x05cc,0x0455,0x02eb,0x0183,0x002a,
0xfed0,0xfd89,0xfc3d,0xfb00,0xf9cb,0xf893,0xf773,0xf648,
0xf530,0xf417,0xf30b,0xf1fe,0xf100,0xeffe,0xef0b,0xee18,
0xed2f,0xec48,0xeb69,0xea8e,0xe9ba,0xe8e9,0xe823,0xe755,
0xe69e,0xe5db,0xe52a,0xe476,0xe3c8,0xe320,0xe27a,0xe1dd,
0xe13d,0xe0ac,0xe013,0xdf87,0xdefc,0xde72,0xddf1,0xdd72,
0xdcf4,0xdc7e,0xdc07,0xdb98,0xdb29,0xdabf,0xda57,0xd9f5,
0xd992,0xd937,0xd8dc,0xd883,0xd832,0xd7d9,0xd792,0xd73e,
0xd730,0xd79c,0xd7f4,0xd856,0xd8b7,0xd911,0xd970,0xd9ca,
0xda23,0xda7f,0xdad7,0xdb29,0xdb89,0xdbd2,0xdc32,0xdc7c,
0xdcd6,0xdd20,0xdd7a,0xddbe,0xde16,0xde5f,0xdead,0xdefb,
0xdf43,0xdf92,0xdfd7,0xe022,0xe069,0xe0b3,0xe0f8,0xe13e,
0xe183,0xe1c5,0xe20d,0xe24b,0xe291,0xe2ce,0xe313,0xe350,
0xe38e,0xe3d2,0xe408,0xe44c,0xe486,0xe4bf,0xe503,0xe534,
0xe575,0xe5ab,0xe5e3,0xe61e,0xe654,0xe68d,0xe6c1,0xe6fb,
0xe72b,0xe764,0xe799,0xe7c5,0xe805,0xe82c,0xe865,0xe897,
0xe8c1,0xe8fe,0xe91f,0xe95d,0xe982,0xe9b4,0xe9e7,0xea0e,
0xea41,0xea69,0xea99,0xeac3,0xeaf1,0xeb1a,0xeb46,0xeb6f,
0xebab,0xec70,0xed3f,0xee0a,0xeed2,0xef92,0xf056,0xf10d,
0xf1c7,0xf279,0xf32d,0xf3d4,0xf483,0xf524,0xf5c8,0xf669,
0xf702,0xf79c,0xf833,0xf8be,0xf956,0xf9dc,0xfa6a,0xfaed,
0xfb75,0xfbee,0xfc75,0xfce8,0xfd68,0xfdd9,0xfe50,0xfebe,
0xff30,0xff96,0x0007,0x0065,0x00d1,0x0132,0x018f,0x01f5,
0x0248,0x02a9,0x02fe,0x0354,0x03ab,0x03f9,0x044d,0x0496,
0x04e9,0x0530,0x057b,0x05bf,0x0609,0x0649,0x068c,0x06cf,
0x0708,0x074c,0x0785,0x07bd,0x07fa,0x082a,0x086a,0x0893,
0x08d2,0x08fa,0x0930,0x095e,0x0988,0x09bc,0x09e1,0x0a0d,
0x0a38,0x0a5c,0x0a86,0x0aa8,0x0acd,0x0af3,0x0b12,0x0b37,
0x0b53,0x0b76,0x0b90,0x0bb0,0x0bcd,0x0be3,0x0c08,0x0c15,
0x0c39,0x0c49,0x0c63,0x0c7a,0x0c8a,0x0ca6,0x0cb1,0x0ccf,
0x0cd8,0x0cf1,0x0cfb,0x0d11,0x0d1b,0x0d2e,0x0d3b,0x0d48,
0x0d54,0x0d61,0x0d6b,0x0d7a,0x0d80,0x0d8d,0x0d91,0x0da2,
0x0da1,0x0db2,0x0db2,0x0dbb,0x0dc3,0x0dc5,0x0dcc,0x0dd1,
0x0dd3,0x0dda,0x0ddd,0x0ddf,0x0de2,0x0de3,0x0de6,0x0de6,
0x0de8,0x0de7,0x0de9,0x0de8,0x0de6,0x0de9,0x0de1,0x0de8,
0x0de0,0x0de1,0x0ddd,0x0dda,0x0dd6,0x0dd6,0x0dcd,0x0dd0,
0x0dc4,0x0dc8,0x0dbd,0x0dbc,0x0db4,0x0db0,0x0da9,0x0da5,
0x0d9e,0x0d97,0x0d91,0x0d8c,0x0d84,0x0d7a,0x0d79,0x0d6d,
0x0d65,0x0d63,0x0d50,0x0d54,0x0d43,0x0d40,0x0d33,0x0d2e,
0x0d21,0x0d1d,0x0d10,0x0d08,0x0cff,0x0cf4,0x0cec,0x0ce0,
0x0cd8,0x0ccb,0x0cc7,0x0cb4,0x0cb4,0x0c9e,0x0ca1,0x0c8b,
0x0c87,0x0c78,0x0c6f,0x0c65,0x0c58,0x0c4f,0x0c43,0x0c36,
0x0c2e,0x0c20,0x0c16,0x0c0a,0x0bff,0x0bf3,0x0be7,0x0bdc,
0x0bcf,0x0bd5,0x0c65,0x0cfd,0x0d97,0x0e27,0x0eb9,0x0f40,
0x0fcf,0x104d,0x10d2,0x1151,0x11c8,0x1245,0x12b5,0x132a,
0x1397,0x1402,0x146c,0x14d2,0x1530,0x1598,0x15ee,0x164f,
0x16a4,0x16fd,0x174e,0x179f,0x17f1,0x1837,0x1886,0x18cd,
0x190e,0x195a,0x1992,0x19d8,0x1a11,0x1a4f,0x1a86,0x1abd,
0x1af3,0x1b23,0x1a80,0x1948,0x183f,0x171f,0x1618,0x150d,
0x1409,0x130e,0x1211,0x1120,0x1030,0x0f44,0x0e64,0x0d7e,
0x0ca6,0x0bca,0x0afc,0x0a28,0x0964,0x0899,0x07d9,0x071c,
0x065f,0x05af,0x04f7,0x044f,0x039d,0x02fd,0x0258,0x01b5,
0x011f,0x0081,0xfff0,0xff5a,0xfed2,0xfe3f,0xfdbf,0xfd2f,
0xfcb9,0xfc2a,0xfbf5,0xfc1f,0xfc52,0xfc7c,0xfca9,0xfcd4,
0xfcfd,0xfd28,0xfd52,0xfd76,0xfda0,0xfdc6,0xfdeb,0xfe12,
0xfe33,0xfe56,0xfe7a,0xfe9a,0xfebd,0xfedc,0xfefc,0xff1c,
0xff38,0xff58,0xff73,0xff90,0xffad,0xffc8,0xffdf,0xffff,
0x000d,0x0035,0x003f,0x0060,0x0074,0x0089,0x00a3,0x00b4,
0x00ce,0x00de,0x00e7,0x0059,0xffcd,0xff3b,0xfeae,0xfe29,
0xfd9c,0xfd21,0xfc98,0xfc23,0xfba2,0xfb2e,0xfab7,0xfa4b,
0xf9d1,0xf971,0xf8fb,0xf89d,0xf832,0xf7d0,0xf771,0xf712,
0xf6b9,0xf65e,0xf604,0xf5b6,0xf559,0xf513,0xf4bc,0xf473,
0xf42b,0xf3db,0xf39d,0xf351,0xf311,0xf2d1,0xf28c,0xf256,
0xf212,0xf1e0,0xf1a0,0xf16f,0xf134,0xf106,0xf0ce,0xf0a1,
0xf071,0xf03f,0xf018,0xefe9,0xefc1,0xef98,0xef71,0xef4b,
0xef26,0xef05,0xeee1,0xeebf,0xeea2,0xee80,0xee65,0xee48,
0xee2b,0xee15,0xedf8,0xede2,0xedc9,0xedb5,0xed9d,0xed8c,
0xed74,0xed68,0xed4e,0xed46,0xed2d,0xed26,0xed14,0xed06,
0xecfb,0xecee,0xece3,0xecda,0xecd0,0xecc6,0xecbe,0xecb6,
0xecb0,0xeca7,0xeca6,0xec9c,0xec9c,0xec93,0xec97,0xec8c,
0xec90,0xec8c,0xec89,0xec8d,0xec89,0xec8c,0xec8b,0xec8c,
0xec90,0xec90,0xec95,0xec97,0xec99,0xeca1,0xeca1,0xeca9,
0xecae,0xecb0,0xecbe,0xecba,0xecca,0xecca,0xecd6,0xecdb,
0xece6,0xeceb,0xecf6,0xecfc,0xed07,0xed11,0xed19,0xed24,
0xed2e,0xed39,0xed43,0xed4f,0xed59,0xed67,0xed6d,0xed81,
0xed84,0xed9a,0xed9e,0xedb2,0xedb7,0xedce,0xedd0,0xede9,
0xeded,0xee01,0xee0c,0xee1a,0xee29,0xee39,0xee46,0xee52,
0xee63,0xee73,0xee7f,0xee91,0xee9f,0xeead,0xeec0,0xeeca,
0xeee1,0xeee9,0xef00,0xef09,0xef4e,0xf01c,0xf0bc,0xf17c,
0xf21f,0xf2d1,0xf371,0xf41d,0xf4b5,0xf559,0xf5ec,0xf687,
0xf717,0xf7aa,0xf837,0xf8c3,0xf946,0xf9d1,0xfa4b,0xfad3,
0xfb46,0xfbcc,0xfc36,0xfcb9,0xfd1e,0xfd98,0xfdfe,0xfe6f,
0xfed3,0xff3d,0xffa1,0xffff,0x0062,0x00bd,0x011a,0x0172,
0x01cd,0x021e,0x0277,0x02c2,0x0317,0x0364,0x03af,0x03fc,
0x0440,0x048a,0x04d0,0x0513,0x0553,0x0598,0x05d0,0x0613,
0x064e,0x0684,0x06c5,0x06f2,0x0731,0x075e,0x0799,0x07c4,
0x07fa,0x0826,0x0854,0x0884,0x08ac,0x08d9,0x0902,0x0927,
0x0954,0x0974,0x099c,0x09be,0x09e1,0x0a06,0x0a21,0x0a46,
0x0a61,0x0a81,0x0a9f,0x0aba,0x0ad3,0x0af0,0x0b0a,0x0b20,
0x0b39,0x0b4f,0x0b66,0x0b7a,0x0b93,0x0b9f,0x0bba,0x0bc7,
0x0bd9,0x0bee,0x0bf8,0x0c10,0x0c14,0x0c2f,0x0c30,0x0c47,
0x0c4d,0x0c5d,0x0c66,0x0c72,0x0c7b,0x0c86,0x0c8e,0x0c98,
0x0c9e,0x0ca8,0x0cac,0x0cb5,0x0cbb,0x0cbf,0x0cc7,0x0cc8,
0x0cd2,0x0ccf,0x0cd6,0x0cd8,0x0cdd,0x0cdd,0x0d4f,0x0dfc,
0x0ea4,0x0f40,0x0fdf,0x1079,0x110b,0x11a1,0x1229,0x12ba,
0x1337,0x13c7,0x1439,0x14c2,0x1530,0x15af,0x161b,0x168e,
0x16f9,0x1764,0x17c9,0x182f,0x188e,0x18ed,0x1947,0x19a3,
0x19f4,0x1a4e,0x1a9a,0x1aec,0x1b36,0x1b80,0x1bc8,0x1c0f,
0x1c4d,0x1c94,0x1ccc,0x1d0f,0x1d42,0x1d88,0x1d47,0x1c18,
0x1b14,0x19f1,0x18f4,0x17e0,0x16e7,0x15e7,0x14f0,0x13fc,
0x1311,0x1225,0x1144,0x1061,0x0f87,0x0eb0,0x0ddf,0x0d0e,
0x0c49,0x0b7d,0x0ac2,0x09ff,0x0949,0x0891,0x07df,0x0735,
0x0684,0x05e2,0x053d,0x049c,0x0401,0x0367,0x02d3,0x023f,
0x01ae,0x0123,0x0099,0x0014,0xff92,0xff10,0xfe94,0xfe1a,
0xfda0,0xfd2f,0xfcb6,0xfc4d,0xfbdc,0xfb70,0xfb0e,0xfa9e,
0xfa46,0xf9db,0xf981,0xf925,0xf8c7,0xf872,0xf81c,0xf7c5,
0xf776,0xf723,0xf6d8,0xf68c,0xf642,0xf5f9,0xf5b4,0xf56d,
0xf52e,0xf4eb,0xf4aa,0xf472,0xf42f,0xf3fd,0xf3bc,0xf38d,
0xf350,0xf320,0xf2ee,0xf2b9,0xf28f,0xf25e,0xf22e,0xf23c,
0xf2c3,0xf338,0xf3b6,0xf42b,0xf4a0,0xf515,0xf580,0xf5f5,
0xf658,0xf6cc,0xf72a,0xf795,0xf7f7,0xf857,0xf8b9,0xf916,
0xf970,0xf9cd,0xfa20,0xfa7b,0xfacf,0xfb1e,0xfb74,0xfbbf,
0xfc0e,0xfc5e,0xfca1,0xfcf1,0xfd33,0xfd7d,0xfdbd,0xfe04,
0xfe42,0xfe85,0xfec0,0xff04,0xff38,0xff7b,0xffad,0xffeb,
0x008b,0x0172,0x0246,0x031b,0x03e7,0x04b6,0x0575,0x063b,
0x06f2,0x07af,0x0860,0x0911,0x09ba,0x0a63,0x0b06,0x0ba5,
0x0c42,0x0cd7,0x0d6e,0x0dfe,0x0e8b,0x0f15,0x0f99,0x101e,
0x109c,0x1119,0x1195,0x1205,0x127d,0x12eb,0x1356,0x13c6,
0x1425,0x148f,0x14ec,0x154f,0x15aa,0x1602,0x165c,0x16ad,
0x16e2,0x15f9,0x14f9,0x1403,0x1309,0x121f,0x112f,0x104e,
0x0f66,0x0e93,0x0db0,0x0ce4,0x0c10,0x0b48,0x0a7f,0x09bf,
0x08fa,0x0847,0x078b,0x06d9,0x062d,0x057b,0x04db,0x0430,
0x0393,0x02f5,0x0258,0x01c7,0x012d,0x00a5,0x0011,0xff8e,
0xff05,0xfe80,0xfe01,0xfd84,0xfd05,0xfc93,0xfc18,0xfba8,
0xfb37,0xfacb,0xfa5d,0xf9f8,0xf990,0xf92c,0xf8d0,0xf86a,
0xf813,0xf7b6,0xf75e,0xf709,0xf6b4,0xf662,0xf616,0xf5c1,
0xf57f,0xf52b,0xf4ec,0xf4a2,0xf45d,0xf41f,0xf3d8,0xf3a0,
0xf35e,0xf325,0xf2eb,0xf2b3,0xf27a,0xf24a,0xf20f,0xf1e5,
0xf1af,0xf181,0xf155,0xf126,0xf0fe,0xf0d4,0xf0a9,0xf086,
0xf05b,0xf03f,0xf00f,0xeffa,0xefcd,0xefb7,0xef93,0xef77,
0xef5a,0xef40,0xef24,0xef0b,0xeef5,0xeed9,0xeec7,0xeeaf,
0xee98,0xee8e,0xee6b,0xee6a,0xee4b,0xee43,0xee34,0xee1d,
0xee1b,0xee01,0xedff,0xeded,0xede4,0xeddb,0xedcf,0xedca,
0xedbc,0xedbd,0xedaa,0xedb2,0xed9f,0xeda5,0xed97,0xed9a,
0xed91,0xed94,0xed8b,0xed8f,0xed8a,0xed8b,0xed8a,0xed8d,
0xed88,0xed8f,0xed8c,0xed91,0xed91,0xed96,0xed97,0xed9c,
0xeda0,0xeda3,0xedac,0xedab,0xedb6,0xedb8,0xedbf,0xedc8,
0xedca,0xedd4,0xedde,0xedde,0xedf3,0xedee,0xedfd,0xee06,
0xee0a,0xee1d,0xee1c,0xee2c,0xee35,0xee3c,0xee4e,0xee50,
0xee62,0xee6b,0xee70,0xeebb,0xef72,0xf020,0xf0d1,0xf177,
0xf220,0xf2c3,0xf360,0xf403,0xf496,0xf530,0xf5c0,0xf654,
0xf6e0,0xf768,0xf7f4,0xf875,0xf8f8,0xf97c,0xf9f1,0xfa71,
0xfae4,0xfb5b,0xfbcf,0xfc3e,0xfcab,0xfd17,0xfd7f,0xfde9,
0xfe4b,0xfeaf,0xff0d,0xff6c,0xffcc,0x001f,0x007c,0x00cd,
0x0126,0x0175,0x01c9,0x0212,0x02d2,0x03cb,0x04b3,0x059f,
0x067c,0x0760,0x0832,0x0908,0x09d4,0x0aa0,0x0b61,0x0c28,
0x0cda,0x0d9b,0x0e42,0x0efc,0x0f9e,0x1047,0x10e8,0x1183,
0x1223,0x12b4,0x1347,0x13d7,0x145f,0x14ea,0x1569,0x15ef,
0x1665,0x16e5,0x1756,0x17ca,0x183e,0x18a3,0x1918,0x1974,
0x19df,0x1a38,0x1aa1,0x1aef,0x1b56,0x1ac6,0x19bc,0x18d2,
0x17d5,0x16f4,0x15ff,0x1528,0x143f,0x136c,0x128f,0x11c2,
0x10f1,0x102c,0x0f62,0x0ea4,0x0de2,0x0d2c,0x0c75,0x0bc1,
0x0b14,0x0a66,0x09c1,0x091a,0x087e,0x07dd,0x0743,0x06af,
0x0615,0x058d,0x04f7,0x0470,0x03eb,0x0360,0x02e7,0x025e,
0x01ea,0x0169,0x00f9,0x007f,0x0011,0xffa0,0xff35,0xfec9,
0xfe65,0xfdf8,0xfd9f,0xfd31,0xfce0,0xfc79,0xfc23,0xfbc9,
0xfb73,0xfb1e,0xfad0,0xfa78,0xfa30,0xf9df,0xf996,0xf94f,
0xf904,0xf8c1,0xf87d,0xf839,0xf7fe,0xf7b8,0xf782,0xf740,
0xf70e,0xf6cb,0xf69d,0xf663,0xf62d,0xf602,0xf5c7,0xf5a0,
0xf569,0xf544,0xf50e,0xf4ee,0xf4bb,0xf498,0xf4a3,0xf533,
0xf5aa,0xf62b,0xf6a5,0xf71d,0xf794,0xf807,0xf878,0xf8e5,
0xf958,0xf9b7,0xfa2d,0xfa87,0xfaf2,0xfb50,0xfbb1,0xfc0c,
0xfc6e,0xfcc2,0xfd1c,0xfd74,0xfdc3,0xfe1c,0xfe67,0xfebb,
0xff03,0xff51,0xff9b,0xffe3,0x0028,0x006e,0x00af,0x00f4,
0x0131,0x0175,0x01ac,0x01f1,0x0223,0x0263,0x0297,0x02cf,
0x0306,0x0338,0x036f,0x039b,0x03d2,0x03fc,0x042f,0x0459,
0x0488,0x04ad,0x04df,0x0502,0x052c,0x0554,0x0574,0x05a1,
0x05c0,0x05e2,0x0607,0x0627,0x0646,0x0669,0x0681,0x06a6,
0x06be,0x06dc,0x06f7,0x0712,0x0729,0x0747,0x0759,0x0776,
0x0788,0x07a2,0x07b6,0x07cb,0x07df,0x07ef,0x0807,0x0815,
0x082a,0x0837,0x084c,0x0859,0x0867,0x087c,0x0881,0x0897,
0x089d,0x08ae,0x08b8,0x08c5,0x08d1,0x08d7,0x08e9,0x08e8,
0x08fe,0x08fb,0x090e,0x090c,0x091e,0x0919,0x092d,0x0928,
0x0936,0x0937,0x093e,0x0942,0x094a,0x094a,0x094f,0x0955,
0x0953,0x095f,0x0955,0x0964,0x095d,0x0963,0x0966,0x0962,
0x0969,0x09d3,0x0a85,0x0b27,0x0bc7,0x0c5f,0x0cff,0x0d8b,
0x0e23,0x0eab,0x0f39,0x0fbb,0x1044,0x10be,0x113e,0x11b7,
0x122c,0x12a1,0x130e,0x137e,0x13e6,0x1451,0x14b1,0x1516,
0x1572,0x15d0,0x162a,0x167f,0x16d8,0x1725,0x177a,0x17c2,
0x1813,0x1858,0x18a1,0x18e7,0x1922,0x196c,0x19a5,0x19e0,
0x1a1f,0x1a4d,0x19b7,0x187d,0x1778,0x1663,0x155a,0x1459,
0x1357,0x125d,0x116d,0x1074,0x0f94,0x0ea4,0x0dcb,0x0ce8,
0x0c12,0x0b3e,0x0a6f,0x09a5,0x08de,0x0818,0x075d,0x06a1,
0x05eb,0x0539,0x048a,0x03dd,0x033a,0x028f,0x01f5,0x0155,
0x00bd,0x0028,0xff94,0xff06,0xfe79,0xfdf4,0xfd68,0xfcea,
0xfc67,0xfbea,0xfb74,0xfaf6,0xfa88,0xfa11,0xf9a7,0xf934,
0xf8d0,0xf864,0xf804,0xf79c,0xf741,0xf6dc,0xf68a,0xf627,
0xf5d8,0xf580,0xf52b,0xf4e0,0xf48c,0xf443,0xf3f7,0xf3af,
0xf368,0xf325,0xf2e0,0xf29e,0xf263,0xf220,0xf1e8,0xf1ad,
0xf172,0xf141,0xf107,0xf0d3,0xf0a5,0xf06f,0xf044,0xf016,
0xefe6,0xefc1,0xef90,0xef6f,0xef41,0xef22,0xeefa,0xeed7,
0xeeb6,0xee95,0xee74,0xee58,0xee3a,0xee1c,0xee03,0xede8,
0xedd0,0xedb7,0xeda0,0xed8b,0xed75,0xed61,0xed4e,0xed3c,
0xed2a,0xed1a,0xed09,0xecfa,0xeced,0xece1,0xecd3,0xecc6,
0xecbf,0xecaf,0xecad,0xec9c,0xec99,0xec91,0xec89,0xec84,
0xec7d,0xec7a,0xec75,0xec71,0xec7c,0xed19,0xedb8,0xee5e,
0xeefa,0xef93,0xf02e,0xf0c0,0xf152,0xf1e3,0xf26f,0xf2f6,
0xf381,0xf3ff,0xf487,0xf4ff,0xf584,0xf5f4,0xf676,0xf6e1,