-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathqoir.h
6994 lines (6709 loc) · 397 KB
/
qoir.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2022 Nigel Tao.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef QOIR_INCLUDE_GUARD
#define QOIR_INCLUDE_GUARD
// QOIR is a fast, simple image file format.
//
// Most users will want the qoir_decode and qoir_encode functions, which read
// from and write to a contiguous block of memory.
//
// This file also contains a stand-alone implementation of LZ4 block
// compression, a general format that is not limited to compressing images. The
// qoir_lz4_block_decode and qoir_lz4_block_encode functions also read from and
// write to a contiguous block of memory.
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#ifdef __cplusplus
extern "C" {
#endif
// ================================ +Public Interface
// QOIR ships as a "single file C library" or "header file library" as per
// https://github.com/nothings/stb/blob/master/docs/stb_howto.txt
//
// To use that single file as a "foo.c"-like implementation, instead of a
// "foo.h"-like header, #define QOIR_IMPLEMENTATION before #include'ing or
// compiling it.
// -------- Compile-time Configuration
// The compile-time configuration macros are:
// - QOIR_CONFIG__DISABLE_LARGE_LOOK_UP_TABLES
// - QOIR_CONFIG__DISABLE_SIMD
// - QOIR_CONFIG__STATIC_FUNCTIONS
// - QOIR_CONFIG__USE_OFFICIAL_LZ4_LIBRARY
// ----
// If using e.g. "CFLAGS='-DQOIR_CONFIG__USE_OFFICIAL_LZ4_LIBRARY -O3'") then
// you probably also want "LDFLAGS=-llz4", otherwise you'll get "undefined
// reference to `LZ4_decompress_safe'".
// ----
// Define QOIR_CONFIG__STATIC_FUNCTIONS (combined with QOIR_IMPLEMENTATION) to
// make all of QOIR's functions have static storage.
//
// This can help the compiler ignore or discard unused code, which can produce
// faster compiles and smaller binaries. Other motivations are discussed in the
// "ALLOW STATIC IMPLEMENTATION" section of
// https://raw.githubusercontent.com/nothings/stb/master/docs/stb_howto.txt
#if defined(QOIR_CONFIG__STATIC_FUNCTIONS)
#define QOIR_MAYBE_STATIC static
#else
#define QOIR_MAYBE_STATIC
#endif // defined(QOIR_CONFIG__STATIC_FUNCTIONS)
// -------- Other Macros
// Clang also #define's "__GNUC__".
#if defined(__GNUC__) || defined(_MSC_VER)
#define QOIR_RESTRICT __restrict
#else
#define QOIR_RESTRICT
#endif
// -------- Basic Result Types
typedef struct qoir_size_result_struct {
const char* status_message;
size_t value;
} qoir_size_result;
// -------- Status Messages
extern const char qoir_lz4_status_message__error_dst_is_too_short[];
extern const char qoir_lz4_status_message__error_invalid_data[];
extern const char qoir_lz4_status_message__error_src_is_too_long[];
extern const char qoir_status_message__error_invalid_argument[];
extern const char qoir_status_message__error_invalid_data[];
extern const char qoir_status_message__error_out_of_memory[];
extern const char qoir_status_message__error_unsupported_metadata_size[];
extern const char qoir_status_message__error_unsupported_pixbuf_dimensions[];
extern const char qoir_status_message__error_unsupported_pixfmt[];
extern const char qoir_status_message__error_unsupported_tile_format[];
// -------- Pixel Buffers
// A pixel format combines an alpha transparency choice, a color model choice
// and other configuration (such as pixel byte order).
//
// Values less than 0x10 are directly representable by the file format (and by
// this implementation's API), using the same bit pattern.
//
// Values greater than or equal to 0x10 are representable by the API but not by
// the file format:
// - the 0x10 bit means 3 (not 4) bytes per (fully opaque) pixel.
// - the 0x20 bit means RGBA (not BGRA) byte order.
typedef uint32_t qoir_pixel_alpha_transparency;
typedef uint32_t qoir_pixel_color_model;
typedef uint32_t qoir_pixel_format;
// clang-format off
#define QOIR_PIXEL_ALPHA_TRANSPARENCY__OPAQUE 0x01
#define QOIR_PIXEL_ALPHA_TRANSPARENCY__NONPREMULTIPLIED_ALPHA 0x02
#define QOIR_PIXEL_ALPHA_TRANSPARENCY__PREMULTIPLIED_ALPHA 0x03
#define QOIR_PIXEL_COLOR_MODEL__BGRA 0x00
#define QOIR_PIXEL_FORMAT__MASK_FOR_ALPHA_TRANSPARENCY 0x03
#define QOIR_PIXEL_FORMAT__MASK_FOR_COLOR_MODEL 0x0C
#define QOIR_PIXEL_FORMAT__INVALID 0x00
#define QOIR_PIXEL_FORMAT__BGRX 0x01
#define QOIR_PIXEL_FORMAT__BGRA_NONPREMUL 0x02
#define QOIR_PIXEL_FORMAT__BGRA_PREMUL 0x03
#define QOIR_PIXEL_FORMAT__BGR 0x11
#define QOIR_PIXEL_FORMAT__RGBX 0x21
#define QOIR_PIXEL_FORMAT__RGBA_NONPREMUL 0x22
#define QOIR_PIXEL_FORMAT__RGBA_PREMUL 0x23
#define QOIR_PIXEL_FORMAT__RGB 0x31
// clang-format on
typedef struct qoir_pixel_configuration_struct {
qoir_pixel_format pixfmt;
uint32_t width_in_pixels;
uint32_t height_in_pixels;
} qoir_pixel_configuration;
typedef struct qoir_pixel_buffer_struct {
qoir_pixel_configuration pixcfg;
uint8_t* data;
size_t stride_in_bytes;
} qoir_pixel_buffer;
// All int32_t points (x, y) such that ((x0 <= x) && (x < x1) && (y0 <= y) &&
// (y < y1)). The low bounds are inclusive. The high bounds are exclusive.
typedef struct qoir_rectangle_struct {
int32_t x0;
int32_t y0;
int32_t x1;
int32_t y1;
} qoir_rectangle;
static inline uint32_t //
qoir_pixel_format__bytes_per_pixel( //
qoir_pixel_format pixfmt) {
return (pixfmt & 0x10) ? 3 : 4;
}
static inline bool //
qoir_pixel_buffer__is_zero( //
qoir_pixel_buffer pixbuf) {
return (pixbuf.pixcfg.pixfmt == 0) && //
(pixbuf.pixcfg.width_in_pixels == 0) && //
(pixbuf.pixcfg.height_in_pixels == 0) && //
(pixbuf.data == NULL) && //
(pixbuf.stride_in_bytes == 0);
}
static inline qoir_rectangle //
qoir_make_rectangle( //
int32_t x0, //
int32_t y0, //
int32_t x1, //
int32_t y1) {
qoir_rectangle ret;
ret.x0 = x0;
ret.y0 = y0;
ret.x1 = x1;
ret.y1 = y1;
return ret;
}
static inline qoir_rectangle //
qoir_rectangle__intersect( //
qoir_rectangle r, //
qoir_rectangle s) {
qoir_rectangle ret;
ret.x0 = (r.x0 > s.x0) ? r.x0 : s.x0;
ret.y0 = (r.y0 > s.y0) ? r.y0 : s.y0;
ret.x1 = (r.x1 < s.x1) ? r.x1 : s.x1;
ret.y1 = (r.y1 < s.y1) ? r.y1 : s.y1;
return ret;
}
static inline bool //
qoir_rectangle__is_empty( //
qoir_rectangle r) {
return (r.x1 <= r.x0) || (r.y1 <= r.y0);
}
static inline uint32_t //
qoir_rectangle__width( //
qoir_rectangle r) {
return (r.x1 > r.x0) ? ((uint32_t)r.x1 - (uint32_t)r.x0) : 0;
}
static inline uint32_t //
qoir_rectangle__height( //
qoir_rectangle r) {
return (r.y1 > r.y0) ? ((uint32_t)r.y1 - (uint32_t)r.y0) : 0;
}
// -------- Tiling
#define QOIR_TILE_MASK 0x3F
#define QOIR_TILE_SIZE 0x40
#define QOIR_TILE_SHIFT 6
// QOIR_LITERALS_PRE_PADDING is large enough to hold the previous pixel, at 4
// bytes per pixel.
#define QOIR_LITERALS_PRE_PADDING 4
// QOIR_TS2 is the maximum (inclusive) number of pixels in a tile.
#define QOIR_TS2 (QOIR_TILE_SIZE * QOIR_TILE_SIZE)
static inline uint32_t //
qoir_calculate_number_of_tiles_1d( //
uint32_t number_of_pixels) {
uint64_t rounded_up = (uint64_t)number_of_pixels + QOIR_TILE_MASK;
return (uint32_t)(rounded_up >> QOIR_TILE_SHIFT);
}
static inline uint64_t //
qoir_calculate_number_of_tiles_2d( //
uint32_t width_in_pixels,
uint32_t height_in_pixels) {
uint64_t w = ((uint64_t)width_in_pixels + QOIR_TILE_MASK) >> QOIR_TILE_SHIFT;
uint64_t h = ((uint64_t)height_in_pixels + QOIR_TILE_MASK) >> QOIR_TILE_SHIFT;
return w * h;
}
// -------- LZ4 Decode
// QOIR_LZ4_BLOCK_DECODE_MAX_INCL_SRC_LEN is the maximum (inclusive) supported
// input length for this file's LZ4 decode functions. The LZ4 block format can
// generally support longer inputs, but this implementation specifically is
// more limited, to simplify overflow checking.
//
// With sufficiently large input, qoir_lz4_block_encode (note that that's
// encode, not decode) may very well produce output that is longer than this.
// That output is valid (in terms of the LZ4 file format) but isn't decodable
// by qoir_lz4_block_decode.
//
// 0x00FFFFFF = 16777215, which is over 16 million bytes.
#define QOIR_LZ4_BLOCK_DECODE_MAX_INCL_SRC_LEN 0x00FFFFFF
// qoir_lz4_block_decode writes to dst the LZ4 block decompressed form of src,
// returning the number of bytes written.
//
// It fails with qoir_lz4_status_message__error_dst_is_too_short if dst_len is
// not long enough to hold the decompressed form.
QOIR_MAYBE_STATIC qoir_size_result //
qoir_lz4_block_decode( //
uint8_t* QOIR_RESTRICT dst_ptr, //
size_t dst_len, //
const uint8_t* QOIR_RESTRICT src_ptr, //
size_t src_len);
// -------- LZ4 Encode
// QOIR_LZ4_BLOCK_ENCODE_MAX_INCL_SRC_LEN is the maximum (inclusive) supported
// input length for this file's LZ4 encode functions. The LZ4 block format can
// generally support longer inputs, but this implementation specifically is
// more limited, to simplify overflow checking.
//
// 0x7E000000 = 2113929216, which is over 2 billion bytes.
#define QOIR_LZ4_BLOCK_ENCODE_MAX_INCL_SRC_LEN 0x7E000000
// qoir_lz4_block_encode_worst_case_dst_len returns the maximum (inclusive)
// number of bytes required to LZ4 block compress src_len input bytes.
QOIR_MAYBE_STATIC qoir_size_result //
qoir_lz4_block_encode_worst_case_dst_len( //
size_t src_len);
// qoir_lz4_block_encode writes to dst the LZ4 block compressed form of src,
// returning the number of bytes written.
//
// Unlike the LZ4_compress_default function from the official implementation
// (https://github.com/lz4/lz4), it fails immediately with
// qoir_lz4_status_message__error_dst_is_too_short if dst_len is less than
// qoir_lz4_block_encode_worst_case_dst_len(src_len), even if the worst case is
// unrealized and the compressed form would actually fit.
QOIR_MAYBE_STATIC qoir_size_result //
qoir_lz4_block_encode( //
uint8_t* QOIR_RESTRICT dst_ptr, //
size_t dst_len, //
const uint8_t* QOIR_RESTRICT src_ptr, //
size_t src_len);
// -------- QOIR Decode
typedef struct qoir_decode_pixel_configuration_result_struct {
const char* status_message;
qoir_pixel_configuration dst_pixcfg;
} qoir_decode_pixel_configuration_result;
QOIR_MAYBE_STATIC qoir_decode_pixel_configuration_result //
qoir_decode_pixel_configuration( //
const uint8_t* src_ptr, //
size_t src_len);
typedef struct qoir_decode_buffer_struct {
struct {
// ops has to be before literals, so that (worst case) we can read (and
// ignore) 8 bytes past the end of the ops array. See §
uint8_t ops[4 * QOIR_TS2];
uint8_t literals[QOIR_LITERALS_PRE_PADDING + (4 * QOIR_TS2)];
} private_impl;
} qoir_decode_buffer;
typedef struct qoir_decode_result_struct {
const char* status_message;
void* owned_memory;
qoir_pixel_buffer dst_pixbuf;
// Optional metadata chunks.
const uint8_t* metadata_cicp_ptr;
size_t metadata_cicp_len;
const uint8_t* metadata_iccp_ptr;
size_t metadata_iccp_len;
const uint8_t* metadata_exif_ptr;
size_t metadata_exif_len;
const uint8_t* metadata_xmp_ptr;
size_t metadata_xmp_len;
} qoir_decode_result;
typedef struct qoir_decode_options_struct {
// Custom malloc/free implementations. NULL etc_func pointers means to use
// the standard malloc and free functions. Non-NULL etc_func pointers will be
// passed the memory_func_context.
void* (*contextual_malloc_func)(void* memory_func_context, size_t len);
void (*contextual_free_func)(void* memory_func_context, void* ptr);
void* memory_func_context;
// Pre-allocated 'scratch space' used during decoding. Its contents need not
// be initialized when passed to qoir_decode.
//
// If NULL, the 'scratch space' will be dynamically allocated and freed.
qoir_decode_buffer* decbuf;
// Pre-allocated pixel buffer to decode into.
//
// If zero, it will be dynamically allocated and memory ownership (i.e. the
// responsibility to call free or equivalent) will be returned as the
// qoir_decode_result owned_memory field.
qoir_pixel_buffer pixbuf;
// If non-zero, this is the pixel format to use when dynamically allocating
// the pixel buffer to decode into (if the pixbuf field is zero). This pixfmt
// field has no effect if the pixbuf field is non-zero.
//
// A zero-valued pixfmt field is equivalent to the default pixel format:
// QOIR_PIXEL_FORMAT__RGBA_NONPREMUL.
qoir_pixel_format pixfmt;
// Clipping rectangles, in the destination or source (or both) coordinate
// spaces. The clips (the qoir_rectangle typed fields) have no effect unless
// the corresponding boolean typed field is true.
qoir_rectangle dst_clip_rectangle;
qoir_rectangle src_clip_rectangle;
bool use_dst_clip_rectangle;
bool use_src_clip_rectangle;
// The position (in destination coordinate space) to place the top-left
// corner of the decoded source image. The Y axis grows down.
int32_t offset_x;
int32_t offset_y;
} qoir_decode_options;
// Decodes a pixel buffer from the QOIR format.
//
// A NULL options is valid and is equivalent to a non-NULL pointer to a
// zero-valued struct (where all fields are zero / NULL / false).
QOIR_MAYBE_STATIC qoir_decode_result //
qoir_decode( //
const uint8_t* src_ptr, //
const size_t src_len, //
const qoir_decode_options* options);
// -------- QOIR Encode
typedef struct qoir_encode_buffer_struct {
struct {
// ops' size is ((5 * QOIR_TS2) + 64), not (4 * QOIR_TS2), because in the
// worst case (during encoding, before discarding the too-long ops in favor
// of literals), each pixel uses QOIR_OP_BGRA8, 5 bytes each. The +64 is
// for the same reason as §, but the +8 is rounded up to a multiple of a
// typical cache line size.
uint8_t ops[(5 * QOIR_TS2) + 64];
uint8_t literals[QOIR_LITERALS_PRE_PADDING + (4 * QOIR_TS2)];
} private_impl;
} qoir_encode_buffer;
typedef struct qoir_encode_result_struct {
const char* status_message;
void* owned_memory;
uint8_t* dst_ptr;
size_t dst_len;
} qoir_encode_result;
typedef struct qoir_encode_options_struct {
// Custom malloc/free implementations. NULL etc_func pointers means to use
// the standard malloc and free functions. Non-NULL etc_func pointers will be
// passed the memory_func_context.
void* (*contextual_malloc_func)(void* memory_func_context, size_t len);
void (*contextual_free_func)(void* memory_func_context, void* ptr);
void* memory_func_context;
// Pre-allocated 'scratch space' used during encoding. Its contents need not
// be initialized when passed to qoir_encode.
//
// If NULL, the 'scratch space' will be dynamically allocated and freed.
qoir_encode_buffer* encbuf;
// Optional metadata chunks.
const uint8_t* metadata_cicp_ptr;
size_t metadata_cicp_len;
const uint8_t* metadata_iccp_ptr;
size_t metadata_iccp_len;
const uint8_t* metadata_exif_ptr;
size_t metadata_exif_len;
const uint8_t* metadata_xmp_ptr;
size_t metadata_xmp_len;
// Lossiness ranges from 0 (lossless) to 7 (very lossy), inclusive.
uint32_t lossiness;
// Whether to dither the lossy encoding. This option has no effect if
// lossiness is zero.
//
// The dithering algorithm is relatively simple. Fancier algorithms like
// https://nigeltao.github.io/blog/2022/gamma-aware-ordered-dithering.html
// can produce higher quality results, especially for lossiness levels at 6
// or 7 re overall brightness, but they are out of scope of this library. To
// use alternative dithering algorithms, apply them to src_pixbuf before
// passing to qoir_encode.
bool dither;
} qoir_encode_options;
// Encodes a pixel buffer to the QOIR format.
//
// A NULL options is valid and is equivalent to a non-NULL pointer to a
// zero-valued struct (where all fields are zero / NULL / false).
QOIR_MAYBE_STATIC qoir_encode_result //
qoir_encode( //
const qoir_pixel_buffer* src_pixbuf, //
const qoir_encode_options* options);
// ================================ -Public Interface
#ifdef QOIR_IMPLEMENTATION
// ================================ +Private Implementation
// -------- Look-up Tables
// clang-format off
// qoir_private_table_noise is the "LDR_LLL1_42.png" 16x16 blue noise texture
// from the zip file linked to from http://momentsingraphics.de/BlueNoise.html
// and whose LICENSE.txt says "To the extent possible under law, Christoph
// Peters has waived all copyright and related or neighboring rights".
static uint8_t qoir_private_table_noise[16][16] = {
{0xAE,0xE7,0x89,0xF2,0x26,0x1A,0x8C,0xF7,0xC1,0x69,0xA4,0x30,0x91,0xCC,0x64,0x52},
{0x71,0x1C,0x5E,0x7B,0xA9,0xD5,0x62,0x08,0xCE,0x49,0x0E,0x55,0x7A,0x18,0xA6,0x05},
{0xD8,0xBF,0x99,0x01,0x56,0xE4,0x72,0xB2,0x36,0x97,0xD9,0xED,0xBC,0x25,0xF8,0x96},
{0x2B,0x3B,0xFE,0xB6,0x41,0x2F,0x9F,0xE9,0x1D,0x85,0xAC,0x6D,0x3E,0xD1,0x47,0x80},
{0x66,0x4F,0x13,0xD2,0x83,0xC2,0x0F,0x51,0xFB,0x60,0x2A,0x00,0x9D,0x5B,0xB5,0xE2},
{0xC8,0xAA,0x90,0xEB,0x6B,0x23,0x94,0x79,0x40,0xCA,0xDE,0x76,0xF5,0x16,0x8B,0x0B},
{0xF3,0x20,0x77,0x33,0x5C,0xCB,0xE1,0xA8,0xBB,0x14,0x8E,0xB0,0x4D,0xC3,0x34,0x70},
{0x58,0x45,0xDB,0xA5,0x0D,0x4A,0xF4,0x04,0x68,0x57,0x31,0xE5,0x1E,0x82,0xE8,0xA2},
{0x95,0x03,0xBD,0xFA,0x8A,0xB3,0x28,0x3A,0x86,0xA1,0xD3,0x43,0x9A,0x63,0xCD,0x27},
{0xD7,0x65,0x81,0x1B,0x54,0x6E,0x98,0xDA,0xC5,0xEE,0x0C,0x6F,0xFF,0x06,0x3D,0xB9},
{0xF1,0xAD,0x2E,0x3F,0xCF,0xEC,0x7C,0x19,0x5F,0x22,0x7F,0xAF,0xBE,0x53,0x7D,0x17},
{0x48,0x73,0xE6,0xC4,0xA0,0x07,0x46,0xB7,0xF9,0x4E,0x37,0x92,0x2C,0xDC,0xA7,0x8D},
{0x5A,0x09,0x93,0x24,0x61,0xD6,0x32,0x8F,0x6C,0xA3,0xD0,0xEA,0x15,0x67,0xF6,0x35},
{0xD4,0xB4,0xFC,0x50,0x84,0xAB,0x11,0xC6,0xE3,0x02,0x42,0x75,0xC7,0x9E,0x21,0xC0},
{0x10,0x9B,0x6A,0x12,0xDF,0x74,0xF0,0x59,0x29,0xB1,0x88,0x5D,0x0A,0x4C,0x87,0x78},
{0x2D,0x44,0xC9,0x38,0xBA,0x4B,0x9C,0x3C,0x7E,0x1F,0xE0,0xFD,0xB8,0x39,0xEF,0xDD},
};
// The table was generated by script/gen_table_unlossify.go
static uint8_t qoir_private_table_unlossify[7][256] = {{
0x00,0x02,0x04,0x06,0x08,0x0A,0x0C,0x0E,0x10,0x12,0x14,0x16,0x18,0x1A,0x1C,0x1E,
0x20,0x22,0x24,0x26,0x28,0x2A,0x2C,0x2E,0x30,0x32,0x34,0x36,0x38,0x3A,0x3C,0x3E,
0x40,0x42,0x44,0x46,0x48,0x4A,0x4C,0x4E,0x50,0x52,0x54,0x56,0x58,0x5A,0x5C,0x5E,
0x60,0x62,0x64,0x66,0x68,0x6A,0x6C,0x6E,0x70,0x72,0x74,0x76,0x78,0x7A,0x7C,0x7E,
0x81,0x83,0x85,0x87,0x89,0x8B,0x8D,0x8F,0x91,0x93,0x95,0x97,0x99,0x9B,0x9D,0x9F,
0xA1,0xA3,0xA5,0xA7,0xA9,0xAB,0xAD,0xAF,0xB1,0xB3,0xB5,0xB7,0xB9,0xBB,0xBD,0xBF,
0xC1,0xC3,0xC5,0xC7,0xC9,0xCB,0xCD,0xCF,0xD1,0xD3,0xD5,0xD7,0xD9,0xDB,0xDD,0xDF,
0xE1,0xE3,0xE5,0xE7,0xE9,0xEB,0xED,0xEF,0xF1,0xF3,0xF5,0xF7,0xF9,0xFB,0xFD,0xFF,
0x00,0x02,0x04,0x06,0x08,0x0A,0x0C,0x0E,0x10,0x12,0x14,0x16,0x18,0x1A,0x1C,0x1E,
0x20,0x22,0x24,0x26,0x28,0x2A,0x2C,0x2E,0x30,0x32,0x34,0x36,0x38,0x3A,0x3C,0x3E,
0x40,0x42,0x44,0x46,0x48,0x4A,0x4C,0x4E,0x50,0x52,0x54,0x56,0x58,0x5A,0x5C,0x5E,
0x60,0x62,0x64,0x66,0x68,0x6A,0x6C,0x6E,0x70,0x72,0x74,0x76,0x78,0x7A,0x7C,0x7E,
0x81,0x83,0x85,0x87,0x89,0x8B,0x8D,0x8F,0x91,0x93,0x95,0x97,0x99,0x9B,0x9D,0x9F,
0xA1,0xA3,0xA5,0xA7,0xA9,0xAB,0xAD,0xAF,0xB1,0xB3,0xB5,0xB7,0xB9,0xBB,0xBD,0xBF,
0xC1,0xC3,0xC5,0xC7,0xC9,0xCB,0xCD,0xCF,0xD1,0xD3,0xD5,0xD7,0xD9,0xDB,0xDD,0xDF,
0xE1,0xE3,0xE5,0xE7,0xE9,0xEB,0xED,0xEF,0xF1,0xF3,0xF5,0xF7,0xF9,0xFB,0xFD,0xFF,
}, {
0x00,0x04,0x08,0x0C,0x10,0x14,0x18,0x1C,0x20,0x24,0x28,0x2C,0x30,0x34,0x38,0x3C,
0x41,0x45,0x49,0x4D,0x51,0x55,0x59,0x5D,0x61,0x65,0x69,0x6D,0x71,0x75,0x79,0x7D,
0x82,0x86,0x8A,0x8E,0x92,0x96,0x9A,0x9E,0xA2,0xA6,0xAA,0xAE,0xB2,0xB6,0xBA,0xBE,
0xC3,0xC7,0xCB,0xCF,0xD3,0xD7,0xDB,0xDF,0xE3,0xE7,0xEB,0xEF,0xF3,0xF7,0xFB,0xFF,
0x00,0x04,0x08,0x0C,0x10,0x14,0x18,0x1C,0x20,0x24,0x28,0x2C,0x30,0x34,0x38,0x3C,
0x41,0x45,0x49,0x4D,0x51,0x55,0x59,0x5D,0x61,0x65,0x69,0x6D,0x71,0x75,0x79,0x7D,
0x82,0x86,0x8A,0x8E,0x92,0x96,0x9A,0x9E,0xA2,0xA6,0xAA,0xAE,0xB2,0xB6,0xBA,0xBE,
0xC3,0xC7,0xCB,0xCF,0xD3,0xD7,0xDB,0xDF,0xE3,0xE7,0xEB,0xEF,0xF3,0xF7,0xFB,0xFF,
0x00,0x04,0x08,0x0C,0x10,0x14,0x18,0x1C,0x20,0x24,0x28,0x2C,0x30,0x34,0x38,0x3C,
0x41,0x45,0x49,0x4D,0x51,0x55,0x59,0x5D,0x61,0x65,0x69,0x6D,0x71,0x75,0x79,0x7D,
0x82,0x86,0x8A,0x8E,0x92,0x96,0x9A,0x9E,0xA2,0xA6,0xAA,0xAE,0xB2,0xB6,0xBA,0xBE,
0xC3,0xC7,0xCB,0xCF,0xD3,0xD7,0xDB,0xDF,0xE3,0xE7,0xEB,0xEF,0xF3,0xF7,0xFB,0xFF,
0x00,0x04,0x08,0x0C,0x10,0x14,0x18,0x1C,0x20,0x24,0x28,0x2C,0x30,0x34,0x38,0x3C,
0x41,0x45,0x49,0x4D,0x51,0x55,0x59,0x5D,0x61,0x65,0x69,0x6D,0x71,0x75,0x79,0x7D,
0x82,0x86,0x8A,0x8E,0x92,0x96,0x9A,0x9E,0xA2,0xA6,0xAA,0xAE,0xB2,0xB6,0xBA,0xBE,
0xC3,0xC7,0xCB,0xCF,0xD3,0xD7,0xDB,0xDF,0xE3,0xE7,0xEB,0xEF,0xF3,0xF7,0xFB,0xFF,
}, {
0x00,0x08,0x10,0x18,0x21,0x29,0x31,0x39,0x42,0x4A,0x52,0x5A,0x63,0x6B,0x73,0x7B,
0x84,0x8C,0x94,0x9C,0xA5,0xAD,0xB5,0xBD,0xC6,0xCE,0xD6,0xDE,0xE7,0xEF,0xF7,0xFF,
0x00,0x08,0x10,0x18,0x21,0x29,0x31,0x39,0x42,0x4A,0x52,0x5A,0x63,0x6B,0x73,0x7B,
0x84,0x8C,0x94,0x9C,0xA5,0xAD,0xB5,0xBD,0xC6,0xCE,0xD6,0xDE,0xE7,0xEF,0xF7,0xFF,
0x00,0x08,0x10,0x18,0x21,0x29,0x31,0x39,0x42,0x4A,0x52,0x5A,0x63,0x6B,0x73,0x7B,
0x84,0x8C,0x94,0x9C,0xA5,0xAD,0xB5,0xBD,0xC6,0xCE,0xD6,0xDE,0xE7,0xEF,0xF7,0xFF,
0x00,0x08,0x10,0x18,0x21,0x29,0x31,0x39,0x42,0x4A,0x52,0x5A,0x63,0x6B,0x73,0x7B,
0x84,0x8C,0x94,0x9C,0xA5,0xAD,0xB5,0xBD,0xC6,0xCE,0xD6,0xDE,0xE7,0xEF,0xF7,0xFF,
0x00,0x08,0x10,0x18,0x21,0x29,0x31,0x39,0x42,0x4A,0x52,0x5A,0x63,0x6B,0x73,0x7B,
0x84,0x8C,0x94,0x9C,0xA5,0xAD,0xB5,0xBD,0xC6,0xCE,0xD6,0xDE,0xE7,0xEF,0xF7,0xFF,
0x00,0x08,0x10,0x18,0x21,0x29,0x31,0x39,0x42,0x4A,0x52,0x5A,0x63,0x6B,0x73,0x7B,
0x84,0x8C,0x94,0x9C,0xA5,0xAD,0xB5,0xBD,0xC6,0xCE,0xD6,0xDE,0xE7,0xEF,0xF7,0xFF,
0x00,0x08,0x10,0x18,0x21,0x29,0x31,0x39,0x42,0x4A,0x52,0x5A,0x63,0x6B,0x73,0x7B,
0x84,0x8C,0x94,0x9C,0xA5,0xAD,0xB5,0xBD,0xC6,0xCE,0xD6,0xDE,0xE7,0xEF,0xF7,0xFF,
0x00,0x08,0x10,0x18,0x21,0x29,0x31,0x39,0x42,0x4A,0x52,0x5A,0x63,0x6B,0x73,0x7B,
0x84,0x8C,0x94,0x9C,0xA5,0xAD,0xB5,0xBD,0xC6,0xCE,0xD6,0xDE,0xE7,0xEF,0xF7,0xFF,
}, {
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF,
}, {
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,0x00,0x24,0x49,0x6D,0x92,0xB6,0xDB,0xFF,
}, {
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,0x00,0x55,0xAA,0xFF,
}, {
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,
}};
#if !defined(QOIR_CONFIG__DISABLE_LARGE_LOOK_UP_TABLES)
// The table was generated by script/gen_table_luma.go
static uint8_t qoir_private_table_luma[65536] = {
0xD8,0xE0,0xD8,0,0xD9,0xE1,0xD9,0,0xDA,0xE2,0xDA,0,0xDB,0xE3,0xDB,0,
0xDC,0xE4,0xDC,0,0xDD,0xE5,0xDD,0,0xDE,0xE6,0xDE,0,0xDF,0xE7,0xDF,0,
0xE0,0xE8,0xE0,0,0xE1,0xE9,0xE1,0,0xE2,0xEA,0xE2,0,0xE3,0xEB,0xE3,0,
0xE4,0xEC,0xE4,0,0xE5,0xED,0xE5,0,0xE6,0xEE,0xE6,0,0xE7,0xEF,0xE7,0,
0xE8,0xF0,0xE8,0,0xE9,0xF1,0xE9,0,0xEA,0xF2,0xEA,0,0xEB,0xF3,0xEB,0,
0xEC,0xF4,0xEC,0,0xED,0xF5,0xED,0,0xEE,0xF6,0xEE,0,0xEF,0xF7,0xEF,0,
0xF0,0xF8,0xF0,0,0xF1,0xF9,0xF1,0,0xF2,0xFA,0xF2,0,0xF3,0xFB,0xF3,0,
0xF4,0xFC,0xF4,0,0xF5,0xFD,0xF5,0,0xF6,0xFE,0xF6,0,0xF7,0xFF,0xF7,0,
0xF8,0x00,0xF8,0,0xF9,0x01,0xF9,0,0xFA,0x02,0xFA,0,0xFB,0x03,0xFB,0,
0xFC,0x04,0xFC,0,0xFD,0x05,0xFD,0,0xFE,0x06,0xFE,0,0xFF,0x07,0xFF,0,
0x00,0x08,0x00,0,0x01,0x09,0x01,0,0x02,0x0A,0x02,0,0x03,0x0B,0x03,0,
0x04,0x0C,0x04,0,0x05,0x0D,0x05,0,0x06,0x0E,0x06,0,0x07,0x0F,0x07,0,
0x08,0x10,0x08,0,0x09,0x11,0x09,0,0x0A,0x12,0x0A,0,0x0B,0x13,0x0B,0,
0x0C,0x14,0x0C,0,0x0D,0x15,0x0D,0,0x0E,0x16,0x0E,0,0x0F,0x17,0x0F,0,
0x10,0x18,0x10,0,0x11,0x19,0x11,0,0x12,0x1A,0x12,0,0x13,0x1B,0x13,0,
0x14,0x1C,0x14,0,0x15,0x1D,0x15,0,0x16,0x1E,0x16,0,0x17,0x1F,0x17,0,
0xD9,0xE0,0xD8,0,0xDA,0xE1,0xD9,0,0xDB,0xE2,0xDA,0,0xDC,0xE3,0xDB,0,
0xDD,0xE4,0xDC,0,0xDE,0xE5,0xDD,0,0xDF,0xE6,0xDE,0,0xE0,0xE7,0xDF,0,
0xE1,0xE8,0xE0,0,0xE2,0xE9,0xE1,0,0xE3,0xEA,0xE2,0,0xE4,0xEB,0xE3,0,
0xE5,0xEC,0xE4,0,0xE6,0xED,0xE5,0,0xE7,0xEE,0xE6,0,0xE8,0xEF,0xE7,0,
0xE9,0xF0,0xE8,0,0xEA,0xF1,0xE9,0,0xEB,0xF2,0xEA,0,0xEC,0xF3,0xEB,0,
0xED,0xF4,0xEC,0,0xEE,0xF5,0xED,0,0xEF,0xF6,0xEE,0,0xF0,0xF7,0xEF,0,
0xF1,0xF8,0xF0,0,0xF2,0xF9,0xF1,0,0xF3,0xFA,0xF2,0,0xF4,0xFB,0xF3,0,
0xF5,0xFC,0xF4,0,0xF6,0xFD,0xF5,0,0xF7,0xFE,0xF6,0,0xF8,0xFF,0xF7,0,
0xF9,0x00,0xF8,0,0xFA,0x01,0xF9,0,0xFB,0x02,0xFA,0,0xFC,0x03,0xFB,0,
0xFD,0x04,0xFC,0,0xFE,0x05,0xFD,0,0xFF,0x06,0xFE,0,0x00,0x07,0xFF,0,
0x01,0x08,0x00,0,0x02,0x09,0x01,0,0x03,0x0A,0x02,0,0x04,0x0B,0x03,0,
0x05,0x0C,0x04,0,0x06,0x0D,0x05,0,0x07,0x0E,0x06,0,0x08,0x0F,0x07,0,
0x09,0x10,0x08,0,0x0A,0x11,0x09,0,0x0B,0x12,0x0A,0,0x0C,0x13,0x0B,0,
0x0D,0x14,0x0C,0,0x0E,0x15,0x0D,0,0x0F,0x16,0x0E,0,0x10,0x17,0x0F,0,
0x11,0x18,0x10,0,0x12,0x19,0x11,0,0x13,0x1A,0x12,0,0x14,0x1B,0x13,0,
0x15,0x1C,0x14,0,0x16,0x1D,0x15,0,0x17,0x1E,0x16,0,0x18,0x1F,0x17,0,
0xDA,0xE0,0xD8,0,0xDB,0xE1,0xD9,0,0xDC,0xE2,0xDA,0,0xDD,0xE3,0xDB,0,
0xDE,0xE4,0xDC,0,0xDF,0xE5,0xDD,0,0xE0,0xE6,0xDE,0,0xE1,0xE7,0xDF,0,
0xE2,0xE8,0xE0,0,0xE3,0xE9,0xE1,0,0xE4,0xEA,0xE2,0,0xE5,0xEB,0xE3,0,
0xE6,0xEC,0xE4,0,0xE7,0xED,0xE5,0,0xE8,0xEE,0xE6,0,0xE9,0xEF,0xE7,0,
0xEA,0xF0,0xE8,0,0xEB,0xF1,0xE9,0,0xEC,0xF2,0xEA,0,0xED,0xF3,0xEB,0,
0xEE,0xF4,0xEC,0,0xEF,0xF5,0xED,0,0xF0,0xF6,0xEE,0,0xF1,0xF7,0xEF,0,
0xF2,0xF8,0xF0,0,0xF3,0xF9,0xF1,0,0xF4,0xFA,0xF2,0,0xF5,0xFB,0xF3,0,
0xF6,0xFC,0xF4,0,0xF7,0xFD,0xF5,0,0xF8,0xFE,0xF6,0,0xF9,0xFF,0xF7,0,
0xFA,0x00,0xF8,0,0xFB,0x01,0xF9,0,0xFC,0x02,0xFA,0,0xFD,0x03,0xFB,0,
0xFE,0x04,0xFC,0,0xFF,0x05,0xFD,0,0x00,0x06,0xFE,0,0x01,0x07,0xFF,0,
0x02,0x08,0x00,0,0x03,0x09,0x01,0,0x04,0x0A,0x02,0,0x05,0x0B,0x03,0,
0x06,0x0C,0x04,0,0x07,0x0D,0x05,0,0x08,0x0E,0x06,0,0x09,0x0F,0x07,0,
0x0A,0x10,0x08,0,0x0B,0x11,0x09,0,0x0C,0x12,0x0A,0,0x0D,0x13,0x0B,0,
0x0E,0x14,0x0C,0,0x0F,0x15,0x0D,0,0x10,0x16,0x0E,0,0x11,0x17,0x0F,0,
0x12,0x18,0x10,0,0x13,0x19,0x11,0,0x14,0x1A,0x12,0,0x15,0x1B,0x13,0,
0x16,0x1C,0x14,0,0x17,0x1D,0x15,0,0x18,0x1E,0x16,0,0x19,0x1F,0x17,0,
0xDB,0xE0,0xD8,0,0xDC,0xE1,0xD9,0,0xDD,0xE2,0xDA,0,0xDE,0xE3,0xDB,0,
0xDF,0xE4,0xDC,0,0xE0,0xE5,0xDD,0,0xE1,0xE6,0xDE,0,0xE2,0xE7,0xDF,0,
0xE3,0xE8,0xE0,0,0xE4,0xE9,0xE1,0,0xE5,0xEA,0xE2,0,0xE6,0xEB,0xE3,0,
0xE7,0xEC,0xE4,0,0xE8,0xED,0xE5,0,0xE9,0xEE,0xE6,0,0xEA,0xEF,0xE7,0,
0xEB,0xF0,0xE8,0,0xEC,0xF1,0xE9,0,0xED,0xF2,0xEA,0,0xEE,0xF3,0xEB,0,
0xEF,0xF4,0xEC,0,0xF0,0xF5,0xED,0,0xF1,0xF6,0xEE,0,0xF2,0xF7,0xEF,0,
0xF3,0xF8,0xF0,0,0xF4,0xF9,0xF1,0,0xF5,0xFA,0xF2,0,0xF6,0xFB,0xF3,0,
0xF7,0xFC,0xF4,0,0xF8,0xFD,0xF5,0,0xF9,0xFE,0xF6,0,0xFA,0xFF,0xF7,0,
0xFB,0x00,0xF8,0,0xFC,0x01,0xF9,0,0xFD,0x02,0xFA,0,0xFE,0x03,0xFB,0,
0xFF,0x04,0xFC,0,0x00,0x05,0xFD,0,0x01,0x06,0xFE,0,0x02,0x07,0xFF,0,
0x03,0x08,0x00,0,0x04,0x09,0x01,0,0x05,0x0A,0x02,0,0x06,0x0B,0x03,0,
0x07,0x0C,0x04,0,0x08,0x0D,0x05,0,0x09,0x0E,0x06,0,0x0A,0x0F,0x07,0,
0x0B,0x10,0x08,0,0x0C,0x11,0x09,0,0x0D,0x12,0x0A,0,0x0E,0x13,0x0B,0,
0x0F,0x14,0x0C,0,0x10,0x15,0x0D,0,0x11,0x16,0x0E,0,0x12,0x17,0x0F,0,
0x13,0x18,0x10,0,0x14,0x19,0x11,0,0x15,0x1A,0x12,0,0x16,0x1B,0x13,0,
0x17,0x1C,0x14,0,0x18,0x1D,0x15,0,0x19,0x1E,0x16,0,0x1A,0x1F,0x17,0,
0xDC,0xE0,0xD8,0,0xDD,0xE1,0xD9,0,0xDE,0xE2,0xDA,0,0xDF,0xE3,0xDB,0,
0xE0,0xE4,0xDC,0,0xE1,0xE5,0xDD,0,0xE2,0xE6,0xDE,0,0xE3,0xE7,0xDF,0,
0xE4,0xE8,0xE0,0,0xE5,0xE9,0xE1,0,0xE6,0xEA,0xE2,0,0xE7,0xEB,0xE3,0,
0xE8,0xEC,0xE4,0,0xE9,0xED,0xE5,0,0xEA,0xEE,0xE6,0,0xEB,0xEF,0xE7,0,
0xEC,0xF0,0xE8,0,0xED,0xF1,0xE9,0,0xEE,0xF2,0xEA,0,0xEF,0xF3,0xEB,0,
0xF0,0xF4,0xEC,0,0xF1,0xF5,0xED,0,0xF2,0xF6,0xEE,0,0xF3,0xF7,0xEF,0,
0xF4,0xF8,0xF0,0,0xF5,0xF9,0xF1,0,0xF6,0xFA,0xF2,0,0xF7,0xFB,0xF3,0,
0xF8,0xFC,0xF4,0,0xF9,0xFD,0xF5,0,0xFA,0xFE,0xF6,0,0xFB,0xFF,0xF7,0,
0xFC,0x00,0xF8,0,0xFD,0x01,0xF9,0,0xFE,0x02,0xFA,0,0xFF,0x03,0xFB,0,
0x00,0x04,0xFC,0,0x01,0x05,0xFD,0,0x02,0x06,0xFE,0,0x03,0x07,0xFF,0,
0x04,0x08,0x00,0,0x05,0x09,0x01,0,0x06,0x0A,0x02,0,0x07,0x0B,0x03,0,
0x08,0x0C,0x04,0,0x09,0x0D,0x05,0,0x0A,0x0E,0x06,0,0x0B,0x0F,0x07,0,
0x0C,0x10,0x08,0,0x0D,0x11,0x09,0,0x0E,0x12,0x0A,0,0x0F,0x13,0x0B,0,
0x10,0x14,0x0C,0,0x11,0x15,0x0D,0,0x12,0x16,0x0E,0,0x13,0x17,0x0F,0,
0x14,0x18,0x10,0,0x15,0x19,0x11,0,0x16,0x1A,0x12,0,0x17,0x1B,0x13,0,
0x18,0x1C,0x14,0,0x19,0x1D,0x15,0,0x1A,0x1E,0x16,0,0x1B,0x1F,0x17,0,
0xDD,0xE0,0xD8,0,0xDE,0xE1,0xD9,0,0xDF,0xE2,0xDA,0,0xE0,0xE3,0xDB,0,
0xE1,0xE4,0xDC,0,0xE2,0xE5,0xDD,0,0xE3,0xE6,0xDE,0,0xE4,0xE7,0xDF,0,
0xE5,0xE8,0xE0,0,0xE6,0xE9,0xE1,0,0xE7,0xEA,0xE2,0,0xE8,0xEB,0xE3,0,
0xE9,0xEC,0xE4,0,0xEA,0xED,0xE5,0,0xEB,0xEE,0xE6,0,0xEC,0xEF,0xE7,0,
0xED,0xF0,0xE8,0,0xEE,0xF1,0xE9,0,0xEF,0xF2,0xEA,0,0xF0,0xF3,0xEB,0,
0xF1,0xF4,0xEC,0,0xF2,0xF5,0xED,0,0xF3,0xF6,0xEE,0,0xF4,0xF7,0xEF,0,
0xF5,0xF8,0xF0,0,0xF6,0xF9,0xF1,0,0xF7,0xFA,0xF2,0,0xF8,0xFB,0xF3,0,
0xF9,0xFC,0xF4,0,0xFA,0xFD,0xF5,0,0xFB,0xFE,0xF6,0,0xFC,0xFF,0xF7,0,
0xFD,0x00,0xF8,0,0xFE,0x01,0xF9,0,0xFF,0x02,0xFA,0,0x00,0x03,0xFB,0,
0x01,0x04,0xFC,0,0x02,0x05,0xFD,0,0x03,0x06,0xFE,0,0x04,0x07,0xFF,0,
0x05,0x08,0x00,0,0x06,0x09,0x01,0,0x07,0x0A,0x02,0,0x08,0x0B,0x03,0,
0x09,0x0C,0x04,0,0x0A,0x0D,0x05,0,0x0B,0x0E,0x06,0,0x0C,0x0F,0x07,0,
0x0D,0x10,0x08,0,0x0E,0x11,0x09,0,0x0F,0x12,0x0A,0,0x10,0x13,0x0B,0,
0x11,0x14,0x0C,0,0x12,0x15,0x0D,0,0x13,0x16,0x0E,0,0x14,0x17,0x0F,0,
0x15,0x18,0x10,0,0x16,0x19,0x11,0,0x17,0x1A,0x12,0,0x18,0x1B,0x13,0,
0x19,0x1C,0x14,0,0x1A,0x1D,0x15,0,0x1B,0x1E,0x16,0,0x1C,0x1F,0x17,0,
0xDE,0xE0,0xD8,0,0xDF,0xE1,0xD9,0,0xE0,0xE2,0xDA,0,0xE1,0xE3,0xDB,0,
0xE2,0xE4,0xDC,0,0xE3,0xE5,0xDD,0,0xE4,0xE6,0xDE,0,0xE5,0xE7,0xDF,0,
0xE6,0xE8,0xE0,0,0xE7,0xE9,0xE1,0,0xE8,0xEA,0xE2,0,0xE9,0xEB,0xE3,0,
0xEA,0xEC,0xE4,0,0xEB,0xED,0xE5,0,0xEC,0xEE,0xE6,0,0xED,0xEF,0xE7,0,
0xEE,0xF0,0xE8,0,0xEF,0xF1,0xE9,0,0xF0,0xF2,0xEA,0,0xF1,0xF3,0xEB,0,
0xF2,0xF4,0xEC,0,0xF3,0xF5,0xED,0,0xF4,0xF6,0xEE,0,0xF5,0xF7,0xEF,0,
0xF6,0xF8,0xF0,0,0xF7,0xF9,0xF1,0,0xF8,0xFA,0xF2,0,0xF9,0xFB,0xF3,0,
0xFA,0xFC,0xF4,0,0xFB,0xFD,0xF5,0,0xFC,0xFE,0xF6,0,0xFD,0xFF,0xF7,0,
0xFE,0x00,0xF8,0,0xFF,0x01,0xF9,0,0x00,0x02,0xFA,0,0x01,0x03,0xFB,0,
0x02,0x04,0xFC,0,0x03,0x05,0xFD,0,0x04,0x06,0xFE,0,0x05,0x07,0xFF,0,
0x06,0x08,0x00,0,0x07,0x09,0x01,0,0x08,0x0A,0x02,0,0x09,0x0B,0x03,0,
0x0A,0x0C,0x04,0,0x0B,0x0D,0x05,0,0x0C,0x0E,0x06,0,0x0D,0x0F,0x07,0,
0x0E,0x10,0x08,0,0x0F,0x11,0x09,0,0x10,0x12,0x0A,0,0x11,0x13,0x0B,0,
0x12,0x14,0x0C,0,0x13,0x15,0x0D,0,0x14,0x16,0x0E,0,0x15,0x17,0x0F,0,
0x16,0x18,0x10,0,0x17,0x19,0x11,0,0x18,0x1A,0x12,0,0x19,0x1B,0x13,0,
0x1A,0x1C,0x14,0,0x1B,0x1D,0x15,0,0x1C,0x1E,0x16,0,0x1D,0x1F,0x17,0,
0xDF,0xE0,0xD8,0,0xE0,0xE1,0xD9,0,0xE1,0xE2,0xDA,0,0xE2,0xE3,0xDB,0,
0xE3,0xE4,0xDC,0,0xE4,0xE5,0xDD,0,0xE5,0xE6,0xDE,0,0xE6,0xE7,0xDF,0,
0xE7,0xE8,0xE0,0,0xE8,0xE9,0xE1,0,0xE9,0xEA,0xE2,0,0xEA,0xEB,0xE3,0,
0xEB,0xEC,0xE4,0,0xEC,0xED,0xE5,0,0xED,0xEE,0xE6,0,0xEE,0xEF,0xE7,0,
0xEF,0xF0,0xE8,0,0xF0,0xF1,0xE9,0,0xF1,0xF2,0xEA,0,0xF2,0xF3,0xEB,0,
0xF3,0xF4,0xEC,0,0xF4,0xF5,0xED,0,0xF5,0xF6,0xEE,0,0xF6,0xF7,0xEF,0,
0xF7,0xF8,0xF0,0,0xF8,0xF9,0xF1,0,0xF9,0xFA,0xF2,0,0xFA,0xFB,0xF3,0,
0xFB,0xFC,0xF4,0,0xFC,0xFD,0xF5,0,0xFD,0xFE,0xF6,0,0xFE,0xFF,0xF7,0,
0xFF,0x00,0xF8,0,0x00,0x01,0xF9,0,0x01,0x02,0xFA,0,0x02,0x03,0xFB,0,
0x03,0x04,0xFC,0,0x04,0x05,0xFD,0,0x05,0x06,0xFE,0,0x06,0x07,0xFF,0,
0x07,0x08,0x00,0,0x08,0x09,0x01,0,0x09,0x0A,0x02,0,0x0A,0x0B,0x03,0,
0x0B,0x0C,0x04,0,0x0C,0x0D,0x05,0,0x0D,0x0E,0x06,0,0x0E,0x0F,0x07,0,
0x0F,0x10,0x08,0,0x10,0x11,0x09,0,0x11,0x12,0x0A,0,0x12,0x13,0x0B,0,
0x13,0x14,0x0C,0,0x14,0x15,0x0D,0,0x15,0x16,0x0E,0,0x16,0x17,0x0F,0,
0x17,0x18,0x10,0,0x18,0x19,0x11,0,0x19,0x1A,0x12,0,0x1A,0x1B,0x13,0,
0x1B,0x1C,0x14,0,0x1C,0x1D,0x15,0,0x1D,0x1E,0x16,0,0x1E,0x1F,0x17,0,
0xE0,0xE0,0xD8,0,0xE1,0xE1,0xD9,0,0xE2,0xE2,0xDA,0,0xE3,0xE3,0xDB,0,
0xE4,0xE4,0xDC,0,0xE5,0xE5,0xDD,0,0xE6,0xE6,0xDE,0,0xE7,0xE7,0xDF,0,
0xE8,0xE8,0xE0,0,0xE9,0xE9,0xE1,0,0xEA,0xEA,0xE2,0,0xEB,0xEB,0xE3,0,
0xEC,0xEC,0xE4,0,0xED,0xED,0xE5,0,0xEE,0xEE,0xE6,0,0xEF,0xEF,0xE7,0,
0xF0,0xF0,0xE8,0,0xF1,0xF1,0xE9,0,0xF2,0xF2,0xEA,0,0xF3,0xF3,0xEB,0,
0xF4,0xF4,0xEC,0,0xF5,0xF5,0xED,0,0xF6,0xF6,0xEE,0,0xF7,0xF7,0xEF,0,
0xF8,0xF8,0xF0,0,0xF9,0xF9,0xF1,0,0xFA,0xFA,0xF2,0,0xFB,0xFB,0xF3,0,
0xFC,0xFC,0xF4,0,0xFD,0xFD,0xF5,0,0xFE,0xFE,0xF6,0,0xFF,0xFF,0xF7,0,
0x00,0x00,0xF8,0,0x01,0x01,0xF9,0,0x02,0x02,0xFA,0,0x03,0x03,0xFB,0,
0x04,0x04,0xFC,0,0x05,0x05,0xFD,0,0x06,0x06,0xFE,0,0x07,0x07,0xFF,0,
0x08,0x08,0x00,0,0x09,0x09,0x01,0,0x0A,0x0A,0x02,0,0x0B,0x0B,0x03,0,
0x0C,0x0C,0x04,0,0x0D,0x0D,0x05,0,0x0E,0x0E,0x06,0,0x0F,0x0F,0x07,0,
0x10,0x10,0x08,0,0x11,0x11,0x09,0,0x12,0x12,0x0A,0,0x13,0x13,0x0B,0,
0x14,0x14,0x0C,0,0x15,0x15,0x0D,0,0x16,0x16,0x0E,0,0x17,0x17,0x0F,0,
0x18,0x18,0x10,0,0x19,0x19,0x11,0,0x1A,0x1A,0x12,0,0x1B,0x1B,0x13,0,
0x1C,0x1C,0x14,0,0x1D,0x1D,0x15,0,0x1E,0x1E,0x16,0,0x1F,0x1F,0x17,0,
0xE1,0xE0,0xD8,0,0xE2,0xE1,0xD9,0,0xE3,0xE2,0xDA,0,0xE4,0xE3,0xDB,0,
0xE5,0xE4,0xDC,0,0xE6,0xE5,0xDD,0,0xE7,0xE6,0xDE,0,0xE8,0xE7,0xDF,0,
0xE9,0xE8,0xE0,0,0xEA,0xE9,0xE1,0,0xEB,0xEA,0xE2,0,0xEC,0xEB,0xE3,0,
0xED,0xEC,0xE4,0,0xEE,0xED,0xE5,0,0xEF,0xEE,0xE6,0,0xF0,0xEF,0xE7,0,
0xF1,0xF0,0xE8,0,0xF2,0xF1,0xE9,0,0xF3,0xF2,0xEA,0,0xF4,0xF3,0xEB,0,
0xF5,0xF4,0xEC,0,0xF6,0xF5,0xED,0,0xF7,0xF6,0xEE,0,0xF8,0xF7,0xEF,0,
0xF9,0xF8,0xF0,0,0xFA,0xF9,0xF1,0,0xFB,0xFA,0xF2,0,0xFC,0xFB,0xF3,0,
0xFD,0xFC,0xF4,0,0xFE,0xFD,0xF5,0,0xFF,0xFE,0xF6,0,0x00,0xFF,0xF7,0,
0x01,0x00,0xF8,0,0x02,0x01,0xF9,0,0x03,0x02,0xFA,0,0x04,0x03,0xFB,0,
0x05,0x04,0xFC,0,0x06,0x05,0xFD,0,0x07,0x06,0xFE,0,0x08,0x07,0xFF,0,
0x09,0x08,0x00,0,0x0A,0x09,0x01,0,0x0B,0x0A,0x02,0,0x0C,0x0B,0x03,0,
0x0D,0x0C,0x04,0,0x0E,0x0D,0x05,0,0x0F,0x0E,0x06,0,0x10,0x0F,0x07,0,
0x11,0x10,0x08,0,0x12,0x11,0x09,0,0x13,0x12,0x0A,0,0x14,0x13,0x0B,0,
0x15,0x14,0x0C,0,0x16,0x15,0x0D,0,0x17,0x16,0x0E,0,0x18,0x17,0x0F,0,
0x19,0x18,0x10,0,0x1A,0x19,0x11,0,0x1B,0x1A,0x12,0,0x1C,0x1B,0x13,0,
0x1D,0x1C,0x14,0,0x1E,0x1D,0x15,0,0x1F,0x1E,0x16,0,0x20,0x1F,0x17,0,
0xE2,0xE0,0xD8,0,0xE3,0xE1,0xD9,0,0xE4,0xE2,0xDA,0,0xE5,0xE3,0xDB,0,
0xE6,0xE4,0xDC,0,0xE7,0xE5,0xDD,0,0xE8,0xE6,0xDE,0,0xE9,0xE7,0xDF,0,
0xEA,0xE8,0xE0,0,0xEB,0xE9,0xE1,0,0xEC,0xEA,0xE2,0,0xED,0xEB,0xE3,0,
0xEE,0xEC,0xE4,0,0xEF,0xED,0xE5,0,0xF0,0xEE,0xE6,0,0xF1,0xEF,0xE7,0,
0xF2,0xF0,0xE8,0,0xF3,0xF1,0xE9,0,0xF4,0xF2,0xEA,0,0xF5,0xF3,0xEB,0,
0xF6,0xF4,0xEC,0,0xF7,0xF5,0xED,0,0xF8,0xF6,0xEE,0,0xF9,0xF7,0xEF,0,
0xFA,0xF8,0xF0,0,0xFB,0xF9,0xF1,0,0xFC,0xFA,0xF2,0,0xFD,0xFB,0xF3,0,
0xFE,0xFC,0xF4,0,0xFF,0xFD,0xF5,0,0x00,0xFE,0xF6,0,0x01,0xFF,0xF7,0,
0x02,0x00,0xF8,0,0x03,0x01,0xF9,0,0x04,0x02,0xFA,0,0x05,0x03,0xFB,0,
0x06,0x04,0xFC,0,0x07,0x05,0xFD,0,0x08,0x06,0xFE,0,0x09,0x07,0xFF,0,
0x0A,0x08,0x00,0,0x0B,0x09,0x01,0,0x0C,0x0A,0x02,0,0x0D,0x0B,0x03,0,
0x0E,0x0C,0x04,0,0x0F,0x0D,0x05,0,0x10,0x0E,0x06,0,0x11,0x0F,0x07,0,
0x12,0x10,0x08,0,0x13,0x11,0x09,0,0x14,0x12,0x0A,0,0x15,0x13,0x0B,0,
0x16,0x14,0x0C,0,0x17,0x15,0x0D,0,0x18,0x16,0x0E,0,0x19,0x17,0x0F,0,
0x1A,0x18,0x10,0,0x1B,0x19,0x11,0,0x1C,0x1A,0x12,0,0x1D,0x1B,0x13,0,
0x1E,0x1C,0x14,0,0x1F,0x1D,0x15,0,0x20,0x1E,0x16,0,0x21,0x1F,0x17,0,
0xE3,0xE0,0xD8,0,0xE4,0xE1,0xD9,0,0xE5,0xE2,0xDA,0,0xE6,0xE3,0xDB,0,
0xE7,0xE4,0xDC,0,0xE8,0xE5,0xDD,0,0xE9,0xE6,0xDE,0,0xEA,0xE7,0xDF,0,
0xEB,0xE8,0xE0,0,0xEC,0xE9,0xE1,0,0xED,0xEA,0xE2,0,0xEE,0xEB,0xE3,0,
0xEF,0xEC,0xE4,0,0xF0,0xED,0xE5,0,0xF1,0xEE,0xE6,0,0xF2,0xEF,0xE7,0,
0xF3,0xF0,0xE8,0,0xF4,0xF1,0xE9,0,0xF5,0xF2,0xEA,0,0xF6,0xF3,0xEB,0,
0xF7,0xF4,0xEC,0,0xF8,0xF5,0xED,0,0xF9,0xF6,0xEE,0,0xFA,0xF7,0xEF,0,
0xFB,0xF8,0xF0,0,0xFC,0xF9,0xF1,0,0xFD,0xFA,0xF2,0,0xFE,0xFB,0xF3,0,
0xFF,0xFC,0xF4,0,0x00,0xFD,0xF5,0,0x01,0xFE,0xF6,0,0x02,0xFF,0xF7,0,
0x03,0x00,0xF8,0,0x04,0x01,0xF9,0,0x05,0x02,0xFA,0,0x06,0x03,0xFB,0,
0x07,0x04,0xFC,0,0x08,0x05,0xFD,0,0x09,0x06,0xFE,0,0x0A,0x07,0xFF,0,
0x0B,0x08,0x00,0,0x0C,0x09,0x01,0,0x0D,0x0A,0x02,0,0x0E,0x0B,0x03,0,
0x0F,0x0C,0x04,0,0x10,0x0D,0x05,0,0x11,0x0E,0x06,0,0x12,0x0F,0x07,0,
0x13,0x10,0x08,0,0x14,0x11,0x09,0,0x15,0x12,0x0A,0,0x16,0x13,0x0B,0,
0x17,0x14,0x0C,0,0x18,0x15,0x0D,0,0x19,0x16,0x0E,0,0x1A,0x17,0x0F,0,
0x1B,0x18,0x10,0,0x1C,0x19,0x11,0,0x1D,0x1A,0x12,0,0x1E,0x1B,0x13,0,
0x1F,0x1C,0x14,0,0x20,0x1D,0x15,0,0x21,0x1E,0x16,0,0x22,0x1F,0x17,0,
0xE4,0xE0,0xD8,0,0xE5,0xE1,0xD9,0,0xE6,0xE2,0xDA,0,0xE7,0xE3,0xDB,0,
0xE8,0xE4,0xDC,0,0xE9,0xE5,0xDD,0,0xEA,0xE6,0xDE,0,0xEB,0xE7,0xDF,0,
0xEC,0xE8,0xE0,0,0xED,0xE9,0xE1,0,0xEE,0xEA,0xE2,0,0xEF,0xEB,0xE3,0,
0xF0,0xEC,0xE4,0,0xF1,0xED,0xE5,0,0xF2,0xEE,0xE6,0,0xF3,0xEF,0xE7,0,
0xF4,0xF0,0xE8,0,0xF5,0xF1,0xE9,0,0xF6,0xF2,0xEA,0,0xF7,0xF3,0xEB,0,
0xF8,0xF4,0xEC,0,0xF9,0xF5,0xED,0,0xFA,0xF6,0xEE,0,0xFB,0xF7,0xEF,0,
0xFC,0xF8,0xF0,0,0xFD,0xF9,0xF1,0,0xFE,0xFA,0xF2,0,0xFF,0xFB,0xF3,0,
0x00,0xFC,0xF4,0,0x01,0xFD,0xF5,0,0x02,0xFE,0xF6,0,0x03,0xFF,0xF7,0,
0x04,0x00,0xF8,0,0x05,0x01,0xF9,0,0x06,0x02,0xFA,0,0x07,0x03,0xFB,0,
0x08,0x04,0xFC,0,0x09,0x05,0xFD,0,0x0A,0x06,0xFE,0,0x0B,0x07,0xFF,0,
0x0C,0x08,0x00,0,0x0D,0x09,0x01,0,0x0E,0x0A,0x02,0,0x0F,0x0B,0x03,0,
0x10,0x0C,0x04,0,0x11,0x0D,0x05,0,0x12,0x0E,0x06,0,0x13,0x0F,0x07,0,
0x14,0x10,0x08,0,0x15,0x11,0x09,0,0x16,0x12,0x0A,0,0x17,0x13,0x0B,0,
0x18,0x14,0x0C,0,0x19,0x15,0x0D,0,0x1A,0x16,0x0E,0,0x1B,0x17,0x0F,0,
0x1C,0x18,0x10,0,0x1D,0x19,0x11,0,0x1E,0x1A,0x12,0,0x1F,0x1B,0x13,0,
0x20,0x1C,0x14,0,0x21,0x1D,0x15,0,0x22,0x1E,0x16,0,0x23,0x1F,0x17,0,
0xE5,0xE0,0xD8,0,0xE6,0xE1,0xD9,0,0xE7,0xE2,0xDA,0,0xE8,0xE3,0xDB,0,
0xE9,0xE4,0xDC,0,0xEA,0xE5,0xDD,0,0xEB,0xE6,0xDE,0,0xEC,0xE7,0xDF,0,
0xED,0xE8,0xE0,0,0xEE,0xE9,0xE1,0,0xEF,0xEA,0xE2,0,0xF0,0xEB,0xE3,0,
0xF1,0xEC,0xE4,0,0xF2,0xED,0xE5,0,0xF3,0xEE,0xE6,0,0xF4,0xEF,0xE7,0,
0xF5,0xF0,0xE8,0,0xF6,0xF1,0xE9,0,0xF7,0xF2,0xEA,0,0xF8,0xF3,0xEB,0,
0xF9,0xF4,0xEC,0,0xFA,0xF5,0xED,0,0xFB,0xF6,0xEE,0,0xFC,0xF7,0xEF,0,
0xFD,0xF8,0xF0,0,0xFE,0xF9,0xF1,0,0xFF,0xFA,0xF2,0,0x00,0xFB,0xF3,0,
0x01,0xFC,0xF4,0,0x02,0xFD,0xF5,0,0x03,0xFE,0xF6,0,0x04,0xFF,0xF7,0,
0x05,0x00,0xF8,0,0x06,0x01,0xF9,0,0x07,0x02,0xFA,0,0x08,0x03,0xFB,0,
0x09,0x04,0xFC,0,0x0A,0x05,0xFD,0,0x0B,0x06,0xFE,0,0x0C,0x07,0xFF,0,
0x0D,0x08,0x00,0,0x0E,0x09,0x01,0,0x0F,0x0A,0x02,0,0x10,0x0B,0x03,0,
0x11,0x0C,0x04,0,0x12,0x0D,0x05,0,0x13,0x0E,0x06,0,0x14,0x0F,0x07,0,
0x15,0x10,0x08,0,0x16,0x11,0x09,0,0x17,0x12,0x0A,0,0x18,0x13,0x0B,0,
0x19,0x14,0x0C,0,0x1A,0x15,0x0D,0,0x1B,0x16,0x0E,0,0x1C,0x17,0x0F,0,
0x1D,0x18,0x10,0,0x1E,0x19,0x11,0,0x1F,0x1A,0x12,0,0x20,0x1B,0x13,0,
0x21,0x1C,0x14,0,0x22,0x1D,0x15,0,0x23,0x1E,0x16,0,0x24,0x1F,0x17,0,
0xE6,0xE0,0xD8,0,0xE7,0xE1,0xD9,0,0xE8,0xE2,0xDA,0,0xE9,0xE3,0xDB,0,
0xEA,0xE4,0xDC,0,0xEB,0xE5,0xDD,0,0xEC,0xE6,0xDE,0,0xED,0xE7,0xDF,0,
0xEE,0xE8,0xE0,0,0xEF,0xE9,0xE1,0,0xF0,0xEA,0xE2,0,0xF1,0xEB,0xE3,0,
0xF2,0xEC,0xE4,0,0xF3,0xED,0xE5,0,0xF4,0xEE,0xE6,0,0xF5,0xEF,0xE7,0,
0xF6,0xF0,0xE8,0,0xF7,0xF1,0xE9,0,0xF8,0xF2,0xEA,0,0xF9,0xF3,0xEB,0,
0xFA,0xF4,0xEC,0,0xFB,0xF5,0xED,0,0xFC,0xF6,0xEE,0,0xFD,0xF7,0xEF,0,
0xFE,0xF8,0xF0,0,0xFF,0xF9,0xF1,0,0x00,0xFA,0xF2,0,0x01,0xFB,0xF3,0,
0x02,0xFC,0xF4,0,0x03,0xFD,0xF5,0,0x04,0xFE,0xF6,0,0x05,0xFF,0xF7,0,
0x06,0x00,0xF8,0,0x07,0x01,0xF9,0,0x08,0x02,0xFA,0,0x09,0x03,0xFB,0,
0x0A,0x04,0xFC,0,0x0B,0x05,0xFD,0,0x0C,0x06,0xFE,0,0x0D,0x07,0xFF,0,
0x0E,0x08,0x00,0,0x0F,0x09,0x01,0,0x10,0x0A,0x02,0,0x11,0x0B,0x03,0,
0x12,0x0C,0x04,0,0x13,0x0D,0x05,0,0x14,0x0E,0x06,0,0x15,0x0F,0x07,0,
0x16,0x10,0x08,0,0x17,0x11,0x09,0,0x18,0x12,0x0A,0,0x19,0x13,0x0B,0,
0x1A,0x14,0x0C,0,0x1B,0x15,0x0D,0,0x1C,0x16,0x0E,0,0x1D,0x17,0x0F,0,
0x1E,0x18,0x10,0,0x1F,0x19,0x11,0,0x20,0x1A,0x12,0,0x21,0x1B,0x13,0,
0x22,0x1C,0x14,0,0x23,0x1D,0x15,0,0x24,0x1E,0x16,0,0x25,0x1F,0x17,0,
0xE7,0xE0,0xD8,0,0xE8,0xE1,0xD9,0,0xE9,0xE2,0xDA,0,0xEA,0xE3,0xDB,0,
0xEB,0xE4,0xDC,0,0xEC,0xE5,0xDD,0,0xED,0xE6,0xDE,0,0xEE,0xE7,0xDF,0,
0xEF,0xE8,0xE0,0,0xF0,0xE9,0xE1,0,0xF1,0xEA,0xE2,0,0xF2,0xEB,0xE3,0,
0xF3,0xEC,0xE4,0,0xF4,0xED,0xE5,0,0xF5,0xEE,0xE6,0,0xF6,0xEF,0xE7,0,
0xF7,0xF0,0xE8,0,0xF8,0xF1,0xE9,0,0xF9,0xF2,0xEA,0,0xFA,0xF3,0xEB,0,
0xFB,0xF4,0xEC,0,0xFC,0xF5,0xED,0,0xFD,0xF6,0xEE,0,0xFE,0xF7,0xEF,0,
0xFF,0xF8,0xF0,0,0x00,0xF9,0xF1,0,0x01,0xFA,0xF2,0,0x02,0xFB,0xF3,0,
0x03,0xFC,0xF4,0,0x04,0xFD,0xF5,0,0x05,0xFE,0xF6,0,0x06,0xFF,0xF7,0,
0x07,0x00,0xF8,0,0x08,0x01,0xF9,0,0x09,0x02,0xFA,0,0x0A,0x03,0xFB,0,
0x0B,0x04,0xFC,0,0x0C,0x05,0xFD,0,0x0D,0x06,0xFE,0,0x0E,0x07,0xFF,0,
0x0F,0x08,0x00,0,0x10,0x09,0x01,0,0x11,0x0A,0x02,0,0x12,0x0B,0x03,0,
0x13,0x0C,0x04,0,0x14,0x0D,0x05,0,0x15,0x0E,0x06,0,0x16,0x0F,0x07,0,
0x17,0x10,0x08,0,0x18,0x11,0x09,0,0x19,0x12,0x0A,0,0x1A,0x13,0x0B,0,
0x1B,0x14,0x0C,0,0x1C,0x15,0x0D,0,0x1D,0x16,0x0E,0,0x1E,0x17,0x0F,0,
0x1F,0x18,0x10,0,0x20,0x19,0x11,0,0x21,0x1A,0x12,0,0x22,0x1B,0x13,0,
0x23,0x1C,0x14,0,0x24,0x1D,0x15,0,0x25,0x1E,0x16,0,0x26,0x1F,0x17,0,
0xD8,0xE0,0xD9,0,0xD9,0xE1,0xDA,0,0xDA,0xE2,0xDB,0,0xDB,0xE3,0xDC,0,
0xDC,0xE4,0xDD,0,0xDD,0xE5,0xDE,0,0xDE,0xE6,0xDF,0,0xDF,0xE7,0xE0,0,
0xE0,0xE8,0xE1,0,0xE1,0xE9,0xE2,0,0xE2,0xEA,0xE3,0,0xE3,0xEB,0xE4,0,
0xE4,0xEC,0xE5,0,0xE5,0xED,0xE6,0,0xE6,0xEE,0xE7,0,0xE7,0xEF,0xE8,0,
0xE8,0xF0,0xE9,0,0xE9,0xF1,0xEA,0,0xEA,0xF2,0xEB,0,0xEB,0xF3,0xEC,0,
0xEC,0xF4,0xED,0,0xED,0xF5,0xEE,0,0xEE,0xF6,0xEF,0,0xEF,0xF7,0xF0,0,
0xF0,0xF8,0xF1,0,0xF1,0xF9,0xF2,0,0xF2,0xFA,0xF3,0,0xF3,0xFB,0xF4,0,
0xF4,0xFC,0xF5,0,0xF5,0xFD,0xF6,0,0xF6,0xFE,0xF7,0,0xF7,0xFF,0xF8,0,
0xF8,0x00,0xF9,0,0xF9,0x01,0xFA,0,0xFA,0x02,0xFB,0,0xFB,0x03,0xFC,0,
0xFC,0x04,0xFD,0,0xFD,0x05,0xFE,0,0xFE,0x06,0xFF,0,0xFF,0x07,0x00,0,
0x00,0x08,0x01,0,0x01,0x09,0x02,0,0x02,0x0A,0x03,0,0x03,0x0B,0x04,0,
0x04,0x0C,0x05,0,0x05,0x0D,0x06,0,0x06,0x0E,0x07,0,0x07,0x0F,0x08,0,
0x08,0x10,0x09,0,0x09,0x11,0x0A,0,0x0A,0x12,0x0B,0,0x0B,0x13,0x0C,0,
0x0C,0x14,0x0D,0,0x0D,0x15,0x0E,0,0x0E,0x16,0x0F,0,0x0F,0x17,0x10,0,
0x10,0x18,0x11,0,0x11,0x19,0x12,0,0x12,0x1A,0x13,0,0x13,0x1B,0x14,0,
0x14,0x1C,0x15,0,0x15,0x1D,0x16,0,0x16,0x1E,0x17,0,0x17,0x1F,0x18,0,
0xD9,0xE0,0xD9,0,0xDA,0xE1,0xDA,0,0xDB,0xE2,0xDB,0,0xDC,0xE3,0xDC,0,
0xDD,0xE4,0xDD,0,0xDE,0xE5,0xDE,0,0xDF,0xE6,0xDF,0,0xE0,0xE7,0xE0,0,
0xE1,0xE8,0xE1,0,0xE2,0xE9,0xE2,0,0xE3,0xEA,0xE3,0,0xE4,0xEB,0xE4,0,
0xE5,0xEC,0xE5,0,0xE6,0xED,0xE6,0,0xE7,0xEE,0xE7,0,0xE8,0xEF,0xE8,0,
0xE9,0xF0,0xE9,0,0xEA,0xF1,0xEA,0,0xEB,0xF2,0xEB,0,0xEC,0xF3,0xEC,0,
0xED,0xF4,0xED,0,0xEE,0xF5,0xEE,0,0xEF,0xF6,0xEF,0,0xF0,0xF7,0xF0,0,
0xF1,0xF8,0xF1,0,0xF2,0xF9,0xF2,0,0xF3,0xFA,0xF3,0,0xF4,0xFB,0xF4,0,
0xF5,0xFC,0xF5,0,0xF6,0xFD,0xF6,0,0xF7,0xFE,0xF7,0,0xF8,0xFF,0xF8,0,
0xF9,0x00,0xF9,0,0xFA,0x01,0xFA,0,0xFB,0x02,0xFB,0,0xFC,0x03,0xFC,0,
0xFD,0x04,0xFD,0,0xFE,0x05,0xFE,0,0xFF,0x06,0xFF,0,0x00,0x07,0x00,0,
0x01,0x08,0x01,0,0x02,0x09,0x02,0,0x03,0x0A,0x03,0,0x04,0x0B,0x04,0,
0x05,0x0C,0x05,0,0x06,0x0D,0x06,0,0x07,0x0E,0x07,0,0x08,0x0F,0x08,0,
0x09,0x10,0x09,0,0x0A,0x11,0x0A,0,0x0B,0x12,0x0B,0,0x0C,0x13,0x0C,0,
0x0D,0x14,0x0D,0,0x0E,0x15,0x0E,0,0x0F,0x16,0x0F,0,0x10,0x17,0x10,0,
0x11,0x18,0x11,0,0x12,0x19,0x12,0,0x13,0x1A,0x13,0,0x14,0x1B,0x14,0,
0x15,0x1C,0x15,0,0x16,0x1D,0x16,0,0x17,0x1E,0x17,0,0x18,0x1F,0x18,0,
0xDA,0xE0,0xD9,0,0xDB,0xE1,0xDA,0,0xDC,0xE2,0xDB,0,0xDD,0xE3,0xDC,0,
0xDE,0xE4,0xDD,0,0xDF,0xE5,0xDE,0,0xE0,0xE6,0xDF,0,0xE1,0xE7,0xE0,0,
0xE2,0xE8,0xE1,0,0xE3,0xE9,0xE2,0,0xE4,0xEA,0xE3,0,0xE5,0xEB,0xE4,0,
0xE6,0xEC,0xE5,0,0xE7,0xED,0xE6,0,0xE8,0xEE,0xE7,0,0xE9,0xEF,0xE8,0,
0xEA,0xF0,0xE9,0,0xEB,0xF1,0xEA,0,0xEC,0xF2,0xEB,0,0xED,0xF3,0xEC,0,
0xEE,0xF4,0xED,0,0xEF,0xF5,0xEE,0,0xF0,0xF6,0xEF,0,0xF1,0xF7,0xF0,0,
0xF2,0xF8,0xF1,0,0xF3,0xF9,0xF2,0,0xF4,0xFA,0xF3,0,0xF5,0xFB,0xF4,0,
0xF6,0xFC,0xF5,0,0xF7,0xFD,0xF6,0,0xF8,0xFE,0xF7,0,0xF9,0xFF,0xF8,0,
0xFA,0x00,0xF9,0,0xFB,0x01,0xFA,0,0xFC,0x02,0xFB,0,0xFD,0x03,0xFC,0,
0xFE,0x04,0xFD,0,0xFF,0x05,0xFE,0,0x00,0x06,0xFF,0,0x01,0x07,0x00,0,
0x02,0x08,0x01,0,0x03,0x09,0x02,0,0x04,0x0A,0x03,0,0x05,0x0B,0x04,0,
0x06,0x0C,0x05,0,0x07,0x0D,0x06,0,0x08,0x0E,0x07,0,0x09,0x0F,0x08,0,
0x0A,0x10,0x09,0,0x0B,0x11,0x0A,0,0x0C,0x12,0x0B,0,0x0D,0x13,0x0C,0,
0x0E,0x14,0x0D,0,0x0F,0x15,0x0E,0,0x10,0x16,0x0F,0,0x11,0x17,0x10,0,
0x12,0x18,0x11,0,0x13,0x19,0x12,0,0x14,0x1A,0x13,0,0x15,0x1B,0x14,0,
0x16,0x1C,0x15,0,0x17,0x1D,0x16,0,0x18,0x1E,0x17,0,0x19,0x1F,0x18,0,
0xDB,0xE0,0xD9,0,0xDC,0xE1,0xDA,0,0xDD,0xE2,0xDB,0,0xDE,0xE3,0xDC,0,
0xDF,0xE4,0xDD,0,0xE0,0xE5,0xDE,0,0xE1,0xE6,0xDF,0,0xE2,0xE7,0xE0,0,
0xE3,0xE8,0xE1,0,0xE4,0xE9,0xE2,0,0xE5,0xEA,0xE3,0,0xE6,0xEB,0xE4,0,
0xE7,0xEC,0xE5,0,0xE8,0xED,0xE6,0,0xE9,0xEE,0xE7,0,0xEA,0xEF,0xE8,0,
0xEB,0xF0,0xE9,0,0xEC,0xF1,0xEA,0,0xED,0xF2,0xEB,0,0xEE,0xF3,0xEC,0,
0xEF,0xF4,0xED,0,0xF0,0xF5,0xEE,0,0xF1,0xF6,0xEF,0,0xF2,0xF7,0xF0,0,
0xF3,0xF8,0xF1,0,0xF4,0xF9,0xF2,0,0xF5,0xFA,0xF3,0,0xF6,0xFB,0xF4,0,
0xF7,0xFC,0xF5,0,0xF8,0xFD,0xF6,0,0xF9,0xFE,0xF7,0,0xFA,0xFF,0xF8,0,
0xFB,0x00,0xF9,0,0xFC,0x01,0xFA,0,0xFD,0x02,0xFB,0,0xFE,0x03,0xFC,0,
0xFF,0x04,0xFD,0,0x00,0x05,0xFE,0,0x01,0x06,0xFF,0,0x02,0x07,0x00,0,
0x03,0x08,0x01,0,0x04,0x09,0x02,0,0x05,0x0A,0x03,0,0x06,0x0B,0x04,0,
0x07,0x0C,0x05,0,0x08,0x0D,0x06,0,0x09,0x0E,0x07,0,0x0A,0x0F,0x08,0,
0x0B,0x10,0x09,0,0x0C,0x11,0x0A,0,0x0D,0x12,0x0B,0,0x0E,0x13,0x0C,0,
0x0F,0x14,0x0D,0,0x10,0x15,0x0E,0,0x11,0x16,0x0F,0,0x12,0x17,0x10,0,
0x13,0x18,0x11,0,0x14,0x19,0x12,0,0x15,0x1A,0x13,0,0x16,0x1B,0x14,0,
0x17,0x1C,0x15,0,0x18,0x1D,0x16,0,0x19,0x1E,0x17,0,0x1A,0x1F,0x18,0,
0xDC,0xE0,0xD9,0,0xDD,0xE1,0xDA,0,0xDE,0xE2,0xDB,0,0xDF,0xE3,0xDC,0,
0xE0,0xE4,0xDD,0,0xE1,0xE5,0xDE,0,0xE2,0xE6,0xDF,0,0xE3,0xE7,0xE0,0,
0xE4,0xE8,0xE1,0,0xE5,0xE9,0xE2,0,0xE6,0xEA,0xE3,0,0xE7,0xEB,0xE4,0,
0xE8,0xEC,0xE5,0,0xE9,0xED,0xE6,0,0xEA,0xEE,0xE7,0,0xEB,0xEF,0xE8,0,
0xEC,0xF0,0xE9,0,0xED,0xF1,0xEA,0,0xEE,0xF2,0xEB,0,0xEF,0xF3,0xEC,0,
0xF0,0xF4,0xED,0,0xF1,0xF5,0xEE,0,0xF2,0xF6,0xEF,0,0xF3,0xF7,0xF0,0,
0xF4,0xF8,0xF1,0,0xF5,0xF9,0xF2,0,0xF6,0xFA,0xF3,0,0xF7,0xFB,0xF4,0,
0xF8,0xFC,0xF5,0,0xF9,0xFD,0xF6,0,0xFA,0xFE,0xF7,0,0xFB,0xFF,0xF8,0,
0xFC,0x00,0xF9,0,0xFD,0x01,0xFA,0,0xFE,0x02,0xFB,0,0xFF,0x03,0xFC,0,
0x00,0x04,0xFD,0,0x01,0x05,0xFE,0,0x02,0x06,0xFF,0,0x03,0x07,0x00,0,
0x04,0x08,0x01,0,0x05,0x09,0x02,0,0x06,0x0A,0x03,0,0x07,0x0B,0x04,0,
0x08,0x0C,0x05,0,0x09,0x0D,0x06,0,0x0A,0x0E,0x07,0,0x0B,0x0F,0x08,0,
0x0C,0x10,0x09,0,0x0D,0x11,0x0A,0,0x0E,0x12,0x0B,0,0x0F,0x13,0x0C,0,
0x10,0x14,0x0D,0,0x11,0x15,0x0E,0,0x12,0x16,0x0F,0,0x13,0x17,0x10,0,
0x14,0x18,0x11,0,0x15,0x19,0x12,0,0x16,0x1A,0x13,0,0x17,0x1B,0x14,0,
0x18,0x1C,0x15,0,0x19,0x1D,0x16,0,0x1A,0x1E,0x17,0,0x1B,0x1F,0x18,0,
0xDD,0xE0,0xD9,0,0xDE,0xE1,0xDA,0,0xDF,0xE2,0xDB,0,0xE0,0xE3,0xDC,0,
0xE1,0xE4,0xDD,0,0xE2,0xE5,0xDE,0,0xE3,0xE6,0xDF,0,0xE4,0xE7,0xE0,0,
0xE5,0xE8,0xE1,0,0xE6,0xE9,0xE2,0,0xE7,0xEA,0xE3,0,0xE8,0xEB,0xE4,0,
0xE9,0xEC,0xE5,0,0xEA,0xED,0xE6,0,0xEB,0xEE,0xE7,0,0xEC,0xEF,0xE8,0,
0xED,0xF0,0xE9,0,0xEE,0xF1,0xEA,0,0xEF,0xF2,0xEB,0,0xF0,0xF3,0xEC,0,
0xF1,0xF4,0xED,0,0xF2,0xF5,0xEE,0,0xF3,0xF6,0xEF,0,0xF4,0xF7,0xF0,0,
0xF5,0xF8,0xF1,0,0xF6,0xF9,0xF2,0,0xF7,0xFA,0xF3,0,0xF8,0xFB,0xF4,0,
0xF9,0xFC,0xF5,0,0xFA,0xFD,0xF6,0,0xFB,0xFE,0xF7,0,0xFC,0xFF,0xF8,0,
0xFD,0x00,0xF9,0,0xFE,0x01,0xFA,0,0xFF,0x02,0xFB,0,0x00,0x03,0xFC,0,
0x01,0x04,0xFD,0,0x02,0x05,0xFE,0,0x03,0x06,0xFF,0,0x04,0x07,0x00,0,
0x05,0x08,0x01,0,0x06,0x09,0x02,0,0x07,0x0A,0x03,0,0x08,0x0B,0x04,0,
0x09,0x0C,0x05,0,0x0A,0x0D,0x06,0,0x0B,0x0E,0x07,0,0x0C,0x0F,0x08,0,
0x0D,0x10,0x09,0,0x0E,0x11,0x0A,0,0x0F,0x12,0x0B,0,0x10,0x13,0x0C,0,
0x11,0x14,0x0D,0,0x12,0x15,0x0E,0,0x13,0x16,0x0F,0,0x14,0x17,0x10,0,
0x15,0x18,0x11,0,0x16,0x19,0x12,0,0x17,0x1A,0x13,0,0x18,0x1B,0x14,0,
0x19,0x1C,0x15,0,0x1A,0x1D,0x16,0,0x1B,0x1E,0x17,0,0x1C,0x1F,0x18,0,
0xDE,0xE0,0xD9,0,0xDF,0xE1,0xDA,0,0xE0,0xE2,0xDB,0,0xE1,0xE3,0xDC,0,
0xE2,0xE4,0xDD,0,0xE3,0xE5,0xDE,0,0xE4,0xE6,0xDF,0,0xE5,0xE7,0xE0,0,
0xE6,0xE8,0xE1,0,0xE7,0xE9,0xE2,0,0xE8,0xEA,0xE3,0,0xE9,0xEB,0xE4,0,
0xEA,0xEC,0xE5,0,0xEB,0xED,0xE6,0,0xEC,0xEE,0xE7,0,0xED,0xEF,0xE8,0,
0xEE,0xF0,0xE9,0,0xEF,0xF1,0xEA,0,0xF0,0xF2,0xEB,0,0xF1,0xF3,0xEC,0,
0xF2,0xF4,0xED,0,0xF3,0xF5,0xEE,0,0xF4,0xF6,0xEF,0,0xF5,0xF7,0xF0,0,
0xF6,0xF8,0xF1,0,0xF7,0xF9,0xF2,0,0xF8,0xFA,0xF3,0,0xF9,0xFB,0xF4,0,
0xFA,0xFC,0xF5,0,0xFB,0xFD,0xF6,0,0xFC,0xFE,0xF7,0,0xFD,0xFF,0xF8,0,
0xFE,0x00,0xF9,0,0xFF,0x01,0xFA,0,0x00,0x02,0xFB,0,0x01,0x03,0xFC,0,
0x02,0x04,0xFD,0,0x03,0x05,0xFE,0,0x04,0x06,0xFF,0,0x05,0x07,0x00,0,