multi_compress 0.3.2 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (212) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -3
  3. data/GET_STARTED.md +3 -3
  4. data/README.md +75 -66
  5. data/THIRD_PARTY_NOTICES.md +24 -0
  6. data/ext/multi_compress/brotli_dec_static_init.c +3 -0
  7. data/ext/multi_compress/brotli_enc_static_init.c +3 -0
  8. data/ext/multi_compress/extconf.rb +79 -3
  9. data/ext/multi_compress/multi_compress.c +199 -120
  10. data/ext/multi_compress/vendor/.vendored +2 -2
  11. data/ext/multi_compress/vendor/brotli/LICENSE +19 -0
  12. data/ext/multi_compress/vendor/brotli/c/common/constants.c +7 -7
  13. data/ext/multi_compress/vendor/brotli/c/common/constants.h +2 -5
  14. data/ext/multi_compress/vendor/brotli/c/common/context.c +2 -2
  15. data/ext/multi_compress/vendor/brotli/c/common/context.h +1 -2
  16. data/ext/multi_compress/vendor/brotli/c/common/dictionary.c +4 -5856
  17. data/ext/multi_compress/vendor/brotli/c/common/dictionary.h +1 -2
  18. data/ext/multi_compress/vendor/brotli/c/common/dictionary_inc.h +5847 -0
  19. data/ext/multi_compress/vendor/brotli/c/common/platform.c +0 -4
  20. data/ext/multi_compress/vendor/brotli/c/common/platform.h +182 -43
  21. data/ext/multi_compress/vendor/brotli/c/common/shared_dictionary.c +3 -7
  22. data/ext/multi_compress/vendor/brotli/c/common/shared_dictionary_internal.h +1 -1
  23. data/ext/multi_compress/vendor/brotli/c/common/static_init.h +56 -0
  24. data/ext/multi_compress/vendor/brotli/c/common/transform.c +6 -4
  25. data/ext/multi_compress/vendor/brotli/c/common/transform.h +1 -2
  26. data/ext/multi_compress/vendor/brotli/c/common/version.h +3 -3
  27. data/ext/multi_compress/vendor/brotli/c/dec/bit_reader.c +2 -3
  28. data/ext/multi_compress/vendor/brotli/c/dec/bit_reader.h +0 -4
  29. data/ext/multi_compress/vendor/brotli/c/dec/decode.c +128 -39
  30. data/ext/multi_compress/vendor/brotli/c/dec/huffman.c +2 -5
  31. data/ext/multi_compress/vendor/brotli/c/dec/huffman.h +0 -2
  32. data/ext/multi_compress/vendor/brotli/c/dec/prefix.c +67 -0
  33. data/ext/multi_compress/vendor/brotli/c/dec/prefix.h +18 -708
  34. data/ext/multi_compress/vendor/brotli/c/dec/prefix_inc.h +707 -0
  35. data/ext/multi_compress/vendor/brotli/c/dec/state.c +18 -15
  36. data/ext/multi_compress/vendor/brotli/c/dec/state.h +2 -6
  37. data/ext/multi_compress/vendor/brotli/c/dec/static_init.c +53 -0
  38. data/ext/multi_compress/vendor/brotli/c/dec/static_init.h +30 -0
  39. data/ext/multi_compress/vendor/brotli/c/enc/backward_references.c +32 -8
  40. data/ext/multi_compress/vendor/brotli/c/enc/backward_references.h +1 -5
  41. data/ext/multi_compress/vendor/brotli/c/enc/backward_references_hq.c +15 -15
  42. data/ext/multi_compress/vendor/brotli/c/enc/backward_references_hq.h +1 -5
  43. data/ext/multi_compress/vendor/brotli/c/enc/bit_cost.c +28 -4
  44. data/ext/multi_compress/vendor/brotli/c/enc/bit_cost.h +8 -40
  45. data/ext/multi_compress/vendor/brotli/c/enc/bit_cost_inc.h +1 -1
  46. data/ext/multi_compress/vendor/brotli/c/enc/block_splitter.c +9 -12
  47. data/ext/multi_compress/vendor/brotli/c/enc/block_splitter.h +0 -3
  48. data/ext/multi_compress/vendor/brotli/c/enc/block_splitter_inc.h +14 -8
  49. data/ext/multi_compress/vendor/brotli/c/enc/brotli_bit_stream.c +10 -9
  50. data/ext/multi_compress/vendor/brotli/c/enc/brotli_bit_stream.h +0 -6
  51. data/ext/multi_compress/vendor/brotli/c/enc/cluster.c +0 -2
  52. data/ext/multi_compress/vendor/brotli/c/enc/cluster.h +0 -2
  53. data/ext/multi_compress/vendor/brotli/c/enc/command.c +1 -1
  54. data/ext/multi_compress/vendor/brotli/c/enc/command.h +8 -10
  55. data/ext/multi_compress/vendor/brotli/c/enc/compound_dictionary.c +3 -5
  56. data/ext/multi_compress/vendor/brotli/c/enc/compound_dictionary.h +1 -4
  57. data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment.c +3 -13
  58. data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment.h +0 -2
  59. data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment_two_pass.c +5 -15
  60. data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment_two_pass.h +0 -2
  61. data/ext/multi_compress/vendor/brotli/c/enc/dictionary_hash.c +127 -1830
  62. data/ext/multi_compress/vendor/brotli/c/enc/dictionary_hash.h +23 -3
  63. data/ext/multi_compress/vendor/brotli/c/enc/dictionary_hash_inc.h +1829 -0
  64. data/ext/multi_compress/vendor/brotli/c/enc/encode.c +77 -52
  65. data/ext/multi_compress/vendor/brotli/c/enc/encoder_dict.c +9 -7
  66. data/ext/multi_compress/vendor/brotli/c/enc/encoder_dict.h +2 -4
  67. data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode.c +3 -6
  68. data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode.h +2 -4
  69. data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode_static.h +18 -12
  70. data/ext/multi_compress/vendor/brotli/c/enc/fast_log.c +1 -1
  71. data/ext/multi_compress/vendor/brotli/c/enc/fast_log.h +2 -3
  72. data/ext/multi_compress/vendor/brotli/c/enc/find_match_length.h +0 -2
  73. data/ext/multi_compress/vendor/brotli/c/enc/hash.h +38 -31
  74. data/ext/multi_compress/vendor/brotli/c/enc/hash_base.h +38 -0
  75. data/ext/multi_compress/vendor/brotli/c/enc/hash_forgetful_chain_inc.h +11 -1
  76. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match64_inc.h +24 -7
  77. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match64_simd_inc.h +304 -0
  78. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match_inc.h +30 -11
  79. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match_quickly_inc.h +4 -0
  80. data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match_simd_inc.h +278 -0
  81. data/ext/multi_compress/vendor/brotli/c/enc/histogram.c +1 -0
  82. data/ext/multi_compress/vendor/brotli/c/enc/histogram.h +0 -4
  83. data/ext/multi_compress/vendor/brotli/c/enc/literal_cost.c +4 -6
  84. data/ext/multi_compress/vendor/brotli/c/enc/literal_cost.h +0 -2
  85. data/ext/multi_compress/vendor/brotli/c/enc/matching_tag_mask.h +69 -0
  86. data/ext/multi_compress/vendor/brotli/c/enc/memory.c +0 -5
  87. data/ext/multi_compress/vendor/brotli/c/enc/memory.h +0 -4
  88. data/ext/multi_compress/vendor/brotli/c/enc/metablock.c +7 -9
  89. data/ext/multi_compress/vendor/brotli/c/enc/metablock.h +3 -3
  90. data/ext/multi_compress/vendor/brotli/c/enc/metablock_inc.h +4 -4
  91. data/ext/multi_compress/vendor/brotli/c/enc/params.h +0 -1
  92. data/ext/multi_compress/vendor/brotli/c/enc/prefix.h +0 -2
  93. data/ext/multi_compress/vendor/brotli/c/enc/quality.h +17 -10
  94. data/ext/multi_compress/vendor/brotli/c/enc/ringbuffer.h +1 -4
  95. data/ext/multi_compress/vendor/brotli/c/enc/state.h +2 -2
  96. data/ext/multi_compress/vendor/brotli/c/enc/static_dict.c +5 -11
  97. data/ext/multi_compress/vendor/brotli/c/enc/static_dict.h +1 -3
  98. data/ext/multi_compress/vendor/brotli/c/enc/static_dict_lut.c +224 -0
  99. data/ext/multi_compress/vendor/brotli/c/enc/static_dict_lut.h +20 -5837
  100. data/ext/multi_compress/vendor/brotli/c/enc/static_dict_lut_inc.h +5830 -0
  101. data/ext/multi_compress/vendor/brotli/c/enc/static_init.c +59 -0
  102. data/ext/multi_compress/vendor/brotli/c/enc/static_init.h +30 -0
  103. data/ext/multi_compress/vendor/brotli/c/enc/static_init_lazy.cc +26 -0
  104. data/ext/multi_compress/vendor/brotli/c/enc/utf8_util.c +1 -1
  105. data/ext/multi_compress/vendor/brotli/c/enc/utf8_util.h +0 -2
  106. data/ext/multi_compress/vendor/brotli/c/enc/write_bits.h +0 -2
  107. data/ext/multi_compress/vendor/brotli/c/include/brotli/decode.h +1 -1
  108. data/ext/multi_compress/vendor/brotli/c/include/brotli/encode.h +5 -1
  109. data/ext/multi_compress/vendor/brotli/c/include/brotli/port.h +4 -7
  110. data/ext/multi_compress/vendor/brotli/c/include/brotli/types.h +2 -2
  111. data/ext/multi_compress/vendor/lz4/LICENSE +12 -0
  112. data/ext/multi_compress/vendor/zstd/COPYING +339 -0
  113. data/ext/multi_compress/vendor/zstd/LICENSE +30 -0
  114. data/ext/multi_compress/vendor/zstd/lib/Makefile +67 -35
  115. data/ext/multi_compress/vendor/zstd/lib/README.md +33 -2
  116. data/ext/multi_compress/vendor/zstd/lib/common/allocations.h +55 -0
  117. data/ext/multi_compress/vendor/zstd/lib/common/bits.h +205 -0
  118. data/ext/multi_compress/vendor/zstd/lib/common/bitstream.h +84 -108
  119. data/ext/multi_compress/vendor/zstd/lib/common/compiler.h +170 -41
  120. data/ext/multi_compress/vendor/zstd/lib/common/cpu.h +37 -1
  121. data/ext/multi_compress/vendor/zstd/lib/common/debug.c +7 -1
  122. data/ext/multi_compress/vendor/zstd/lib/common/debug.h +21 -21
  123. data/ext/multi_compress/vendor/zstd/lib/common/entropy_common.c +12 -40
  124. data/ext/multi_compress/vendor/zstd/lib/common/error_private.c +10 -2
  125. data/ext/multi_compress/vendor/zstd/lib/common/error_private.h +46 -47
  126. data/ext/multi_compress/vendor/zstd/lib/common/fse.h +8 -100
  127. data/ext/multi_compress/vendor/zstd/lib/common/fse_decompress.c +28 -116
  128. data/ext/multi_compress/vendor/zstd/lib/common/huf.h +79 -166
  129. data/ext/multi_compress/vendor/zstd/lib/common/mem.h +46 -66
  130. data/ext/multi_compress/vendor/zstd/lib/common/pool.c +27 -11
  131. data/ext/multi_compress/vendor/zstd/lib/common/pool.h +8 -11
  132. data/ext/multi_compress/vendor/zstd/lib/common/portability_macros.h +45 -11
  133. data/ext/multi_compress/vendor/zstd/lib/common/threading.c +74 -14
  134. data/ext/multi_compress/vendor/zstd/lib/common/threading.h +5 -18
  135. data/ext/multi_compress/vendor/zstd/lib/common/xxhash.c +5 -11
  136. data/ext/multi_compress/vendor/zstd/lib/common/xxhash.h +2411 -1003
  137. data/ext/multi_compress/vendor/zstd/lib/common/zstd_common.c +1 -36
  138. data/ext/multi_compress/vendor/zstd/lib/common/zstd_deps.h +13 -1
  139. data/ext/multi_compress/vendor/zstd/lib/common/zstd_internal.h +13 -182
  140. data/ext/multi_compress/vendor/zstd/lib/common/zstd_trace.h +6 -13
  141. data/ext/multi_compress/vendor/zstd/lib/compress/clevels.h +1 -1
  142. data/ext/multi_compress/vendor/zstd/lib/compress/fse_compress.c +15 -131
  143. data/ext/multi_compress/vendor/zstd/lib/compress/hist.c +11 -1
  144. data/ext/multi_compress/vendor/zstd/lib/compress/hist.h +8 -1
  145. data/ext/multi_compress/vendor/zstd/lib/compress/huf_compress.c +283 -189
  146. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress.c +2419 -903
  147. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_internal.h +423 -245
  148. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_literals.c +116 -40
  149. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_literals.h +16 -8
  150. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_sequences.c +10 -10
  151. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_sequences.h +8 -7
  152. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_superblock.c +254 -139
  153. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_superblock.h +1 -1
  154. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_cwksp.h +184 -95
  155. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_double_fast.c +163 -81
  156. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_double_fast.h +18 -14
  157. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_fast.c +507 -197
  158. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_fast.h +7 -14
  159. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_lazy.c +579 -484
  160. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_lazy.h +133 -65
  161. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm.c +61 -40
  162. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm.h +7 -15
  163. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm_geartab.h +1 -1
  164. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_opt.c +352 -218
  165. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_opt.h +37 -21
  166. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_preSplit.c +238 -0
  167. data/ext/multi_compress/vendor/zstd/lib/compress/zstd_preSplit.h +33 -0
  168. data/ext/multi_compress/vendor/zstd/lib/compress/zstdmt_compress.c +239 -175
  169. data/ext/multi_compress/vendor/zstd/lib/compress/zstdmt_compress.h +5 -16
  170. data/ext/multi_compress/vendor/zstd/lib/decompress/huf_decompress.c +543 -488
  171. data/ext/multi_compress/vendor/zstd/lib/decompress/huf_decompress_amd64.S +78 -61
  172. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_ddict.c +4 -4
  173. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_ddict.h +1 -1
  174. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress.c +295 -115
  175. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_block.c +430 -293
  176. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_block.h +7 -2
  177. data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_internal.h +11 -7
  178. data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff.h +1 -1
  179. data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_common.c +1 -1
  180. data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_compress.c +1 -1
  181. data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_decompress.c +3 -1
  182. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/cover.c +95 -46
  183. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/cover.h +3 -9
  184. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/divsufsort.h +0 -10
  185. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/fastcover.c +4 -4
  186. data/ext/multi_compress/vendor/zstd/lib/dictBuilder/zdict.c +25 -97
  187. data/ext/multi_compress/vendor/zstd/lib/dll/example/Makefile +1 -1
  188. data/ext/multi_compress/vendor/zstd/lib/dll/example/README.md +1 -1
  189. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_legacy.h +38 -1
  190. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v01.c +19 -50
  191. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v01.h +1 -1
  192. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v02.c +27 -80
  193. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v02.h +1 -1
  194. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v03.c +28 -83
  195. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v03.h +1 -1
  196. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v04.c +25 -74
  197. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v04.h +1 -1
  198. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v05.c +31 -76
  199. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v05.h +1 -1
  200. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v06.c +44 -88
  201. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v06.h +1 -1
  202. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v07.c +33 -84
  203. data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v07.h +1 -1
  204. data/ext/multi_compress/vendor/zstd/lib/libzstd.mk +65 -33
  205. data/ext/multi_compress/vendor/zstd/lib/libzstd.pc.in +5 -5
  206. data/ext/multi_compress/vendor/zstd/lib/module.modulemap +13 -3
  207. data/ext/multi_compress/vendor/zstd/lib/zdict.h +65 -36
  208. data/ext/multi_compress/vendor/zstd/lib/zstd.h +890 -267
  209. data/ext/multi_compress/vendor/zstd/lib/zstd_errors.h +28 -16
  210. data/lib/multi_compress/version.rb +1 -1
  211. data/lib/multi_compress.rb +80 -41
  212. metadata +29 -2
