@gscdump/engine 1.3.2 → 1.4.1

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 (366) hide show
  1. package/dist/adapters/duckdb-node.d.mts +7 -0
  2. package/dist/adapters/duckdb-node.mjs +94 -0
  3. package/dist/adapters/filesystem.d.mts +1 -1
  4. package/dist/adapters/filesystem.mjs +1 -1
  5. package/dist/adapters/hyparquet.d.mts +4 -3
  6. package/dist/adapters/hyparquet.mjs +7 -3
  7. package/dist/adapters/node-harness.d.mts +38 -0
  8. package/dist/adapters/node-harness.mjs +47 -0
  9. package/dist/adapters/node.d.mts +4 -100
  10. package/dist/adapters/node.mjs +4 -240
  11. package/dist/adapters/parquet-attach.d.mts +23 -0
  12. package/dist/adapters/parquet-attach.mjs +21 -0
  13. package/dist/adapters/r2-manifest.d.mts +82 -0
  14. package/dist/adapters/r2-manifest.mjs +364 -0
  15. package/dist/adapters/r2.d.mts +1 -1
  16. package/dist/adapters/read-optional.mjs +15 -0
  17. package/dist/adapters/snapshot-attach.d.mts +38 -0
  18. package/dist/adapters/snapshot-attach.mjs +85 -0
  19. package/dist/analysis-types.d.mts +56 -1
  20. package/dist/analyzer/define.d.mts +48 -0
  21. package/dist/analyzer/define.mjs +60 -0
  22. package/dist/analyzer/dispatch.d.mts +17 -0
  23. package/dist/analyzer/index.d.mts +4 -14
  24. package/dist/analyzer/index.mjs +4 -112
  25. package/dist/analyzer/registry.d.mts +33 -0
  26. package/dist/analyzer/registry.mjs +49 -0
  27. package/dist/analyzer/types.d.mts +95 -0
  28. package/dist/analyzer/types.mjs +5 -0
  29. package/dist/coerce.d.mts +4 -0
  30. package/dist/compaction.d.mts +14 -0
  31. package/dist/{_chunks/parquet-plan.mjs → compaction.mjs} +2 -138
  32. package/dist/contracts.d.mts +1 -2
  33. package/dist/{_chunks/schema.d.mts → drizzle-schema.d.mts} +22 -54
  34. package/dist/{_chunks/schema.mjs → drizzle-schema.mjs} +2 -78
  35. package/dist/{_chunks/snapshot.d.mts → duckdb.d.mts} +1 -14
  36. package/dist/duckdb.mjs +207 -0
  37. package/dist/engine.d.mts +4 -0
  38. package/dist/engine.mjs +385 -0
  39. package/dist/entities.d.mts +3 -52
  40. package/dist/entities.mjs +867 -2
  41. package/dist/errors.d.mts +114 -1
  42. package/dist/gc.mjs +92 -0
  43. package/dist/iceberg/append-sink.d.mts +14 -0
  44. package/dist/iceberg/append-sink.mjs +142 -0
  45. package/dist/iceberg/catalog.d.mts +71 -0
  46. package/dist/iceberg/catalog.mjs +109 -0
  47. package/dist/iceberg/index.d.mts +4 -13
  48. package/dist/iceberg/index.mjs +3 -244
  49. package/dist/iceberg/overwrite-writer.d.mts +161 -0
  50. package/dist/iceberg/overwrite-writer.mjs +102 -0
  51. package/dist/iceberg/pyiceberg-runtime.mjs +34 -0
  52. package/dist/iceberg/schema.d.mts +69 -0
  53. package/dist/{_chunks/schema2.mjs → iceberg/schema.mjs} +3 -2
  54. package/dist/index.d.mts +14 -190
  55. package/dist/index.mjs +10 -645
  56. package/dist/ingest-accumulator.d.mts +1 -1
  57. package/dist/ingest.d.mts +1 -1
  58. package/dist/layout.d.mts +31 -0
  59. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.bitreader.mjs +88 -0
  60. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.blocks.mjs +120 -0
  61. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.context.mjs +1805 -0
  62. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.contextmap.mjs +49 -0
  63. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.dictionary.mjs +984 -0
  64. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.huffman.mjs +266 -0
  65. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.mjs +340 -0
  66. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.prefix.mjs +109 -0
  67. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.streams.mjs +21 -0
  68. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/brotli.transform.mjs +190 -0
  69. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/compressors.mjs +7 -0
  70. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/gzip.huffman.mjs +121 -0
  71. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/gzip.mjs +176 -0
  72. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/index.mjs +7 -0
  73. package/dist/node_modules/.pnpm/hyparquet-compressors@1.1.1/node_modules/hyparquet-compressors/src/lz4.mjs +52 -0
  74. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/bloom.mjs +93 -0
  75. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/bytewriter.mjs +91 -0
  76. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/column.mjs +186 -0
  77. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/datapage.mjs +113 -0
  78. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/delta.mjs +111 -0
  79. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/dictionary.mjs +99 -0
  80. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/dremel.mjs +116 -0
  81. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/encoding.mjs +51 -0
  82. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/geospatial.mjs +84 -0
  83. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/index.mjs +7 -0
  84. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/indexes.mjs +31 -0
  85. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/metadata.mjs +138 -0
  86. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/node.mjs +8 -0
  87. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/parquet-writer.mjs +139 -0
  88. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/plain.mjs +68 -0
  89. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/schema.mjs +254 -0
  90. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/snappy.mjs +125 -0
  91. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/splitstream.mjs +38 -0
  92. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/thrift.mjs +79 -0
  93. package/dist/{_chunks/libs/hyparquet-writer.d.mts → node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/types.d.mts} +2 -2
  94. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/unconvert.mjs +247 -0
  95. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/variant.mjs +321 -0
  96. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/wkb.mjs +79 -0
  97. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/write-rows.mjs +122 -0
  98. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/src/write.mjs +5 -0
  99. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/types/bytewriter.d.mts +1 -0
  100. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/types/index.d.mts +10 -0
  101. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/types/node.d.mts +3 -0
  102. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/types/parquet-writer.d.mts +2 -0
  103. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/types/schema.d.mts +2 -0
  104. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/types/wkb.d.mts +1 -0
  105. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/types/write-rows.d.mts +1 -0
  106. package/dist/node_modules/.pnpm/hyparquet-writer@0.16.1_patch_hash_7a5e451ac7634d7546ac56bcc5eadacf7715a6241640c2b5a5bc0cfc9763b8ec/node_modules/hyparquet-writer/types/write.d.mts +1 -0
  107. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/assemble.mjs +3 -0
  108. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/bloom.mjs +69 -0
  109. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/column.mjs +8 -0
  110. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/constants.mjs +80 -0
  111. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/convert.mjs +3 -0
  112. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/datapage.mjs +6 -0
  113. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/delta.mjs +2 -0
  114. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/encoding.mjs +2 -0
  115. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/filter.mjs +3 -0
  116. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/geoparquet.mjs +1 -0
  117. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/index.mjs +7 -0
  118. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/indexes.mjs +5 -0
  119. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/metadata.mjs +7 -0
  120. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/node.mjs +3 -0
  121. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/plain.mjs +1 -0
  122. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/plan.mjs +5 -0
  123. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/query.mjs +3 -0
  124. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/read.mjs +6 -0
  125. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/rowgroup.mjs +7 -0
  126. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/schema.mjs +54 -0
  127. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/snappy.mjs +1 -0
  128. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/thrift.mjs +1 -0
  129. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/types.d.mts +1 -0
  130. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/utils.mjs +19 -0
  131. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/variant.mjs +3 -0
  132. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/wkb.mjs +1 -0
  133. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/src/xxhash.mjs +68 -0
  134. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/types/index.d.mts +7 -0
  135. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/types/indexes.d.mts +1 -0
  136. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/types/metadata.d.mts +1 -0
  137. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/types/node.d.mts +2 -0
  138. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/types/query.d.mts +1 -0
  139. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/types/read.d.mts +1 -0
  140. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/types/snappy.d.mts +1 -0
  141. package/dist/node_modules/.pnpm/hyparquet@1.26.1/node_modules/hyparquet/types/utils.d.mts +1 -0
  142. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/assemble.mjs +144 -0
  143. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/bloom.mjs +124 -0
  144. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/column.mjs +127 -0
  145. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/constants.mjs +75 -0
  146. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/convert.mjs +118 -0
  147. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/datapage.mjs +144 -0
  148. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/delta.mjs +65 -0
  149. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/encoding.mjs +76 -0
  150. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/filter.mjs +98 -0
  151. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/geoparquet.mjs +24 -0
  152. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/index.mjs +7 -0
  153. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/indexes.mjs +16 -0
  154. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/metadata.mjs +235 -0
  155. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/node.mjs +7 -0
  156. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/plain.mjs +78 -0
  157. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/plan.mjs +147 -0
  158. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/query.mjs +3 -0
  159. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/read.mjs +106 -0
  160. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/rowgroup.mjs +154 -0
  161. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/schema.mjs +75 -0
  162. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/snappy.mjs +70 -0
  163. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/thrift.mjs +86 -0
  164. package/dist/{_chunks/libs/hyparquet.d.mts → node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/types.d.mts} +6 -8
  165. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/utils.mjs +31 -0
  166. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/variant.mjs +225 -0
  167. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/wkb.mjs +94 -0
  168. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/src/xxhash.mjs +68 -0
  169. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/types/index.d.mts +10 -0
  170. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/types/indexes.d.mts +1 -0
  171. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/types/metadata.d.mts +1 -0
  172. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/types/node.d.mts +3 -0
  173. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/types/query.d.mts +1 -0
  174. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/types/read.d.mts +1 -0
  175. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/types/snappy.d.mts +1 -0
  176. package/dist/node_modules/.pnpm/hyparquet@1.26.2/node_modules/hyparquet/types/utils.d.mts +1 -0
  177. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/avro/avro.metadata.mjs +1 -0
  178. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/avro/avro.read.mjs +4 -0
  179. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/avro/avro.write.mjs +2 -0
  180. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/catalog/file.mjs +1 -0
  181. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/catalog/loadTable.mjs +3 -0
  182. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/catalog/rest.mjs +73 -0
  183. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/create.mjs +67 -0
  184. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/delete.mjs +2 -0
  185. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/fetch.mjs +8 -0
  186. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/index.mjs +13 -0
  187. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/json.mjs +147 -0
  188. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/manifest.mjs +2 -0
  189. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/metadata.mjs +3 -0
  190. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/prune.mjs +4 -0
  191. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/puffin/deletion-vector.mjs +2 -0
  192. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/puffin/puffin.mjs +2 -0
  193. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/puffin/roaring.mjs +1 -0
  194. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/read.mjs +9 -0
  195. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/s3.mjs +3 -0
  196. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/schema.mjs +76 -0
  197. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/sigv4.mjs +2 -0
  198. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/sql/icebergDataSource.mjs +8 -0
  199. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/sql/icebergQuery.mjs +5 -0
  200. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/sql/whereFilter.mjs +1 -0
  201. package/dist/{_chunks/libs/icebird.d.mts → node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/types.d.mts} +5 -33
  202. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/utils.mjs +8 -0
  203. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/commit.mjs +5 -0
  204. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/conversions.mjs +19 -0
  205. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/delete-file.mjs +3 -0
  206. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/geospatial.mjs +1 -0
  207. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/manifest-list.mjs +2 -0
  208. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/manifest.mjs +3 -0
  209. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/parquet.mjs +5 -0
  210. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/partition.mjs +75 -0
  211. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/rewrite.mjs +10 -0
  212. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/serde.mjs +2 -0
  213. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/snapshot.mjs +5 -0
  214. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/sort.mjs +3 -0
  215. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/stage-deletion-vector.mjs +11 -0
  216. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/stage-position-delete.mjs +8 -0
  217. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/stage.mjs +10 -0
  218. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/stats.mjs +4 -0
  219. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/transform.mjs +60 -0
  220. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/src/write/write.mjs +45 -0
  221. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/catalog/file.d.mts +1 -0
  222. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/catalog/rest.d.mts +1 -0
  223. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/create.d.mts +1 -0
  224. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/fetch.d.mts +1 -0
  225. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/index.d.mts +13 -0
  226. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/manifest.d.mts +1 -0
  227. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/metadata.d.mts +1 -0
  228. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/read.d.mts +2 -0
  229. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/s3.d.mts +1 -0
  230. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/sql/icebergDataSource.d.mts +2 -0
  231. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/sql/icebergQuery.d.mts +2 -0
  232. package/dist/node_modules/.pnpm/icebird@0.8.15_patch_hash_d1902372376af18885e7c7dce807f1ecab86c2f86a9d1ff65d51e3b63b64b057/node_modules/icebird/types/write/write.d.mts +32 -0
  233. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/ast.d.mts +1 -0
  234. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/backend/dataSource.mjs +1 -0
  235. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/accumulator.mjs +2 -0
  236. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/aggregates.mjs +10 -0
  237. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/execute.mjs +15 -0
  238. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/join.mjs +5 -0
  239. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/scanColumn.mjs +1 -0
  240. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/sort.mjs +5 -0
  241. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/streamingAggregate.mjs +9 -0
  242. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/utils.mjs +1 -0
  243. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/window.mjs +5 -0
  244. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/execute/yield.mjs +17 -0
  245. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/expression/alias.mjs +1 -0
  246. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/expression/binary.mjs +1 -0
  247. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/expression/date.mjs +1 -0
  248. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/expression/evaluate.mjs +15 -0
  249. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/expression/math.mjs +1 -0
  250. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/expression/regexp.mjs +2 -0
  251. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/expression/strings.mjs +3 -0
  252. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/index.d.mts +1 -0
  253. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/index.mjs +9 -0
  254. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/expression.mjs +6 -0
  255. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/extractTables.mjs +1 -0
  256. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/functions.mjs +5 -0
  257. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/joins.mjs +7 -0
  258. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/parse.mjs +10 -0
  259. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/primary.mjs +8 -0
  260. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/state.mjs +2 -0
  261. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/tokenize.mjs +3 -0
  262. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/parse/types.d.mts +1 -0
  263. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/plan/columns.mjs +3 -0
  264. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/plan/plan.mjs +7 -0
  265. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/plan/types.d.mts +1 -0
  266. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/spatial/bbox.mjs +2 -0
  267. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/spatial/equality.mjs +2 -0
  268. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/spatial/operations.mjs +5 -0
  269. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/spatial/pointRelations.mjs +2 -0
  270. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/spatial/primitives.mjs +2 -0
  271. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/spatial/segments.mjs +2 -0
  272. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/spatial/spatial.mjs +6 -0
  273. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/spatial/wkt.mjs +1 -0
  274. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/types.d.mts +3 -0
  275. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/validation/aggregates.mjs +3 -0
  276. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/validation/executionErrors.mjs +2 -0
  277. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/validation/functions.mjs +2 -0
  278. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/validation/keywords.mjs +1 -0
  279. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/validation/parseErrors.mjs +2 -0
  280. package/dist/node_modules/.pnpm/squirreling@0.15.0/node_modules/squirreling/src/validation/tables.mjs +2 -0
  281. package/dist/parquet-plan.d.mts +15 -0
  282. package/dist/parquet-plan.mjs +139 -0
  283. package/dist/parquet-pushdown.mjs +58 -0
  284. package/dist/period/index.d.mts +52 -1
  285. package/dist/planner.d.mts +2 -14
  286. package/dist/planner.mjs +2 -1
  287. package/dist/profile.d.mts +21 -0
  288. package/dist/profile.mjs +27 -0
  289. package/dist/query-dim.d.mts +54 -0
  290. package/dist/query-dim.mjs +91 -0
  291. package/dist/report/define.d.mts +8 -0
  292. package/dist/report/define.mjs +15 -0
  293. package/dist/report/hash.d.mts +13 -0
  294. package/dist/report/hash.mjs +29 -0
  295. package/dist/report/index.d.mts +4 -170
  296. package/dist/report/index.mjs +3 -55
  297. package/dist/report/registry.d.mts +18 -0
  298. package/dist/report/registry.mjs +14 -0
  299. package/dist/report/types.d.mts +139 -0
  300. package/dist/resolver/adapter.d.mts +13 -0
  301. package/dist/resolver/adapter.mjs +27 -0
  302. package/dist/resolver/canonical-source.d.mts +5 -0
  303. package/dist/resolver/canonical-source.mjs +14 -0
  304. package/dist/resolver/compile.d.mts +15 -0
  305. package/dist/resolver/compile.mjs +396 -0
  306. package/dist/resolver/datasets.d.mts +16 -0
  307. package/dist/resolver/datasets.mjs +159 -0
  308. package/dist/resolver/extras-overlay.d.mts +37 -0
  309. package/dist/resolver/extras-overlay.mjs +17 -0
  310. package/dist/resolver/filter-utils.d.mts +10 -0
  311. package/dist/resolver/filter-utils.mjs +59 -0
  312. package/dist/resolver/fragments.d.mts +60 -0
  313. package/dist/resolver/fragments.mjs +206 -0
  314. package/dist/resolver/index.d.mts +11 -371
  315. package/dist/resolver/index.mjs +10 -1
  316. package/dist/resolver/pg-adapter.d.mts +56 -0
  317. package/dist/resolver/pg-adapter.mjs +110 -0
  318. package/dist/resolver/run-query.d.mts +172 -0
  319. package/dist/resolver/run-query.mjs +241 -0
  320. package/dist/resolver/schema-drift.d.mts +15 -0
  321. package/dist/resolver/schema-drift.mjs +12 -0
  322. package/dist/rollups.d.mts +4 -4
  323. package/dist/rollups.mjs +3 -2
  324. package/dist/schedule.mjs +100 -0
  325. package/dist/schema.d.mts +34 -1
  326. package/dist/schema.mjs +78 -1
  327. package/dist/sink-node.d.mts +1 -159
  328. package/dist/sink-node.mjs +1 -133
  329. package/dist/sink.d.mts +125 -0
  330. package/dist/sinks/in-memory-sink.d.mts +25 -0
  331. package/dist/sinks/in-memory-sink.mjs +61 -0
  332. package/dist/sinks/index.d.mts +2 -0
  333. package/dist/sinks/index.mjs +2 -0
  334. package/dist/snapshot.d.mts +14 -0
  335. package/dist/source/attached-table.d.mts +45 -0
  336. package/dist/source/attached-table.mjs +55 -0
  337. package/dist/source/create-sql-query-source.d.mts +24 -0
  338. package/dist/source/create-sql-query-source.mjs +28 -0
  339. package/dist/source/index.d.mts +6 -66
  340. package/dist/source/index.mjs +9 -82
  341. package/dist/source/source-types.d.mts +49 -0
  342. package/dist/{_chunks/storage.d.mts → storage.d.mts} +4 -14
  343. package/dist/sync-config.d.mts +36 -0
  344. package/dist/sync-config.mjs +98 -0
  345. package/dist/vendor/hysnappy-purejs.mjs +12 -1
  346. package/package.json +4 -4
  347. package/dist/_chunks/analysis-types.d.mts +0 -57
  348. package/dist/_chunks/contracts.d.mts +0 -1
  349. package/dist/_chunks/engine.mjs +0 -731
  350. package/dist/_chunks/entities.mjs +0 -967
  351. package/dist/_chunks/errors.d.mts +0 -115
  352. package/dist/_chunks/index.d.mts +0 -53
  353. package/dist/_chunks/libs/hyparquet-compressors.mjs +0 -2796
  354. package/dist/_chunks/libs/hyparquet-writer.mjs +0 -2524
  355. package/dist/_chunks/libs/hyparquet.mjs +0 -2596
  356. package/dist/_chunks/libs/icebird.mjs +0 -564
  357. package/dist/_chunks/registry.d.mts +0 -213
  358. package/dist/_chunks/resolver.mjs +0 -1220
  359. package/dist/_chunks/sink.d.mts +0 -257
  360. /package/dist/{_chunks → analyzer}/dispatch.mjs +0 -0
  361. /package/dist/{_chunks/coerce.mjs → coerce.mjs} +0 -0
  362. /package/dist/{_chunks/layout.mjs → layout.mjs} +0 -0
  363. /package/dist/{_chunks/manifest-store-utils.mjs → manifest-store-utils.mjs} +0 -0
  364. /package/dist/{_chunks/libs/fzstd.mjs → node_modules/.pnpm/fzstd@0.1.1/node_modules/fzstd/esm/index.mjs} +0 -0
  365. /package/dist/{_chunks → resolver}/types.d.mts +0 -0
  366. /package/dist/{_chunks/schedule.d.mts → schedule.d.mts} +0 -0
