@gscdump/engine 1.4.0 → 1.4.2

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} +152 -184
  34. package/dist/{_chunks/schema.mjs → drizzle-schema.mjs} +6 -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 +112 -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 +9 -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
@@ -0,0 +1,1805 @@
1
+ const lookup = new Uint8Array([
2
+ 0,
3
+ 0,
4
+ 0,
5
+ 0,
6
+ 0,
7
+ 0,
8
+ 0,
9
+ 0,
10
+ 0,
11
+ 4,
12
+ 4,
13
+ 0,
14
+ 0,
15
+ 4,
16
+ 0,
17
+ 0,
18
+ 0,
19
+ 0,
20
+ 0,
21
+ 0,
22
+ 0,
23
+ 0,
24
+ 0,
25
+ 0,
26
+ 0,
27
+ 0,
28
+ 0,
29
+ 0,
30
+ 0,
31
+ 0,
32
+ 0,
33
+ 0,
34
+ 8,
35
+ 12,
36
+ 16,
37
+ 12,
38
+ 12,
39
+ 20,
40
+ 12,
41
+ 16,
42
+ 24,
43
+ 28,
44
+ 12,
45
+ 12,
46
+ 32,
47
+ 12,
48
+ 36,
49
+ 12,
50
+ 44,
51
+ 44,
52
+ 44,
53
+ 44,
54
+ 44,
55
+ 44,
56
+ 44,
57
+ 44,
58
+ 44,
59
+ 44,
60
+ 32,
61
+ 32,
62
+ 24,
63
+ 40,
64
+ 28,
65
+ 12,
66
+ 12,
67
+ 48,
68
+ 52,
69
+ 52,
70
+ 52,
71
+ 48,
72
+ 52,
73
+ 52,
74
+ 52,
75
+ 48,
76
+ 52,
77
+ 52,
78
+ 52,
79
+ 52,
80
+ 52,
81
+ 48,
82
+ 52,
83
+ 52,
84
+ 52,
85
+ 52,
86
+ 52,
87
+ 48,
88
+ 52,
89
+ 52,
90
+ 52,
91
+ 52,
92
+ 52,
93
+ 24,
94
+ 12,
95
+ 28,
96
+ 12,
97
+ 12,
98
+ 12,
99
+ 56,
100
+ 60,
101
+ 60,
102
+ 60,
103
+ 56,
104
+ 60,
105
+ 60,
106
+ 60,
107
+ 56,
108
+ 60,
109
+ 60,
110
+ 60,
111
+ 60,
112
+ 60,
113
+ 56,
114
+ 60,
115
+ 60,
116
+ 60,
117
+ 60,
118
+ 60,
119
+ 56,
120
+ 60,
121
+ 60,
122
+ 60,
123
+ 60,
124
+ 60,
125
+ 24,
126
+ 12,
127
+ 28,
128
+ 12,
129
+ 0,
130
+ 0,
131
+ 1,
132
+ 0,
133
+ 1,
134
+ 0,
135
+ 1,
136
+ 0,
137
+ 1,
138
+ 0,
139
+ 1,
140
+ 0,
141
+ 1,
142
+ 0,
143
+ 1,
144
+ 0,
145
+ 1,
146
+ 0,
147
+ 1,
148
+ 0,
149
+ 1,
150
+ 0,
151
+ 1,
152
+ 0,
153
+ 1,
154
+ 0,
155
+ 1,
156
+ 0,
157
+ 1,
158
+ 0,
159
+ 1,
160
+ 0,
161
+ 1,
162
+ 0,
163
+ 1,
164
+ 0,
165
+ 1,
166
+ 0,
167
+ 1,
168
+ 0,
169
+ 1,
170
+ 0,
171
+ 1,
172
+ 0,
173
+ 1,
174
+ 0,
175
+ 1,
176
+ 0,
177
+ 1,
178
+ 0,
179
+ 1,
180
+ 0,
181
+ 1,
182
+ 0,
183
+ 1,
184
+ 0,
185
+ 1,
186
+ 0,
187
+ 1,
188
+ 0,
189
+ 1,
190
+ 0,
191
+ 1,
192
+ 0,
193
+ 1,
194
+ 2,
195
+ 3,
196
+ 2,
197
+ 3,
198
+ 2,
199
+ 3,
200
+ 2,
201
+ 3,
202
+ 2,
203
+ 3,
204
+ 2,
205
+ 3,
206
+ 2,
207
+ 3,
208
+ 2,
209
+ 3,
210
+ 2,
211
+ 3,
212
+ 2,
213
+ 3,
214
+ 2,
215
+ 3,
216
+ 2,
217
+ 3,
218
+ 2,
219
+ 3,
220
+ 2,
221
+ 3,
222
+ 2,
223
+ 3,
224
+ 2,
225
+ 3,
226
+ 2,
227
+ 3,
228
+ 2,
229
+ 3,
230
+ 2,
231
+ 3,
232
+ 2,
233
+ 3,
234
+ 2,
235
+ 3,
236
+ 2,
237
+ 3,
238
+ 2,
239
+ 3,
240
+ 2,
241
+ 3,
242
+ 2,
243
+ 3,
244
+ 2,
245
+ 3,
246
+ 2,
247
+ 3,
248
+ 2,
249
+ 3,
250
+ 2,
251
+ 3,
252
+ 2,
253
+ 3,
254
+ 2,
255
+ 3,
256
+ 2,
257
+ 3,
258
+ 0,
259
+ 0,
260
+ 0,
261
+ 0,
262
+ 0,
263
+ 0,
264
+ 0,
265
+ 0,
266
+ 0,
267
+ 0,
268
+ 0,
269
+ 0,
270
+ 0,
271
+ 0,
272
+ 0,
273
+ 0,
274
+ 0,
275
+ 0,
276
+ 0,
277
+ 0,
278
+ 0,
279
+ 0,
280
+ 0,
281
+ 0,
282
+ 0,
283
+ 0,
284
+ 0,
285
+ 0,
286
+ 0,
287
+ 0,
288
+ 0,
289
+ 0,
290
+ 0,
291
+ 1,
292
+ 1,
293
+ 1,
294
+ 1,
295
+ 1,
296
+ 1,
297
+ 1,
298
+ 1,
299
+ 1,
300
+ 1,
301
+ 1,
302
+ 1,
303
+ 1,
304
+ 1,
305
+ 1,
306
+ 2,
307
+ 2,
308
+ 2,
309
+ 2,
310
+ 2,
311
+ 2,
312
+ 2,
313
+ 2,
314
+ 2,
315
+ 2,
316
+ 1,
317
+ 1,
318
+ 1,
319
+ 1,
320
+ 1,
321
+ 1,
322
+ 1,
323
+ 2,
324
+ 2,
325
+ 2,
326
+ 2,
327
+ 2,
328
+ 2,
329
+ 2,
330
+ 2,
331
+ 2,
332
+ 2,
333
+ 2,
334
+ 2,
335
+ 2,
336
+ 2,
337
+ 2,
338
+ 2,
339
+ 2,
340
+ 2,
341
+ 2,
342
+ 2,
343
+ 2,
344
+ 2,
345
+ 2,
346
+ 2,
347
+ 2,
348
+ 2,
349
+ 1,
350
+ 1,
351
+ 1,
352
+ 1,
353
+ 1,
354
+ 1,
355
+ 3,
356
+ 3,
357
+ 3,
358
+ 3,
359
+ 3,
360
+ 3,
361
+ 3,
362
+ 3,
363
+ 3,
364
+ 3,
365
+ 3,
366
+ 3,
367
+ 3,
368
+ 3,
369
+ 3,
370
+ 3,
371
+ 3,
372
+ 3,
373
+ 3,
374
+ 3,
375
+ 3,
376
+ 3,
377
+ 3,
378
+ 3,
379
+ 3,
380
+ 3,
381
+ 1,
382
+ 1,
383
+ 1,
384
+ 1,
385
+ 0,
386
+ 0,
387
+ 0,
388
+ 0,
389
+ 0,
390
+ 0,
391
+ 0,
392
+ 0,
393
+ 0,
394
+ 0,
395
+ 0,
396
+ 0,
397
+ 0,
398
+ 0,
399
+ 0,
400
+ 0,
401
+ 0,
402
+ 0,
403
+ 0,
404
+ 0,
405
+ 0,
406
+ 0,
407
+ 0,
408
+ 0,
409
+ 0,
410
+ 0,
411
+ 0,
412
+ 0,
413
+ 0,
414
+ 0,
415
+ 0,
416
+ 0,
417
+ 0,
418
+ 0,
419
+ 0,
420
+ 0,
421
+ 0,
422
+ 0,
423
+ 0,
424
+ 0,
425
+ 0,
426
+ 0,
427
+ 0,
428
+ 0,
429
+ 0,
430
+ 0,
431
+ 0,
432
+ 0,
433
+ 0,
434
+ 0,
435
+ 0,
436
+ 0,
437
+ 0,
438
+ 0,
439
+ 0,
440
+ 0,
441
+ 0,
442
+ 0,
443
+ 0,
444
+ 0,
445
+ 0,
446
+ 0,
447
+ 0,
448
+ 0,
449
+ 0,
450
+ 0,
451
+ 0,
452
+ 0,
453
+ 0,
454
+ 0,
455
+ 0,
456
+ 0,
457
+ 0,
458
+ 0,
459
+ 0,
460
+ 0,
461
+ 0,
462
+ 0,
463
+ 0,
464
+ 0,
465
+ 0,
466
+ 0,
467
+ 0,
468
+ 0,
469
+ 0,
470
+ 0,
471
+ 0,
472
+ 0,
473
+ 0,
474
+ 0,
475
+ 0,
476
+ 0,
477
+ 0,
478
+ 0,
479
+ 0,
480
+ 0,
481
+ 0,
482
+ 2,
483
+ 2,
484
+ 2,
485
+ 2,
486
+ 2,
487
+ 2,
488
+ 2,
489
+ 2,
490
+ 2,
491
+ 2,
492
+ 2,
493
+ 2,
494
+ 2,
495
+ 2,
496
+ 2,
497
+ 2,
498
+ 2,
499
+ 2,
500
+ 2,
501
+ 2,
502
+ 2,
503
+ 2,
504
+ 2,
505
+ 2,
506
+ 2,
507
+ 2,
508
+ 2,
509
+ 2,
510
+ 2,
511
+ 2,
512
+ 2,
513
+ 2,
514
+ 0,
515
+ 1,
516
+ 1,
517
+ 1,
518
+ 1,
519
+ 1,
520
+ 1,
521
+ 1,
522
+ 1,
523
+ 1,
524
+ 1,
525
+ 1,
526
+ 1,
527
+ 1,
528
+ 1,
529
+ 1,
530
+ 2,
531
+ 2,
532
+ 2,
533
+ 2,
534
+ 2,
535
+ 2,
536
+ 2,
537
+ 2,
538
+ 2,
539
+ 2,
540
+ 2,
541
+ 2,
542
+ 2,
543
+ 2,
544
+ 2,
545
+ 2,
546
+ 2,
547
+ 2,
548
+ 2,
549
+ 2,
550
+ 2,
551
+ 2,
552
+ 2,
553
+ 2,
554
+ 2,
555
+ 2,
556
+ 2,
557
+ 2,
558
+ 2,
559
+ 2,
560
+ 2,
561
+ 2,
562
+ 2,
563
+ 2,
564
+ 2,
565
+ 2,
566
+ 2,
567
+ 2,
568
+ 2,
569
+ 2,
570
+ 2,
571
+ 2,
572
+ 2,
573
+ 2,
574
+ 2,
575
+ 2,
576
+ 2,
577
+ 2,
578
+ 3,
579
+ 3,
580
+ 3,
581
+ 3,
582
+ 3,
583
+ 3,
584
+ 3,
585
+ 3,
586
+ 3,
587
+ 3,
588
+ 3,
589
+ 3,
590
+ 3,
591
+ 3,
592
+ 3,
593
+ 3,
594
+ 3,
595
+ 3,
596
+ 3,
597
+ 3,
598
+ 3,
599
+ 3,
600
+ 3,
601
+ 3,
602
+ 3,
603
+ 3,
604
+ 3,
605
+ 3,
606
+ 3,
607
+ 3,
608
+ 3,
609
+ 3,
610
+ 3,
611
+ 3,
612
+ 3,
613
+ 3,
614
+ 3,
615
+ 3,
616
+ 3,
617
+ 3,
618
+ 3,
619
+ 3,
620
+ 3,
621
+ 3,
622
+ 3,
623
+ 3,
624
+ 3,
625
+ 3,
626
+ 3,
627
+ 3,
628
+ 3,
629
+ 3,
630
+ 3,
631
+ 3,
632
+ 3,
633
+ 3,
634
+ 3,
635
+ 3,
636
+ 3,
637
+ 3,
638
+ 3,
639
+ 3,
640
+ 3,
641
+ 3,
642
+ 4,
643
+ 4,
644
+ 4,
645
+ 4,
646
+ 4,
647
+ 4,
648
+ 4,
649
+ 4,
650
+ 4,
651
+ 4,
652
+ 4,
653
+ 4,
654
+ 4,
655
+ 4,
656
+ 4,
657
+ 4,
658
+ 4,
659
+ 4,
660
+ 4,
661
+ 4,
662
+ 4,
663
+ 4,
664
+ 4,
665
+ 4,
666
+ 4,
667
+ 4,
668
+ 4,
669
+ 4,
670
+ 4,
671
+ 4,
672
+ 4,
673
+ 4,
674
+ 4,
675
+ 4,
676
+ 4,
677
+ 4,
678
+ 4,
679
+ 4,
680
+ 4,
681
+ 4,
682
+ 4,
683
+ 4,
684
+ 4,
685
+ 4,
686
+ 4,
687
+ 4,
688
+ 4,
689
+ 4,
690
+ 4,
691
+ 4,
692
+ 4,
693
+ 4,
694
+ 4,
695
+ 4,
696
+ 4,
697
+ 4,
698
+ 4,
699
+ 4,
700
+ 4,
701
+ 4,
702
+ 4,
703
+ 4,
704
+ 4,
705
+ 4,
706
+ 5,
707
+ 5,
708
+ 5,
709
+ 5,
710
+ 5,
711
+ 5,
712
+ 5,
713
+ 5,
714
+ 5,
715
+ 5,
716
+ 5,
717
+ 5,
718
+ 5,
719
+ 5,
720
+ 5,
721
+ 5,
722
+ 5,
723
+ 5,
724
+ 5,
725
+ 5,
726
+ 5,
727
+ 5,
728
+ 5,
729
+ 5,
730
+ 5,
731
+ 5,
732
+ 5,
733
+ 5,
734
+ 5,
735
+ 5,
736
+ 5,
737
+ 5,
738
+ 5,
739
+ 5,
740
+ 5,
741
+ 5,
742
+ 5,
743
+ 5,
744
+ 5,
745
+ 5,
746
+ 5,
747
+ 5,
748
+ 5,
749
+ 5,
750
+ 5,
751
+ 5,
752
+ 5,
753
+ 5,
754
+ 6,
755
+ 6,
756
+ 6,
757
+ 6,
758
+ 6,
759
+ 6,
760
+ 6,
761
+ 6,
762
+ 6,
763
+ 6,
764
+ 6,
765
+ 6,
766
+ 6,
767
+ 6,
768
+ 6,
769
+ 7,
770
+ 0,
771
+ 8,
772
+ 8,
773
+ 8,
774
+ 8,
775
+ 8,
776
+ 8,
777
+ 8,
778
+ 8,
779
+ 8,
780
+ 8,
781
+ 8,
782
+ 8,
783
+ 8,
784
+ 8,
785
+ 8,
786
+ 16,
787
+ 16,
788
+ 16,
789
+ 16,
790
+ 16,
791
+ 16,
792
+ 16,
793
+ 16,
794
+ 16,
795
+ 16,
796
+ 16,
797
+ 16,
798
+ 16,
799
+ 16,
800
+ 16,
801
+ 16,
802
+ 16,
803
+ 16,
804
+ 16,
805
+ 16,
806
+ 16,
807
+ 16,
808
+ 16,
809
+ 16,
810
+ 16,
811
+ 16,
812
+ 16,
813
+ 16,
814
+ 16,
815
+ 16,
816
+ 16,
817
+ 16,
818
+ 16,
819
+ 16,
820
+ 16,
821
+ 16,
822
+ 16,
823
+ 16,
824
+ 16,
825
+ 16,
826
+ 16,
827
+ 16,
828
+ 16,
829
+ 16,
830
+ 16,
831
+ 16,
832
+ 16,
833
+ 16,
834
+ 24,
835
+ 24,
836
+ 24,
837
+ 24,
838
+ 24,
839
+ 24,
840
+ 24,
841
+ 24,
842
+ 24,
843
+ 24,
844
+ 24,
845
+ 24,
846
+ 24,
847
+ 24,
848
+ 24,
849
+ 24,
850
+ 24,
851
+ 24,
852
+ 24,
853
+ 24,
854
+ 24,
855
+ 24,
856
+ 24,
857
+ 24,
858
+ 24,
859
+ 24,
860
+ 24,
861
+ 24,
862
+ 24,
863
+ 24,
864
+ 24,
865
+ 24,
866
+ 24,
867
+ 24,
868
+ 24,
869
+ 24,
870
+ 24,
871
+ 24,
872
+ 24,
873
+ 24,
874
+ 24,
875
+ 24,
876
+ 24,
877
+ 24,
878
+ 24,
879
+ 24,
880
+ 24,
881
+ 24,
882
+ 24,
883
+ 24,
884
+ 24,
885
+ 24,
886
+ 24,
887
+ 24,
888
+ 24,
889
+ 24,
890
+ 24,
891
+ 24,
892
+ 24,
893
+ 24,
894
+ 24,
895
+ 24,
896
+ 24,
897
+ 24,
898
+ 32,
899
+ 32,
900
+ 32,
901
+ 32,
902
+ 32,
903
+ 32,
904
+ 32,
905
+ 32,
906
+ 32,
907
+ 32,
908
+ 32,
909
+ 32,
910
+ 32,
911
+ 32,
912
+ 32,
913
+ 32,
914
+ 32,
915
+ 32,
916
+ 32,
917
+ 32,
918
+ 32,
919
+ 32,
920
+ 32,
921
+ 32,
922
+ 32,
923
+ 32,
924
+ 32,
925
+ 32,
926
+ 32,
927
+ 32,
928
+ 32,
929
+ 32,
930
+ 32,
931
+ 32,
932
+ 32,
933
+ 32,
934
+ 32,
935
+ 32,
936
+ 32,
937
+ 32,
938
+ 32,
939
+ 32,
940
+ 32,
941
+ 32,
942
+ 32,
943
+ 32,
944
+ 32,
945
+ 32,
946
+ 32,
947
+ 32,
948
+ 32,
949
+ 32,
950
+ 32,
951
+ 32,
952
+ 32,
953
+ 32,
954
+ 32,
955
+ 32,
956
+ 32,
957
+ 32,
958
+ 32,
959
+ 32,
960
+ 32,
961
+ 32,
962
+ 40,
963
+ 40,
964
+ 40,
965
+ 40,
966
+ 40,
967
+ 40,
968
+ 40,
969
+ 40,
970
+ 40,
971
+ 40,
972
+ 40,
973
+ 40,
974
+ 40,
975
+ 40,
976
+ 40,
977
+ 40,
978
+ 40,
979
+ 40,
980
+ 40,
981
+ 40,
982
+ 40,
983
+ 40,
984
+ 40,
985
+ 40,
986
+ 40,
987
+ 40,
988
+ 40,
989
+ 40,
990
+ 40,
991
+ 40,
992
+ 40,
993
+ 40,
994
+ 40,
995
+ 40,
996
+ 40,
997
+ 40,
998
+ 40,
999
+ 40,
1000
+ 40,
1001
+ 40,
1002
+ 40,
1003
+ 40,
1004
+ 40,
1005
+ 40,
1006
+ 40,
1007
+ 40,
1008
+ 40,
1009
+ 40,
1010
+ 48,
1011
+ 48,
1012
+ 48,
1013
+ 48,
1014
+ 48,
1015
+ 48,
1016
+ 48,
1017
+ 48,
1018
+ 48,
1019
+ 48,
1020
+ 48,
1021
+ 48,
1022
+ 48,
1023
+ 48,
1024
+ 48,
1025
+ 56,
1026
+ 0,
1027
+ 1,
1028
+ 2,
1029
+ 3,
1030
+ 4,
1031
+ 5,
1032
+ 6,
1033
+ 7,
1034
+ 8,
1035
+ 9,
1036
+ 10,
1037
+ 11,
1038
+ 12,
1039
+ 13,
1040
+ 14,
1041
+ 15,
1042
+ 16,
1043
+ 17,
1044
+ 18,
1045
+ 19,
1046
+ 20,
1047
+ 21,
1048
+ 22,
1049
+ 23,
1050
+ 24,
1051
+ 25,
1052
+ 26,
1053
+ 27,
1054
+ 28,
1055
+ 29,
1056
+ 30,
1057
+ 31,
1058
+ 32,
1059
+ 33,
1060
+ 34,
1061
+ 35,
1062
+ 36,
1063
+ 37,
1064
+ 38,
1065
+ 39,
1066
+ 40,
1067
+ 41,
1068
+ 42,
1069
+ 43,
1070
+ 44,
1071
+ 45,
1072
+ 46,
1073
+ 47,
1074
+ 48,
1075
+ 49,
1076
+ 50,
1077
+ 51,
1078
+ 52,
1079
+ 53,
1080
+ 54,
1081
+ 55,
1082
+ 56,
1083
+ 57,
1084
+ 58,
1085
+ 59,
1086
+ 60,
1087
+ 61,
1088
+ 62,
1089
+ 63,
1090
+ 0,
1091
+ 1,
1092
+ 2,
1093
+ 3,
1094
+ 4,
1095
+ 5,
1096
+ 6,
1097
+ 7,
1098
+ 8,
1099
+ 9,
1100
+ 10,
1101
+ 11,
1102
+ 12,
1103
+ 13,
1104
+ 14,
1105
+ 15,
1106
+ 16,
1107
+ 17,
1108
+ 18,
1109
+ 19,
1110
+ 20,
1111
+ 21,
1112
+ 22,
1113
+ 23,
1114
+ 24,
1115
+ 25,
1116
+ 26,
1117
+ 27,
1118
+ 28,
1119
+ 29,
1120
+ 30,
1121
+ 31,
1122
+ 32,
1123
+ 33,
1124
+ 34,
1125
+ 35,
1126
+ 36,
1127
+ 37,
1128
+ 38,
1129
+ 39,
1130
+ 40,
1131
+ 41,
1132
+ 42,
1133
+ 43,
1134
+ 44,
1135
+ 45,
1136
+ 46,
1137
+ 47,
1138
+ 48,
1139
+ 49,
1140
+ 50,
1141
+ 51,
1142
+ 52,
1143
+ 53,
1144
+ 54,
1145
+ 55,
1146
+ 56,
1147
+ 57,
1148
+ 58,
1149
+ 59,
1150
+ 60,
1151
+ 61,
1152
+ 62,
1153
+ 63,
1154
+ 0,
1155
+ 1,
1156
+ 2,
1157
+ 3,
1158
+ 4,
1159
+ 5,
1160
+ 6,
1161
+ 7,
1162
+ 8,
1163
+ 9,
1164
+ 10,
1165
+ 11,
1166
+ 12,
1167
+ 13,
1168
+ 14,
1169
+ 15,
1170
+ 16,
1171
+ 17,
1172
+ 18,
1173
+ 19,
1174
+ 20,
1175
+ 21,
1176
+ 22,
1177
+ 23,
1178
+ 24,
1179
+ 25,
1180
+ 26,
1181
+ 27,
1182
+ 28,
1183
+ 29,
1184
+ 30,
1185
+ 31,
1186
+ 32,
1187
+ 33,
1188
+ 34,
1189
+ 35,
1190
+ 36,
1191
+ 37,
1192
+ 38,
1193
+ 39,
1194
+ 40,
1195
+ 41,
1196
+ 42,
1197
+ 43,
1198
+ 44,
1199
+ 45,
1200
+ 46,
1201
+ 47,
1202
+ 48,
1203
+ 49,
1204
+ 50,
1205
+ 51,
1206
+ 52,
1207
+ 53,
1208
+ 54,
1209
+ 55,
1210
+ 56,
1211
+ 57,
1212
+ 58,
1213
+ 59,
1214
+ 60,
1215
+ 61,
1216
+ 62,
1217
+ 63,
1218
+ 0,
1219
+ 1,
1220
+ 2,
1221
+ 3,
1222
+ 4,
1223
+ 5,
1224
+ 6,
1225
+ 7,
1226
+ 8,
1227
+ 9,
1228
+ 10,
1229
+ 11,
1230
+ 12,
1231
+ 13,
1232
+ 14,
1233
+ 15,
1234
+ 16,
1235
+ 17,
1236
+ 18,
1237
+ 19,
1238
+ 20,
1239
+ 21,
1240
+ 22,
1241
+ 23,
1242
+ 24,
1243
+ 25,
1244
+ 26,
1245
+ 27,
1246
+ 28,
1247
+ 29,
1248
+ 30,
1249
+ 31,
1250
+ 32,
1251
+ 33,
1252
+ 34,
1253
+ 35,
1254
+ 36,
1255
+ 37,
1256
+ 38,
1257
+ 39,
1258
+ 40,
1259
+ 41,
1260
+ 42,
1261
+ 43,
1262
+ 44,
1263
+ 45,
1264
+ 46,
1265
+ 47,
1266
+ 48,
1267
+ 49,
1268
+ 50,
1269
+ 51,
1270
+ 52,
1271
+ 53,
1272
+ 54,
1273
+ 55,
1274
+ 56,
1275
+ 57,
1276
+ 58,
1277
+ 59,
1278
+ 60,
1279
+ 61,
1280
+ 62,
1281
+ 63,
1282
+ 0,
1283
+ 0,
1284
+ 0,
1285
+ 0,
1286
+ 1,
1287
+ 1,
1288
+ 1,
1289
+ 1,
1290
+ 2,
1291
+ 2,
1292
+ 2,
1293
+ 2,
1294
+ 3,
1295
+ 3,
1296
+ 3,
1297
+ 3,
1298
+ 4,
1299
+ 4,
1300
+ 4,
1301
+ 4,
1302
+ 5,
1303
+ 5,
1304
+ 5,
1305
+ 5,
1306
+ 6,
1307
+ 6,
1308
+ 6,
1309
+ 6,
1310
+ 7,
1311
+ 7,
1312
+ 7,
1313
+ 7,
1314
+ 8,
1315
+ 8,
1316
+ 8,
1317
+ 8,
1318
+ 9,
1319
+ 9,
1320
+ 9,
1321
+ 9,
1322
+ 10,
1323
+ 10,
1324
+ 10,
1325
+ 10,
1326
+ 11,
1327
+ 11,
1328
+ 11,
1329
+ 11,
1330
+ 12,
1331
+ 12,
1332
+ 12,
1333
+ 12,
1334
+ 13,
1335
+ 13,
1336
+ 13,
1337
+ 13,
1338
+ 14,
1339
+ 14,
1340
+ 14,
1341
+ 14,
1342
+ 15,
1343
+ 15,
1344
+ 15,
1345
+ 15,
1346
+ 16,
1347
+ 16,
1348
+ 16,
1349
+ 16,
1350
+ 17,
1351
+ 17,
1352
+ 17,
1353
+ 17,
1354
+ 18,
1355
+ 18,
1356
+ 18,
1357
+ 18,
1358
+ 19,
1359
+ 19,
1360
+ 19,
1361
+ 19,
1362
+ 20,
1363
+ 20,
1364
+ 20,
1365
+ 20,
1366
+ 21,
1367
+ 21,
1368
+ 21,
1369
+ 21,
1370
+ 22,
1371
+ 22,
1372
+ 22,
1373
+ 22,
1374
+ 23,
1375
+ 23,
1376
+ 23,
1377
+ 23,
1378
+ 24,
1379
+ 24,
1380
+ 24,
1381
+ 24,
1382
+ 25,
1383
+ 25,
1384
+ 25,
1385
+ 25,
1386
+ 26,
1387
+ 26,
1388
+ 26,
1389
+ 26,
1390
+ 27,
1391
+ 27,
1392
+ 27,
1393
+ 27,
1394
+ 28,
1395
+ 28,
1396
+ 28,
1397
+ 28,
1398
+ 29,
1399
+ 29,
1400
+ 29,
1401
+ 29,
1402
+ 30,
1403
+ 30,
1404
+ 30,
1405
+ 30,
1406
+ 31,
1407
+ 31,
1408
+ 31,
1409
+ 31,
1410
+ 32,
1411
+ 32,
1412
+ 32,
1413
+ 32,
1414
+ 33,
1415
+ 33,
1416
+ 33,
1417
+ 33,
1418
+ 34,
1419
+ 34,
1420
+ 34,
1421
+ 34,
1422
+ 35,
1423
+ 35,
1424
+ 35,
1425
+ 35,
1426
+ 36,
1427
+ 36,
1428
+ 36,
1429
+ 36,
1430
+ 37,
1431
+ 37,
1432
+ 37,
1433
+ 37,
1434
+ 38,
1435
+ 38,
1436
+ 38,
1437
+ 38,
1438
+ 39,
1439
+ 39,
1440
+ 39,
1441
+ 39,
1442
+ 40,
1443
+ 40,
1444
+ 40,
1445
+ 40,
1446
+ 41,
1447
+ 41,
1448
+ 41,
1449
+ 41,
1450
+ 42,
1451
+ 42,
1452
+ 42,
1453
+ 42,
1454
+ 43,
1455
+ 43,
1456
+ 43,
1457
+ 43,
1458
+ 44,
1459
+ 44,
1460
+ 44,
1461
+ 44,
1462
+ 45,
1463
+ 45,
1464
+ 45,
1465
+ 45,
1466
+ 46,
1467
+ 46,
1468
+ 46,
1469
+ 46,
1470
+ 47,
1471
+ 47,
1472
+ 47,
1473
+ 47,
1474
+ 48,
1475
+ 48,
1476
+ 48,
1477
+ 48,
1478
+ 49,
1479
+ 49,
1480
+ 49,
1481
+ 49,
1482
+ 50,
1483
+ 50,
1484
+ 50,
1485
+ 50,
1486
+ 51,
1487
+ 51,
1488
+ 51,
1489
+ 51,
1490
+ 52,
1491
+ 52,
1492
+ 52,
1493
+ 52,
1494
+ 53,
1495
+ 53,
1496
+ 53,
1497
+ 53,
1498
+ 54,
1499
+ 54,
1500
+ 54,
1501
+ 54,
1502
+ 55,
1503
+ 55,
1504
+ 55,
1505
+ 55,
1506
+ 56,
1507
+ 56,
1508
+ 56,
1509
+ 56,
1510
+ 57,
1511
+ 57,
1512
+ 57,
1513
+ 57,
1514
+ 58,
1515
+ 58,
1516
+ 58,
1517
+ 58,
1518
+ 59,
1519
+ 59,
1520
+ 59,
1521
+ 59,
1522
+ 60,
1523
+ 60,
1524
+ 60,
1525
+ 60,
1526
+ 61,
1527
+ 61,
1528
+ 61,
1529
+ 61,
1530
+ 62,
1531
+ 62,
1532
+ 62,
1533
+ 62,
1534
+ 63,
1535
+ 63,
1536
+ 63,
1537
+ 63,
1538
+ 0,
1539
+ 0,
1540
+ 0,
1541
+ 0,
1542
+ 0,
1543
+ 0,
1544
+ 0,
1545
+ 0,
1546
+ 0,
1547
+ 0,
1548
+ 0,
1549
+ 0,
1550
+ 0,
1551
+ 0,
1552
+ 0,
1553
+ 0,
1554
+ 0,
1555
+ 0,
1556
+ 0,
1557
+ 0,
1558
+ 0,
1559
+ 0,
1560
+ 0,
1561
+ 0,
1562
+ 0,
1563
+ 0,
1564
+ 0,
1565
+ 0,
1566
+ 0,
1567
+ 0,
1568
+ 0,
1569
+ 0,
1570
+ 0,
1571
+ 0,
1572
+ 0,
1573
+ 0,
1574
+ 0,
1575
+ 0,
1576
+ 0,
1577
+ 0,
1578
+ 0,
1579
+ 0,
1580
+ 0,
1581
+ 0,
1582
+ 0,
1583
+ 0,
1584
+ 0,
1585
+ 0,
1586
+ 0,
1587
+ 0,
1588
+ 0,
1589
+ 0,
1590
+ 0,
1591
+ 0,
1592
+ 0,
1593
+ 0,
1594
+ 0,
1595
+ 0,
1596
+ 0,
1597
+ 0,
1598
+ 0,
1599
+ 0,
1600
+ 0,
1601
+ 0,
1602
+ 0,
1603
+ 0,
1604
+ 0,
1605
+ 0,
1606
+ 0,
1607
+ 0,
1608
+ 0,
1609
+ 0,
1610
+ 0,
1611
+ 0,
1612
+ 0,
1613
+ 0,
1614
+ 0,
1615
+ 0,
1616
+ 0,
1617
+ 0,
1618
+ 0,
1619
+ 0,
1620
+ 0,
1621
+ 0,
1622
+ 0,
1623
+ 0,
1624
+ 0,
1625
+ 0,
1626
+ 0,
1627
+ 0,
1628
+ 0,
1629
+ 0,
1630
+ 0,
1631
+ 0,
1632
+ 0,
1633
+ 0,
1634
+ 0,
1635
+ 0,
1636
+ 0,
1637
+ 0,
1638
+ 0,
1639
+ 0,
1640
+ 0,
1641
+ 0,
1642
+ 0,
1643
+ 0,
1644
+ 0,
1645
+ 0,
1646
+ 0,
1647
+ 0,
1648
+ 0,
1649
+ 0,
1650
+ 0,
1651
+ 0,
1652
+ 0,
1653
+ 0,
1654
+ 0,
1655
+ 0,
1656
+ 0,
1657
+ 0,
1658
+ 0,
1659
+ 0,
1660
+ 0,
1661
+ 0,
1662
+ 0,
1663
+ 0,
1664
+ 0,
1665
+ 0,
1666
+ 0,
1667
+ 0,
1668
+ 0,
1669
+ 0,
1670
+ 0,
1671
+ 0,
1672
+ 0,
1673
+ 0,
1674
+ 0,
1675
+ 0,
1676
+ 0,
1677
+ 0,
1678
+ 0,
1679
+ 0,
1680
+ 0,
1681
+ 0,
1682
+ 0,
1683
+ 0,
1684
+ 0,
1685
+ 0,
1686
+ 0,
1687
+ 0,
1688
+ 0,
1689
+ 0,
1690
+ 0,
1691
+ 0,
1692
+ 0,
1693
+ 0,
1694
+ 0,
1695
+ 0,
1696
+ 0,
1697
+ 0,
1698
+ 0,
1699
+ 0,
1700
+ 0,
1701
+ 0,
1702
+ 0,
1703
+ 0,
1704
+ 0,
1705
+ 0,
1706
+ 0,
1707
+ 0,
1708
+ 0,
1709
+ 0,
1710
+ 0,
1711
+ 0,
1712
+ 0,
1713
+ 0,
1714
+ 0,
1715
+ 0,
1716
+ 0,
1717
+ 0,
1718
+ 0,
1719
+ 0,
1720
+ 0,
1721
+ 0,
1722
+ 0,
1723
+ 0,
1724
+ 0,
1725
+ 0,
1726
+ 0,
1727
+ 0,
1728
+ 0,
1729
+ 0,
1730
+ 0,
1731
+ 0,
1732
+ 0,
1733
+ 0,
1734
+ 0,
1735
+ 0,
1736
+ 0,
1737
+ 0,
1738
+ 0,
1739
+ 0,
1740
+ 0,
1741
+ 0,
1742
+ 0,
1743
+ 0,
1744
+ 0,
1745
+ 0,
1746
+ 0,
1747
+ 0,
1748
+ 0,
1749
+ 0,
1750
+ 0,
1751
+ 0,
1752
+ 0,
1753
+ 0,
1754
+ 0,
1755
+ 0,
1756
+ 0,
1757
+ 0,
1758
+ 0,
1759
+ 0,
1760
+ 0,
1761
+ 0,
1762
+ 0,
1763
+ 0,
1764
+ 0,
1765
+ 0,
1766
+ 0,
1767
+ 0,
1768
+ 0,
1769
+ 0,
1770
+ 0,
1771
+ 0,
1772
+ 0,
1773
+ 0,
1774
+ 0,
1775
+ 0,
1776
+ 0,
1777
+ 0,
1778
+ 0,
1779
+ 0,
1780
+ 0,
1781
+ 0,
1782
+ 0,
1783
+ 0,
1784
+ 0,
1785
+ 0,
1786
+ 0,
1787
+ 0,
1788
+ 0,
1789
+ 0,
1790
+ 0,
1791
+ 0,
1792
+ 0,
1793
+ 0
1794
+ ]);
1795
+ const lookupOffsets = new Uint16Array([
1796
+ 1024,
1797
+ 1536,
1798
+ 1280,
1799
+ 1536,
1800
+ 0,
1801
+ 256,
1802
+ 768,
1803
+ 512
1804
+ ]);
1805
+ export { lookup, lookupOffsets };