@@ -10,9 +10,13 @@
10
10
  #ifndef BROTLI_DEC_PREFIX_H_
11
11
  #define BROTLI_DEC_PREFIX_H_
12
12
 
13
- #include <brotli/types.h>
14
-
15
13
  #include "../common/constants.h"
14
+ #include "../common/platform.h" /* IWYU pragma: keep */
15
+ #include "../common/static_init.h"
16
+
17
+ #if defined(__cplusplus) || defined(c_plusplus)
18
+ extern "C" {
19
+ #endif
16
20
 
17
21
  typedef struct CmdLutElement {
18
22
  uint8_t insert_len_extra_bits;
@@ -23,711 +27,17 @@ typedef struct CmdLutElement {
23
27
  uint16_t copy_len_offset;
24
28
  } CmdLutElement;
25
29
 
26
- static const CmdLutElement kCmdLut[BROTLI_NUM_COMMAND_SYMBOLS] = {
27
- { 0x00, 0x00, 0, 0x00, 0x0000, 0x0002 },
28
- { 0x00, 0x00, 0, 0x01, 0x0000, 0x0003 },
29
- { 0x00, 0x00, 0, 0x02, 0x0000, 0x0004 },
30
- { 0x00, 0x00, 0, 0x03, 0x0000, 0x0005 },
31
- { 0x00, 0x00, 0, 0x03, 0x0000, 0x0006 },
32
- { 0x00, 0x00, 0, 0x03, 0x0000, 0x0007 },
33
- { 0x00, 0x00, 0, 0x03, 0x0000, 0x0008 },
34
- { 0x00, 0x00, 0, 0x03, 0x0000, 0x0009 },
35
- { 0x00, 0x00, 0, 0x00, 0x0001, 0x0002 },
36
- { 0x00, 0x00, 0, 0x01, 0x0001, 0x0003 },
37
- { 0x00, 0x00, 0, 0x02, 0x0001, 0x0004 },
38
- { 0x00, 0x00, 0, 0x03, 0x0001, 0x0005 },
39
- { 0x00, 0x00, 0, 0x03, 0x0001, 0x0006 },
40
- { 0x00, 0x00, 0, 0x03, 0x0001, 0x0007 },
41
- { 0x00, 0x00, 0, 0x03, 0x0001, 0x0008 },
42
- { 0x00, 0x00, 0, 0x03, 0x0001, 0x0009 },
43
- { 0x00, 0x00, 0, 0x00, 0x0002, 0x0002 },
44
- { 0x00, 0x00, 0, 0x01, 0x0002, 0x0003 },
45
- { 0x00, 0x00, 0, 0x02, 0x0002, 0x0004 },
46
- { 0x00, 0x00, 0, 0x03, 0x0002, 0x0005 },
47
- { 0x00, 0x00, 0, 0x03, 0x0002, 0x0006 },
48
- { 0x00, 0x00, 0, 0x03, 0x0002, 0x0007 },
49
- { 0x00, 0x00, 0, 0x03, 0x0002, 0x0008 },
50
- { 0x00, 0x00, 0, 0x03, 0x0002, 0x0009 },
51
- { 0x00, 0x00, 0, 0x00, 0x0003, 0x0002 },
52
- { 0x00, 0x00, 0, 0x01, 0x0003, 0x0003 },
53
- { 0x00, 0x00, 0, 0x02, 0x0003, 0x0004 },
54
- { 0x00, 0x00, 0, 0x03, 0x0003, 0x0005 },
55
- { 0x00, 0x00, 0, 0x03, 0x0003, 0x0006 },
56
- { 0x00, 0x00, 0, 0x03, 0x0003, 0x0007 },
57
- { 0x00, 0x00, 0, 0x03, 0x0003, 0x0008 },
58
- { 0x00, 0x00, 0, 0x03, 0x0003, 0x0009 },
59
- { 0x00, 0x00, 0, 0x00, 0x0004, 0x0002 },
60
- { 0x00, 0x00, 0, 0x01, 0x0004, 0x0003 },
61
- { 0x00, 0x00, 0, 0x02, 0x0004, 0x0004 },
62
- { 0x00, 0x00, 0, 0x03, 0x0004, 0x0005 },
63
- { 0x00, 0x00, 0, 0x03, 0x0004, 0x0006 },
64
- { 0x00, 0x00, 0, 0x03, 0x0004, 0x0007 },
65
- { 0x00, 0x00, 0, 0x03, 0x0004, 0x0008 },
66
- { 0x00, 0x00, 0, 0x03, 0x0004, 0x0009 },
67
- { 0x00, 0x00, 0, 0x00, 0x0005, 0x0002 },
68
- { 0x00, 0x00, 0, 0x01, 0x0005, 0x0003 },
69
- { 0x00, 0x00, 0, 0x02, 0x0005, 0x0004 },
70
- { 0x00, 0x00, 0, 0x03, 0x0005, 0x0005 },
71
- { 0x00, 0x00, 0, 0x03, 0x0005, 0x0006 },
72
- { 0x00, 0x00, 0, 0x03, 0x0005, 0x0007 },
73
- { 0x00, 0x00, 0, 0x03, 0x0005, 0x0008 },
74
- { 0x00, 0x00, 0, 0x03, 0x0005, 0x0009 },
75
- { 0x01, 0x00, 0, 0x00, 0x0006, 0x0002 },
76
- { 0x01, 0x00, 0, 0x01, 0x0006, 0x0003 },
77
- { 0x01, 0x00, 0, 0x02, 0x0006, 0x0004 },
78
- { 0x01, 0x00, 0, 0x03, 0x0006, 0x0005 },
79
- { 0x01, 0x00, 0, 0x03, 0x0006, 0x0006 },
80
- { 0x01, 0x00, 0, 0x03, 0x0006, 0x0007 },
81
- { 0x01, 0x00, 0, 0x03, 0x0006, 0x0008 },
82
- { 0x01, 0x00, 0, 0x03, 0x0006, 0x0009 },
83
- { 0x01, 0x00, 0, 0x00, 0x0008, 0x0002 },
84
- { 0x01, 0x00, 0, 0x01, 0x0008, 0x0003 },
85
- { 0x01, 0x00, 0, 0x02, 0x0008, 0x0004 },
86
- { 0x01, 0x00, 0, 0x03, 0x0008, 0x0005 },
87
- { 0x01, 0x00, 0, 0x03, 0x0008, 0x0006 },
88
- { 0x01, 0x00, 0, 0x03, 0x0008, 0x0007 },
89
- { 0x01, 0x00, 0, 0x03, 0x0008, 0x0008 },
90
- { 0x01, 0x00, 0, 0x03, 0x0008, 0x0009 },
91
- { 0x00, 0x01, 0, 0x03, 0x0000, 0x000a },
92
- { 0x00, 0x01, 0, 0x03, 0x0000, 0x000c },
93
- { 0x00, 0x02, 0, 0x03, 0x0000, 0x000e },
94
- { 0x00, 0x02, 0, 0x03, 0x0000, 0x0012 },
95
- { 0x00, 0x03, 0, 0x03, 0x0000, 0x0016 },
96
- { 0x00, 0x03, 0, 0x03, 0x0000, 0x001e },
97
- { 0x00, 0x04, 0, 0x03, 0x0000, 0x0026 },
98
- { 0x00, 0x04, 0, 0x03, 0x0000, 0x0036 },
99
- { 0x00, 0x01, 0, 0x03, 0x0001, 0x000a },
100
- { 0x00, 0x01, 0, 0x03, 0x0001, 0x000c },
101
- { 0x00, 0x02, 0, 0x03, 0x0001, 0x000e },
102
- { 0x00, 0x02, 0, 0x03, 0x0001, 0x0012 },
103
- { 0x00, 0x03, 0, 0x03, 0x0001, 0x0016 },
104
- { 0x00, 0x03, 0, 0x03, 0x0001, 0x001e },
105
- { 0x00, 0x04, 0, 0x03, 0x0001, 0x0026 },
106
- { 0x00, 0x04, 0, 0x03, 0x0001, 0x0036 },
107
- { 0x00, 0x01, 0, 0x03, 0x0002, 0x000a },
108
- { 0x00, 0x01, 0, 0x03, 0x0002, 0x000c },
109
- { 0x00, 0x02, 0, 0x03, 0x0002, 0x000e },
110
- { 0x00, 0x02, 0, 0x03, 0x0002, 0x0012 },
111
- { 0x00, 0x03, 0, 0x03, 0x0002, 0x0016 },
112
- { 0x00, 0x03, 0, 0x03, 0x0002, 0x001e },
113
- { 0x00, 0x04, 0, 0x03, 0x0002, 0x0026 },
114
- { 0x00, 0x04, 0, 0x03, 0x0002, 0x0036 },
115
- { 0x00, 0x01, 0, 0x03, 0x0003, 0x000a },
116
- { 0x00, 0x01, 0, 0x03, 0x0003, 0x000c },
117
- { 0x00, 0x02, 0, 0x03, 0x0003, 0x000e },
118
- { 0x00, 0x02, 0, 0x03, 0x0003, 0x0012 },
119
- { 0x00, 0x03, 0, 0x03, 0x0003, 0x0016 },
120
- { 0x00, 0x03, 0, 0x03, 0x0003, 0x001e },
121
- { 0x00, 0x04, 0, 0x03, 0x0003, 0x0026 },
122
- { 0x00, 0x04, 0, 0x03, 0x0003, 0x0036 },
123
- { 0x00, 0x01, 0, 0x03, 0x0004, 0x000a },
124
- { 0x00, 0x01, 0, 0x03, 0x0004, 0x000c },
125
- { 0x00, 0x02, 0, 0x03, 0x0004, 0x000e },
126
- { 0x00, 0x02, 0, 0x03, 0x0004, 0x0012 },
127
- { 0x00, 0x03, 0, 0x03, 0x0004, 0x0016 },
128
- { 0x00, 0x03, 0, 0x03, 0x0004, 0x001e },
129
- { 0x00, 0x04, 0, 0x03, 0x0004, 0x0026 },
130
- { 0x00, 0x04, 0, 0x03, 0x0004, 0x0036 },
131
- { 0x00, 0x01, 0, 0x03, 0x0005, 0x000a },
132
- { 0x00, 0x01, 0, 0x03, 0x0005, 0x000c },
133
- { 0x00, 0x02, 0, 0x03, 0x0005, 0x000e },
134
- { 0x00, 0x02, 0, 0x03, 0x0005, 0x0012 },
135
- { 0x00, 0x03, 0, 0x03, 0x0005, 0x0016 },
136
- { 0x00, 0x03, 0, 0x03, 0x0005, 0x001e },
137
- { 0x00, 0x04, 0, 0x03, 0x0005, 0x0026 },
138
- { 0x00, 0x04, 0, 0x03, 0x0005, 0x0036 },
139
- { 0x01, 0x01, 0, 0x03, 0x0006, 0x000a },
140
- { 0x01, 0x01, 0, 0x03, 0x0006, 0x000c },
141
- { 0x01, 0x02, 0, 0x03, 0x0006, 0x000e },
142
- { 0x01, 0x02, 0, 0x03, 0x0006, 0x0012 },
143
- { 0x01, 0x03, 0, 0x03, 0x0006, 0x0016 },
144
- { 0x01, 0x03, 0, 0x03, 0x0006, 0x001e },
145
- { 0x01, 0x04, 0, 0x03, 0x0006, 0x0026 },
146
- { 0x01, 0x04, 0, 0x03, 0x0006, 0x0036 },
147
- { 0x01, 0x01, 0, 0x03, 0x0008, 0x000a },
148
- { 0x01, 0x01, 0, 0x03, 0x0008, 0x000c },
149
- { 0x01, 0x02, 0, 0x03, 0x0008, 0x000e },
150
- { 0x01, 0x02, 0, 0x03, 0x0008, 0x0012 },
151
- { 0x01, 0x03, 0, 0x03, 0x0008, 0x0016 },
152
- { 0x01, 0x03, 0, 0x03, 0x0008, 0x001e },
153
- { 0x01, 0x04, 0, 0x03, 0x0008, 0x0026 },
154
- { 0x01, 0x04, 0, 0x03, 0x0008, 0x0036 },
155
- { 0x00, 0x00, -1, 0x00, 0x0000, 0x0002 },
156
- { 0x00, 0x00, -1, 0x01, 0x0000, 0x0003 },
157
- { 0x00, 0x00, -1, 0x02, 0x0000, 0x0004 },
158
- { 0x00, 0x00, -1, 0x03, 0x0000, 0x0005 },
159
- { 0x00, 0x00, -1, 0x03, 0x0000, 0x0006 },
160
- { 0x00, 0x00, -1, 0x03, 0x0000, 0x0007 },
161
- { 0x00, 0x00, -1, 0x03, 0x0000, 0x0008 },
162
- { 0x00, 0x00, -1, 0x03, 0x0000, 0x0009 },
163
- { 0x00, 0x00, -1, 0x00, 0x0001, 0x0002 },
164
- { 0x00, 0x00, -1, 0x01, 0x0001, 0x0003 },
165
- { 0x00, 0x00, -1, 0x02, 0x0001, 0x0004 },
166
- { 0x00, 0x00, -1, 0x03, 0x0001, 0x0005 },
167
- { 0x00, 0x00, -1, 0x03, 0x0001, 0x0006 },
168
- { 0x00, 0x00, -1, 0x03, 0x0001, 0x0007 },
169
- { 0x00, 0x00, -1, 0x03, 0x0001, 0x0008 },
170
- { 0x00, 0x00, -1, 0x03, 0x0001, 0x0009 },
171
- { 0x00, 0x00, -1, 0x00, 0x0002, 0x0002 },
172
- { 0x00, 0x00, -1, 0x01, 0x0002, 0x0003 },
173
- { 0x00, 0x00, -1, 0x02, 0x0002, 0x0004 },
174
- { 0x00, 0x00, -1, 0x03, 0x0002, 0x0005 },
175
- { 0x00, 0x00, -1, 0x03, 0x0002, 0x0006 },
176
- { 0x00, 0x00, -1, 0x03, 0x0002, 0x0007 },
177
- { 0x00, 0x00, -1, 0x03, 0x0002, 0x0008 },
178
- { 0x00, 0x00, -1, 0x03, 0x0002, 0x0009 },
179
- { 0x00, 0x00, -1, 0x00, 0x0003, 0x0002 },
180
- { 0x00, 0x00, -1, 0x01, 0x0003, 0x0003 },
181
- { 0x00, 0x00, -1, 0x02, 0x0003, 0x0004 },
182
- { 0x00, 0x00, -1, 0x03, 0x0003, 0x0005 },
183
- { 0x00, 0x00, -1, 0x03, 0x0003, 0x0006 },
184
- { 0x00, 0x00, -1, 0x03, 0x0003, 0x0007 },
185
- { 0x00, 0x00, -1, 0x03, 0x0003, 0x0008 },
186
- { 0x00, 0x00, -1, 0x03, 0x0003, 0x0009 },
187
- { 0x00, 0x00, -1, 0x00, 0x0004, 0x0002 },
188
- { 0x00, 0x00, -1, 0x01, 0x0004, 0x0003 },
189
- { 0x00, 0x00, -1, 0x02, 0x0004, 0x0004 },
190
- { 0x00, 0x00, -1, 0x03, 0x0004, 0x0005 },
191
- { 0x00, 0x00, -1, 0x03, 0x0004, 0x0006 },
192
- { 0x00, 0x00, -1, 0x03, 0x0004, 0x0007 },
193
- { 0x00, 0x00, -1, 0x03, 0x0004, 0x0008 },
194
- { 0x00, 0x00, -1, 0x03, 0x0004, 0x0009 },
195
- { 0x00, 0x00, -1, 0x00, 0x0005, 0x0002 },
196
- { 0x00, 0x00, -1, 0x01, 0x0005, 0x0003 },
197
- { 0x00, 0x00, -1, 0x02, 0x0005, 0x0004 },
198
- { 0x00, 0x00, -1, 0x03, 0x0005, 0x0005 },
199
- { 0x00, 0x00, -1, 0x03, 0x0005, 0x0006 },
200
- { 0x00, 0x00, -1, 0x03, 0x0005, 0x0007 },
201
- { 0x00, 0x00, -1, 0x03, 0x0005, 0x0008 },
202
- { 0x00, 0x00, -1, 0x03, 0x0005, 0x0009 },
203
- { 0x01, 0x00, -1, 0x00, 0x0006, 0x0002 },
204
- { 0x01, 0x00, -1, 0x01, 0x0006, 0x0003 },
205
- { 0x01, 0x00, -1, 0x02, 0x0006, 0x0004 },
206
- { 0x01, 0x00, -1, 0x03, 0x0006, 0x0005 },
207
- { 0x01, 0x00, -1, 0x03, 0x0006, 0x0006 },
208
- { 0x01, 0x00, -1, 0x03, 0x0006, 0x0007 },
209
- { 0x01, 0x00, -1, 0x03, 0x0006, 0x0008 },
210
- { 0x01, 0x00, -1, 0x03, 0x0006, 0x0009 },
211
- { 0x01, 0x00, -1, 0x00, 0x0008, 0x0002 },
212
- { 0x01, 0x00, -1, 0x01, 0x0008, 0x0003 },
213
- { 0x01, 0x00, -1, 0x02, 0x0008, 0x0004 },
214
- { 0x01, 0x00, -1, 0x03, 0x0008, 0x0005 },
215
- { 0x01, 0x00, -1, 0x03, 0x0008, 0x0006 },
216
- { 0x01, 0x00, -1, 0x03, 0x0008, 0x0007 },
217
- { 0x01, 0x00, -1, 0x03, 0x0008, 0x0008 },
218
- { 0x01, 0x00, -1, 0x03, 0x0008, 0x0009 },
219
- { 0x00, 0x01, -1, 0x03, 0x0000, 0x000a },
220
- { 0x00, 0x01, -1, 0x03, 0x0000, 0x000c },
221
- { 0x00, 0x02, -1, 0x03, 0x0000, 0x000e },
222
- { 0x00, 0x02, -1, 0x03, 0x0000, 0x0012 },
223
- { 0x00, 0x03, -1, 0x03, 0x0000, 0x0016 },
224
- { 0x00, 0x03, -1, 0x03, 0x0000, 0x001e },
225
- { 0x00, 0x04, -1, 0x03, 0x0000, 0x0026 },
226
- { 0x00, 0x04, -1, 0x03, 0x0000, 0x0036 },
227
- { 0x00, 0x01, -1, 0x03, 0x0001, 0x000a },
228
- { 0x00, 0x01, -1, 0x03, 0x0001, 0x000c },
229
- { 0x00, 0x02, -1, 0x03, 0x0001, 0x000e },
230
- { 0x00, 0x02, -1, 0x03, 0x0001, 0x0012 },
231
- { 0x00, 0x03, -1, 0x03, 0x0001, 0x0016 },
232
- { 0x00, 0x03, -1, 0x03, 0x0001, 0x001e },
233
- { 0x00, 0x04, -1, 0x03, 0x0001, 0x0026 },
234
- { 0x00, 0x04, -1, 0x03, 0x0001, 0x0036 },
235
- { 0x00, 0x01, -1, 0x03, 0x0002, 0x000a },
236
- { 0x00, 0x01, -1, 0x03, 0x0002, 0x000c },
237
- { 0x00, 0x02, -1, 0x03, 0x0002, 0x000e },
238
- { 0x00, 0x02, -1, 0x03, 0x0002, 0x0012 },
239
- { 0x00, 0x03, -1, 0x03, 0x0002, 0x0016 },
240
- { 0x00, 0x03, -1, 0x03, 0x0002, 0x001e },
241
- { 0x00, 0x04, -1, 0x03, 0x0002, 0x0026 },
242
- { 0x00, 0x04, -1, 0x03, 0x0002, 0x0036 },
243
- { 0x00, 0x01, -1, 0x03, 0x0003, 0x000a },
244
- { 0x00, 0x01, -1, 0x03, 0x0003, 0x000c },
245
- { 0x00, 0x02, -1, 0x03, 0x0003, 0x000e },
246
- { 0x00, 0x02, -1, 0x03, 0x0003, 0x0012 },
247
- { 0x00, 0x03, -1, 0x03, 0x0003, 0x0016 },
248
- { 0x00, 0x03, -1, 0x03, 0x0003, 0x001e },
249
- { 0x00, 0x04, -1, 0x03, 0x0003, 0x0026 },
250
- { 0x00, 0x04, -1, 0x03, 0x0003, 0x0036 },
251
- { 0x00, 0x01, -1, 0x03, 0x0004, 0x000a },
252
- { 0x00, 0x01, -1, 0x03, 0x0004, 0x000c },
253
- { 0x00, 0x02, -1, 0x03, 0x0004, 0x000e },
254
- { 0x00, 0x02, -1, 0x03, 0x0004, 0x0012 },
255
- { 0x00, 0x03, -1, 0x03, 0x0004, 0x0016 },
256
- { 0x00, 0x03, -1, 0x03, 0x0004, 0x001e },
257
- { 0x00, 0x04, -1, 0x03, 0x0004, 0x0026 },
258
- { 0x00, 0x04, -1, 0x03, 0x0004, 0x0036 },
259
- { 0x00, 0x01, -1, 0x03, 0x0005, 0x000a },
260
- { 0x00, 0x01, -1, 0x03, 0x0005, 0x000c },
261
- { 0x00, 0x02, -1, 0x03, 0x0005, 0x000e },
262
- { 0x00, 0x02, -1, 0x03, 0x0005, 0x0012 },
263
- { 0x00, 0x03, -1, 0x03, 0x0005, 0x0016 },
264
- { 0x00, 0x03, -1, 0x03, 0x0005, 0x001e },
265
- { 0x00, 0x04, -1, 0x03, 0x0005, 0x0026 },
266
- { 0x00, 0x04, -1, 0x03, 0x0005, 0x0036 },
267
- { 0x01, 0x01, -1, 0x03, 0x0006, 0x000a },
268
- { 0x01, 0x01, -1, 0x03, 0x0006, 0x000c },
269
- { 0x01, 0x02, -1, 0x03, 0x0006, 0x000e },
270
- { 0x01, 0x02, -1, 0x03, 0x0006, 0x0012 },
271
- { 0x01, 0x03, -1, 0x03, 0x0006, 0x0016 },
272
- { 0x01, 0x03, -1, 0x03, 0x0006, 0x001e },
273
- { 0x01, 0x04, -1, 0x03, 0x0006, 0x0026 },
274
- { 0x01, 0x04, -1, 0x03, 0x0006, 0x0036 },
275
- { 0x01, 0x01, -1, 0x03, 0x0008, 0x000a },
276
- { 0x01, 0x01, -1, 0x03, 0x0008, 0x000c },
277
- { 0x01, 0x02, -1, 0x03, 0x0008, 0x000e },
278
- { 0x01, 0x02, -1, 0x03, 0x0008, 0x0012 },
279
- { 0x01, 0x03, -1, 0x03, 0x0008, 0x0016 },
280
- { 0x01, 0x03, -1, 0x03, 0x0008, 0x001e },
281
- { 0x01, 0x04, -1, 0x03, 0x0008, 0x0026 },
282
- { 0x01, 0x04, -1, 0x03, 0x0008, 0x0036 },
283
- { 0x02, 0x00, -1, 0x00, 0x000a, 0x0002 },
284
- { 0x02, 0x00, -1, 0x01, 0x000a, 0x0003 },
285
- { 0x02, 0x00, -1, 0x02, 0x000a, 0x0004 },
286
- { 0x02, 0x00, -1, 0x03, 0x000a, 0x0005 },
287
- { 0x02, 0x00, -1, 0x03, 0x000a, 0x0006 },
288
- { 0x02, 0x00, -1, 0x03, 0x000a, 0x0007 },
289
- { 0x02, 0x00, -1, 0x03, 0x000a, 0x0008 },
290
- { 0x02, 0x00, -1, 0x03, 0x000a, 0x0009 },
291
- { 0x02, 0x00, -1, 0x00, 0x000e, 0x0002 },
292
- { 0x02, 0x00, -1, 0x01, 0x000e, 0x0003 },
293
- { 0x02, 0x00, -1, 0x02, 0x000e, 0x0004 },
294
- { 0x02, 0x00, -1, 0x03, 0x000e, 0x0005 },
295
- { 0x02, 0x00, -1, 0x03, 0x000e, 0x0006 },
296
- { 0x02, 0x00, -1, 0x03, 0x000e, 0x0007 },
297
- { 0x02, 0x00, -1, 0x03, 0x000e, 0x0008 },
298
- { 0x02, 0x00, -1, 0x03, 0x000e, 0x0009 },
299
- { 0x03, 0x00, -1, 0x00, 0x0012, 0x0002 },
300
- { 0x03, 0x00, -1, 0x01, 0x0012, 0x0003 },
301
- { 0x03, 0x00, -1, 0x02, 0x0012, 0x0004 },
302
- { 0x03, 0x00, -1, 0x03, 0x0012, 0x0005 },
303
- { 0x03, 0x00, -1, 0x03, 0x0012, 0x0006 },
304
- { 0x03, 0x00, -1, 0x03, 0x0012, 0x0007 },
305
- { 0x03, 0x00, -1, 0x03, 0x0012, 0x0008 },
306
- { 0x03, 0x00, -1, 0x03, 0x0012, 0x0009 },
307
- { 0x03, 0x00, -1, 0x00, 0x001a, 0x0002 },
308
- { 0x03, 0x00, -1, 0x01, 0x001a, 0x0003 },
309
- { 0x03, 0x00, -1, 0x02, 0x001a, 0x0004 },
310
- { 0x03, 0x00, -1, 0x03, 0x001a, 0x0005 },
311
- { 0x03, 0x00, -1, 0x03, 0x001a, 0x0006 },
312
- { 0x03, 0x00, -1, 0x03, 0x001a, 0x0007 },
313
- { 0x03, 0x00, -1, 0x03, 0x001a, 0x0008 },
314
- { 0x03, 0x00, -1, 0x03, 0x001a, 0x0009 },
315
- { 0x04, 0x00, -1, 0x00, 0x0022, 0x0002 },
316
- { 0x04, 0x00, -1, 0x01, 0x0022, 0x0003 },
317
- { 0x04, 0x00, -1, 0x02, 0x0022, 0x0004 },
318
- { 0x04, 0x00, -1, 0x03, 0x0022, 0x0005 },
319
- { 0x04, 0x00, -1, 0x03, 0x0022, 0x0006 },
320
- { 0x04, 0x00, -1, 0x03, 0x0022, 0x0007 },
321
- { 0x04, 0x00, -1, 0x03, 0x0022, 0x0008 },
322
- { 0x04, 0x00, -1, 0x03, 0x0022, 0x0009 },
323
- { 0x04, 0x00, -1, 0x00, 0x0032, 0x0002 },
324
- { 0x04, 0x00, -1, 0x01, 0x0032, 0x0003 },
325
- { 0x04, 0x00, -1, 0x02, 0x0032, 0x0004 },
326
- { 0x04, 0x00, -1, 0x03, 0x0032, 0x0005 },
327
- { 0x04, 0x00, -1, 0x03, 0x0032, 0x0006 },
328
- { 0x04, 0x00, -1, 0x03, 0x0032, 0x0007 },
329
- { 0x04, 0x00, -1, 0x03, 0x0032, 0x0008 },
330
- { 0x04, 0x00, -1, 0x03, 0x0032, 0x0009 },
331
- { 0x05, 0x00, -1, 0x00, 0x0042, 0x0002 },
332
- { 0x05, 0x00, -1, 0x01, 0x0042, 0x0003 },
333
- { 0x05, 0x00, -1, 0x02, 0x0042, 0x0004 },
334
- { 0x05, 0x00, -1, 0x03, 0x0042, 0x0005 },
335
- { 0x05, 0x00, -1, 0x03, 0x0042, 0x0006 },
336
- { 0x05, 0x00, -1, 0x03, 0x0042, 0x0007 },
337
- { 0x05, 0x00, -1, 0x03, 0x0042, 0x0008 },
338
- { 0x05, 0x00, -1, 0x03, 0x0042, 0x0009 },
339
- { 0x05, 0x00, -1, 0x00, 0x0062, 0x0002 },
340
- { 0x05, 0x00, -1, 0x01, 0x0062, 0x0003 },
341
- { 0x05, 0x00, -1, 0x02, 0x0062, 0x0004 },
342
- { 0x05, 0x00, -1, 0x03, 0x0062, 0x0005 },
343
- { 0x05, 0x00, -1, 0x03, 0x0062, 0x0006 },
344
- { 0x05, 0x00, -1, 0x03, 0x0062, 0x0007 },
345
- { 0x05, 0x00, -1, 0x03, 0x0062, 0x0008 },
346
- { 0x05, 0x00, -1, 0x03, 0x0062, 0x0009 },
347
- { 0x02, 0x01, -1, 0x03, 0x000a, 0x000a },
348
- { 0x02, 0x01, -1, 0x03, 0x000a, 0x000c },
349
- { 0x02, 0x02, -1, 0x03, 0x000a, 0x000e },
350
- { 0x02, 0x02, -1, 0x03, 0x000a, 0x0012 },
351
- { 0x02, 0x03, -1, 0x03, 0x000a, 0x0016 },
352
- { 0x02, 0x03, -1, 0x03, 0x000a, 0x001e },
353
- { 0x02, 0x04, -1, 0x03, 0x000a, 0x0026 },
354
- { 0x02, 0x04, -1, 0x03, 0x000a, 0x0036 },
355
- { 0x02, 0x01, -1, 0x03, 0x000e, 0x000a },
356
- { 0x02, 0x01, -1, 0x03, 0x000e, 0x000c },
357
- { 0x02, 0x02, -1, 0x03, 0x000e, 0x000e },
358
- { 0x02, 0x02, -1, 0x03, 0x000e, 0x0012 },
359
- { 0x02, 0x03, -1, 0x03, 0x000e, 0x0016 },
360
- { 0x02, 0x03, -1, 0x03, 0x000e, 0x001e },
361
- { 0x02, 0x04, -1, 0x03, 0x000e, 0x0026 },
362
- { 0x02, 0x04, -1, 0x03, 0x000e, 0x0036 },
363
- { 0x03, 0x01, -1, 0x03, 0x0012, 0x000a },
364
- { 0x03, 0x01, -1, 0x03, 0x0012, 0x000c },
365
- { 0x03, 0x02, -1, 0x03, 0x0012, 0x000e },
366
- { 0x03, 0x02, -1, 0x03, 0x0012, 0x0012 },
367
- { 0x03, 0x03, -1, 0x03, 0x0012, 0x0016 },
368
- { 0x03, 0x03, -1, 0x03, 0x0012, 0x001e },
369
- { 0x03, 0x04, -1, 0x03, 0x0012, 0x0026 },
370
- { 0x03, 0x04, -1, 0x03, 0x0012, 0x0036 },
371
- { 0x03, 0x01, -1, 0x03, 0x001a, 0x000a },
372
- { 0x03, 0x01, -1, 0x03, 0x001a, 0x000c },
373
- { 0x03, 0x02, -1, 0x03, 0x001a, 0x000e },
374
- { 0x03, 0x02, -1, 0x03, 0x001a, 0x0012 },
375
- { 0x03, 0x03, -1, 0x03, 0x001a, 0x0016 },
376
- { 0x03, 0x03, -1, 0x03, 0x001a, 0x001e },
377
- { 0x03, 0x04, -1, 0x03, 0x001a, 0x0026 },
378
- { 0x03, 0x04, -1, 0x03, 0x001a, 0x0036 },
379
- { 0x04, 0x01, -1, 0x03, 0x0022, 0x000a },
380
- { 0x04, 0x01, -1, 0x03, 0x0022, 0x000c },
381
- { 0x04, 0x02, -1, 0x03, 0x0022, 0x000e },
382
- { 0x04, 0x02, -1, 0x03, 0x0022, 0x0012 },
383
- { 0x04, 0x03, -1, 0x03, 0x0022, 0x0016 },
384
- { 0x04, 0x03, -1, 0x03, 0x0022, 0x001e },
385
- { 0x04, 0x04, -1, 0x03, 0x0022, 0x0026 },
386
- { 0x04, 0x04, -1, 0x03, 0x0022, 0x0036 },
387
- { 0x04, 0x01, -1, 0x03, 0x0032, 0x000a },
388
- { 0x04, 0x01, -1, 0x03, 0x0032, 0x000c },
389
- { 0x04, 0x02, -1, 0x03, 0x0032, 0x000e },
390
- { 0x04, 0x02, -1, 0x03, 0x0032, 0x0012 },
391
- { 0x04, 0x03, -1, 0x03, 0x0032, 0x0016 },
392
- { 0x04, 0x03, -1, 0x03, 0x0032, 0x001e },
393
- { 0x04, 0x04, -1, 0x03, 0x0032, 0x0026 },
394
- { 0x04, 0x04, -1, 0x03, 0x0032, 0x0036 },
395
- { 0x05, 0x01, -1, 0x03, 0x0042, 0x000a },
396
- { 0x05, 0x01, -1, 0x03, 0x0042, 0x000c },
397
- { 0x05, 0x02, -1, 0x03, 0x0042, 0x000e },
398
- { 0x05, 0x02, -1, 0x03, 0x0042, 0x0012 },
399
- { 0x05, 0x03, -1, 0x03, 0x0042, 0x0016 },
400
- { 0x05, 0x03, -1, 0x03, 0x0042, 0x001e },
401
- { 0x05, 0x04, -1, 0x03, 0x0042, 0x0026 },
402
- { 0x05, 0x04, -1, 0x03, 0x0042, 0x0036 },
403
- { 0x05, 0x01, -1, 0x03, 0x0062, 0x000a },
404
- { 0x05, 0x01, -1, 0x03, 0x0062, 0x000c },
405
- { 0x05, 0x02, -1, 0x03, 0x0062, 0x000e },
406
- { 0x05, 0x02, -1, 0x03, 0x0062, 0x0012 },
407
- { 0x05, 0x03, -1, 0x03, 0x0062, 0x0016 },
408
- { 0x05, 0x03, -1, 0x03, 0x0062, 0x001e },
409
- { 0x05, 0x04, -1, 0x03, 0x0062, 0x0026 },
410
- { 0x05, 0x04, -1, 0x03, 0x0062, 0x0036 },
411
- { 0x00, 0x05, -1, 0x03, 0x0000, 0x0046 },
412
- { 0x00, 0x05, -1, 0x03, 0x0000, 0x0066 },
413
- { 0x00, 0x06, -1, 0x03, 0x0000, 0x0086 },
414
- { 0x00, 0x07, -1, 0x03, 0x0000, 0x00c6 },
415
- { 0x00, 0x08, -1, 0x03, 0x0000, 0x0146 },
416
- { 0x00, 0x09, -1, 0x03, 0x0000, 0x0246 },
417
- { 0x00, 0x0a, -1, 0x03, 0x0000, 0x0446 },
418
- { 0x00, 0x18, -1, 0x03, 0x0000, 0x0846 },
419
- { 0x00, 0x05, -1, 0x03, 0x0001, 0x0046 },
420
- { 0x00, 0x05, -1, 0x03, 0x0001, 0x0066 },
421
- { 0x00, 0x06, -1, 0x03, 0x0001, 0x0086 },
422
- { 0x00, 0x07, -1, 0x03, 0x0001, 0x00c6 },
423
- { 0x00, 0x08, -1, 0x03, 0x0001, 0x0146 },
424
- { 0x00, 0x09, -1, 0x03, 0x0001, 0x0246 },
425
- { 0x00, 0x0a, -1, 0x03, 0x0001, 0x0446 },
426
- { 0x00, 0x18, -1, 0x03, 0x0001, 0x0846 },
427
- { 0x00, 0x05, -1, 0x03, 0x0002, 0x0046 },
428
- { 0x00, 0x05, -1, 0x03, 0x0002, 0x0066 },
429
- { 0x00, 0x06, -1, 0x03, 0x0002, 0x0086 },
430
- { 0x00, 0x07, -1, 0x03, 0x0002, 0x00c6 },
431
- { 0x00, 0x08, -1, 0x03, 0x0002, 0x0146 },
432
- { 0x00, 0x09, -1, 0x03, 0x0002, 0x0246 },
433
- { 0x00, 0x0a, -1, 0x03, 0x0002, 0x0446 },
434
- { 0x00, 0x18, -1, 0x03, 0x0002, 0x0846 },
435
- { 0x00, 0x05, -1, 0x03, 0x0003, 0x0046 },
436
- { 0x00, 0x05, -1, 0x03, 0x0003, 0x0066 },
437
- { 0x00, 0x06, -1, 0x03, 0x0003, 0x0086 },
438
- { 0x00, 0x07, -1, 0x03, 0x0003, 0x00c6 },
439
- { 0x00, 0x08, -1, 0x03, 0x0003, 0x0146 },
440
- { 0x00, 0x09, -1, 0x03, 0x0003, 0x0246 },
441
- { 0x00, 0x0a, -1, 0x03, 0x0003, 0x0446 },
442
- { 0x00, 0x18, -1, 0x03, 0x0003, 0x0846 },
443
- { 0x00, 0x05, -1, 0x03, 0x0004, 0x0046 },
444
- { 0x00, 0x05, -1, 0x03, 0x0004, 0x0066 },
445
- { 0x00, 0x06, -1, 0x03, 0x0004, 0x0086 },
446
- { 0x00, 0x07, -1, 0x03, 0x0004, 0x00c6 },
447
- { 0x00, 0x08, -1, 0x03, 0x0004, 0x0146 },
448
- { 0x00, 0x09, -1, 0x03, 0x0004, 0x0246 },
449
- { 0x00, 0x0a, -1, 0x03, 0x0004, 0x0446 },
450
- { 0x00, 0x18, -1, 0x03, 0x0004, 0x0846 },
451
- { 0x00, 0x05, -1, 0x03, 0x0005, 0x0046 },
452
- { 0x00, 0x05, -1, 0x03, 0x0005, 0x0066 },
453
- { 0x00, 0x06, -1, 0x03, 0x0005, 0x0086 },
454
- { 0x00, 0x07, -1, 0x03, 0x0005, 0x00c6 },
455
- { 0x00, 0x08, -1, 0x03, 0x0005, 0x0146 },
456
- { 0x00, 0x09, -1, 0x03, 0x0005, 0x0246 },
457
- { 0x00, 0x0a, -1, 0x03, 0x0005, 0x0446 },
458
- { 0x00, 0x18, -1, 0x03, 0x0005, 0x0846 },
459
- { 0x01, 0x05, -1, 0x03, 0x0006, 0x0046 },
460
- { 0x01, 0x05, -1, 0x03, 0x0006, 0x0066 },
461
- { 0x01, 0x06, -1, 0x03, 0x0006, 0x0086 },
462
- { 0x01, 0x07, -1, 0x03, 0x0006, 0x00c6 },
463
- { 0x01, 0x08, -1, 0x03, 0x0006, 0x0146 },
464
- { 0x01, 0x09, -1, 0x03, 0x0006, 0x0246 },
465
- { 0x01, 0x0a, -1, 0x03, 0x0006, 0x0446 },
466
- { 0x01, 0x18, -1, 0x03, 0x0006, 0x0846 },
467
- { 0x01, 0x05, -1, 0x03, 0x0008, 0x0046 },
468
- { 0x01, 0x05, -1, 0x03, 0x0008, 0x0066 },
469
- { 0x01, 0x06, -1, 0x03, 0x0008, 0x0086 },
470
- { 0x01, 0x07, -1, 0x03, 0x0008, 0x00c6 },
471
- { 0x01, 0x08, -1, 0x03, 0x0008, 0x0146 },
472
- { 0x01, 0x09, -1, 0x03, 0x0008, 0x0246 },
473
- { 0x01, 0x0a, -1, 0x03, 0x0008, 0x0446 },
474
- { 0x01, 0x18, -1, 0x03, 0x0008, 0x0846 },
475
- { 0x06, 0x00, -1, 0x00, 0x0082, 0x0002 },
476
- { 0x06, 0x00, -1, 0x01, 0x0082, 0x0003 },
477
- { 0x06, 0x00, -1, 0x02, 0x0082, 0x0004 },
478
- { 0x06, 0x00, -1, 0x03, 0x0082, 0x0005 },
479
- { 0x06, 0x00, -1, 0x03, 0x0082, 0x0006 },
480
- { 0x06, 0x00, -1, 0x03, 0x0082, 0x0007 },
481
- { 0x06, 0x00, -1, 0x03, 0x0082, 0x0008 },
482
- { 0x06, 0x00, -1, 0x03, 0x0082, 0x0009 },
483
- { 0x07, 0x00, -1, 0x00, 0x00c2, 0x0002 },
484
- { 0x07, 0x00, -1, 0x01, 0x00c2, 0x0003 },
485
- { 0x07, 0x00, -1, 0x02, 0x00c2, 0x0004 },
486
- { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0005 },
487
- { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0006 },
488
- { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0007 },
489
- { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0008 },
490
- { 0x07, 0x00, -1, 0x03, 0x00c2, 0x0009 },
491
- { 0x08, 0x00, -1, 0x00, 0x0142, 0x0002 },
492
- { 0x08, 0x00, -1, 0x01, 0x0142, 0x0003 },
493
- { 0x08, 0x00, -1, 0x02, 0x0142, 0x0004 },
494
- { 0x08, 0x00, -1, 0x03, 0x0142, 0x0005 },
495
- { 0x08, 0x00, -1, 0x03, 0x0142, 0x0006 },
496
- { 0x08, 0x00, -1, 0x03, 0x0142, 0x0007 },
497
- { 0x08, 0x00, -1, 0x03, 0x0142, 0x0008 },
498
- { 0x08, 0x00, -1, 0x03, 0x0142, 0x0009 },
499
- { 0x09, 0x00, -1, 0x00, 0x0242, 0x0002 },
500
- { 0x09, 0x00, -1, 0x01, 0x0242, 0x0003 },
501
- { 0x09, 0x00, -1, 0x02, 0x0242, 0x0004 },
502
- { 0x09, 0x00, -1, 0x03, 0x0242, 0x0005 },
503
- { 0x09, 0x00, -1, 0x03, 0x0242, 0x0006 },
504
- { 0x09, 0x00, -1, 0x03, 0x0242, 0x0007 },
505
- { 0x09, 0x00, -1, 0x03, 0x0242, 0x0008 },
506
- { 0x09, 0x00, -1, 0x03, 0x0242, 0x0009 },
507
- { 0x0a, 0x00, -1, 0x00, 0x0442, 0x0002 },
508
- { 0x0a, 0x00, -1, 0x01, 0x0442, 0x0003 },
509
- { 0x0a, 0x00, -1, 0x02, 0x0442, 0x0004 },
510
- { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0005 },
511
- { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0006 },
512
- { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0007 },
513
- { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0008 },
514
- { 0x0a, 0x00, -1, 0x03, 0x0442, 0x0009 },
515
- { 0x0c, 0x00, -1, 0x00, 0x0842, 0x0002 },
516
- { 0x0c, 0x00, -1, 0x01, 0x0842, 0x0003 },
517
- { 0x0c, 0x00, -1, 0x02, 0x0842, 0x0004 },
518
- { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0005 },
519
- { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0006 },
520
- { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0007 },
521
- { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0008 },
522
- { 0x0c, 0x00, -1, 0x03, 0x0842, 0x0009 },
523
- { 0x0e, 0x00, -1, 0x00, 0x1842, 0x0002 },
524
- { 0x0e, 0x00, -1, 0x01, 0x1842, 0x0003 },
525
- { 0x0e, 0x00, -1, 0x02, 0x1842, 0x0004 },
526
- { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0005 },
527
- { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0006 },
528
- { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0007 },
529
- { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0008 },
530
- { 0x0e, 0x00, -1, 0x03, 0x1842, 0x0009 },
531
- { 0x18, 0x00, -1, 0x00, 0x5842, 0x0002 },
532
- { 0x18, 0x00, -1, 0x01, 0x5842, 0x0003 },
533
- { 0x18, 0x00, -1, 0x02, 0x5842, 0x0004 },
534
- { 0x18, 0x00, -1, 0x03, 0x5842, 0x0005 },
535
- { 0x18, 0x00, -1, 0x03, 0x5842, 0x0006 },
536
- { 0x18, 0x00, -1, 0x03, 0x5842, 0x0007 },
537
- { 0x18, 0x00, -1, 0x03, 0x5842, 0x0008 },
538
- { 0x18, 0x00, -1, 0x03, 0x5842, 0x0009 },
539
- { 0x02, 0x05, -1, 0x03, 0x000a, 0x0046 },
540
- { 0x02, 0x05, -1, 0x03, 0x000a, 0x0066 },
541
- { 0x02, 0x06, -1, 0x03, 0x000a, 0x0086 },
542
- { 0x02, 0x07, -1, 0x03, 0x000a, 0x00c6 },
543
- { 0x02, 0x08, -1, 0x03, 0x000a, 0x0146 },
544
- { 0x02, 0x09, -1, 0x03, 0x000a, 0x0246 },
545
- { 0x02, 0x0a, -1, 0x03, 0x000a, 0x0446 },
546
- { 0x02, 0x18, -1, 0x03, 0x000a, 0x0846 },
547
- { 0x02, 0x05, -1, 0x03, 0x000e, 0x0046 },
548
- { 0x02, 0x05, -1, 0x03, 0x000e, 0x0066 },
549
- { 0x02, 0x06, -1, 0x03, 0x000e, 0x0086 },
550
- { 0x02, 0x07, -1, 0x03, 0x000e, 0x00c6 },
551
- { 0x02, 0x08, -1, 0x03, 0x000e, 0x0146 },
552
- { 0x02, 0x09, -1, 0x03, 0x000e, 0x0246 },
553
- { 0x02, 0x0a, -1, 0x03, 0x000e, 0x0446 },
554
- { 0x02, 0x18, -1, 0x03, 0x000e, 0x0846 },
555
- { 0x03, 0x05, -1, 0x03, 0x0012, 0x0046 },
556
- { 0x03, 0x05, -1, 0x03, 0x0012, 0x0066 },
557
- { 0x03, 0x06, -1, 0x03, 0x0012, 0x0086 },
558
- { 0x03, 0x07, -1, 0x03, 0x0012, 0x00c6 },
559
- { 0x03, 0x08, -1, 0x03, 0x0012, 0x0146 },
560
- { 0x03, 0x09, -1, 0x03, 0x0012, 0x0246 },
561
- { 0x03, 0x0a, -1, 0x03, 0x0012, 0x0446 },
562
- { 0x03, 0x18, -1, 0x03, 0x0012, 0x0846 },
563
- { 0x03, 0x05, -1, 0x03, 0x001a, 0x0046 },
564
- { 0x03, 0x05, -1, 0x03, 0x001a, 0x0066 },
565
- { 0x03, 0x06, -1, 0x03, 0x001a, 0x0086 },
566
- { 0x03, 0x07, -1, 0x03, 0x001a, 0x00c6 },
567
- { 0x03, 0x08, -1, 0x03, 0x001a, 0x0146 },
568
- { 0x03, 0x09, -1, 0x03, 0x001a, 0x0246 },
569
- { 0x03, 0x0a, -1, 0x03, 0x001a, 0x0446 },
570
- { 0x03, 0x18, -1, 0x03, 0x001a, 0x0846 },
571
- { 0x04, 0x05, -1, 0x03, 0x0022, 0x0046 },
572
- { 0x04, 0x05, -1, 0x03, 0x0022, 0x0066 },
573
- { 0x04, 0x06, -1, 0x03, 0x0022, 0x0086 },
574
- { 0x04, 0x07, -1, 0x03, 0x0022, 0x00c6 },
575
- { 0x04, 0x08, -1, 0x03, 0x0022, 0x0146 },
576
- { 0x04, 0x09, -1, 0x03, 0x0022, 0x0246 },
577
- { 0x04, 0x0a, -1, 0x03, 0x0022, 0x0446 },
578
- { 0x04, 0x18, -1, 0x03, 0x0022, 0x0846 },
579
- { 0x04, 0x05, -1, 0x03, 0x0032, 0x0046 },
580
- { 0x04, 0x05, -1, 0x03, 0x0032, 0x0066 },
581
- { 0x04, 0x06, -1, 0x03, 0x0032, 0x0086 },
582
- { 0x04, 0x07, -1, 0x03, 0x0032, 0x00c6 },
583
- { 0x04, 0x08, -1, 0x03, 0x0032, 0x0146 },
584
- { 0x04, 0x09, -1, 0x03, 0x0032, 0x0246 },
585
- { 0x04, 0x0a, -1, 0x03, 0x0032, 0x0446 },
586
- { 0x04, 0x18, -1, 0x03, 0x0032, 0x0846 },
587
- { 0x05, 0x05, -1, 0x03, 0x0042, 0x0046 },
588
- { 0x05, 0x05, -1, 0x03, 0x0042, 0x0066 },
589
- { 0x05, 0x06, -1, 0x03, 0x0042, 0x0086 },
590
- { 0x05, 0x07, -1, 0x03, 0x0042, 0x00c6 },
591
- { 0x05, 0x08, -1, 0x03, 0x0042, 0x0146 },
592
- { 0x05, 0x09, -1, 0x03, 0x0042, 0x0246 },
593
- { 0x05, 0x0a, -1, 0x03, 0x0042, 0x0446 },
594
- { 0x05, 0x18, -1, 0x03, 0x0042, 0x0846 },
595
- { 0x05, 0x05, -1, 0x03, 0x0062, 0x0046 },
596
- { 0x05, 0x05, -1, 0x03, 0x0062, 0x0066 },
597
- { 0x05, 0x06, -1, 0x03, 0x0062, 0x0086 },
598
- { 0x05, 0x07, -1, 0x03, 0x0062, 0x00c6 },
599
- { 0x05, 0x08, -1, 0x03, 0x0062, 0x0146 },
600
- { 0x05, 0x09, -1, 0x03, 0x0062, 0x0246 },
601
- { 0x05, 0x0a, -1, 0x03, 0x0062, 0x0446 },
602
- { 0x05, 0x18, -1, 0x03, 0x0062, 0x0846 },
603
- { 0x06, 0x01, -1, 0x03, 0x0082, 0x000a },
604
- { 0x06, 0x01, -1, 0x03, 0x0082, 0x000c },
605
- { 0x06, 0x02, -1, 0x03, 0x0082, 0x000e },
606
- { 0x06, 0x02, -1, 0x03, 0x0082, 0x0012 },
607
- { 0x06, 0x03, -1, 0x03, 0x0082, 0x0016 },
608
- { 0x06, 0x03, -1, 0x03, 0x0082, 0x001e },
609
- { 0x06, 0x04, -1, 0x03, 0x0082, 0x0026 },
610
- { 0x06, 0x04, -1, 0x03, 0x0082, 0x0036 },
611
- { 0x07, 0x01, -1, 0x03, 0x00c2, 0x000a },
612
- { 0x07, 0x01, -1, 0x03, 0x00c2, 0x000c },
613
- { 0x07, 0x02, -1, 0x03, 0x00c2, 0x000e },
614
- { 0x07, 0x02, -1, 0x03, 0x00c2, 0x0012 },
615
- { 0x07, 0x03, -1, 0x03, 0x00c2, 0x0016 },
616
- { 0x07, 0x03, -1, 0x03, 0x00c2, 0x001e },
617
- { 0x07, 0x04, -1, 0x03, 0x00c2, 0x0026 },
618
- { 0x07, 0x04, -1, 0x03, 0x00c2, 0x0036 },
619
- { 0x08, 0x01, -1, 0x03, 0x0142, 0x000a },
620
- { 0x08, 0x01, -1, 0x03, 0x0142, 0x000c },
621
- { 0x08, 0x02, -1, 0x03, 0x0142, 0x000e },
622
- { 0x08, 0x02, -1, 0x03, 0x0142, 0x0012 },
623
- { 0x08, 0x03, -1, 0x03, 0x0142, 0x0016 },
624
- { 0x08, 0x03, -1, 0x03, 0x0142, 0x001e },
625
- { 0x08, 0x04, -1, 0x03, 0x0142, 0x0026 },
626
- { 0x08, 0x04, -1, 0x03, 0x0142, 0x0036 },
627
- { 0x09, 0x01, -1, 0x03, 0x0242, 0x000a },
628
- { 0x09, 0x01, -1, 0x03, 0x0242, 0x000c },
629
- { 0x09, 0x02, -1, 0x03, 0x0242, 0x000e },
630
- { 0x09, 0x02, -1, 0x03, 0x0242, 0x0012 },
631
- { 0x09, 0x03, -1, 0x03, 0x0242, 0x0016 },
632
- { 0x09, 0x03, -1, 0x03, 0x0242, 0x001e },
633
- { 0x09, 0x04, -1, 0x03, 0x0242, 0x0026 },
634
- { 0x09, 0x04, -1, 0x03, 0x0242, 0x0036 },
635
- { 0x0a, 0x01, -1, 0x03, 0x0442, 0x000a },
636
- { 0x0a, 0x01, -1, 0x03, 0x0442, 0x000c },
637
- { 0x0a, 0x02, -1, 0x03, 0x0442, 0x000e },
638
- { 0x0a, 0x02, -1, 0x03, 0x0442, 0x0012 },
639
- { 0x0a, 0x03, -1, 0x03, 0x0442, 0x0016 },
640
- { 0x0a, 0x03, -1, 0x03, 0x0442, 0x001e },
641
- { 0x0a, 0x04, -1, 0x03, 0x0442, 0x0026 },
642
- { 0x0a, 0x04, -1, 0x03, 0x0442, 0x0036 },
643
- { 0x0c, 0x01, -1, 0x03, 0x0842, 0x000a },
644
- { 0x0c, 0x01, -1, 0x03, 0x0842, 0x000c },
645
- { 0x0c, 0x02, -1, 0x03, 0x0842, 0x000e },
646
- { 0x0c, 0x02, -1, 0x03, 0x0842, 0x0012 },
647
- { 0x0c, 0x03, -1, 0x03, 0x0842, 0x0016 },
648
- { 0x0c, 0x03, -1, 0x03, 0x0842, 0x001e },
649
- { 0x0c, 0x04, -1, 0x03, 0x0842, 0x0026 },
650
- { 0x0c, 0x04, -1, 0x03, 0x0842, 0x0036 },
651
- { 0x0e, 0x01, -1, 0x03, 0x1842, 0x000a },
652
- { 0x0e, 0x01, -1, 0x03, 0x1842, 0x000c },
653
- { 0x0e, 0x02, -1, 0x03, 0x1842, 0x000e },
654
- { 0x0e, 0x02, -1, 0x03, 0x1842, 0x0012 },
655
- { 0x0e, 0x03, -1, 0x03, 0x1842, 0x0016 },
656
- { 0x0e, 0x03, -1, 0x03, 0x1842, 0x001e },
657
- { 0x0e, 0x04, -1, 0x03, 0x1842, 0x0026 },
658
- { 0x0e, 0x04, -1, 0x03, 0x1842, 0x0036 },
659
- { 0x18, 0x01, -1, 0x03, 0x5842, 0x000a },
660
- { 0x18, 0x01, -1, 0x03, 0x5842, 0x000c },
661
- { 0x18, 0x02, -1, 0x03, 0x5842, 0x000e },
662
- { 0x18, 0x02, -1, 0x03, 0x5842, 0x0012 },
663
- { 0x18, 0x03, -1, 0x03, 0x5842, 0x0016 },
664
- { 0x18, 0x03, -1, 0x03, 0x5842, 0x001e },
665
- { 0x18, 0x04, -1, 0x03, 0x5842, 0x0026 },
666
- { 0x18, 0x04, -1, 0x03, 0x5842, 0x0036 },
667
- { 0x06, 0x05, -1, 0x03, 0x0082, 0x0046 },
668
- { 0x06, 0x05, -1, 0x03, 0x0082, 0x0066 },
669
- { 0x06, 0x06, -1, 0x03, 0x0082, 0x0086 },
670
- { 0x06, 0x07, -1, 0x03, 0x0082, 0x00c6 },
671
- { 0x06, 0x08, -1, 0x03, 0x0082, 0x0146 },
672
- { 0x06, 0x09, -1, 0x03, 0x0082, 0x0246 },
673
- { 0x06, 0x0a, -1, 0x03, 0x0082, 0x0446 },
674
- { 0x06, 0x18, -1, 0x03, 0x0082, 0x0846 },
675
- { 0x07, 0x05, -1, 0x03, 0x00c2, 0x0046 },
676
- { 0x07, 0x05, -1, 0x03, 0x00c2, 0x0066 },
677
- { 0x07, 0x06, -1, 0x03, 0x00c2, 0x0086 },
678
- { 0x07, 0x07, -1, 0x03, 0x00c2, 0x00c6 },
679
- { 0x07, 0x08, -1, 0x03, 0x00c2, 0x0146 },
680
- { 0x07, 0x09, -1, 0x03, 0x00c2, 0x0246 },
681
- { 0x07, 0x0a, -1, 0x03, 0x00c2, 0x0446 },
682
- { 0x07, 0x18, -1, 0x03, 0x00c2, 0x0846 },
683
- { 0x08, 0x05, -1, 0x03, 0x0142, 0x0046 },
684
- { 0x08, 0x05, -1, 0x03, 0x0142, 0x0066 },
685
- { 0x08, 0x06, -1, 0x03, 0x0142, 0x0086 },
686
- { 0x08, 0x07, -1, 0x03, 0x0142, 0x00c6 },
687
- { 0x08, 0x08, -1, 0x03, 0x0142, 0x0146 },
688
- { 0x08, 0x09, -1, 0x03, 0x0142, 0x0246 },
689
- { 0x08, 0x0a, -1, 0x03, 0x0142, 0x0446 },
690
- { 0x08, 0x18, -1, 0x03, 0x0142, 0x0846 },
691
- { 0x09, 0x05, -1, 0x03, 0x0242, 0x0046 },
692
- { 0x09, 0x05, -1, 0x03, 0x0242, 0x0066 },
693
- { 0x09, 0x06, -1, 0x03, 0x0242, 0x0086 },
694
- { 0x09, 0x07, -1, 0x03, 0x0242, 0x00c6 },
695
- { 0x09, 0x08, -1, 0x03, 0x0242, 0x0146 },
696
- { 0x09, 0x09, -1, 0x03, 0x0242, 0x0246 },
697
- { 0x09, 0x0a, -1, 0x03, 0x0242, 0x0446 },
698
- { 0x09, 0x18, -1, 0x03, 0x0242, 0x0846 },
699
- { 0x0a, 0x05, -1, 0x03, 0x0442, 0x0046 },
700
- { 0x0a, 0x05, -1, 0x03, 0x0442, 0x0066 },
701
- { 0x0a, 0x06, -1, 0x03, 0x0442, 0x0086 },
702
- { 0x0a, 0x07, -1, 0x03, 0x0442, 0x00c6 },
703
- { 0x0a, 0x08, -1, 0x03, 0x0442, 0x0146 },
704
- { 0x0a, 0x09, -1, 0x03, 0x0442, 0x0246 },
705
- { 0x0a, 0x0a, -1, 0x03, 0x0442, 0x0446 },
706
- { 0x0a, 0x18, -1, 0x03, 0x0442, 0x0846 },
707
- { 0x0c, 0x05, -1, 0x03, 0x0842, 0x0046 },
708
- { 0x0c, 0x05, -1, 0x03, 0x0842, 0x0066 },
709
- { 0x0c, 0x06, -1, 0x03, 0x0842, 0x0086 },
710
- { 0x0c, 0x07, -1, 0x03, 0x0842, 0x00c6 },
711
- { 0x0c, 0x08, -1, 0x03, 0x0842, 0x0146 },
712
- { 0x0c, 0x09, -1, 0x03, 0x0842, 0x0246 },
713
- { 0x0c, 0x0a, -1, 0x03, 0x0842, 0x0446 },
714
- { 0x0c, 0x18, -1, 0x03, 0x0842, 0x0846 },
715
- { 0x0e, 0x05, -1, 0x03, 0x1842, 0x0046 },
716
- { 0x0e, 0x05, -1, 0x03, 0x1842, 0x0066 },
717
- { 0x0e, 0x06, -1, 0x03, 0x1842, 0x0086 },
718
- { 0x0e, 0x07, -1, 0x03, 0x1842, 0x00c6 },
719
- { 0x0e, 0x08, -1, 0x03, 0x1842, 0x0146 },
720
- { 0x0e, 0x09, -1, 0x03, 0x1842, 0x0246 },
721
- { 0x0e, 0x0a, -1, 0x03, 0x1842, 0x0446 },
722
- { 0x0e, 0x18, -1, 0x03, 0x1842, 0x0846 },
723
- { 0x18, 0x05, -1, 0x03, 0x5842, 0x0046 },
724
- { 0x18, 0x05, -1, 0x03, 0x5842, 0x0066 },
725
- { 0x18, 0x06, -1, 0x03, 0x5842, 0x0086 },
726
- { 0x18, 0x07, -1, 0x03, 0x5842, 0x00c6 },
727
- { 0x18, 0x08, -1, 0x03, 0x5842, 0x0146 },
728
- { 0x18, 0x09, -1, 0x03, 0x5842, 0x0246 },
729
- { 0x18, 0x0a, -1, 0x03, 0x5842, 0x0446 },
730
- { 0x18, 0x18, -1, 0x03, 0x5842, 0x0846 },
731
- };
30
+ #if (BROTLI_STATIC_INIT == BROTLI_STATIC_INIT_NONE)
31
+ BROTLI_INTERNAL extern const BROTLI_MODEL("small")
32
+ CmdLutElement kCmdLut[BROTLI_NUM_COMMAND_SYMBOLS];
33
+ #else
34
+ BROTLI_INTERNAL BROTLI_BOOL BrotliDecoderInitCmdLut(CmdLutElement* items);
35
+ BROTLI_INTERNAL extern BROTLI_MODEL("small")
36
+ CmdLutElement kCmdLut[BROTLI_NUM_COMMAND_SYMBOLS];
37
+ #endif
38
+
39
+ #if defined(__cplusplus) || defined(c_plusplus)
40
+ } /* extern "C" */
41
+ #endif
732
42
 
733
43
  #endif /* BROTLI_DEC_PREFIX_H_ */