@@ -1,2796 +0,0 @@
1
- import { snappyUncompress as snappyUncompress$1 } from "./hyparquet.mjs";
2
- import "./fzstd.mjs";
3
- function decode(input, outputLength) {
4
- const output = new Uint8Array(outputLength);
5
- snappyUncompress$1(input, output);
6
- return output;
7
- }
8
- function snappyUncompressor() {
9
- return decode;
10
- }
11
- function snappyUncompress(input, outputLength) {
12
- return decode(input, outputLength);
13
- }
14
- const BROTLI_READ_SIZE = 4096;
15
- const BROTLI_IBUF_SIZE = 8224;
16
- const BROTLI_IBUF_MASK = 2 * BROTLI_READ_SIZE - 1;
17
- const kBitMask = new Uint32Array([
18
- 0,
19
- 1,
20
- 3,
21
- 7,
22
- 15,
23
- 31,
24
- 63,
25
- 127,
26
- 255,
27
- 511,
28
- 1023,
29
- 2047,
30
- 4095,
31
- 8191,
32
- 16383,
33
- 32767,
34
- 65535,
35
- 131071,
36
- 262143,
37
- 524287,
38
- 1048575,
39
- 2097151,
40
- 4194303,
41
- 8388607,
42
- 16777215
43
- ]);
44
- function BrotliBitReader(input) {
45
- this.buf_ = new Uint8Array(BROTLI_IBUF_SIZE);
46
- this.input_ = input;
47
- this.buf_ptr_ = 0;
48
- this.val_ = 0;
49
- this.pos_ = 0;
50
- this.reset();
51
- }
52
- BrotliBitReader.READ_SIZE = BROTLI_READ_SIZE;
53
- BrotliBitReader.IBUF_MASK = BROTLI_IBUF_MASK;
54
- BrotliBitReader.prototype.reset = function() {
55
- this.buf_ptr_ = 0;
56
- this.val_ = 0;
57
- this.pos_ = 0;
58
- this.bit_pos_ = 0;
59
- this.bit_end_pos_ = 0;
60
- this.eos_ = 0;
61
- this.readMoreInput();
62
- for (let i = 0; i < 4; i++) {
63
- this.val_ |= this.buf_[this.pos_] << 8 * i;
64
- this.pos_++;
65
- }
66
- return this.bit_end_pos_ > 0;
67
- };
68
- BrotliBitReader.prototype.readMoreInput = function() {
69
- if (this.bit_end_pos_ > 256) {} else if (this.eos_) {
70
- if (this.bit_pos_ > this.bit_end_pos_) throw new Error("Unexpected end of input " + this.bit_pos_ + " " + this.bit_end_pos_);
71
- } else {
72
- const dst = this.buf_ptr_;
73
- const bytes_read = this.input_.read(this.buf_, dst, BROTLI_READ_SIZE);
74
- if (bytes_read < 0) throw new Error("Unexpected end of input");
75
- if (bytes_read < BROTLI_READ_SIZE) {
76
- this.eos_ = 1;
77
- for (let p = 0; p < 32; p++) this.buf_[dst + bytes_read + p] = 0;
78
- }
79
- if (dst === 0) {
80
- for (let p = 0; p < 32; p++) this.buf_[(BROTLI_READ_SIZE << 1) + p] = this.buf_[p];
81
- this.buf_ptr_ = BROTLI_READ_SIZE;
82
- } else this.buf_ptr_ = 0;
83
- this.bit_end_pos_ += bytes_read << 3;
84
- }
85
- };
86
- BrotliBitReader.prototype.fillBitWindow = function() {
87
- while (this.bit_pos_ >= 8) {
88
- this.val_ >>>= 8;
89
- this.val_ |= this.buf_[this.pos_ & BROTLI_IBUF_MASK] << 24;
90
- this.pos_++;
91
- this.bit_pos_ = this.bit_pos_ - 8 >>> 0;
92
- this.bit_end_pos_ = this.bit_end_pos_ - 8 >>> 0;
93
- }
94
- };
95
- BrotliBitReader.prototype.readBits = function(n_bits) {
96
- if (32 - this.bit_pos_ < n_bits) this.fillBitWindow();
97
- const val = this.val_ >>> this.bit_pos_ & kBitMask[n_bits];
98
- this.bit_pos_ += n_bits;
99
- return val;
100
- };
101
- const kDefaultCodeLength = 8;
102
- const HUFFMAN_TABLE_BITS = 8;
103
- const CODE_LENGTH_CODES = 18;
104
- const kCodeLengthCodeOrder = new Uint8Array([
105
- 1,
106
- 2,
107
- 3,
108
- 4,
109
- 0,
110
- 5,
111
- 17,
112
- 6,
113
- 16,
114
- 7,
115
- 8,
116
- 9,
117
- 10,
118
- 11,
119
- 12,
120
- 13,
121
- 14,
122
- 15
123
- ]);
124
- const kMaxHuffmanTableSize = new Uint16Array([
125
- 256,
126
- 402,
127
- 436,
128
- 468,
129
- 500,
130
- 534,
131
- 566,
132
- 598,
133
- 630,
134
- 662,
135
- 694,
136
- 726,
137
- 758,
138
- 790,
139
- 822,
140
- 854,
141
- 886,
142
- 920,
143
- 952,
144
- 984,
145
- 1016,
146
- 1048,
147
- 1080
148
- ]);
149
- function HuffmanCode(bits, value) {
150
- this.bits = bits;
151
- this.value = value;
152
- }
153
- const kCodeLengthRepeatCode = 16;
154
- const MAX_LENGTH = 15;
155
- function getNextKey(key, len) {
156
- let step = 1 << len - 1;
157
- while (key & step) step >>= 1;
158
- return (key & step - 1) + step;
159
- }
160
- function replicateValue(table, i, step, end, code) {
161
- do {
162
- end -= step;
163
- table[i + end] = new HuffmanCode(code.bits, code.value);
164
- } while (end > 0);
165
- }
166
- function nextTableBitSize(count, len, root_bits) {
167
- let left = 1 << len - root_bits;
168
- while (len < MAX_LENGTH) {
169
- left -= count[len];
170
- if (left <= 0) break;
171
- ++len;
172
- left <<= 1;
173
- }
174
- return len - root_bits;
175
- }
176
- function buildHuffmanTable(root_table, table, root_bits, code_lengths, code_lengths_size) {
177
- const start_table = table;
178
- const count = /* @__PURE__ */ new Int32Array(16);
179
- const offset = /* @__PURE__ */ new Int32Array(16);
180
- const sorted = new Int32Array(code_lengths_size);
181
- for (let i = 0; i < code_lengths_size; i++) count[code_lengths[i]]++;
182
- offset[1] = 0;
183
- for (let i = 1; i < MAX_LENGTH; i++) offset[i + 1] = offset[i] + count[i];
184
- for (let i = 0; i < code_lengths_size; i++) if (code_lengths[i] !== 0) sorted[offset[code_lengths[i]]++] = i;
185
- let table_bits = root_bits;
186
- let table_size = 1 << table_bits;
187
- let total_size = table_size;
188
- if (offset[MAX_LENGTH] === 1) {
189
- for (let key = 0; key < total_size; ++key) root_table[table + key] = new HuffmanCode(0, sorted[0] & 65535);
190
- return total_size;
191
- }
192
- let key = 0;
193
- let symbol = 0;
194
- for (let len = 1, step = 2; len <= root_bits; ++len, step <<= 1) for (; count[len] > 0; --count[len]) {
195
- const code = new HuffmanCode(len & 255, sorted[symbol++] & 65535);
196
- replicateValue(root_table, table + key, step, table_size, code);
197
- key = getNextKey(key, len);
198
- }
199
- const mask = total_size - 1;
200
- let low = -1;
201
- for (let len = root_bits + 1, step = 2; len <= MAX_LENGTH; ++len, step <<= 1) for (; count[len] > 0; --count[len]) {
202
- if ((key & mask) !== low) {
203
- table += table_size;
204
- table_bits = nextTableBitSize(count, len, root_bits);
205
- table_size = 1 << table_bits;
206
- total_size += table_size;
207
- low = key & mask;
208
- root_table[start_table + low] = new HuffmanCode(table_bits + root_bits & 255, table - start_table - low & 65535);
209
- }
210
- const code = new HuffmanCode(len - root_bits & 255, sorted[symbol++] & 65535);
211
- replicateValue(root_table, table + (key >> root_bits), step, table_size, code);
212
- key = getNextKey(key, len);
213
- }
214
- return total_size;
215
- }
216
- function readHuffmanCode(alphabet_size, tables, table, br) {
217
- const code_lengths = new Uint8Array(alphabet_size);
218
- br.readMoreInput();
219
- const simple_code_or_skip = br.readBits(2);
220
- if (simple_code_or_skip === 1) {
221
- let max_bits_counter = alphabet_size - 1;
222
- let max_bits = 0;
223
- const symbols = /* @__PURE__ */ new Int32Array(4);
224
- const num_symbols = br.readBits(2) + 1;
225
- while (max_bits_counter) {
226
- max_bits_counter >>= 1;
227
- max_bits++;
228
- }
229
- for (let i = 0; i < num_symbols; i++) {
230
- symbols[i] = br.readBits(max_bits) % alphabet_size;
231
- code_lengths[symbols[i]] = 2;
232
- }
233
- code_lengths[symbols[0]] = 1;
234
- switch (num_symbols) {
235
- case 1: break;
236
- case 3:
237
- if (symbols[0] === symbols[1] || symbols[0] === symbols[2] || symbols[1] === symbols[2]) throw new Error("[ReadHuffmanCode] invalid symbols");
238
- break;
239
- case 2:
240
- if (symbols[0] === symbols[1]) throw new Error("[ReadHuffmanCode] invalid symbols");
241
- code_lengths[symbols[1]] = 1;
242
- break;
243
- case 4:
244
- if (symbols[0] === symbols[1] || symbols[0] === symbols[2] || symbols[0] === symbols[3] || symbols[1] === symbols[2] || symbols[1] === symbols[3] || symbols[2] === symbols[3]) throw new Error("[ReadHuffmanCode] invalid symbols");
245
- if (br.readBits(1)) {
246
- code_lengths[symbols[2]] = 3;
247
- code_lengths[symbols[3]] = 3;
248
- } else code_lengths[symbols[0]] = 2;
249
- break;
250
- }
251
- } else {
252
- const code_length_code_lengths = new Uint8Array(CODE_LENGTH_CODES);
253
- let space = 32;
254
- let num_codes = 0;
255
- const huff = [
256
- new HuffmanCode(2, 0),
257
- new HuffmanCode(2, 4),
258
- new HuffmanCode(2, 3),
259
- new HuffmanCode(3, 2),
260
- new HuffmanCode(2, 0),
261
- new HuffmanCode(2, 4),
262
- new HuffmanCode(2, 3),
263
- new HuffmanCode(4, 1),
264
- new HuffmanCode(2, 0),
265
- new HuffmanCode(2, 4),
266
- new HuffmanCode(2, 3),
267
- new HuffmanCode(3, 2),
268
- new HuffmanCode(2, 0),
269
- new HuffmanCode(2, 4),
270
- new HuffmanCode(2, 3),
271
- new HuffmanCode(4, 5)
272
- ];
273
- for (let i = simple_code_or_skip; i < CODE_LENGTH_CODES && space > 0; i++) {
274
- const code_len_idx = kCodeLengthCodeOrder[i];
275
- let p = 0;
276
- br.fillBitWindow();
277
- p += br.val_ >>> br.bit_pos_ & 15;
278
- br.bit_pos_ += huff[p].bits;
279
- const v = huff[p].value;
280
- code_length_code_lengths[code_len_idx] = v;
281
- if (v !== 0) {
282
- space -= 32 >> v;
283
- num_codes++;
284
- }
285
- }
286
- if (!(num_codes === 1 || space === 0)) throw new Error("[ReadHuffmanCode] invalid num_codes or space");
287
- readHuffmanCodeLengths(code_length_code_lengths, alphabet_size, code_lengths, br);
288
- }
289
- const table_size = buildHuffmanTable(tables, table, HUFFMAN_TABLE_BITS, code_lengths, alphabet_size);
290
- if (!table_size) throw new Error("brotli BuildHuffmanTable failed");
291
- return table_size;
292
- }
293
- function readHuffmanCodeLengths(code_length_code_lengths, num_symbols, code_lengths, br) {
294
- let symbol = 0;
295
- let prev_code_len = kDefaultCodeLength;
296
- let repeat = 0;
297
- let repeat_code_len = 0;
298
- let space = 32768;
299
- const table = [];
300
- for (let i = 0; i < 32; i++) table.push(new HuffmanCode(0, 0));
301
- buildHuffmanTable(table, 0, 5, code_length_code_lengths, CODE_LENGTH_CODES);
302
- while (symbol < num_symbols && space > 0) {
303
- let p = 0;
304
- br.readMoreInput();
305
- br.fillBitWindow();
306
- p += br.val_ >>> br.bit_pos_ & 31;
307
- br.bit_pos_ += table[p].bits;
308
- const code_len = table[p].value & 255;
309
- if (code_len < kCodeLengthRepeatCode) {
310
- repeat = 0;
311
- code_lengths[symbol++] = code_len;
312
- if (code_len !== 0) {
313
- prev_code_len = code_len;
314
- space -= 32768 >> code_len;
315
- }
316
- } else {
317
- const extra_bits = code_len - 14;
318
- let new_len = 0;
319
- if (code_len === kCodeLengthRepeatCode) new_len = prev_code_len;
320
- if (repeat_code_len !== new_len) {
321
- repeat = 0;
322
- repeat_code_len = new_len;
323
- }
324
- const old_repeat = repeat;
325
- if (repeat > 0) {
326
- repeat -= 2;
327
- repeat <<= extra_bits;
328
- }
329
- repeat += br.readBits(extra_bits) + 3;
330
- const repeat_delta = repeat - old_repeat;
331
- if (symbol + repeat_delta > num_symbols) throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");
332
- for (let x = 0; x < repeat_delta; x++) code_lengths[symbol + x] = repeat_code_len;
333
- symbol += repeat_delta;
334
- if (repeat_code_len !== 0) space -= repeat_delta << 15 - repeat_code_len;
335
- }
336
- }
337
- if (space !== 0) throw new Error("[ReadHuffmanCodeLengths] space = " + space);
338
- for (; symbol < num_symbols; symbol++) code_lengths[symbol] = 0;
339
- }
340
- function HuffmanTreeGroup(alphabet_size, num_htrees) {
341
- this.alphabet_size = alphabet_size;
342
- this.num_htrees = num_htrees;
343
- this.codes = new Array(num_htrees + num_htrees * kMaxHuffmanTableSize[alphabet_size + 31 >>> 5]);
344
- this.htrees = new Uint32Array(num_htrees);
345
- }
346
- HuffmanTreeGroup.prototype.decode = function(br) {
347
- let next = 0;
348
- for (let i = 0; i < this.num_htrees; i++) {
349
- this.htrees[i] = next;
350
- next += readHuffmanCode(this.alphabet_size, this.codes, next, br);
351
- }
352
- };
353
- function prefix([offset, nbits]) {
354
- return {
355
- offset,
356
- nbits
357
- };
358
- }
359
- [
360
- [1, 2],
361
- [5, 2],
362
- [9, 2],
363
- [13, 2],
364
- [17, 3],
365
- [25, 3],
366
- [33, 3],
367
- [41, 3],
368
- [49, 4],
369
- [65, 4],
370
- [81, 4],
371
- [97, 4],
372
- [113, 5],
373
- [145, 5],
374
- [177, 5],
375
- [209, 5],
376
- [241, 6],
377
- [305, 6],
378
- [369, 7],
379
- [497, 8],
380
- [753, 9],
381
- [1265, 10],
382
- [2289, 11],
383
- [4337, 12],
384
- [8433, 13],
385
- [16625, 24]
386
- ].map(prefix);
387
- [
388
- [0, 0],
389
- [1, 0],
390
- [2, 0],
391
- [3, 0],
392
- [4, 0],
393
- [5, 0],
394
- [6, 1],
395
- [8, 1],
396
- [10, 2],
397
- [14, 2],
398
- [18, 3],
399
- [26, 3],
400
- [34, 4],
401
- [50, 4],
402
- [66, 5],
403
- [98, 5],
404
- [130, 6],
405
- [194, 7],
406
- [322, 8],
407
- [578, 9],
408
- [1090, 10],
409
- [2114, 12],
410
- [6210, 14],
411
- [22594, 24]
412
- ].map(prefix);
413
- [
414
- [2, 0],
415
- [3, 0],
416
- [4, 0],
417
- [5, 0],
418
- [6, 0],
419
- [7, 0],
420
- [8, 0],
421
- [9, 0],
422
- [10, 1],
423
- [12, 1],
424
- [14, 2],
425
- [18, 2],
426
- [22, 3],
427
- [30, 3],
428
- [38, 4],
429
- [54, 4],
430
- [70, 5],
431
- [102, 5],
432
- [134, 6],
433
- [198, 7],
434
- [326, 8],
435
- [582, 9],
436
- [1094, 10],
437
- [2118, 24]
438
- ].map(prefix);
439
- const fixedLengthExtraBits = new Uint8Array([
440
- 0,
441
- 0,
442
- 0,
443
- 0,
444
- 0,
445
- 0,
446
- 0,
447
- 0,
448
- 1,
449
- 1,
450
- 1,
451
- 1,
452
- 2,
453
- 2,
454
- 2,
455
- 2,
456
- 3,
457
- 3,
458
- 3,
459
- 3,
460
- 4,
461
- 4,
462
- 4,
463
- 4,
464
- 5,
465
- 5,
466
- 5,
467
- 5,
468
- 0,
469
- 0,
470
- 0,
471
- 0
472
- ]);
473
- const fixedDistanceExtraBits = new Uint8Array([
474
- 0,
475
- 0,
476
- 0,
477
- 0,
478
- 1,
479
- 1,
480
- 2,
481
- 2,
482
- 3,
483
- 3,
484
- 4,
485
- 4,
486
- 5,
487
- 5,
488
- 6,
489
- 6,
490
- 7,
491
- 7,
492
- 8,
493
- 8,
494
- 9,
495
- 9,
496
- 10,
497
- 10,
498
- 11,
499
- 11,
500
- 12,
501
- 12,
502
- 13,
503
- 13,
504
- 0,
505
- 0
506
- ]);
507
- function freb(eb, start) {
508
- const base = /* @__PURE__ */ new Uint16Array(31);
509
- for (let i = 0; i < 31; i++) base[i] = start += 1 << eb[i - 1];
510
- const rev = new Int32Array(base[30]);
511
- for (let i = 1; i < 30; i++) for (let j = base[i]; j < base[i + 1]; ++j) rev[j] = j - base[i] << 5 | i;
512
- return {
513
- base,
514
- rev
515
- };
516
- }
517
- const { base: fixedLength, rev: revfl } = freb(fixedLengthExtraBits, 2);
518
- fixedLength[28] = 258;
519
- revfl[258] = 28;
520
- const { base: fixedDistance } = freb(fixedDistanceExtraBits, 0);
521
- const rev = /* @__PURE__ */ new Uint16Array(32768);
522
- for (let i = 0; i < 32768; i++) {
523
- let x = (i & 43690) >> 1 | (i & 21845) << 1;
524
- x = (x & 52428) >> 2 | (x & 13107) << 2;
525
- x = (x & 61680) >> 4 | (x & 3855) << 4;
526
- rev[i] = ((x & 65280) >> 8 | (x & 255) << 8) >> 1;
527
- }
528
- function huffMap(cd, maxBits, r) {
529
- const l = new Uint16Array(maxBits);
530
- for (let i = 0; i < cd.length; i++) if (cd[i]) ++l[cd[i] - 1];
531
- const le = new Uint16Array(maxBits);
532
- for (let i = 1; i < maxBits; i++) le[i] = le[i - 1] + l[i - 1] << 1;
533
- let co;
534
- if (r) {
535
- co = new Uint16Array(1 << maxBits);
536
- const rvb = 15 - maxBits;
537
- for (let i = 0; i < cd.length; i++) if (cd[i]) {
538
- const sv = i << 4 | cd[i];
539
- const freeBits = maxBits - cd[i];
540
- let startValue = le[cd[i] - 1]++ << freeBits;
541
- for (const endValue = startValue | (1 << freeBits) - 1; startValue <= endValue; startValue++) co[rev[startValue] >> rvb] = sv;
542
- }
543
- } else {
544
- co = new Uint16Array(cd.length);
545
- for (let i = 0; i < cd.length; i++) if (cd[i]) co[i] = rev[le[cd[i] - 1]++] >> 15 - cd[i];
546
- }
547
- return co;
548
- }
549
- const fixedLengthTree = /* @__PURE__ */ new Uint8Array(288);
550
- for (let i = 0; i < 144; i++) fixedLengthTree[i] = 8;
551
- for (let i = 144; i < 256; i++) fixedLengthTree[i] = 9;
552
- for (let i = 256; i < 280; i++) fixedLengthTree[i] = 7;
553
- for (let i = 280; i < 288; i++) fixedLengthTree[i] = 8;
554
- const fixedDistanceTree = /* @__PURE__ */ new Uint8Array(32);
555
- for (let i = 0; i < 32; i++) fixedDistanceTree[i] = 5;
556
- const fixedLengthMap = /*#__PURE__*/ huffMap(fixedLengthTree, 9, 1);
557
- const fixedDistanceMap = /*#__PURE__*/ huffMap(fixedDistanceTree, 5, 1);
558
- new Uint8Array([
559
- 0,
560
- 0,
561
- 0,
562
- 0,
563
- 0,
564
- 0,
565
- 0,
566
- 0,
567
- 0,
568
- 4,
569
- 4,
570
- 0,
571
- 0,
572
- 4,
573
- 0,
574
- 0,
575
- 0,
576
- 0,
577
- 0,
578
- 0,
579
- 0,
580
- 0,
581
- 0,
582
- 0,
583
- 0,
584
- 0,
585
- 0,
586
- 0,
587
- 0,
588
- 0,
589
- 0,
590
- 0,
591
- 8,
592
- 12,
593
- 16,
594
- 12,
595
- 12,
596
- 20,
597
- 12,
598
- 16,
599
- 24,
600
- 28,
601
- 12,
602
- 12,
603
- 32,
604
- 12,
605
- 36,
606
- 12,
607
- 44,
608
- 44,
609
- 44,
610
- 44,
611
- 44,
612
- 44,
613
- 44,
614
- 44,
615
- 44,
616
- 44,
617
- 32,
618
- 32,
619
- 24,
620
- 40,
621
- 28,
622
- 12,
623
- 12,
624
- 48,
625
- 52,
626
- 52,
627
- 52,
628
- 48,
629
- 52,
630
- 52,
631
- 52,
632
- 48,
633
- 52,
634
- 52,
635
- 52,
636
- 52,
637
- 52,
638
- 48,
639
- 52,
640
- 52,
641
- 52,
642
- 52,
643
- 52,
644
- 48,
645
- 52,
646
- 52,
647
- 52,
648
- 52,
649
- 52,
650
- 24,
651
- 12,
652
- 28,
653
- 12,
654
- 12,
655
- 12,
656
- 56,
657
- 60,
658
- 60,
659
- 60,
660
- 56,
661
- 60,
662
- 60,
663
- 60,
664
- 56,
665
- 60,
666
- 60,
667
- 60,
668
- 60,
669
- 60,
670
- 56,
671
- 60,
672
- 60,
673
- 60,
674
- 60,
675
- 60,
676
- 56,
677
- 60,
678
- 60,
679
- 60,
680
- 60,
681
- 60,
682
- 24,
683
- 12,
684
- 28,
685
- 12,
686
- 0,
687
- 0,
688
- 1,
689
- 0,
690
- 1,
691
- 0,
692
- 1,
693
- 0,
694
- 1,
695
- 0,
696
- 1,
697
- 0,
698
- 1,
699
- 0,
700
- 1,
701
- 0,
702
- 1,
703
- 0,
704
- 1,
705
- 0,
706
- 1,
707
- 0,
708
- 1,
709
- 0,
710
- 1,
711
- 0,
712
- 1,
713
- 0,
714
- 1,
715
- 0,
716
- 1,
717
- 0,
718
- 1,
719
- 0,
720
- 1,
721
- 0,
722
- 1,
723
- 0,
724
- 1,
725
- 0,
726
- 1,
727
- 0,
728
- 1,
729
- 0,
730
- 1,
731
- 0,
732
- 1,
733
- 0,
734
- 1,
735
- 0,
736
- 1,
737
- 0,
738
- 1,
739
- 0,
740
- 1,
741
- 0,
742
- 1,
743
- 0,
744
- 1,
745
- 0,
746
- 1,
747
- 0,
748
- 1,
749
- 0,
750
- 1,
751
- 2,
752
- 3,
753
- 2,
754
- 3,
755
- 2,
756
- 3,
757
- 2,
758
- 3,
759
- 2,
760
- 3,
761
- 2,
762
- 3,
763
- 2,
764
- 3,
765
- 2,
766
- 3,
767
- 2,
768
- 3,
769
- 2,
770
- 3,
771
- 2,
772
- 3,
773
- 2,
774
- 3,
775
- 2,
776
- 3,
777
- 2,
778
- 3,
779
- 2,
780
- 3,
781
- 2,
782
- 3,
783
- 2,
784
- 3,
785
- 2,
786
- 3,
787
- 2,
788
- 3,
789
- 2,
790
- 3,
791
- 2,
792
- 3,
793
- 2,
794
- 3,
795
- 2,
796
- 3,
797
- 2,
798
- 3,
799
- 2,
800
- 3,
801
- 2,
802
- 3,
803
- 2,
804
- 3,
805
- 2,
806
- 3,
807
- 2,
808
- 3,
809
- 2,
810
- 3,
811
- 2,
812
- 3,
813
- 2,
814
- 3,
815
- 0,
816
- 0,
817
- 0,
818
- 0,
819
- 0,
820
- 0,
821
- 0,
822
- 0,
823
- 0,
824
- 0,
825
- 0,
826
- 0,
827
- 0,
828
- 0,
829
- 0,
830
- 0,
831
- 0,
832
- 0,
833
- 0,
834
- 0,
835
- 0,
836
- 0,
837
- 0,
838
- 0,
839
- 0,
840
- 0,
841
- 0,
842
- 0,
843
- 0,
844
- 0,
845
- 0,
846
- 0,
847
- 0,
848
- 1,
849
- 1,
850
- 1,
851
- 1,
852
- 1,
853
- 1,
854
- 1,
855
- 1,
856
- 1,
857
- 1,
858
- 1,
859
- 1,
860
- 1,
861
- 1,
862
- 1,
863
- 2,
864
- 2,
865
- 2,
866
- 2,
867
- 2,
868
- 2,
869
- 2,
870
- 2,
871
- 2,
872
- 2,
873
- 1,
874
- 1,
875
- 1,
876
- 1,
877
- 1,
878
- 1,
879
- 1,
880
- 2,
881
- 2,
882
- 2,
883
- 2,
884
- 2,
885
- 2,
886
- 2,
887
- 2,
888
- 2,
889
- 2,
890
- 2,
891
- 2,
892
- 2,
893
- 2,
894
- 2,
895
- 2,
896
- 2,
897
- 2,
898
- 2,
899
- 2,
900
- 2,
901
- 2,
902
- 2,
903
- 2,
904
- 2,
905
- 2,
906
- 1,
907
- 1,
908
- 1,
909
- 1,
910
- 1,
911
- 1,
912
- 3,
913
- 3,
914
- 3,
915
- 3,
916
- 3,
917
- 3,
918
- 3,
919
- 3,
920
- 3,
921
- 3,
922
- 3,
923
- 3,
924
- 3,
925
- 3,
926
- 3,
927
- 3,
928
- 3,
929
- 3,
930
- 3,
931
- 3,
932
- 3,
933
- 3,
934
- 3,
935
- 3,
936
- 3,
937
- 3,
938
- 1,
939
- 1,
940
- 1,
941
- 1,
942
- 0,
943
- 0,
944
- 0,
945
- 0,
946
- 0,
947
- 0,
948
- 0,
949
- 0,
950
- 0,
951
- 0,
952
- 0,
953
- 0,
954
- 0,
955
- 0,
956
- 0,
957
- 0,
958
- 0,
959
- 0,
960
- 0,
961
- 0,
962
- 0,
963
- 0,
964
- 0,
965
- 0,
966
- 0,
967
- 0,
968
- 0,
969
- 0,
970
- 0,
971
- 0,
972
- 0,
973
- 0,
974
- 0,
975
- 0,
976
- 0,
977
- 0,
978
- 0,
979
- 0,
980
- 0,
981
- 0,
982
- 0,
983
- 0,
984
- 0,
985
- 0,
986
- 0,
987
- 0,
988
- 0,
989
- 0,
990
- 0,
991
- 0,
992
- 0,
993
- 0,
994
- 0,
995
- 0,
996
- 0,
997
- 0,
998
- 0,
999
- 0,
1000
- 0,
1001
- 0,
1002
- 0,
1003
- 0,
1004
- 0,
1005
- 0,
1006
- 0,
1007
- 0,
1008
- 0,
1009
- 0,
1010
- 0,
1011
- 0,
1012
- 0,
1013
- 0,
1014
- 0,
1015
- 0,
1016
- 0,
1017
- 0,
1018
- 0,
1019
- 0,
1020
- 0,
1021
- 0,
1022
- 0,
1023
- 0,
1024
- 0,
1025
- 0,
1026
- 0,
1027
- 0,
1028
- 0,
1029
- 0,
1030
- 0,
1031
- 0,
1032
- 0,
1033
- 0,
1034
- 0,
1035
- 0,
1036
- 0,
1037
- 0,
1038
- 0,
1039
- 2,
1040
- 2,
1041
- 2,
1042
- 2,
1043
- 2,
1044
- 2,
1045
- 2,
1046
- 2,
1047
- 2,
1048
- 2,
1049
- 2,
1050
- 2,
1051
- 2,
1052
- 2,
1053
- 2,
1054
- 2,
1055
- 2,
1056
- 2,
1057
- 2,
1058
- 2,
1059
- 2,
1060
- 2,
1061
- 2,
1062
- 2,
1063
- 2,
1064
- 2,
1065
- 2,
1066
- 2,
1067
- 2,
1068
- 2,
1069
- 2,
1070
- 2,
1071
- 0,
1072
- 1,
1073
- 1,
1074
- 1,
1075
- 1,
1076
- 1,
1077
- 1,
1078
- 1,
1079
- 1,
1080
- 1,
1081
- 1,
1082
- 1,
1083
- 1,
1084
- 1,
1085
- 1,
1086
- 1,
1087
- 2,
1088
- 2,
1089
- 2,
1090
- 2,
1091
- 2,
1092
- 2,
1093
- 2,
1094
- 2,
1095
- 2,
1096
- 2,
1097
- 2,
1098
- 2,
1099
- 2,
1100
- 2,
1101
- 2,
1102
- 2,
1103
- 2,
1104
- 2,
1105
- 2,
1106
- 2,
1107
- 2,
1108
- 2,
1109
- 2,
1110
- 2,
1111
- 2,
1112
- 2,
1113
- 2,
1114
- 2,
1115
- 2,
1116
- 2,
1117
- 2,
1118
- 2,
1119
- 2,
1120
- 2,
1121
- 2,
1122
- 2,
1123
- 2,
1124
- 2,
1125
- 2,
1126
- 2,
1127
- 2,
1128
- 2,
1129
- 2,
1130
- 2,
1131
- 2,
1132
- 2,
1133
- 2,
1134
- 2,
1135
- 3,
1136
- 3,
1137
- 3,
1138
- 3,
1139
- 3,
1140
- 3,
1141
- 3,
1142
- 3,
1143
- 3,
1144
- 3,
1145
- 3,
1146
- 3,
1147
- 3,
1148
- 3,
1149
- 3,
1150
- 3,
1151
- 3,
1152
- 3,
1153
- 3,
1154
- 3,
1155
- 3,
1156
- 3,
1157
- 3,
1158
- 3,
1159
- 3,
1160
- 3,
1161
- 3,
1162
- 3,
1163
- 3,
1164
- 3,
1165
- 3,
1166
- 3,
1167
- 3,
1168
- 3,
1169
- 3,
1170
- 3,
1171
- 3,
1172
- 3,
1173
- 3,
1174
- 3,
1175
- 3,
1176
- 3,
1177
- 3,
1178
- 3,
1179
- 3,
1180
- 3,
1181
- 3,
1182
- 3,
1183
- 3,
1184
- 3,
1185
- 3,
1186
- 3,
1187
- 3,
1188
- 3,
1189
- 3,
1190
- 3,
1191
- 3,
1192
- 3,
1193
- 3,
1194
- 3,
1195
- 3,
1196
- 3,
1197
- 3,
1198
- 3,
1199
- 4,
1200
- 4,
1201
- 4,
1202
- 4,
1203
- 4,
1204
- 4,
1205
- 4,
1206
- 4,
1207
- 4,
1208
- 4,
1209
- 4,
1210
- 4,
1211
- 4,
1212
- 4,
1213
- 4,
1214
- 4,
1215
- 4,
1216
- 4,
1217
- 4,
1218
- 4,
1219
- 4,
1220
- 4,
1221
- 4,
1222
- 4,
1223
- 4,
1224
- 4,
1225
- 4,
1226
- 4,
1227
- 4,
1228
- 4,
1229
- 4,
1230
- 4,
1231
- 4,
1232
- 4,
1233
- 4,
1234
- 4,
1235
- 4,
1236
- 4,
1237
- 4,
1238
- 4,
1239
- 4,
1240
- 4,
1241
- 4,
1242
- 4,
1243
- 4,
1244
- 4,
1245
- 4,
1246
- 4,
1247
- 4,
1248
- 4,
1249
- 4,
1250
- 4,
1251
- 4,
1252
- 4,
1253
- 4,
1254
- 4,
1255
- 4,
1256
- 4,
1257
- 4,
1258
- 4,
1259
- 4,
1260
- 4,
1261
- 4,
1262
- 4,
1263
- 5,
1264
- 5,
1265
- 5,
1266
- 5,
1267
- 5,
1268
- 5,
1269
- 5,
1270
- 5,
1271
- 5,
1272
- 5,
1273
- 5,
1274
- 5,
1275
- 5,
1276
- 5,
1277
- 5,
1278
- 5,
1279
- 5,
1280
- 5,
1281
- 5,
1282
- 5,
1283
- 5,
1284
- 5,
1285
- 5,
1286
- 5,
1287
- 5,
1288
- 5,
1289
- 5,
1290
- 5,
1291
- 5,
1292
- 5,
1293
- 5,
1294
- 5,
1295
- 5,
1296
- 5,
1297
- 5,
1298
- 5,
1299
- 5,
1300
- 5,
1301
- 5,
1302
- 5,
1303
- 5,
1304
- 5,
1305
- 5,
1306
- 5,
1307
- 5,
1308
- 5,
1309
- 5,
1310
- 5,
1311
- 6,
1312
- 6,
1313
- 6,
1314
- 6,
1315
- 6,
1316
- 6,
1317
- 6,
1318
- 6,
1319
- 6,
1320
- 6,
1321
- 6,
1322
- 6,
1323
- 6,
1324
- 6,
1325
- 6,
1326
- 7,
1327
- 0,
1328
- 8,
1329
- 8,
1330
- 8,
1331
- 8,
1332
- 8,
1333
- 8,
1334
- 8,
1335
- 8,
1336
- 8,
1337
- 8,
1338
- 8,
1339
- 8,
1340
- 8,
1341
- 8,
1342
- 8,
1343
- 16,
1344
- 16,
1345
- 16,
1346
- 16,
1347
- 16,
1348
- 16,
1349
- 16,
1350
- 16,
1351
- 16,
1352
- 16,
1353
- 16,
1354
- 16,
1355
- 16,
1356
- 16,
1357
- 16,
1358
- 16,
1359
- 16,
1360
- 16,
1361
- 16,
1362
- 16,
1363
- 16,
1364
- 16,
1365
- 16,
1366
- 16,
1367
- 16,
1368
- 16,
1369
- 16,
1370
- 16,
1371
- 16,
1372
- 16,
1373
- 16,
1374
- 16,
1375
- 16,
1376
- 16,
1377
- 16,
1378
- 16,
1379
- 16,
1380
- 16,
1381
- 16,
1382
- 16,
1383
- 16,
1384
- 16,
1385
- 16,
1386
- 16,
1387
- 16,
1388
- 16,
1389
- 16,
1390
- 16,
1391
- 24,
1392
- 24,
1393
- 24,
1394
- 24,
1395
- 24,
1396
- 24,
1397
- 24,
1398
- 24,
1399
- 24,
1400
- 24,
1401
- 24,
1402
- 24,
1403
- 24,
1404
- 24,
1405
- 24,
1406
- 24,
1407
- 24,
1408
- 24,
1409
- 24,
1410
- 24,
1411
- 24,
1412
- 24,
1413
- 24,
1414
- 24,
1415
- 24,
1416
- 24,
1417
- 24,
1418
- 24,
1419
- 24,
1420
- 24,
1421
- 24,
1422
- 24,
1423
- 24,
1424
- 24,
1425
- 24,
1426
- 24,
1427
- 24,
1428
- 24,
1429
- 24,
1430
- 24,
1431
- 24,
1432
- 24,
1433
- 24,
1434
- 24,
1435
- 24,
1436
- 24,
1437
- 24,
1438
- 24,
1439
- 24,
1440
- 24,
1441
- 24,
1442
- 24,
1443
- 24,
1444
- 24,
1445
- 24,
1446
- 24,
1447
- 24,
1448
- 24,
1449
- 24,
1450
- 24,
1451
- 24,
1452
- 24,
1453
- 24,
1454
- 24,
1455
- 32,
1456
- 32,
1457
- 32,
1458
- 32,
1459
- 32,
1460
- 32,
1461
- 32,
1462
- 32,
1463
- 32,
1464
- 32,
1465
- 32,
1466
- 32,
1467
- 32,
1468
- 32,
1469
- 32,
1470
- 32,
1471
- 32,
1472
- 32,
1473
- 32,
1474
- 32,
1475
- 32,
1476
- 32,
1477
- 32,
1478
- 32,
1479
- 32,
1480
- 32,
1481
- 32,
1482
- 32,
1483
- 32,
1484
- 32,
1485
- 32,
1486
- 32,
1487
- 32,
1488
- 32,
1489
- 32,
1490
- 32,
1491
- 32,
1492
- 32,
1493
- 32,
1494
- 32,
1495
- 32,
1496
- 32,
1497
- 32,
1498
- 32,
1499
- 32,
1500
- 32,
1501
- 32,
1502
- 32,
1503
- 32,
1504
- 32,
1505
- 32,
1506
- 32,
1507
- 32,
1508
- 32,
1509
- 32,
1510
- 32,
1511
- 32,
1512
- 32,
1513
- 32,
1514
- 32,
1515
- 32,
1516
- 32,
1517
- 32,
1518
- 32,
1519
- 40,
1520
- 40,
1521
- 40,
1522
- 40,
1523
- 40,
1524
- 40,
1525
- 40,
1526
- 40,
1527
- 40,
1528
- 40,
1529
- 40,
1530
- 40,
1531
- 40,
1532
- 40,
1533
- 40,
1534
- 40,
1535
- 40,
1536
- 40,
1537
- 40,
1538
- 40,
1539
- 40,
1540
- 40,
1541
- 40,
1542
- 40,
1543
- 40,
1544
- 40,
1545
- 40,
1546
- 40,
1547
- 40,
1548
- 40,
1549
- 40,
1550
- 40,
1551
- 40,
1552
- 40,
1553
- 40,
1554
- 40,
1555
- 40,
1556
- 40,
1557
- 40,
1558
- 40,
1559
- 40,
1560
- 40,
1561
- 40,
1562
- 40,
1563
- 40,
1564
- 40,
1565
- 40,
1566
- 40,
1567
- 48,
1568
- 48,
1569
- 48,
1570
- 48,
1571
- 48,
1572
- 48,
1573
- 48,
1574
- 48,
1575
- 48,
1576
- 48,
1577
- 48,
1578
- 48,
1579
- 48,
1580
- 48,
1581
- 48,
1582
- 56,
1583
- 0,
1584
- 1,
1585
- 2,
1586
- 3,
1587
- 4,
1588
- 5,
1589
- 6,
1590
- 7,
1591
- 8,
1592
- 9,
1593
- 10,
1594
- 11,
1595
- 12,
1596
- 13,
1597
- 14,
1598
- 15,
1599
- 16,
1600
- 17,
1601
- 18,
1602
- 19,
1603
- 20,
1604
- 21,
1605
- 22,
1606
- 23,
1607
- 24,
1608
- 25,
1609
- 26,
1610
- 27,
1611
- 28,
1612
- 29,
1613
- 30,
1614
- 31,
1615
- 32,
1616
- 33,
1617
- 34,
1618
- 35,
1619
- 36,
1620
- 37,
1621
- 38,
1622
- 39,
1623
- 40,
1624
- 41,
1625
- 42,
1626
- 43,
1627
- 44,
1628
- 45,
1629
- 46,
1630
- 47,
1631
- 48,
1632
- 49,
1633
- 50,
1634
- 51,
1635
- 52,
1636
- 53,
1637
- 54,
1638
- 55,
1639
- 56,
1640
- 57,
1641
- 58,
1642
- 59,
1643
- 60,
1644
- 61,
1645
- 62,
1646
- 63,
1647
- 0,
1648
- 1,
1649
- 2,
1650
- 3,
1651
- 4,
1652
- 5,
1653
- 6,
1654
- 7,
1655
- 8,
1656
- 9,
1657
- 10,
1658
- 11,
1659
- 12,
1660
- 13,
1661
- 14,
1662
- 15,
1663
- 16,
1664
- 17,
1665
- 18,
1666
- 19,
1667
- 20,
1668
- 21,
1669
- 22,
1670
- 23,
1671
- 24,
1672
- 25,
1673
- 26,
1674
- 27,
1675
- 28,
1676
- 29,
1677
- 30,
1678
- 31,
1679
- 32,
1680
- 33,
1681
- 34,
1682
- 35,
1683
- 36,
1684
- 37,
1685
- 38,
1686
- 39,
1687
- 40,
1688
- 41,
1689
- 42,
1690
- 43,
1691
- 44,
1692
- 45,
1693
- 46,
1694
- 47,
1695
- 48,
1696
- 49,
1697
- 50,
1698
- 51,
1699
- 52,
1700
- 53,
1701
- 54,
1702
- 55,
1703
- 56,
1704
- 57,
1705
- 58,
1706
- 59,
1707
- 60,
1708
- 61,
1709
- 62,
1710
- 63,
1711
- 0,
1712
- 1,
1713
- 2,
1714
- 3,
1715
- 4,
1716
- 5,
1717
- 6,
1718
- 7,
1719
- 8,
1720
- 9,
1721
- 10,
1722
- 11,
1723
- 12,
1724
- 13,
1725
- 14,
1726
- 15,
1727
- 16,
1728
- 17,
1729
- 18,
1730
- 19,
1731
- 20,
1732
- 21,
1733
- 22,
1734
- 23,
1735
- 24,
1736
- 25,
1737
- 26,
1738
- 27,
1739
- 28,
1740
- 29,
1741
- 30,
1742
- 31,
1743
- 32,
1744
- 33,
1745
- 34,
1746
- 35,
1747
- 36,
1748
- 37,
1749
- 38,
1750
- 39,
1751
- 40,
1752
- 41,
1753
- 42,
1754
- 43,
1755
- 44,
1756
- 45,
1757
- 46,
1758
- 47,
1759
- 48,
1760
- 49,
1761
- 50,
1762
- 51,
1763
- 52,
1764
- 53,
1765
- 54,
1766
- 55,
1767
- 56,
1768
- 57,
1769
- 58,
1770
- 59,
1771
- 60,
1772
- 61,
1773
- 62,
1774
- 63,
1775
- 0,
1776
- 1,
1777
- 2,
1778
- 3,
1779
- 4,
1780
- 5,
1781
- 6,
1782
- 7,
1783
- 8,
1784
- 9,
1785
- 10,
1786
- 11,
1787
- 12,
1788
- 13,
1789
- 14,
1790
- 15,
1791
- 16,
1792
- 17,
1793
- 18,
1794
- 19,
1795
- 20,
1796
- 21,
1797
- 22,
1798
- 23,
1799
- 24,
1800
- 25,
1801
- 26,
1802
- 27,
1803
- 28,
1804
- 29,
1805
- 30,
1806
- 31,
1807
- 32,
1808
- 33,
1809
- 34,
1810
- 35,
1811
- 36,
1812
- 37,
1813
- 38,
1814
- 39,
1815
- 40,
1816
- 41,
1817
- 42,
1818
- 43,
1819
- 44,
1820
- 45,
1821
- 46,
1822
- 47,
1823
- 48,
1824
- 49,
1825
- 50,
1826
- 51,
1827
- 52,
1828
- 53,
1829
- 54,
1830
- 55,
1831
- 56,
1832
- 57,
1833
- 58,
1834
- 59,
1835
- 60,
1836
- 61,
1837
- 62,
1838
- 63,
1839
- 0,
1840
- 0,
1841
- 0,
1842
- 0,
1843
- 1,
1844
- 1,
1845
- 1,
1846
- 1,
1847
- 2,
1848
- 2,
1849
- 2,
1850
- 2,
1851
- 3,
1852
- 3,
1853
- 3,
1854
- 3,
1855
- 4,
1856
- 4,
1857
- 4,
1858
- 4,
1859
- 5,
1860
- 5,
1861
- 5,
1862
- 5,
1863
- 6,
1864
- 6,
1865
- 6,
1866
- 6,
1867
- 7,
1868
- 7,
1869
- 7,
1870
- 7,
1871
- 8,
1872
- 8,
1873
- 8,
1874
- 8,
1875
- 9,
1876
- 9,
1877
- 9,
1878
- 9,
1879
- 10,
1880
- 10,
1881
- 10,
1882
- 10,
1883
- 11,
1884
- 11,
1885
- 11,
1886
- 11,
1887
- 12,
1888
- 12,
1889
- 12,
1890
- 12,
1891
- 13,
1892
- 13,
1893
- 13,
1894
- 13,
1895
- 14,
1896
- 14,
1897
- 14,
1898
- 14,
1899
- 15,
1900
- 15,
1901
- 15,
1902
- 15,
1903
- 16,
1904
- 16,
1905
- 16,
1906
- 16,
1907
- 17,
1908
- 17,
1909
- 17,
1910
- 17,
1911
- 18,
1912
- 18,
1913
- 18,
1914
- 18,
1915
- 19,
1916
- 19,
1917
- 19,
1918
- 19,
1919
- 20,
1920
- 20,
1921
- 20,
1922
- 20,
1923
- 21,
1924
- 21,
1925
- 21,
1926
- 21,
1927
- 22,
1928
- 22,
1929
- 22,
1930
- 22,
1931
- 23,
1932
- 23,
1933
- 23,
1934
- 23,
1935
- 24,
1936
- 24,
1937
- 24,
1938
- 24,
1939
- 25,
1940
- 25,
1941
- 25,
1942
- 25,
1943
- 26,
1944
- 26,
1945
- 26,
1946
- 26,
1947
- 27,
1948
- 27,
1949
- 27,
1950
- 27,
1951
- 28,
1952
- 28,
1953
- 28,
1954
- 28,
1955
- 29,
1956
- 29,
1957
- 29,
1958
- 29,
1959
- 30,
1960
- 30,
1961
- 30,
1962
- 30,
1963
- 31,
1964
- 31,
1965
- 31,
1966
- 31,
1967
- 32,
1968
- 32,
1969
- 32,
1970
- 32,
1971
- 33,
1972
- 33,
1973
- 33,
1974
- 33,
1975
- 34,
1976
- 34,
1977
- 34,
1978
- 34,
1979
- 35,
1980
- 35,
1981
- 35,
1982
- 35,
1983
- 36,
1984
- 36,
1985
- 36,
1986
- 36,
1987
- 37,
1988
- 37,
1989
- 37,
1990
- 37,
1991
- 38,
1992
- 38,
1993
- 38,
1994
- 38,
1995
- 39,
1996
- 39,
1997
- 39,
1998
- 39,
1999
- 40,
2000
- 40,
2001
- 40,
2002
- 40,
2003
- 41,
2004
- 41,
2005
- 41,
2006
- 41,
2007
- 42,
2008
- 42,
2009
- 42,
2010
- 42,
2011
- 43,
2012
- 43,
2013
- 43,
2014
- 43,
2015
- 44,
2016
- 44,
2017
- 44,
2018
- 44,
2019
- 45,
2020
- 45,
2021
- 45,
2022
- 45,
2023
- 46,
2024
- 46,
2025
- 46,
2026
- 46,
2027
- 47,
2028
- 47,
2029
- 47,
2030
- 47,
2031
- 48,
2032
- 48,
2033
- 48,
2034
- 48,
2035
- 49,
2036
- 49,
2037
- 49,
2038
- 49,
2039
- 50,
2040
- 50,
2041
- 50,
2042
- 50,
2043
- 51,
2044
- 51,
2045
- 51,
2046
- 51,
2047
- 52,
2048
- 52,
2049
- 52,
2050
- 52,
2051
- 53,
2052
- 53,
2053
- 53,
2054
- 53,
2055
- 54,
2056
- 54,
2057
- 54,
2058
- 54,
2059
- 55,
2060
- 55,
2061
- 55,
2062
- 55,
2063
- 56,
2064
- 56,
2065
- 56,
2066
- 56,
2067
- 57,
2068
- 57,
2069
- 57,
2070
- 57,
2071
- 58,
2072
- 58,
2073
- 58,
2074
- 58,
2075
- 59,
2076
- 59,
2077
- 59,
2078
- 59,
2079
- 60,
2080
- 60,
2081
- 60,
2082
- 60,
2083
- 61,
2084
- 61,
2085
- 61,
2086
- 61,
2087
- 62,
2088
- 62,
2089
- 62,
2090
- 62,
2091
- 63,
2092
- 63,
2093
- 63,
2094
- 63,
2095
- 0,
2096
- 0,
2097
- 0,
2098
- 0,
2099
- 0,
2100
- 0,
2101
- 0,
2102
- 0,
2103
- 0,
2104
- 0,
2105
- 0,
2106
- 0,
2107
- 0,
2108
- 0,
2109
- 0,
2110
- 0,
2111
- 0,
2112
- 0,
2113
- 0,
2114
- 0,
2115
- 0,
2116
- 0,
2117
- 0,
2118
- 0,
2119
- 0,
2120
- 0,
2121
- 0,
2122
- 0,
2123
- 0,
2124
- 0,
2125
- 0,
2126
- 0,
2127
- 0,
2128
- 0,
2129
- 0,
2130
- 0,
2131
- 0,
2132
- 0,
2133
- 0,
2134
- 0,
2135
- 0,
2136
- 0,
2137
- 0,
2138
- 0,
2139
- 0,
2140
- 0,
2141
- 0,
2142
- 0,
2143
- 0,
2144
- 0,
2145
- 0,
2146
- 0,
2147
- 0,
2148
- 0,
2149
- 0,
2150
- 0,
2151
- 0,
2152
- 0,
2153
- 0,
2154
- 0,
2155
- 0,
2156
- 0,
2157
- 0,
2158
- 0,
2159
- 0,
2160
- 0,
2161
- 0,
2162
- 0,
2163
- 0,
2164
- 0,
2165
- 0,
2166
- 0,
2167
- 0,
2168
- 0,
2169
- 0,
2170
- 0,
2171
- 0,
2172
- 0,
2173
- 0,
2174
- 0,
2175
- 0,
2176
- 0,
2177
- 0,
2178
- 0,
2179
- 0,
2180
- 0,
2181
- 0,
2182
- 0,
2183
- 0,
2184
- 0,
2185
- 0,
2186
- 0,
2187
- 0,
2188
- 0,
2189
- 0,
2190
- 0,
2191
- 0,
2192
- 0,
2193
- 0,
2194
- 0,
2195
- 0,
2196
- 0,
2197
- 0,
2198
- 0,
2199
- 0,
2200
- 0,
2201
- 0,
2202
- 0,
2203
- 0,
2204
- 0,
2205
- 0,
2206
- 0,
2207
- 0,
2208
- 0,
2209
- 0,
2210
- 0,
2211
- 0,
2212
- 0,
2213
- 0,
2214
- 0,
2215
- 0,
2216
- 0,
2217
- 0,
2218
- 0,
2219
- 0,
2220
- 0,
2221
- 0,
2222
- 0,
2223
- 0,
2224
- 0,
2225
- 0,
2226
- 0,
2227
- 0,
2228
- 0,
2229
- 0,
2230
- 0,
2231
- 0,
2232
- 0,
2233
- 0,
2234
- 0,
2235
- 0,
2236
- 0,
2237
- 0,
2238
- 0,
2239
- 0,
2240
- 0,
2241
- 0,
2242
- 0,
2243
- 0,
2244
- 0,
2245
- 0,
2246
- 0,
2247
- 0,
2248
- 0,
2249
- 0,
2250
- 0,
2251
- 0,
2252
- 0,
2253
- 0,
2254
- 0,
2255
- 0,
2256
- 0,
2257
- 0,
2258
- 0,
2259
- 0,
2260
- 0,
2261
- 0,
2262
- 0,
2263
- 0,
2264
- 0,
2265
- 0,
2266
- 0,
2267
- 0,
2268
- 0,
2269
- 0,
2270
- 0,
2271
- 0,
2272
- 0,
2273
- 0,
2274
- 0,
2275
- 0,
2276
- 0,
2277
- 0,
2278
- 0,
2279
- 0,
2280
- 0,
2281
- 0,
2282
- 0,
2283
- 0,
2284
- 0,
2285
- 0,
2286
- 0,
2287
- 0,
2288
- 0,
2289
- 0,
2290
- 0,
2291
- 0,
2292
- 0,
2293
- 0,
2294
- 0,
2295
- 0,
2296
- 0,
2297
- 0,
2298
- 0,
2299
- 0,
2300
- 0,
2301
- 0,
2302
- 0,
2303
- 0,
2304
- 0,
2305
- 0,
2306
- 0,
2307
- 0,
2308
- 0,
2309
- 0,
2310
- 0,
2311
- 0,
2312
- 0,
2313
- 0,
2314
- 0,
2315
- 0,
2316
- 0,
2317
- 0,
2318
- 0,
2319
- 0,
2320
- 0,
2321
- 0,
2322
- 0,
2323
- 0,
2324
- 0,
2325
- 0,
2326
- 0,
2327
- 0,
2328
- 0,
2329
- 0,
2330
- 0,
2331
- 0,
2332
- 0,
2333
- 0,
2334
- 0,
2335
- 0,
2336
- 0,
2337
- 0,
2338
- 0,
2339
- 0,
2340
- 0,
2341
- 0,
2342
- 0,
2343
- 0,
2344
- 0,
2345
- 0,
2346
- 0,
2347
- 0,
2348
- 0,
2349
- 0,
2350
- 0
2351
- ]);
2352
- new Uint16Array([
2353
- 1024,
2354
- 1536,
2355
- 1280,
2356
- 1536,
2357
- 0,
2358
- 256,
2359
- 768,
2360
- 512
2361
- ]);
2362
- function BrotliInput(buffer) {
2363
- this.buffer = buffer;
2364
- this.pos = 0;
2365
- }
2366
- BrotliInput.prototype.read = function(buf, i, count) {
2367
- if (this.pos + count > this.buffer.length) count = this.buffer.length - this.pos;
2368
- for (let p = 0; p < count; p++) buf[i + p] = this.buffer[this.pos + p];
2369
- this.pos += count;
2370
- return count;
2371
- };
2372
- function BrotliOutput(buf) {
2373
- this.buffer = buf;
2374
- this.pos = 0;
2375
- }
2376
- BrotliOutput.prototype.write = function(buf, count) {
2377
- if (this.pos + count > this.buffer.length) throw new Error("brotli output buffer is not large enough");
2378
- this.buffer.set(buf.subarray(0, count), this.pos);
2379
- this.pos += count;
2380
- return count;
2381
- };
2382
- const codeLengthIndexMap = new Uint8Array([
2383
- 16,
2384
- 17,
2385
- 18,
2386
- 0,
2387
- 8,
2388
- 7,
2389
- 9,
2390
- 6,
2391
- 10,
2392
- 5,
2393
- 11,
2394
- 4,
2395
- 12,
2396
- 3,
2397
- 13,
2398
- 2,
2399
- 14,
2400
- 1,
2401
- 15
2402
- ]);
2403
- function bits(input, pos, mask) {
2404
- const o = pos / 8 | 0;
2405
- return (input[o] | input[o + 1] << 8) >> (pos & 7) & mask;
2406
- }
2407
- function bits16(d, p) {
2408
- const o = p / 8 | 0;
2409
- return (d[o] | d[o + 1] << 8 | d[o + 2] << 16) >> (p & 7);
2410
- }
2411
- function shft(p) {
2412
- return (p + 7) / 8 | 0;
2413
- }
2414
- function gzipStart(input, i) {
2415
- if (input[i++] !== 31 || input[i++] !== 139 || input[i++] !== 8) return 0;
2416
- const flag = input[i++];
2417
- i += 6;
2418
- if (flag & 4) i += (input[i + 10] | input[i + 11] << 8) + 2;
2419
- for (let zs = (flag >> 3 & 1) + (flag >> 4 & 1); zs > 0; zs -= Number(!input[i++]));
2420
- return i + (flag & 2);
2421
- }
2422
- function gunzip(input, output, inputIndex = 0, outputIndex = 0) {
2423
- let out = output ?? /* @__PURE__ */ new Uint8Array(1024);
2424
- if (!(input.length - inputIndex)) return out;
2425
- const payloadStart = gzipStart(input, inputIndex);
2426
- if (payloadStart === input.length - 8) return out;
2427
- if (payloadStart > input.length - 8) throw new Error("unexpected EOF");
2428
- let pos = payloadStart * 8;
2429
- let final = 0;
2430
- let lengthBits = 0;
2431
- let distBits = 0;
2432
- let lengthMap;
2433
- let distMap;
2434
- const totalBits = input.length * 8;
2435
- function ensureSize(length) {
2436
- if (!output && length > out.length) {
2437
- const old = out;
2438
- out = new Uint8Array(Math.max(old.length * 2, length));
2439
- out.set(old);
2440
- }
2441
- }
2442
- do {
2443
- if (!lengthMap) {
2444
- final = bits(input, pos, 1);
2445
- const type = bits(input, pos + 1, 3);
2446
- pos += 3;
2447
- if (!type) {
2448
- const s = shft(pos) + 4;
2449
- const l = input[s - 4] | input[s - 3] << 8;
2450
- const t = s + l;
2451
- if (t > input.length) throw new Error("unexpected EOF");
2452
- ensureSize(outputIndex + l);
2453
- out.set(input.subarray(s, t), outputIndex);
2454
- outputIndex += l;
2455
- pos = t * 8;
2456
- continue;
2457
- } else if (type === 1) {
2458
- lengthMap = fixedLengthMap;
2459
- distMap = fixedDistanceMap;
2460
- lengthBits = 9;
2461
- distBits = 5;
2462
- } else if (type === 2) {
2463
- const hLiteral = bits(input, pos, 31) + 257;
2464
- const hcLengths = bits(input, pos + 10, 15) + 4;
2465
- const tl = hLiteral + bits(input, pos + 5, 31) + 1;
2466
- pos += 14;
2467
- const lengthDistanceTree = new Uint8Array(tl);
2468
- const codeLengthTree = /* @__PURE__ */ new Uint8Array(19);
2469
- for (let i = 0; i < hcLengths; ++i) codeLengthTree[codeLengthIndexMap[i]] = bits(input, pos + i * 3, 7);
2470
- pos += hcLengths * 3;
2471
- const codeLengthBits = Math.max(...codeLengthTree);
2472
- const clbMask = (1 << codeLengthBits) - 1;
2473
- const codeLengthMap = huffMap(codeLengthTree, codeLengthBits, 1);
2474
- for (let i = 0; i < tl;) {
2475
- const r = codeLengthMap[bits(input, pos, clbMask)];
2476
- pos += r & 15;
2477
- const symbol = r >> 4;
2478
- if (symbol < 16) lengthDistanceTree[i++] = symbol;
2479
- else {
2480
- let copy = 0;
2481
- let n = 0;
2482
- if (symbol === 16) {
2483
- n = 3 + bits(input, pos, 3);
2484
- pos += 2;
2485
- copy = lengthDistanceTree[i - 1];
2486
- } else if (symbol === 17) {
2487
- n = 3 + bits(input, pos, 7);
2488
- pos += 3;
2489
- } else if (symbol === 18) {
2490
- n = 11 + bits(input, pos, 127);
2491
- pos += 7;
2492
- }
2493
- while (n--) lengthDistanceTree[i++] = copy;
2494
- }
2495
- }
2496
- const lengthTree = lengthDistanceTree.subarray(0, hLiteral);
2497
- const distanceTree = lengthDistanceTree.subarray(hLiteral);
2498
- lengthBits = Math.max(...lengthTree);
2499
- distBits = Math.max(...distanceTree);
2500
- lengthMap = huffMap(lengthTree, lengthBits, 1);
2501
- distMap = huffMap(distanceTree, distBits, 1);
2502
- } else throw new Error("invalid block type");
2503
- if (pos > totalBits) throw new Error("unexpected EOF");
2504
- }
2505
- ensureSize(outputIndex + 131072);
2506
- const lms = (1 << lengthBits) - 1;
2507
- const dms = (1 << distBits) - 1;
2508
- let lpos = pos;
2509
- for (;; lpos = pos) {
2510
- const code = lengthMap[bits16(input, pos) & lms];
2511
- const sym = code >> 4;
2512
- pos += code & 15;
2513
- if (pos > totalBits) throw new Error("unexpected EOF");
2514
- if (!code) throw new Error("invalid length/literal");
2515
- if (sym < 256) out[outputIndex++] = sym;
2516
- else if (sym === 256) {
2517
- lpos = pos;
2518
- lengthMap = void 0;
2519
- break;
2520
- } else {
2521
- let add = sym - 254;
2522
- if (sym > 264) {
2523
- const index = sym - 257;
2524
- const b = fixedLengthExtraBits[index];
2525
- add = bits(input, pos, (1 << b) - 1) + fixedLength[index];
2526
- pos += b;
2527
- }
2528
- if (!distMap) throw new Error("invalid distance map");
2529
- const d = distMap[bits16(input, pos) & dms];
2530
- const dsym = d >> 4;
2531
- if (!d) throw new Error("invalid distance");
2532
- pos += d & 15;
2533
- let dt = fixedDistance[dsym];
2534
- if (dsym > 3) {
2535
- const b = fixedDistanceExtraBits[dsym];
2536
- dt += bits16(input, pos) & (1 << b) - 1;
2537
- pos += b;
2538
- }
2539
- if (pos > totalBits) throw new Error("unexpected EOF");
2540
- const end = outputIndex + add;
2541
- if (outputIndex < dt) throw new Error("unexpected dictionary case");
2542
- ensureSize(end);
2543
- for (; outputIndex < end; outputIndex++) out[outputIndex] = out[outputIndex - dt];
2544
- }
2545
- }
2546
- pos = lpos;
2547
- if (lengthMap) final = 1;
2548
- } while (!final);
2549
- if (outputIndex < out.length) {
2550
- const nextBlock = Math.ceil(pos / 8) + 8;
2551
- gunzip(input, out, nextBlock, outputIndex);
2552
- }
2553
- if (!output) return out.subarray(0, outputIndex);
2554
- return out;
2555
- }
2556
- const kIdentity = 0;
2557
- const kOmitLast1 = 1;
2558
- const kOmitLast2 = 2;
2559
- const kOmitLast3 = 3;
2560
- const kOmitLast4 = 4;
2561
- const kOmitLast5 = 5;
2562
- const kOmitLast6 = 6;
2563
- const kOmitLast7 = 7;
2564
- const kOmitLast8 = 8;
2565
- const kOmitLast9 = 9;
2566
- const kUppercaseFirst = 10;
2567
- const kUppercaseAll = 11;
2568
- const kOmitFirst1 = 12;
2569
- const kOmitFirst2 = 13;
2570
- const kOmitFirst3 = 14;
2571
- const kOmitFirst4 = 15;
2572
- const kOmitFirst5 = 16;
2573
- const kOmitFirst6 = 17;
2574
- const kOmitFirst7 = 18;
2575
- const kOmitFirst9 = 20;
2576
- function Transform(prefix, transform, suffix) {
2577
- this.prefix = new Uint8Array(prefix.length);
2578
- this.transform = transform;
2579
- this.suffix = new Uint8Array(suffix.length);
2580
- for (let i = 0; i < prefix.length; i++) this.prefix[i] = prefix.charCodeAt(i);
2581
- for (let i = 0; i < suffix.length; i++) this.suffix[i] = suffix.charCodeAt(i);
2582
- }
2583
- [
2584
- new Transform("", kIdentity, ""),
2585
- new Transform("", kIdentity, " "),
2586
- new Transform(" ", kIdentity, " "),
2587
- new Transform("", kOmitFirst1, ""),
2588
- new Transform("", kUppercaseFirst, " "),
2589
- new Transform("", kIdentity, " the "),
2590
- new Transform(" ", kIdentity, ""),
2591
- new Transform("s ", kIdentity, " "),
2592
- new Transform("", kIdentity, " of "),
2593
- new Transform("", kUppercaseFirst, ""),
2594
- new Transform("", kIdentity, " and "),
2595
- new Transform("", kOmitFirst2, ""),
2596
- new Transform("", kOmitLast1, ""),
2597
- new Transform(", ", kIdentity, " "),
2598
- new Transform("", kIdentity, ", "),
2599
- new Transform(" ", kUppercaseFirst, " "),
2600
- new Transform("", kIdentity, " in "),
2601
- new Transform("", kIdentity, " to "),
2602
- new Transform("e ", kIdentity, " "),
2603
- new Transform("", kIdentity, "\""),
2604
- new Transform("", kIdentity, "."),
2605
- new Transform("", kIdentity, "\">"),
2606
- new Transform("", kIdentity, "\n"),
2607
- new Transform("", kOmitLast3, ""),
2608
- new Transform("", kIdentity, "]"),
2609
- new Transform("", kIdentity, " for "),
2610
- new Transform("", kOmitFirst3, ""),
2611
- new Transform("", kOmitLast2, ""),
2612
- new Transform("", kIdentity, " a "),
2613
- new Transform("", kIdentity, " that "),
2614
- new Transform(" ", kUppercaseFirst, ""),
2615
- new Transform("", kIdentity, ". "),
2616
- new Transform(".", kIdentity, ""),
2617
- new Transform(" ", kIdentity, ", "),
2618
- new Transform("", kOmitFirst4, ""),
2619
- new Transform("", kIdentity, " with "),
2620
- new Transform("", kIdentity, "'"),
2621
- new Transform("", kIdentity, " from "),
2622
- new Transform("", kIdentity, " by "),
2623
- new Transform("", kOmitFirst5, ""),
2624
- new Transform("", kOmitFirst6, ""),
2625
- new Transform(" the ", kIdentity, ""),
2626
- new Transform("", kOmitLast4, ""),
2627
- new Transform("", kIdentity, ". The "),
2628
- new Transform("", kUppercaseAll, ""),
2629
- new Transform("", kIdentity, " on "),
2630
- new Transform("", kIdentity, " as "),
2631
- new Transform("", kIdentity, " is "),
2632
- new Transform("", kOmitLast7, ""),
2633
- new Transform("", kOmitLast1, "ing "),
2634
- new Transform("", kIdentity, "\n "),
2635
- new Transform("", kIdentity, ":"),
2636
- new Transform(" ", kIdentity, ". "),
2637
- new Transform("", kIdentity, "ed "),
2638
- new Transform("", kOmitFirst9, ""),
2639
- new Transform("", kOmitFirst7, ""),
2640
- new Transform("", kOmitLast6, ""),
2641
- new Transform("", kIdentity, "("),
2642
- new Transform("", kUppercaseFirst, ", "),
2643
- new Transform("", kOmitLast8, ""),
2644
- new Transform("", kIdentity, " at "),
2645
- new Transform("", kIdentity, "ly "),
2646
- new Transform(" the ", kIdentity, " of "),
2647
- new Transform("", kOmitLast5, ""),
2648
- new Transform("", kOmitLast9, ""),
2649
- new Transform(" ", kUppercaseFirst, ", "),
2650
- new Transform("", kUppercaseFirst, "\""),
2651
- new Transform(".", kIdentity, "("),
2652
- new Transform("", kUppercaseAll, " "),
2653
- new Transform("", kUppercaseFirst, "\">"),
2654
- new Transform("", kIdentity, "=\""),
2655
- new Transform(" ", kIdentity, "."),
2656
- new Transform(".com/", kIdentity, ""),
2657
- new Transform(" the ", kIdentity, " of the "),
2658
- new Transform("", kUppercaseFirst, "'"),
2659
- new Transform("", kIdentity, ". This "),
2660
- new Transform("", kIdentity, ","),
2661
- new Transform(".", kIdentity, " "),
2662
- new Transform("", kUppercaseFirst, "("),
2663
- new Transform("", kUppercaseFirst, "."),
2664
- new Transform("", kIdentity, " not "),
2665
- new Transform(" ", kIdentity, "=\""),
2666
- new Transform("", kIdentity, "er "),
2667
- new Transform(" ", kUppercaseAll, " "),
2668
- new Transform("", kIdentity, "al "),
2669
- new Transform(" ", kUppercaseAll, ""),
2670
- new Transform("", kIdentity, "='"),
2671
- new Transform("", kUppercaseAll, "\""),
2672
- new Transform("", kUppercaseFirst, ". "),
2673
- new Transform(" ", kIdentity, "("),
2674
- new Transform("", kIdentity, "ful "),
2675
- new Transform(" ", kUppercaseFirst, ". "),
2676
- new Transform("", kIdentity, "ive "),
2677
- new Transform("", kIdentity, "less "),
2678
- new Transform("", kUppercaseAll, "'"),
2679
- new Transform("", kIdentity, "est "),
2680
- new Transform(" ", kUppercaseFirst, "."),
2681
- new Transform("", kUppercaseAll, "\">"),
2682
- new Transform(" ", kIdentity, "='"),
2683
- new Transform("", kUppercaseFirst, ","),
2684
- new Transform("", kIdentity, "ize "),
2685
- new Transform("", kUppercaseAll, "."),
2686
- new Transform("Â\xA0", kIdentity, ""),
2687
- new Transform(" ", kIdentity, ","),
2688
- new Transform("", kUppercaseFirst, "=\""),
2689
- new Transform("", kUppercaseAll, "=\""),
2690
- new Transform("", kIdentity, "ous "),
2691
- new Transform("", kUppercaseAll, ", "),
2692
- new Transform("", kUppercaseFirst, "='"),
2693
- new Transform(" ", kUppercaseFirst, ","),
2694
- new Transform(" ", kUppercaseAll, "=\""),
2695
- new Transform(" ", kUppercaseAll, ", "),
2696
- new Transform("", kUppercaseAll, ","),
2697
- new Transform("", kUppercaseAll, "("),
2698
- new Transform("", kUppercaseAll, ". "),
2699
- new Transform(" ", kUppercaseAll, "."),
2700
- new Transform("", kUppercaseAll, "='"),
2701
- new Transform(" ", kUppercaseAll, ". "),
2702
- new Transform(" ", kUppercaseFirst, "=\""),
2703
- new Transform(" ", kUppercaseAll, "='"),
2704
- new Transform(" ", kUppercaseFirst, "='")
2705
- ].length;
2706
- new Uint8Array([
2707
- 3,
2708
- 2,
2709
- 1,
2710
- 0,
2711
- 3,
2712
- 3,
2713
- 3,
2714
- 3,
2715
- 3,
2716
- 3,
2717
- 2,
2718
- 2,
2719
- 2,
2720
- 2,
2721
- 2,
2722
- 2
2723
- ]);
2724
- new Int8Array([
2725
- 0,
2726
- 0,
2727
- 0,
2728
- 0,
2729
- -1,
2730
- 1,
2731
- -2,
2732
- 2,
2733
- -3,
2734
- 3,
2735
- -1,
2736
- 1,
2737
- -2,
2738
- 2,
2739
- -3,
2740
- 3
2741
- ]);
2742
- new Uint32Array([
2743
- 0,
2744
- 0,
2745
- 0,
2746
- 0,
2747
- 0,
2748
- 4096,
2749
- 9216,
2750
- 21504,
2751
- 35840,
2752
- 44032,
2753
- 53248,
2754
- 63488,
2755
- 74752,
2756
- 87040,
2757
- 93696,
2758
- 100864,
2759
- 104704,
2760
- 106752,
2761
- 108928,
2762
- 113536,
2763
- 115968,
2764
- 118528,
2765
- 119872,
2766
- 121280,
2767
- 122016
2768
- ]);
2769
- new Uint8Array([
2770
- 0,
2771
- 0,
2772
- 0,
2773
- 0,
2774
- 10,
2775
- 10,
2776
- 11,
2777
- 11,
2778
- 10,
2779
- 10,
2780
- 10,
2781
- 10,
2782
- 10,
2783
- 9,
2784
- 9,
2785
- 8,
2786
- 7,
2787
- 7,
2788
- 8,
2789
- 7,
2790
- 7,
2791
- 6,
2792
- 6,
2793
- 5,
2794
- 5
2795
- ]);
2796
- export { snappyUncompress, snappyUncompressor };