-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbcimgviewpatched.c
2056 lines (1925 loc) · 107 KB
/
bcimgviewpatched.c
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
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* Badly Coded Image Viewer BCImgView, a product of Badly Coded,
Inc. */
/* This is an example insecure program for CSci 4271 only: don't copy
code from here to any program that is supposed to work
correctly! */
/* The GUI parts of this program are modeled after an example image
viewer from an older version of the Gnome developer documentation,
which has a similar looking interface but supports standard image
formats without parsing them itself. It seems to not be currently
hosted on the Gnome developer web page, but it can still be found
in a few places online, like: */
/*
https://tecnocode.co.uk/misc/platform-demos/image-viewer.c.xhtml
https://web.archive.org/web/20210306070147/https://developer.gnome.org/gnome-devel-demos/stable/image-viewer.c.html.en
*/
/* Code that was copied verbatim from a non-buggy source is probably
less likely to contain vulnerabilities. However, you shouldn't
believe everything that comments in this code tell you; the
comments might have bugs too.
*/
#include <assert.h>
#include <errno.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sys/time.h>
#include <sys/resource.h>
#ifndef DISABLE_GUI
#include <gtk/gtk.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#endif
#ifndef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#endif
/* Struct containing information about a parsed image. The pixel data
is kept in an uncompressed format with red, green, and blue bytes
per pixel. Rows are each stored left to right and the rows are top
to bottom, with no padding. Sometimes a copy of this information is
also kept after the end of the pixel data. */
struct image_info {
long width; /* width in pixels */
long height; /* height in pixels */
void (*cleanup)(void); /* destructor callback */
unsigned char magic[8]; /* reserved for magic number */
time_t create_time; /* creation time, in Unix format */
unsigned char *pixels; /* pointer to pixel data */
};
/* Each Badly Coded image format is identified by a unique 8 bytes at
the beginning of the file. */
unsigned char bcraw_magic[8] =
{0x00, 0x42, 0x43, 0x52, 0xc3, 0x84, 0x57, 0x0a};
unsigned char bcprog_magic[8] =
{0x42, 0x43, 0x50, 0x52, 0xc3, 0x96, 0x47, 0x0a};
unsigned char bcflat_magic[8] =
{0x42, 0x43, 0x46, 0x4c, 0xc3, 0x84, 0x54, 0x0a};
/* To reduce the need for error checking code elsewhere in the
program, this wrapper around malloc() will print an error message
and then exit the program if an allocation fails. */
void *xmalloc(size_t size) {
void *p = malloc(size);
if (!p) {
fprintf(stderr, "Out of memory in allocation of %zd bytes\n", size);
exit(1);
}
return p;
}
/* Also as a way of shortening error reporting code, many branches
that detect something unexpected about the input file will copy a
description of the problem into this global, in addition to
returning a failure status. This is similar to how the standard
library uses "errno". */
const char *format_problem = 0;
/* Most numeric metadata in Badly Coded image files is stored as
big-endian 64-bit integers, commonly interpreted as unsigned. This
routine will read one such number from a stdio stream. Note that it
would not work correctly to just use fread() on its own if the
system is little-endian like x86-64. */
uint64_t read_u64_bigendian(FILE *fh) {
unsigned char bytes[8];
uint64_t x = 0;
int i, pos = 0;
size_t num_read;
num_read = fread(bytes, 8, 1, fh);
if (num_read != 1) {
format_problem = "short read of u64";
return -1;
}
for (i = 7; i >= 0; i--) {
x |= (uint64_t)bytes[i] << pos;
pos += 8;
}
return x;
}
/* Printf format to log information about each displayed image */
const char *logging_fmt = "Displaying image of width %ld and height %ld"
" from %s";
/* The tagged-data section of a Badly Coded image file contains
optional information of various kinds: each kind of data is
preceeded by a 4-byte type identifier and an 8-byte size (which
counts bytes after the type identifier and size). A type identifier
"DATA" represents the end of the tagged-data section, and is
followed directly by the image data without another size. The
function reads this region of a file, returning 1 if the format was
correct or 0 if there was an error. */
int process_tagged_data(FILE *fh, struct image_info *info) {
unsigned char ident[4];
unsigned long size;
size_t num_read;
for (;;) {
num_read = fread(ident, 4, 1, fh);
if (num_read != 1) {
format_problem = "short read of tag";
return 0;
}
if (!memcmp(ident, "DATA", 4)) {
/* We've reached the end of the tagged data */
return 1;
}
size = read_u64_bigendian(fh);
if (size == -1) {
return 0;
} else if (size > (1LL << 40)) {
/* Reject any ridiculously large tag sizes. Code for
specific tags may enforce more restrictive
limitations. */
format_problem = "tag too large";
return 0;
}
if (!memcmp(ident, "TIME", 4)) {
/* Creation time information */
if (size != 8) {
format_problem = "wrong size for TIME";
return 0;
}
info->create_time = read_u64_bigendian(fh);
} else if (!memcmp(ident, "FRMT", 4)) {
/* Format for file information printing */
char *fmt_buf = xmalloc(size + 1);
num_read = fread(fmt_buf, 1, size, fh);
if (num_read != size) {
format_problem = "short read of format";
return 0;
}
/* Add null terminator */
fmt_buf[size] = 0;
logging_fmt = fmt_buf;
} else {
/* An unrecognized tag is an error. */
format_problem = "unrecognized tag";
return 0;
}
}
}
/* Read the pixel data from a BCRAW image into the internal
format. For the sake of 8-byte alignment, 8 contiguous pixels (24
bytes) are read as a single unit. Returns 1 on success, or 0 for an
error such as a short read. */
int read_raw_data(FILE *fh, struct image_info *info) {
int row, col;
size_t num_read;
unsigned char *p = info->pixels;
for (row = 0; row < info->height; row++) {
for (col = 0; col < info->width - 8; col += 8) {
num_read = fread(p, 3, 8, fh);
if (num_read != 8) {
format_problem = "short read of raw data";
return 0;
}
p += 3*8;
}
/* This loop covers any pixels in a row left over after the
24-byte groups */
for (; col < info->width; col++) {
num_read = fread(p, 3, 1, fh);
if (num_read != 1) {
format_problem = "short read of raw data";
return 0;
}
p += 3;
}
}
return 1;
}
/* Desired alignment for the image_info data structure, in bytes. */
#ifdef __GNUC__
#define TRAILER_ALIGNMENT __alignof__(struct image_info)
#else
#define TRAILER_ALIGNMENT 8
#endif
/* Choose a location for the trailing image_info structure at the end
of the memory allocation for an image (after the pixels) with
proper alignment. This will add 0-7 bytes of padding in between the
pixels and the image_info trailer. */
struct image_info *trailer_location(unsigned char *base, size_t pixel_bytes) {
unsigned char *pixels_end = base + pixel_bytes;
unsigned long trailer_loc = (unsigned long)pixels_end;
unsigned long extra = trailer_loc % TRAILER_ALIGNMENT;
unsigned long pad = (TRAILER_ALIGNMENT - extra) % TRAILER_ALIGNMENT;
return (struct image_info *)(trailer_loc + pad);
}
/* Read a BCRAW image from a file into our internal format. Only the
magic number should have been read before calling this
routine. Returns a pointer to an image_info structure representing
the image, or a null pointer on failure such as invalid or
unsupported image contents. */
struct image_info *parse_bcraw(FILE *fh) {
struct image_info *info, *info_footer;
size_t num_read;
int num_bytes, is_ok;
long width, height;
unsigned char flags[8], *pixels;
num_read = fread(flags, 8, 1, fh);
if (num_read != 1) {
format_problem = "short read of flags";
return 0;
}
if (flags[0] != 0 || flags[1] != 0 || flags[2] != 0 || flags[3] != 0 ||
flags[4] != 0 || flags[5] != 0 || flags[6] != 0) {
format_problem = "reserved flags should be 0";
return 0;
}
if (flags[7] != 8) {
format_problem = "unsupported depth";
return 0; /* format should be 8, for 8 bit-deep RGB */
}
width = read_u64_bigendian(fh);
if (width == -1) return 0;
height = read_u64_bigendian(fh);
if (height == -1) return 0;
num_bytes = 3 * width * height;
pixels = xmalloc(num_bytes +
TRAILER_ALIGNMENT + sizeof(struct image_info));
info_footer = trailer_location(pixels, num_bytes);
info_footer->width = width;
info_footer->height = height;
info_footer->pixels = pixels;
info_footer->create_time = -1;
info_footer->cleanup = 0;
is_ok = process_tagged_data(fh, info_footer);
if (!is_ok) {
free(pixels);
return 0;
}
num_read = read_raw_data(fh, info_footer);
if (!num_read) {
free(pixels);
return 0;
}
/* Copy metadata from the footer into a new separate object */
info = xmalloc(sizeof(struct image_info));
info->width = info_footer->width;
info->height = info_footer->height;
info->create_time = info_footer->create_time;
info->pixels = info_footer->pixels;
info->cleanup = info_footer->cleanup;
return info;
}
/* Read and transform the image data from a BCPROG file into our
internal format. This happens in two steps. First, as the rows are
being read, they are re-ordered from the progressive on-disk order
into a normal sequential order. Then, the pixels in each row are
expanded from the 8-bit format to 24-bit format. */
int read_prog_data(FILE *fh, struct image_info *info) {
int row, col;
size_t num_read;
unsigned char *p = info->pixels;
/* Step 1: decode progressive row ordering to sequential */
/* Pass 1: multiples of 4 */
row = 0;
do {
unsigned char *row_start = p + row * 3 * info->width;
num_read = fread(row_start, info->width, 1, fh);
if (num_read != 1) {
format_problem = "short read of row";
return 0;
}
row += 4;
} while (row < info->height);
/* Pass 2: odd multiples of 2 */
row = 2;
do {
unsigned char *row_start = p + row * 3 * info->width;
num_read = fread(row_start, info->width, 1, fh);
if (num_read != 1) {
format_problem = "short read of row";
return 0;
}
row += 4;
} while (row < info->height);
/* Pass 3: odd rows */
row = 1;
do {
unsigned char *row_start = p + row * 3 * info->width;
num_read = fread(row_start, info->width, 1, fh);
if (num_read != 1) {
format_problem = "short read of row";
return 0;
}
row += 2;
} while (row < info->height);
/* Step 2: decode 8-bit palette to 24-bit color */
for (row = 0; row < info->height; row++) {
/* This inner loop needs to run backwards because the decoding
expands the pixel data. */
unsigned char *row_p = p + row * 3 * info->width;
for (col = info->width - 1; col >= 0; col--) {
unsigned char packed = row_p[col];
int r, g, b;
if (packed >= 216) {
format_problem = "invalid packed byte";
return 0;
}
/* A number between 0 and 6**3-1 is interpreted like a
number in base 6, where the three digits represent the
red, blue, and green components. Digits between 0 and 5
are scaled by 51 to 8-bit samples between 0 and 255. */
b = packed % 6;
packed /= 6;
g = packed % 6;
packed /= 6;
r = packed;
row_p[3 * col] = 51 * r;
row_p[3 * col + 1] = 51 * g;
row_p[3 * col + 2] = 51 * b;
}
}
return 1;
}
/* Read a BCPROG image from a file into our internal format. Only the
magic number should have been read before calling this
routine. Returns a pointer to an image_info structure representing
the image, or a null pointer on failure such as invalid or
unsupported image contents. */
struct image_info *parse_bcprog(FILE *fh) {
struct image_info *info, *info_footer;
size_t num_read;
int num_bytes, is_ok;
long width, height;
unsigned char flags[8], *pixels;
num_read = fread(flags, 8, 1, fh);
if (num_read != 1) return 0;
if (flags[0] != 0 || flags[1] != 0 || flags[2] != 0 || flags[3] != 0 ||
flags[4] != 0 || flags[5] != 0) {
format_problem = "reserved flags should be 0";
return 0;
}
if (flags[6] != 0x01) {
format_problem = "unsupported passes number";
return 0; /* 1 = 3 pass row progressive */
}
if (flags[7] != 0xd8) {
format_problem = "unsupported color depth";
return 0; /* 0xd8 = 216 color "web safe" 6x6x6 cube palette */
}
width = read_u64_bigendian(fh);
if (width == -1) return 0;
height = read_u64_bigendian(fh);
if (height == -1) return 0;
/* Size must be positive, and tall enough for the progressive
algorithm */
if (height < 2 || width < 1) {
format_problem = "size too small";
return 0;
}
/* Size limited to SVGA-era 800x600 */
if (height > 600 || width > 800) {
format_problem = "size too large";
return 0;
}
num_bytes = 3 * width * height;
pixels = xmalloc(num_bytes +
TRAILER_ALIGNMENT + sizeof(struct image_info));
info_footer = trailer_location(pixels, num_bytes);
info_footer->width = width;
info_footer->height = height;
info_footer->pixels = pixels;
info_footer->create_time = -1;
info_footer->cleanup = 0;
is_ok = process_tagged_data(fh, info_footer);
if (!is_ok) {
free(pixels);
return 0;
}
num_read = read_prog_data(fh, info_footer);
if (!num_read) {
free(pixels);
return 0;
}
/* Copy metadata from the footer into a new separate object */
info = xmalloc(sizeof(struct image_info));
info->width = info_footer->width;
info->height = info_footer->height;
info->create_time = info_footer->create_time;
info->pixels = info_footer->pixels;
info->cleanup = info_footer->cleanup;
return info;
}
/* Compressed data from a BCFLAT file is buffered up to FLATBUF (100)
bytes at once. The compressed data is variable-length, so we can't
tell how much to read for each row in advance. 100 bytes is a
compromise between not having to do too many short reads, and not
wasting too much time moving data down in the buffer. (We could
save data movement in the buffer by using circular indexing, but
that would make the code more complex.) To decide how much space to
keep for uncompressed data, we need to keep track of the maximum
factor by which the size of data can increase as it is
decompressed. */
#define FLATBUF 100
#define EXPANSION 10
/* In the BCFLAT image format, each sample after the first in a row is
represented as a difference relative to the pixel before it. The
differences are encoded with codewords that range from 3 to 13 bits
long, and represent 1-8 bytes each. Because most other operations
on data use 8-bit words, we need a buffer to hold bits that were
left over from a previous codeword. It's easiest if this buffer can
hold at least (13 - 1) + 8 = 24 bits, so 32 bits is enough; we
assume an int holds at least 32 bits. This buffer is managed
somewhat like a shift register in that the next bits to parse are
at the most significant position; bits move left through the
register as they are processed. "reg" represents the register
contents, while "reg_size" keeps track of how many positions are in
use. */
struct flat_decode_state {
unsigned int reg; /* shift register of codeword bits */
int reg_size; /* number of bits in the register */
unsigned char last; /* previous pixel value */
};
/* Summary of BCFLAT codewords:
000 2 samples: 0, 0 expansion 5.33
0010 3 samples: 0, 0, 0 expansion 6
00110 4 samples: 0, 0, 0, 0 expansion 6.4
0011100 5 samples, all 0 expansion 5.71
0011101 6 samples, all 0 expansion 6.86
0011110 7 samples, all 0 expansion 8
0011111 8 samples, all 0 expansion 9.14
0100xx 2 samples, +1..+4 x2 expansion 2.66
0101xx 2 samples, -4..-1 x2 expansion 2.66
0110xx 3 samples, +1..+4 x3 expansion 4
0111xx 3 samples, -4..-1 x3 expansion 4
100 one sample, 0 difference expansion 2.66
1010 one sample, difference +1 expansion 2
1011 one sample, difference -1 expansion 2
11000x one sample, difference +2, +3
11001x one sample, difference -3, -2
11010xx one sample, difference +4...+7
11011xx one sample, difference -7...-4
1110000xxx one sample, difference +8...+15
1110001xxx one sample, difference -15...-8
1110010xxxx one sample, difference +16...+31
1110011xxxx one sample, difference -31...-16
1110100xxxxx one sample, difference +32...+63
1110101xxxxx one sample, difference -63...-32
1110110xxxxxx one sample, difference +64...+127
1110111xxxxxx one sample, difference -127...-64
1111000 one sample, difference (+/-)128
Notice that no codeword is a prefix of any other codeword. This is
what allows a sequence of variable-length codes to be uniquely
decoded without delimiters.
*/
/* The following large table holds the information about all the
possible BCFLAT codewords in a way that enables fast lookup. The
table has 2**13 = 8192 entries because codewords are up to 13 bits
long. A 13-bit codeword is found exactly once in the table, at an
index equal to its codeword: for instance the codeword
1110110010101 is at index 7573, where you will see 0x551d. If a
codeword is b bits long, it appears 2**(13-b) times, at all the
locations whose indexes start with the codeword. For instance the
codeword 000 appears 1024 times at the locations whose indexes
start with 000 in binary, namely 0 through 1023, where you will see
0x23.
The information about each codeword is packed into 16 bits. The top
8 bits represent the difference between samples that is encoded.
(It's most intuitive to think of as signed, though an unsigned
interpretation would be equivalent.) The next 4 bits count how many
sample differences have that value. The final, lowest 4 bits are
the length of the codeword in bits. Every codeword is at least 3
bits long.
This table is pretty long, but it replaces over 100 lines of
hard-to-audit if statements and bitwise arithmetic in a previous
version.
*/
const unsigned short flat_codeword_info[8192] = {
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 10*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 20*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 30*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 40*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 50*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 60*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 70*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 80*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 90*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 100*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 110*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 120*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 130*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 140*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 150*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 160*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 170*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 180*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 190*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 200*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 210*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 220*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 230*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 240*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 250*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 260*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 270*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 280*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 290*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 300*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 310*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 320*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 330*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 340*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 350*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 360*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 370*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 380*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 390*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 400*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 410*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 420*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 430*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 440*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 450*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 460*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 470*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 480*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 490*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 500*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 510*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 520*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 530*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 540*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 550*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 560*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 570*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 580*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 590*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 600*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 610*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 620*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 630*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 640*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 650*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 660*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 670*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 680*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 690*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 700*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 710*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 720*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 730*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 740*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 750*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 760*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 770*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 780*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 790*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 800*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 810*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 820*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 830*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 840*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 850*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 860*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 870*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 880*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 890*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 900*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 910*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 920*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 930*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 940*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 950*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 960*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 970*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 980*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/* 990*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/*1000*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/*1010*/
0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23, 0x23,/*1020*/
0x23, 0x23, 0x23, 0x23, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1030*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1040*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1050*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1060*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1070*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1080*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1090*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1100*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1110*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1120*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1130*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1140*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1150*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1160*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1170*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1180*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1190*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1200*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1210*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1220*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1230*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1240*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1250*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1260*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1270*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1280*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1290*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1300*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1310*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1320*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1330*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1340*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1350*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1360*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1370*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1380*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1390*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1400*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1410*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1420*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1430*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1440*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1450*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1460*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1470*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1480*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1490*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1500*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1510*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1520*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34,/*1530*/
0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x45, 0x45, 0x45, 0x45,/*1540*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1550*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1560*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1570*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1580*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1590*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1600*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1610*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1620*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1630*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1640*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1650*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1660*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1670*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1680*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1690*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1700*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1710*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1720*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1730*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1740*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1750*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1760*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1770*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1780*/
0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45, 0x45,/*1790*/
0x45, 0x45, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57,/*1800*/
0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57,/*1810*/
0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57,/*1820*/
0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57,/*1830*/
0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57,/*1840*/
0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57,/*1850*/
0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x67, 0x67, 0x67, 0x67,/*1860*/
0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67,/*1870*/
0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67,/*1880*/
0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67,/*1890*/
0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67,/*1900*/
0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67,/*1910*/
0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67,/*1920*/
0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,/*1930*/
0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,/*1940*/
0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,/*1950*/
0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,/*1960*/
0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,/*1970*/
0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77,/*1980*/
0x77, 0x77, 0x77, 0x77, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,/*1990*/
0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,/*2000*/
0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,/*2010*/
0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,/*2020*/
0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,/*2030*/
0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,/*2040*/
0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x126, 0x126,/*2050*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2060*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2070*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2080*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2090*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2100*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2110*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2120*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2130*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2140*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2150*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2160*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x126,/*2170*/
0x126, 0x126, 0x126, 0x126, 0x126, 0x126, 0x226, 0x226, 0x226, 0x226,/*2180*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2190*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2200*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2210*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2220*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2230*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2240*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2250*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2260*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2270*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2280*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2290*/
0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226, 0x226,/*2300*/
0x226, 0x226, 0x226, 0x226, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2310*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2320*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2330*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2340*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2350*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2360*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2370*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2380*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2390*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2400*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2410*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2420*/
0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326, 0x326,/*2430*/
0x326, 0x326, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2440*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2450*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2460*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2470*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2480*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2490*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2500*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2510*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2520*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2530*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2540*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2550*/
0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426, 0x426,/*2560*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2570*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2580*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2590*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2600*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2610*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2620*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2630*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2640*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2650*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2660*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2670*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,/*2680*/
0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfc26,0xfd26,0xfd26,/*2690*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2700*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2710*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2720*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2730*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2740*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2750*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2760*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2770*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2780*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2790*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2800*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,/*2810*/
0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfd26,0xfe26,0xfe26,0xfe26,0xfe26,/*2820*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2830*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2840*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2850*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2860*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2870*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2880*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2890*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2900*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2910*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2920*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2930*/
0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,0xfe26,/*2940*/
0xfe26,0xfe26,0xfe26,0xfe26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*2950*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*2960*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*2970*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*2980*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*2990*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*3000*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*3010*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*3020*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*3030*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*3040*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*3050*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*3060*/
0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,0xff26,/*3070*/
0xff26,0xff26, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3080*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3090*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3100*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3110*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3120*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3130*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3140*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3150*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3160*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3170*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3180*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3190*/
0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136, 0x136,/*3200*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3210*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3220*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3230*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3240*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3250*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3260*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3270*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3280*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3290*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3300*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3310*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236,/*3320*/
0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x236, 0x336, 0x336,/*3330*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3340*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3350*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3360*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3370*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3380*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3390*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3400*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3410*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3420*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3430*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3440*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x336,/*3450*/
0x336, 0x336, 0x336, 0x336, 0x336, 0x336, 0x436, 0x436, 0x436, 0x436,/*3460*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3470*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3480*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3490*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3500*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3510*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3520*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3530*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3540*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3550*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3560*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3570*/
0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436, 0x436,/*3580*/
0x436, 0x436, 0x436, 0x436,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3590*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3600*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3610*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3620*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3630*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3640*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3650*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3660*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3670*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3680*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3690*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3700*/
0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,0xfc36,/*3710*/
0xfc36,0xfc36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3720*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3730*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3740*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3750*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3760*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3770*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3780*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3790*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3800*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3810*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3820*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3830*/
0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,0xfd36,/*3840*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3850*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3860*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3870*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3880*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3890*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3900*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3910*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3920*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3930*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3940*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3950*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,/*3960*/
0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xfe36,0xff36,0xff36,/*3970*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*3980*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*3990*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4000*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4010*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4020*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4030*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4040*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4050*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4060*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4070*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4080*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,0xff36,/*4090*/
0xff36,0xff36,0xff36,0xff36,0xff36,0xff36, 0x13, 0x13, 0x13, 0x13,/*4100*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4110*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4120*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4130*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4140*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4150*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4160*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4170*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4180*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4190*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4200*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4210*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4220*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4230*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4240*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4250*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4260*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4270*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4280*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4290*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4300*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4310*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4320*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4330*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4340*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4350*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4360*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4370*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4380*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4390*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4400*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4410*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4420*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4430*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4440*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4450*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4460*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4470*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4480*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4490*/
0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,/*4500*/