@loaders.gl/parquet 3.4.6 → 4.0.0-alpha.10

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 (130) hide show
  1. package/dist/dist.min.js +27 -34
  2. package/dist/dist.min.js.map +3 -3
  3. package/dist/es5/index.js +6 -6
  4. package/dist/es5/index.js.map +1 -1
  5. package/dist/es5/lib/arrow/convert-row-group-to-columns.js.map +1 -1
  6. package/dist/es5/lib/arrow/convert-schema-from-parquet.js +58 -42
  7. package/dist/es5/lib/arrow/convert-schema-from-parquet.js.map +1 -1
  8. package/dist/es5/lib/arrow/convert-schema-to-parquet.js +33 -31
  9. package/dist/es5/lib/arrow/convert-schema-to-parquet.js.map +1 -1
  10. package/dist/es5/lib/geo/decode-geo-metadata.js +12 -8
  11. package/dist/es5/lib/geo/decode-geo-metadata.js.map +1 -1
  12. package/dist/es5/lib/parsers/parse-parquet-to-columns.js +11 -7
  13. package/dist/es5/lib/parsers/parse-parquet-to-columns.js.map +1 -1
  14. package/dist/es5/lib/parsers/parse-parquet-to-rows.js +51 -29
  15. package/dist/es5/lib/parsers/parse-parquet-to-rows.js.map +1 -1
  16. package/dist/es5/lib/wasm/parse-parquet-wasm.js +6 -6
  17. package/dist/es5/lib/wasm/parse-parquet-wasm.js.map +1 -1
  18. package/dist/es5/parquet-loader.js +16 -4
  19. package/dist/es5/parquet-loader.js.map +1 -1
  20. package/dist/es5/parquet-wasm-loader.js +1 -1
  21. package/dist/es5/parquet-wasm-loader.js.map +1 -1
  22. package/dist/es5/parquet-wasm-writer.js +1 -1
  23. package/dist/es5/parquet-wasm-writer.js.map +1 -1
  24. package/dist/es5/parquet-writer.js +1 -1
  25. package/dist/es5/parquet-writer.js.map +1 -1
  26. package/dist/es5/parquetjs/encoder/parquet-encoder.js.map +1 -1
  27. package/dist/es5/parquetjs/parser/decoders.js.map +1 -1
  28. package/dist/es5/parquetjs/parser/parquet-reader.js +1 -1
  29. package/dist/es5/parquetjs/parser/parquet-reader.js.map +1 -1
  30. package/dist/es5/parquetjs/schema/declare.js +4 -4
  31. package/dist/es5/parquetjs/schema/declare.js.map +1 -1
  32. package/dist/es5/parquetjs/schema/schema.js +7 -7
  33. package/dist/es5/parquetjs/schema/schema.js.map +1 -1
  34. package/dist/es5/parquetjs/schema/shred.js +117 -22
  35. package/dist/es5/parquetjs/schema/shred.js.map +1 -1
  36. package/dist/esm/index.js +5 -5
  37. package/dist/esm/index.js.map +1 -1
  38. package/dist/esm/lib/arrow/convert-row-group-to-columns.js.map +1 -1
  39. package/dist/esm/lib/arrow/convert-schema-from-parquet.js +57 -41
  40. package/dist/esm/lib/arrow/convert-schema-from-parquet.js.map +1 -1
  41. package/dist/esm/lib/arrow/convert-schema-to-parquet.js +33 -31
  42. package/dist/esm/lib/arrow/convert-schema-to-parquet.js.map +1 -1
  43. package/dist/esm/lib/geo/decode-geo-metadata.js +12 -8
  44. package/dist/esm/lib/geo/decode-geo-metadata.js.map +1 -1
  45. package/dist/esm/lib/parsers/parse-parquet-to-columns.js +12 -8
  46. package/dist/esm/lib/parsers/parse-parquet-to-columns.js.map +1 -1
  47. package/dist/esm/lib/parsers/parse-parquet-to-rows.js +14 -3
  48. package/dist/esm/lib/parsers/parse-parquet-to-rows.js.map +1 -1
  49. package/dist/esm/lib/wasm/parse-parquet-wasm.js +3 -3
  50. package/dist/esm/lib/wasm/parse-parquet-wasm.js.map +1 -1
  51. package/dist/esm/parquet-loader.js +14 -2
  52. package/dist/esm/parquet-loader.js.map +1 -1
  53. package/dist/esm/parquet-wasm-loader.js +1 -1
  54. package/dist/esm/parquet-wasm-loader.js.map +1 -1
  55. package/dist/esm/parquet-wasm-writer.js +1 -1
  56. package/dist/esm/parquet-wasm-writer.js.map +1 -1
  57. package/dist/esm/parquet-writer.js +1 -1
  58. package/dist/esm/parquet-writer.js.map +1 -1
  59. package/dist/esm/parquetjs/encoder/parquet-encoder.js.map +1 -1
  60. package/dist/esm/parquetjs/parser/decoders.js.map +1 -1
  61. package/dist/esm/parquetjs/parser/parquet-reader.js +2 -2
  62. package/dist/esm/parquetjs/parser/parquet-reader.js.map +1 -1
  63. package/dist/esm/parquetjs/schema/declare.js +1 -1
  64. package/dist/esm/parquetjs/schema/declare.js.map +1 -1
  65. package/dist/esm/parquetjs/schema/schema.js +6 -6
  66. package/dist/esm/parquetjs/schema/schema.js.map +1 -1
  67. package/dist/esm/parquetjs/schema/shred.js +108 -21
  68. package/dist/esm/parquetjs/schema/shred.js.map +1 -1
  69. package/dist/index.d.ts +8 -49
  70. package/dist/index.d.ts.map +1 -1
  71. package/dist/index.js +8 -6
  72. package/dist/lib/arrow/convert-row-group-to-columns.d.ts +2 -2
  73. package/dist/lib/arrow/convert-row-group-to-columns.d.ts.map +1 -1
  74. package/dist/lib/arrow/convert-schema-from-parquet.d.ts +4 -4
  75. package/dist/lib/arrow/convert-schema-from-parquet.d.ts.map +1 -1
  76. package/dist/lib/arrow/convert-schema-from-parquet.js +48 -44
  77. package/dist/lib/arrow/convert-schema-to-parquet.d.ts +1 -1
  78. package/dist/lib/arrow/convert-schema-to-parquet.d.ts.map +1 -1
  79. package/dist/lib/arrow/convert-schema-to-parquet.js +30 -31
  80. package/dist/lib/geo/decode-geo-metadata.js +12 -8
  81. package/dist/lib/parsers/parse-parquet-to-columns.d.ts +2 -2
  82. package/dist/lib/parsers/parse-parquet-to-columns.d.ts.map +1 -1
  83. package/dist/lib/parsers/parse-parquet-to-columns.js +13 -7
  84. package/dist/lib/parsers/parse-parquet-to-rows.d.ts +3 -2
  85. package/dist/lib/parsers/parse-parquet-to-rows.d.ts.map +1 -1
  86. package/dist/lib/parsers/parse-parquet-to-rows.js +16 -19
  87. package/dist/lib/wasm/parse-parquet-wasm.d.ts +3 -3
  88. package/dist/lib/wasm/parse-parquet-wasm.d.ts.map +1 -1
  89. package/dist/lib/wasm/parse-parquet-wasm.js +3 -3
  90. package/dist/parquet-loader.d.ts +3 -14
  91. package/dist/parquet-loader.d.ts.map +1 -1
  92. package/dist/parquet-loader.js +14 -2
  93. package/dist/parquet-worker.js +31 -38
  94. package/dist/parquet-worker.js.map +3 -3
  95. package/dist/parquet-writer.d.ts +2 -1
  96. package/dist/parquet-writer.d.ts.map +1 -1
  97. package/dist/parquet-writer.js +1 -0
  98. package/dist/parquetjs/encoder/parquet-encoder.d.ts +4 -4
  99. package/dist/parquetjs/encoder/parquet-encoder.d.ts.map +1 -1
  100. package/dist/parquetjs/parser/decoders.d.ts +2 -2
  101. package/dist/parquetjs/parser/decoders.d.ts.map +1 -1
  102. package/dist/parquetjs/parser/parquet-reader.d.ts +6 -6
  103. package/dist/parquetjs/parser/parquet-reader.d.ts.map +1 -1
  104. package/dist/parquetjs/parser/parquet-reader.js +1 -1
  105. package/dist/parquetjs/schema/declare.d.ts +6 -5
  106. package/dist/parquetjs/schema/declare.d.ts.map +1 -1
  107. package/dist/parquetjs/schema/declare.js +3 -3
  108. package/dist/parquetjs/schema/schema.d.ts +4 -4
  109. package/dist/parquetjs/schema/schema.d.ts.map +1 -1
  110. package/dist/parquetjs/schema/schema.js +5 -5
  111. package/dist/parquetjs/schema/shred.d.ts +17 -111
  112. package/dist/parquetjs/schema/shred.d.ts.map +1 -1
  113. package/dist/parquetjs/schema/shred.js +127 -119
  114. package/package.json +8 -8
  115. package/src/index.ts +32 -9
  116. package/src/lib/arrow/convert-row-group-to-columns.ts +2 -2
  117. package/src/lib/arrow/convert-schema-from-parquet.ts +56 -66
  118. package/src/lib/arrow/convert-schema-to-parquet.ts +32 -44
  119. package/src/lib/geo/decode-geo-metadata.ts +17 -8
  120. package/src/lib/parsers/parse-parquet-to-columns.ts +22 -11
  121. package/src/lib/parsers/parse-parquet-to-rows.ts +28 -23
  122. package/src/lib/wasm/parse-parquet-wasm.ts +7 -7
  123. package/src/parquet-loader.ts +25 -2
  124. package/src/parquet-writer.ts +4 -1
  125. package/src/parquetjs/encoder/parquet-encoder.ts +11 -10
  126. package/src/parquetjs/parser/decoders.ts +3 -3
  127. package/src/parquetjs/parser/parquet-reader.ts +7 -7
  128. package/src/parquetjs/schema/declare.ts +6 -5
  129. package/src/parquetjs/schema/schema.ts +8 -8
  130. package/src/parquetjs/schema/shred.ts +142 -103
@@ -1,48 +1,41 @@
1
- (()=>{var R1=Object.create;var pc=Object.defineProperty;var H1=Object.getOwnPropertyDescriptor;var M1=Object.getOwnPropertyNames;var z1=Object.getPrototypeOf,U1=Object.prototype.hasOwnProperty;var xj=t=>pc(t,"__esModule",{value:!0});var z=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),L1=(t,e)=>{xj(t);for(var r in e)pc(t,r,{get:e[r],enumerable:!0})},V1=(t,e,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of M1(e))!U1.call(t,n)&&n!=="default"&&pc(t,n,{get:()=>e[n],enumerable:!(r=H1(e,n))||r.enumerable});return t},Pe=t=>V1(xj(pc(t!=null?R1(z1(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var Hj=z((Dz,Rj)=>{var Ui={},el=4294967295,nx=9007199254740991;function dc(t){return t=~t,t<0&&(t=(t&2147483647)+2147483648),t}function mc(t){console.assert(t>-1&&t<=nx,"number out of range"),console.assert(Math.floor(t)===t,"number must be an integer");var e=0,r=t&4294967295,n=r<0?(t&2147483647)+2147483648:r;return t>el&&(e=(t-n)/(el+1)),[e,n]}function Pj(t){if(t>-1)return mc(t);var e=mc(-t),r=dc(e[0]),n=dc(e[1]);return n===el?(r+=1,n=0):n+=1,[r,n]}function bc(t,e,r){return r&&(t&2147483648)!=0?(t=dc(t),e=dc(e),console.assert(t<2097152,"number too small"),-(t*(el+1)+e+1)):(console.assert(t<2097152,"number too large"),t*(el+1)+e)}Ui.readInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return bc(r,n,!0)};Ui.readInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return bc(n,r,!0)};Ui.readUInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return bc(r,n,!1)};Ui.readUInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return bc(n,r,!1)};Ui.writeInt64BE=function(t,e,r){r=r||0;var n=Pj(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Ui.writeInt64LE=function(t,e,r){r=r||0;var n=Pj(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Ui.writeUInt64BE=function(t,e,r){r=r||0;var n=mc(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Ui.writeUInt64LE=function(t,e,r){r=r||0;var n=mc(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Rj.exports=Ui});var Cj=z((Pz,Vj)=>{Vj.exports=Lj;var Uj=128,jx=127,_x=~jx,qx=Math.pow(2,31);function Lj(t,e,r){e=e||[],r=r||0;for(var n=r;t>=qx;)e[r++]=t&255|Uj,t/=128;for(;t&_x;)e[r++]=t&255|Uj,t>>>=7;return e[r]=t|0,Lj.bytes=r-n+1,e}});var Kj=z((Rz,Yj)=>{Yj.exports=Wm;var vx=128,Wj=127;function Wm(t,e){var r=0,e=e||0,n=0,i=e,o,f=t.length;do{if(i>=f)throw Wm.bytes=0,new RangeError("Could not decode varint");o=t[i++],r+=n<28?(o&Wj)<<n:(o&Wj)*Math.pow(2,n),n+=7}while(o>=vx);return Wm.bytes=i-e,r}});var Jj=z((Hz,Gj)=>{var Tx=Math.pow(2,7),Bx=Math.pow(2,14),kx=Math.pow(2,21),Ix=Math.pow(2,28),Sx=Math.pow(2,35),xx=Math.pow(2,42),Ax=Math.pow(2,49),Ex=Math.pow(2,56),Ox=Math.pow(2,63);Gj.exports=function(t){return t<Tx?1:t<Bx?2:t<kx?3:t<Ix?4:t<Sx?5:t<xx?6:t<Ax?7:t<Ex?8:t<Ox?9:10}});var Xj=z((Mz,Zj)=>{Zj.exports={encode:Cj(),decode:Kj(),encodingLength:Jj()}});var Li=z(Rr=>{"use strict";var Fx=typeof Uint8Array!="undefined"&&typeof Uint16Array!="undefined"&&typeof Int32Array!="undefined";function Px(t,e){return Object.prototype.hasOwnProperty.call(t,e)}Rr.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var r=e.shift();if(!!r){if(typeof r!="object")throw new TypeError(r+"must be non-object");for(var n in r)Px(r,n)&&(t[n]=r[n])}}return t};Rr.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var Rx={arraySet:function(t,e,r,n,i){if(e.subarray&&t.subarray){t.set(e.subarray(r,r+n),i);return}for(var o=0;o<n;o++)t[i+o]=e[r+o]},flattenChunks:function(t){var e,r,n,i,o,f;for(n=0,e=0,r=t.length;e<r;e++)n+=t[e].length;for(f=new Uint8Array(n),i=0,e=0,r=t.length;e<r;e++)o=t[e],f.set(o,i),i+=o.length;return f}},Hx={arraySet:function(t,e,r,n,i){for(var o=0;o<n;o++)t[i+o]=e[r+o]},flattenChunks:function(t){return[].concat.apply([],t)}};Rr.setTyped=function(t){t?(Rr.Buf8=Uint8Array,Rr.Buf16=Uint16Array,Rr.Buf32=Int32Array,Rr.assign(Rr,Rx)):(Rr.Buf8=Array,Rr.Buf16=Array,Rr.Buf32=Array,Rr.assign(Rr,Hx))};Rr.setTyped(Fx)});var v0=z(_s=>{"use strict";var Mx=Li(),zx=4,t0=0,r0=1,Ux=2;function ys(t){for(var e=t.length;--e>=0;)t[e]=0}var Lx=0,n0=1,Vx=2,Cx=3,Wx=258,Gm=29,nl=256,il=nl+1+Gm,js=30,Jm=19,i0=2*il+1,If=15,Zm=16,Yx=7,Xm=256,o0=16,f0=17,s0=18,Qm=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],gc=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],Kx=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],a0=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],Gx=512,Vi=new Array((il+2)*2);ys(Vi);var ol=new Array(js*2);ys(ol);var fl=new Array(Gx);ys(fl);var sl=new Array(Wx-Cx+1);ys(sl);var $m=new Array(Gm);ys($m);var yc=new Array(js);ys(yc);function eb(t,e,r,n,i){this.static_tree=t,this.extra_bits=e,this.extra_base=r,this.elems=n,this.max_length=i,this.has_stree=t&&t.length}var l0,u0,c0;function tb(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function p0(t){return t<256?fl[t]:fl[256+(t>>>7)]}function al(t,e){t.pending_buf[t.pending++]=e&255,t.pending_buf[t.pending++]=e>>>8&255}function Wr(t,e,r){t.bi_valid>Zm-r?(t.bi_buf|=e<<t.bi_valid&65535,al(t,t.bi_buf),t.bi_buf=e>>Zm-t.bi_valid,t.bi_valid+=r-Zm):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=r)}function oi(t,e,r){Wr(t,r[e*2],r[e*2+1])}function d0(t,e){var r=0;do r|=t&1,t>>>=1,r<<=1;while(--e>0);return r>>>1}function Jx(t){t.bi_valid===16?(al(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=t.bi_buf&255,t.bi_buf>>=8,t.bi_valid-=8)}function Zx(t,e){var r=e.dyn_tree,n=e.max_code,i=e.stat_desc.static_tree,o=e.stat_desc.has_stree,f=e.stat_desc.extra_bits,s=e.stat_desc.extra_base,l=e.stat_desc.max_length,u,c,_,p,j,S,T=0;for(p=0;p<=If;p++)t.bl_count[p]=0;for(r[t.heap[t.heap_max]*2+1]=0,u=t.heap_max+1;u<i0;u++)c=t.heap[u],p=r[r[c*2+1]*2+1]+1,p>l&&(p=l,T++),r[c*2+1]=p,!(c>n)&&(t.bl_count[p]++,j=0,c>=s&&(j=f[c-s]),S=r[c*2],t.opt_len+=S*(p+j),o&&(t.static_len+=S*(i[c*2+1]+j)));if(T!==0){do{for(p=l-1;t.bl_count[p]===0;)p--;t.bl_count[p]--,t.bl_count[p+1]+=2,t.bl_count[l]--,T-=2}while(T>0);for(p=l;p!==0;p--)for(c=t.bl_count[p];c!==0;)_=t.heap[--u],!(_>n)&&(r[_*2+1]!==p&&(t.opt_len+=(p-r[_*2+1])*r[_*2],r[_*2+1]=p),c--)}}function m0(t,e,r){var n=new Array(If+1),i=0,o,f;for(o=1;o<=If;o++)n[o]=i=i+r[o-1]<<1;for(f=0;f<=e;f++){var s=t[f*2+1];s!==0&&(t[f*2]=d0(n[s]++,s))}}function Xx(){var t,e,r,n,i,o=new Array(If+1);for(r=0,n=0;n<Gm-1;n++)for($m[n]=r,t=0;t<1<<Qm[n];t++)sl[r++]=n;for(sl[r-1]=n,i=0,n=0;n<16;n++)for(yc[n]=i,t=0;t<1<<gc[n];t++)fl[i++]=n;for(i>>=7;n<js;n++)for(yc[n]=i<<7,t=0;t<1<<gc[n]-7;t++)fl[256+i++]=n;for(e=0;e<=If;e++)o[e]=0;for(t=0;t<=143;)Vi[t*2+1]=8,t++,o[8]++;for(;t<=255;)Vi[t*2+1]=9,t++,o[9]++;for(;t<=279;)Vi[t*2+1]=7,t++,o[7]++;for(;t<=287;)Vi[t*2+1]=8,t++,o[8]++;for(m0(Vi,il+1,o),t=0;t<js;t++)ol[t*2+1]=5,ol[t*2]=d0(t,5);l0=new eb(Vi,Qm,nl+1,il,If),u0=new eb(ol,gc,0,js,If),c0=new eb(new Array(0),Kx,0,Jm,Yx)}function b0(t){var e;for(e=0;e<il;e++)t.dyn_ltree[e*2]=0;for(e=0;e<js;e++)t.dyn_dtree[e*2]=0;for(e=0;e<Jm;e++)t.bl_tree[e*2]=0;t.dyn_ltree[Xm*2]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function w0(t){t.bi_valid>8?al(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function Qx(t,e,r,n){w0(t),n&&(al(t,r),al(t,~r)),Mx.arraySet(t.pending_buf,t.window,e,r,t.pending),t.pending+=r}function h0(t,e,r,n){var i=e*2,o=r*2;return t[i]<t[o]||t[i]===t[o]&&n[e]<=n[r]}function rb(t,e,r){for(var n=t.heap[r],i=r<<1;i<=t.heap_len&&(i<t.heap_len&&h0(e,t.heap[i+1],t.heap[i],t.depth)&&i++,!h0(e,n,t.heap[i],t.depth));)t.heap[r]=t.heap[i],r=i,i<<=1;t.heap[r]=n}function g0(t,e,r){var n,i,o=0,f,s;if(t.last_lit!==0)do n=t.pending_buf[t.d_buf+o*2]<<8|t.pending_buf[t.d_buf+o*2+1],i=t.pending_buf[t.l_buf+o],o++,n===0?oi(t,i,e):(f=sl[i],oi(t,f+nl+1,e),s=Qm[f],s!==0&&(i-=$m[f],Wr(t,i,s)),n--,f=p0(n),oi(t,f,r),s=gc[f],s!==0&&(n-=yc[f],Wr(t,n,s)));while(o<t.last_lit);oi(t,Xm,e)}function nb(t,e){var r=e.dyn_tree,n=e.stat_desc.static_tree,i=e.stat_desc.has_stree,o=e.stat_desc.elems,f,s,l=-1,u;for(t.heap_len=0,t.heap_max=i0,f=0;f<o;f++)r[f*2]!==0?(t.heap[++t.heap_len]=l=f,t.depth[f]=0):r[f*2+1]=0;for(;t.heap_len<2;)u=t.heap[++t.heap_len]=l<2?++l:0,r[u*2]=1,t.depth[u]=0,t.opt_len--,i&&(t.static_len-=n[u*2+1]);for(e.max_code=l,f=t.heap_len>>1;f>=1;f--)rb(t,r,f);u=o;do f=t.heap[1],t.heap[1]=t.heap[t.heap_len--],rb(t,r,1),s=t.heap[1],t.heap[--t.heap_max]=f,t.heap[--t.heap_max]=s,r[u*2]=r[f*2]+r[s*2],t.depth[u]=(t.depth[f]>=t.depth[s]?t.depth[f]:t.depth[s])+1,r[f*2+1]=r[s*2+1]=u,t.heap[1]=u++,rb(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],Zx(t,e),m0(r,l,t.bl_count)}function y0(t,e,r){var n,i=-1,o,f=e[0*2+1],s=0,l=7,u=4;for(f===0&&(l=138,u=3),e[(r+1)*2+1]=65535,n=0;n<=r;n++)o=f,f=e[(n+1)*2+1],!(++s<l&&o===f)&&(s<u?t.bl_tree[o*2]+=s:o!==0?(o!==i&&t.bl_tree[o*2]++,t.bl_tree[o0*2]++):s<=10?t.bl_tree[f0*2]++:t.bl_tree[s0*2]++,s=0,i=o,f===0?(l=138,u=3):o===f?(l=6,u=3):(l=7,u=4))}function j0(t,e,r){var n,i=-1,o,f=e[0*2+1],s=0,l=7,u=4;for(f===0&&(l=138,u=3),n=0;n<=r;n++)if(o=f,f=e[(n+1)*2+1],!(++s<l&&o===f)){if(s<u)do oi(t,o,t.bl_tree);while(--s!=0);else o!==0?(o!==i&&(oi(t,o,t.bl_tree),s--),oi(t,o0,t.bl_tree),Wr(t,s-3,2)):s<=10?(oi(t,f0,t.bl_tree),Wr(t,s-3,3)):(oi(t,s0,t.bl_tree),Wr(t,s-11,7));s=0,i=o,f===0?(l=138,u=3):o===f?(l=6,u=3):(l=7,u=4)}}function $x(t){var e;for(y0(t,t.dyn_ltree,t.l_desc.max_code),y0(t,t.dyn_dtree,t.d_desc.max_code),nb(t,t.bl_desc),e=Jm-1;e>=3&&t.bl_tree[a0[e]*2+1]===0;e--);return t.opt_len+=3*(e+1)+5+5+4,e}function eA(t,e,r,n){var i;for(Wr(t,e-257,5),Wr(t,r-1,5),Wr(t,n-4,4),i=0;i<n;i++)Wr(t,t.bl_tree[a0[i]*2+1],3);j0(t,t.dyn_ltree,e-1),j0(t,t.dyn_dtree,r-1)}function tA(t){var e=4093624447,r;for(r=0;r<=31;r++,e>>>=1)if(e&1&&t.dyn_ltree[r*2]!==0)return t0;if(t.dyn_ltree[9*2]!==0||t.dyn_ltree[10*2]!==0||t.dyn_ltree[13*2]!==0)return r0;for(r=32;r<nl;r++)if(t.dyn_ltree[r*2]!==0)return r0;return t0}var _0=!1;function rA(t){_0||(Xx(),_0=!0),t.l_desc=new tb(t.dyn_ltree,l0),t.d_desc=new tb(t.dyn_dtree,u0),t.bl_desc=new tb(t.bl_tree,c0),t.bi_buf=0,t.bi_valid=0,b0(t)}function q0(t,e,r,n){Wr(t,(Lx<<1)+(n?1:0),3),Qx(t,e,r,!0)}function nA(t){Wr(t,n0<<1,3),oi(t,Xm,Vi),Jx(t)}function iA(t,e,r,n){var i,o,f=0;t.level>0?(t.strm.data_type===Ux&&(t.strm.data_type=tA(t)),nb(t,t.l_desc),nb(t,t.d_desc),f=$x(t),i=t.opt_len+3+7>>>3,o=t.static_len+3+7>>>3,o<=i&&(i=o)):i=o=r+5,r+4<=i&&e!==-1?q0(t,e,r,n):t.strategy===zx||o===i?(Wr(t,(n0<<1)+(n?1:0),3),g0(t,Vi,ol)):(Wr(t,(Vx<<1)+(n?1:0),3),eA(t,t.l_desc.max_code+1,t.d_desc.max_code+1,f+1),g0(t,t.dyn_ltree,t.dyn_dtree)),b0(t),n&&w0(t)}function oA(t,e,r){return t.pending_buf[t.d_buf+t.last_lit*2]=e>>>8&255,t.pending_buf[t.d_buf+t.last_lit*2+1]=e&255,t.pending_buf[t.l_buf+t.last_lit]=r&255,t.last_lit++,e===0?t.dyn_ltree[r*2]++:(t.matches++,e--,t.dyn_ltree[(sl[r]+nl+1)*2]++,t.dyn_dtree[p0(e)*2]++),t.last_lit===t.lit_bufsize-1}_s._tr_init=rA;_s._tr_stored_block=q0;_s._tr_flush_block=iA;_s._tr_tally=oA;_s._tr_align=nA});var ib=z((eU,T0)=>{"use strict";function fA(t,e,r,n){for(var i=t&65535|0,o=t>>>16&65535|0,f=0;r!==0;){f=r>2e3?2e3:r,r-=f;do i=i+e[n++]|0,o=o+i|0;while(--f);i%=65521,o%=65521}return i|o<<16|0}T0.exports=fA});var ob=z((tU,B0)=>{"use strict";function sA(){for(var t,e=[],r=0;r<256;r++){t=r;for(var n=0;n<8;n++)t=t&1?3988292384^t>>>1:t>>>1;e[r]=t}return e}var aA=sA();function lA(t,e,r,n){var i=aA,o=n+r;t^=-1;for(var f=n;f<o;f++)t=t>>>8^i[(t^e[f])&255];return t^-1}B0.exports=lA});var jc=z((rU,k0)=>{"use strict";k0.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}});var F0=z(ai=>{"use strict";var Hr=Li(),pn=v0(),I0=ib(),So=ob(),uA=jc(),Sf=0,cA=1,pA=3,xo=4,S0=5,fi=0,x0=1,dn=-2,dA=-3,fb=-5,mA=-1,bA=1,_c=2,wA=3,hA=4,gA=0,yA=2,qc=8,jA=9,_A=15,qA=8,vA=29,TA=256,sb=TA+1+vA,BA=30,kA=19,IA=2*sb+1,SA=15,lt=3,Ao=258,Cn=Ao+lt+1,xA=32,vc=42,ab=69,Tc=73,Bc=91,kc=103,xf=113,ll=666,hr=1,ul=2,Af=3,qs=4,AA=3;function Eo(t,e){return t.msg=uA[e],e}function A0(t){return(t<<1)-(t>4?9:0)}function Oo(t){for(var e=t.length;--e>=0;)t[e]=0}function No(t){var e=t.state,r=e.pending;r>t.avail_out&&(r=t.avail_out),r!==0&&(Hr.arraySet(t.output,e.pending_buf,e.pending_out,r,t.next_out),t.next_out+=r,e.pending_out+=r,t.total_out+=r,t.avail_out-=r,e.pending-=r,e.pending===0&&(e.pending_out=0))}function Ir(t,e){pn._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,No(t.strm)}function ht(t,e){t.pending_buf[t.pending++]=e}function cl(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=e&255}function EA(t,e,r,n){var i=t.avail_in;return i>n&&(i=n),i===0?0:(t.avail_in-=i,Hr.arraySet(e,t.input,t.next_in,i,r),t.state.wrap===1?t.adler=I0(t.adler,e,i,r):t.state.wrap===2&&(t.adler=So(t.adler,e,i,r)),t.next_in+=i,t.total_in+=i,i)}function E0(t,e){var r=t.max_chain_length,n=t.strstart,i,o,f=t.prev_length,s=t.nice_match,l=t.strstart>t.w_size-Cn?t.strstart-(t.w_size-Cn):0,u=t.window,c=t.w_mask,_=t.prev,p=t.strstart+Ao,j=u[n+f-1],S=u[n+f];t.prev_length>=t.good_match&&(r>>=2),s>t.lookahead&&(s=t.lookahead);do if(i=e,!(u[i+f]!==S||u[i+f-1]!==j||u[i]!==u[n]||u[++i]!==u[n+1])){n+=2,i++;do;while(u[++n]===u[++i]&&u[++n]===u[++i]&&u[++n]===u[++i]&&u[++n]===u[++i]&&u[++n]===u[++i]&&u[++n]===u[++i]&&u[++n]===u[++i]&&u[++n]===u[++i]&&n<p);if(o=Ao-(p-n),n=p-Ao,o>f){if(t.match_start=e,f=o,o>=s)break;j=u[n+f-1],S=u[n+f]}}while((e=_[e&c])>l&&--r!=0);return f<=t.lookahead?f:t.lookahead}function Ef(t){var e=t.w_size,r,n,i,o,f;do{if(o=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-Cn)){Hr.arraySet(t.window,t.window,e,e,0),t.match_start-=e,t.strstart-=e,t.block_start-=e,n=t.hash_size,r=n;do i=t.head[--r],t.head[r]=i>=e?i-e:0;while(--n);n=e,r=n;do i=t.prev[--r],t.prev[r]=i>=e?i-e:0;while(--n);o+=e}if(t.strm.avail_in===0)break;if(n=EA(t.strm,t.window,t.strstart+t.lookahead,o),t.lookahead+=n,t.lookahead+t.insert>=lt)for(f=t.strstart-t.insert,t.ins_h=t.window[f],t.ins_h=(t.ins_h<<t.hash_shift^t.window[f+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[f+lt-1])&t.hash_mask,t.prev[f&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=f,f++,t.insert--,!(t.lookahead+t.insert<lt)););}while(t.lookahead<Cn&&t.strm.avail_in!==0)}function OA(t,e){var r=65535;for(r>t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(Ef(t),t.lookahead===0&&e===Sf)return hr;if(t.lookahead===0)break}t.strstart+=t.lookahead,t.lookahead=0;var n=t.block_start+r;if((t.strstart===0||t.strstart>=n)&&(t.lookahead=t.strstart-n,t.strstart=n,Ir(t,!1),t.strm.avail_out===0)||t.strstart-t.block_start>=t.w_size-Cn&&(Ir(t,!1),t.strm.avail_out===0))return hr}return t.insert=0,e===xo?(Ir(t,!0),t.strm.avail_out===0?Af:qs):(t.strstart>t.block_start&&(Ir(t,!1),t.strm.avail_out===0),hr)}function lb(t,e){for(var r,n;;){if(t.lookahead<Cn){if(Ef(t),t.lookahead<Cn&&e===Sf)return hr;if(t.lookahead===0)break}if(r=0,t.lookahead>=lt&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+lt-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),r!==0&&t.strstart-r<=t.w_size-Cn&&(t.match_length=E0(t,r)),t.match_length>=lt)if(n=pn._tr_tally(t,t.strstart-t.match_start,t.match_length-lt),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=lt){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+lt-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart;while(--t.match_length!=0);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else n=pn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(n&&(Ir(t,!1),t.strm.avail_out===0))return hr}return t.insert=t.strstart<lt-1?t.strstart:lt-1,e===xo?(Ir(t,!0),t.strm.avail_out===0?Af:qs):t.last_lit&&(Ir(t,!1),t.strm.avail_out===0)?hr:ul}function vs(t,e){for(var r,n,i;;){if(t.lookahead<Cn){if(Ef(t),t.lookahead<Cn&&e===Sf)return hr;if(t.lookahead===0)break}if(r=0,t.lookahead>=lt&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+lt-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=lt-1,r!==0&&t.prev_length<t.max_lazy_match&&t.strstart-r<=t.w_size-Cn&&(t.match_length=E0(t,r),t.match_length<=5&&(t.strategy===bA||t.match_length===lt&&t.strstart-t.match_start>4096)&&(t.match_length=lt-1)),t.prev_length>=lt&&t.match_length<=t.prev_length){i=t.strstart+t.lookahead-lt,n=pn._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-lt),t.lookahead-=t.prev_length-1,t.prev_length-=2;do++t.strstart<=i&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+lt-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart);while(--t.prev_length!=0);if(t.match_available=0,t.match_length=lt-1,t.strstart++,n&&(Ir(t,!1),t.strm.avail_out===0))return hr}else if(t.match_available){if(n=pn._tr_tally(t,0,t.window[t.strstart-1]),n&&Ir(t,!1),t.strstart++,t.lookahead--,t.strm.avail_out===0)return hr}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(n=pn._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<lt-1?t.strstart:lt-1,e===xo?(Ir(t,!0),t.strm.avail_out===0?Af:qs):t.last_lit&&(Ir(t,!1),t.strm.avail_out===0)?hr:ul}function NA(t,e){for(var r,n,i,o,f=t.window;;){if(t.lookahead<=Ao){if(Ef(t),t.lookahead<=Ao&&e===Sf)return hr;if(t.lookahead===0)break}if(t.match_length=0,t.lookahead>=lt&&t.strstart>0&&(i=t.strstart-1,n=f[i],n===f[++i]&&n===f[++i]&&n===f[++i])){o=t.strstart+Ao;do;while(n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&n===f[++i]&&i<o);t.match_length=Ao-(o-i),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=lt?(r=pn._tr_tally(t,1,t.match_length-lt),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=pn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(Ir(t,!1),t.strm.avail_out===0))return hr}return t.insert=0,e===xo?(Ir(t,!0),t.strm.avail_out===0?Af:qs):t.last_lit&&(Ir(t,!1),t.strm.avail_out===0)?hr:ul}function DA(t,e){for(var r;;){if(t.lookahead===0&&(Ef(t),t.lookahead===0)){if(e===Sf)return hr;break}if(t.match_length=0,r=pn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(Ir(t,!1),t.strm.avail_out===0))return hr}return t.insert=0,e===xo?(Ir(t,!0),t.strm.avail_out===0?Af:qs):t.last_lit&&(Ir(t,!1),t.strm.avail_out===0)?hr:ul}function si(t,e,r,n,i){this.good_length=t,this.max_lazy=e,this.nice_length=r,this.max_chain=n,this.func=i}var Ts;Ts=[new si(0,0,0,0,OA),new si(4,4,8,4,lb),new si(4,5,16,8,lb),new si(4,6,32,32,lb),new si(4,4,16,16,vs),new si(8,16,32,32,vs),new si(8,16,128,128,vs),new si(8,32,128,256,vs),new si(32,128,258,1024,vs),new si(32,258,258,4096,vs)];function FA(t){t.window_size=2*t.w_size,Oo(t.head),t.max_lazy_match=Ts[t.level].max_lazy,t.good_match=Ts[t.level].good_length,t.nice_match=Ts[t.level].nice_length,t.max_chain_length=Ts[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=lt-1,t.match_available=0,t.ins_h=0}function PA(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=qc,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Hr.Buf16(IA*2),this.dyn_dtree=new Hr.Buf16((2*BA+1)*2),this.bl_tree=new Hr.Buf16((2*kA+1)*2),Oo(this.dyn_ltree),Oo(this.dyn_dtree),Oo(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Hr.Buf16(SA+1),this.heap=new Hr.Buf16(2*sb+1),Oo(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Hr.Buf16(2*sb+1),Oo(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function O0(t){var e;return!t||!t.state?Eo(t,dn):(t.total_in=t.total_out=0,t.data_type=yA,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?vc:xf,t.adler=e.wrap===2?0:1,e.last_flush=Sf,pn._tr_init(e),fi)}function N0(t){var e=O0(t);return e===fi&&FA(t.state),e}function RA(t,e){return!t||!t.state||t.state.wrap!==2?dn:(t.state.gzhead=e,fi)}function D0(t,e,r,n,i,o){if(!t)return dn;var f=1;if(e===mA&&(e=6),n<0?(f=0,n=-n):n>15&&(f=2,n-=16),i<1||i>jA||r!==qc||n<8||n>15||e<0||e>9||o<0||o>hA)return Eo(t,dn);n===8&&(n=9);var s=new PA;return t.state=s,s.strm=t,s.wrap=f,s.gzhead=null,s.w_bits=n,s.w_size=1<<s.w_bits,s.w_mask=s.w_size-1,s.hash_bits=i+7,s.hash_size=1<<s.hash_bits,s.hash_mask=s.hash_size-1,s.hash_shift=~~((s.hash_bits+lt-1)/lt),s.window=new Hr.Buf8(s.w_size*2),s.head=new Hr.Buf16(s.hash_size),s.prev=new Hr.Buf16(s.w_size),s.lit_bufsize=1<<i+6,s.pending_buf_size=s.lit_bufsize*4,s.pending_buf=new Hr.Buf8(s.pending_buf_size),s.d_buf=1*s.lit_bufsize,s.l_buf=(1+2)*s.lit_bufsize,s.level=e,s.strategy=o,s.method=r,N0(t)}function HA(t,e){return D0(t,e,qc,_A,qA,gA)}function MA(t,e){var r,n,i,o;if(!t||!t.state||e>S0||e<0)return t?Eo(t,dn):dn;if(n=t.state,!t.output||!t.input&&t.avail_in!==0||n.status===ll&&e!==xo)return Eo(t,t.avail_out===0?fb:dn);if(n.strm=t,r=n.last_flush,n.last_flush=e,n.status===vc)if(n.wrap===2)t.adler=0,ht(n,31),ht(n,139),ht(n,8),n.gzhead?(ht(n,(n.gzhead.text?1:0)+(n.gzhead.hcrc?2:0)+(n.gzhead.extra?4:0)+(n.gzhead.name?8:0)+(n.gzhead.comment?16:0)),ht(n,n.gzhead.time&255),ht(n,n.gzhead.time>>8&255),ht(n,n.gzhead.time>>16&255),ht(n,n.gzhead.time>>24&255),ht(n,n.level===9?2:n.strategy>=_c||n.level<2?4:0),ht(n,n.gzhead.os&255),n.gzhead.extra&&n.gzhead.extra.length&&(ht(n,n.gzhead.extra.length&255),ht(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(t.adler=So(t.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=ab):(ht(n,0),ht(n,0),ht(n,0),ht(n,0),ht(n,0),ht(n,n.level===9?2:n.strategy>=_c||n.level<2?4:0),ht(n,AA),n.status=xf);else{var f=qc+(n.w_bits-8<<4)<<8,s=-1;n.strategy>=_c||n.level<2?s=0:n.level<6?s=1:n.level===6?s=2:s=3,f|=s<<6,n.strstart!==0&&(f|=xA),f+=31-f%31,n.status=xf,cl(n,f),n.strstart!==0&&(cl(n,t.adler>>>16),cl(n,t.adler&65535)),t.adler=1}if(n.status===ab)if(n.gzhead.extra){for(i=n.pending;n.gzindex<(n.gzhead.extra.length&65535)&&!(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=So(t.adler,n.pending_buf,n.pending-i,i)),No(t),i=n.pending,n.pending===n.pending_buf_size));)ht(n,n.gzhead.extra[n.gzindex]&255),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(t.adler=So(t.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=Tc)}else n.status=Tc;if(n.status===Tc)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=So(t.adler,n.pending_buf,n.pending-i,i)),No(t),i=n.pending,n.pending===n.pending_buf_size)){o=1;break}n.gzindex<n.gzhead.name.length?o=n.gzhead.name.charCodeAt(n.gzindex++)&255:o=0,ht(n,o)}while(o!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=So(t.adler,n.pending_buf,n.pending-i,i)),o===0&&(n.gzindex=0,n.status=Bc)}else n.status=Bc;if(n.status===Bc)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=So(t.adler,n.pending_buf,n.pending-i,i)),No(t),i=n.pending,n.pending===n.pending_buf_size)){o=1;break}n.gzindex<n.gzhead.comment.length?o=n.gzhead.comment.charCodeAt(n.gzindex++)&255:o=0,ht(n,o)}while(o!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=So(t.adler,n.pending_buf,n.pending-i,i)),o===0&&(n.status=kc)}else n.status=kc;if(n.status===kc&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&No(t),n.pending+2<=n.pending_buf_size&&(ht(n,t.adler&255),ht(n,t.adler>>8&255),t.adler=0,n.status=xf)):n.status=xf),n.pending!==0){if(No(t),t.avail_out===0)return n.last_flush=-1,fi}else if(t.avail_in===0&&A0(e)<=A0(r)&&e!==xo)return Eo(t,fb);if(n.status===ll&&t.avail_in!==0)return Eo(t,fb);if(t.avail_in!==0||n.lookahead!==0||e!==Sf&&n.status!==ll){var l=n.strategy===_c?DA(n,e):n.strategy===wA?NA(n,e):Ts[n.level].func(n,e);if((l===Af||l===qs)&&(n.status=ll),l===hr||l===Af)return t.avail_out===0&&(n.last_flush=-1),fi;if(l===ul&&(e===cA?pn._tr_align(n):e!==S0&&(pn._tr_stored_block(n,0,0,!1),e===pA&&(Oo(n.head),n.lookahead===0&&(n.strstart=0,n.block_start=0,n.insert=0))),No(t),t.avail_out===0))return n.last_flush=-1,fi}return e!==xo?fi:n.wrap<=0?x0:(n.wrap===2?(ht(n,t.adler&255),ht(n,t.adler>>8&255),ht(n,t.adler>>16&255),ht(n,t.adler>>24&255),ht(n,t.total_in&255),ht(n,t.total_in>>8&255),ht(n,t.total_in>>16&255),ht(n,t.total_in>>24&255)):(cl(n,t.adler>>>16),cl(n,t.adler&65535)),No(t),n.wrap>0&&(n.wrap=-n.wrap),n.pending!==0?fi:x0)}function zA(t){var e;return!t||!t.state?dn:(e=t.state.status,e!==vc&&e!==ab&&e!==Tc&&e!==Bc&&e!==kc&&e!==xf&&e!==ll?Eo(t,dn):(t.state=null,e===xf?Eo(t,dA):fi))}function UA(t,e){var r=e.length,n,i,o,f,s,l,u,c;if(!t||!t.state||(n=t.state,f=n.wrap,f===2||f===1&&n.status!==vc||n.lookahead))return dn;for(f===1&&(t.adler=I0(t.adler,e,r,0)),n.wrap=0,r>=n.w_size&&(f===0&&(Oo(n.head),n.strstart=0,n.block_start=0,n.insert=0),c=new Hr.Buf8(n.w_size),Hr.arraySet(c,e,r-n.w_size,n.w_size,0),e=c,r=n.w_size),s=t.avail_in,l=t.next_in,u=t.input,t.avail_in=r,t.next_in=0,t.input=e,Ef(n);n.lookahead>=lt;){i=n.strstart,o=n.lookahead-(lt-1);do n.ins_h=(n.ins_h<<n.hash_shift^n.window[i+lt-1])&n.hash_mask,n.prev[i&n.w_mask]=n.head[n.ins_h],n.head[n.ins_h]=i,i++;while(--o);n.strstart=i,n.lookahead=lt-1,Ef(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=lt-1,n.match_available=0,t.next_in=l,t.input=u,t.avail_in=s,n.wrap=f,fi}ai.deflateInit=HA;ai.deflateInit2=D0;ai.deflateReset=N0;ai.deflateResetKeep=O0;ai.deflateSetHeader=RA;ai.deflate=MA;ai.deflateEnd=zA;ai.deflateSetDictionary=UA;ai.deflateInfo="pako deflate (from Nodeca project)"});var ub=z(Bs=>{"use strict";var Ic=Li(),P0=!0,R0=!0;try{String.fromCharCode.apply(null,[0])}catch{P0=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{R0=!1}var pl=new Ic.Buf8(256);for(Ci=0;Ci<256;Ci++)pl[Ci]=Ci>=252?6:Ci>=248?5:Ci>=240?4:Ci>=224?3:Ci>=192?2:1;var Ci;pl[254]=pl[254]=1;Bs.string2buf=function(t){var e,r,n,i,o,f=t.length,s=0;for(i=0;i<f;i++)r=t.charCodeAt(i),(r&64512)==55296&&i+1<f&&(n=t.charCodeAt(i+1),(n&64512)==56320&&(r=65536+(r-55296<<10)+(n-56320),i++)),s+=r<128?1:r<2048?2:r<65536?3:4;for(e=new Ic.Buf8(s),o=0,i=0;o<s;i++)r=t.charCodeAt(i),(r&64512)==55296&&i+1<f&&(n=t.charCodeAt(i+1),(n&64512)==56320&&(r=65536+(r-55296<<10)+(n-56320),i++)),r<128?e[o++]=r:r<2048?(e[o++]=192|r>>>6,e[o++]=128|r&63):r<65536?(e[o++]=224|r>>>12,e[o++]=128|r>>>6&63,e[o++]=128|r&63):(e[o++]=240|r>>>18,e[o++]=128|r>>>12&63,e[o++]=128|r>>>6&63,e[o++]=128|r&63);return e};function H0(t,e){if(e<65534&&(t.subarray&&R0||!t.subarray&&P0))return String.fromCharCode.apply(null,Ic.shrinkBuf(t,e));for(var r="",n=0;n<e;n++)r+=String.fromCharCode(t[n]);return r}Bs.buf2binstring=function(t){return H0(t,t.length)};Bs.binstring2buf=function(t){for(var e=new Ic.Buf8(t.length),r=0,n=e.length;r<n;r++)e[r]=t.charCodeAt(r);return e};Bs.buf2string=function(t,e){var r,n,i,o,f=e||t.length,s=new Array(f*2);for(n=0,r=0;r<f;){if(i=t[r++],i<128){s[n++]=i;continue}if(o=pl[i],o>4){s[n++]=65533,r+=o-1;continue}for(i&=o===2?31:o===3?15:7;o>1&&r<f;)i=i<<6|t[r++]&63,o--;if(o>1){s[n++]=65533;continue}i<65536?s[n++]=i:(i-=65536,s[n++]=55296|i>>10&1023,s[n++]=56320|i&1023)}return H0(s,n)};Bs.utf8border=function(t,e){var r;for(e=e||t.length,e>t.length&&(e=t.length),r=e-1;r>=0&&(t[r]&192)==128;)r--;return r<0||r===0?e:r+pl[t[r]]>e?r:e}});var cb=z((oU,M0)=>{"use strict";function LA(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}M0.exports=LA});var V0=z(bl=>{"use strict";var dl=F0(),ml=Li(),pb=ub(),db=jc(),VA=cb(),z0=Object.prototype.toString,CA=0,mb=4,ks=0,U0=1,L0=2,WA=-1,YA=0,KA=8;function Of(t){if(!(this instanceof Of))return new Of(t);this.options=ml.assign({level:WA,method:KA,chunkSize:16384,windowBits:15,memLevel:8,strategy:YA,to:""},t||{});var e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new VA,this.strm.avail_out=0;var r=dl.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(r!==ks)throw new Error(db[r]);if(e.header&&dl.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(typeof e.dictionary=="string"?n=pb.string2buf(e.dictionary):z0.call(e.dictionary)==="[object ArrayBuffer]"?n=new Uint8Array(e.dictionary):n=e.dictionary,r=dl.deflateSetDictionary(this.strm,n),r!==ks)throw new Error(db[r]);this._dict_set=!0}}Of.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i,o;if(this.ended)return!1;o=e===~~e?e:e===!0?mb:CA,typeof t=="string"?r.input=pb.string2buf(t):z0.call(t)==="[object ArrayBuffer]"?r.input=new Uint8Array(t):r.input=t,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=new ml.Buf8(n),r.next_out=0,r.avail_out=n),i=dl.deflate(r,o),i!==U0&&i!==ks)return this.onEnd(i),this.ended=!0,!1;(r.avail_out===0||r.avail_in===0&&(o===mb||o===L0))&&(this.options.to==="string"?this.onData(pb.buf2binstring(ml.shrinkBuf(r.output,r.next_out))):this.onData(ml.shrinkBuf(r.output,r.next_out)))}while((r.avail_in>0||r.avail_out===0)&&i!==U0);return o===mb?(i=dl.deflateEnd(this.strm),this.onEnd(i),this.ended=!0,i===ks):(o===L0&&(this.onEnd(ks),r.avail_out=0),!0)};Of.prototype.onData=function(t){this.chunks.push(t)};Of.prototype.onEnd=function(t){t===ks&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=ml.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function bb(t,e){var r=new Of(e);if(r.push(t,!0),r.err)throw r.msg||db[r.err];return r.result}function GA(t,e){return e=e||{},e.raw=!0,bb(t,e)}function JA(t,e){return e=e||{},e.gzip=!0,bb(t,e)}bl.Deflate=Of;bl.deflate=bb;bl.deflateRaw=GA;bl.gzip=JA});var W0=z((sU,C0)=>{"use strict";var Sc=30,ZA=12;C0.exports=function(e,r){var n,i,o,f,s,l,u,c,_,p,j,S,T,U,W,L,te,ce,J,D,ae,Y,pe,y,g;n=e.state,i=e.next_in,y=e.input,o=i+(e.avail_in-5),f=e.next_out,g=e.output,s=f-(r-e.avail_out),l=f+(e.avail_out-257),u=n.dmax,c=n.wsize,_=n.whave,p=n.wnext,j=n.window,S=n.hold,T=n.bits,U=n.lencode,W=n.distcode,L=(1<<n.lenbits)-1,te=(1<<n.distbits)-1;e:do{T<15&&(S+=y[i++]<<T,T+=8,S+=y[i++]<<T,T+=8),ce=U[S&L];t:for(;;){if(J=ce>>>24,S>>>=J,T-=J,J=ce>>>16&255,J===0)g[f++]=ce&65535;else if(J&16){D=ce&65535,J&=15,J&&(T<J&&(S+=y[i++]<<T,T+=8),D+=S&(1<<J)-1,S>>>=J,T-=J),T<15&&(S+=y[i++]<<T,T+=8,S+=y[i++]<<T,T+=8),ce=W[S&te];r:for(;;){if(J=ce>>>24,S>>>=J,T-=J,J=ce>>>16&255,J&16){if(ae=ce&65535,J&=15,T<J&&(S+=y[i++]<<T,T+=8,T<J&&(S+=y[i++]<<T,T+=8)),ae+=S&(1<<J)-1,ae>u){e.msg="invalid distance too far back",n.mode=Sc;break e}if(S>>>=J,T-=J,J=f-s,ae>J){if(J=ae-J,J>_&&n.sane){e.msg="invalid distance too far back",n.mode=Sc;break e}if(Y=0,pe=j,p===0){if(Y+=c-J,J<D){D-=J;do g[f++]=j[Y++];while(--J);Y=f-ae,pe=g}}else if(p<J){if(Y+=c+p-J,J-=p,J<D){D-=J;do g[f++]=j[Y++];while(--J);if(Y=0,p<D){J=p,D-=J;do g[f++]=j[Y++];while(--J);Y=f-ae,pe=g}}}else if(Y+=p-J,J<D){D-=J;do g[f++]=j[Y++];while(--J);Y=f-ae,pe=g}for(;D>2;)g[f++]=pe[Y++],g[f++]=pe[Y++],g[f++]=pe[Y++],D-=3;D&&(g[f++]=pe[Y++],D>1&&(g[f++]=pe[Y++]))}else{Y=f-ae;do g[f++]=g[Y++],g[f++]=g[Y++],g[f++]=g[Y++],D-=3;while(D>2);D&&(g[f++]=g[Y++],D>1&&(g[f++]=g[Y++]))}}else if((J&64)==0){ce=W[(ce&65535)+(S&(1<<J)-1)];continue r}else{e.msg="invalid distance code",n.mode=Sc;break e}break}}else if((J&64)==0){ce=U[(ce&65535)+(S&(1<<J)-1)];continue t}else if(J&32){n.mode=ZA;break e}else{e.msg="invalid literal/length code",n.mode=Sc;break e}break}}while(i<o&&f<l);D=T>>3,i-=D,T-=D<<3,S&=(1<<T)-1,e.next_in=i,e.next_out=f,e.avail_in=i<o?5+(o-i):5-(i-o),e.avail_out=f<l?257+(l-f):257-(f-l),n.hold=S,n.bits=T}});var Q0=z((aU,X0)=>{"use strict";var Y0=Li(),Is=15,K0=852,G0=592,J0=0,wb=1,Z0=2,XA=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],QA=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],$A=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],eE=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];X0.exports=function(e,r,n,i,o,f,s,l){var u=l.bits,c=0,_=0,p=0,j=0,S=0,T=0,U=0,W=0,L=0,te=0,ce,J,D,ae,Y,pe=null,y=0,g,N=new Y0.Buf16(Is+1),b=new Y0.Buf16(Is+1),H=null,K=0,M,ie,E;for(c=0;c<=Is;c++)N[c]=0;for(_=0;_<i;_++)N[r[n+_]]++;for(S=u,j=Is;j>=1&&N[j]===0;j--);if(S>j&&(S=j),j===0)return o[f++]=1<<24|64<<16|0,o[f++]=1<<24|64<<16|0,l.bits=1,0;for(p=1;p<j&&N[p]===0;p++);for(S<p&&(S=p),W=1,c=1;c<=Is;c++)if(W<<=1,W-=N[c],W<0)return-1;if(W>0&&(e===J0||j!==1))return-1;for(b[1]=0,c=1;c<Is;c++)b[c+1]=b[c]+N[c];for(_=0;_<i;_++)r[n+_]!==0&&(s[b[r[n+_]]++]=_);if(e===J0?(pe=H=s,g=19):e===wb?(pe=XA,y-=257,H=QA,K-=257,g=256):(pe=$A,H=eE,g=-1),te=0,_=0,c=p,Y=f,T=S,U=0,D=-1,L=1<<S,ae=L-1,e===wb&&L>K0||e===Z0&&L>G0)return 1;for(;;){M=c-U,s[_]<g?(ie=0,E=s[_]):s[_]>g?(ie=H[K+s[_]],E=pe[y+s[_]]):(ie=32+64,E=0),ce=1<<c-U,J=1<<T,p=J;do J-=ce,o[Y+(te>>U)+J]=M<<24|ie<<16|E|0;while(J!==0);for(ce=1<<c-1;te&ce;)ce>>=1;if(ce!==0?(te&=ce-1,te+=ce):te=0,_++,--N[c]==0){if(c===j)break;c=r[n+s[_]]}if(c>S&&(te&ae)!==D){for(U===0&&(U=S),Y+=p,T=c-U,W=1<<T;T+U<j&&(W-=N[T+U],!(W<=0));)T++,W<<=1;if(L+=1<<T,e===wb&&L>K0||e===Z0&&L>G0)return 1;D=te&ae,o[D]=S<<24|T<<16|Y-f|0}}return te!==0&&(o[Y+te]=c-U<<24|64<<16|0),l.bits=S,0}});var N_=z(Wn=>{"use strict";var on=Li(),hb=ib(),li=ob(),tE=W0(),wl=Q0(),rE=0,$0=1,e_=2,t_=4,nE=5,xc=6,Nf=0,iE=1,oE=2,mn=-2,r_=-3,gb=-4,fE=-5,n_=8,i_=1,o_=2,f_=3,s_=4,a_=5,l_=6,u_=7,c_=8,p_=9,d_=10,Ac=11,Wi=12,yb=13,m_=14,jb=15,b_=16,w_=17,h_=18,g_=19,Ec=20,Oc=21,y_=22,j_=23,__=24,q_=25,v_=26,_b=27,T_=28,B_=29,Lt=30,qb=31,sE=32,aE=852,lE=592,uE=15,cE=uE;function k_(t){return(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24)}function pE(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new on.Buf16(320),this.work=new on.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function I_(t){var e;return!t||!t.state?mn:(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=e.wrap&1),e.mode=i_,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new on.Buf32(aE),e.distcode=e.distdyn=new on.Buf32(lE),e.sane=1,e.back=-1,Nf)}function S_(t){var e;return!t||!t.state?mn:(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,I_(t))}function x_(t,e){var r,n;return!t||!t.state||(n=t.state,e<0?(r=0,e=-e):(r=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15))?mn:(n.window!==null&&n.wbits!==e&&(n.window=null),n.wrap=r,n.wbits=e,S_(t))}function A_(t,e){var r,n;return t?(n=new pE,t.state=n,n.window=null,r=x_(t,e),r!==Nf&&(t.state=null),r):mn}function dE(t){return A_(t,cE)}var E_=!0,vb,Tb;function mE(t){if(E_){var e;for(vb=new on.Buf32(512),Tb=new on.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(wl($0,t.lens,0,288,vb,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;wl(e_,t.lens,0,32,Tb,0,t.work,{bits:5}),E_=!1}t.lencode=vb,t.lenbits=9,t.distcode=Tb,t.distbits=5}function O_(t,e,r,n){var i,o=t.state;return o.window===null&&(o.wsize=1<<o.wbits,o.wnext=0,o.whave=0,o.window=new on.Buf8(o.wsize)),n>=o.wsize?(on.arraySet(o.window,e,r-o.wsize,o.wsize,0),o.wnext=0,o.whave=o.wsize):(i=o.wsize-o.wnext,i>n&&(i=n),on.arraySet(o.window,e,r-n,i,o.wnext),n-=i,n?(on.arraySet(o.window,e,r-n,n,0),o.wnext=n,o.whave=o.wsize):(o.wnext+=i,o.wnext===o.wsize&&(o.wnext=0),o.whave<o.wsize&&(o.whave+=i))),0}function bE(t,e){var r,n,i,o,f,s,l,u,c,_,p,j,S,T,U=0,W,L,te,ce,J,D,ae,Y,pe=new on.Buf8(4),y,g,N=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&t.avail_in!==0)return mn;r=t.state,r.mode===Wi&&(r.mode=yb),f=t.next_out,i=t.output,l=t.avail_out,o=t.next_in,n=t.input,s=t.avail_in,u=r.hold,c=r.bits,_=s,p=l,Y=Nf;e:for(;;)switch(r.mode){case i_:if(r.wrap===0){r.mode=yb;break}for(;c<16;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if(r.wrap&2&&u===35615){r.check=0,pe[0]=u&255,pe[1]=u>>>8&255,r.check=li(r.check,pe,2,0),u=0,c=0,r.mode=o_;break}if(r.flags=0,r.head&&(r.head.done=!1),!(r.wrap&1)||(((u&255)<<8)+(u>>8))%31){t.msg="incorrect header check",r.mode=Lt;break}if((u&15)!==n_){t.msg="unknown compression method",r.mode=Lt;break}if(u>>>=4,c-=4,ae=(u&15)+8,r.wbits===0)r.wbits=ae;else if(ae>r.wbits){t.msg="invalid window size",r.mode=Lt;break}r.dmax=1<<ae,t.adler=r.check=1,r.mode=u&512?d_:Wi,u=0,c=0;break;case o_:for(;c<16;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if(r.flags=u,(r.flags&255)!==n_){t.msg="unknown compression method",r.mode=Lt;break}if(r.flags&57344){t.msg="unknown header flags set",r.mode=Lt;break}r.head&&(r.head.text=u>>8&1),r.flags&512&&(pe[0]=u&255,pe[1]=u>>>8&255,r.check=li(r.check,pe,2,0)),u=0,c=0,r.mode=f_;case f_:for(;c<32;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}r.head&&(r.head.time=u),r.flags&512&&(pe[0]=u&255,pe[1]=u>>>8&255,pe[2]=u>>>16&255,pe[3]=u>>>24&255,r.check=li(r.check,pe,4,0)),u=0,c=0,r.mode=s_;case s_:for(;c<16;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}r.head&&(r.head.xflags=u&255,r.head.os=u>>8),r.flags&512&&(pe[0]=u&255,pe[1]=u>>>8&255,r.check=li(r.check,pe,2,0)),u=0,c=0,r.mode=a_;case a_:if(r.flags&1024){for(;c<16;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}r.length=u,r.head&&(r.head.extra_len=u),r.flags&512&&(pe[0]=u&255,pe[1]=u>>>8&255,r.check=li(r.check,pe,2,0)),u=0,c=0}else r.head&&(r.head.extra=null);r.mode=l_;case l_:if(r.flags&1024&&(j=r.length,j>s&&(j=s),j&&(r.head&&(ae=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),on.arraySet(r.head.extra,n,o,j,ae)),r.flags&512&&(r.check=li(r.check,n,j,o)),s-=j,o+=j,r.length-=j),r.length))break e;r.length=0,r.mode=u_;case u_:if(r.flags&2048){if(s===0)break e;j=0;do ae=n[o+j++],r.head&&ae&&r.length<65536&&(r.head.name+=String.fromCharCode(ae));while(ae&&j<s);if(r.flags&512&&(r.check=li(r.check,n,j,o)),s-=j,o+=j,ae)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=c_;case c_:if(r.flags&4096){if(s===0)break e;j=0;do ae=n[o+j++],r.head&&ae&&r.length<65536&&(r.head.comment+=String.fromCharCode(ae));while(ae&&j<s);if(r.flags&512&&(r.check=li(r.check,n,j,o)),s-=j,o+=j,ae)break e}else r.head&&(r.head.comment=null);r.mode=p_;case p_:if(r.flags&512){for(;c<16;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if(u!==(r.check&65535)){t.msg="header crc mismatch",r.mode=Lt;break}u=0,c=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=Wi;break;case d_:for(;c<32;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}t.adler=r.check=k_(u),u=0,c=0,r.mode=Ac;case Ac:if(r.havedict===0)return t.next_out=f,t.avail_out=l,t.next_in=o,t.avail_in=s,r.hold=u,r.bits=c,oE;t.adler=r.check=1,r.mode=Wi;case Wi:if(e===nE||e===xc)break e;case yb:if(r.last){u>>>=c&7,c-=c&7,r.mode=_b;break}for(;c<3;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}switch(r.last=u&1,u>>>=1,c-=1,u&3){case 0:r.mode=m_;break;case 1:if(mE(r),r.mode=Ec,e===xc){u>>>=2,c-=2;break e}break;case 2:r.mode=w_;break;case 3:t.msg="invalid block type",r.mode=Lt}u>>>=2,c-=2;break;case m_:for(u>>>=c&7,c-=c&7;c<32;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if((u&65535)!=(u>>>16^65535)){t.msg="invalid stored block lengths",r.mode=Lt;break}if(r.length=u&65535,u=0,c=0,r.mode=jb,e===xc)break e;case jb:r.mode=b_;case b_:if(j=r.length,j){if(j>s&&(j=s),j>l&&(j=l),j===0)break e;on.arraySet(i,n,o,j,f),s-=j,o+=j,l-=j,f+=j,r.length-=j;break}r.mode=Wi;break;case w_:for(;c<14;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if(r.nlen=(u&31)+257,u>>>=5,c-=5,r.ndist=(u&31)+1,u>>>=5,c-=5,r.ncode=(u&15)+4,u>>>=4,c-=4,r.nlen>286||r.ndist>30){t.msg="too many length or distance symbols",r.mode=Lt;break}r.have=0,r.mode=h_;case h_:for(;r.have<r.ncode;){for(;c<3;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}r.lens[N[r.have++]]=u&7,u>>>=3,c-=3}for(;r.have<19;)r.lens[N[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,y={bits:r.lenbits},Y=wl(rE,r.lens,0,19,r.lencode,0,r.work,y),r.lenbits=y.bits,Y){t.msg="invalid code lengths set",r.mode=Lt;break}r.have=0,r.mode=g_;case g_:for(;r.have<r.nlen+r.ndist;){for(;U=r.lencode[u&(1<<r.lenbits)-1],W=U>>>24,L=U>>>16&255,te=U&65535,!(W<=c);){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if(te<16)u>>>=W,c-=W,r.lens[r.have++]=te;else{if(te===16){for(g=W+2;c<g;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if(u>>>=W,c-=W,r.have===0){t.msg="invalid bit length repeat",r.mode=Lt;break}ae=r.lens[r.have-1],j=3+(u&3),u>>>=2,c-=2}else if(te===17){for(g=W+3;c<g;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}u>>>=W,c-=W,ae=0,j=3+(u&7),u>>>=3,c-=3}else{for(g=W+7;c<g;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}u>>>=W,c-=W,ae=0,j=11+(u&127),u>>>=7,c-=7}if(r.have+j>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=Lt;break}for(;j--;)r.lens[r.have++]=ae}}if(r.mode===Lt)break;if(r.lens[256]===0){t.msg="invalid code -- missing end-of-block",r.mode=Lt;break}if(r.lenbits=9,y={bits:r.lenbits},Y=wl($0,r.lens,0,r.nlen,r.lencode,0,r.work,y),r.lenbits=y.bits,Y){t.msg="invalid literal/lengths set",r.mode=Lt;break}if(r.distbits=6,r.distcode=r.distdyn,y={bits:r.distbits},Y=wl(e_,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,y),r.distbits=y.bits,Y){t.msg="invalid distances set",r.mode=Lt;break}if(r.mode=Ec,e===xc)break e;case Ec:r.mode=Oc;case Oc:if(s>=6&&l>=258){t.next_out=f,t.avail_out=l,t.next_in=o,t.avail_in=s,r.hold=u,r.bits=c,tE(t,p),f=t.next_out,i=t.output,l=t.avail_out,o=t.next_in,n=t.input,s=t.avail_in,u=r.hold,c=r.bits,r.mode===Wi&&(r.back=-1);break}for(r.back=0;U=r.lencode[u&(1<<r.lenbits)-1],W=U>>>24,L=U>>>16&255,te=U&65535,!(W<=c);){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if(L&&(L&240)==0){for(ce=W,J=L,D=te;U=r.lencode[D+((u&(1<<ce+J)-1)>>ce)],W=U>>>24,L=U>>>16&255,te=U&65535,!(ce+W<=c);){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}u>>>=ce,c-=ce,r.back+=ce}if(u>>>=W,c-=W,r.back+=W,r.length=te,L===0){r.mode=v_;break}if(L&32){r.back=-1,r.mode=Wi;break}if(L&64){t.msg="invalid literal/length code",r.mode=Lt;break}r.extra=L&15,r.mode=y_;case y_:if(r.extra){for(g=r.extra;c<g;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}r.length+=u&(1<<r.extra)-1,u>>>=r.extra,c-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=j_;case j_:for(;U=r.distcode[u&(1<<r.distbits)-1],W=U>>>24,L=U>>>16&255,te=U&65535,!(W<=c);){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if((L&240)==0){for(ce=W,J=L,D=te;U=r.distcode[D+((u&(1<<ce+J)-1)>>ce)],W=U>>>24,L=U>>>16&255,te=U&65535,!(ce+W<=c);){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}u>>>=ce,c-=ce,r.back+=ce}if(u>>>=W,c-=W,r.back+=W,L&64){t.msg="invalid distance code",r.mode=Lt;break}r.offset=te,r.extra=L&15,r.mode=__;case __:if(r.extra){for(g=r.extra;c<g;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}r.offset+=u&(1<<r.extra)-1,u>>>=r.extra,c-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=Lt;break}r.mode=q_;case q_:if(l===0)break e;if(j=p-l,r.offset>j){if(j=r.offset-j,j>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=Lt;break}j>r.wnext?(j-=r.wnext,S=r.wsize-j):S=r.wnext-j,j>r.length&&(j=r.length),T=r.window}else T=i,S=f-r.offset,j=r.length;j>l&&(j=l),l-=j,r.length-=j;do i[f++]=T[S++];while(--j);r.length===0&&(r.mode=Oc);break;case v_:if(l===0)break e;i[f++]=r.length,l--,r.mode=Oc;break;case _b:if(r.wrap){for(;c<32;){if(s===0)break e;s--,u|=n[o++]<<c,c+=8}if(p-=l,t.total_out+=p,r.total+=p,p&&(t.adler=r.check=r.flags?li(r.check,i,p,f-p):hb(r.check,i,p,f-p)),p=l,(r.flags?u:k_(u))!==r.check){t.msg="incorrect data check",r.mode=Lt;break}u=0,c=0}r.mode=T_;case T_:if(r.wrap&&r.flags){for(;c<32;){if(s===0)break e;s--,u+=n[o++]<<c,c+=8}if(u!==(r.total&4294967295)){t.msg="incorrect length check",r.mode=Lt;break}u=0,c=0}r.mode=B_;case B_:Y=iE;break e;case Lt:Y=r_;break e;case qb:return gb;case sE:default:return mn}return t.next_out=f,t.avail_out=l,t.next_in=o,t.avail_in=s,r.hold=u,r.bits=c,(r.wsize||p!==t.avail_out&&r.mode<Lt&&(r.mode<_b||e!==t_))&&O_(t,t.output,t.next_out,p-t.avail_out)?(r.mode=qb,gb):(_-=t.avail_in,p-=t.avail_out,t.total_in+=_,t.total_out+=p,r.total+=p,r.wrap&&p&&(t.adler=r.check=r.flags?li(r.check,i,p,t.next_out-p):hb(r.check,i,p,t.next_out-p)),t.data_type=r.bits+(r.last?64:0)+(r.mode===Wi?128:0)+(r.mode===Ec||r.mode===jb?256:0),(_===0&&p===0||e===t_)&&Y===Nf&&(Y=fE),Y)}function wE(t){if(!t||!t.state)return mn;var e=t.state;return e.window&&(e.window=null),t.state=null,Nf}function hE(t,e){var r;return!t||!t.state||(r=t.state,(r.wrap&2)==0)?mn:(r.head=e,e.done=!1,Nf)}function gE(t,e){var r=e.length,n,i,o;return!t||!t.state||(n=t.state,n.wrap!==0&&n.mode!==Ac)?mn:n.mode===Ac&&(i=1,i=hb(i,e,r,0),i!==n.check)?r_:(o=O_(t,e,r,r),o?(n.mode=qb,gb):(n.havedict=1,Nf))}Wn.inflateReset=S_;Wn.inflateReset2=x_;Wn.inflateResetKeep=I_;Wn.inflateInit=dE;Wn.inflateInit2=A_;Wn.inflate=bE;Wn.inflateEnd=wE;Wn.inflateGetHeader=hE;Wn.inflateSetDictionary=gE;Wn.inflateInfo="pako inflate (from Nodeca project)"});var Bb=z((uU,D_)=>{"use strict";D_.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}});var P_=z((cU,F_)=>{"use strict";function yE(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}F_.exports=yE});var H_=z(gl=>{"use strict";var Ss=N_(),hl=Li(),Nc=ub(),rr=Bb(),kb=jc(),jE=cb(),_E=P_(),R_=Object.prototype.toString;function Df(t){if(!(this instanceof Df))return new Df(t);this.options=hl.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,e.windowBits===0&&(e.windowBits=-15)),e.windowBits>=0&&e.windowBits<16&&!(t&&t.windowBits)&&(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&(e.windowBits&15)==0&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new jE,this.strm.avail_out=0;var r=Ss.inflateInit2(this.strm,e.windowBits);if(r!==rr.Z_OK)throw new Error(kb[r]);if(this.header=new _E,Ss.inflateGetHeader(this.strm,this.header),e.dictionary&&(typeof e.dictionary=="string"?e.dictionary=Nc.string2buf(e.dictionary):R_.call(e.dictionary)==="[object ArrayBuffer]"&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(r=Ss.inflateSetDictionary(this.strm,e.dictionary),r!==rr.Z_OK)))throw new Error(kb[r])}Df.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i=this.options.dictionary,o,f,s,l,u,c=!1;if(this.ended)return!1;f=e===~~e?e:e===!0?rr.Z_FINISH:rr.Z_NO_FLUSH,typeof t=="string"?r.input=Nc.binstring2buf(t):R_.call(t)==="[object ArrayBuffer]"?r.input=new Uint8Array(t):r.input=t,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=new hl.Buf8(n),r.next_out=0,r.avail_out=n),o=Ss.inflate(r,rr.Z_NO_FLUSH),o===rr.Z_NEED_DICT&&i&&(o=Ss.inflateSetDictionary(this.strm,i)),o===rr.Z_BUF_ERROR&&c===!0&&(o=rr.Z_OK,c=!1),o!==rr.Z_STREAM_END&&o!==rr.Z_OK)return this.onEnd(o),this.ended=!0,!1;r.next_out&&(r.avail_out===0||o===rr.Z_STREAM_END||r.avail_in===0&&(f===rr.Z_FINISH||f===rr.Z_SYNC_FLUSH))&&(this.options.to==="string"?(s=Nc.utf8border(r.output,r.next_out),l=r.next_out-s,u=Nc.buf2string(r.output,s),r.next_out=l,r.avail_out=n-l,l&&hl.arraySet(r.output,r.output,s,l,0),this.onData(u)):this.onData(hl.shrinkBuf(r.output,r.next_out))),r.avail_in===0&&r.avail_out===0&&(c=!0)}while((r.avail_in>0||r.avail_out===0)&&o!==rr.Z_STREAM_END);return o===rr.Z_STREAM_END&&(f=rr.Z_FINISH),f===rr.Z_FINISH?(o=Ss.inflateEnd(this.strm),this.onEnd(o),this.ended=!0,o===rr.Z_OK):(f===rr.Z_SYNC_FLUSH&&(this.onEnd(rr.Z_OK),r.avail_out=0),!0)};Df.prototype.onData=function(t){this.chunks.push(t)};Df.prototype.onEnd=function(t){t===rr.Z_OK&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=hl.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function Ib(t,e){var r=new Df(e);if(r.push(t,!0),r.err)throw r.msg||kb[r.err];return r.result}function qE(t,e){return e=e||{},e.raw=!0,Ib(t,e)}gl.Inflate=Df;gl.inflate=Ib;gl.inflateRaw=qE;gl.ungzip=Ib});var U_=z((dU,z_)=>{"use strict";var vE=Li().assign,TE=V0(),BE=H_(),kE=Bb(),M_={};vE(M_,TE,BE,kE);z_.exports=M_});var Sb=z(()=>{});var V_=z(L_=>{"use strict";var SE=[0,255,65535,16777215,4294967295];function xE(t,e,r,n,i){var o;for(o=0;o<i;o++)r[n+o]=t[e+o]}function AE(t,e,r,n){var i;for(i=0;i<n;i++)t[e+i]=t[e-r+i]}function Ab(t){this.array=t,this.pos=0}Ab.prototype.readUncompressedLength=function(){for(var t=0,e=0,r,n;e<32&&this.pos<this.array.length;){if(r=this.array[this.pos],this.pos+=1,n=r&127,n<<e>>>e!==n)return-1;if(t|=n<<e,r<128)return t;e+=7}return-1};Ab.prototype.uncompressToBuffer=function(t){for(var e=this.array,r=e.length,n=this.pos,i=0,o,f,s,l;n<e.length;)if(o=e[n],n+=1,(o&3)==0){if(f=(o>>>2)+1,f>60){if(n+3>=r)return!1;s=f-60,f=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),f=(f&SE[s])+1,n+=s}if(n+f>r)return!1;xE(e,n,t,i,f),n+=f,i+=f}else{switch(o&3){case 1:f=(o>>>2&7)+4,l=e[n]+(o>>>5<<8),n+=1;break;case 2:if(n+1>=r)return!1;f=(o>>>2)+1,l=e[n]+(e[n+1]<<8),n+=2;break;case 3:if(n+3>=r)return!1;f=(o>>>2)+1,l=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),n+=4;break;default:break}if(l===0||l>i)return!1;AE(t,i,l,f),i+=f}return!0};L_.SnappyDecompressor=Ab});var G_=z(K_=>{"use strict";var EE=16,OE=1<<EE,C_=14,Eb=new Array(C_+1);function ql(t,e){return t*506832829>>>e}function vl(t,e){return t[e]+(t[e+1]<<8)+(t[e+2]<<16)+(t[e+3]<<24)}function W_(t,e,r){return t[e]===t[r]&&t[e+1]===t[r+1]&&t[e+2]===t[r+2]&&t[e+3]===t[r+3]}function NE(t,e,r,n,i){var o;for(o=0;o<i;o++)r[n+o]=t[e+o]}function Y_(t,e,r,n,i){return r<=60?(n[i]=r-1<<2,i+=1):r<256?(n[i]=60<<2,n[i+1]=r-1,i+=2):(n[i]=61<<2,n[i+1]=r-1&255,n[i+2]=r-1>>>8,i+=3),NE(t,e,n,i,r),i+r}function Ob(t,e,r,n){return n<12&&r<2048?(t[e]=1+(n-4<<2)+(r>>>8<<5),t[e+1]=r&255,e+2):(t[e]=2+(n-1<<2),t[e+1]=r&255,t[e+2]=r>>>8,e+3)}function DE(t,e,r,n){for(;n>=68;)e=Ob(t,e,r,64),n-=64;return n>64&&(e=Ob(t,e,r,60),n-=60),Ob(t,e,r,n)}function FE(t,e,r,n,i){for(var o=1;1<<o<=r&&o<=C_;)o+=1;o-=1;var f=32-o;typeof Eb[o]=="undefined"&&(Eb[o]=new Uint16Array(1<<o));var s=Eb[o],l;for(l=0;l<s.length;l++)s[l]=0;var u=e+r,c,_=e,p=e,j,S,T,U,W,L,te,ce,J,D,ae,Y=!0,pe=15;if(r>=pe)for(c=u-pe,e+=1,S=ql(vl(t,e),f);Y;){W=32,T=e;do{if(e=T,j=S,L=W>>>5,W+=1,T=e+L,e>c){Y=!1;break}S=ql(vl(t,T),f),U=_+s[j],s[j]=e-_}while(!W_(t,e,U));if(!Y)break;i=Y_(t,p,e-p,n,i);do{for(te=e,ce=4;e+ce<u&&t[e+ce]===t[U+ce];)ce+=1;if(e+=ce,J=te-U,i=DE(n,i,J,ce),p=e,e>=c){Y=!1;break}D=ql(vl(t,e-1),f),s[D]=e-1-_,ae=ql(vl(t,e),f),U=_+s[ae],s[ae]=e-_}while(W_(t,e,U));if(!Y)break;e+=1,S=ql(vl(t,e),f)}return p<u&&(i=Y_(t,p,u-p,n,i)),i}function PE(t,e,r){do e[r]=t&127,t=t>>>7,t>0&&(e[r]+=128),r+=1;while(t>0);return r}function Nb(t){this.array=t}Nb.prototype.maxCompressedLength=function(){var t=this.array.length;return 32+t+Math.floor(t/6)};Nb.prototype.compressToBuffer=function(t){var e=this.array,r=e.length,n=0,i=0,o;for(i=PE(r,t,i);n<r;)o=Math.min(r-n,OE),i=FE(e,n,o,t,i),n+=o;return i};K_.SnappyCompressor=Nb});var Q_=z(Db=>{"use strict";function J_(){return typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node!="undefined"}function Hc(t){return t instanceof Uint8Array&&(!J_()||!Buffer.isBuffer(t))}function Mc(t){return t instanceof ArrayBuffer}function Z_(t){return J_()?Buffer.isBuffer(t):!1}var RE=V_().SnappyDecompressor,HE=G_().SnappyCompressor,X_="Argument compressed must be type of ArrayBuffer, Buffer, or Uint8Array";function ME(t){if(!Hc(t)&&!Mc(t)&&!Z_(t))throw new TypeError(X_);var e=!1,r=!1;Hc(t)?e=!0:Mc(t)&&(r=!0,t=new Uint8Array(t));var n=new RE(t),i=n.readUncompressedLength();if(i===-1)throw new Error("Invalid Snappy bitstream");var o,f;if(e){if(o=new Uint8Array(i),!n.uncompressToBuffer(o))throw new Error("Invalid Snappy bitstream")}else if(r){if(o=new ArrayBuffer(i),f=new Uint8Array(o),!n.uncompressToBuffer(f))throw new Error("Invalid Snappy bitstream")}else if(o=Buffer.alloc(i),!n.uncompressToBuffer(o))throw new Error("Invalid Snappy bitstream");return o}function zE(t){if(!Hc(t)&&!Mc(t)&&!Z_(t))throw new TypeError(X_);var e=!1,r=!1;Hc(t)?e=!0:Mc(t)&&(r=!0,t=new Uint8Array(t));var n=new HE(t),i=n.maxCompressedLength(),o,f,s;if(e?(o=new Uint8Array(i),s=n.compressToBuffer(o)):r?(o=new ArrayBuffer(i),f=new Uint8Array(o),s=n.compressToBuffer(f)):(o=Buffer.alloc(i),s=n.compressToBuffer(o)),!o.slice){var l=new Uint8Array(Array.prototype.slice.call(o,0,s));if(e)return l;if(r)return l.buffer;throw new Error("Not implemented")}return o.slice(0,s)}Db.uncompress=ME;Db.compress=zE});var Fb=z(xs=>{xs.hashU32=function(e){return e=e|0,e=e+2127912214+(e<<12)|0,e=e^-949894596^e>>>19,e=e+374761393+(e<<5)|0,e=e+-744332180^e<<9,e=e+-42973499+(e<<3)|0,e^-1252372727^e>>>16|0};xs.readU64=function(e,r){var n=0;return n|=e[r++]<<0,n|=e[r++]<<8,n|=e[r++]<<16,n|=e[r++]<<24,n|=e[r++]<<32,n|=e[r++]<<40,n|=e[r++]<<48,n|=e[r++]<<56,n};xs.readU32=function(e,r){var n=0;return n|=e[r++]<<0,n|=e[r++]<<8,n|=e[r++]<<16,n|=e[r++]<<24,n};xs.writeU32=function(e,r,n){e[r++]=n>>0&255,e[r++]=n>>8&255,e[r++]=n>>16&255,e[r++]=n>>24&255};xs.imul=function(e,r){var n=e>>>16,i=e&65535,o=r>>>16,f=r&65535;return i*f+(n*f+i*o<<16)|0}});var oq=z(iq=>{var ui=Fb(),Pf=2654435761,Rf=2246822519,tq=3266489917,LE=668265263,rq=374761393;function Vc(t,e){return t=t|0,e=e|0,t>>>(32-e|0)|t<<e|0}function nq(t,e,r){return t=t|0,e=e|0,r=r|0,ui.imul(t>>>(32-e|0)|t<<e,r)|0}function Pb(t,e){return t=t|0,e=e|0,t>>>e^t|0}function Bl(t,e,r,n,i){return nq(ui.imul(e,r)+t,n,i)}function VE(t,e,r){return nq(t+ui.imul(e[r],rq),11,Pf)}function CE(t,e,r){return Bl(t,ui.readU32(e,r),tq,17,LE)}function WE(t,e,r){return[Bl(t[0],ui.readU32(e,r+0),Rf,13,Pf),Bl(t[1],ui.readU32(e,r+4),Rf,13,Pf),Bl(t[2],ui.readU32(e,r+8),Rf,13,Pf),Bl(t[3],ui.readU32(e,r+12),Rf,13,Pf)]}function YE(t,e,r,n){var i,o;if(o=n,n>=16){for(i=[t+Pf+Rf,t+Rf,t,t-Pf];n>=16;)i=WE(i,e,r),r+=16,n-=16;i=Vc(i[0],1)+Vc(i[1],7)+Vc(i[2],12)+Vc(i[3],18)+o}else i=t+rq+n>>>0;for(;n>=4;)i=CE(i,e,r),r+=4,n-=4;for(;n>0;)i=VE(i,e,r),r++,n--;return i=Pb(ui.imul(Pb(ui.imul(Pb(i,15),Rf),13),tq),16),i>>>0}iq.hash=YE});var mq=z(_r=>{var KE=oq(),bn=Fb(),Cc=4,GE=13,fq=5,Rb=6,Wc=1<<16,kl=4,Yc=(1<<kl)-1,JE=4,As=(1<<JE)-1,sq=pq(5<<20),Hb=XE(),Mb=407708164,ZE=4,aq=8,lq=16,zb=64,Ub=192,Kc=2147483648,uq=7,Lb=4,cq=7,Gc={4:65536,5:262144,6:1048576,7:4194304};function XE(){try{return new Uint32Array(Wc)}catch{for(var t=new Array(Wc),e=0;e<Wc;e++)t[e]=0;return t}}function QE(t){for(var e=0;e<Wc;e++)Hb[e]=0}function pq(t){try{return new Uint8Array(t)}catch{for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e}}function dq(t,e,r){if(typeof t.buffer!==void 0){if(Uint8Array.prototype.slice)return t.slice(e,r);var n=t.length;e=e|0,e=e<0?Math.max(n+e,0):Math.min(e,n),r=r===void 0?n:r|0,r=r<0?Math.max(n+r,0):Math.min(r,n);for(var i=new Uint8Array(r-e),o=e,f=0;o<r;)i[f++]=t[o++];return i}else return t.slice(e,r)}_r.compressBound=function(e){return e+e/255+16|0};_r.decompressBound=function(e){var r=0;if(bn.readU32(e,r)!==Mb)throw new Error("invalid magic number");r+=4;var n=e[r++];if((n&Ub)!==zb)throw new Error("incompatible descriptor version "+(n&Ub));var i=(n&lq)!=0,o=(n&aq)!=0,f=e[r++]>>Lb&cq;if(Gc[f]===void 0)throw new Error("invalid block size "+f);var s=Gc[f];if(o)return bn.readU64(e,r);r++;for(var l=0;;){var u=bn.readU32(e,r);if(r+=4,u&Kc?(u&=~Kc,l+=u):l+=s,u===0)return l;i&&(r+=4),r+=u}};_r.makeBuffer=pq;_r.decompressBlock=function(e,r,n,i,o){var f,s,l,u,c;for(l=n+i;n<l;){var _=e[n++],p=_>>4;if(p>0){if(p===15)for(;p+=e[n],e[n++]===255;);for(u=n+p;n<u;)r[o++]=e[n++]}if(n>=l)break;if(f=_&15,s=e[n++]|e[n++]<<8,f===15)for(;f+=e[n],e[n++]===255;);for(f+=Cc,c=o-s,u=c+f;c<u;)r[o++]=r[c++]|0}return o};_r.compressBlock=function(e,r,n,i,o){var f,s,l,u,c,_,p,j,S;if(p=0,j=i+n,s=n,i>=GE)for(var T=(1<<Rb)+3;n+Cc<j-fq;){var U=bn.readU32(e,n),W=bn.hashU32(U)>>>0;if(W=(W>>16^W)>>>0&65535,f=o[W]-1,o[W]=n+1,f<0||n-f>>>16>0||bn.readU32(e,f)!==U){c=T++>>Rb,n+=c;continue}for(T=(1<<Rb)+3,_=n-s,u=n-f,n+=Cc,f+=Cc,l=n;n<j-fq&&e[n]===e[f];)n++,f++;l=n-l;var L=l<Yc?l:Yc;if(_>=As){for(r[p++]=(As<<kl)+L,S=_-As;S>=255;S-=255)r[p++]=255;r[p++]=S}else r[p++]=(_<<kl)+L;for(var te=0;te<_;te++)r[p++]=e[s+te];if(r[p++]=u,r[p++]=u>>8,l>=Yc){for(S=l-Yc;S>=255;S-=255)r[p++]=255;r[p++]=S}s=n}if(s===0)return 0;if(_=j-s,_>=As){for(r[p++]=As<<kl,S=_-As;S>=255;S-=255)r[p++]=255;r[p++]=S}else r[p++]=_<<kl;for(n=s;n<j;)r[p++]=e[n++];return p};_r.decompressFrame=function(e,r){var n,i,o,f,s=0,l=0;if(bn.readU32(e,s)!==Mb)throw new Error("invalid magic number");if(s+=4,f=e[s++],(f&Ub)!==zb)throw new Error("incompatible descriptor version");n=(f&lq)!=0,i=(f&ZE)!=0,o=(f&aq)!=0;var u=e[s++]>>Lb&cq;if(Gc[u]===void 0)throw new Error("invalid block size");for(o&&(s+=8),s++;;){var c;if(c=bn.readU32(e,s),s+=4,c===0)break;if(n&&(s+=4),(c&Kc)!=0){c&=~Kc;for(var _=0;_<c;_++)r[l++]=e[s++]}else l=_r.decompressBlock(e,r,s,c,l),s+=c}return i&&(s+=4),l};_r.compressFrame=function(e,r){var n=0;bn.writeU32(r,n,Mb),n+=4,r[n++]=zb,r[n++]=uq<<Lb,r[n]=KE.hash(0,r,4,n-4)>>8,n++;var i=Gc[uq],o=e.length,f=0;for(QE(Hb);o>0;){var s=0,l=o>i?i:o;if(s=_r.compressBlock(e,sq,f,l,Hb),s>l||s===0){bn.writeU32(r,n,2147483648|l),n+=4;for(var u=f+l;f<u;)r[n++]=e[f++];o-=l}else{bn.writeU32(r,n,s),n+=4;for(var c=0;c<s;)r[n++]=sq[c++];f+=l,o-=l}}return bn.writeU32(r,n,0),n+=4,n};_r.decompress=function(e,r){var n,i;return r===void 0&&(r=_r.decompressBound(e)),n=_r.makeBuffer(r),i=_r.decompressFrame(e,n),i!==r&&(n=dq(n,0,i)),n};_r.compress=function(e,r){var n,i;return r===void 0&&(r=_r.compressBound(e.length)),n=_r.makeBuffer(r),i=_r.compressFrame(e,n),i!==r&&(n=dq(n,0,i)),n}});var hn=z((K6,Hq)=>{var pw=4294967296,Rq=[];for(Hs=0;Hs<256;Hs++)Rq[Hs]=(Hs>15?"":"0")+Hs.toString(16);var Hs,xl=Hq.exports=function(t,e){t instanceof Buffer?(this.buffer=t,this.offset=e||0):Object.prototype.toString.call(t)=="[object Uint8Array]"?(this.buffer=new Buffer(t),this.offset=e||0):(this.buffer=this.buffer||new Buffer(8),this.offset=0,this.setValue.apply(this,arguments))};xl.MAX_INT=Math.pow(2,53);xl.MIN_INT=-Math.pow(2,53);xl.prototype={constructor:xl,_2scomp:function(){for(var t=this.buffer,e=this.offset,r=1,n=e+7;n>=e;n--){var i=(t[n]^255)+r;t[n]=i&255,r=i>>8}},setValue:function(t,e){var r=!1;if(arguments.length==1)if(typeof t=="number"){if(r=t<0,t=Math.abs(t),e=t%pw,t=t/pw,t>pw)throw new RangeError(t+" is outside Int64 range");t=t|0}else if(typeof t=="string")t=(t+"").replace(/^0x/,""),e=t.substr(-8),t=t.length>8?t.substr(0,t.length-8):"",t=parseInt(t,16),e=parseInt(e,16);else throw new Error(t+" must be a Number or String");for(var n=this.buffer,i=this.offset,o=7;o>=0;o--)n[i+o]=e&255,e=o==4?t:e>>>8;r&&this._2scomp()},toNumber:function(t){for(var e=this.buffer,r=this.offset,n=e[r]&128,i=0,o=1,f=7,s=1;f>=0;f--,s*=256){var l=e[r+f];n&&(l=(l^255)+o,o=l>>8,l=l&255),i+=l*s}return!t&&i>=xl.MAX_INT?n?-1/0:1/0:n?-i:i},valueOf:function(){return this.toNumber(!1)},toString:function(t){return this.valueOf().toString(t||10)},toOctetString:function(t){for(var e=new Array(8),r=this.buffer,n=this.offset,i=0;i<8;i++)e[i]=Rq[r[n+i]];return e.join(t||"")},toBuffer:function(t){if(t&&this.offset===0)return this.buffer;var e=new Buffer(8);return this.buffer.copy(e,0,this.offset,this.offset+8),e},copy:function(t,e){this.buffer.copy(t,e||0,this.offset,this.offset+8)},compare:function(t){if((this.buffer[this.offset]&128)!=(t.buffer[t.offset]&128))return t.buffer[t.offset]-this.buffer[this.offset];for(var e=0;e<8;e++)if(this.buffer[this.offset+e]!==t.buffer[t.offset+e])return this.buffer[this.offset+e]-t.buffer[t.offset+e];return 0},equals:function(t){return this.compare(t)===0},inspect:function(){return"[Int64 value:"+this+" octets:"+this.toOctetString(" ")+"]"}}});var zq=z((G6,Mq)=>{Mq.exports=function(e){return e&&typeof e=="object"&&typeof e.copy=="function"&&typeof e.fill=="function"&&typeof e.readUInt8=="function"}});var Uq=z((J6,dw)=>{typeof Object.create=="function"?dw.exports=function(e,r){e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:dw.exports=function(e,r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e}});var Zi=z(wt=>{var Lq=Object.getOwnPropertyDescriptors||function(e){for(var r=Object.keys(e),n={},i=0;i<r.length;i++)n[r[i]]=Object.getOwnPropertyDescriptor(e,r[i]);return n},c4=/%[sdj%]/g;wt.format=function(t){if(!hp(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(Ho(arguments[r]));return e.join(" ")}for(var r=1,n=arguments,i=n.length,o=String(t).replace(c4,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch{return"[Circular]"}default:return s}}),f=n[r];r<i;f=n[++r])wp(f)||!Ms(f)?o+=" "+f:o+=" "+Ho(f);return o};wt.deprecate=function(t,e){if(typeof process!="undefined"&&process.noDeprecation===!0)return t;if(typeof process=="undefined")return function(){return wt.deprecate(t,e).apply(this,arguments)};var r=!1;function n(){if(!r){if(process.throwDeprecation)throw new Error(e);process.traceDeprecation?console.trace(e):console.error(e),r=!0}return t.apply(this,arguments)}return n};var mp={},mw;wt.debuglog=function(t){if(Mo(mw)&&(mw=process.env.NODE_DEBUG||""),t=t.toUpperCase(),!mp[t])if(new RegExp("\\b"+t+"\\b","i").test(mw)){var e=process.pid;mp[t]=function(){var r=wt.format.apply(wt,arguments);console.error("%s %d: %s",t,e,r)}}else mp[t]=function(){};return mp[t]};function Ho(t,e){var r={seen:[],stylize:d4};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),hw(e)?r.showHidden=e:e&&wt._extend(r,e),Mo(r.showHidden)&&(r.showHidden=!1),Mo(r.depth)&&(r.depth=2),Mo(r.colors)&&(r.colors=!1),Mo(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=p4),bp(r,t,r.depth)}wt.inspect=Ho;Ho.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]};Ho.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function p4(t,e){var r=Ho.styles[e];return r?"["+Ho.colors[r][0]+"m"+t+"["+Ho.colors[r][1]+"m":t}function d4(t,e){return t}function m4(t){var e={};return t.forEach(function(r,n){e[r]=!0}),e}function bp(t,e,r){if(t.customInspect&&e&&jp(e.inspect)&&e.inspect!==wt.inspect&&!(e.constructor&&e.constructor.prototype===e)){var n=e.inspect(r,t);return hp(n)||(n=bp(t,n,r)),n}var i=b4(t,e);if(i)return i;var o=Object.keys(e),f=m4(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),yp(e)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return bw(e);if(o.length===0){if(jp(e)){var s=e.name?": "+e.name:"";return t.stylize("[Function"+s+"]","special")}if(gp(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(gw(e))return t.stylize(Date.prototype.toString.call(e),"date");if(yp(e))return bw(e)}var l="",u=!1,c=["{","}"];if(Vq(e)&&(u=!0,c=["[","]"]),jp(e)){var _=e.name?": "+e.name:"";l=" [Function"+_+"]"}if(gp(e)&&(l=" "+RegExp.prototype.toString.call(e)),gw(e)&&(l=" "+Date.prototype.toUTCString.call(e)),yp(e)&&(l=" "+bw(e)),o.length===0&&(!u||e.length==0))return c[0]+l+c[1];if(r<0)return gp(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special");t.seen.push(e);var p;return u?p=w4(t,e,r,f,o):p=o.map(function(j){return ww(t,e,r,f,j,u)}),t.seen.pop(),h4(p,l,c)}function b4(t,e){if(Mo(e))return t.stylize("undefined","undefined");if(hp(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(Cq(e))return t.stylize(""+e,"number");if(hw(e))return t.stylize(""+e,"boolean");if(wp(e))return t.stylize("null","null")}function bw(t){return"["+Error.prototype.toString.call(t)+"]"}function w4(t,e,r,n,i){for(var o=[],f=0,s=e.length;f<s;++f)Wq(e,String(f))?o.push(ww(t,e,r,n,String(f),!0)):o.push("");return i.forEach(function(l){l.match(/^\d+$/)||o.push(ww(t,e,r,n,l,!0))}),o}function ww(t,e,r,n,i,o){var f,s,l;if(l=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]},l.get?l.set?s=t.stylize("[Getter/Setter]","special"):s=t.stylize("[Getter]","special"):l.set&&(s=t.stylize("[Setter]","special")),Wq(n,i)||(f="["+i+"]"),s||(t.seen.indexOf(l.value)<0?(wp(r)?s=bp(t,l.value,null):s=bp(t,l.value,r-1),s.indexOf(`
2
- `)>-1&&(o?s=s.split(`
3
- `).map(function(u){return" "+u}).join(`
1
+ (()=>{var D_=Object.create;var Ea=Object.defineProperty;var z_=Object.getOwnPropertyDescriptor;var F_=Object.getOwnPropertyNames;var P_=Object.getPrototypeOf,M_=Object.prototype.hasOwnProperty;var rh=t=>Ea(t,"__esModule",{value:!0});var he=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),Cf=(t,e)=>{rh(t);for(var r in e)Ea(t,r,{get:e[r],enumerable:!0})},U_=(t,e,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of F_(e))!M_.call(t,n)&&n!=="default"&&Ea(t,n,{get:()=>e[n],enumerable:!(r=z_(e,n))||r.enumerable});return t},Te=t=>U_(rh(Ea(t!=null?D_(P_(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var ph=he((aA,ah)=>{var _i={},Ds=4294967295,$_=9007199254740991;function Oa(t){return t=~t,t<0&&(t=(t&2147483647)+2147483648),t}function Na(t){console.assert(t>-1&&t<=$_,"number out of range"),console.assert(Math.floor(t)===t,"number must be an integer");var e=0,r=t&4294967295,n=r<0?(t&2147483647)+2147483648:r;return t>Ds&&(e=(t-n)/(Ds+1)),[e,n]}function lh(t){if(t>-1)return Na(t);var e=Na(-t),r=Oa(e[0]),n=Oa(e[1]);return n===Ds?(r+=1,n=0):n+=1,[r,n]}function Ha(t,e,r){return r&&(t&2147483648)!=0?(t=Oa(t),e=Oa(e),console.assert(t<2097152,"number too small"),-(t*(Ds+1)+e+1)):(console.assert(t<2097152,"number too large"),t*(Ds+1)+e)}_i.readInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return Ha(r,n,!0)};_i.readInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return Ha(n,r,!0)};_i.readUInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return Ha(r,n,!1)};_i.readUInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return Ha(n,r,!1)};_i.writeInt64BE=function(t,e,r){r=r||0;var n=lh(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};_i.writeInt64LE=function(t,e,r){r=r||0;var n=lh(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};_i.writeUInt64BE=function(t,e,r){r=r||0;var n=Na(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};_i.writeUInt64LE=function(t,e,r){r=r||0;var n=Na(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};ah.exports=_i});var hh=he((uA,wh)=>{wh.exports=dh;var mh=128,hq=127,bq=~hq,gq=Math.pow(2,31);function dh(t,e,r){e=e||[],r=r||0;for(var n=r;t>=gq;)e[r++]=t&255|mh,t/=128;for(;t&bq;)e[r++]=t&255|mh,t>>>=7;return e[r]=t|0,dh.bytes=r-n+1,e}});var jh=he((cA,gh)=>{gh.exports=qc;var jq=128,bh=127;function qc(t,e){var r=0,e=e||0,n=0,i=e,f,o=t.length;do{if(i>=o)throw qc.bytes=0,new RangeError("Could not decode varint");f=t[i++],r+=n<28?(f&bh)<<n:(f&bh)*Math.pow(2,n),n+=7}while(f>=jq);return qc.bytes=i-e,r}});var vh=he((mA,yh)=>{var yq=Math.pow(2,7),vq=Math.pow(2,14),_q=Math.pow(2,21),qq=Math.pow(2,28),kq=Math.pow(2,35),Tq=Math.pow(2,42),Bq=Math.pow(2,49),Iq=Math.pow(2,56),Sq=Math.pow(2,63);yh.exports=function(t){return t<yq?1:t<vq?2:t<_q?3:t<qq?4:t<kq?5:t<Tq?6:t<Bq?7:t<Iq?8:t<Sq?9:10}});var qh=he((dA,_h)=>{_h.exports={encode:hh(),decode:jh(),encodingLength:vh()}});var qi=he(Tr=>{"use strict";var Aq=typeof Uint8Array!="undefined"&&typeof Uint16Array!="undefined"&&typeof Int32Array!="undefined";function Oq(t,e){return Object.prototype.hasOwnProperty.call(t,e)}Tr.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var r=e.shift();if(!!r){if(typeof r!="object")throw new TypeError(r+"must be non-object");for(var n in r)Oq(r,n)&&(t[n]=r[n])}}return t};Tr.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var Nq={arraySet:function(t,e,r,n,i){if(e.subarray&&t.subarray){t.set(e.subarray(r,r+n),i);return}for(var f=0;f<n;f++)t[i+f]=e[r+f]},flattenChunks:function(t){var e,r,n,i,f,o;for(n=0,e=0,r=t.length;e<r;e++)n+=t[e].length;for(o=new Uint8Array(n),i=0,e=0,r=t.length;e<r;e++)f=t[e],o.set(f,i),i+=f.length;return o}},Hq={arraySet:function(t,e,r,n,i){for(var f=0;f<n;f++)t[i+f]=e[r+f]},flattenChunks:function(t){return[].concat.apply([],t)}};Tr.setTyped=function(t){t?(Tr.Buf8=Uint8Array,Tr.Buf16=Uint16Array,Tr.Buf32=Int32Array,Tr.assign(Tr,Nq)):(Tr.Buf8=Array,Tr.Buf16=Array,Tr.Buf32=Array,Tr.assign(Tr,Hq))};Tr.setTyped(Aq)});var Jh=he(Io=>{"use strict";var Rq=qi(),Dq=4,Ih=0,Sh=1,zq=2;function To(t){for(var e=t.length;--e>=0;)t[e]=0}var Fq=0,xh=1,Pq=2,Mq=3,Uq=258,Bc=29,Ps=256,Ms=Ps+1+Bc,Bo=30,Ic=19,Eh=2*Ms+1,Wf=15,Sc=16,Lq=7,xc=256,Ah=16,Oh=17,Nh=18,Ec=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],za=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],Cq=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],Hh=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],Vq=512,ki=new Array((Ms+2)*2);To(ki);var Us=new Array(Bo*2);To(Us);var Ls=new Array(Vq);To(Ls);var Cs=new Array(Uq-Mq+1);To(Cs);var Ac=new Array(Bc);To(Ac);var Fa=new Array(Bo);To(Fa);function Oc(t,e,r,n,i){this.static_tree=t,this.extra_bits=e,this.extra_base=r,this.elems=n,this.max_length=i,this.has_stree=t&&t.length}var Rh,Dh,zh;function Nc(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function Fh(t){return t<256?Ls[t]:Ls[256+(t>>>7)]}function Vs(t,e){t.pending_buf[t.pending++]=e&255,t.pending_buf[t.pending++]=e>>>8&255}function Dr(t,e,r){t.bi_valid>Sc-r?(t.bi_buf|=e<<t.bi_valid&65535,Vs(t,t.bi_buf),t.bi_buf=e>>Sc-t.bi_valid,t.bi_valid+=r-Sc):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=r)}function Qn(t,e,r){Dr(t,r[e*2],r[e*2+1])}function Ph(t,e){var r=0;do r|=t&1,t>>>=1,r<<=1;while(--e>0);return r>>>1}function Wq(t){t.bi_valid===16?(Vs(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=t.bi_buf&255,t.bi_buf>>=8,t.bi_valid-=8)}function Yq(t,e){var r=e.dyn_tree,n=e.max_code,i=e.stat_desc.static_tree,f=e.stat_desc.has_stree,o=e.stat_desc.extra_bits,s=e.stat_desc.extra_base,l=e.stat_desc.max_length,p,u,b,c,h,T,y=0;for(c=0;c<=Wf;c++)t.bl_count[c]=0;for(r[t.heap[t.heap_max]*2+1]=0,p=t.heap_max+1;p<Eh;p++)u=t.heap[p],c=r[r[u*2+1]*2+1]+1,c>l&&(c=l,y++),r[u*2+1]=c,!(u>n)&&(t.bl_count[c]++,h=0,u>=s&&(h=o[u-s]),T=r[u*2],t.opt_len+=T*(c+h),f&&(t.static_len+=T*(i[u*2+1]+h)));if(y!==0){do{for(c=l-1;t.bl_count[c]===0;)c--;t.bl_count[c]--,t.bl_count[c+1]+=2,t.bl_count[l]--,y-=2}while(y>0);for(c=l;c!==0;c--)for(u=t.bl_count[c];u!==0;)b=t.heap[--p],!(b>n)&&(r[b*2+1]!==c&&(t.opt_len+=(c-r[b*2+1])*r[b*2],r[b*2+1]=c),u--)}}function Mh(t,e,r){var n=new Array(Wf+1),i=0,f,o;for(f=1;f<=Wf;f++)n[f]=i=i+r[f-1]<<1;for(o=0;o<=e;o++){var s=t[o*2+1];s!==0&&(t[o*2]=Ph(n[s]++,s))}}function Kq(){var t,e,r,n,i,f=new Array(Wf+1);for(r=0,n=0;n<Bc-1;n++)for(Ac[n]=r,t=0;t<1<<Ec[n];t++)Cs[r++]=n;for(Cs[r-1]=n,i=0,n=0;n<16;n++)for(Fa[n]=i,t=0;t<1<<za[n];t++)Ls[i++]=n;for(i>>=7;n<Bo;n++)for(Fa[n]=i<<7,t=0;t<1<<za[n]-7;t++)Ls[256+i++]=n;for(e=0;e<=Wf;e++)f[e]=0;for(t=0;t<=143;)ki[t*2+1]=8,t++,f[8]++;for(;t<=255;)ki[t*2+1]=9,t++,f[9]++;for(;t<=279;)ki[t*2+1]=7,t++,f[7]++;for(;t<=287;)ki[t*2+1]=8,t++,f[8]++;for(Mh(ki,Ms+1,f),t=0;t<Bo;t++)Us[t*2+1]=5,Us[t*2]=Ph(t,5);Rh=new Oc(ki,Ec,Ps+1,Ms,Wf),Dh=new Oc(Us,za,0,Bo,Wf),zh=new Oc(new Array(0),Cq,0,Ic,Lq)}function Uh(t){var e;for(e=0;e<Ms;e++)t.dyn_ltree[e*2]=0;for(e=0;e<Bo;e++)t.dyn_dtree[e*2]=0;for(e=0;e<Ic;e++)t.bl_tree[e*2]=0;t.dyn_ltree[xc*2]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function Lh(t){t.bi_valid>8?Vs(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function Gq(t,e,r,n){Lh(t),n&&(Vs(t,r),Vs(t,~r)),Rq.arraySet(t.pending_buf,t.window,e,r,t.pending),t.pending+=r}function Ch(t,e,r,n){var i=e*2,f=r*2;return t[i]<t[f]||t[i]===t[f]&&n[e]<=n[r]}function Hc(t,e,r){for(var n=t.heap[r],i=r<<1;i<=t.heap_len&&(i<t.heap_len&&Ch(e,t.heap[i+1],t.heap[i],t.depth)&&i++,!Ch(e,n,t.heap[i],t.depth));)t.heap[r]=t.heap[i],r=i,i<<=1;t.heap[r]=n}function Vh(t,e,r){var n,i,f=0,o,s;if(t.last_lit!==0)do n=t.pending_buf[t.d_buf+f*2]<<8|t.pending_buf[t.d_buf+f*2+1],i=t.pending_buf[t.l_buf+f],f++,n===0?Qn(t,i,e):(o=Cs[i],Qn(t,o+Ps+1,e),s=Ec[o],s!==0&&(i-=Ac[o],Dr(t,i,s)),n--,o=Fh(n),Qn(t,o,r),s=za[o],s!==0&&(n-=Fa[o],Dr(t,n,s)));while(f<t.last_lit);Qn(t,xc,e)}function Rc(t,e){var r=e.dyn_tree,n=e.stat_desc.static_tree,i=e.stat_desc.has_stree,f=e.stat_desc.elems,o,s,l=-1,p;for(t.heap_len=0,t.heap_max=Eh,o=0;o<f;o++)r[o*2]!==0?(t.heap[++t.heap_len]=l=o,t.depth[o]=0):r[o*2+1]=0;for(;t.heap_len<2;)p=t.heap[++t.heap_len]=l<2?++l:0,r[p*2]=1,t.depth[p]=0,t.opt_len--,i&&(t.static_len-=n[p*2+1]);for(e.max_code=l,o=t.heap_len>>1;o>=1;o--)Hc(t,r,o);p=f;do o=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Hc(t,r,1),s=t.heap[1],t.heap[--t.heap_max]=o,t.heap[--t.heap_max]=s,r[p*2]=r[o*2]+r[s*2],t.depth[p]=(t.depth[o]>=t.depth[s]?t.depth[o]:t.depth[s])+1,r[o*2+1]=r[s*2+1]=p,t.heap[1]=p++,Hc(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],Yq(t,e),Mh(r,l,t.bl_count)}function Wh(t,e,r){var n,i=-1,f,o=e[0*2+1],s=0,l=7,p=4;for(o===0&&(l=138,p=3),e[(r+1)*2+1]=65535,n=0;n<=r;n++)f=o,o=e[(n+1)*2+1],!(++s<l&&f===o)&&(s<p?t.bl_tree[f*2]+=s:f!==0?(f!==i&&t.bl_tree[f*2]++,t.bl_tree[Ah*2]++):s<=10?t.bl_tree[Oh*2]++:t.bl_tree[Nh*2]++,s=0,i=f,o===0?(l=138,p=3):f===o?(l=6,p=3):(l=7,p=4))}function Yh(t,e,r){var n,i=-1,f,o=e[0*2+1],s=0,l=7,p=4;for(o===0&&(l=138,p=3),n=0;n<=r;n++)if(f=o,o=e[(n+1)*2+1],!(++s<l&&f===o)){if(s<p)do Qn(t,f,t.bl_tree);while(--s!=0);else f!==0?(f!==i&&(Qn(t,f,t.bl_tree),s--),Qn(t,Ah,t.bl_tree),Dr(t,s-3,2)):s<=10?(Qn(t,Oh,t.bl_tree),Dr(t,s-3,3)):(Qn(t,Nh,t.bl_tree),Dr(t,s-11,7));s=0,i=f,o===0?(l=138,p=3):f===o?(l=6,p=3):(l=7,p=4)}}function Jq(t){var e;for(Wh(t,t.dyn_ltree,t.l_desc.max_code),Wh(t,t.dyn_dtree,t.d_desc.max_code),Rc(t,t.bl_desc),e=Ic-1;e>=3&&t.bl_tree[Hh[e]*2+1]===0;e--);return t.opt_len+=3*(e+1)+5+5+4,e}function Zq(t,e,r,n){var i;for(Dr(t,e-257,5),Dr(t,r-1,5),Dr(t,n-4,4),i=0;i<n;i++)Dr(t,t.bl_tree[Hh[i]*2+1],3);Yh(t,t.dyn_ltree,e-1),Yh(t,t.dyn_dtree,r-1)}function Xq(t){var e=4093624447,r;for(r=0;r<=31;r++,e>>>=1)if(e&1&&t.dyn_ltree[r*2]!==0)return Ih;if(t.dyn_ltree[9*2]!==0||t.dyn_ltree[10*2]!==0||t.dyn_ltree[13*2]!==0)return Sh;for(r=32;r<Ps;r++)if(t.dyn_ltree[r*2]!==0)return Sh;return Ih}var Kh=!1;function Qq(t){Kh||(Kq(),Kh=!0),t.l_desc=new Nc(t.dyn_ltree,Rh),t.d_desc=new Nc(t.dyn_dtree,Dh),t.bl_desc=new Nc(t.bl_tree,zh),t.bi_buf=0,t.bi_valid=0,Uh(t)}function Gh(t,e,r,n){Dr(t,(Fq<<1)+(n?1:0),3),Gq(t,e,r,!0)}function $q(t){Dr(t,xh<<1,3),Qn(t,xc,ki),Wq(t)}function ek(t,e,r,n){var i,f,o=0;t.level>0?(t.strm.data_type===zq&&(t.strm.data_type=Xq(t)),Rc(t,t.l_desc),Rc(t,t.d_desc),o=Jq(t),i=t.opt_len+3+7>>>3,f=t.static_len+3+7>>>3,f<=i&&(i=f)):i=f=r+5,r+4<=i&&e!==-1?Gh(t,e,r,n):t.strategy===Dq||f===i?(Dr(t,(xh<<1)+(n?1:0),3),Vh(t,ki,Us)):(Dr(t,(Pq<<1)+(n?1:0),3),Zq(t,t.l_desc.max_code+1,t.d_desc.max_code+1,o+1),Vh(t,t.dyn_ltree,t.dyn_dtree)),Uh(t),n&&Lh(t)}function tk(t,e,r){return t.pending_buf[t.d_buf+t.last_lit*2]=e>>>8&255,t.pending_buf[t.d_buf+t.last_lit*2+1]=e&255,t.pending_buf[t.l_buf+t.last_lit]=r&255,t.last_lit++,e===0?t.dyn_ltree[r*2]++:(t.matches++,e--,t.dyn_ltree[(Cs[r]+Ps+1)*2]++,t.dyn_dtree[Fh(e)*2]++),t.last_lit===t.lit_bufsize-1}Io._tr_init=Qq;Io._tr_stored_block=Gh;Io._tr_flush_block=ek;Io._tr_tally=tk;Io._tr_align=$q});var Dc=he((xA,Zh)=>{"use strict";function rk(t,e,r,n){for(var i=t&65535|0,f=t>>>16&65535|0,o=0;r!==0;){o=r>2e3?2e3:r,r-=o;do i=i+e[n++]|0,f=f+i|0;while(--o);i%=65521,f%=65521}return i|f<<16|0}Zh.exports=rk});var zc=he((EA,Xh)=>{"use strict";function nk(){for(var t,e=[],r=0;r<256;r++){t=r;for(var n=0;n<8;n++)t=t&1?3988292384^t>>>1:t>>>1;e[r]=t}return e}var ik=nk();function fk(t,e,r,n){var i=ik,f=n+r;t^=-1;for(var o=n;o<f;o++)t=t>>>8^i[(t^e[o])&255];return t^-1}Xh.exports=fk});var Pa=he((AA,Qh)=>{"use strict";Qh.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}});var sb=he(ti=>{"use strict";var Br=qi(),bn=Jh(),$h=Dc(),ff=zc(),ok=Pa(),Yf=0,sk=1,lk=3,of=4,eb=5,$n=0,tb=1,gn=-2,ak=-3,Fc=-5,pk=-1,uk=1,Ma=2,ck=3,mk=4,dk=0,wk=2,Ua=8,hk=9,bk=15,gk=8,jk=29,yk=256,Pc=yk+1+jk,vk=30,_k=19,qk=2*Pc+1,kk=15,tt=3,sf=258,Dn=sf+tt+1,Tk=32,La=42,Mc=69,Ca=73,Va=91,Wa=103,Kf=113,Ws=666,nr=1,Ys=2,Gf=3,So=4,Bk=3;function lf(t,e){return t.msg=ok[e],e}function rb(t){return(t<<1)-(t>4?9:0)}function af(t){for(var e=t.length;--e>=0;)t[e]=0}function pf(t){var e=t.state,r=e.pending;r>t.avail_out&&(r=t.avail_out),r!==0&&(Br.arraySet(t.output,e.pending_buf,e.pending_out,r,t.next_out),t.next_out+=r,e.pending_out+=r,t.total_out+=r,t.avail_out-=r,e.pending-=r,e.pending===0&&(e.pending_out=0))}function ur(t,e){bn._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,pf(t.strm)}function st(t,e){t.pending_buf[t.pending++]=e}function Ks(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=e&255}function Ik(t,e,r,n){var i=t.avail_in;return i>n&&(i=n),i===0?0:(t.avail_in-=i,Br.arraySet(e,t.input,t.next_in,i,r),t.state.wrap===1?t.adler=$h(t.adler,e,i,r):t.state.wrap===2&&(t.adler=ff(t.adler,e,i,r)),t.next_in+=i,t.total_in+=i,i)}function nb(t,e){var r=t.max_chain_length,n=t.strstart,i,f,o=t.prev_length,s=t.nice_match,l=t.strstart>t.w_size-Dn?t.strstart-(t.w_size-Dn):0,p=t.window,u=t.w_mask,b=t.prev,c=t.strstart+sf,h=p[n+o-1],T=p[n+o];t.prev_length>=t.good_match&&(r>>=2),s>t.lookahead&&(s=t.lookahead);do if(i=e,!(p[i+o]!==T||p[i+o-1]!==h||p[i]!==p[n]||p[++i]!==p[n+1])){n+=2,i++;do;while(p[++n]===p[++i]&&p[++n]===p[++i]&&p[++n]===p[++i]&&p[++n]===p[++i]&&p[++n]===p[++i]&&p[++n]===p[++i]&&p[++n]===p[++i]&&p[++n]===p[++i]&&n<c);if(f=sf-(c-n),n=c-sf,f>o){if(t.match_start=e,o=f,f>=s)break;h=p[n+o-1],T=p[n+o]}}while((e=b[e&u])>l&&--r!=0);return o<=t.lookahead?o:t.lookahead}function Jf(t){var e=t.w_size,r,n,i,f,o;do{if(f=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-Dn)){Br.arraySet(t.window,t.window,e,e,0),t.match_start-=e,t.strstart-=e,t.block_start-=e,n=t.hash_size,r=n;do i=t.head[--r],t.head[r]=i>=e?i-e:0;while(--n);n=e,r=n;do i=t.prev[--r],t.prev[r]=i>=e?i-e:0;while(--n);f+=e}if(t.strm.avail_in===0)break;if(n=Ik(t.strm,t.window,t.strstart+t.lookahead,f),t.lookahead+=n,t.lookahead+t.insert>=tt)for(o=t.strstart-t.insert,t.ins_h=t.window[o],t.ins_h=(t.ins_h<<t.hash_shift^t.window[o+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[o+tt-1])&t.hash_mask,t.prev[o&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=o,o++,t.insert--,!(t.lookahead+t.insert<tt)););}while(t.lookahead<Dn&&t.strm.avail_in!==0)}function Sk(t,e){var r=65535;for(r>t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(Jf(t),t.lookahead===0&&e===Yf)return nr;if(t.lookahead===0)break}t.strstart+=t.lookahead,t.lookahead=0;var n=t.block_start+r;if((t.strstart===0||t.strstart>=n)&&(t.lookahead=t.strstart-n,t.strstart=n,ur(t,!1),t.strm.avail_out===0)||t.strstart-t.block_start>=t.w_size-Dn&&(ur(t,!1),t.strm.avail_out===0))return nr}return t.insert=0,e===of?(ur(t,!0),t.strm.avail_out===0?Gf:So):(t.strstart>t.block_start&&(ur(t,!1),t.strm.avail_out===0),nr)}function Uc(t,e){for(var r,n;;){if(t.lookahead<Dn){if(Jf(t),t.lookahead<Dn&&e===Yf)return nr;if(t.lookahead===0)break}if(r=0,t.lookahead>=tt&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+tt-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),r!==0&&t.strstart-r<=t.w_size-Dn&&(t.match_length=nb(t,r)),t.match_length>=tt)if(n=bn._tr_tally(t,t.strstart-t.match_start,t.match_length-tt),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=tt){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+tt-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart;while(--t.match_length!=0);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else n=bn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(n&&(ur(t,!1),t.strm.avail_out===0))return nr}return t.insert=t.strstart<tt-1?t.strstart:tt-1,e===of?(ur(t,!0),t.strm.avail_out===0?Gf:So):t.last_lit&&(ur(t,!1),t.strm.avail_out===0)?nr:Ys}function xo(t,e){for(var r,n,i;;){if(t.lookahead<Dn){if(Jf(t),t.lookahead<Dn&&e===Yf)return nr;if(t.lookahead===0)break}if(r=0,t.lookahead>=tt&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+tt-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=tt-1,r!==0&&t.prev_length<t.max_lazy_match&&t.strstart-r<=t.w_size-Dn&&(t.match_length=nb(t,r),t.match_length<=5&&(t.strategy===uk||t.match_length===tt&&t.strstart-t.match_start>4096)&&(t.match_length=tt-1)),t.prev_length>=tt&&t.match_length<=t.prev_length){i=t.strstart+t.lookahead-tt,n=bn._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-tt),t.lookahead-=t.prev_length-1,t.prev_length-=2;do++t.strstart<=i&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+tt-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart);while(--t.prev_length!=0);if(t.match_available=0,t.match_length=tt-1,t.strstart++,n&&(ur(t,!1),t.strm.avail_out===0))return nr}else if(t.match_available){if(n=bn._tr_tally(t,0,t.window[t.strstart-1]),n&&ur(t,!1),t.strstart++,t.lookahead--,t.strm.avail_out===0)return nr}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(n=bn._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<tt-1?t.strstart:tt-1,e===of?(ur(t,!0),t.strm.avail_out===0?Gf:So):t.last_lit&&(ur(t,!1),t.strm.avail_out===0)?nr:Ys}function xk(t,e){for(var r,n,i,f,o=t.window;;){if(t.lookahead<=sf){if(Jf(t),t.lookahead<=sf&&e===Yf)return nr;if(t.lookahead===0)break}if(t.match_length=0,t.lookahead>=tt&&t.strstart>0&&(i=t.strstart-1,n=o[i],n===o[++i]&&n===o[++i]&&n===o[++i])){f=t.strstart+sf;do;while(n===o[++i]&&n===o[++i]&&n===o[++i]&&n===o[++i]&&n===o[++i]&&n===o[++i]&&n===o[++i]&&n===o[++i]&&i<f);t.match_length=sf-(f-i),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=tt?(r=bn._tr_tally(t,1,t.match_length-tt),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=bn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(ur(t,!1),t.strm.avail_out===0))return nr}return t.insert=0,e===of?(ur(t,!0),t.strm.avail_out===0?Gf:So):t.last_lit&&(ur(t,!1),t.strm.avail_out===0)?nr:Ys}function Ek(t,e){for(var r;;){if(t.lookahead===0&&(Jf(t),t.lookahead===0)){if(e===Yf)return nr;break}if(t.match_length=0,r=bn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(ur(t,!1),t.strm.avail_out===0))return nr}return t.insert=0,e===of?(ur(t,!0),t.strm.avail_out===0?Gf:So):t.last_lit&&(ur(t,!1),t.strm.avail_out===0)?nr:Ys}function ei(t,e,r,n,i){this.good_length=t,this.max_lazy=e,this.nice_length=r,this.max_chain=n,this.func=i}var Eo;Eo=[new ei(0,0,0,0,Sk),new ei(4,4,8,4,Uc),new ei(4,5,16,8,Uc),new ei(4,6,32,32,Uc),new ei(4,4,16,16,xo),new ei(8,16,32,32,xo),new ei(8,16,128,128,xo),new ei(8,32,128,256,xo),new ei(32,128,258,1024,xo),new ei(32,258,258,4096,xo)];function Ak(t){t.window_size=2*t.w_size,af(t.head),t.max_lazy_match=Eo[t.level].max_lazy,t.good_match=Eo[t.level].good_length,t.nice_match=Eo[t.level].nice_length,t.max_chain_length=Eo[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=tt-1,t.match_available=0,t.ins_h=0}function Ok(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Ua,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Br.Buf16(qk*2),this.dyn_dtree=new Br.Buf16((2*vk+1)*2),this.bl_tree=new Br.Buf16((2*_k+1)*2),af(this.dyn_ltree),af(this.dyn_dtree),af(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Br.Buf16(kk+1),this.heap=new Br.Buf16(2*Pc+1),af(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Br.Buf16(2*Pc+1),af(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function ib(t){var e;return!t||!t.state?lf(t,gn):(t.total_in=t.total_out=0,t.data_type=wk,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?La:Kf,t.adler=e.wrap===2?0:1,e.last_flush=Yf,bn._tr_init(e),$n)}function fb(t){var e=ib(t);return e===$n&&Ak(t.state),e}function Nk(t,e){return!t||!t.state||t.state.wrap!==2?gn:(t.state.gzhead=e,$n)}function ob(t,e,r,n,i,f){if(!t)return gn;var o=1;if(e===pk&&(e=6),n<0?(o=0,n=-n):n>15&&(o=2,n-=16),i<1||i>hk||r!==Ua||n<8||n>15||e<0||e>9||f<0||f>mk)return lf(t,gn);n===8&&(n=9);var s=new Ok;return t.state=s,s.strm=t,s.wrap=o,s.gzhead=null,s.w_bits=n,s.w_size=1<<s.w_bits,s.w_mask=s.w_size-1,s.hash_bits=i+7,s.hash_size=1<<s.hash_bits,s.hash_mask=s.hash_size-1,s.hash_shift=~~((s.hash_bits+tt-1)/tt),s.window=new Br.Buf8(s.w_size*2),s.head=new Br.Buf16(s.hash_size),s.prev=new Br.Buf16(s.w_size),s.lit_bufsize=1<<i+6,s.pending_buf_size=s.lit_bufsize*4,s.pending_buf=new Br.Buf8(s.pending_buf_size),s.d_buf=1*s.lit_bufsize,s.l_buf=(1+2)*s.lit_bufsize,s.level=e,s.strategy=f,s.method=r,fb(t)}function Hk(t,e){return ob(t,e,Ua,bk,gk,dk)}function Rk(t,e){var r,n,i,f;if(!t||!t.state||e>eb||e<0)return t?lf(t,gn):gn;if(n=t.state,!t.output||!t.input&&t.avail_in!==0||n.status===Ws&&e!==of)return lf(t,t.avail_out===0?Fc:gn);if(n.strm=t,r=n.last_flush,n.last_flush=e,n.status===La)if(n.wrap===2)t.adler=0,st(n,31),st(n,139),st(n,8),n.gzhead?(st(n,(n.gzhead.text?1:0)+(n.gzhead.hcrc?2:0)+(n.gzhead.extra?4:0)+(n.gzhead.name?8:0)+(n.gzhead.comment?16:0)),st(n,n.gzhead.time&255),st(n,n.gzhead.time>>8&255),st(n,n.gzhead.time>>16&255),st(n,n.gzhead.time>>24&255),st(n,n.level===9?2:n.strategy>=Ma||n.level<2?4:0),st(n,n.gzhead.os&255),n.gzhead.extra&&n.gzhead.extra.length&&(st(n,n.gzhead.extra.length&255),st(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(t.adler=ff(t.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=Mc):(st(n,0),st(n,0),st(n,0),st(n,0),st(n,0),st(n,n.level===9?2:n.strategy>=Ma||n.level<2?4:0),st(n,Bk),n.status=Kf);else{var o=Ua+(n.w_bits-8<<4)<<8,s=-1;n.strategy>=Ma||n.level<2?s=0:n.level<6?s=1:n.level===6?s=2:s=3,o|=s<<6,n.strstart!==0&&(o|=Tk),o+=31-o%31,n.status=Kf,Ks(n,o),n.strstart!==0&&(Ks(n,t.adler>>>16),Ks(n,t.adler&65535)),t.adler=1}if(n.status===Mc)if(n.gzhead.extra){for(i=n.pending;n.gzindex<(n.gzhead.extra.length&65535)&&!(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=ff(t.adler,n.pending_buf,n.pending-i,i)),pf(t),i=n.pending,n.pending===n.pending_buf_size));)st(n,n.gzhead.extra[n.gzindex]&255),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(t.adler=ff(t.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=Ca)}else n.status=Ca;if(n.status===Ca)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=ff(t.adler,n.pending_buf,n.pending-i,i)),pf(t),i=n.pending,n.pending===n.pending_buf_size)){f=1;break}n.gzindex<n.gzhead.name.length?f=n.gzhead.name.charCodeAt(n.gzindex++)&255:f=0,st(n,f)}while(f!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=ff(t.adler,n.pending_buf,n.pending-i,i)),f===0&&(n.gzindex=0,n.status=Va)}else n.status=Va;if(n.status===Va)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=ff(t.adler,n.pending_buf,n.pending-i,i)),pf(t),i=n.pending,n.pending===n.pending_buf_size)){f=1;break}n.gzindex<n.gzhead.comment.length?f=n.gzhead.comment.charCodeAt(n.gzindex++)&255:f=0,st(n,f)}while(f!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=ff(t.adler,n.pending_buf,n.pending-i,i)),f===0&&(n.status=Wa)}else n.status=Wa;if(n.status===Wa&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&pf(t),n.pending+2<=n.pending_buf_size&&(st(n,t.adler&255),st(n,t.adler>>8&255),t.adler=0,n.status=Kf)):n.status=Kf),n.pending!==0){if(pf(t),t.avail_out===0)return n.last_flush=-1,$n}else if(t.avail_in===0&&rb(e)<=rb(r)&&e!==of)return lf(t,Fc);if(n.status===Ws&&t.avail_in!==0)return lf(t,Fc);if(t.avail_in!==0||n.lookahead!==0||e!==Yf&&n.status!==Ws){var l=n.strategy===Ma?Ek(n,e):n.strategy===ck?xk(n,e):Eo[n.level].func(n,e);if((l===Gf||l===So)&&(n.status=Ws),l===nr||l===Gf)return t.avail_out===0&&(n.last_flush=-1),$n;if(l===Ys&&(e===sk?bn._tr_align(n):e!==eb&&(bn._tr_stored_block(n,0,0,!1),e===lk&&(af(n.head),n.lookahead===0&&(n.strstart=0,n.block_start=0,n.insert=0))),pf(t),t.avail_out===0))return n.last_flush=-1,$n}return e!==of?$n:n.wrap<=0?tb:(n.wrap===2?(st(n,t.adler&255),st(n,t.adler>>8&255),st(n,t.adler>>16&255),st(n,t.adler>>24&255),st(n,t.total_in&255),st(n,t.total_in>>8&255),st(n,t.total_in>>16&255),st(n,t.total_in>>24&255)):(Ks(n,t.adler>>>16),Ks(n,t.adler&65535)),pf(t),n.wrap>0&&(n.wrap=-n.wrap),n.pending!==0?$n:tb)}function Dk(t){var e;return!t||!t.state?gn:(e=t.state.status,e!==La&&e!==Mc&&e!==Ca&&e!==Va&&e!==Wa&&e!==Kf&&e!==Ws?lf(t,gn):(t.state=null,e===Kf?lf(t,ak):$n))}function zk(t,e){var r=e.length,n,i,f,o,s,l,p,u;if(!t||!t.state||(n=t.state,o=n.wrap,o===2||o===1&&n.status!==La||n.lookahead))return gn;for(o===1&&(t.adler=$h(t.adler,e,r,0)),n.wrap=0,r>=n.w_size&&(o===0&&(af(n.head),n.strstart=0,n.block_start=0,n.insert=0),u=new Br.Buf8(n.w_size),Br.arraySet(u,e,r-n.w_size,n.w_size,0),e=u,r=n.w_size),s=t.avail_in,l=t.next_in,p=t.input,t.avail_in=r,t.next_in=0,t.input=e,Jf(n);n.lookahead>=tt;){i=n.strstart,f=n.lookahead-(tt-1);do n.ins_h=(n.ins_h<<n.hash_shift^n.window[i+tt-1])&n.hash_mask,n.prev[i&n.w_mask]=n.head[n.ins_h],n.head[n.ins_h]=i,i++;while(--f);n.strstart=i,n.lookahead=tt-1,Jf(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=tt-1,n.match_available=0,t.next_in=l,t.input=p,t.avail_in=s,n.wrap=o,$n}ti.deflateInit=Hk;ti.deflateInit2=ob;ti.deflateReset=fb;ti.deflateResetKeep=ib;ti.deflateSetHeader=Nk;ti.deflate=Rk;ti.deflateEnd=Dk;ti.deflateSetDictionary=zk;ti.deflateInfo="pako deflate (from Nodeca project)"});var Lc=he(Ao=>{"use strict";var Ya=qi(),lb=!0,ab=!0;try{String.fromCharCode.apply(null,[0])}catch{lb=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{ab=!1}var Gs=new Ya.Buf8(256);for(Ti=0;Ti<256;Ti++)Gs[Ti]=Ti>=252?6:Ti>=248?5:Ti>=240?4:Ti>=224?3:Ti>=192?2:1;var Ti;Gs[254]=Gs[254]=1;Ao.string2buf=function(t){var e,r,n,i,f,o=t.length,s=0;for(i=0;i<o;i++)r=t.charCodeAt(i),(r&64512)==55296&&i+1<o&&(n=t.charCodeAt(i+1),(n&64512)==56320&&(r=65536+(r-55296<<10)+(n-56320),i++)),s+=r<128?1:r<2048?2:r<65536?3:4;for(e=new Ya.Buf8(s),f=0,i=0;f<s;i++)r=t.charCodeAt(i),(r&64512)==55296&&i+1<o&&(n=t.charCodeAt(i+1),(n&64512)==56320&&(r=65536+(r-55296<<10)+(n-56320),i++)),r<128?e[f++]=r:r<2048?(e[f++]=192|r>>>6,e[f++]=128|r&63):r<65536?(e[f++]=224|r>>>12,e[f++]=128|r>>>6&63,e[f++]=128|r&63):(e[f++]=240|r>>>18,e[f++]=128|r>>>12&63,e[f++]=128|r>>>6&63,e[f++]=128|r&63);return e};function pb(t,e){if(e<65534&&(t.subarray&&ab||!t.subarray&&lb))return String.fromCharCode.apply(null,Ya.shrinkBuf(t,e));for(var r="",n=0;n<e;n++)r+=String.fromCharCode(t[n]);return r}Ao.buf2binstring=function(t){return pb(t,t.length)};Ao.binstring2buf=function(t){for(var e=new Ya.Buf8(t.length),r=0,n=e.length;r<n;r++)e[r]=t.charCodeAt(r);return e};Ao.buf2string=function(t,e){var r,n,i,f,o=e||t.length,s=new Array(o*2);for(n=0,r=0;r<o;){if(i=t[r++],i<128){s[n++]=i;continue}if(f=Gs[i],f>4){s[n++]=65533,r+=f-1;continue}for(i&=f===2?31:f===3?15:7;f>1&&r<o;)i=i<<6|t[r++]&63,f--;if(f>1){s[n++]=65533;continue}i<65536?s[n++]=i:(i-=65536,s[n++]=55296|i>>10&1023,s[n++]=56320|i&1023)}return pb(s,n)};Ao.utf8border=function(t,e){var r;for(e=e||t.length,e>t.length&&(e=t.length),r=e-1;r>=0&&(t[r]&192)==128;)r--;return r<0||r===0?e:r+Gs[t[r]]>e?r:e}});var Cc=he((HA,ub)=>{"use strict";function Fk(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}ub.exports=Fk});var wb=he(Xs=>{"use strict";var Js=sb(),Zs=qi(),Vc=Lc(),Wc=Pa(),Pk=Cc(),cb=Object.prototype.toString,Mk=0,Yc=4,Oo=0,mb=1,db=2,Uk=-1,Lk=0,Ck=8;function Zf(t){if(!(this instanceof Zf))return new Zf(t);this.options=Zs.assign({level:Uk,method:Ck,chunkSize:16384,windowBits:15,memLevel:8,strategy:Lk,to:""},t||{});var e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new Pk,this.strm.avail_out=0;var r=Js.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(r!==Oo)throw new Error(Wc[r]);if(e.header&&Js.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(typeof e.dictionary=="string"?n=Vc.string2buf(e.dictionary):cb.call(e.dictionary)==="[object ArrayBuffer]"?n=new Uint8Array(e.dictionary):n=e.dictionary,r=Js.deflateSetDictionary(this.strm,n),r!==Oo)throw new Error(Wc[r]);this._dict_set=!0}}Zf.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i,f;if(this.ended)return!1;f=e===~~e?e:e===!0?Yc:Mk,typeof t=="string"?r.input=Vc.string2buf(t):cb.call(t)==="[object ArrayBuffer]"?r.input=new Uint8Array(t):r.input=t,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=new Zs.Buf8(n),r.next_out=0,r.avail_out=n),i=Js.deflate(r,f),i!==mb&&i!==Oo)return this.onEnd(i),this.ended=!0,!1;(r.avail_out===0||r.avail_in===0&&(f===Yc||f===db))&&(this.options.to==="string"?this.onData(Vc.buf2binstring(Zs.shrinkBuf(r.output,r.next_out))):this.onData(Zs.shrinkBuf(r.output,r.next_out)))}while((r.avail_in>0||r.avail_out===0)&&i!==mb);return f===Yc?(i=Js.deflateEnd(this.strm),this.onEnd(i),this.ended=!0,i===Oo):(f===db&&(this.onEnd(Oo),r.avail_out=0),!0)};Zf.prototype.onData=function(t){this.chunks.push(t)};Zf.prototype.onEnd=function(t){t===Oo&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=Zs.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function Kc(t,e){var r=new Zf(e);if(r.push(t,!0),r.err)throw r.msg||Wc[r.err];return r.result}function Vk(t,e){return e=e||{},e.raw=!0,Kc(t,e)}function Wk(t,e){return e=e||{},e.gzip=!0,Kc(t,e)}Xs.Deflate=Zf;Xs.deflate=Kc;Xs.deflateRaw=Vk;Xs.gzip=Wk});var bb=he((DA,hb)=>{"use strict";var Ka=30,Yk=12;hb.exports=function(e,r){var n,i,f,o,s,l,p,u,b,c,h,T,y,N,P,R,Y,re,W,O,te,L,ne,j,g;n=e.state,i=e.next_in,j=e.input,f=i+(e.avail_in-5),o=e.next_out,g=e.output,s=o-(r-e.avail_out),l=o+(e.avail_out-257),p=n.dmax,u=n.wsize,b=n.whave,c=n.wnext,h=n.window,T=n.hold,y=n.bits,N=n.lencode,P=n.distcode,R=(1<<n.lenbits)-1,Y=(1<<n.distbits)-1;e:do{y<15&&(T+=j[i++]<<y,y+=8,T+=j[i++]<<y,y+=8),re=N[T&R];t:for(;;){if(W=re>>>24,T>>>=W,y-=W,W=re>>>16&255,W===0)g[o++]=re&65535;else if(W&16){O=re&65535,W&=15,W&&(y<W&&(T+=j[i++]<<y,y+=8),O+=T&(1<<W)-1,T>>>=W,y-=W),y<15&&(T+=j[i++]<<y,y+=8,T+=j[i++]<<y,y+=8),re=P[T&Y];r:for(;;){if(W=re>>>24,T>>>=W,y-=W,W=re>>>16&255,W&16){if(te=re&65535,W&=15,y<W&&(T+=j[i++]<<y,y+=8,y<W&&(T+=j[i++]<<y,y+=8)),te+=T&(1<<W)-1,te>p){e.msg="invalid distance too far back",n.mode=Ka;break e}if(T>>>=W,y-=W,W=o-s,te>W){if(W=te-W,W>b&&n.sane){e.msg="invalid distance too far back",n.mode=Ka;break e}if(L=0,ne=h,c===0){if(L+=u-W,W<O){O-=W;do g[o++]=h[L++];while(--W);L=o-te,ne=g}}else if(c<W){if(L+=u+c-W,W-=c,W<O){O-=W;do g[o++]=h[L++];while(--W);if(L=0,c<O){W=c,O-=W;do g[o++]=h[L++];while(--W);L=o-te,ne=g}}}else if(L+=c-W,W<O){O-=W;do g[o++]=h[L++];while(--W);L=o-te,ne=g}for(;O>2;)g[o++]=ne[L++],g[o++]=ne[L++],g[o++]=ne[L++],O-=3;O&&(g[o++]=ne[L++],O>1&&(g[o++]=ne[L++]))}else{L=o-te;do g[o++]=g[L++],g[o++]=g[L++],g[o++]=g[L++],O-=3;while(O>2);O&&(g[o++]=g[L++],O>1&&(g[o++]=g[L++]))}}else if((W&64)==0){re=P[(re&65535)+(T&(1<<W)-1)];continue r}else{e.msg="invalid distance code",n.mode=Ka;break e}break}}else if((W&64)==0){re=N[(re&65535)+(T&(1<<W)-1)];continue t}else if(W&32){n.mode=Yk;break e}else{e.msg="invalid literal/length code",n.mode=Ka;break e}break}}while(i<f&&o<l);O=y>>3,i-=O,y-=O<<3,T&=(1<<y)-1,e.next_in=i,e.next_out=o,e.avail_in=i<f?5+(f-i):5-(i-f),e.avail_out=o<l?257+(l-o):257-(o-l),n.hold=T,n.bits=y}});var kb=he((zA,qb)=>{"use strict";var gb=qi(),No=15,jb=852,yb=592,vb=0,Gc=1,_b=2,Kk=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],Gk=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],Jk=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],Zk=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];qb.exports=function(e,r,n,i,f,o,s,l){var p=l.bits,u=0,b=0,c=0,h=0,T=0,y=0,N=0,P=0,R=0,Y=0,re,W,O,te,L,ne=null,j=0,g,A=new gb.Buf16(No+1),w=new gb.Buf16(No+1),F=null,C=0,M,Q,x;for(u=0;u<=No;u++)A[u]=0;for(b=0;b<i;b++)A[r[n+b]]++;for(T=p,h=No;h>=1&&A[h]===0;h--);if(T>h&&(T=h),h===0)return f[o++]=1<<24|64<<16|0,f[o++]=1<<24|64<<16|0,l.bits=1,0;for(c=1;c<h&&A[c]===0;c++);for(T<c&&(T=c),P=1,u=1;u<=No;u++)if(P<<=1,P-=A[u],P<0)return-1;if(P>0&&(e===vb||h!==1))return-1;for(w[1]=0,u=1;u<No;u++)w[u+1]=w[u]+A[u];for(b=0;b<i;b++)r[n+b]!==0&&(s[w[r[n+b]]++]=b);if(e===vb?(ne=F=s,g=19):e===Gc?(ne=Kk,j-=257,F=Gk,C-=257,g=256):(ne=Jk,F=Zk,g=-1),Y=0,b=0,u=c,L=o,y=T,N=0,O=-1,R=1<<T,te=R-1,e===Gc&&R>jb||e===_b&&R>yb)return 1;for(;;){M=u-N,s[b]<g?(Q=0,x=s[b]):s[b]>g?(Q=F[C+s[b]],x=ne[j+s[b]]):(Q=32+64,x=0),re=1<<u-N,W=1<<y,c=W;do W-=re,f[L+(Y>>N)+W]=M<<24|Q<<16|x|0;while(W!==0);for(re=1<<u-1;Y&re;)re>>=1;if(re!==0?(Y&=re-1,Y+=re):Y=0,b++,--A[u]==0){if(u===h)break;u=r[n+s[b]]}if(u>T&&(Y&te)!==O){for(N===0&&(N=T),L+=c,y=u-N,P=1<<y;y+N<h&&(P-=A[y+N],!(P<=0));)y++,P<<=1;if(R+=1<<y,e===Gc&&R>jb||e===_b&&R>yb)return 1;O=Y&te,f[O]=T<<24|y<<16|L-o|0}}return Y!==0&&(f[L+Y]=u-N<<24|64<<16|0),l.bits=T,0}});var fg=he(zn=>{"use strict";var Xr=qi(),Jc=Dc(),ri=zc(),Xk=bb(),Qs=kb(),Qk=0,Tb=1,Bb=2,Ib=4,$k=5,Ga=6,Xf=0,eT=1,tT=2,jn=-2,Sb=-3,Zc=-4,rT=-5,xb=8,Eb=1,Ab=2,Ob=3,Nb=4,Hb=5,Rb=6,Db=7,zb=8,Fb=9,Pb=10,Ja=11,Bi=12,Xc=13,Mb=14,Qc=15,Ub=16,Lb=17,Cb=18,Vb=19,Za=20,Xa=21,Wb=22,Yb=23,Kb=24,Gb=25,Jb=26,$c=27,Zb=28,Xb=29,Rt=30,em=31,nT=32,iT=852,fT=592,oT=15,sT=oT;function Qb(t){return(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24)}function lT(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Xr.Buf16(320),this.work=new Xr.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function $b(t){var e;return!t||!t.state?jn:(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=e.wrap&1),e.mode=Eb,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Xr.Buf32(iT),e.distcode=e.distdyn=new Xr.Buf32(fT),e.sane=1,e.back=-1,Xf)}function eg(t){var e;return!t||!t.state?jn:(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,$b(t))}function tg(t,e){var r,n;return!t||!t.state||(n=t.state,e<0?(r=0,e=-e):(r=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15))?jn:(n.window!==null&&n.wbits!==e&&(n.window=null),n.wrap=r,n.wbits=e,eg(t))}function rg(t,e){var r,n;return t?(n=new lT,t.state=n,n.window=null,r=tg(t,e),r!==Xf&&(t.state=null),r):jn}function aT(t){return rg(t,sT)}var ng=!0,tm,rm;function pT(t){if(ng){var e;for(tm=new Xr.Buf32(512),rm=new Xr.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(Qs(Tb,t.lens,0,288,tm,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;Qs(Bb,t.lens,0,32,rm,0,t.work,{bits:5}),ng=!1}t.lencode=tm,t.lenbits=9,t.distcode=rm,t.distbits=5}function ig(t,e,r,n){var i,f=t.state;return f.window===null&&(f.wsize=1<<f.wbits,f.wnext=0,f.whave=0,f.window=new Xr.Buf8(f.wsize)),n>=f.wsize?(Xr.arraySet(f.window,e,r-f.wsize,f.wsize,0),f.wnext=0,f.whave=f.wsize):(i=f.wsize-f.wnext,i>n&&(i=n),Xr.arraySet(f.window,e,r-n,i,f.wnext),n-=i,n?(Xr.arraySet(f.window,e,r-n,n,0),f.wnext=n,f.whave=f.wsize):(f.wnext+=i,f.wnext===f.wsize&&(f.wnext=0),f.whave<f.wsize&&(f.whave+=i))),0}function uT(t,e){var r,n,i,f,o,s,l,p,u,b,c,h,T,y,N=0,P,R,Y,re,W,O,te,L,ne=new Xr.Buf8(4),j,g,A=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&t.avail_in!==0)return jn;r=t.state,r.mode===Bi&&(r.mode=Xc),o=t.next_out,i=t.output,l=t.avail_out,f=t.next_in,n=t.input,s=t.avail_in,p=r.hold,u=r.bits,b=s,c=l,L=Xf;e:for(;;)switch(r.mode){case Eb:if(r.wrap===0){r.mode=Xc;break}for(;u<16;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if(r.wrap&2&&p===35615){r.check=0,ne[0]=p&255,ne[1]=p>>>8&255,r.check=ri(r.check,ne,2,0),p=0,u=0,r.mode=Ab;break}if(r.flags=0,r.head&&(r.head.done=!1),!(r.wrap&1)||(((p&255)<<8)+(p>>8))%31){t.msg="incorrect header check",r.mode=Rt;break}if((p&15)!==xb){t.msg="unknown compression method",r.mode=Rt;break}if(p>>>=4,u-=4,te=(p&15)+8,r.wbits===0)r.wbits=te;else if(te>r.wbits){t.msg="invalid window size",r.mode=Rt;break}r.dmax=1<<te,t.adler=r.check=1,r.mode=p&512?Pb:Bi,p=0,u=0;break;case Ab:for(;u<16;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if(r.flags=p,(r.flags&255)!==xb){t.msg="unknown compression method",r.mode=Rt;break}if(r.flags&57344){t.msg="unknown header flags set",r.mode=Rt;break}r.head&&(r.head.text=p>>8&1),r.flags&512&&(ne[0]=p&255,ne[1]=p>>>8&255,r.check=ri(r.check,ne,2,0)),p=0,u=0,r.mode=Ob;case Ob:for(;u<32;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}r.head&&(r.head.time=p),r.flags&512&&(ne[0]=p&255,ne[1]=p>>>8&255,ne[2]=p>>>16&255,ne[3]=p>>>24&255,r.check=ri(r.check,ne,4,0)),p=0,u=0,r.mode=Nb;case Nb:for(;u<16;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}r.head&&(r.head.xflags=p&255,r.head.os=p>>8),r.flags&512&&(ne[0]=p&255,ne[1]=p>>>8&255,r.check=ri(r.check,ne,2,0)),p=0,u=0,r.mode=Hb;case Hb:if(r.flags&1024){for(;u<16;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}r.length=p,r.head&&(r.head.extra_len=p),r.flags&512&&(ne[0]=p&255,ne[1]=p>>>8&255,r.check=ri(r.check,ne,2,0)),p=0,u=0}else r.head&&(r.head.extra=null);r.mode=Rb;case Rb:if(r.flags&1024&&(h=r.length,h>s&&(h=s),h&&(r.head&&(te=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),Xr.arraySet(r.head.extra,n,f,h,te)),r.flags&512&&(r.check=ri(r.check,n,h,f)),s-=h,f+=h,r.length-=h),r.length))break e;r.length=0,r.mode=Db;case Db:if(r.flags&2048){if(s===0)break e;h=0;do te=n[f+h++],r.head&&te&&r.length<65536&&(r.head.name+=String.fromCharCode(te));while(te&&h<s);if(r.flags&512&&(r.check=ri(r.check,n,h,f)),s-=h,f+=h,te)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=zb;case zb:if(r.flags&4096){if(s===0)break e;h=0;do te=n[f+h++],r.head&&te&&r.length<65536&&(r.head.comment+=String.fromCharCode(te));while(te&&h<s);if(r.flags&512&&(r.check=ri(r.check,n,h,f)),s-=h,f+=h,te)break e}else r.head&&(r.head.comment=null);r.mode=Fb;case Fb:if(r.flags&512){for(;u<16;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if(p!==(r.check&65535)){t.msg="header crc mismatch",r.mode=Rt;break}p=0,u=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=Bi;break;case Pb:for(;u<32;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}t.adler=r.check=Qb(p),p=0,u=0,r.mode=Ja;case Ja:if(r.havedict===0)return t.next_out=o,t.avail_out=l,t.next_in=f,t.avail_in=s,r.hold=p,r.bits=u,tT;t.adler=r.check=1,r.mode=Bi;case Bi:if(e===$k||e===Ga)break e;case Xc:if(r.last){p>>>=u&7,u-=u&7,r.mode=$c;break}for(;u<3;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}switch(r.last=p&1,p>>>=1,u-=1,p&3){case 0:r.mode=Mb;break;case 1:if(pT(r),r.mode=Za,e===Ga){p>>>=2,u-=2;break e}break;case 2:r.mode=Lb;break;case 3:t.msg="invalid block type",r.mode=Rt}p>>>=2,u-=2;break;case Mb:for(p>>>=u&7,u-=u&7;u<32;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if((p&65535)!=(p>>>16^65535)){t.msg="invalid stored block lengths",r.mode=Rt;break}if(r.length=p&65535,p=0,u=0,r.mode=Qc,e===Ga)break e;case Qc:r.mode=Ub;case Ub:if(h=r.length,h){if(h>s&&(h=s),h>l&&(h=l),h===0)break e;Xr.arraySet(i,n,f,h,o),s-=h,f+=h,l-=h,o+=h,r.length-=h;break}r.mode=Bi;break;case Lb:for(;u<14;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if(r.nlen=(p&31)+257,p>>>=5,u-=5,r.ndist=(p&31)+1,p>>>=5,u-=5,r.ncode=(p&15)+4,p>>>=4,u-=4,r.nlen>286||r.ndist>30){t.msg="too many length or distance symbols",r.mode=Rt;break}r.have=0,r.mode=Cb;case Cb:for(;r.have<r.ncode;){for(;u<3;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}r.lens[A[r.have++]]=p&7,p>>>=3,u-=3}for(;r.have<19;)r.lens[A[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,j={bits:r.lenbits},L=Qs(Qk,r.lens,0,19,r.lencode,0,r.work,j),r.lenbits=j.bits,L){t.msg="invalid code lengths set",r.mode=Rt;break}r.have=0,r.mode=Vb;case Vb:for(;r.have<r.nlen+r.ndist;){for(;N=r.lencode[p&(1<<r.lenbits)-1],P=N>>>24,R=N>>>16&255,Y=N&65535,!(P<=u);){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if(Y<16)p>>>=P,u-=P,r.lens[r.have++]=Y;else{if(Y===16){for(g=P+2;u<g;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if(p>>>=P,u-=P,r.have===0){t.msg="invalid bit length repeat",r.mode=Rt;break}te=r.lens[r.have-1],h=3+(p&3),p>>>=2,u-=2}else if(Y===17){for(g=P+3;u<g;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}p>>>=P,u-=P,te=0,h=3+(p&7),p>>>=3,u-=3}else{for(g=P+7;u<g;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}p>>>=P,u-=P,te=0,h=11+(p&127),p>>>=7,u-=7}if(r.have+h>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=Rt;break}for(;h--;)r.lens[r.have++]=te}}if(r.mode===Rt)break;if(r.lens[256]===0){t.msg="invalid code -- missing end-of-block",r.mode=Rt;break}if(r.lenbits=9,j={bits:r.lenbits},L=Qs(Tb,r.lens,0,r.nlen,r.lencode,0,r.work,j),r.lenbits=j.bits,L){t.msg="invalid literal/lengths set",r.mode=Rt;break}if(r.distbits=6,r.distcode=r.distdyn,j={bits:r.distbits},L=Qs(Bb,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,j),r.distbits=j.bits,L){t.msg="invalid distances set",r.mode=Rt;break}if(r.mode=Za,e===Ga)break e;case Za:r.mode=Xa;case Xa:if(s>=6&&l>=258){t.next_out=o,t.avail_out=l,t.next_in=f,t.avail_in=s,r.hold=p,r.bits=u,Xk(t,c),o=t.next_out,i=t.output,l=t.avail_out,f=t.next_in,n=t.input,s=t.avail_in,p=r.hold,u=r.bits,r.mode===Bi&&(r.back=-1);break}for(r.back=0;N=r.lencode[p&(1<<r.lenbits)-1],P=N>>>24,R=N>>>16&255,Y=N&65535,!(P<=u);){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if(R&&(R&240)==0){for(re=P,W=R,O=Y;N=r.lencode[O+((p&(1<<re+W)-1)>>re)],P=N>>>24,R=N>>>16&255,Y=N&65535,!(re+P<=u);){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}p>>>=re,u-=re,r.back+=re}if(p>>>=P,u-=P,r.back+=P,r.length=Y,R===0){r.mode=Jb;break}if(R&32){r.back=-1,r.mode=Bi;break}if(R&64){t.msg="invalid literal/length code",r.mode=Rt;break}r.extra=R&15,r.mode=Wb;case Wb:if(r.extra){for(g=r.extra;u<g;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}r.length+=p&(1<<r.extra)-1,p>>>=r.extra,u-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=Yb;case Yb:for(;N=r.distcode[p&(1<<r.distbits)-1],P=N>>>24,R=N>>>16&255,Y=N&65535,!(P<=u);){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if((R&240)==0){for(re=P,W=R,O=Y;N=r.distcode[O+((p&(1<<re+W)-1)>>re)],P=N>>>24,R=N>>>16&255,Y=N&65535,!(re+P<=u);){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}p>>>=re,u-=re,r.back+=re}if(p>>>=P,u-=P,r.back+=P,R&64){t.msg="invalid distance code",r.mode=Rt;break}r.offset=Y,r.extra=R&15,r.mode=Kb;case Kb:if(r.extra){for(g=r.extra;u<g;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}r.offset+=p&(1<<r.extra)-1,p>>>=r.extra,u-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=Rt;break}r.mode=Gb;case Gb:if(l===0)break e;if(h=c-l,r.offset>h){if(h=r.offset-h,h>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=Rt;break}h>r.wnext?(h-=r.wnext,T=r.wsize-h):T=r.wnext-h,h>r.length&&(h=r.length),y=r.window}else y=i,T=o-r.offset,h=r.length;h>l&&(h=l),l-=h,r.length-=h;do i[o++]=y[T++];while(--h);r.length===0&&(r.mode=Xa);break;case Jb:if(l===0)break e;i[o++]=r.length,l--,r.mode=Xa;break;case $c:if(r.wrap){for(;u<32;){if(s===0)break e;s--,p|=n[f++]<<u,u+=8}if(c-=l,t.total_out+=c,r.total+=c,c&&(t.adler=r.check=r.flags?ri(r.check,i,c,o-c):Jc(r.check,i,c,o-c)),c=l,(r.flags?p:Qb(p))!==r.check){t.msg="incorrect data check",r.mode=Rt;break}p=0,u=0}r.mode=Zb;case Zb:if(r.wrap&&r.flags){for(;u<32;){if(s===0)break e;s--,p+=n[f++]<<u,u+=8}if(p!==(r.total&4294967295)){t.msg="incorrect length check",r.mode=Rt;break}p=0,u=0}r.mode=Xb;case Xb:L=eT;break e;case Rt:L=Sb;break e;case em:return Zc;case nT:default:return jn}return t.next_out=o,t.avail_out=l,t.next_in=f,t.avail_in=s,r.hold=p,r.bits=u,(r.wsize||c!==t.avail_out&&r.mode<Rt&&(r.mode<$c||e!==Ib))&&ig(t,t.output,t.next_out,c-t.avail_out)?(r.mode=em,Zc):(b-=t.avail_in,c-=t.avail_out,t.total_in+=b,t.total_out+=c,r.total+=c,r.wrap&&c&&(t.adler=r.check=r.flags?ri(r.check,i,c,t.next_out-c):Jc(r.check,i,c,t.next_out-c)),t.data_type=r.bits+(r.last?64:0)+(r.mode===Bi?128:0)+(r.mode===Za||r.mode===Qc?256:0),(b===0&&c===0||e===Ib)&&L===Xf&&(L=rT),L)}function cT(t){if(!t||!t.state)return jn;var e=t.state;return e.window&&(e.window=null),t.state=null,Xf}function mT(t,e){var r;return!t||!t.state||(r=t.state,(r.wrap&2)==0)?jn:(r.head=e,e.done=!1,Xf)}function dT(t,e){var r=e.length,n,i,f;return!t||!t.state||(n=t.state,n.wrap!==0&&n.mode!==Ja)?jn:n.mode===Ja&&(i=1,i=Jc(i,e,r,0),i!==n.check)?Sb:(f=ig(t,e,r,r),f?(n.mode=em,Zc):(n.havedict=1,Xf))}zn.inflateReset=eg;zn.inflateReset2=tg;zn.inflateResetKeep=$b;zn.inflateInit=aT;zn.inflateInit2=rg;zn.inflate=uT;zn.inflateEnd=cT;zn.inflateGetHeader=mT;zn.inflateSetDictionary=dT;zn.inflateInfo="pako inflate (from Nodeca project)"});var nm=he((PA,og)=>{"use strict";og.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}});var lg=he((MA,sg)=>{"use strict";function wT(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}sg.exports=wT});var pg=he(el=>{"use strict";var Ho=fg(),$s=qi(),Qa=Lc(),Wt=nm(),im=Pa(),hT=Cc(),bT=lg(),ag=Object.prototype.toString;function Qf(t){if(!(this instanceof Qf))return new Qf(t);this.options=$s.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,e.windowBits===0&&(e.windowBits=-15)),e.windowBits>=0&&e.windowBits<16&&!(t&&t.windowBits)&&(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&(e.windowBits&15)==0&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new hT,this.strm.avail_out=0;var r=Ho.inflateInit2(this.strm,e.windowBits);if(r!==Wt.Z_OK)throw new Error(im[r]);if(this.header=new bT,Ho.inflateGetHeader(this.strm,this.header),e.dictionary&&(typeof e.dictionary=="string"?e.dictionary=Qa.string2buf(e.dictionary):ag.call(e.dictionary)==="[object ArrayBuffer]"&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(r=Ho.inflateSetDictionary(this.strm,e.dictionary),r!==Wt.Z_OK)))throw new Error(im[r])}Qf.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i=this.options.dictionary,f,o,s,l,p,u=!1;if(this.ended)return!1;o=e===~~e?e:e===!0?Wt.Z_FINISH:Wt.Z_NO_FLUSH,typeof t=="string"?r.input=Qa.binstring2buf(t):ag.call(t)==="[object ArrayBuffer]"?r.input=new Uint8Array(t):r.input=t,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=new $s.Buf8(n),r.next_out=0,r.avail_out=n),f=Ho.inflate(r,Wt.Z_NO_FLUSH),f===Wt.Z_NEED_DICT&&i&&(f=Ho.inflateSetDictionary(this.strm,i)),f===Wt.Z_BUF_ERROR&&u===!0&&(f=Wt.Z_OK,u=!1),f!==Wt.Z_STREAM_END&&f!==Wt.Z_OK)return this.onEnd(f),this.ended=!0,!1;r.next_out&&(r.avail_out===0||f===Wt.Z_STREAM_END||r.avail_in===0&&(o===Wt.Z_FINISH||o===Wt.Z_SYNC_FLUSH))&&(this.options.to==="string"?(s=Qa.utf8border(r.output,r.next_out),l=r.next_out-s,p=Qa.buf2string(r.output,s),r.next_out=l,r.avail_out=n-l,l&&$s.arraySet(r.output,r.output,s,l,0),this.onData(p)):this.onData($s.shrinkBuf(r.output,r.next_out))),r.avail_in===0&&r.avail_out===0&&(u=!0)}while((r.avail_in>0||r.avail_out===0)&&f!==Wt.Z_STREAM_END);return f===Wt.Z_STREAM_END&&(o=Wt.Z_FINISH),o===Wt.Z_FINISH?(f=Ho.inflateEnd(this.strm),this.onEnd(f),this.ended=!0,f===Wt.Z_OK):(o===Wt.Z_SYNC_FLUSH&&(this.onEnd(Wt.Z_OK),r.avail_out=0),!0)};Qf.prototype.onData=function(t){this.chunks.push(t)};Qf.prototype.onEnd=function(t){t===Wt.Z_OK&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=$s.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function fm(t,e){var r=new Qf(e);if(r.push(t,!0),r.err)throw r.msg||im[r.err];return r.result}function gT(t,e){return e=e||{},e.raw=!0,fm(t,e)}el.Inflate=Qf;el.inflate=fm;el.inflateRaw=gT;el.ungzip=fm});var mg=he((LA,cg)=>{"use strict";var jT=qi().assign,yT=wb(),vT=pg(),_T=nm(),ug={};jT(ug,yT,vT,_T);cg.exports=ug});var om=he(()=>{});var bg=he(hg=>{"use strict";var kT=[0,255,65535,16777215,4294967295];function TT(t,e,r,n,i){var f;for(f=0;f<i;f++)r[n+f]=t[e+f]}function BT(t,e,r,n){var i;for(i=0;i<n;i++)t[e+i]=t[e-r+i]}function lm(t){this.array=t,this.pos=0}lm.prototype.readUncompressedLength=function(){for(var t=0,e=0,r,n;e<32&&this.pos<this.array.length;){if(r=this.array[this.pos],this.pos+=1,n=r&127,n<<e>>>e!==n)return-1;if(t|=n<<e,r<128)return t;e+=7}return-1};lm.prototype.uncompressToBuffer=function(t){for(var e=this.array,r=e.length,n=this.pos,i=0,f,o,s,l;n<e.length;)if(f=e[n],n+=1,(f&3)==0){if(o=(f>>>2)+1,o>60){if(n+3>=r)return!1;s=o-60,o=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),o=(o&kT[s])+1,n+=s}if(n+o>r)return!1;TT(e,n,t,i,o),n+=o,i+=o}else{switch(f&3){case 1:o=(f>>>2&7)+4,l=e[n]+(f>>>5<<8),n+=1;break;case 2:if(n+1>=r)return!1;o=(f>>>2)+1,l=e[n]+(e[n+1]<<8),n+=2;break;case 3:if(n+3>=r)return!1;o=(f>>>2)+1,l=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),n+=4;break;default:break}if(l===0||l>i)return!1;BT(t,i,l,o),i+=o}return!0};hg.SnappyDecompressor=lm});var _g=he(vg=>{"use strict";var IT=16,ST=1<<IT,gg=14,am=new Array(gg+1);function nl(t,e){return t*506832829>>>e}function il(t,e){return t[e]+(t[e+1]<<8)+(t[e+2]<<16)+(t[e+3]<<24)}function jg(t,e,r){return t[e]===t[r]&&t[e+1]===t[r+1]&&t[e+2]===t[r+2]&&t[e+3]===t[r+3]}function xT(t,e,r,n,i){var f;for(f=0;f<i;f++)r[n+f]=t[e+f]}function yg(t,e,r,n,i){return r<=60?(n[i]=r-1<<2,i+=1):r<256?(n[i]=60<<2,n[i+1]=r-1,i+=2):(n[i]=61<<2,n[i+1]=r-1&255,n[i+2]=r-1>>>8,i+=3),xT(t,e,n,i,r),i+r}function pm(t,e,r,n){return n<12&&r<2048?(t[e]=1+(n-4<<2)+(r>>>8<<5),t[e+1]=r&255,e+2):(t[e]=2+(n-1<<2),t[e+1]=r&255,t[e+2]=r>>>8,e+3)}function ET(t,e,r,n){for(;n>=68;)e=pm(t,e,r,64),n-=64;return n>64&&(e=pm(t,e,r,60),n-=60),pm(t,e,r,n)}function AT(t,e,r,n,i){for(var f=1;1<<f<=r&&f<=gg;)f+=1;f-=1;var o=32-f;typeof am[f]=="undefined"&&(am[f]=new Uint16Array(1<<f));var s=am[f],l;for(l=0;l<s.length;l++)s[l]=0;var p=e+r,u,b=e,c=e,h,T,y,N,P,R,Y,re,W,O,te,L=!0,ne=15;if(r>=ne)for(u=p-ne,e+=1,T=nl(il(t,e),o);L;){P=32,y=e;do{if(e=y,h=T,R=P>>>5,P+=1,y=e+R,e>u){L=!1;break}T=nl(il(t,y),o),N=b+s[h],s[h]=e-b}while(!jg(t,e,N));if(!L)break;i=yg(t,c,e-c,n,i);do{for(Y=e,re=4;e+re<p&&t[e+re]===t[N+re];)re+=1;if(e+=re,W=Y-N,i=ET(n,i,W,re),c=e,e>=u){L=!1;break}O=nl(il(t,e-1),o),s[O]=e-1-b,te=nl(il(t,e),o),N=b+s[te],s[te]=e-b}while(jg(t,e,N));if(!L)break;e+=1,T=nl(il(t,e),o)}return c<p&&(i=yg(t,c,p-c,n,i)),i}function OT(t,e,r){do e[r]=t&127,t=t>>>7,t>0&&(e[r]+=128),r+=1;while(t>0);return r}function um(t){this.array=t}um.prototype.maxCompressedLength=function(){var t=this.array.length;return 32+t+Math.floor(t/6)};um.prototype.compressToBuffer=function(t){var e=this.array,r=e.length,n=0,i=0,f;for(i=OT(r,t,i);n<r;)f=Math.min(r-n,ST),i=AT(e,n,f,t,i),n+=f;return i};vg.SnappyCompressor=um});var Bg=he(cm=>{"use strict";function qg(){return typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node!="undefined"}function tp(t){return t instanceof Uint8Array&&(!qg()||!Buffer.isBuffer(t))}function rp(t){return t instanceof ArrayBuffer}function kg(t){return qg()?Buffer.isBuffer(t):!1}var NT=bg().SnappyDecompressor,HT=_g().SnappyCompressor,Tg="Argument compressed must be type of ArrayBuffer, Buffer, or Uint8Array";function RT(t){if(!tp(t)&&!rp(t)&&!kg(t))throw new TypeError(Tg);var e=!1,r=!1;tp(t)?e=!0:rp(t)&&(r=!0,t=new Uint8Array(t));var n=new NT(t),i=n.readUncompressedLength();if(i===-1)throw new Error("Invalid Snappy bitstream");var f,o;if(e){if(f=new Uint8Array(i),!n.uncompressToBuffer(f))throw new Error("Invalid Snappy bitstream")}else if(r){if(f=new ArrayBuffer(i),o=new Uint8Array(f),!n.uncompressToBuffer(o))throw new Error("Invalid Snappy bitstream")}else if(f=Buffer.alloc(i),!n.uncompressToBuffer(f))throw new Error("Invalid Snappy bitstream");return f}function DT(t){if(!tp(t)&&!rp(t)&&!kg(t))throw new TypeError(Tg);var e=!1,r=!1;tp(t)?e=!0:rp(t)&&(r=!0,t=new Uint8Array(t));var n=new HT(t),i=n.maxCompressedLength(),f,o,s;if(e?(f=new Uint8Array(i),s=n.compressToBuffer(f)):r?(f=new ArrayBuffer(i),o=new Uint8Array(f),s=n.compressToBuffer(o)):(f=Buffer.alloc(i),s=n.compressToBuffer(f)),!f.slice){var l=new Uint8Array(Array.prototype.slice.call(f,0,s));if(e)return l;if(r)return l.buffer;throw new Error("Not implemented")}return f.slice(0,s)}cm.uncompress=RT;cm.compress=DT});var mm=he(Ro=>{Ro.hashU32=function(e){return e=e|0,e=e+2127912214+(e<<12)|0,e=e^-949894596^e>>>19,e=e+374761393+(e<<5)|0,e=e+-744332180^e<<9,e=e+-42973499+(e<<3)|0,e^-1252372727^e>>>16|0};Ro.readU64=function(e,r){var n=0;return n|=e[r++]<<0,n|=e[r++]<<8,n|=e[r++]<<16,n|=e[r++]<<24,n|=e[r++]<<32,n|=e[r++]<<40,n|=e[r++]<<48,n|=e[r++]<<56,n};Ro.readU32=function(e,r){var n=0;return n|=e[r++]<<0,n|=e[r++]<<8,n|=e[r++]<<16,n|=e[r++]<<24,n};Ro.writeU32=function(e,r,n){e[r++]=n>>0&255,e[r++]=n>>8&255,e[r++]=n>>16&255,e[r++]=n>>24&255};Ro.imul=function(e,r){var n=e>>>16,i=e&65535,f=r>>>16,o=r&65535;return i*o+(n*o+i*f<<16)|0}});var Ag=he(Eg=>{var ni=mm(),eo=2654435761,to=2246822519,Ig=3266489917,FT=668265263,Sg=374761393;function lp(t,e){return t=t|0,e=e|0,t>>>(32-e|0)|t<<e|0}function xg(t,e,r){return t=t|0,e=e|0,r=r|0,ni.imul(t>>>(32-e|0)|t<<e,r)|0}function dm(t,e){return t=t|0,e=e|0,t>>>e^t|0}function sl(t,e,r,n,i){return xg(ni.imul(e,r)+t,n,i)}function PT(t,e,r){return xg(t+ni.imul(e[r],Sg),11,eo)}function MT(t,e,r){return sl(t,ni.readU32(e,r),Ig,17,FT)}function UT(t,e,r){return[sl(t[0],ni.readU32(e,r+0),to,13,eo),sl(t[1],ni.readU32(e,r+4),to,13,eo),sl(t[2],ni.readU32(e,r+8),to,13,eo),sl(t[3],ni.readU32(e,r+12),to,13,eo)]}function LT(t,e,r,n){var i,f;if(f=n,n>=16){for(i=[t+eo+to,t+to,t,t-eo];n>=16;)i=UT(i,e,r),r+=16,n-=16;i=lp(i[0],1)+lp(i[1],7)+lp(i[2],12)+lp(i[3],18)+f}else i=t+Sg+n>>>0;for(;n>=4;)i=MT(i,e,r),r+=4,n-=4;for(;n>0;)i=PT(i,e,r),r++,n--;return i=dm(ni.imul(dm(ni.imul(dm(i,15),to),13),Ig),16),i>>>0}Eg.hash=LT});var Mg=he(lr=>{var CT=Ag(),yn=mm(),ap=4,VT=13,Og=5,wm=6,pp=1<<16,ll=4,up=(1<<ll)-1,WT=4,Do=(1<<WT)-1,Ng=Fg(5<<20),hm=KT(),bm=407708164,YT=4,Hg=8,Rg=16,gm=64,jm=192,cp=2147483648,Dg=7,ym=4,zg=7,mp={4:65536,5:262144,6:1048576,7:4194304};function KT(){try{return new Uint32Array(pp)}catch{for(var t=new Array(pp),e=0;e<pp;e++)t[e]=0;return t}}function GT(t){for(var e=0;e<pp;e++)hm[e]=0}function Fg(t){try{return new Uint8Array(t)}catch{for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e}}function Pg(t,e,r){if(typeof t.buffer!==void 0){if(Uint8Array.prototype.slice)return t.slice(e,r);var n=t.length;e=e|0,e=e<0?Math.max(n+e,0):Math.min(e,n),r=r===void 0?n:r|0,r=r<0?Math.max(n+r,0):Math.min(r,n);for(var i=new Uint8Array(r-e),f=e,o=0;f<r;)i[o++]=t[f++];return i}else return t.slice(e,r)}lr.compressBound=function(e){return e+e/255+16|0};lr.decompressBound=function(e){var r=0;if(yn.readU32(e,r)!==bm)throw new Error("invalid magic number");r+=4;var n=e[r++];if((n&jm)!==gm)throw new Error("incompatible descriptor version "+(n&jm));var i=(n&Rg)!=0,f=(n&Hg)!=0,o=e[r++]>>ym&zg;if(mp[o]===void 0)throw new Error("invalid block size "+o);var s=mp[o];if(f)return yn.readU64(e,r);r++;for(var l=0;;){var p=yn.readU32(e,r);if(r+=4,p&cp?(p&=~cp,l+=p):l+=s,p===0)return l;i&&(r+=4),r+=p}};lr.makeBuffer=Fg;lr.decompressBlock=function(e,r,n,i,f){var o,s,l,p,u;for(l=n+i;n<l;){var b=e[n++],c=b>>4;if(c>0){if(c===15)for(;c+=e[n],e[n++]===255;);for(p=n+c;n<p;)r[f++]=e[n++]}if(n>=l)break;if(o=b&15,s=e[n++]|e[n++]<<8,o===15)for(;o+=e[n],e[n++]===255;);for(o+=ap,u=f-s,p=u+o;u<p;)r[f++]=r[u++]|0}return f};lr.compressBlock=function(e,r,n,i,f){var o,s,l,p,u,b,c,h,T;if(c=0,h=i+n,s=n,i>=VT)for(var y=(1<<wm)+3;n+ap<h-Og;){var N=yn.readU32(e,n),P=yn.hashU32(N)>>>0;if(P=(P>>16^P)>>>0&65535,o=f[P]-1,f[P]=n+1,o<0||n-o>>>16>0||yn.readU32(e,o)!==N){u=y++>>wm,n+=u;continue}for(y=(1<<wm)+3,b=n-s,p=n-o,n+=ap,o+=ap,l=n;n<h-Og&&e[n]===e[o];)n++,o++;l=n-l;var R=l<up?l:up;if(b>=Do){for(r[c++]=(Do<<ll)+R,T=b-Do;T>=255;T-=255)r[c++]=255;r[c++]=T}else r[c++]=(b<<ll)+R;for(var Y=0;Y<b;Y++)r[c++]=e[s+Y];if(r[c++]=p,r[c++]=p>>8,l>=up){for(T=l-up;T>=255;T-=255)r[c++]=255;r[c++]=T}s=n}if(s===0)return 0;if(b=h-s,b>=Do){for(r[c++]=Do<<ll,T=b-Do;T>=255;T-=255)r[c++]=255;r[c++]=T}else r[c++]=b<<ll;for(n=s;n<h;)r[c++]=e[n++];return c};lr.decompressFrame=function(e,r){var n,i,f,o,s=0,l=0;if(yn.readU32(e,s)!==bm)throw new Error("invalid magic number");if(s+=4,o=e[s++],(o&jm)!==gm)throw new Error("incompatible descriptor version");n=(o&Rg)!=0,i=(o&YT)!=0,f=(o&Hg)!=0;var p=e[s++]>>ym&zg;if(mp[p]===void 0)throw new Error("invalid block size");for(f&&(s+=8),s++;;){var u;if(u=yn.readU32(e,s),s+=4,u===0)break;if(n&&(s+=4),(u&cp)!=0){u&=~cp;for(var b=0;b<u;b++)r[l++]=e[s++]}else l=lr.decompressBlock(e,r,s,u,l),s+=u}return i&&(s+=4),l};lr.compressFrame=function(e,r){var n=0;yn.writeU32(r,n,bm),n+=4,r[n++]=gm,r[n++]=Dg<<ym,r[n]=CT.hash(0,r,4,n-4)>>8,n++;var i=mp[Dg],f=e.length,o=0;for(GT(hm);f>0;){var s=0,l=f>i?i:f;if(s=lr.compressBlock(e,Ng,o,l,hm),s>l||s===0){yn.writeU32(r,n,2147483648|l),n+=4;for(var p=o+l;o<p;)r[n++]=e[o++];f-=l}else{yn.writeU32(r,n,s),n+=4;for(var u=0;u<s;)r[n++]=Ng[u++];o+=l,f-=l}}return yn.writeU32(r,n,0),n+=4,n};lr.decompress=function(e,r){var n,i;return r===void 0&&(r=lr.decompressBound(e)),n=lr.makeBuffer(r),i=lr.decompressFrame(e,n),i!==r&&(n=Pg(n,0,i)),n};lr.compress=function(e,r){var n,i;return r===void 0&&(r=lr.compressBound(e.length)),n=lr.makeBuffer(r),i=lr.compressFrame(e,n),i!==r&&(n=Pg(n,0,i)),n}});var _n=he((_N,pj)=>{var Wm=4294967296,aj=[];for(Vo=0;Vo<256;Vo++)aj[Vo]=(Vo>15?"":"0")+Vo.toString(16);var Vo,ul=pj.exports=function(t,e){t instanceof Buffer?(this.buffer=t,this.offset=e||0):Object.prototype.toString.call(t)=="[object Uint8Array]"?(this.buffer=new Buffer(t),this.offset=e||0):(this.buffer=this.buffer||new Buffer(8),this.offset=0,this.setValue.apply(this,arguments))};ul.MAX_INT=Math.pow(2,53);ul.MIN_INT=-Math.pow(2,53);ul.prototype={constructor:ul,_2scomp:function(){for(var t=this.buffer,e=this.offset,r=1,n=e+7;n>=e;n--){var i=(t[n]^255)+r;t[n]=i&255,r=i>>8}},setValue:function(t,e){var r=!1;if(arguments.length==1)if(typeof t=="number"){if(r=t<0,t=Math.abs(t),e=t%Wm,t=t/Wm,t>Wm)throw new RangeError(t+" is outside Int64 range");t=t|0}else if(typeof t=="string")t=(t+"").replace(/^0x/,""),e=t.substr(-8),t=t.length>8?t.substr(0,t.length-8):"",t=parseInt(t,16),e=parseInt(e,16);else throw new Error(t+" must be a Number or String");for(var n=this.buffer,i=this.offset,f=7;f>=0;f--)n[i+f]=e&255,e=f==4?t:e>>>8;r&&this._2scomp()},toNumber:function(t){for(var e=this.buffer,r=this.offset,n=e[r]&128,i=0,f=1,o=7,s=1;o>=0;o--,s*=256){var l=e[r+o];n&&(l=(l^255)+f,f=l>>8,l=l&255),i+=l*s}return!t&&i>=ul.MAX_INT?n?-1/0:1/0:n?-i:i},valueOf:function(){return this.toNumber(!1)},toString:function(t){return this.valueOf().toString(t||10)},toOctetString:function(t){for(var e=new Array(8),r=this.buffer,n=this.offset,i=0;i<8;i++)e[i]=aj[r[n+i]];return e.join(t||"")},toBuffer:function(t){if(t&&this.offset===0)return this.buffer;var e=new Buffer(8);return this.buffer.copy(e,0,this.offset,this.offset+8),e},copy:function(t,e){this.buffer.copy(t,e||0,this.offset,this.offset+8)},compare:function(t){if((this.buffer[this.offset]&128)!=(t.buffer[t.offset]&128))return t.buffer[t.offset]-this.buffer[this.offset];for(var e=0;e<8;e++)if(this.buffer[this.offset+e]!==t.buffer[t.offset+e])return this.buffer[this.offset+e]-t.buffer[t.offset+e];return 0},equals:function(t){return this.compare(t)===0},inspect:function(){return"[Int64 value:"+this+" octets:"+this.toOctetString(" ")+"]"}}});var cj=he((qN,uj)=>{uj.exports=function(e){return e&&typeof e=="object"&&typeof e.copy=="function"&&typeof e.fill=="function"&&typeof e.readUInt8=="function"}});var mj=he((kN,Ym)=>{typeof Object.create=="function"?Ym.exports=function(e,r){e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:Ym.exports=function(e,r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e}});var Ai=he(ot=>{var dj=Object.getOwnPropertyDescriptors||function(e){for(var r=Object.keys(e),n={},i=0;i<r.length;i++)n[r[i]]=Object.getOwnPropertyDescriptor(e,r[i]);return n},lI=/%[sdj%]/g;ot.format=function(t){if(!Dp(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(wf(arguments[r]));return e.join(" ")}for(var r=1,n=arguments,i=n.length,f=String(t).replace(lI,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch{return"[Circular]"}default:return s}}),o=n[r];r<i;o=n[++r])Rp(o)||!Wo(o)?f+=" "+o:f+=" "+wf(o);return f};ot.deprecate=function(t,e){if(typeof process!="undefined"&&process.noDeprecation===!0)return t;if(typeof process=="undefined")return function(){return ot.deprecate(t,e).apply(this,arguments)};var r=!1;function n(){if(!r){if(process.throwDeprecation)throw new Error(e);process.traceDeprecation?console.trace(e):console.error(e),r=!0}return t.apply(this,arguments)}return n};var Np={},Km;ot.debuglog=function(t){if(hf(Km)&&(Km=process.env.NODE_DEBUG||""),t=t.toUpperCase(),!Np[t])if(new RegExp("\\b"+t+"\\b","i").test(Km)){var e=process.pid;Np[t]=function(){var r=ot.format.apply(ot,arguments);console.error("%s %d: %s",t,e,r)}}else Np[t]=function(){};return Np[t]};function wf(t,e){var r={seen:[],stylize:pI};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),Zm(e)?r.showHidden=e:e&&ot._extend(r,e),hf(r.showHidden)&&(r.showHidden=!1),hf(r.depth)&&(r.depth=2),hf(r.colors)&&(r.colors=!1),hf(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=aI),Hp(r,t,r.depth)}ot.inspect=wf;wf.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]};wf.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function aI(t,e){var r=wf.styles[e];return r?"["+wf.colors[r][0]+"m"+t+"["+wf.colors[r][1]+"m":t}function pI(t,e){return t}function uI(t){var e={};return t.forEach(function(r,n){e[r]=!0}),e}function Hp(t,e,r){if(t.customInspect&&e&&Pp(e.inspect)&&e.inspect!==ot.inspect&&!(e.constructor&&e.constructor.prototype===e)){var n=e.inspect(r,t);return Dp(n)||(n=Hp(t,n,r)),n}var i=cI(t,e);if(i)return i;var f=Object.keys(e),o=uI(f);if(t.showHidden&&(f=Object.getOwnPropertyNames(e)),Fp(e)&&(f.indexOf("message")>=0||f.indexOf("description")>=0))return Gm(e);if(f.length===0){if(Pp(e)){var s=e.name?": "+e.name:"";return t.stylize("[Function"+s+"]","special")}if(zp(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(Xm(e))return t.stylize(Date.prototype.toString.call(e),"date");if(Fp(e))return Gm(e)}var l="",p=!1,u=["{","}"];if(wj(e)&&(p=!0,u=["[","]"]),Pp(e)){var b=e.name?": "+e.name:"";l=" [Function"+b+"]"}if(zp(e)&&(l=" "+RegExp.prototype.toString.call(e)),Xm(e)&&(l=" "+Date.prototype.toUTCString.call(e)),Fp(e)&&(l=" "+Gm(e)),f.length===0&&(!p||e.length==0))return u[0]+l+u[1];if(r<0)return zp(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special");t.seen.push(e);var c;return p?c=mI(t,e,r,o,f):c=f.map(function(h){return Jm(t,e,r,o,h,p)}),t.seen.pop(),dI(c,l,u)}function cI(t,e){if(hf(e))return t.stylize("undefined","undefined");if(Dp(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(hj(e))return t.stylize(""+e,"number");if(Zm(e))return t.stylize(""+e,"boolean");if(Rp(e))return t.stylize("null","null")}function Gm(t){return"["+Error.prototype.toString.call(t)+"]"}function mI(t,e,r,n,i){for(var f=[],o=0,s=e.length;o<s;++o)bj(e,String(o))?f.push(Jm(t,e,r,n,String(o),!0)):f.push("");return i.forEach(function(l){l.match(/^\d+$/)||f.push(Jm(t,e,r,n,l,!0))}),f}function Jm(t,e,r,n,i,f){var o,s,l;if(l=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]},l.get?l.set?s=t.stylize("[Getter/Setter]","special"):s=t.stylize("[Getter]","special"):l.set&&(s=t.stylize("[Setter]","special")),bj(n,i)||(o="["+i+"]"),s||(t.seen.indexOf(l.value)<0?(Rp(r)?s=Hp(t,l.value,null):s=Hp(t,l.value,r-1),s.indexOf(`
2
+ `)>-1&&(f?s=s.split(`
3
+ `).map(function(p){return" "+p}).join(`
4
4
  `).substr(2):s=`
5
5
  `+s.split(`
6
- `).map(function(u){return" "+u}).join(`
7
- `))):s=t.stylize("[Circular]","special")),Mo(f)){if(o&&i.match(/^\d+$/))return s;f=JSON.stringify(""+i),f.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(f=f.substr(1,f.length-2),f=t.stylize(f,"name")):(f=f.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),f=t.stylize(f,"string"))}return f+": "+s}function h4(t,e,r){var n=0,i=t.reduce(function(o,f){return n++,f.indexOf(`
8
- `)>=0&&n++,o+f.replace(/\u001b\[\d\d?m/g,"").length+1},0);return i>60?r[0]+(e===""?"":e+`
6
+ `).map(function(p){return" "+p}).join(`
7
+ `))):s=t.stylize("[Circular]","special")),hf(o)){if(f&&i.match(/^\d+$/))return s;o=JSON.stringify(""+i),o.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(o=o.substr(1,o.length-2),o=t.stylize(o,"name")):(o=o.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),o=t.stylize(o,"string"))}return o+": "+s}function dI(t,e,r){var n=0,i=t.reduce(function(f,o){return n++,o.indexOf(`
8
+ `)>=0&&n++,f+o.replace(/\u001b\[\d\d?m/g,"").length+1},0);return i>60?r[0]+(e===""?"":e+`
9
9
  `)+" "+t.join(`,
10
- `)+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}function Vq(t){return Array.isArray(t)}wt.isArray=Vq;function hw(t){return typeof t=="boolean"}wt.isBoolean=hw;function wp(t){return t===null}wt.isNull=wp;function g4(t){return t==null}wt.isNullOrUndefined=g4;function Cq(t){return typeof t=="number"}wt.isNumber=Cq;function hp(t){return typeof t=="string"}wt.isString=hp;function y4(t){return typeof t=="symbol"}wt.isSymbol=y4;function Mo(t){return t===void 0}wt.isUndefined=Mo;function gp(t){return Ms(t)&&yw(t)==="[object RegExp]"}wt.isRegExp=gp;function Ms(t){return typeof t=="object"&&t!==null}wt.isObject=Ms;function gw(t){return Ms(t)&&yw(t)==="[object Date]"}wt.isDate=gw;function yp(t){return Ms(t)&&(yw(t)==="[object Error]"||t instanceof Error)}wt.isError=yp;function jp(t){return typeof t=="function"}wt.isFunction=jp;function j4(t){return t===null||typeof t=="boolean"||typeof t=="number"||typeof t=="string"||typeof t=="symbol"||typeof t=="undefined"}wt.isPrimitive=j4;wt.isBuffer=zq();function yw(t){return Object.prototype.toString.call(t)}function jw(t){return t<10?"0"+t.toString(10):t.toString(10)}var _4=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function q4(){var t=new Date,e=[jw(t.getHours()),jw(t.getMinutes()),jw(t.getSeconds())].join(":");return[t.getDate(),_4[t.getMonth()],e].join(" ")}wt.log=function(){console.log("%s - %s",q4(),wt.format.apply(wt,arguments))};wt.inherits=Uq();wt._extend=function(t,e){if(!e||!Ms(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t};function Wq(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var Vf=typeof Symbol!="undefined"?Symbol("util.promisify.custom"):void 0;wt.promisify=function(e){if(typeof e!="function")throw new TypeError('The "original" argument must be of type Function');if(Vf&&e[Vf]){var r=e[Vf];if(typeof r!="function")throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(r,Vf,{value:r,enumerable:!1,writable:!1,configurable:!0}),r}function r(){for(var n,i,o=new Promise(function(l,u){n=l,i=u}),f=[],s=0;s<arguments.length;s++)f.push(arguments[s]);f.push(function(l,u){l?i(l):n(u)});try{e.apply(this,f)}catch(l){i(l)}return o}return Object.setPrototypeOf(r,Object.getPrototypeOf(e)),Vf&&Object.defineProperty(r,Vf,{value:r,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(r,Lq(e))};wt.promisify.custom=Vf;function v4(t,e){if(!t){var r=new Error("Promise was rejected with a falsy value");r.reason=t,t=r}return e(t)}function T4(t){if(typeof t!="function")throw new TypeError('The "original" argument must be of type Function');function e(){for(var r=[],n=0;n<arguments.length;n++)r.push(arguments[n]);var i=r.pop();if(typeof i!="function")throw new TypeError("The last argument must be of type Function");var o=this,f=function(){return i.apply(o,arguments)};t.apply(this,r).then(function(s){process.nextTick(f,null,s)},function(s){process.nextTick(v4,s,f)})}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),Object.defineProperties(e,Lq(t)),e}wt.callbackify=T4});var zo=z((pi,_w)=>{var _p=Zi(),Al=pi.Type={STOP:0,VOID:1,BOOL:2,BYTE:3,I08:3,DOUBLE:4,I16:6,I32:8,I64:10,STRING:11,UTF7:11,STRUCT:12,MAP:13,SET:14,LIST:15,UTF8:16,UTF16:17};pi.MessageType={CALL:1,REPLY:2,EXCEPTION:3,ONEWAY:4};pi.TException=qp;function qp(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}_p.inherits(qp,Error);var B4=pi.TApplicationExceptionType={UNKNOWN:0,UNKNOWN_METHOD:1,INVALID_MESSAGE_TYPE:2,WRONG_METHOD_NAME:3,BAD_SEQUENCE_ID:4,MISSING_RESULT:5,INTERNAL_ERROR:6,PROTOCOL_ERROR:7,INVALID_TRANSFORM:8,INVALID_PROTOCOL:9,UNSUPPORTED_CLIENT_TYPE:10};pi.TApplicationException=vp;function vp(t,e){qp.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.type=t||B4.UNKNOWN,this.name=this.constructor.name,this.message=e}_p.inherits(vp,qp);vp.prototype.read=function(t){for(var e,r=t.readStructBegin("TApplicationException");r=t.readFieldBegin(),r.ftype!=Al.STOP;){switch(r.fid){case 1:r.ftype==Al.STRING?(r=t.readString(),this.message=r):r=t.skip(r.ftype);break;case 2:r.ftype==Al.I32?(r=t.readI32(),this.type=r):r=t.skip(r.ftype);break;default:r=t.skip(r.ftype);break}t.readFieldEnd()}t.readStructEnd()};vp.prototype.write=function(t){t.writeStructBegin("TApplicationException"),this.message&&(t.writeFieldBegin("message",Al.STRING,1),t.writeString(this.message),t.writeFieldEnd()),this.code&&(t.writeFieldBegin("type",Al.I32,2),t.writeI32(this.code),t.writeFieldEnd()),t.writeFieldStop(),t.writeStructEnd()};var X6=pi.TProtocolExceptionType={UNKNOWN:0,INVALID_DATA:1,NEGATIVE_SIZE:2,SIZE_LIMIT:3,BAD_VERSION:4,NOT_IMPLEMENTED:5,DEPTH_LIMIT:6};pi.TProtocolException=Yq;function Yq(t,e){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.type=t,this.message=e}_p.inherits(Yq,Error);pi.objectLength=function(t){return Object.keys(t).length};pi.inherits=function(t,e){_p.inherits(t,e)};var Tp,Bp;Tp=function(t,e){if(!t)return t;var r;e.shift===void 0?r=e:r=e[0];var n=r,i=t.length,o=[],f,s;for(f=0;f<i;f++)s=t[f],r===null?o.push(s):r===Bp||r===Tp?o.push(r(s,e.slice(1))):o.push(new n(s));return o};Bp=function(t,e){if(!t)return t;var r;e.shift===void 0?r=e:r=e[0];var n=r,i={},o;for(var f in t)t.hasOwnProperty(f)&&(o=t[f],r===null?i[f]=o:r===Bp||r===Tp?i[f]=r(o,e.slice(1)):i[f]=new n(o));return i};_w.exports.copyMap=Bp;_w.exports.copyList=Tp});var Gq=z((Q6,Kq)=>{var zs=null;typeof WebSocket!="undefined"?zs=WebSocket:typeof MozWebSocket!="undefined"?zs=MozWebSocket:typeof global!="undefined"?zs=global.WebSocket||global.MozWebSocket:typeof window!="undefined"?zs=window.WebSocket||window.MozWebSocket:typeof self!="undefined"&&(zs=self.WebSocket||self.MozWebSocket);Kq.exports=zs});var vw=z(($6,qw)=>{"use strict";var Us=typeof Reflect=="object"?Reflect:null,Jq=Us&&typeof Us.apply=="function"?Us.apply:function(e,r,n){return Function.prototype.apply.call(e,r,n)},kp;Us&&typeof Us.ownKeys=="function"?kp=Us.ownKeys:Object.getOwnPropertySymbols?kp=function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:kp=function(e){return Object.getOwnPropertyNames(e)};function k4(t){console&&console.warn&&console.warn(t)}var Zq=Number.isNaN||function(e){return e!==e};function kt(){kt.init.call(this)}qw.exports=kt;qw.exports.once=A4;kt.EventEmitter=kt;kt.prototype._events=void 0;kt.prototype._eventsCount=0;kt.prototype._maxListeners=void 0;var Xq=10;function Ip(t){if(typeof t!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}Object.defineProperty(kt,"defaultMaxListeners",{enumerable:!0,get:function(){return Xq},set:function(t){if(typeof t!="number"||t<0||Zq(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");Xq=t}});kt.init=function(){(this._events===void 0||this._events===Object.getPrototypeOf(this)._events)&&(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0};kt.prototype.setMaxListeners=function(e){if(typeof e!="number"||e<0||Zq(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this};function Qq(t){return t._maxListeners===void 0?kt.defaultMaxListeners:t._maxListeners}kt.prototype.getMaxListeners=function(){return Qq(this)};kt.prototype.emit=function(e){for(var r=[],n=1;n<arguments.length;n++)r.push(arguments[n]);var i=e==="error",o=this._events;if(o!==void 0)i=i&&o.error===void 0;else if(!i)return!1;if(i){var f;if(r.length>0&&(f=r[0]),f instanceof Error)throw f;var s=new Error("Unhandled error."+(f?" ("+f.message+")":""));throw s.context=f,s}var l=o[e];if(l===void 0)return!1;if(typeof l=="function")Jq(l,this,r);else for(var u=l.length,c=nv(l,u),n=0;n<u;++n)Jq(c[n],this,r);return!0};function $q(t,e,r,n){var i,o,f;if(Ip(r),o=t._events,o===void 0?(o=t._events=Object.create(null),t._eventsCount=0):(o.newListener!==void 0&&(t.emit("newListener",e,r.listener?r.listener:r),o=t._events),f=o[e]),f===void 0)f=o[e]=r,++t._eventsCount;else if(typeof f=="function"?f=o[e]=n?[r,f]:[f,r]:n?f.unshift(r):f.push(r),i=Qq(t),i>0&&f.length>i&&!f.warned){f.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+f.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=t,s.type=e,s.count=f.length,k4(s)}return t}kt.prototype.addListener=function(e,r){return $q(this,e,r,!1)};kt.prototype.on=kt.prototype.addListener;kt.prototype.prependListener=function(e,r){return $q(this,e,r,!0)};function I4(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length===0?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function ev(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},i=I4.bind(n);return i.listener=r,n.wrapFn=i,i}kt.prototype.once=function(e,r){return Ip(r),this.on(e,ev(this,e,r)),this};kt.prototype.prependOnceListener=function(e,r){return Ip(r),this.prependListener(e,ev(this,e,r)),this};kt.prototype.removeListener=function(e,r){var n,i,o,f,s;if(Ip(r),i=this._events,i===void 0)return this;if(n=i[e],n===void 0)return this;if(n===r||n.listener===r)--this._eventsCount==0?this._events=Object.create(null):(delete i[e],i.removeListener&&this.emit("removeListener",e,n.listener||r));else if(typeof n!="function"){for(o=-1,f=n.length-1;f>=0;f--)if(n[f]===r||n[f].listener===r){s=n[f].listener,o=f;break}if(o<0)return this;o===0?n.shift():S4(n,o),n.length===1&&(i[e]=n[0]),i.removeListener!==void 0&&this.emit("removeListener",e,s||r)}return this};kt.prototype.off=kt.prototype.removeListener;kt.prototype.removeAllListeners=function(e){var r,n,i;if(n=this._events,n===void 0)return this;if(n.removeListener===void 0)return arguments.length===0?(this._events=Object.create(null),this._eventsCount=0):n[e]!==void 0&&(--this._eventsCount==0?this._events=Object.create(null):delete n[e]),this;if(arguments.length===0){var o=Object.keys(n),f;for(i=0;i<o.length;++i)f=o[i],f!=="removeListener"&&this.removeAllListeners(f);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(r=n[e],typeof r=="function")this.removeListener(e,r);else if(r!==void 0)for(i=r.length-1;i>=0;i--)this.removeListener(e,r[i]);return this};function tv(t,e,r){var n=t._events;if(n===void 0)return[];var i=n[e];return i===void 0?[]:typeof i=="function"?r?[i.listener||i]:[i]:r?x4(i):nv(i,i.length)}kt.prototype.listeners=function(e){return tv(this,e,!0)};kt.prototype.rawListeners=function(e){return tv(this,e,!1)};kt.listenerCount=function(t,e){return typeof t.listenerCount=="function"?t.listenerCount(e):rv.call(t,e)};kt.prototype.listenerCount=rv;function rv(t){var e=this._events;if(e!==void 0){var r=e[t];if(typeof r=="function")return 1;if(r!==void 0)return r.length}return 0}kt.prototype.eventNames=function(){return this._eventsCount>0?kp(this._events):[]};function nv(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}function S4(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function x4(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}function A4(t,e){return new Promise(function(r,n){function i(f){t.removeListener(e,o),n(f)}function o(){typeof t.removeListener=="function"&&t.removeListener("error",i),r([].slice.call(arguments))}iv(t,e,o,{once:!0}),e!=="error"&&E4(t,i,{once:!0})})}function E4(t,e,r){typeof t.on=="function"&&iv(t,"error",e,r)}function iv(t,e,r,n){if(typeof t.on=="function")n.once?t.once(e,r):t.on(e,r);else if(typeof t.addEventListener=="function")t.addEventListener(e,function i(o){n.once&&t.removeEventListener(e,i),r(o)});else throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t)}});var Sp=z(Uo=>{var Tw=Math.pow(2,8),O4=Math.pow(2,16),ov=Math.pow(2,24),fv=Math.pow(2,32),N4=Math.pow(2,40),D4=Math.pow(2,48),Bw=Math.pow(2,52),F4=Math.pow(2,1022);Uo.readByte=function(t){return t>127?t-256:t};Uo.readI16=function(t,e){e=e||0;var r=t[e+1];return r+=t[e]<<8,t[e]&128&&(r-=O4),r};Uo.readI32=function(t,e){e=e||0;var r=t[e+3];return r+=t[e+2]<<8,r+=t[e+1]<<16,r+=t[e]*ov,t[e]&128&&(r-=fv),r};Uo.writeI16=function(t,e){return t[1]=e&255,e>>=8,t[0]=e&255,t};Uo.writeI32=function(t,e){return t[3]=e&255,e>>=8,t[2]=e&255,e>>=8,t[1]=e&255,e>>=8,t[0]=e&255,t};Uo.readDouble=function(t,e){e=e||0;var r=t[e]&128,n=(t[e+1]&240)>>4;n+=(t[e]&127)<<4;var i=t[e+7];switch(i+=t[e+6]<<8,i+=t[e+5]<<16,i+=t[e+4]*ov,i+=t[e+3]*fv,i+=t[e+2]*N4,i+=(t[e+1]&15)*D4,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=Bw,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};Uo.writeDouble=function(t,e){var r,n,i;return t[0]=e<0?128:0,e=Math.abs(e),e!==e?(r=2251799813685248,n=2047):e===1/0?(r=0,n=2047):(n=Math.floor(Math.log(e)/Math.LN2),i=Math.pow(2,-n),e*i<1&&(n--,i*=2),n+1023>=2047?(r=0,n=2047):n+1023>=1?(r=(e*i-1)*Bw,n+=1023):(r=e*F4*Bw,n=0)),t[1]=n<<4&240,t[0]|=n>>4&127,t[7]=r&255,r=Math.floor(r/Tw),t[6]=r&255,r=Math.floor(r/Tw),t[5]=r&255,r=Math.floor(r/Tw),t[4]=r&255,r>>=8,t[3]=r&255,r>>=8,t[2]=r&255,r>>=8,t[1]|=r&15,t}});var Cf=z((tV,av)=>{var P4=Zi();av.exports=sv;function sv(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}P4.inherits(sv,Error)});var Ap=z(Xi=>{var R4=Zi(),Ls=function(){},lv=console.log,xp="error";function El(t){return function(){var e=["thrift: ["+t+"] "].concat(Array.from(arguments));return lv(R4.format.apply(null,e))}}var kw=Ls,Iw=Ls,Sw=Ls,xw=Ls,Aw=Ls;Xi.setLogFunc=function(t){lv=t};var H4=Xi.setLogLevel=function(t){switch(kw=Iw=Sw=xw=Aw=Ls,xp=t,xp){case"trace":kw=El("TRACE");case"debug":Iw=El("DEBUG");case"error":Sw=El("ERROR");case"warning":xw=El("WARN");case"info":Aw=El("INFO")}};H4(xp);Xi.getLogLevel=function(){return xp};Xi.trace=function(){return kw.apply(null,arguments)};Xi.debug=function(){return Iw.apply(null,arguments)};Xi.error=function(){return Sw.apply(null,arguments)};Xi.warning=function(){return xw.apply(null,arguments)};Xi.info=function(){return Aw.apply(null,arguments)}});var Nw=z((nV,uv)=>{var M4=Ap(),Qi=hn(),Yt=zo(),Et=Yt.Type;uv.exports=ee;var Ew=Math.pow(2,8),z4=Math.pow(2,24),U4=Math.pow(2,32),L4=Math.pow(2,40),V4=Math.pow(2,48),Ow=Math.pow(2,52),C4=Math.pow(2,1022);function ee(t){this.trans=t,this.lastField_=[],this.lastFieldId_=0,this.string_limit_=0,this.string_buf_=null,this.string_buf_size_=0,this.container_limit_=0,this.booleanField_={name:null,hasBoolValue:!1},this.boolValue_={hasBoolValue:!1,boolValue:!1}}ee.PROTOCOL_ID=-126;ee.VERSION_N=1;ee.VERSION_MASK=31;ee.TYPE_MASK=-32;ee.TYPE_BITS=7;ee.TYPE_SHIFT_AMOUNT=5;ee.Types={CT_STOP:0,CT_BOOLEAN_TRUE:1,CT_BOOLEAN_FALSE:2,CT_BYTE:3,CT_I16:4,CT_I32:5,CT_I64:6,CT_DOUBLE:7,CT_BINARY:8,CT_LIST:9,CT_SET:10,CT_MAP:11,CT_STRUCT:12};ee.TTypeToCType=[ee.Types.CT_STOP,0,ee.Types.CT_BOOLEAN_TRUE,ee.Types.CT_BYTE,ee.Types.CT_DOUBLE,0,ee.Types.CT_I16,0,ee.Types.CT_I32,0,ee.Types.CT_I64,ee.Types.CT_BINARY,ee.Types.CT_STRUCT,ee.Types.CT_MAP,ee.Types.CT_SET,ee.Types.CT_LIST];ee.prototype.getTransport=function(){return this.trans};ee.prototype.getCompactType=function(t){return ee.TTypeToCType[t]};ee.prototype.getTType=function(t){switch(t){case Et.STOP:return Et.STOP;case ee.Types.CT_BOOLEAN_FALSE:case ee.Types.CT_BOOLEAN_TRUE:return Et.BOOL;case ee.Types.CT_BYTE:return Et.BYTE;case ee.Types.CT_I16:return Et.I16;case ee.Types.CT_I32:return Et.I32;case ee.Types.CT_I64:return Et.I64;case ee.Types.CT_DOUBLE:return Et.DOUBLE;case ee.Types.CT_BINARY:return Et.STRING;case ee.Types.CT_LIST:return Et.LIST;case ee.Types.CT_SET:return Et.SET;case ee.Types.CT_MAP:return Et.MAP;case ee.Types.CT_STRUCT:return Et.STRUCT;default:throw new Yt.TProtocolException(Yt.TProtocolExceptionType.INVALID_DATA,"Unknown type: "+t)}return Et.STOP};ee.prototype.flush=function(){return this.trans.flush()};ee.prototype.writeMessageBegin=function(t,e,r){this.writeByte(ee.PROTOCOL_ID),this.writeByte(ee.VERSION_N&ee.VERSION_MASK|e<<ee.TYPE_SHIFT_AMOUNT&ee.TYPE_MASK),this.writeVarint32(r),this.writeString(t),this._seqid?M4.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};ee.prototype.writeMessageEnd=function(){};ee.prototype.writeStructBegin=function(t){this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0};ee.prototype.writeStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};ee.prototype.writeFieldBegin=function(t,e,r){if(e!=Et.BOOL)return this.writeFieldBeginInternal(t,e,r,-1);this.booleanField_.name=t,this.booleanField_.fieldType=e,this.booleanField_.fieldId=r};ee.prototype.writeFieldEnd=function(){};ee.prototype.writeFieldStop=function(){this.writeByte(ee.Types.CT_STOP)};ee.prototype.writeMapBegin=function(t,e,r){r===0?this.writeByte(0):(this.writeVarint32(r),this.writeByte(this.getCompactType(t)<<4|this.getCompactType(e)))};ee.prototype.writeMapEnd=function(){};ee.prototype.writeListBegin=function(t,e){this.writeCollectionBegin(t,e)};ee.prototype.writeListEnd=function(){};ee.prototype.writeSetBegin=function(t,e){this.writeCollectionBegin(t,e)};ee.prototype.writeSetEnd=function(){};ee.prototype.writeBool=function(t){this.booleanField_.name!==null?(this.writeFieldBeginInternal(this.booleanField_.name,this.booleanField_.fieldType,this.booleanField_.fieldId,t?ee.Types.CT_BOOLEAN_TRUE:ee.Types.CT_BOOLEAN_FALSE),this.booleanField_.name=null):this.writeByte(t?ee.Types.CT_BOOLEAN_TRUE:ee.Types.CT_BOOLEAN_FALSE)};ee.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};ee.prototype.writeI16=function(t){this.writeVarint32(this.i32ToZigzag(t))};ee.prototype.writeI32=function(t){this.writeVarint32(this.i32ToZigzag(t))};ee.prototype.writeI64=function(t){this.writeVarint64(this.i64ToZigzag(t))};ee.prototype.writeDouble=function(t){var e=new Buffer(8),r,n,i;e[7]=t<0?128:0,t=Math.abs(t),t!==t?(r=2251799813685248,n=2047):t===1/0?(r=0,n=2047):(n=Math.floor(Math.log(t)/Math.LN2),i=Math.pow(2,-n),t*i<1&&(n--,i*=2),n+1023>=2047?(r=0,n=2047):n+1023>=1?(r=(t*i-1)*Ow,n+=1023):(r=t*C4*Ow,n=0)),e[6]=n<<4&240,e[7]|=n>>4&127,e[0]=r&255,r=Math.floor(r/Ew),e[1]=r&255,r=Math.floor(r/Ew),e[2]=r&255,r=Math.floor(r/Ew),e[3]=r&255,r>>=8,e[4]=r&255,r>>=8,e[5]=r&255,r>>=8,e[6]|=r&15,this.trans.write(e)};ee.prototype.writeStringOrBinary=function(t,e,r){if(typeof r=="string")this.writeVarint32(Buffer.byteLength(r,e)),this.trans.write(new Buffer(r,e));else if(r instanceof Buffer||Object.prototype.toString.call(r)=="[object Uint8Array]")this.writeVarint32(r.length),this.trans.write(r);else throw new Error(t+" called without a string/Buffer argument: "+r)};ee.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};ee.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};ee.prototype.writeFieldBeginInternal=function(t,e,r,n){var i=n==-1?this.getCompactType(e):n;r>this.lastFieldId_&&r-this.lastFieldId_<=15?this.writeByte(r-this.lastFieldId_<<4|i):(this.writeByte(i),this.writeI16(r)),this.lastFieldId_=r};ee.prototype.writeCollectionBegin=function(t,e){e<=14?this.writeByte(e<<4|this.getCompactType(t)):(this.writeByte(240|this.getCompactType(t)),this.writeVarint32(e))};ee.prototype.writeVarint32=function(t){for(var e=new Buffer(5),r=0;;)if((t&~127)==0){e[r++]=t;break}else e[r++]=t&127|128,t=t>>>7;var n=new Buffer(r);e.copy(n,0,0,r),this.trans.write(n)};ee.prototype.writeVarint64=function(t){if(typeof t=="number"&&(t=new Qi(t)),!(t instanceof Qi))throw new Yt.TProtocolException(Yt.TProtocolExceptionType.INVALID_DATA,"Expected Int64 or Number, found: "+t);for(var e=new Buffer(10),r=0,n=t.buffer.readUInt32BE(0,!0),i=t.buffer.readUInt32BE(4,!0),o=0;;)if((i&~127)==0&&n===0){e[r++]=i;break}else e[r++]=i&127|128,o=n<<25,i=i>>>7,n=n>>>7,i=i|o;var f=new Buffer(r);e.copy(f,0,0,r),this.trans.write(f)};ee.prototype.i64ToZigzag=function(t){if(typeof t=="string"?t=new Qi(parseInt(t,10)):typeof t=="number"&&(t=new Qi(t)),!(t instanceof Qi))throw new Yt.TProtocolException(Yt.TProtocolExceptionType.INVALID_DATA,"Expected Int64 or Number, found: "+t);var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=e>>>31;return e=(e<<1|r>>>31)^(n?4294967295:0),r=r<<1^(n?4294967295:0),new Qi(e,r)};ee.prototype.i32ToZigzag=function(t){return t<<1^(t&2147483648?4294967295:0)};ee.prototype.readMessageBegin=function(){var t=this.trans.readByte();if(t!=ee.PROTOCOL_ID)throw new Yt.TProtocolException(Yt.TProtocolExceptionType.BAD_VERSION,"Bad protocol identifier "+t);var e=this.trans.readByte(),r=e&ee.VERSION_MASK;if(r!=ee.VERSION_N)throw new Yt.TProtocolException(Yt.TProtocolExceptionType.BAD_VERSION,"Bad protocol version "+r);var n=e>>ee.TYPE_SHIFT_AMOUNT&ee.TYPE_BITS,i=this.readVarint32(),o=this.readString();return{fname:o,mtype:n,rseqid:i}};ee.prototype.readMessageEnd=function(){};ee.prototype.readStructBegin=function(){return this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0,{fname:""}};ee.prototype.readStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};ee.prototype.readFieldBegin=function(){var t=0,e=this.trans.readByte(e),r=e&15;if(r==ee.Types.CT_STOP)return{fname:null,ftype:Yt.Type.STOP,fid:0};var n=(e&240)>>>4;n===0?t=this.readI16():t=this.lastFieldId_+n;var i=this.getTType(r);return(r==ee.Types.CT_BOOLEAN_TRUE||r==ee.Types.CT_BOOLEAN_FALSE)&&(this.boolValue_.hasBoolValue=!0,this.boolValue_.boolValue=r==ee.Types.CT_BOOLEAN_TRUE),this.lastFieldId_=t,{fname:null,ftype:i,fid:t}};ee.prototype.readFieldEnd=function(){};ee.prototype.readMapBegin=function(){var t=this.readVarint32();if(t<0)throw new Yt.TProtocolException(Yt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative map size");var e=0;t!==0&&(e=this.trans.readByte());var r=this.getTType((e&240)>>>4),n=this.getTType(e&15);return{ktype:r,vtype:n,size:t}};ee.prototype.readMapEnd=function(){};ee.prototype.readListBegin=function(){var t=this.trans.readByte(),e=t>>>4&15;if(e==15&&(e=this.readVarint32()),e<0)throw new Yt.TProtocolException(Yt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative list size");var r=this.getTType(t&15);return{etype:r,size:e}};ee.prototype.readListEnd=function(){};ee.prototype.readSetBegin=function(){return this.readListBegin()};ee.prototype.readSetEnd=function(){};ee.prototype.readBool=function(){var t=!1,e=0;if(this.boolValue_.hasBoolValue===!0)t=this.boolValue_.boolValue,this.boolValue_.hasBoolValue=!1;else{var r=this.trans.readByte();e=r.rsize,t=r.value==ee.Types.CT_BOOLEAN_TRUE}return t};ee.prototype.readByte=function(){return this.trans.readByte()};ee.prototype.readI16=function(){return this.readI32()};ee.prototype.readI32=function(){return this.zigzagToI32(this.readVarint32())};ee.prototype.readI64=function(){return this.zigzagToI64(this.readVarint64())};ee.prototype.readDouble=function(){var t=this.trans.read(8),e=0,r=t[e+7]&128,n=(t[e+6]&240)>>4;n+=(t[e+7]&127)<<4;var i=t[e];switch(i+=t[e+1]<<8,i+=t[e+2]<<16,i+=t[e+3]*z4,i+=t[e+4]*U4,i+=t[e+5]*L4,i+=(t[e+6]&15)*V4,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=Ow,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};ee.prototype.readBinary=function(){var t=this.readVarint32();if(t===0)return new Buffer(0);if(t<0)throw new Yt.TProtocolException(Yt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};ee.prototype.readString=function(){var t=this.readVarint32();if(t===0)return"";if(t<0)throw new Yt.TProtocolException(Yt.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};ee.prototype.readVarint32=function(){return this.readVarint64().toNumber()};ee.prototype.readVarint64=function(){for(var t=0,e=0,r=0,n=0;;){var i=this.trans.readByte();if(t++,n<=25?e=e|(i&127)<<n:25<n&&n<32?(e=e|(i&127)<<n,r=r|(i&127)>>>32-n):r=r|(i&127)<<n-32,n+=7,!(i&128))break;if(t>=10)throw new Yt.TProtocolException(Yt.TProtocolExceptionType.INVALID_DATA,"Variable-length int over 10 bytes.")}return new Qi(r,e)};ee.prototype.zigzagToI32=function(t){return t>>>1^-1*(t&1)};ee.prototype.zigzagToI64=function(t){var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=new Qi(e&0,r&1);n._2scomp();var i=n.buffer.readUInt32BE(0,!0),o=n.buffer.readUInt32BE(4,!0),f=e<<31;return e=e>>>1^i,r=(r>>>1|f)^o,new Qi(e,r)};ee.prototype.skip=function(t){switch(t){case Et.BOOL:this.readBool();break;case Et.BYTE:this.readByte();break;case Et.I16:this.readI16();break;case Et.I32:this.readI32();break;case Et.I64:this.readI64();break;case Et.DOUBLE:this.readDouble();break;case Et.STRING:this.readString();break;case Et.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Et.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Et.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Et.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case Et.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var Pw=z((iV,bv)=>{var cv=Ap(),Dw=Sp(),pv=hn(),$i=zo(),Yr=$i.Type;bv.exports=De;var dv=-65536,Fw=-2147418112,mv=255;De.VERSION_MASK=dv;De.VERSION_1=Fw;De.TYPE_MASK=mv;function De(t,e,r){this.trans=t,this.strictRead=e!==void 0?e:!1,this.strictWrite=r!==void 0?r:!0,this._seqid=null}De.prototype.flush=function(){return this.trans.flush()};De.prototype.writeMessageBegin=function(t,e,r){this.strictWrite?(this.writeI32(Fw|e),this.writeString(t),this.writeI32(r)):(this.writeString(t),this.writeByte(e),this.writeI32(r)),this._seqid!==null?cv.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};De.prototype.writeMessageEnd=function(){this._seqid!==null?this._seqid=null:cv.warning("No seqid to unset")};De.prototype.writeStructBegin=function(t){};De.prototype.writeStructEnd=function(){};De.prototype.writeFieldBegin=function(t,e,r){this.writeByte(e),this.writeI16(r)};De.prototype.writeFieldEnd=function(){};De.prototype.writeFieldStop=function(){this.writeByte(Yr.STOP)};De.prototype.writeMapBegin=function(t,e,r){this.writeByte(t),this.writeByte(e),this.writeI32(r)};De.prototype.writeMapEnd=function(){};De.prototype.writeListBegin=function(t,e){this.writeByte(t),this.writeI32(e)};De.prototype.writeListEnd=function(){};De.prototype.writeSetBegin=function(t,e){this.writeByte(t),this.writeI32(e)};De.prototype.writeSetEnd=function(){};De.prototype.writeBool=function(t){t?this.writeByte(1):this.writeByte(0)};De.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};De.prototype.writeI16=function(t){this.trans.write(Dw.writeI16(new Buffer(2),t))};De.prototype.writeI32=function(t){this.trans.write(Dw.writeI32(new Buffer(4),t))};De.prototype.writeI64=function(t){t.buffer?this.trans.write(t.buffer):this.trans.write(new pv(t).buffer)};De.prototype.writeDouble=function(t){this.trans.write(Dw.writeDouble(new Buffer(8),t))};De.prototype.writeStringOrBinary=function(t,e,r){if(typeof r=="string")this.writeI32(Buffer.byteLength(r,e)),this.trans.write(new Buffer(r,e));else if(r instanceof Buffer||Object.prototype.toString.call(r)=="[object Uint8Array]")this.writeI32(r.length),this.trans.write(r);else throw new Error(t+" called without a string/Buffer argument: "+r)};De.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};De.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};De.prototype.readMessageBegin=function(){var t=this.readI32(),e,r,n;if(t<0){var i=t&dv;if(i!=Fw)throw new $i.TProtocolException($i.TProtocolExceptionType.BAD_VERSION,"Bad version in readMessageBegin: "+t);e=t&mv,r=this.readString(),n=this.readI32()}else{if(this.strictRead)throw new $i.TProtocolException($i.TProtocolExceptionType.BAD_VERSION,"No protocol version header");r=this.trans.read(t),e=this.readByte(),n=this.readI32()}return{fname:r,mtype:e,rseqid:n}};De.prototype.readMessageEnd=function(){};De.prototype.readStructBegin=function(){return{fname:""}};De.prototype.readStructEnd=function(){};De.prototype.readFieldBegin=function(){var t=this.readByte();if(t==Yr.STOP)return{fname:null,ftype:t,fid:0};var e=this.readI16();return{fname:null,ftype:t,fid:e}};De.prototype.readFieldEnd=function(){};De.prototype.readMapBegin=function(){var t=this.readByte(),e=this.readByte(),r=this.readI32();return{ktype:t,vtype:e,size:r}};De.prototype.readMapEnd=function(){};De.prototype.readListBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};De.prototype.readListEnd=function(){};De.prototype.readSetBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};De.prototype.readSetEnd=function(){};De.prototype.readBool=function(){var t=this.readByte();return t!==0};De.prototype.readByte=function(){return this.trans.readByte()};De.prototype.readI16=function(){return this.trans.readI16()};De.prototype.readI32=function(){return this.trans.readI32()};De.prototype.readI64=function(){var t=this.trans.read(8);return new pv(t)};De.prototype.readDouble=function(){return this.trans.readDouble()};De.prototype.readBinary=function(){var t=this.readI32();if(t===0)return new Buffer(0);if(t<0)throw new $i.TProtocolException($i.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};De.prototype.readString=function(){var t=this.readI32();if(t===0)return"";if(t<0)throw new $i.TProtocolException($i.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};De.prototype.getTransport=function(){return this.trans};De.prototype.skip=function(t){switch(t){case Yr.BOOL:this.readBool();break;case Yr.BYTE:this.readByte();break;case Yr.I16:this.readI16();break;case Yr.I32:this.readI32();break;case Yr.I64:this.readI64();break;case Yr.DOUBLE:this.readDouble();break;case Yr.STRING:this.readString();break;case Yr.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Yr.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Yr.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Yr.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case Yr.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var Rw=z((oV,_v)=>{var W4=Zi(),Ep=Nw(),wv=Pw(),Y4=Cf();function Ol(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}W4.inherits(Ol,Error);_v.exports=nr;var K4=0,G4=1,J4=0,Z4=32/8,X4=48/8,Q4=64/8,$4=96/8,hv=112/8,gv=4095,yv=1,e2=1073741823;function eo(t){var e=Nl();this.outputBuffer=null;var r=this;this.transport=new e(null,function(n){r.outputBuffer=n}),this.transport.inBuf=t||Buffer.alloc(0),this.transport.writeCursor=this.transport.inBuf.length,this.protocol=new Ep(this.transport)}eo.prototype.readVarint32=function(){return this.protocol.readVarint32()};eo.prototype.writeVarint32=function(t){this.protocol.writeVarint32(t)};eo.prototype.readString=function(){return this.protocol.readString()};eo.prototype.writeString=function(t){this.protocol.writeString(t)};eo.prototype.getOutCount=function(){return this.transport.outCount};eo.prototype.write=function(t){this.transport.write(t)};eo.prototype.toBuffer=function(){return this.transport.flush(),this.outputBuffer};nr.SubprotocolId={BINARY:0,JSON:1,COMPACT:2};function nr(){this.maxFrameSize=e2,this.protocolId=nr.SubprotocolId.BINARY,this.rheaders={},this.wheaders={},this.inBuf=Buffer.alloc(0),this.outCount=0,this.flags=null,this.seqid=0,this.shouldWriteHeaders=!0}var jv=function(t,e){if(typeof t!="string"||typeof e!="string")throw new Ol("Header key and values must be strings")},t2=function(t){for(var e=Object.keys(nr.SubprotocolId),r=0;r<e.length;r++)if(t===nr.SubprotocolId[e[r]])return!0;throw new Error(t+" is not a valid protocol id")};nr.prototype.setSeqId=function(t){this.seqid=t};nr.prototype.getSeqId=function(t){return this.seqid};nr.prototype.setFlags=function(t){this.flags=t};nr.prototype.getReadHeaders=function(){return this.rheaders};nr.prototype.setReadHeader=function(t,e){jv(t,e),this.rheaders[t]=e};nr.prototype.clearReadHeaders=function(){this.rheaders={}};nr.prototype.getWriteHeaders=function(){return this.wheaders};nr.prototype.setWriteHeader=function(t,e){jv(t,e),this.wheaders[t]=e};nr.prototype.clearWriteHeaders=function(){this.wheaders={}};nr.prototype.setMaxFrameSize=function(t){this.maxFrameSize=t};nr.prototype.setProtocolId=function(t){t2(t),this.protocolId=t};nr.prototype.getProtocolId=function(){return this.protocolId};var r2=function(t){var e=t.readInt32BE();return(e&wv.VERSION_MASK)===wv.VERSION_1},n2=function(t){var e=t.readInt8(K4),r=t.readInt8(G4);return e===Ep.PROTOCOL_ID&&(r&Ep.VERSION_MASK)===Ep.VERSION_N};nr.prototype.readHeaders=function(){var t=this.inBuf,e=!1;if(r2(t)&&(this.setProtocolId(nr.SubprotocolId.BINARY),e=!0),n2(t)&&(this.setProtocolId(nr.SubprotocolId.COMPACT),e=!0),e){this.shouldWriteHeaders=!1;return}var r=t.readInt32BE(J4);if(r>this.maxFrameSize)throw new Ol("Frame exceeds maximum frame size");var n=t.readInt16BE(Z4);if(this.shouldWriteHeaders=n===gv,!!this.shouldWriteHeaders){this.setFlags(t.readInt16BE(X4)),this.setSeqId(t.readInt32BE(Q4));var i=t.readInt16BE($4)*4,o=hv+i;if(o>t.length)throw new Ol("Header size is greater than frame size");var f=Buffer.alloc(i);t.copy(f,0,hv,o);var s=new eo(f);this.setProtocolId(s.readVarint32());var l=s.readVarint32();if(l>0)throw new Ol("Transforms are not yet supported");for(;;)try{var u=s.readVarint32();if(u!==yv)break;for(var c=s.readVarint32(),_=0;_<c;_++){var p=s.readString(),j=s.readString();this.setReadHeader(p,j)}}catch(S){if(S instanceof Y4)break;throw S}return this.read(o),this.getReadHeaders()}};nr.prototype.writeHeaders=function(){if(!!this.shouldWriteHeaders){var t=this.getWriteHeaders(),e=new eo;e.writeVarint32(this.protocolId),e.writeVarint32(0);var r=Object.keys(t);if(r.length>0){e.writeVarint32(yv),e.writeVarint32(r.length);for(var n=0;n<r.length;n++){var i=r[n],o=t[i];e.writeString(i),e.writeString(o)}}var f=e.getOutCount(),s=(4-f%4)%4,l=Buffer.alloc(2);l.writeInt16BE(Math.floor((f+s)/4));var u=Buffer.alloc(s);u.fill(0),e.write(u);var c=e.toBuffer(),_=Buffer.alloc(4);_.writeInt32BE(10+this.outCount+c.length);var p=Buffer.alloc(2);p.writeInt16BE(gv);var j=Buffer.alloc(2);j.writeInt16BE(0);var S=Buffer.alloc(4);S.writeInt32BE(this.getSeqId());var T=Buffer.concat([_,p,j,S,l,c]);this.outBuffers.unshift(T),this.outCount+=T.length}}});var Nl=z((fV,qv)=>{var Op=Sp(),i2=Cf(),o2=Rw();qv.exports=Kt;function Kt(t,e){this.defaultReadBufferSize=1024,this.writeBufferSize=512,this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0,this.onFlush=e}Kt.prototype=new o2;Kt.prototype.reset=function(){this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0};Kt.receiver=function(t,e){var r=new Kt;return function(n){if(r.writeCursor+n.length>r.inBuf.length){var i=new Buffer(r.writeCursor+n.length);r.inBuf.copy(i,0,0,r.writeCursor),r.inBuf=i}n.copy(r.inBuf,r.writeCursor,0),r.writeCursor+=n.length,t(r,e)}};Kt.prototype.commitPosition=function(){var t=this.writeCursor-this.readCursor,e=t*2>this.defaultReadBufferSize?t*2:this.defaultReadBufferSize,r=new Buffer(e);t>0&&this.inBuf.copy(r,0,this.readCursor,this.writeCursor),this.readCursor=0,this.writeCursor=t,this.inBuf=r};Kt.prototype.rollbackPosition=function(){this.readCursor=0};Kt.prototype.isOpen=function(){return!0};Kt.prototype.open=function(){};Kt.prototype.close=function(){};Kt.prototype.setCurrSeqId=function(t){this._seqid=t};Kt.prototype.ensureAvailable=function(t){if(this.readCursor+t>this.writeCursor)throw new i2};Kt.prototype.read=function(t){this.ensureAvailable(t);var e=new Buffer(t);return this.inBuf.copy(e,0,this.readCursor,this.readCursor+t),this.readCursor+=t,e};Kt.prototype.readByte=function(){return this.ensureAvailable(1),Op.readByte(this.inBuf[this.readCursor++])};Kt.prototype.readI16=function(){this.ensureAvailable(2);var t=Op.readI16(this.inBuf,this.readCursor);return this.readCursor+=2,t};Kt.prototype.readI32=function(){this.ensureAvailable(4);var t=Op.readI32(this.inBuf,this.readCursor);return this.readCursor+=4,t};Kt.prototype.readDouble=function(){this.ensureAvailable(8);var t=Op.readDouble(this.inBuf,this.readCursor);return this.readCursor+=8,t};Kt.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readCursor,this.readCursor+t);return this.readCursor+=t,e};Kt.prototype.borrow=function(){var t={buf:this.inBuf,readIndex:this.readCursor,writeIndex:this.writeCursor};return t};Kt.prototype.consume=function(t){this.readCursor+=t};Kt.prototype.write=function(t){typeof t=="string"&&(t=new Buffer(t,"utf8")),this.outBuffers.push(t),this.outCount+=t.length};Kt.prototype.flush=function(){var t=this._seqid;if(this._seqid=null,!(this.outCount<1)){var e=new Buffer(this.outCount),r=0;this.outBuffers.forEach(function(n){n.copy(e,r,0),r+=n.length}),this.onFlush&&this.onFlush(e,t),this.outBuffers=[],this.outCount=0}}});var Mw=z((sV,Iv)=>{var vv=hn(),Tv=Iv.exports={},f2=Math.pow(2,24),Bv=Math.pow(2,31),Hw=Math.pow(2,32),kv=Math.pow(10,11);Tv.toDecimalString=function(t){var e=t.buffer,r=t.offset;if(!e[r]&&!(e[r+1]&224)||!~e[r]&&!~(e[r+1]&224))return t.toString();var n=e[r]&128;if(n){for(var i=!1,o=new Buffer(8),f=7;f>=0;--f)o[f]=~e[r+f]+(i?0:1)&255,i|=e[r+f];e=o}var s=e[r+1]+(e[r]<<8),l=e[r+7]+(e[r+6]<<8)+(e[r+5]<<16)+e[r+4]*f2+(e[r+3]+(e[r+2]<<8))*Hw+s*74976710656,u=Math.floor(l/kv)+s*2814;return l=("00000000000"+String(l%kv)).slice(-11),(n?"-":"")+String(u)+l};Tv.fromDecimalString=function(t){var e=t.charAt(0)==="-";if(t.length<(e?17:16))return new vv(+t);if(t.length>(e?20:19))throw new RangeError("Too many digits for Int64: "+t);var r=+t.slice(e?1:0,-15),n=+t.slice(-15)+r*2764472320,i=Math.floor(n/Hw)+r*232830;if(n=n%Hw,i>=Bv&&!(e&&i==Bv&&n==0))throw new RangeError("The magnitude is too large for Int64.");return e&&(i=~i,n===0?i=i+1&4294967295:n=~n+1,i=2147483648|i),new vv(i,n)}});var Av=z((uV,xv)=>{var Sv=hn(),aV=Mw(),lV=xv.exports=function(){"use strict";var t,e,r={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:`
11
- `,r:"\r",t:" "},n,i=function(j){throw new SyntaxError(j)},o=function(j){return j&&j!==e&&i("Expected '"+j+"' instead of '"+e+"'"),e=n.charAt(t),t+=1,e},f=function(){var j,S="";for(e==="-"&&(S="-",o("-"));e>="0"&&e<="9";)S+=e,o();if(e===".")for(S+=".";o()&&e>="0"&&e<="9";)S+=e;if(e==="e"||e==="E")for(S+=e,o(),(e==="-"||e==="+")&&(S+=e,o());e>="0"&&e<="9";)S+=e,o();if(j=+S,!isFinite(j))i("Bad number");else return j>=Sv.MAX_INT||j<=Sv.MIN_INT?S:j},s=function(){var j,S,T="",U;if(e==='"')for(;o();){if(e==='"')return o(),T;if(e==="\\")if(o(),e==="u"){for(U=0,S=0;S<4&&(j=parseInt(o(),16),!!isFinite(j));S+=1)U=U*16+j;T+=String.fromCharCode(U)}else if(typeof r[e]=="string")T+=r[e];else break;else T+=e}i("Bad string")},l=function(){for(;e&&e<=" ";)o()},u=function(){switch(e){case"t":return o("t"),o("r"),o("u"),o("e"),!0;case"f":return o("f"),o("a"),o("l"),o("s"),o("e"),!1;case"n":return o("n"),o("u"),o("l"),o("l"),null}i("Unexpected '"+e+"'")},c,_=function(){var j=[];if(e==="["){if(o("["),l(),e==="]")return o("]"),j;for(;e;){if(j.push(c()),l(),e==="]")return o("]"),j;o(","),l()}}i("Bad array")},p=function(){var j,S={};if(e==="{"){if(o("{"),l(),e==="}")return o("}"),S;for(;e;){if(j=s(),l(),o(":"),Object.hasOwnProperty.call(S,j)&&i('Duplicate key "'+j+'"'),S[j]=c(),l(),e==="}")return o("}"),S;o(","),l()}}i("Bad object")};return c=function(){switch(l(),e){case"{":return p();case"[":return _();case'"':return s();case"-":return f();default:return e>="0"&&e<="9"?f():u()}},function(j){var S;return n=j,t=0,e=" ",S=c(),l(),e&&i("Syntax error"),S}}()});var Dl=z((pV,Nv)=>{var zw=hn(),s2=zo(),ut=s2.Type,cV=Zi(),Ev=Mw(),a2=Av(),Ov=Cf();Nv.exports=me;function me(t){this.tstack=[],this.tpos=[],this.trans=t}me.Type={};me.Type[ut.BOOL]='"tf"';me.Type[ut.BYTE]='"i8"';me.Type[ut.I16]='"i16"';me.Type[ut.I32]='"i32"';me.Type[ut.I64]='"i64"';me.Type[ut.DOUBLE]='"dbl"';me.Type[ut.STRUCT]='"rec"';me.Type[ut.STRING]='"str"';me.Type[ut.MAP]='"map"';me.Type[ut.LIST]='"lst"';me.Type[ut.SET]='"set"';me.RType={};me.RType.tf=ut.BOOL;me.RType.i8=ut.BYTE;me.RType.i16=ut.I16;me.RType.i32=ut.I32;me.RType.i64=ut.I64;me.RType.dbl=ut.DOUBLE;me.RType.rec=ut.STRUCT;me.RType.str=ut.STRING;me.RType.map=ut.MAP;me.RType.lst=ut.LIST;me.RType.set=ut.SET;me.Version=1;me.prototype.flush=function(){return this.writeToTransportIfStackIsFlushable(),this.trans.flush()};me.prototype.writeToTransportIfStackIsFlushable=function(){this.tstack.length===1&&this.trans.write(this.tstack.pop())};me.prototype.writeMessageBegin=function(t,e,r){this.tstack.push([me.Version,'"'+t+'"',e,r])};me.prototype.writeMessageEnd=function(){var t=this.tstack.pop();this.wobj=this.tstack.pop(),this.wobj.push(t),this.wbuf="["+this.wobj.join(",")+"]",this.trans.write(this.wbuf)};me.prototype.writeStructBegin=function(t){this.tpos.push(this.tstack.length),this.tstack.push({})};me.prototype.writeStructEnd=function(){var t=this.tpos.pop(),e=this.tstack[t],r="{",n=!0;for(var i in e)n?n=!1:r+=",",r+=i+":"+e[i];r+="}",this.tstack[t]=r,this.writeToTransportIfStackIsFlushable()};me.prototype.writeFieldBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push({fieldId:'"'+r+'"',fieldType:me.Type[e]})};me.prototype.writeFieldEnd=function(){var t=this.tstack.pop(),e=this.tstack.pop();":"+t==":[object Object]"?this.tstack[this.tstack.length-1][e.fieldId]="{"+e.fieldType+":"+JSON.stringify(t)+"}":this.tstack[this.tstack.length-1][e.fieldId]="{"+e.fieldType+":"+t+"}",this.tpos.pop(),this.writeToTransportIfStackIsFlushable()};me.prototype.writeFieldStop=function(){};me.prototype.writeMapBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push([me.Type[t],me.Type[e],0])};me.prototype.writeMapEnd=function(){var t=this.tpos.pop();if(t!=this.tstack.length){(this.tstack.length-t-1)%2!=0&&this.tstack.push("");var e=(this.tstack.length-t-1)/2;this.tstack[t][this.tstack[t].length-1]=e;for(var r="}",n=!0;this.tstack.length>t+1;){var i=this.tstack.pop(),o=this.tstack.pop();n?n=!1:r=","+r,isNaN(o)||(o='"'+o+'"'),r=o+":"+i+r}r="{"+r,this.tstack[t].push(r),this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()}};me.prototype.writeListBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([me.Type[t],e])};me.prototype.writeListEnd=function(){for(var t=this.tpos.pop();this.tstack.length>t+1;){var e=this.tstack[t+1];this.tstack.splice(t+1,1),this.tstack[t].push(e)}this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()};me.prototype.writeSetBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([me.Type[t],e])};me.prototype.writeSetEnd=function(){for(var t=this.tpos.pop();this.tstack.length>t+1;){var e=this.tstack[t+1];this.tstack.splice(t+1,1),this.tstack[t].push(e)}this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()};me.prototype.writeBool=function(t){this.tstack.push(t?1:0)};me.prototype.writeByte=function(t){this.tstack.push(t)};me.prototype.writeI16=function(t){this.tstack.push(t)};me.prototype.writeI32=function(t){this.tstack.push(t)};me.prototype.writeI64=function(t){t instanceof zw?this.tstack.push(Ev.toDecimalString(t)):this.tstack.push(t)};me.prototype.writeDouble=function(t){this.tstack.push(t)};me.prototype.writeString=function(t){if(t===null)this.tstack.push(null);else{if(typeof t=="string")var e=t;else if(t instanceof Buffer)var e=t.toString("utf8");else throw new Error("writeString called without a string/Buffer argument: "+t);for(var r="",n=0;n<e.length;n++){var i=e.charAt(n);i==='"'?r+='\\"':i==="\\"?r+="\\\\":i==="\b"?r+="\\b":i==="\f"?r+="\\f":i===`
12
- `?r+="\\n":i==="\r"?r+="\\r":i===" "?r+="\\t":r+=i}this.tstack.push('"'+r+'"')}};me.prototype.writeBinary=function(t){if(typeof t=="string")var e=new Buffer(t,"binary");else if(t instanceof Buffer||Object.prototype.toString.call(t)=="[object Uint8Array]")var e=t;else throw new Error("writeBinary called without a string/Buffer argument: "+t);this.tstack.push('"'+e.toString("base64")+'"')};me.prototype.readMessageBegin=function(){this.rstack=[],this.rpos=[];var t=this.trans.borrow();if(t.readIndex>=t.writeIndex)throw new Ov;var e=t.readIndex;if(t.buf[e]!==91)throw new Error("Malformed JSON input, no opening bracket");e++;for(var r=1,n=!1;e<t.writeIndex;e++){var i=t.buf[e];if(n)i===34?n=!1:i===92&&(e+=1);else if(i===91)r+=1;else if(i===93){if(r-=1,r===0)break}else i===34&&(n=!0)}if(r!==0)throw new Ov;this.robj=a2(t.buf.slice(t.readIndex,e+1).toString()),this.trans.consume(e+1-t.readIndex);var o=this.robj.shift();if(o!=me.Version)throw new Error("Wrong thrift protocol version: "+o);var f={};return f.fname=this.robj.shift(),f.mtype=this.robj.shift(),f.rseqid=this.robj.shift(),this.rstack.push(this.robj.shift()),f};me.prototype.readMessageEnd=function(){};me.prototype.readStructBegin=function(){var t={};return t.fname="",this.rstack[this.rstack.length-1]instanceof Array&&this.rstack.push(this.rstack[this.rstack.length-1].shift()),t};me.prototype.readStructEnd=function(){this.rstack.pop()};me.prototype.readFieldBegin=function(){var t={},e=-1,r=ut.STOP;for(var n in this.rstack[this.rstack.length-1])if(n!==null){e=parseInt(n,10),this.rpos.push(this.rstack.length);var i=this.rstack[this.rstack.length-1][e];delete this.rstack[this.rstack.length-1][e],this.rstack.push(i);break}if(e!=-1)for(var o in this.rstack[this.rstack.length-1])me.RType[o]!==null&&(r=me.RType[o],this.rstack[this.rstack.length-1]=this.rstack[this.rstack.length-1][o]);return t.fname="",t.ftype=r,t.fid=e,t};me.prototype.readFieldEnd=function(){for(var t=this.rpos.pop();this.rstack.length>t;)this.rstack.pop()};me.prototype.readMapBegin=function(){var t=this.rstack.pop(),e=t.shift();e instanceof Array&&(this.rstack.push(t),t=e,e=t.shift());var r={};return r.ktype=me.RType[e],r.vtype=me.RType[t.shift()],r.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),r};me.prototype.readMapEnd=function(){this.readFieldEnd()};me.prototype.readListBegin=function(){var t=this.rstack[this.rstack.length-1],e={};return e.etype=me.RType[t.shift()],e.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),e};me.prototype.readListEnd=function(){var t=this.rpos.pop()-2,e=this.rstack;e.pop(),e instanceof Array&&e.length>t&&e[t].length>0&&e.push(e[t].shift())};me.prototype.readSetBegin=function(){return this.readListBegin()};me.prototype.readSetEnd=function(){return this.readListEnd()};me.prototype.readBool=function(){return this.readValue()=="1"};me.prototype.readByte=function(){return this.readI32()};me.prototype.readI16=function(){return this.readI32()};me.prototype.readI32=function(t){return+this.readValue()};me.prototype.readValue=function(t){t===void 0&&(t=this.rstack[this.rstack.length-1]);var e={};if(t instanceof Array)t.length===0?e.value=void 0:e.value=t.shift();else if(!(t instanceof zw)&&t instanceof Object){for(var r in t)if(r!==null){this.rstack.push(t[r]),delete t[r],e.value=r;break}}else e.value=t,this.rstack.pop();return e.value};me.prototype.readI64=function(){var t=this.readValue();return typeof t=="string"?Ev.fromDecimalString(t):new zw(t)};me.prototype.readDouble=function(){return this.readI32()};me.prototype.readBinary=function(){return new Buffer(this.readValue(),"base64")};me.prototype.readString=function(){return this.readValue()};me.prototype.getTransport=function(){return this.trans};me.prototype.skip=function(t){switch(t){case ut.BOOL:this.readBool();break;case ut.BYTE:this.readByte();break;case ut.I16:this.readI16();break;case ut.I32:this.readI32();break;case ut.I64:this.readI64();break;case ut.DOUBLE:this.readDouble();break;case ut.STRING:this.readString();break;case ut.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===ut.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case ut.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case ut.SET:for(var i=this.readSetBegin(),o=0;o<i.size;++o)this.skip(i.etype);this.readSetEnd();break;case ut.LIST:for(var f=this.readListBegin(),s=0;s<f.size;++s)this.skip(f.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var Uw=z((dV,Dv)=>{Dv.exports=l2;function l2(t,e){t.Client&&(t=t.Client);var r=function(o,f){e.write(o,f)},n=new e.transport(void 0,r),i=new t(n,e.protocol);return n.client=i,e.client=i,i}});var Fv=z(Vs=>{"use strict";Object.defineProperty(Vs,"__esModule",{value:!0});var u2=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},c2=typeof window!="undefined"&&typeof window.document!="undefined",p2=(typeof self=="undefined"?"undefined":u2(self))==="object"&&self.constructor&&self.constructor.name==="DedicatedWorkerGlobalScope",d2=typeof process!="undefined"&&process.versions!=null&&process.versions.node!=null,m2=function(){return typeof window!="undefined"&&window.name==="nodejs"||navigator.userAgent.includes("Node.js")||navigator.userAgent.includes("jsdom")};Vs.isBrowser=c2;Vs.isWebWorker=p2;Vs.isNode=d2;Vs.isJsDom=m2});var Mv=z(Np=>{var b2=Zi(),Pv=Gq(),Rv=vw().EventEmitter,Hv=zo(),w2=Nl(),h2=Dl(),g2=Cf(),y2=Uw(),j2=Fv();Np.WSConnection=Mr;function Mr(t,e,r){Rv.call(this),this.options=r||{},this.host=t,this.port=e,this.secure=this.options.secure||!1,this.transport=this.options.transport||w2,this.protocol=this.options.protocol||h2,this.path=this.options.path,this.send_pending=[],this.seqId2Service={},this.wsOptions={host:this.host,port:this.port||80,path:this.options.path||"/",headers:this.options.headers||{}};for(var n in this.options.wsOptions)this.wsOptions[n]=this.options.wsOptions[n]}b2.inherits(Mr,Rv);Mr.prototype.__reset=function(){this.socket=null,this.send_pending=[]};Mr.prototype.__onOpen=function(){this.emit("open"),this.send_pending.length>0&&(this.send_pending.forEach(function(t){this.socket.send(t)},this),this.send_pending=[])};Mr.prototype.__onClose=function(t){this.emit("close"),this.__reset()};Mr.prototype.__decodeCallback=function(t){var e=new this.protocol(t);try{for(;;){var r=e.readMessageBegin(),n=r.rseqid*-1,i=this.client,o=this.seqId2Service[r.rseqid];o&&(i=this.client[o],delete this.seqId2Service[r.rseqid]),i._reqs[n]=function(f,s){t.commitPosition();var l=i._reqs[r.rseqid];delete i._reqs[r.rseqid],l&&l(f,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new Hv.TApplicationException(Hv.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(f){if(f instanceof g2)t.rollbackPosition();else throw f}};Mr.prototype.__onData=function(t){Object.prototype.toString.call(t)==="[object ArrayBuffer]"&&(t=new Uint8Array(t));var e=new Buffer(t);this.transport.receiver(this.__decodeCallback.bind(this))(e)};Mr.prototype.__onMessage=function(t){this.__onData(t.data)};Mr.prototype.__onError=function(t){this.emit("error",t),this.socket.close()};Mr.prototype.isOpen=function(){return this.socket&&this.socket.readyState===this.socket.OPEN};Mr.prototype.open=function(){this.socket&&this.socket.readyState!==this.socket.CLOSED||(j2.isBrowser?this.socket=new Pv(this.uri()):this.socket=new Pv(this.uri(),"",this.wsOptions),this.socket.binaryType="arraybuffer",this.socket.onopen=this.__onOpen.bind(this),this.socket.onmessage=this.__onMessage.bind(this),this.socket.onerror=this.__onError.bind(this),this.socket.onclose=this.__onClose.bind(this))};Mr.prototype.close=function(){this.socket.close()};Mr.prototype.uri=function(){var t=this.secure?"wss":"ws",e="",r=this.path||"/",n=this.host;return this.port&&(t==="wss"&&this.port!==443||t==="ws"&&this.port!==80)&&(e=":"+this.port),t+"://"+n+e+r};Mr.prototype.write=function(t){this.isOpen()?this.socket.send(t):this.send_pending.push(t)};Np.createWSConnection=function(t,e,r){return new Mr(t,e,r)};Np.createWSClient=y2});var Uv=z(Dp=>{var _2=Zi(),q2=vw().EventEmitter,zv=zo(),v2=Nl(),T2=Dl(),B2=Cf(),k2=Uw();Dp.XHRConnection=Kr;function Kr(t,e,r){this.options=r||{},this.wpos=0,this.rpos=0,this.useCORS=r&&r.useCORS,this.send_buf="",this.recv_buf="",this.transport=r.transport||v2,this.protocol=r.protocol||T2,this.headers=r.headers||{},t=t||window.location.host,e=e||window.location.port;var n=r.https?"https://":"http://",i=r.path||"/";e===""&&(e=void 0),!e||e===80||e==="80"?this.url=n+t+i:this.url=n+t+":"+e+i,this.seqId2Service={}}_2.inherits(Kr,q2);Kr.prototype.getXmlHttpRequestObject=function(){try{return new XMLHttpRequest}catch{}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch{}try{return new ActiveXObject("Microsoft.XMLHTTP")}catch{}throw"Your browser doesn't support XHR."};Kr.prototype.flush=function(){var t=this;if(this.url===void 0||this.url==="")return this.send_buf;var e=this.getXmlHttpRequestObject();e.overrideMimeType&&e.overrideMimeType("application/json"),e.onreadystatechange=function(){this.readyState==4&&this.status==200&&t.setRecvBuffer(this.responseText)},e.open("POST",this.url,!0),Object.keys(this.headers).forEach(function(r){e.setRequestHeader(r,t.headers[r])}),e.send(this.send_buf)};Kr.prototype.setRecvBuffer=function(t){if(this.recv_buf=t,this.recv_buf_sz=this.recv_buf.length,this.wpos=this.recv_buf.length,this.rpos=0,Object.prototype.toString.call(t)=="[object ArrayBuffer]")var e=new Uint8Array(t);var r=new Buffer(e||t);this.transport.receiver(this.__decodeCallback.bind(this))(r)};Kr.prototype.__decodeCallback=function(t){var e=new this.protocol(t);try{for(;;){var r=e.readMessageBegin(),n=r.rseqid*-1,i=this.client,o=this.seqId2Service[r.rseqid];o&&(i=this.client[o],delete this.seqId2Service[r.rseqid]),i._reqs[n]=function(f,s){t.commitPosition();var l=i._reqs[r.rseqid];delete i._reqs[r.rseqid],l&&l(f,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new zv.TApplicationException(zv.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(f){if(f instanceof B2)t.rollbackPosition();else throw f}};Kr.prototype.isOpen=function(){return!0};Kr.prototype.open=function(){};Kr.prototype.close=function(){};Kr.prototype.read=function(t){var e=this.wpos-this.rpos;if(e===0)return"";var r=t;e<t&&(r=e);var n=this.read_buf.substr(this.rpos,r);return this.rpos+=r,n};Kr.prototype.readAll=function(){return this.recv_buf};Kr.prototype.write=function(t){this.send_buf=t,this.flush()};Kr.prototype.getSendBuffer=function(){return this.send_buf};Dp.createXHRConnection=function(t,e,r){return new Kr(t,e,r)};Dp.createXHRClient=k2});var Vv=z((Lv,Lw)=>{(function(t){"use strict";if(typeof bootstrap=="function")bootstrap("promise",t);else if(typeof Lv=="object"&&typeof Lw=="object")Lw.exports=t();else if(typeof define=="function"&&define.amd)define(t);else if(typeof ses!="undefined")if(ses.ok())ses.makeQ=t;else return;else if(typeof window!="undefined"||typeof self!="undefined"){var e=typeof window!="undefined"?window:self,r=e.Q;e.Q=t(),e.Q.noConflict=function(){return e.Q=r,this}}else throw new Error("This environment was not anticipated by Q. Please file a bug.")})(function(){"use strict";var t=!1;try{throw new Error}catch(v){t=!!v.stack}var e=pe(),r,n=function(){},i=function(){var v={task:void 0,next:null},I=v,P=!1,ne=void 0,Oe=!1,Qe=[];function Fe(){for(var At,tr;v.next;)v=v.next,At=v.task,v.task=void 0,tr=v.domain,tr&&(v.domain=void 0,tr.enter()),St(At,tr);for(;Qe.length;)At=Qe.pop(),St(At);P=!1}function St(At,tr){try{At()}catch(To){if(Oe)throw tr&&tr.exit(),setTimeout(Fe,0),tr&&tr.enter(),To;setTimeout(function(){throw To},0)}tr&&tr.exit()}if(i=function(At){I=I.next={task:At,domain:Oe&&process.domain,next:null},P||(P=!0,ne())},typeof process=="object"&&process.toString()==="[object process]"&&process.nextTick)Oe=!0,ne=function(){process.nextTick(Fe)};else if(typeof setImmediate=="function")typeof window!="undefined"?ne=setImmediate.bind(window,Fe):ne=function(){setImmediate(Fe)};else if(typeof MessageChannel!="undefined"){var yt=new MessageChannel;yt.port1.onmessage=function(){ne=xt,yt.port1.onmessage=Fe,Fe()};var xt=function(){yt.port2.postMessage(0)};ne=function(){setTimeout(Fe,0),xt()}}else ne=function(){setTimeout(Fe,0)};return i.runAfter=function(At){Qe.push(At),P||(P=!0,ne())},i}(),o=Function.call;function f(v){return function(){return o.apply(v,arguments)}}var s=f(Array.prototype.slice),l=f(Array.prototype.reduce||function(v,I){var P=0,ne=this.length;if(arguments.length===1)do{if(P in this){I=this[P++];break}if(++P>=ne)throw new TypeError}while(1);for(;P<ne;P++)P in this&&(I=v(I,this[P],P));return I}),u=f(Array.prototype.indexOf||function(v){for(var I=0;I<this.length;I++)if(this[I]===v)return I;return-1}),c=f(Array.prototype.map||function(v,I){var P=this,ne=[];return l(P,function(Oe,Qe,Fe){ne.push(v.call(I,Qe,Fe,P))},void 0),ne}),_=Object.create||function(v){function I(){}return I.prototype=v,new I},p=Object.defineProperty||function(v,I,P){return v[I]=P.value,v},j=f(Object.prototype.hasOwnProperty),S=Object.keys||function(v){var I=[];for(var P in v)j(v,P)&&I.push(P);return I},T=f(Object.prototype.toString);function U(v){return v===Object(v)}function W(v){return T(v)==="[object StopIteration]"||v instanceof L}var L;typeof ReturnValue!="undefined"?L=ReturnValue:L=function(v){this.value=v};var te="From previous event:";function ce(v,I){if(t&&I.stack&&typeof v=="object"&&v!==null&&v.stack){for(var P=[],ne=I;ne;ne=ne.source)ne.stack&&(!v.__minimumStackCounter__||v.__minimumStackCounter__>ne.stackCounter)&&(p(v,"__minimumStackCounter__",{value:ne.stackCounter,configurable:!0}),P.unshift(ne.stack));P.unshift(v.stack);var Oe=P.join(`
13
- `+te+`
14
- `),Qe=J(Oe);p(v,"stack",{value:Qe,configurable:!0})}}function J(v){for(var I=v.split(`
15
- `),P=[],ne=0;ne<I.length;++ne){var Oe=I[ne];!Y(Oe)&&!D(Oe)&&Oe&&P.push(Oe)}return P.join(`
16
- `)}function D(v){return v.indexOf("(module.js:")!==-1||v.indexOf("(node.js:")!==-1}function ae(v){var I=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(v);if(I)return[I[1],Number(I[2])];var P=/at ([^ ]+):(\d+):(?:\d+)$/.exec(v);if(P)return[P[1],Number(P[2])];var ne=/.*@(.+):(\d+)$/.exec(v);if(ne)return[ne[1],Number(ne[2])]}function Y(v){var I=ae(v);if(!I)return!1;var P=I[0],ne=I[1];return P===r&&ne>=e&&ne<=Ln}function pe(){if(!!t)try{throw new Error}catch(ne){var v=ne.stack.split(`
17
- `),I=v[0].indexOf("@")>0?v[1]:v[2],P=ae(I);return P?(r=P[0],P[1]):void 0}}function y(v,I,P){return function(){return typeof console!="undefined"&&typeof console.warn=="function"&&console.warn(I+" is deprecated, use "+P+" instead.",new Error("").stack),v.apply(v,arguments)}}function g(v){return v instanceof M?v:de(v)?Ht(v):Ye(v)}g.resolve=g,g.nextTick=i,g.longStackSupport=!1;var N=1;typeof process=="object"&&process&&process.env&&process.env.Q_DEBUG&&(g.longStackSupport=!0),g.defer=b;function b(){var v=[],I=[],P,ne=_(b.prototype),Oe=_(M.prototype);if(Oe.promiseDispatch=function(Fe,St,yt){var xt=s(arguments);v?(v.push(xt),St==="when"&&yt[1]&&I.push(yt[1])):g.nextTick(function(){P.promiseDispatch.apply(P,xt)})},Oe.valueOf=function(){if(v)return Oe;var Fe=E(P);return We(Fe)&&(P=Fe),Fe},Oe.inspect=function(){return P?P.inspect():{state:"pending"}},g.longStackSupport&&t)try{throw new Error}catch(Fe){Oe.stack=Fe.stack.substring(Fe.stack.indexOf(`
18
- `)+1),Oe.stackCounter=N++}function Qe(Fe){P=Fe,g.longStackSupport&&t&&(Oe.source=Fe),l(v,function(St,yt){g.nextTick(function(){Fe.promiseDispatch.apply(Fe,yt)})},void 0),v=void 0,I=void 0}return ne.promise=Oe,ne.resolve=function(Fe){P||Qe(g(Fe))},ne.fulfill=function(Fe){P||Qe(Ye(Fe))},ne.reject=function(Fe){P||Qe(It(Fe))},ne.notify=function(Fe){P||l(I,function(St,yt){g.nextTick(function(){yt(Fe)})},void 0)},ne}b.prototype.makeNodeResolver=function(){var v=this;return function(I,P){I?v.reject(I):arguments.length>2?v.resolve(s(arguments,1)):v.resolve(P)}},g.Promise=H,g.promise=H;function H(v){if(typeof v!="function")throw new TypeError("resolver must be a function.");var I=b();try{v(I.resolve,I.reject,I.notify)}catch(P){I.reject(P)}return I.promise}H.race=K,H.all=fe,H.reject=It,H.resolve=g,g.passByCopy=function(v){return v},M.prototype.passByCopy=function(){return this},g.join=function(v,I){return g(v).join(I)},M.prototype.join=function(v){return g([this,v]).spread(function(I,P){if(I===P)return I;throw new Error("Q can't join: not the same: "+I+" "+P)})},g.race=K;function K(v){return H(function(I,P){for(var ne=0,Oe=v.length;ne<Oe;ne++)g(v[ne]).then(I,P)})}M.prototype.race=function(){return this.then(g.race)},g.makePromise=M;function M(v,I,P){I===void 0&&(I=function(Qe){return It(new Error("Promise does not support operation: "+Qe))}),P===void 0&&(P=function(){return{state:"unknown"}});var ne=_(M.prototype);if(ne.promiseDispatch=function(Qe,Fe,St){var yt;try{v[Fe]?yt=v[Fe].apply(ne,St):yt=I.call(ne,Fe,St)}catch(xt){yt=It(xt)}Qe&&Qe(yt)},ne.inspect=P,P){var Oe=P();Oe.state==="rejected"&&(ne.exception=Oe.reason),ne.valueOf=function(){var Qe=P();return Qe.state==="pending"||Qe.state==="rejected"?ne:Qe.value}}return ne}M.prototype.toString=function(){return"[object Promise]"},M.prototype.then=function(v,I,P){var ne=this,Oe=b(),Qe=!1;function Fe(xt){try{return typeof v=="function"?v(xt):xt}catch(At){return It(At)}}function St(xt){if(typeof I=="function"){ce(xt,ne);try{return I(xt)}catch(At){return It(At)}}return It(xt)}function yt(xt){return typeof P=="function"?P(xt):xt}return g.nextTick(function(){ne.promiseDispatch(function(xt){Qe||(Qe=!0,Oe.resolve(Fe(xt)))},"when",[function(xt){Qe||(Qe=!0,Oe.resolve(St(xt)))}])}),ne.promiseDispatch(void 0,"when",[void 0,function(xt){var At,tr=!1;try{At=yt(xt)}catch(To){if(tr=!0,g.onerror)g.onerror(To);else throw To}tr||Oe.notify(At)}]),Oe.promise},g.tap=function(v,I){return g(v).tap(I)},M.prototype.tap=function(v){return v=g(v),this.then(function(I){return v.fcall(I).thenResolve(I)})},g.when=ie;function ie(v,I,P,ne){return g(v).then(I,P,ne)}M.prototype.thenResolve=function(v){return this.then(function(){return v})},g.thenResolve=function(v,I){return g(v).thenResolve(I)},M.prototype.thenReject=function(v){return this.then(function(){throw v})},g.thenReject=function(v,I){return g(v).thenReject(I)},g.nearer=E;function E(v){if(We(v)){var I=v.inspect();if(I.state==="fulfilled")return I.value}return v}g.isPromise=We;function We(v){return v instanceof M}g.isPromiseAlike=de;function de(v){return U(v)&&typeof v.then=="function"}g.isPending=C;function C(v){return We(v)&&v.inspect().state==="pending"}M.prototype.isPending=function(){return this.inspect().state==="pending"},g.isFulfilled=X;function X(v){return!We(v)||v.inspect().state==="fulfilled"}M.prototype.isFulfilled=function(){return this.inspect().state==="fulfilled"},g.isRejected=He;function He(v){return We(v)&&v.inspect().state==="rejected"}M.prototype.isRejected=function(){return this.inspect().state==="rejected"};var we=[],tt=[],kr=[],je=!0;function $(){we.length=0,tt.length=0,je||(je=!0)}function qo(v,I){!je||(typeof process=="object"&&typeof process.emit=="function"&&g.nextTick.runAfter(function(){u(tt,v)!==-1&&(process.emit("unhandledRejection",I,v),kr.push(v))}),tt.push(v),I&&typeof I.stack!="undefined"?we.push(I.stack):we.push("(no stack) "+I))}function vo(v){if(!!je){var I=u(tt,v);I!==-1&&(typeof process=="object"&&typeof process.emit=="function"&&g.nextTick.runAfter(function(){var P=u(kr,v);P!==-1&&(process.emit("rejectionHandled",we[I],v),kr.splice(P,1))}),tt.splice(I,1),we.splice(I,1))}}g.resetUnhandledRejections=$,g.getUnhandledReasons=function(){return we.slice()},g.stopUnhandledRejectionTracking=function(){$(),je=!1},$(),g.reject=It;function It(v){var I=M({when:function(P){return P&&vo(this),P?P(v):this}},function(){return this},function(){return{state:"rejected",reason:v}});return qo(I,v),I}g.fulfill=Ye;function Ye(v){return M({when:function(){return v},get:function(I){return v[I]},set:function(I,P){v[I]=P},delete:function(I){delete v[I]},post:function(I,P){return I==null?v.apply(void 0,P):v[I].apply(v,P)},apply:function(I,P){return v.apply(I,P)},keys:function(){return S(v)}},void 0,function(){return{state:"fulfilled",value:v}})}function Ht(v){var I=b();return g.nextTick(function(){try{v.then(I.resolve,I.reject,I.notify)}catch(P){I.reject(P)}}),I.promise}g.master=mt;function mt(v){return M({isDef:function(){}},function(P,ne){return oe(v,P,ne)},function(){return g(v).inspect()})}g.spread=q;function q(v,I,P){return g(v).spread(I,P)}M.prototype.spread=function(v,I){return this.all().then(function(P){return v.apply(void 0,P)},I)},g.async=d;function d(v){return function(){function I(Qe,Fe){var St;if(typeof StopIteration=="undefined"){try{St=P[Qe](Fe)}catch(yt){return It(yt)}return St.done?g(St.value):ie(St.value,ne,Oe)}else{try{St=P[Qe](Fe)}catch(yt){return W(yt)?g(yt.value):It(yt)}return ie(St,ne,Oe)}}var P=v.apply(this,arguments),ne=I.bind(I,"next"),Oe=I.bind(I,"throw");return ne()}}g.spawn=m;function m(v){g.done(g.async(v)())}g.return=B;function B(v){throw new L(v)}g.promised=R;function R(v){return function(){return q([this,fe(arguments)],function(I,P){return v.apply(I,P)})}}g.dispatch=oe;function oe(v,I,P){return g(v).dispatch(I,P)}M.prototype.dispatch=function(v,I){var P=this,ne=b();return g.nextTick(function(){P.promiseDispatch(ne.resolve,v,I)}),ne.promise},g.get=function(v,I){return g(v).dispatch("get",[I])},M.prototype.get=function(v){return this.dispatch("get",[v])},g.set=function(v,I,P){return g(v).dispatch("set",[I,P])},M.prototype.set=function(v,I){return this.dispatch("set",[v,I])},g.del=g.delete=function(v,I){return g(v).dispatch("delete",[I])},M.prototype.del=M.prototype.delete=function(v){return this.dispatch("delete",[v])},g.mapply=g.post=function(v,I,P){return g(v).dispatch("post",[I,P])},M.prototype.mapply=M.prototype.post=function(v,I){return this.dispatch("post",[v,I])},g.send=g.mcall=g.invoke=function(v,I){return g(v).dispatch("post",[I,s(arguments,2)])},M.prototype.send=M.prototype.mcall=M.prototype.invoke=function(v){return this.dispatch("post",[v,s(arguments,1)])},g.fapply=function(v,I){return g(v).dispatch("apply",[void 0,I])},M.prototype.fapply=function(v){return this.dispatch("apply",[void 0,v])},g.try=g.fcall=function(v){return g(v).dispatch("apply",[void 0,s(arguments,1)])},M.prototype.fcall=function(){return this.dispatch("apply",[void 0,s(arguments)])},g.fbind=function(v){var I=g(v),P=s(arguments,1);return function(){return I.dispatch("apply",[this,P.concat(s(arguments))])}},M.prototype.fbind=function(){var v=this,I=s(arguments);return function(){return v.dispatch("apply",[this,I.concat(s(arguments))])}},g.keys=function(v){return g(v).dispatch("keys",[])},M.prototype.keys=function(){return this.dispatch("keys",[])},g.all=fe;function fe(v){return ie(v,function(I){var P=0,ne=b();return l(I,function(Oe,Qe,Fe){var St;We(Qe)&&(St=Qe.inspect()).state==="fulfilled"?I[Fe]=St.value:(++P,ie(Qe,function(yt){I[Fe]=yt,--P==0&&ne.resolve(I)},ne.reject,function(yt){ne.notify({index:Fe,value:yt})}))},void 0),P===0&&ne.resolve(I),ne.promise})}M.prototype.all=function(){return fe(this)},g.any=rt;function rt(v){if(v.length===0)return g.resolve();var I=g.defer(),P=0;return l(v,function(ne,Oe,Qe){var Fe=v[Qe];P++,ie(Fe,St,yt,xt);function St(At){I.resolve(At)}function yt(At){if(P--,P===0){var tr=At||new Error(""+At);tr.message="Q can't get fulfillment value from any promise, all promises were rejected. Last error message: "+tr.message,I.reject(tr)}}function xt(At){I.notify({index:Qe,value:At})}},void 0),I.promise}M.prototype.any=function(){return rt(this)},g.allResolved=y(Je,"allResolved","allSettled");function Je(v){return ie(v,function(I){return I=c(I,g),ie(fe(c(I,function(P){return ie(P,n,n)})),function(){return I})})}M.prototype.allResolved=function(){return Je(this)},g.allSettled=vt;function vt(v){return g(v).allSettled()}M.prototype.allSettled=function(){return this.then(function(v){return fe(c(v,function(I){I=g(I);function P(){return I.inspect()}return I.then(P,P)}))})},g.fail=g.catch=function(v,I){return g(v).then(void 0,I)},M.prototype.fail=M.prototype.catch=function(v){return this.then(void 0,v)},g.progress=br;function br(v,I){return g(v).then(void 0,void 0,I)}M.prototype.progress=function(v){return this.then(void 0,void 0,v)},g.fin=g.finally=function(v,I){return g(v).finally(I)},M.prototype.fin=M.prototype.finally=function(v){if(!v||typeof v.apply!="function")throw new Error("Q can't apply finally callback");return v=g(v),this.then(function(I){return v.fcall().then(function(){return I})},function(I){return v.fcall().then(function(){throw I})})},g.done=function(v,I,P,ne){return g(v).done(I,P,ne)},M.prototype.done=function(v,I,P){var ne=function(Qe){g.nextTick(function(){if(ce(Qe,Oe),g.onerror)g.onerror(Qe);else throw Qe})},Oe=v||I||P?this.then(v,I,P):this;typeof process=="object"&&process&&process.domain&&(ne=process.domain.bind(ne)),Oe.then(void 0,ne)},g.timeout=function(v,I,P){return g(v).timeout(I,P)},M.prototype.timeout=function(v,I){var P=b(),ne=setTimeout(function(){(!I||typeof I=="string")&&(I=new Error(I||"Timed out after "+v+" ms"),I.code="ETIMEDOUT"),P.reject(I)},v);return this.then(function(Oe){clearTimeout(ne),P.resolve(Oe)},function(Oe){clearTimeout(ne),P.reject(Oe)},P.notify),P.promise},g.delay=function(v,I){return I===void 0&&(I=v,v=void 0),g(v).delay(I)},M.prototype.delay=function(v){return this.then(function(I){var P=b();return setTimeout(function(){P.resolve(I)},v),P.promise})},g.nfapply=function(v,I){return g(v).nfapply(I)},M.prototype.nfapply=function(v){var I=b(),P=s(v);return P.push(I.makeNodeResolver()),this.fapply(P).fail(I.reject),I.promise},g.nfcall=function(v){var I=s(arguments,1);return g(v).nfapply(I)},M.prototype.nfcall=function(){var v=s(arguments),I=b();return v.push(I.makeNodeResolver()),this.fapply(v).fail(I.reject),I.promise},g.nfbind=g.denodeify=function(v){if(v===void 0)throw new Error("Q can't wrap an undefined function");var I=s(arguments,1);return function(){var P=I.concat(s(arguments)),ne=b();return P.push(ne.makeNodeResolver()),g(v).fapply(P).fail(ne.reject),ne.promise}},M.prototype.nfbind=M.prototype.denodeify=function(){var v=s(arguments);return v.unshift(this),g.denodeify.apply(void 0,v)},g.nbind=function(v,I){var P=s(arguments,2);return function(){var ne=P.concat(s(arguments)),Oe=b();ne.push(Oe.makeNodeResolver());function Qe(){return v.apply(I,arguments)}return g(Qe).fapply(ne).fail(Oe.reject),Oe.promise}},M.prototype.nbind=function(){var v=s(arguments,0);return v.unshift(this),g.nbind.apply(void 0,v)},g.nmapply=g.npost=function(v,I,P){return g(v).npost(I,P)},M.prototype.nmapply=M.prototype.npost=function(v,I){var P=s(I||[]),ne=b();return P.push(ne.makeNodeResolver()),this.dispatch("post",[v,P]).fail(ne.reject),ne.promise},g.nsend=g.nmcall=g.ninvoke=function(v,I){var P=s(arguments,2),ne=b();return P.push(ne.makeNodeResolver()),g(v).dispatch("post",[I,P]).fail(ne.reject),ne.promise},M.prototype.nsend=M.prototype.nmcall=M.prototype.ninvoke=function(v){var I=s(arguments,1),P=b();return I.push(P.makeNodeResolver()),this.dispatch("post",[v,I]).fail(P.reject),P.promise},g.nodeify=Be;function Be(v,I){return g(v).nodeify(I)}M.prototype.nodeify=function(v){if(v)this.then(function(I){g.nextTick(function(){v(null,I)})},function(I){g.nextTick(function(){v(I)})});else return this},g.noConflict=function(){throw new Error("Q.noConflict only works when Q is used as a global")};var Ln=pe();return g})});var Kv=z(Yv=>{var I2=Zi(),Cv=zo();Yv.Multiplexer=Wv;function S2(t,e,r){function n(i,o,f){e.call(this,i,o,f)}return I2.inherits(n,e),n.prototype.writeMessageBegin=function(i,o,f){o==Cv.MessageType.CALL||o==Cv.MessageType.ONEWAY?(r.seqId2Service[f]=t,n.super_.prototype.writeMessageBegin.call(this,t+":"+i,o,f)):n.super_.prototype.writeMessageBegin.call(this,i,o,f)},n}function Wv(){this.seqid=0}Wv.prototype.createClient=function(t,e,r){e.Client&&(e=e.Client);var n=function(l,u){r.write(l,u)},i=new r.transport(void 0,n),o=new S2(t,r.protocol,r),f=new e(i,o),s=this;return f.new_seqid=function(){return s.seqid+=1,s.seqid},typeof r.client!="object"&&(r.client={}),r.client[t]=f,f}});var Jv=z((gV,Gv)=>{var Cs=Sp(),x2=Cf(),A2=Rw();Gv.exports=ir;function ir(t,e){this.inBuf=t||new Buffer(0),this.outBuffers=[],this.outCount=0,this.readPos=0,this.onFlush=e}ir.prototype=new A2;ir.receiver=function(t,e){var r=null;return function(n){for(r&&(n=Buffer.concat([r,n]),r=null);n.length;){if(n.length<4){r=n;return}var i=Cs.readI32(n,0);if(n.length<4+i){r=n;return}var o=n.slice(4,4+i);r=n.slice(4+i),t(new ir(o),e),n=r,r=null}}};ir.prototype.commitPosition=function(){},ir.prototype.rollbackPosition=function(){},ir.prototype.isOpen=function(){return!0};ir.prototype.open=function(){};ir.prototype.close=function(){};ir.prototype.setCurrSeqId=function(t){this._seqid=t};ir.prototype.ensureAvailable=function(t){if(this.readPos+t>this.inBuf.length)throw new x2};ir.prototype.read=function(t){this.ensureAvailable(t);var e=this.readPos+t;if(this.inBuf.length<e)throw new Error("read("+t+") failed - not enough data");var r=this.inBuf.slice(this.readPos,e);return this.readPos=e,r};ir.prototype.readByte=function(){return this.ensureAvailable(1),Cs.readByte(this.inBuf[this.readPos++])};ir.prototype.readI16=function(){this.ensureAvailable(2);var t=Cs.readI16(this.inBuf,this.readPos);return this.readPos+=2,t};ir.prototype.readI32=function(){this.ensureAvailable(4);var t=Cs.readI32(this.inBuf,this.readPos);return this.readPos+=4,t};ir.prototype.readDouble=function(){this.ensureAvailable(8);var t=Cs.readDouble(this.inBuf,this.readPos);return this.readPos+=8,t};ir.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readPos,this.readPos+t);return this.readPos+=t,e};ir.prototype.borrow=function(){return{buf:this.inBuf,readIndex:this.readPos,writeIndex:this.inBuf.length}};ir.prototype.consume=function(t){this.readPos+=t};ir.prototype.write=function(t,e){typeof t=="string"&&(t=new Buffer(t,e||"utf8")),this.outBuffers.push(t),this.outCount+=t.length};ir.prototype.flush=function(){var t=this._seqid;this._seqid=null;var e=new Buffer(this.outCount),r=0;if(this.outBuffers.forEach(function(i){i.copy(e,r,0),r+=i.length}),this.onFlush){var n=new Buffer(e.length+4);Cs.writeI32(n,e.length),e.copy(n,4,0,e.length),this.onFlush&&this.onFlush(n,t)}this.outBuffers=[],this.outCount=0}});var Xv=z((yV,Zv)=>{var E2=Ap();Zv.exports=zr;function zr(t){this.__reset(t)}zr.prototype.__reset=function(t){this.url=t,this.socket=null,this.callbacks=[],this.send_pending=[],this.send_buf="",this.recv_buf="",this.rb_wpos=0,this.rb_rpos=0};zr.prototype.flush=function(t,e){var r=this;this.isOpen()?(this.socket.send(this.send_buf),this.callbacks.push(function(){var n=e;return function(i){r.setRecvBuffer(i),n()}}())):this.send_pending.push({buf:this.send_buf,cb:e})};zr.prototype.__onOpen=function(){var t=this;this.send_pending.length>0&&(this.send_pending.forEach(function(e){t.socket.send(e.buf),t.callbacks.push(function(){var r=e.cb;return function(n){t.setRecvBuffer(n),r()}}())}),this.send_pending=[])};zr.prototype.__onClose=function(t){this.__reset(this.url)};zr.prototype.__onMessage=function(t){this.callbacks.length&&this.callbacks.shift()(t.data)};zr.prototype.__onError=function(t){E2.error("websocket: "+t.toString()),this.socket.close()};zr.prototype.setRecvBuffer=function(t){this.recv_buf=t,this.recv_buf_sz=this.recv_buf.length,this.wpos=this.recv_buf.length,this.rpos=0};zr.prototype.isOpen=function(){return this.socket&&this.socket.readyState==this.socket.OPEN};zr.prototype.open=function(){this.socket&&this.socket.readyState!=this.socket.CLOSED||(this.socket=new WebSocket(this.url),this.socket.onopen=this.__onOpen.bind(this),this.socket.onmessage=this.__onMessage.bind(this),this.socket.onerror=this.__onError.bind(this),this.socket.onclose=this.__onClose.bind(this))};zr.prototype.close=function(){this.socket.close()};zr.prototype.read=function(t){var e=this.wpos-this.rpos;if(e===0)return"";var r=t;e<t&&(r=e);var n=this.read_buf.substr(this.rpos,r);return this.rpos+=r,n};zr.prototype.readAll=function(){return this.recv_buf};zr.prototype.write=function(t){this.send_buf=t};zr.prototype.getSendBuffer=function(){return this.send_buf}});var ct=z(qr=>{qr.Thrift=zo();var Vw=Mv();qr.WSConnection=Vw.WSConnection;qr.createWSConnection=Vw.createWSConnection;qr.createWSClient=Vw.createWSClient;var Cw=Uv();qr.XHRConnection=Cw.XHRConnection;qr.createXHRConnection=Cw.createXHRConnection;qr.createXHRClient=Cw.createXHRClient;qr.Int64=hn();qr.Q=Vv();var O2=Kv();qr.Multiplexer=O2.Multiplexer;qr.TBufferedTransport=Nl();qr.TFramedTransport=Jv();qr.TWebSocketTransport=Xv();qr.Protocol=Dl();qr.TJSONProtocol=Dl();qr.TBinaryProtocol=Pw();qr.TCompactProtocol=Nw()});var oo=z(IT=>{var V={};V.Offset;V.Table;V.SIZEOF_SHORT=2;V.SIZEOF_INT=4;V.FILE_IDENTIFIER_LENGTH=4;V.SIZE_PREFIX_LENGTH=4;V.Encoding={UTF8_BYTES:1,UTF16_STRING:2};V.int32=new Int32Array(2);V.float32=new Float32Array(V.int32.buffer);V.float64=new Float64Array(V.int32.buffer);V.isLittleEndian=new Uint16Array(new Uint8Array([1,0]).buffer)[0]===1;V.Long=function(t,e){this.low=t|0,this.high=e|0};V.Long.create=function(t,e){return t==0&&e==0?V.Long.ZERO:new V.Long(t,e)};V.Long.prototype.toFloat64=function(){return(this.low>>>0)+this.high*4294967296};V.Long.prototype.equals=function(t){return this.low==t.low&&this.high==t.high};V.Long.ZERO=new V.Long(0,0);V.Builder=function(t){if(t)var e=t;else var e=1024;this.bb=V.ByteBuffer.allocate(e),this.space=e,this.minalign=1,this.vtable=null,this.vtable_in_use=0,this.isNested=!1,this.object_start=0,this.vtables=[],this.vector_num_elems=0,this.force_defaults=!1};V.Builder.prototype.clear=function(){this.bb.clear(),this.space=this.bb.capacity(),this.minalign=1,this.vtable=null,this.vtable_in_use=0,this.isNested=!1,this.object_start=0,this.vtables=[],this.vector_num_elems=0,this.force_defaults=!1};V.Builder.prototype.forceDefaults=function(t){this.force_defaults=t};V.Builder.prototype.dataBuffer=function(){return this.bb};V.Builder.prototype.asUint8Array=function(){return this.bb.bytes().subarray(this.bb.position(),this.bb.position()+this.offset())};V.Builder.prototype.prep=function(t,e){t>this.minalign&&(this.minalign=t);for(var r=~(this.bb.capacity()-this.space+e)+1&t-1;this.space<r+t+e;){var n=this.bb.capacity();this.bb=V.Builder.growByteBuffer(this.bb),this.space+=this.bb.capacity()-n}this.pad(r)};V.Builder.prototype.pad=function(t){for(var e=0;e<t;e++)this.bb.writeInt8(--this.space,0)};V.Builder.prototype.writeInt8=function(t){this.bb.writeInt8(this.space-=1,t)};V.Builder.prototype.writeInt16=function(t){this.bb.writeInt16(this.space-=2,t)};V.Builder.prototype.writeInt32=function(t){this.bb.writeInt32(this.space-=4,t)};V.Builder.prototype.writeInt64=function(t){this.bb.writeInt64(this.space-=8,t)};V.Builder.prototype.writeFloat32=function(t){this.bb.writeFloat32(this.space-=4,t)};V.Builder.prototype.writeFloat64=function(t){this.bb.writeFloat64(this.space-=8,t)};V.Builder.prototype.addInt8=function(t){this.prep(1,0),this.writeInt8(t)};V.Builder.prototype.addInt16=function(t){this.prep(2,0),this.writeInt16(t)};V.Builder.prototype.addInt32=function(t){this.prep(4,0),this.writeInt32(t)};V.Builder.prototype.addInt64=function(t){this.prep(8,0),this.writeInt64(t)};V.Builder.prototype.addFloat32=function(t){this.prep(4,0),this.writeFloat32(t)};V.Builder.prototype.addFloat64=function(t){this.prep(8,0),this.writeFloat64(t)};V.Builder.prototype.addFieldInt8=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt8(e),this.slot(t))};V.Builder.prototype.addFieldInt16=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt16(e),this.slot(t))};V.Builder.prototype.addFieldInt32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt32(e),this.slot(t))};V.Builder.prototype.addFieldInt64=function(t,e,r){(this.force_defaults||!e.equals(r))&&(this.addInt64(e),this.slot(t))};V.Builder.prototype.addFieldFloat32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat32(e),this.slot(t))};V.Builder.prototype.addFieldFloat64=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat64(e),this.slot(t))};V.Builder.prototype.addFieldOffset=function(t,e,r){(this.force_defaults||e!=r)&&(this.addOffset(e),this.slot(t))};V.Builder.prototype.addFieldStruct=function(t,e,r){e!=r&&(this.nested(e),this.slot(t))};V.Builder.prototype.nested=function(t){if(t!=this.offset())throw new Error("FlatBuffers: struct must be serialized inline.")};V.Builder.prototype.notNested=function(){if(this.isNested)throw new Error("FlatBuffers: object serialization must not be nested.")};V.Builder.prototype.slot=function(t){this.vtable[t]=this.offset()};V.Builder.prototype.offset=function(){return this.bb.capacity()-this.space};V.Builder.growByteBuffer=function(t){var e=t.capacity();if(e&3221225472)throw new Error("FlatBuffers: cannot grow buffer beyond 2 gigabytes.");var r=e<<1,n=V.ByteBuffer.allocate(r);return n.setPosition(r-e),n.bytes().set(t.bytes(),r-e),n};V.Builder.prototype.addOffset=function(t){this.prep(V.SIZEOF_INT,0),this.writeInt32(this.offset()-t+V.SIZEOF_INT)};V.Builder.prototype.startObject=function(t){this.notNested(),this.vtable==null&&(this.vtable=[]),this.vtable_in_use=t;for(var e=0;e<t;e++)this.vtable[e]=0;this.isNested=!0,this.object_start=this.offset()};V.Builder.prototype.endObject=function(){if(this.vtable==null||!this.isNested)throw new Error("FlatBuffers: endObject called without startObject");this.addInt32(0);for(var t=this.offset(),e=this.vtable_in_use-1;e>=0&&this.vtable[e]==0;e--);for(var r=e+1;e>=0;e--)this.addInt16(this.vtable[e]!=0?t-this.vtable[e]:0);var n=2;this.addInt16(t-this.object_start);var i=(r+n)*V.SIZEOF_SHORT;this.addInt16(i);var o=0,f=this.space;e:for(e=0;e<this.vtables.length;e++){var s=this.bb.capacity()-this.vtables[e];if(i==this.bb.readInt16(s)){for(var l=V.SIZEOF_SHORT;l<i;l+=V.SIZEOF_SHORT)if(this.bb.readInt16(f+l)!=this.bb.readInt16(s+l))continue e;o=this.vtables[e];break}}return o?(this.space=this.bb.capacity()-t,this.bb.writeInt32(this.space,o-t)):(this.vtables.push(this.offset()),this.bb.writeInt32(this.bb.capacity()-t,this.offset()-t)),this.isNested=!1,t};V.Builder.prototype.finish=function(t,e,r){var n=r?V.SIZE_PREFIX_LENGTH:0;if(e){var i=e;if(this.prep(this.minalign,V.SIZEOF_INT+V.FILE_IDENTIFIER_LENGTH+n),i.length!=V.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+V.FILE_IDENTIFIER_LENGTH);for(var o=V.FILE_IDENTIFIER_LENGTH-1;o>=0;o--)this.writeInt8(i.charCodeAt(o))}this.prep(this.minalign,V.SIZEOF_INT+n),this.addOffset(t),n&&this.addInt32(this.bb.capacity()-this.space),this.bb.setPosition(this.space)};V.Builder.prototype.finishSizePrefixed=function(t,e){this.finish(t,e,!0)};V.Builder.prototype.requiredField=function(t,e){var r=this.bb.capacity()-t,n=r-this.bb.readInt32(r),i=this.bb.readInt16(n+e)!=0;if(!i)throw new Error("FlatBuffers: field "+e+" must be set")};V.Builder.prototype.startVector=function(t,e,r){this.notNested(),this.vector_num_elems=e,this.prep(V.SIZEOF_INT,t*e),this.prep(r,t*e)};V.Builder.prototype.endVector=function(){return this.writeInt32(this.vector_num_elems),this.offset()};V.Builder.prototype.createString=function(t){if(t instanceof Uint8Array)var e=t;else for(var e=[],r=0;r<t.length;){var n,i=t.charCodeAt(r++);if(i<55296||i>=56320)n=i;else{var o=t.charCodeAt(r++);n=(i<<10)+o+(65536-(55296<<10)-56320)}n<128?e.push(n):(n<2048?e.push(n>>6&31|192):(n<65536?e.push(n>>12&15|224):e.push(n>>18&7|240,n>>12&63|128),e.push(n>>6&63|128)),e.push(n&63|128))}this.addInt8(0),this.startVector(1,e.length,1),this.bb.setPosition(this.space-=e.length);for(var r=0,f=this.space,s=this.bb.bytes();r<e.length;r++)s[f++]=e[r];return this.endVector()};V.Builder.prototype.createLong=function(t,e){return V.Long.create(t,e)};V.ByteBuffer=function(t){this.bytes_=t,this.position_=0};V.ByteBuffer.allocate=function(t){return new V.ByteBuffer(new Uint8Array(t))};V.ByteBuffer.prototype.clear=function(){this.position_=0};V.ByteBuffer.prototype.bytes=function(){return this.bytes_};V.ByteBuffer.prototype.position=function(){return this.position_};V.ByteBuffer.prototype.setPosition=function(t){this.position_=t};V.ByteBuffer.prototype.capacity=function(){return this.bytes_.length};V.ByteBuffer.prototype.readInt8=function(t){return this.readUint8(t)<<24>>24};V.ByteBuffer.prototype.readUint8=function(t){return this.bytes_[t]};V.ByteBuffer.prototype.readInt16=function(t){return this.readUint16(t)<<16>>16};V.ByteBuffer.prototype.readUint16=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8};V.ByteBuffer.prototype.readInt32=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8|this.bytes_[t+2]<<16|this.bytes_[t+3]<<24};V.ByteBuffer.prototype.readUint32=function(t){return this.readInt32(t)>>>0};V.ByteBuffer.prototype.readInt64=function(t){return new V.Long(this.readInt32(t),this.readInt32(t+4))};V.ByteBuffer.prototype.readUint64=function(t){return new V.Long(this.readUint32(t),this.readUint32(t+4))};V.ByteBuffer.prototype.readFloat32=function(t){return V.int32[0]=this.readInt32(t),V.float32[0]};V.ByteBuffer.prototype.readFloat64=function(t){return V.int32[V.isLittleEndian?0:1]=this.readInt32(t),V.int32[V.isLittleEndian?1:0]=this.readInt32(t+4),V.float64[0]};V.ByteBuffer.prototype.writeInt8=function(t,e){this.bytes_[t]=e};V.ByteBuffer.prototype.writeUint8=function(t,e){this.bytes_[t]=e};V.ByteBuffer.prototype.writeInt16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};V.ByteBuffer.prototype.writeUint16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};V.ByteBuffer.prototype.writeInt32=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8,this.bytes_[t+2]=e>>16,this.bytes_[t+3]=e>>24};V.ByteBuffer.prototype.writeUint32=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8,this.bytes_[t+2]=e>>16,this.bytes_[t+3]=e>>24};V.ByteBuffer.prototype.writeInt64=function(t,e){this.writeInt32(t,e.low),this.writeInt32(t+4,e.high)};V.ByteBuffer.prototype.writeUint64=function(t,e){this.writeUint32(t,e.low),this.writeUint32(t+4,e.high)};V.ByteBuffer.prototype.writeFloat32=function(t,e){V.float32[0]=e,this.writeInt32(t,V.int32[0])};V.ByteBuffer.prototype.writeFloat64=function(t,e){V.float64[0]=e,this.writeInt32(t,V.int32[V.isLittleEndian?0:1]),this.writeInt32(t+4,V.int32[V.isLittleEndian?1:0])};V.ByteBuffer.prototype.getBufferIdentifier=function(){if(this.bytes_.length<this.position_+V.SIZEOF_INT+V.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: ByteBuffer is too short to contain an identifier.");for(var t="",e=0;e<V.FILE_IDENTIFIER_LENGTH;e++)t+=String.fromCharCode(this.readInt8(this.position_+V.SIZEOF_INT+e));return t};V.ByteBuffer.prototype.__offset=function(t,e){var r=t-this.readInt32(t);return e<this.readInt16(r)?this.readInt16(r+e):0};V.ByteBuffer.prototype.__union=function(t,e){return t.bb_pos=e+this.readInt32(e),t.bb=this,t};V.ByteBuffer.prototype.__string=function(t,e){t+=this.readInt32(t);var r=this.readInt32(t),n="",i=0;if(t+=V.SIZEOF_INT,e===V.Encoding.UTF8_BYTES)return this.bytes_.subarray(t,t+r);for(;i<r;){var o,f=this.readUint8(t+i++);if(f<192)o=f;else{var s=this.readUint8(t+i++);if(f<224)o=(f&31)<<6|s&63;else{var l=this.readUint8(t+i++);if(f<240)o=(f&15)<<12|(s&63)<<6|l&63;else{var u=this.readUint8(t+i++);o=(f&7)<<18|(s&63)<<12|(l&63)<<6|u&63}}}o<65536?n+=String.fromCharCode(o):(o-=65536,n+=String.fromCharCode((o>>10)+55296,(o&(1<<10)-1)+56320))}return n};V.ByteBuffer.prototype.__indirect=function(t){return t+this.readInt32(t)};V.ByteBuffer.prototype.__vector=function(t){return t+this.readInt32(t)+V.SIZEOF_INT};V.ByteBuffer.prototype.__vector_len=function(t){return this.readInt32(t+this.readInt32(t))};V.ByteBuffer.prototype.__has_identifier=function(t){if(t.length!=V.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+V.FILE_IDENTIFIER_LENGTH);for(var e=0;e<V.FILE_IDENTIFIER_LENGTH;e++)if(t.charCodeAt(e)!=this.readInt8(this.position_+V.SIZEOF_INT+e))return!1;return!0};V.ByteBuffer.prototype.createLong=function(t,e){return V.Long.create(t,e)};IT.flatbuffers=V});var ST=z(sh=>{"use strict";function fo(t,e,r){return e<=t&&t<=r}function Pp(t){if(t===void 0)return{};if(t===Object(t))return t;throw TypeError("Could not convert argument to dictionary")}function iN(t){for(var e=String(t),r=e.length,n=0,i=[];n<r;){var o=e.charCodeAt(n);if(o<55296||o>57343)i.push(o);else if(56320<=o&&o<=57343)i.push(65533);else if(55296<=o&&o<=56319)if(n===r-1)i.push(65533);else{var f=t.charCodeAt(n+1);if(56320<=f&&f<=57343){var s=o&1023,l=f&1023;i.push(65536+(s<<10)+l),n+=1}else i.push(65533)}n+=1}return i}function oN(t){for(var e="",r=0;r<t.length;++r){var n=t[r];n<=65535?e+=String.fromCharCode(n):(n-=65536,e+=String.fromCharCode((n>>10)+55296,(n&1023)+56320))}return e}var Rp=-1;function oh(t){this.tokens=[].slice.call(t)}oh.prototype={endOfStream:function(){return!this.tokens.length},read:function(){return this.tokens.length?this.tokens.shift():Rp},prepend:function(t){if(Array.isArray(t))for(var e=t;e.length;)this.tokens.unshift(e.pop());else this.tokens.unshift(t)},push:function(t){if(Array.isArray(t))for(var e=t;e.length;)this.tokens.push(e.shift());else this.tokens.push(t)}};var Js=-1;function fh(t,e){if(t)throw TypeError("Decoder error");return e||65533}var Hp="utf-8";function Mp(t,e){if(!(this instanceof Mp))return new Mp(t,e);if(t=t!==void 0?String(t).toLowerCase():Hp,t!==Hp)throw new Error("Encoding not supported. Only utf-8 is supported");e=Pp(e),this._streaming=!1,this._BOMseen=!1,this._decoder=null,this._fatal=Boolean(e.fatal),this._ignoreBOM=Boolean(e.ignoreBOM),Object.defineProperty(this,"encoding",{value:"utf-8"}),Object.defineProperty(this,"fatal",{value:this._fatal}),Object.defineProperty(this,"ignoreBOM",{value:this._ignoreBOM})}Mp.prototype={decode:function(e,r){var n;typeof e=="object"&&e instanceof ArrayBuffer?n=new Uint8Array(e):typeof e=="object"&&"buffer"in e&&e.buffer instanceof ArrayBuffer?n=new Uint8Array(e.buffer,e.byteOffset,e.byteLength):n=new Uint8Array(0),r=Pp(r),this._streaming||(this._decoder=new fN({fatal:this._fatal}),this._BOMseen=!1),this._streaming=Boolean(r.stream);for(var i=new oh(n),o=[],f;!i.endOfStream()&&(f=this._decoder.handler(i,i.read()),f!==Js);)f!==null&&(Array.isArray(f)?o.push.apply(o,f):o.push(f));if(!this._streaming){do{if(f=this._decoder.handler(i,i.read()),f===Js)break;f!==null&&(Array.isArray(f)?o.push.apply(o,f):o.push(f))}while(!i.endOfStream());this._decoder=null}return o.length&&["utf-8"].indexOf(this.encoding)!==-1&&!this._ignoreBOM&&!this._BOMseen&&(o[0]===65279?(this._BOMseen=!0,o.shift()):this._BOMseen=!0),oN(o)}};function zp(t,e){if(!(this instanceof zp))return new zp(t,e);if(t=t!==void 0?String(t).toLowerCase():Hp,t!==Hp)throw new Error("Encoding not supported. Only utf-8 is supported");e=Pp(e),this._streaming=!1,this._encoder=null,this._options={fatal:Boolean(e.fatal)},Object.defineProperty(this,"encoding",{value:"utf-8"})}zp.prototype={encode:function(e,r){e=e?String(e):"",r=Pp(r),this._streaming||(this._encoder=new sN(this._options)),this._streaming=Boolean(r.stream);for(var n=[],i=new oh(iN(e)),o;!i.endOfStream()&&(o=this._encoder.handler(i,i.read()),o!==Js);)Array.isArray(o)?n.push.apply(n,o):n.push(o);if(!this._streaming){for(;o=this._encoder.handler(i,i.read()),o!==Js;)Array.isArray(o)?n.push.apply(n,o):n.push(o);this._encoder=null}return new Uint8Array(n)}};function fN(t){var e=t.fatal,r=0,n=0,i=0,o=128,f=191;this.handler=function(s,l){if(l===Rp&&i!==0)return i=0,fh(e);if(l===Rp)return Js;if(i===0){if(fo(l,0,127))return l;if(fo(l,194,223))i=1,r=l-192;else if(fo(l,224,239))l===224&&(o=160),l===237&&(f=159),i=2,r=l-224;else if(fo(l,240,244))l===240&&(o=144),l===244&&(f=143),i=3,r=l-240;else return fh(e);return r=r<<6*i,null}if(!fo(l,o,f))return r=i=n=0,o=128,f=191,s.prepend(l),fh(e);if(o=128,f=191,n+=1,r+=l-128<<6*(i-n),n!==i)return null;var u=r;return r=i=n=0,u}}function sN(t){var e=t.fatal;this.handler=function(r,n){if(n===Rp)return Js;if(fo(n,0,127))return n;var i,o;fo(n,128,2047)?(i=1,o=192):fo(n,2048,65535)?(i=2,o=224):fo(n,65536,1114111)&&(i=3,o=240);for(var f=[(n>>6*i)+o];i>0;){var s=n>>6*(i-1);f.push(128|s&63),i-=1}return f}}sh.TextEncoder=zp;sh.TextDecoder=Mp});var Gf=z(Zs=>{"use strict";Object.defineProperty(Zs,"__esModule",{value:!0});Zs.encodeUtf8=Zs.decodeUtf8=void 0;var xT=ST(),aN=new(typeof TextDecoder!="undefined"?TextDecoder:xT.TextDecoder)("utf-8");Zs.decodeUtf8=t=>aN.decode(t);var lN=new(typeof TextEncoder!="undefined"?TextEncoder:xT.TextEncoder);Zs.encodeUtf8=t=>lN.encode(t)});var Xs=z(Xr=>{"use strict";Object.defineProperty(Xr,"__esModule",{value:!0});Xr.AsyncQueue=Xr.ReadableInterop=Xr.ArrowJSON=Xr.ITERATOR_DONE=void 0;var AT=_u();Xr.ITERATOR_DONE=Object.freeze({done:!0,value:void 0});var ET=class{constructor(e){this._json=e}get schema(){return this._json.schema}get batches(){return this._json.batches||[]}get dictionaries(){return this._json.dictionaries||[]}};Xr.ArrowJSON=ET;var ah=class{tee(){return this._getDOMStream().tee()}pipe(e,r){return this._getNodeStream().pipe(e,r)}pipeTo(e,r){return this._getDOMStream().pipeTo(e,r)}pipeThrough(e,r){return this._getDOMStream().pipeThrough(e,r)}_getDOMStream(){return this._DOMStream||(this._DOMStream=this.toDOMStream())}_getNodeStream(){return this._nodeStream||(this._nodeStream=this.toNodeStream())}};Xr.ReadableInterop=ah;var OT=class extends ah{constructor(){super();this._values=[],this.resolvers=[],this._closedPromise=new Promise(e=>this._closedPromiseResolve=e)}get closed(){return this._closedPromise}async cancel(e){await this.return(e)}write(e){this._ensureOpen()&&(this.resolvers.length<=0?this._values.push(e):this.resolvers.shift().resolve({done:!1,value:e}))}abort(e){this._closedPromiseResolve&&(this.resolvers.length<=0?this._error={error:e}:this.resolvers.shift().reject({done:!0,value:e}))}close(){if(this._closedPromiseResolve){let{resolvers:e}=this;for(;e.length>0;)e.shift().resolve(Xr.ITERATOR_DONE);this._closedPromiseResolve(),this._closedPromiseResolve=void 0}}[Symbol.asyncIterator](){return this}toDOMStream(e){return AT.default.toDOMStream(this._closedPromiseResolve||this._error?this:this._values,e)}toNodeStream(e){return AT.default.toNodeStream(this._closedPromiseResolve||this._error?this:this._values,e)}async throw(e){return await this.abort(e),Xr.ITERATOR_DONE}async return(e){return await this.close(),Xr.ITERATOR_DONE}async read(e){return(await this.next(e,"read")).value}async peek(e){return(await this.next(e,"peek")).value}next(...e){return this._values.length>0?Promise.resolve({done:!1,value:this._values.shift()}):this._error?Promise.reject({done:!0,value:this._error.error}):this._closedPromiseResolve?new Promise((r,n)=>{this.resolvers.push({resolve:r,reject:n})}):Promise.resolve(Xr.ITERATOR_DONE)}_ensureOpen(){if(this._closedPromiseResolve)return!0;throw new Error(`${this} is closed`)}};Xr.AsyncQueue=OT});var Fr=z(ve=>{"use strict";Object.defineProperty(ve,"__esModule",{value:!0});ve.isReadableNodeStream=ve.isWritableNodeStream=ve.isReadableDOMStream=ve.isWritableDOMStream=ve.isFetchResponse=ve.isFSReadStream=ve.isFileHandle=ve.isUnderlyingSink=ve.isIteratorResult=ve.isArrayLike=ve.isArrowJSON=ve.isAsyncIterable=ve.isIterable=ve.isObservable=ve.isPromise=ve.isObject=ve.BigUint64ArrayAvailable=ve.BigUint64Array=ve.BigInt64ArrayAvailable=ve.BigInt64Array=ve.BigIntAvailable=ve.BigInt=void 0;var Up=Xs(),[uN,cN]=(()=>{let t=()=>{throw new Error("BigInt is not available in this environment")};function e(){throw t()}return e.asIntN=()=>{throw t()},e.asUintN=()=>{throw t()},typeof BigInt!="undefined"?[BigInt,!0]:[e,!1]})();ve.BigInt=uN;ve.BigIntAvailable=cN;var[pN,dN]=(()=>{let t=()=>{throw new Error("BigInt64Array is not available in this environment")};class e{static get BYTES_PER_ELEMENT(){return 8}static of(){throw t()}static from(){throw t()}constructor(){throw t()}}return typeof BigInt64Array!="undefined"?[BigInt64Array,!0]:[e,!1]})();ve.BigInt64Array=pN;ve.BigInt64ArrayAvailable=dN;var[mN,bN]=(()=>{let t=()=>{throw new Error("BigUint64Array is not available in this environment")};class e{static get BYTES_PER_ELEMENT(){return 8}static of(){throw t()}static from(){throw t()}constructor(){throw t()}}return typeof BigUint64Array!="undefined"?[BigUint64Array,!0]:[e,!1]})();ve.BigUint64Array=mN;ve.BigUint64ArrayAvailable=bN;var lh=t=>typeof t=="number",NT=t=>typeof t=="boolean",Sr=t=>typeof t=="function";ve.isObject=t=>t!=null&&Object(t)===t;ve.isPromise=t=>ve.isObject(t)&&Sr(t.then);ve.isObservable=t=>ve.isObject(t)&&Sr(t.subscribe);ve.isIterable=t=>ve.isObject(t)&&Sr(t[Symbol.iterator]);ve.isAsyncIterable=t=>ve.isObject(t)&&Sr(t[Symbol.asyncIterator]);ve.isArrowJSON=t=>ve.isObject(t)&&ve.isObject(t.schema);ve.isArrayLike=t=>ve.isObject(t)&&lh(t.length);ve.isIteratorResult=t=>ve.isObject(t)&&"done"in t&&"value"in t;ve.isUnderlyingSink=t=>ve.isObject(t)&&Sr(t.abort)&&Sr(t.close)&&Sr(t.start)&&Sr(t.write);ve.isFileHandle=t=>ve.isObject(t)&&Sr(t.stat)&&lh(t.fd);ve.isFSReadStream=t=>ve.isReadableNodeStream(t)&&lh(t.bytesRead);ve.isFetchResponse=t=>ve.isObject(t)&&ve.isReadableDOMStream(t.body);ve.isWritableDOMStream=t=>ve.isObject(t)&&Sr(t.abort)&&Sr(t.getWriter)&&!(t instanceof Up.ReadableInterop);ve.isReadableDOMStream=t=>ve.isObject(t)&&Sr(t.cancel)&&Sr(t.getReader)&&!(t instanceof Up.ReadableInterop);ve.isWritableNodeStream=t=>ve.isObject(t)&&Sr(t.end)&&Sr(t.write)&&NT(t.writable)&&!(t instanceof Up.ReadableInterop);ve.isReadableNodeStream=t=>ve.isObject(t)&&Sr(t.read)&&Sr(t.pipe)&&NT(t.readable)&&!(t instanceof Up.ReadableInterop)});var gr=z(ye=>{"use strict";Object.defineProperty(ye,"__esModule",{value:!0});ye.compareArrayLike=ye.rebaseValueOffsets=ye.toUint8ClampedArrayAsyncIterator=ye.toFloat64ArrayAsyncIterator=ye.toFloat32ArrayAsyncIterator=ye.toUint32ArrayAsyncIterator=ye.toUint16ArrayAsyncIterator=ye.toUint8ArrayAsyncIterator=ye.toInt32ArrayAsyncIterator=ye.toInt16ArrayAsyncIterator=ye.toInt8ArrayAsyncIterator=ye.toArrayBufferViewAsyncIterator=ye.toUint8ClampedArrayIterator=ye.toFloat64ArrayIterator=ye.toFloat32ArrayIterator=ye.toUint32ArrayIterator=ye.toUint16ArrayIterator=ye.toUint8ArrayIterator=ye.toInt32ArrayIterator=ye.toInt16ArrayIterator=ye.toInt8ArrayIterator=ye.toArrayBufferViewIterator=ye.toUint8ClampedArray=ye.toFloat64Array=ye.toFloat32Array=ye.toBigUint64Array=ye.toUint32Array=ye.toUint16Array=ye.toUint8Array=ye.toBigInt64Array=ye.toInt32Array=ye.toInt16Array=ye.toInt8Array=ye.toArrayBufferView=ye.joinUint8Arrays=ye.memcpy=void 0;var wN=oo(),hN=Gf(),gN=wN.flatbuffers.ByteBuffer,Jf=Fr(),uh=typeof SharedArrayBuffer!="undefined"?SharedArrayBuffer:ArrayBuffer;function yN(t){let e=t[0]?[t[0]]:[],r,n,i,o;for(let f,s,l=0,u=0,c=t.length;++l<c;){if(f=e[u],s=t[l],!f||!s||f.buffer!==s.buffer||s.byteOffset<f.byteOffset){s&&(e[++u]=s);continue}if({byteOffset:r,byteLength:i}=f,{byteOffset:n,byteLength:o}=s,r+i<n||n+o<r){s&&(e[++u]=s);continue}e[u]=new Uint8Array(f.buffer,r,n-r+o)}return e}function ch(t,e,r=0,n=e.byteLength){let i=t.byteLength,o=new Uint8Array(t.buffer,t.byteOffset,i),f=new Uint8Array(e.buffer,e.byteOffset,Math.min(n,i));return o.set(f,r),t}ye.memcpy=ch;function jN(t,e){let r=yN(t),n=r.reduce((c,_)=>c+_.byteLength,0),i,o,f,s=0,l=-1,u=Math.min(e||1/0,n);for(let c=r.length;++l<c;){if(i=r[l],o=i.subarray(0,Math.min(i.length,u-s)),u<=s+o.length){o.length<i.length?r[l]=i.subarray(o.length):o.length===i.length&&l++,f?ch(f,o,s):f=o;break}ch(f||(f=new Uint8Array(u)),o,s),s+=o.length}return[f||new Uint8Array(0),r.slice(l),n-(f?f.byteLength:0)]}ye.joinUint8Arrays=jN;function Lr(t,e){let r=Jf.isIteratorResult(e)?e.value:e;return r instanceof t?t===Uint8Array?new t(r.buffer,r.byteOffset,r.byteLength):r:r?(typeof r=="string"&&(r=hN.encodeUtf8(r)),r instanceof ArrayBuffer?new t(r):r instanceof uh?new t(r):r instanceof gN?Lr(t,r.bytes()):ArrayBuffer.isView(r)?r.byteLength<=0?new t(0):new t(r.buffer,r.byteOffset,r.byteLength/t.BYTES_PER_ELEMENT):t.from(r)):new t(0)}ye.toArrayBufferView=Lr;ye.toInt8Array=t=>Lr(Int8Array,t);ye.toInt16Array=t=>Lr(Int16Array,t);ye.toInt32Array=t=>Lr(Int32Array,t);ye.toBigInt64Array=t=>Lr(Jf.BigInt64Array,t);ye.toUint8Array=t=>Lr(Uint8Array,t);ye.toUint16Array=t=>Lr(Uint16Array,t);ye.toUint32Array=t=>Lr(Uint32Array,t);ye.toBigUint64Array=t=>Lr(Jf.BigUint64Array,t);ye.toFloat32Array=t=>Lr(Float32Array,t);ye.toFloat64Array=t=>Lr(Float64Array,t);ye.toUint8ClampedArray=t=>Lr(Uint8ClampedArray,t);var ph=t=>(t.next(),t);function*hi(t,e){let r=function*(i){yield i},n=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof uh?r(e):Jf.isIterable(e)?e:r(e);return yield*ph(function*(i){let o=null;do o=i.next(yield Lr(t,o));while(!o.done)}(n[Symbol.iterator]())),new t}ye.toArrayBufferViewIterator=hi;ye.toInt8ArrayIterator=t=>hi(Int8Array,t);ye.toInt16ArrayIterator=t=>hi(Int16Array,t);ye.toInt32ArrayIterator=t=>hi(Int32Array,t);ye.toUint8ArrayIterator=t=>hi(Uint8Array,t);ye.toUint16ArrayIterator=t=>hi(Uint16Array,t);ye.toUint32ArrayIterator=t=>hi(Uint32Array,t);ye.toFloat32ArrayIterator=t=>hi(Float32Array,t);ye.toFloat64ArrayIterator=t=>hi(Float64Array,t);ye.toUint8ClampedArrayIterator=t=>hi(Uint8ClampedArray,t);async function*Gn(t,e){if(Jf.isPromise(e))return yield*Gn(t,await e);let r=async function*(o){yield await o},n=async function*(o){yield*ph(function*(f){let s=null;do s=f.next(yield s&&s.value);while(!s.done)}(o[Symbol.iterator]()))},i=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof uh?r(e):Jf.isIterable(e)?n(e):Jf.isAsyncIterable(e)?e:r(e);return yield*ph(async function*(o){let f=null;do f=await o.next(yield Lr(t,f));while(!f.done)}(i[Symbol.asyncIterator]())),new t}ye.toArrayBufferViewAsyncIterator=Gn;ye.toInt8ArrayAsyncIterator=t=>Gn(Int8Array,t);ye.toInt16ArrayAsyncIterator=t=>Gn(Int16Array,t);ye.toInt32ArrayAsyncIterator=t=>Gn(Int32Array,t);ye.toUint8ArrayAsyncIterator=t=>Gn(Uint8Array,t);ye.toUint16ArrayAsyncIterator=t=>Gn(Uint16Array,t);ye.toUint32ArrayAsyncIterator=t=>Gn(Uint32Array,t);ye.toFloat32ArrayAsyncIterator=t=>Gn(Float32Array,t);ye.toFloat64ArrayAsyncIterator=t=>Gn(Float64Array,t);ye.toUint8ClampedArrayAsyncIterator=t=>Gn(Uint8ClampedArray,t);function _N(t,e,r){if(t!==0){r=r.slice(0,e+1);for(let n=-1;++n<=e;)r[n]+=t}return r}ye.rebaseValueOffsets=_N;function qN(t,e){let r=0,n=t.length;if(n!==e.length)return!1;if(n>0)do if(t[r]!==e[r])return!1;while(++r<n);return!0}ye.compareArrayLike=qN});var _u=z(mh=>{"use strict";Object.defineProperty(mh,"__esModule",{value:!0});var Vr=gr();mh.default={fromIterable(t){return Lp(vN(t))},fromAsyncIterable(t){return Lp(TN(t))},fromDOMStream(t){return Lp(BN(t))},fromNodeStream(t){return Lp(kN(t))},toDOMStream(t,e){throw new Error('"toDOMStream" not available in this environment')},toNodeStream(t,e){throw new Error('"toNodeStream" not available in this environment')}};var Lp=t=>(t.next(),t);function*vN(t){let e,r=!1,n=[],i,o,f,s=0;function l(){return o==="peek"?Vr.joinUint8Arrays(n,f)[0]:([i,n,s]=Vr.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let u=Vr.toUint8ArrayIterator(t)[Symbol.iterator]();try{do if({done:e,value:i}=isNaN(f-s)?u.next(void 0):u.next(f-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield l());while(f<s);while(!e)}catch(c){(r=!0)&&typeof u.throw=="function"&&u.throw(c)}finally{r===!1&&typeof u.return=="function"&&u.return(null)}return null}async function*TN(t){let e,r=!1,n=[],i,o,f,s=0;function l(){return o==="peek"?Vr.joinUint8Arrays(n,f)[0]:([i,n,s]=Vr.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let u=Vr.toUint8ArrayAsyncIterator(t)[Symbol.asyncIterator]();try{do if({done:e,value:i}=isNaN(f-s)?await u.next(void 0):await u.next(f-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield l());while(f<s);while(!e)}catch(c){(r=!0)&&typeof u.throw=="function"&&await u.throw(c)}finally{r===!1&&typeof u.return=="function"&&await u.return(new Uint8Array(0))}return null}async function*BN(t){let e=!1,r=!1,n=[],i,o,f,s=0;function l(){return o==="peek"?Vr.joinUint8Arrays(n,f)[0]:([i,n,s]=Vr.joinUint8Arrays(n,f),i)}({cmd:o,size:f}=yield null);let u=new DT(t);try{do if({done:e,value:i}=isNaN(f-s)?await u.read(void 0):await u.read(f-s),!e&&i.byteLength>0&&(n.push(Vr.toUint8Array(i)),s+=i.byteLength),e||f<=s)do({cmd:o,size:f}=yield l());while(f<s);while(!e)}catch(c){(r=!0)&&await u.cancel(c)}finally{r===!1?await u.cancel():t.locked&&u.releaseLock()}return null}var DT=class{constructor(e){this.source=e,this.byobReader=null,this.defaultReader=null;try{this.supportsBYOB=!!(this.reader=this.getBYOBReader())}catch{this.supportsBYOB=!(this.reader=this.getDefaultReader())}}get closed(){return this.reader?this.reader.closed.catch(()=>{}):Promise.resolve()}releaseLock(){this.reader&&this.reader.releaseLock(),this.reader=this.byobReader=this.defaultReader=null}async cancel(e){let{reader:r,source:n}=this;r&&await r.cancel(e).catch(()=>{}),n&&n.locked&&this.releaseLock()}async read(e){if(e===0)return{done:this.reader==null,value:new Uint8Array(0)};let r=!this.supportsBYOB||typeof e!="number"?await this.getDefaultReader().read():await this.readFromBYOBReader(e);return!r.done&&(r.value=Vr.toUint8Array(r)),r}getDefaultReader(){return this.byobReader&&this.releaseLock(),this.defaultReader||(this.defaultReader=this.source.getReader(),this.defaultReader.closed.catch(()=>{})),this.reader=this.defaultReader}getBYOBReader(){return this.defaultReader&&this.releaseLock(),this.byobReader||(this.byobReader=this.source.getReader({mode:"byob"}),this.byobReader.closed.catch(()=>{})),this.reader=this.byobReader}async readFromBYOBReader(e){return await FT(this.getBYOBReader(),new ArrayBuffer(e),0,e)}};async function FT(t,e,r,n){if(r>=n)return{done:!1,value:new Uint8Array(e,0,n)};let{done:i,value:o}=await t.read(new Uint8Array(e,r,n-r));return(r+=o.byteLength)<n&&!i?await FT(t,o.buffer,r,n):{done:i,value:new Uint8Array(o.buffer,0,r)}}var dh=(t,e)=>{let r=i=>n([e,i]),n;return[e,r,new Promise(i=>(n=i)&&t.once(e,r))]};async function*kN(t){let e=[],r="error",n=!1,i=null,o,f,s=0,l=[],u;function c(){return o==="peek"?Vr.joinUint8Arrays(l,f)[0]:([u,l,s]=Vr.joinUint8Arrays(l,f),u)}if({cmd:o,size:f}=yield null,t.isTTY)return yield new Uint8Array(0),null;try{e[0]=dh(t,"end"),e[1]=dh(t,"error");do{if(e[2]=dh(t,"readable"),[r,i]=await Promise.race(e.map(p=>p[2])),r==="error")break;if((n=r==="end")||(isFinite(f-s)?(u=Vr.toUint8Array(t.read(f-s)),u.byteLength<f-s&&(u=Vr.toUint8Array(t.read(void 0)))):u=Vr.toUint8Array(t.read(void 0)),u.byteLength>0&&(l.push(u),s+=u.byteLength)),n||f<=s)do({cmd:o,size:f}=yield c());while(f<s)}while(!n)}finally{await _(e,r==="error"?i:null)}return null;function _(p,j){return u=l=null,new Promise((S,T)=>{for(let[U,W]of p)t.off(U,W);try{let U=t.destroy;U&&U.call(t,j),j=void 0}catch(U){j=U||j}finally{j!=null?T(j):S()}})}}});var or=z(Qs=>{"use strict";Object.defineProperty(Qs,"__esModule",{value:!0});Qs.Vector=Qs.AbstractVector=void 0;var Vp=class{};Qs.AbstractVector=Vp;Qs.Vector=Vp;Vp.prototype.data=null});var Zo=z(be=>{"use strict";Object.defineProperty(be,"__esModule",{value:!0});be.Schema=be.Buffer=be.Field=be.DictionaryEncoding=be.KeyValue=be.Duration=be.Interval=be.Timestamp=be.Time=be.Date=be.Decimal=be.Bool=be.FixedSizeBinary=be.LargeBinary=be.LargeUtf8=be.Binary=be.Utf8=be.FloatingPoint=be.Int=be.Union=be.Map=be.FixedSizeList=be.LargeList=be.List=be.Struct_=be.Null=be.Endianness=be.DictionaryKind=be.Type=be.IntervalUnit=be.TimeUnit=be.DateUnit=be.Precision=be.UnionMode=be.Feature=be.MetadataVersion=void 0;var Ut=oo(),IN;(function(t){t[t.V1=0]="V1",t[t.V2=1]="V2",t[t.V3=2]="V3",t[t.V4=3]="V4",t[t.V5=4]="V5"})(IN=be.MetadataVersion||(be.MetadataVersion={}));var SN;(function(t){t[t.UNUSED=0]="UNUSED",t[t.DICTIONARY_REPLACEMENT=1]="DICTIONARY_REPLACEMENT",t[t.COMPRESSED_BODY=2]="COMPRESSED_BODY"})(SN=be.Feature||(be.Feature={}));var bh;(function(t){t[t.Sparse=0]="Sparse",t[t.Dense=1]="Dense"})(bh=be.UnionMode||(be.UnionMode={}));var wh;(function(t){t[t.HALF=0]="HALF",t[t.SINGLE=1]="SINGLE",t[t.DOUBLE=2]="DOUBLE"})(wh=be.Precision||(be.Precision={}));var hh;(function(t){t[t.DAY=0]="DAY",t[t.MILLISECOND=1]="MILLISECOND"})(hh=be.DateUnit||(be.DateUnit={}));var Zf;(function(t){t[t.SECOND=0]="SECOND",t[t.MILLISECOND=1]="MILLISECOND",t[t.MICROSECOND=2]="MICROSECOND",t[t.NANOSECOND=3]="NANOSECOND"})(Zf=be.TimeUnit||(be.TimeUnit={}));var gh;(function(t){t[t.YEAR_MONTH=0]="YEAR_MONTH",t[t.DAY_TIME=1]="DAY_TIME"})(gh=be.IntervalUnit||(be.IntervalUnit={}));var yh;(function(t){t[t.NONE=0]="NONE",t[t.Null=1]="Null",t[t.Int=2]="Int",t[t.FloatingPoint=3]="FloatingPoint",t[t.Binary=4]="Binary",t[t.Utf8=5]="Utf8",t[t.Bool=6]="Bool",t[t.Decimal=7]="Decimal",t[t.Date=8]="Date",t[t.Time=9]="Time",t[t.Timestamp=10]="Timestamp",t[t.Interval=11]="Interval",t[t.List=12]="List",t[t.Struct_=13]="Struct_",t[t.Union=14]="Union",t[t.FixedSizeBinary=15]="FixedSizeBinary",t[t.FixedSizeList=16]="FixedSizeList",t[t.Map=17]="Map",t[t.Duration=18]="Duration",t[t.LargeBinary=19]="LargeBinary",t[t.LargeUtf8=20]="LargeUtf8",t[t.LargeList=21]="LargeList"})(yh=be.Type||(be.Type={}));var jh;(function(t){t[t.DenseArray=0]="DenseArray"})(jh=be.DictionaryKind||(be.DictionaryKind={}));var _h;(function(t){t[t.Little=0]="Little",t[t.Big=1]="Big"})(_h=be.Endianness||(be.Endianness={}));var Xf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsNull(e,r){return(r||new Xf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsNull(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Xf).__init(e.readInt32(e.position())+e.position(),e)}static startNull(e){e.startObject(0)}static endNull(e){return e.endObject()}static createNull(e){return Xf.startNull(e),Xf.endNull(e)}};be.Null=Xf;var Qf=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsStruct_(e,r){return(r||new Qf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsStruct_(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Qf).__init(e.readInt32(e.position())+e.position(),e)}static startStruct_(e){e.startObject(0)}static endStruct_(e){return e.endObject()}static createStruct_(e){return Qf.startStruct_(e),Qf.endStruct_(e)}};be.Struct_=Qf;var $f=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsList(e,r){return(r||new $f).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsList(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new $f).__init(e.readInt32(e.position())+e.position(),e)}static startList(e){e.startObject(0)}static endList(e){return e.endObject()}static createList(e){return $f.startList(e),$f.endList(e)}};be.List=$f;var es=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeList(e,r){return(r||new es).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeList(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new es).__init(e.readInt32(e.position())+e.position(),e)}static startLargeList(e){e.startObject(0)}static endLargeList(e){return e.endObject()}static createLargeList(e){return es.startLargeList(e),es.endLargeList(e)}};be.LargeList=es;var Vo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFixedSizeList(e,r){return(r||new Vo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeList(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Vo).__init(e.readInt32(e.position())+e.position(),e)}listSize(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}static startFixedSizeList(e){e.startObject(1)}static addListSize(e,r){e.addFieldInt32(0,r,0)}static endFixedSizeList(e){return e.endObject()}static createFixedSizeList(e,r){return Vo.startFixedSizeList(e),Vo.addListSize(e,r),Vo.endFixedSizeList(e)}};be.FixedSizeList=Vo;var Co=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsMap(e,r){return(r||new Co).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMap(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Co).__init(e.readInt32(e.position())+e.position(),e)}keysSorted(){let e=this.bb.__offset(this.bb_pos,4);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startMap(e){e.startObject(1)}static addKeysSorted(e,r){e.addFieldInt8(0,+r,0)}static endMap(e){return e.endObject()}static createMap(e,r){return Co.startMap(e),Co.addKeysSorted(e,r),Co.endMap(e)}};be.Map=Co;var so=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsUnion(e,r){return(r||new so).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUnion(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new so).__init(e.readInt32(e.position())+e.position(),e)}mode(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):bh.Sparse}typeIds(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.readInt32(this.bb.__vector(this.bb_pos+r)+e*4):0}typeIdsLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}typeIdsArray(){let e=this.bb.__offset(this.bb_pos,6);return e?new Int32Array(this.bb.bytes().buffer,this.bb.bytes().byteOffset+this.bb.__vector(this.bb_pos+e),this.bb.__vector_len(this.bb_pos+e)):null}static startUnion(e){e.startObject(2)}static addMode(e,r){e.addFieldInt16(0,r,bh.Sparse)}static addTypeIds(e,r){e.addFieldOffset(1,r,0)}static createTypeIdsVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addInt32(r[n]);return e.endVector()}static startTypeIdsVector(e,r){e.startVector(4,r,4)}static endUnion(e){return e.endObject()}static createUnion(e,r,n){return so.startUnion(e),so.addMode(e,r),so.addTypeIds(e,n),so.endUnion(e)}};be.Union=so;var gi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsInt(e,r){return(r||new gi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInt(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new gi).__init(e.readInt32(e.position())+e.position(),e)}bitWidth(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}isSigned(){let e=this.bb.__offset(this.bb_pos,6);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startInt(e){e.startObject(2)}static addBitWidth(e,r){e.addFieldInt32(0,r,0)}static addIsSigned(e,r){e.addFieldInt8(1,+r,0)}static endInt(e){return e.endObject()}static createInt(e,r,n){return gi.startInt(e),gi.addBitWidth(e,r),gi.addIsSigned(e,n),gi.endInt(e)}};be.Int=gi;var Wo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFloatingPoint(e,r){return(r||new Wo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFloatingPoint(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Wo).__init(e.readInt32(e.position())+e.position(),e)}precision(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):wh.HALF}static startFloatingPoint(e){e.startObject(1)}static addPrecision(e,r){e.addFieldInt16(0,r,wh.HALF)}static endFloatingPoint(e){return e.endObject()}static createFloatingPoint(e,r){return Wo.startFloatingPoint(e),Wo.addPrecision(e,r),Wo.endFloatingPoint(e)}};be.FloatingPoint=Wo;var ts=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsUtf8(e,r){return(r||new ts).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUtf8(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ts).__init(e.readInt32(e.position())+e.position(),e)}static startUtf8(e){e.startObject(0)}static endUtf8(e){return e.endObject()}static createUtf8(e){return ts.startUtf8(e),ts.endUtf8(e)}};be.Utf8=ts;var rs=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBinary(e,r){return(r||new rs).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBinary(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new rs).__init(e.readInt32(e.position())+e.position(),e)}static startBinary(e){e.startObject(0)}static endBinary(e){return e.endObject()}static createBinary(e){return rs.startBinary(e),rs.endBinary(e)}};be.Binary=rs;var ns=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeUtf8(e,r){return(r||new ns).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeUtf8(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ns).__init(e.readInt32(e.position())+e.position(),e)}static startLargeUtf8(e){e.startObject(0)}static endLargeUtf8(e){return e.endObject()}static createLargeUtf8(e){return ns.startLargeUtf8(e),ns.endLargeUtf8(e)}};be.LargeUtf8=ns;var is=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsLargeBinary(e,r){return(r||new is).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeBinary(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new is).__init(e.readInt32(e.position())+e.position(),e)}static startLargeBinary(e){e.startObject(0)}static endLargeBinary(e){return e.endObject()}static createLargeBinary(e){return is.startLargeBinary(e),is.endLargeBinary(e)}};be.LargeBinary=is;var Yo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFixedSizeBinary(e,r){return(r||new Yo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeBinary(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Yo).__init(e.readInt32(e.position())+e.position(),e)}byteWidth(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}static startFixedSizeBinary(e){e.startObject(1)}static addByteWidth(e,r){e.addFieldInt32(0,r,0)}static endFixedSizeBinary(e){return e.endObject()}static createFixedSizeBinary(e,r){return Yo.startFixedSizeBinary(e),Yo.addByteWidth(e,r),Yo.endFixedSizeBinary(e)}};be.FixedSizeBinary=Yo;var os=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBool(e,r){return(r||new os).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBool(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new os).__init(e.readInt32(e.position())+e.position(),e)}static startBool(e){e.startObject(0)}static endBool(e){return e.endObject()}static createBool(e){return os.startBool(e),os.endBool(e)}};be.Bool=os;var yi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDecimal(e,r){return(r||new yi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDecimal(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new yi).__init(e.readInt32(e.position())+e.position(),e)}precision(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}scale(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt32(this.bb_pos+e):0}bitWidth(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.readInt32(this.bb_pos+e):128}static startDecimal(e){e.startObject(3)}static addPrecision(e,r){e.addFieldInt32(0,r,0)}static addScale(e,r){e.addFieldInt32(1,r,0)}static addBitWidth(e,r){e.addFieldInt32(2,r,128)}static endDecimal(e){return e.endObject()}static createDecimal(e,r,n,i){return yi.startDecimal(e),yi.addPrecision(e,r),yi.addScale(e,n),yi.addBitWidth(e,i),yi.endDecimal(e)}};be.Decimal=yi;var Ko=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDate(e,r){return(r||new Ko).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDate(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ko).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):hh.MILLISECOND}static startDate(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,hh.MILLISECOND)}static endDate(e){return e.endObject()}static createDate(e,r){return Ko.startDate(e),Ko.addUnit(e,r),Ko.endDate(e)}};be.Date=Ko;var ao=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsTime(e,r){return(r||new ao).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTime(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ao).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Zf.MILLISECOND}bitWidth(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt32(this.bb_pos+e):32}static startTime(e){e.startObject(2)}static addUnit(e,r){e.addFieldInt16(0,r,Zf.MILLISECOND)}static addBitWidth(e,r){e.addFieldInt32(1,r,32)}static endTime(e){return e.endObject()}static createTime(e,r,n){return ao.startTime(e),ao.addUnit(e,r),ao.addBitWidth(e,n),ao.endTime(e)}};be.Time=ao;var lo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsTimestamp(e,r){return(r||new lo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTimestamp(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new lo).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Zf.SECOND}timezone(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.__string(this.bb_pos+r,e):null}static startTimestamp(e){e.startObject(2)}static addUnit(e,r){e.addFieldInt16(0,r,Zf.SECOND)}static addTimezone(e,r){e.addFieldOffset(1,r,0)}static endTimestamp(e){return e.endObject()}static createTimestamp(e,r,n){return lo.startTimestamp(e),lo.addUnit(e,r),lo.addTimezone(e,n),lo.endTimestamp(e)}};be.Timestamp=lo;var Go=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsInterval(e,r){return(r||new Go).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInterval(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Go).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):gh.YEAR_MONTH}static startInterval(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,gh.YEAR_MONTH)}static endInterval(e){return e.endObject()}static createInterval(e,r){return Go.startInterval(e),Go.addUnit(e,r),Go.endInterval(e)}};be.Interval=Go;var Jo=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDuration(e,r){return(r||new Jo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDuration(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Jo).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Zf.MILLISECOND}static startDuration(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,Zf.MILLISECOND)}static endDuration(e){return e.endObject()}static createDuration(e,r){return Jo.startDuration(e),Jo.addUnit(e,r),Jo.endDuration(e)}};be.Duration=Jo;var Jn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsKeyValue(e,r){return(r||new Jn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsKeyValue(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Jn).__init(e.readInt32(e.position())+e.position(),e)}key(e){let r=this.bb.__offset(this.bb_pos,4);return r?this.bb.__string(this.bb_pos+r,e):null}value(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.__string(this.bb_pos+r,e):null}static startKeyValue(e){e.startObject(2)}static addKey(e,r){e.addFieldOffset(0,r,0)}static addValue(e,r){e.addFieldOffset(1,r,0)}static endKeyValue(e){return e.endObject()}static createKeyValue(e,r,n){return Jn.startKeyValue(e),Jn.addKey(e,r),Jn.addValue(e,n),Jn.endKeyValue(e)}};be.KeyValue=Jn;var vn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDictionaryEncoding(e,r){return(r||new vn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryEncoding(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new vn).__init(e.readInt32(e.position())+e.position(),e)}id(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}indexType(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new gi).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}isOrdered(){let e=this.bb.__offset(this.bb_pos,8);return e?!!this.bb.readInt8(this.bb_pos+e):!1}dictionaryKind(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.readInt16(this.bb_pos+e):jh.DenseArray}static startDictionaryEncoding(e){e.startObject(4)}static addId(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addIndexType(e,r){e.addFieldOffset(1,r,0)}static addIsOrdered(e,r){e.addFieldInt8(2,+r,0)}static addDictionaryKind(e,r){e.addFieldInt16(3,r,jh.DenseArray)}static endDictionaryEncoding(e){return e.endObject()}static createDictionaryEncoding(e,r,n,i,o){return vn.startDictionaryEncoding(e),vn.addId(e,r),vn.addIndexType(e,n),vn.addIsOrdered(e,i),vn.addDictionaryKind(e,o),vn.endDictionaryEncoding(e)}};be.DictionaryEncoding=vn;var Pr=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsField(e,r){return(r||new Pr).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsField(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Pr).__init(e.readInt32(e.position())+e.position(),e)}name(e){let r=this.bb.__offset(this.bb_pos,4);return r?this.bb.__string(this.bb_pos+r,e):null}nullable(){let e=this.bb.__offset(this.bb_pos,6);return e?!!this.bb.readInt8(this.bb_pos+e):!1}typeType(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.readUint8(this.bb_pos+e):yh.NONE}type(e){let r=this.bb.__offset(this.bb_pos,10);return r?this.bb.__union(e,this.bb_pos+r):null}dictionary(e){let r=this.bb.__offset(this.bb_pos,12);return r?(e||new vn).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}children(e,r){let n=this.bb.__offset(this.bb_pos,14);return n?(r||new Pr).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}childrenLength(){let e=this.bb.__offset(this.bb_pos,14);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,16);return n?(r||new Jn).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,16);return e?this.bb.__vector_len(this.bb_pos+e):0}static startField(e){e.startObject(7)}static addName(e,r){e.addFieldOffset(0,r,0)}static addNullable(e,r){e.addFieldInt8(1,+r,0)}static addTypeType(e,r){e.addFieldInt8(2,r,yh.NONE)}static addType(e,r){e.addFieldOffset(3,r,0)}static addDictionary(e,r){e.addFieldOffset(4,r,0)}static addChildren(e,r){e.addFieldOffset(5,r,0)}static createChildrenVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startChildrenVector(e,r){e.startVector(4,r,4)}static addCustomMetadata(e,r){e.addFieldOffset(6,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endField(e){return e.endObject()}static createField(e,r,n,i,o,f,s,l){return Pr.startField(e),Pr.addName(e,r),Pr.addNullable(e,n),Pr.addTypeType(e,i),Pr.addType(e,o),Pr.addDictionary(e,f),Pr.addChildren(e,s),Pr.addCustomMetadata(e,l),Pr.endField(e)}};be.Field=Pr;var PT=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}offset(){return this.bb.readInt64(this.bb_pos)}length(){return this.bb.readInt64(this.bb_pos+8)}static createBuffer(e,r,n){return e.prep(8,16),e.writeInt64(n),e.writeInt64(r),e.offset()}};be.Buffer=PT;var Zn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsSchema(e,r){return(r||new Zn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsSchema(e,r){return e.setPosition(e.position()+Ut.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Zn).__init(e.readInt32(e.position())+e.position(),e)}endianness(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):_h.Little}fields(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new Pr).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}fieldsLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new Jn).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}features(e){let r=this.bb.__offset(this.bb_pos,10);return r?this.bb.readInt64(this.bb.__vector(this.bb_pos+r)+e*8):this.bb.createLong(0,0)}featuresLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.__vector_len(this.bb_pos+e):0}static startSchema(e){e.startObject(4)}static addEndianness(e,r){e.addFieldInt16(0,r,_h.Little)}static addFields(e,r){e.addFieldOffset(1,r,0)}static createFieldsVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startFieldsVector(e,r){e.startVector(4,r,4)}static addCustomMetadata(e,r){e.addFieldOffset(2,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static addFeatures(e,r){e.addFieldOffset(3,r,0)}static createFeaturesVector(e,r){e.startVector(8,r.length,8);for(let n=r.length-1;n>=0;n--)e.addInt64(r[n]);return e.endVector()}static startFeaturesVector(e,r){e.startVector(8,r,8)}static endSchema(e){return e.endObject()}static finishSchemaBuffer(e,r){e.finish(r)}static finishSizePrefixedSchemaBuffer(e,r){e.finish(r,void 0,!0)}static createSchema(e,r,n,i,o){return Zn.startSchema(e),Zn.addEndianness(e,r),Zn.addFields(e,n),Zn.addCustomMetadata(e,i),Zn.addFeatures(e,o),Zn.endSchema(e)}};be.Schema=Zn});var Yp=z(fr=>{"use strict";Object.defineProperty(fr,"__esModule",{value:!0});fr.Message=fr.DictionaryBatch=fr.RecordBatch=fr.BodyCompression=fr.FieldNode=fr.MessageHeader=fr.BodyCompressionMethod=fr.CompressionType=void 0;var Cp=oo(),Wp=Zo(),qh;(function(t){t[t.LZ4_FRAME=0]="LZ4_FRAME",t[t.ZSTD=1]="ZSTD"})(qh=fr.CompressionType||(fr.CompressionType={}));var vh;(function(t){t[t.BUFFER=0]="BUFFER"})(vh=fr.BodyCompressionMethod||(fr.BodyCompressionMethod={}));var Th;(function(t){t[t.NONE=0]="NONE",t[t.Schema=1]="Schema",t[t.DictionaryBatch=2]="DictionaryBatch",t[t.RecordBatch=3]="RecordBatch",t[t.Tensor=4]="Tensor",t[t.SparseTensor=5]="SparseTensor"})(Th=fr.MessageHeader||(fr.MessageHeader={}));var Bh=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}length(){return this.bb.readInt64(this.bb_pos)}nullCount(){return this.bb.readInt64(this.bb_pos+8)}static createFieldNode(e,r,n){return e.prep(8,16),e.writeInt64(n),e.writeInt64(r),e.offset()}};fr.FieldNode=Bh;var ji=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBodyCompression(e,r){return(r||new ji).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBodyCompression(e,r){return e.setPosition(e.position()+Cp.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ji).__init(e.readInt32(e.position())+e.position(),e)}codec(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt8(this.bb_pos+e):qh.LZ4_FRAME}method(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt8(this.bb_pos+e):vh.BUFFER}static startBodyCompression(e){e.startObject(2)}static addCodec(e,r){e.addFieldInt8(0,r,qh.LZ4_FRAME)}static addMethod(e,r){e.addFieldInt8(1,r,vh.BUFFER)}static endBodyCompression(e){return e.endObject()}static createBodyCompression(e,r,n){return ji.startBodyCompression(e),ji.addCodec(e,r),ji.addMethod(e,n),ji.endBodyCompression(e)}};fr.BodyCompression=ji;var Tn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsRecordBatch(e,r){return(r||new Tn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsRecordBatch(e,r){return e.setPosition(e.position()+Cp.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Tn).__init(e.readInt32(e.position())+e.position(),e)}length(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}nodes(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new Bh).__init(this.bb.__vector(this.bb_pos+n)+e*16,this.bb):null}nodesLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}buffers(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new Wp.Buffer).__init(this.bb.__vector(this.bb_pos+n)+e*16,this.bb):null}buffersLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}compression(e){let r=this.bb.__offset(this.bb_pos,10);return r?(e||new ji).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}static startRecordBatch(e){e.startObject(4)}static addLength(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addNodes(e,r){e.addFieldOffset(1,r,0)}static startNodesVector(e,r){e.startVector(16,r,8)}static addBuffers(e,r){e.addFieldOffset(2,r,0)}static startBuffersVector(e,r){e.startVector(16,r,8)}static addCompression(e,r){e.addFieldOffset(3,r,0)}static endRecordBatch(e){return e.endObject()}static createRecordBatch(e,r,n,i,o){return Tn.startRecordBatch(e),Tn.addLength(e,r),Tn.addNodes(e,n),Tn.addBuffers(e,i),Tn.addCompression(e,o),Tn.endRecordBatch(e)}};fr.RecordBatch=Tn;var _i=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDictionaryBatch(e,r){return(r||new _i).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryBatch(e,r){return e.setPosition(e.position()+Cp.flatbuffers.SIZE_PREFIX_LENGTH),(r||new _i).__init(e.readInt32(e.position())+e.position(),e)}id(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}data(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new Tn).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}isDelta(){let e=this.bb.__offset(this.bb_pos,8);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startDictionaryBatch(e){e.startObject(3)}static addId(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addData(e,r){e.addFieldOffset(1,r,0)}static addIsDelta(e,r){e.addFieldInt8(2,+r,0)}static endDictionaryBatch(e){return e.endObject()}static createDictionaryBatch(e,r,n,i){return _i.startDictionaryBatch(e),_i.addId(e,r),_i.addData(e,n),_i.addIsDelta(e,i),_i.endDictionaryBatch(e)}};fr.DictionaryBatch=_i;var Bn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsMessage(e,r){return(r||new Bn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMessage(e,r){return e.setPosition(e.position()+Cp.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Bn).__init(e.readInt32(e.position())+e.position(),e)}version(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Wp.MetadataVersion.V1}headerType(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readUint8(this.bb_pos+e):Th.NONE}header(e){let r=this.bb.__offset(this.bb_pos,8);return r?this.bb.__union(e,this.bb_pos+r):null}bodyLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,12);return n?(r||new Wp.KeyValue).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,12);return e?this.bb.__vector_len(this.bb_pos+e):0}static startMessage(e){e.startObject(5)}static addVersion(e,r){e.addFieldInt16(0,r,Wp.MetadataVersion.V1)}static addHeaderType(e,r){e.addFieldInt8(1,r,Th.NONE)}static addHeader(e,r){e.addFieldOffset(2,r,0)}static addBodyLength(e,r){e.addFieldInt64(3,r,e.createLong(0,0))}static addCustomMetadata(e,r){e.addFieldOffset(4,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endMessage(e){return e.endObject()}static finishMessageBuffer(e,r){e.finish(r)}static finishSizePrefixedMessageBuffer(e,r){e.finish(r,void 0,!0)}static createMessage(e,r,n,i,o,f){return Bn.startMessage(e),Bn.addVersion(e,r),Bn.addHeaderType(e,n),Bn.addHeader(e,i),Bn.addBodyLength(e,o),Bn.addCustomMetadata(e,f),Bn.endMessage(e)}};fr.Message=Bn});var Rt=z(Jt=>{"use strict";Object.defineProperty(Jt,"__esModule",{value:!0});Jt.BufferType=Jt.Type=Jt.MessageHeader=Jt.MetadataVersion=Jt.IntervalUnit=Jt.UnionMode=Jt.Precision=Jt.TimeUnit=Jt.DateUnit=void 0;var $s=Zo();Object.defineProperty(Jt,"DateUnit",{enumerable:!0,get:function(){return $s.DateUnit}});Object.defineProperty(Jt,"TimeUnit",{enumerable:!0,get:function(){return $s.TimeUnit}});Object.defineProperty(Jt,"Precision",{enumerable:!0,get:function(){return $s.Precision}});Object.defineProperty(Jt,"UnionMode",{enumerable:!0,get:function(){return $s.UnionMode}});Object.defineProperty(Jt,"IntervalUnit",{enumerable:!0,get:function(){return $s.IntervalUnit}});Object.defineProperty(Jt,"MetadataVersion",{enumerable:!0,get:function(){return $s.MetadataVersion}});var xN=Yp();Object.defineProperty(Jt,"MessageHeader",{enumerable:!0,get:function(){return xN.MessageHeader}});var AN;(function(t){t[t.NONE=0]="NONE",t[t.Null=1]="Null",t[t.Int=2]="Int",t[t.Float=3]="Float",t[t.Binary=4]="Binary",t[t.Utf8=5]="Utf8",t[t.Bool=6]="Bool",t[t.Decimal=7]="Decimal",t[t.Date=8]="Date",t[t.Time=9]="Time",t[t.Timestamp=10]="Timestamp",t[t.Interval=11]="Interval",t[t.List=12]="List",t[t.Struct=13]="Struct",t[t.Union=14]="Union",t[t.FixedSizeBinary=15]="FixedSizeBinary",t[t.FixedSizeList=16]="FixedSizeList",t[t.Map=17]="Map",t[t.Dictionary=-1]="Dictionary",t[t.Int8=-2]="Int8",t[t.Int16=-3]="Int16",t[t.Int32=-4]="Int32",t[t.Int64=-5]="Int64",t[t.Uint8=-6]="Uint8",t[t.Uint16=-7]="Uint16",t[t.Uint32=-8]="Uint32",t[t.Uint64=-9]="Uint64",t[t.Float16=-10]="Float16",t[t.Float32=-11]="Float32",t[t.Float64=-12]="Float64",t[t.DateDay=-13]="DateDay",t[t.DateMillisecond=-14]="DateMillisecond",t[t.TimestampSecond=-15]="TimestampSecond",t[t.TimestampMillisecond=-16]="TimestampMillisecond",t[t.TimestampMicrosecond=-17]="TimestampMicrosecond",t[t.TimestampNanosecond=-18]="TimestampNanosecond",t[t.TimeSecond=-19]="TimeSecond",t[t.TimeMillisecond=-20]="TimeMillisecond",t[t.TimeMicrosecond=-21]="TimeMicrosecond",t[t.TimeNanosecond=-22]="TimeNanosecond",t[t.DenseUnion=-23]="DenseUnion",t[t.SparseUnion=-24]="SparseUnion",t[t.IntervalDayTime=-25]="IntervalDayTime",t[t.IntervalYearMonth=-26]="IntervalYearMonth"})(AN=Jt.Type||(Jt.Type={}));var EN;(function(t){t[t.OFFSET=0]="OFFSET",t[t.DATA=1]="DATA",t[t.VALIDITY=2]="VALIDITY",t[t.TYPE=3]="TYPE"})(EN=Jt.BufferType||(Jt.BufferType={}))});var qi=z(cr=>{"use strict";Object.defineProperty(cr,"__esModule",{value:!0});cr.popcnt_uint32=cr.popcnt_array=cr.popcnt_bit_range=cr.BitIterator=cr.packBools=cr.truncateBitmap=cr.setBool=cr.getBit=cr.getBool=void 0;function RT(t,e,r,n){return(r&1<<n)!=0}cr.getBool=RT;function HT(t,e,r,n){return(r&1<<n)>>n}cr.getBit=HT;function ON(t,e,r){return r?!!(t[e>>3]|=1<<e%8)||!0:!(t[e>>3]&=~(1<<e%8))&&!1}cr.setBool=ON;function NN(t,e,r){let n=r.byteLength+7&~7;if(t>0||r.byteLength<n){let i=new Uint8Array(n);return i.set(t%8==0?r.subarray(t>>3):MT(new Kp(r,t,e,null,RT)).subarray(0,n)),i}return r}cr.truncateBitmap=NN;function MT(t){let e=[],r=0,n=0,i=0;for(let f of t)f&&(i|=1<<n),++n==8&&(e[r++]=i,i=n=0);(r===0||n>0)&&(e[r++]=i);let o=new Uint8Array(e.length+7&~7);return o.set(e),o}cr.packBools=MT;var Kp=class{constructor(e,r,n,i,o){this.bytes=e,this.length=n,this.context=i,this.get=o,this.bit=r%8,this.byteIndex=r>>3,this.byte=e[this.byteIndex++],this.index=0}next(){return this.index<this.length?(this.bit===8&&(this.bit=0,this.byte=this.bytes[this.byteIndex++]),{value:this.get(this.context,this.index++,this.byte,this.bit++)}):{done:!0,value:null}}[Symbol.iterator](){return this}};cr.BitIterator=Kp;function kh(t,e,r){if(r-e<=0)return 0;if(r-e<8){let o=0;for(let f of new Kp(t,e,r-e,t,HT))o+=f;return o}let n=r>>3<<3,i=e+(e%8==0?0:8-e%8);return kh(t,e,i)+kh(t,n,r)+zT(t,i>>3,n-i>>3)}cr.popcnt_bit_range=kh;function zT(t,e,r){let n=0,i=e|0,o=new DataView(t.buffer,t.byteOffset,t.byteLength),f=r===void 0?t.byteLength:i+r;for(;f-i>=4;)n+=Gp(o.getUint32(i)),i+=4;for(;f-i>=2;)n+=Gp(o.getUint16(i)),i+=2;for(;f-i>=1;)n+=Gp(o.getUint8(i)),i+=1;return n}cr.popcnt_array=zT;function Gp(t){let e=t|0;return e=e-(e>>>1&1431655765),e=(e&858993459)+(e>>>2&858993459),(e+(e>>>4)&252645135)*16843009>>>24}cr.popcnt_uint32=Gp});var _t=z(le=>{"use strict";Object.defineProperty(le,"__esModule",{value:!0});le.strideForType=le.Dictionary=le.Map_=le.FixedSizeList=le.FixedSizeBinary=le.SparseUnion=le.DenseUnion=le.Union=le.Struct=le.List=le.IntervalYearMonth=le.IntervalDayTime=le.Interval=le.TimestampNanosecond=le.TimestampMicrosecond=le.TimestampMillisecond=le.TimestampSecond=le.Timestamp=le.TimeNanosecond=le.TimeMicrosecond=le.TimeMillisecond=le.TimeSecond=le.Time=le.DateMillisecond=le.DateDay=le.Date_=le.Decimal=le.Bool=le.Utf8=le.Binary=le.Float64=le.Float32=le.Float16=le.Float=le.Uint64=le.Uint32=le.Uint16=le.Uint8=le.Int64=le.Int32=le.Int16=le.Int8=le.Int=le.Null=le.DataType=void 0;var _e=Rt(),Zt=class{static isNull(e){return e&&e.typeId===_e.Type.Null}static isInt(e){return e&&e.typeId===_e.Type.Int}static isFloat(e){return e&&e.typeId===_e.Type.Float}static isBinary(e){return e&&e.typeId===_e.Type.Binary}static isUtf8(e){return e&&e.typeId===_e.Type.Utf8}static isBool(e){return e&&e.typeId===_e.Type.Bool}static isDecimal(e){return e&&e.typeId===_e.Type.Decimal}static isDate(e){return e&&e.typeId===_e.Type.Date}static isTime(e){return e&&e.typeId===_e.Type.Time}static isTimestamp(e){return e&&e.typeId===_e.Type.Timestamp}static isInterval(e){return e&&e.typeId===_e.Type.Interval}static isList(e){return e&&e.typeId===_e.Type.List}static isStruct(e){return e&&e.typeId===_e.Type.Struct}static isUnion(e){return e&&e.typeId===_e.Type.Union}static isFixedSizeBinary(e){return e&&e.typeId===_e.Type.FixedSizeBinary}static isFixedSizeList(e){return e&&e.typeId===_e.Type.FixedSizeList}static isMap(e){return e&&e.typeId===_e.Type.Map}static isDictionary(e){return e&&e.typeId===_e.Type.Dictionary}get typeId(){return _e.Type.NONE}};le.DataType=Zt;Zt[Symbol.toStringTag]=(t=>(t.children=null,t.ArrayType=Array,t[Symbol.toStringTag]="DataType"))(Zt.prototype);var Jp=class extends Zt{toString(){return"Null"}get typeId(){return _e.Type.Null}};le.Null=Jp;Jp[Symbol.toStringTag]=(t=>t[Symbol.toStringTag]="Null")(Jp.prototype);var kn=class extends Zt{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return _e.Type.Int}get ArrayType(){switch(this.bitWidth){case 8:return this.isSigned?Int8Array:Uint8Array;case 16:return this.isSigned?Int16Array:Uint16Array;case 32:return this.isSigned?Int32Array:Uint32Array;case 64:return this.isSigned?Int32Array:Uint32Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`${this.isSigned?"I":"Ui"}nt${this.bitWidth}`}};le.Int=kn;kn[Symbol.toStringTag]=(t=>(t.isSigned=null,t.bitWidth=null,t[Symbol.toStringTag]="Int"))(kn.prototype);var Ih=class extends kn{constructor(){super(!0,8)}};le.Int8=Ih;var Sh=class extends kn{constructor(){super(!0,16)}};le.Int16=Sh;var xh=class extends kn{constructor(){super(!0,32)}};le.Int32=xh;var Ah=class extends kn{constructor(){super(!0,64)}};le.Int64=Ah;var Eh=class extends kn{constructor(){super(!1,8)}};le.Uint8=Eh;var Oh=class extends kn{constructor(){super(!1,16)}};le.Uint16=Oh;var Nh=class extends kn{constructor(){super(!1,32)}};le.Uint32=Nh;var Dh=class extends kn{constructor(){super(!1,64)}};le.Uint64=Dh;Object.defineProperty(Ih.prototype,"ArrayType",{value:Int8Array});Object.defineProperty(Sh.prototype,"ArrayType",{value:Int16Array});Object.defineProperty(xh.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(Ah.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(Eh.prototype,"ArrayType",{value:Uint8Array});Object.defineProperty(Oh.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Nh.prototype,"ArrayType",{value:Uint32Array});Object.defineProperty(Dh.prototype,"ArrayType",{value:Uint32Array});var fs=class extends Zt{constructor(e){super();this.precision=e}get typeId(){return _e.Type.Float}get ArrayType(){switch(this.precision){case _e.Precision.HALF:return Uint16Array;case _e.Precision.SINGLE:return Float32Array;case _e.Precision.DOUBLE:return Float64Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`Float${this.precision<<5||16}`}};le.Float=fs;fs[Symbol.toStringTag]=(t=>(t.precision=null,t[Symbol.toStringTag]="Float"))(fs.prototype);var Fh=class extends fs{constructor(){super(_e.Precision.HALF)}};le.Float16=Fh;var Ph=class extends fs{constructor(){super(_e.Precision.SINGLE)}};le.Float32=Ph;var Rh=class extends fs{constructor(){super(_e.Precision.DOUBLE)}};le.Float64=Rh;Object.defineProperty(Fh.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Ph.prototype,"ArrayType",{value:Float32Array});Object.defineProperty(Rh.prototype,"ArrayType",{value:Float64Array});var Zp=class extends Zt{constructor(){super()}get typeId(){return _e.Type.Binary}toString(){return"Binary"}};le.Binary=Zp;Zp[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Binary"))(Zp.prototype);var Xp=class extends Zt{constructor(){super()}get typeId(){return _e.Type.Utf8}toString(){return"Utf8"}};le.Utf8=Xp;Xp[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Utf8"))(Xp.prototype);var Qp=class extends Zt{constructor(){super()}get typeId(){return _e.Type.Bool}toString(){return"Bool"}};le.Bool=Qp;Qp[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Bool"))(Qp.prototype);var $p=class extends Zt{constructor(e,r){super();this.scale=e,this.precision=r}get typeId(){return _e.Type.Decimal}toString(){return`Decimal[${this.precision}e${this.scale>0?"+":""}${this.scale}]`}};le.Decimal=$p;$p[Symbol.toStringTag]=(t=>(t.scale=null,t.precision=null,t.ArrayType=Uint32Array,t[Symbol.toStringTag]="Decimal"))($p.prototype);var ea=class extends Zt{constructor(e){super();this.unit=e}get typeId(){return _e.Type.Date}toString(){return`Date${(this.unit+1)*32}<${_e.DateUnit[this.unit]}>`}};le.Date_=ea;ea[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Date"))(ea.prototype);var UT=class extends ea{constructor(){super(_e.DateUnit.DAY)}};le.DateDay=UT;var LT=class extends ea{constructor(){super(_e.DateUnit.MILLISECOND)}};le.DateMillisecond=LT;var Xo=class extends Zt{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return _e.Type.Time}toString(){return`Time${this.bitWidth}<${_e.TimeUnit[this.unit]}>`}};le.Time=Xo;Xo[Symbol.toStringTag]=(t=>(t.unit=null,t.bitWidth=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Time"))(Xo.prototype);var VT=class extends Xo{constructor(){super(_e.TimeUnit.SECOND,32)}};le.TimeSecond=VT;var CT=class extends Xo{constructor(){super(_e.TimeUnit.MILLISECOND,32)}};le.TimeMillisecond=CT;var WT=class extends Xo{constructor(){super(_e.TimeUnit.MICROSECOND,64)}};le.TimeMicrosecond=WT;var YT=class extends Xo{constructor(){super(_e.TimeUnit.NANOSECOND,64)}};le.TimeNanosecond=YT;var Qo=class extends Zt{constructor(e,r){super();this.unit=e,this.timezone=r}get typeId(){return _e.Type.Timestamp}toString(){return`Timestamp<${_e.TimeUnit[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}};le.Timestamp=Qo;Qo[Symbol.toStringTag]=(t=>(t.unit=null,t.timezone=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Timestamp"))(Qo.prototype);var KT=class extends Qo{constructor(e){super(_e.TimeUnit.SECOND,e)}};le.TimestampSecond=KT;var GT=class extends Qo{constructor(e){super(_e.TimeUnit.MILLISECOND,e)}};le.TimestampMillisecond=GT;var JT=class extends Qo{constructor(e){super(_e.TimeUnit.MICROSECOND,e)}};le.TimestampMicrosecond=JT;var ZT=class extends Qo{constructor(e){super(_e.TimeUnit.NANOSECOND,e)}};le.TimestampNanosecond=ZT;var ta=class extends Zt{constructor(e){super();this.unit=e}get typeId(){return _e.Type.Interval}toString(){return`Interval<${_e.IntervalUnit[this.unit]}>`}};le.Interval=ta;ta[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Interval"))(ta.prototype);var XT=class extends ta{constructor(){super(_e.IntervalUnit.DAY_TIME)}};le.IntervalDayTime=XT;var QT=class extends ta{constructor(){super(_e.IntervalUnit.YEAR_MONTH)}};le.IntervalYearMonth=QT;var ed=class extends Zt{constructor(e){super();this.children=[e]}get typeId(){return _e.Type.List}toString(){return`List<${this.valueType}>`}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get ArrayType(){return this.valueType.ArrayType}};le.List=ed;ed[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="List"))(ed.prototype);var td=class extends Zt{constructor(e){super();this.children=e}get typeId(){return _e.Type.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};le.Struct=td;td[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="Struct"))(td.prototype);var ra=class extends Zt{constructor(e,r,n){super();this.mode=e,this.children=n,this.typeIds=r=Int32Array.from(r),this.typeIdToChildIndex=r.reduce((i,o,f)=>(i[o]=f)&&i||i,Object.create(null))}get typeId(){return _e.Type.Union}toString(){return`${this[Symbol.toStringTag]}<${this.children.map(e=>`${e.type}`).join(" | ")}>`}};le.Union=ra;ra[Symbol.toStringTag]=(t=>(t.mode=null,t.typeIds=null,t.children=null,t.typeIdToChildIndex=null,t.ArrayType=Int8Array,t[Symbol.toStringTag]="Union"))(ra.prototype);var $T=class extends ra{constructor(e,r){super(_e.UnionMode.Dense,e,r)}};le.DenseUnion=$T;var eB=class extends ra{constructor(e,r){super(_e.UnionMode.Sparse,e,r)}};le.SparseUnion=eB;var rd=class extends Zt{constructor(e){super();this.byteWidth=e}get typeId(){return _e.Type.FixedSizeBinary}toString(){return`FixedSizeBinary[${this.byteWidth}]`}};le.FixedSizeBinary=rd;rd[Symbol.toStringTag]=(t=>(t.byteWidth=null,t.ArrayType=Uint8Array,t[Symbol.toStringTag]="FixedSizeBinary"))(rd.prototype);var nd=class extends Zt{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return _e.Type.FixedSizeList}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get ArrayType(){return this.valueType.ArrayType}toString(){return`FixedSizeList[${this.listSize}]<${this.valueType}>`}};le.FixedSizeList=nd;nd[Symbol.toStringTag]=(t=>(t.children=null,t.listSize=null,t[Symbol.toStringTag]="FixedSizeList"))(nd.prototype);var id=class extends Zt{constructor(e,r=!1){super();this.children=[e],this.keysSorted=r}get typeId(){return _e.Type.Map}get keyType(){return this.children[0].type.children[0].type}get valueType(){return this.children[0].type.children[1].type}toString(){return`Map<{${this.children[0].type.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};le.Map_=id;id[Symbol.toStringTag]=(t=>(t.children=null,t.keysSorted=null,t[Symbol.toStringTag]="Map_"))(id.prototype);var DN=(t=>()=>++t)(-1),od=class extends Zt{constructor(e,r,n,i){super();this.indices=r,this.dictionary=e,this.isOrdered=i||!1,this.id=n==null?DN():typeof n=="number"?n:n.low}get typeId(){return _e.Type.Dictionary}get children(){return this.dictionary.children}get valueType(){return this.dictionary}get ArrayType(){return this.dictionary.ArrayType}toString(){return`Dictionary<${this.indices}, ${this.dictionary}>`}};le.Dictionary=od;od[Symbol.toStringTag]=(t=>(t.id=null,t.indices=null,t.isOrdered=null,t.dictionary=null,t[Symbol.toStringTag]="Dictionary"))(od.prototype);function FN(t){let e=t;switch(t.typeId){case _e.Type.Decimal:return 4;case _e.Type.Timestamp:return 2;case _e.Type.Date:return 1+e.unit;case _e.Type.Interval:return 1+e.unit;case _e.Type.Int:return 1+ +(e.bitWidth>32);case _e.Type.Time:return 1+ +(e.bitWidth>32);case _e.Type.FixedSizeList:return e.listSize;case _e.Type.FixedSizeBinary:return e.byteWidth;default:return 1}}le.strideForType=FN});var Xn=z(ss=>{"use strict";Object.defineProperty(ss,"__esModule",{value:!0});ss.Data=ss.kUnknownNullCount=void 0;var PN=qi(),RN=qi(),Te=Rt(),HN=_t(),pt=gr();ss.kUnknownNullCount=-1;var Ke=class{constructor(e,r,n,i,o,f,s){this.type=e,this.dictionary=s,this.offset=Math.floor(Math.max(r||0,0)),this.length=Math.floor(Math.max(n||0,0)),this._nullCount=Math.floor(Math.max(i||0,-1)),this.childData=(f||[]).map(u=>u instanceof Ke?u:u.data);let l;o instanceof Ke?(this.stride=o.stride,this.values=o.values,this.typeIds=o.typeIds,this.nullBitmap=o.nullBitmap,this.valueOffsets=o.valueOffsets):(this.stride=HN.strideForType(e),o&&((l=o[0])&&(this.valueOffsets=l),(l=o[1])&&(this.values=l),(l=o[2])&&(this.nullBitmap=l),(l=o[3])&&(this.typeIds=l)))}get typeId(){return this.type.typeId}get ArrayType(){return this.type.ArrayType}get buffers(){return[this.valueOffsets,this.values,this.nullBitmap,this.typeIds]}get byteLength(){let e=0,{valueOffsets:r,values:n,nullBitmap:i,typeIds:o}=this;return r&&(e+=r.byteLength),n&&(e+=n.byteLength),i&&(e+=i.byteLength),o&&(e+=o.byteLength),this.childData.reduce((f,s)=>f+s.byteLength,e)}get nullCount(){let e=this._nullCount,r;return e<=ss.kUnknownNullCount&&(r=this.nullBitmap)&&(this._nullCount=e=this.length-RN.popcnt_bit_range(r,this.offset,this.offset+this.length)),e}clone(e,r=this.offset,n=this.length,i=this._nullCount,o=this,f=this.childData){return new Ke(e,r,n,i,o,f,this.dictionary)}slice(e,r){let{stride:n,typeId:i,childData:o}=this,f=+(this._nullCount===0)-1,s=i===16?n:1,l=this._sliceBuffers(e,r,n,i);return this.clone(this.type,this.offset+e,r,f,l,!o.length||this.valueOffsets?o:this._sliceChildren(o,s*e,s*r))}_changeLengthAndBackfillNullBitmap(e){if(this.typeId===Te.Type.Null)return this.clone(this.type,0,e,0);let{length:r,nullCount:n}=this,i=new Uint8Array((e+63&~63)>>3).fill(255,0,r>>3);i[r>>3]=(1<<r-(r&~7))-1,n>0&&i.set(PN.truncateBitmap(this.offset,r,this.nullBitmap),0);let o=this.buffers;return o[Te.BufferType.VALIDITY]=i,this.clone(this.type,0,e,n+(e-r),o)}_sliceBuffers(e,r,n,i){let o,{buffers:f}=this;return(o=f[Te.BufferType.TYPE])&&(f[Te.BufferType.TYPE]=o.subarray(e,e+r)),(o=f[Te.BufferType.OFFSET])&&(f[Te.BufferType.OFFSET]=o.subarray(e,e+r+1))||(o=f[Te.BufferType.DATA])&&(f[Te.BufferType.DATA]=i===6?o:o.subarray(n*e,n*(e+r))),f}_sliceChildren(e,r,n){return e.map(i=>i.slice(r,n))}static new(e,r,n,i,o,f,s){switch(o instanceof Ke?o=o.buffers:o||(o=[]),e.typeId){case Te.Type.Null:return Ke.Null(e,r,n);case Te.Type.Int:return Ke.Int(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.Dictionary:return Ke.Dictionary(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[],s);case Te.Type.Float:return Ke.Float(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.Bool:return Ke.Bool(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.Decimal:return Ke.Decimal(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.Date:return Ke.Date(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.Time:return Ke.Time(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.Timestamp:return Ke.Timestamp(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.Interval:return Ke.Interval(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.FixedSizeBinary:return Ke.FixedSizeBinary(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.DATA]||[]);case Te.Type.Binary:return Ke.Binary(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.OFFSET]||[],o[Te.BufferType.DATA]||[]);case Te.Type.Utf8:return Ke.Utf8(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.OFFSET]||[],o[Te.BufferType.DATA]||[]);case Te.Type.List:return Ke.List(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.OFFSET]||[],(f||[])[0]);case Te.Type.FixedSizeList:return Ke.FixedSizeList(e,r,n,i||0,o[Te.BufferType.VALIDITY],(f||[])[0]);case Te.Type.Struct:return Ke.Struct(e,r,n,i||0,o[Te.BufferType.VALIDITY],f||[]);case Te.Type.Map:return Ke.Map(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.OFFSET]||[],(f||[])[0]);case Te.Type.Union:return Ke.Union(e,r,n,i||0,o[Te.BufferType.VALIDITY],o[Te.BufferType.TYPE]||[],o[Te.BufferType.OFFSET]||f,f)}throw new Error(`Unrecognized typeId ${e.typeId}`)}static Null(e,r,n){return new Ke(e,r,n,0)}static Int(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static Dictionary(e,r,n,i,o,f,s){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.indices.ArrayType,f),pt.toUint8Array(o)],[],s)}static Float(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static Bool(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static Decimal(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static Date(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static Time(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static Timestamp(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static Interval(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static FixedSizeBinary(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,pt.toArrayBufferView(e.ArrayType,f),pt.toUint8Array(o)])}static Binary(e,r,n,i,o,f,s){return new Ke(e,r,n,i,[pt.toInt32Array(f),pt.toUint8Array(s),pt.toUint8Array(o)])}static Utf8(e,r,n,i,o,f,s){return new Ke(e,r,n,i,[pt.toInt32Array(f),pt.toUint8Array(s),pt.toUint8Array(o)])}static List(e,r,n,i,o,f,s){return new Ke(e,r,n,i,[pt.toInt32Array(f),void 0,pt.toUint8Array(o)],s?[s]:[])}static FixedSizeList(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,void 0,pt.toUint8Array(o)],f?[f]:[])}static Struct(e,r,n,i,o,f){return new Ke(e,r,n,i,[void 0,void 0,pt.toUint8Array(o)],f)}static Map(e,r,n,i,o,f,s){return new Ke(e,r,n,i,[pt.toInt32Array(f),void 0,pt.toUint8Array(o)],s?[s]:[])}static Union(e,r,n,i,o,f,s,l){let u=[void 0,void 0,pt.toUint8Array(o),pt.toArrayBufferView(e.ArrayType,f)];return e.mode===Te.UnionMode.Sparse?new Ke(e,r,n,i,u,s):(u[Te.BufferType.OFFSET]=pt.toInt32Array(s),new Ke(e,r,n,i,u,l))}};ss.Data=Ke;Ke.prototype.childData=Object.freeze([])});var Hh=z(fd=>{"use strict";Object.defineProperty(fd,"__esModule",{value:!0});fd.valueToString=void 0;var MN=void 0;function zN(t){if(t===null)return"null";if(t===MN)return"undefined";switch(typeof t){case"number":return`${t}`;case"bigint":return`${t}`;case"string":return`"${t}"`}return typeof t[Symbol.toPrimitive]=="function"?t[Symbol.toPrimitive]("string"):ArrayBuffer.isView(t)?`[${t}]`:JSON.stringify(t)}fd.valueToString=zN});var tB=z(sd=>{"use strict";Object.defineProperty(sd,"__esModule",{value:!0});sd.createIsValidFunction=void 0;var Mh=Hh(),UN=Fr();function LN(t){if(!t||t.length<=0)return function(i){return!0};let e="",r=t.filter(n=>n===n);return r.length>0&&(e=`
19
- switch (x) {${r.map(n=>`
20
- case ${VN(n)}:`).join("")}
21
- return false;
22
- }`),t.length!==r.length&&(e=`if (x !== x) return false;
23
- ${e}`),new Function("x",`${e}
24
- return true;`)}sd.createIsValidFunction=LN;function VN(t){return typeof t!="bigint"?Mh.valueToString(t):UN.BigIntAvailable?`${Mh.valueToString(t)}n`:`"${Mh.valueToString(t)}"`}});var $o=z(In=>{"use strict";Object.defineProperty(In,"__esModule",{value:!0});In.WideBufferBuilder=In.OffsetsBufferBuilder=In.BitmapBufferBuilder=In.DataBufferBuilder=In.BufferBuilder=void 0;var rB=gr(),zh=Fr(),Uh=(t,e)=>(t*e+63&~63||64)/e,CN=(t,e=0)=>t.length>=e?t.subarray(0,e):rB.memcpy(new t.constructor(e),t,0),qu=class{constructor(e,r=1){this.buffer=e,this.stride=r,this.BYTES_PER_ELEMENT=e.BYTES_PER_ELEMENT,this.ArrayType=e.constructor,this._resize(this.length=e.length/r|0)}get byteLength(){return this.length*this.stride*this.BYTES_PER_ELEMENT|0}get reservedLength(){return this.buffer.length/this.stride}get reservedByteLength(){return this.buffer.byteLength}set(e,r){return this}append(e){return this.set(this.length,e)}reserve(e){if(e>0){this.length+=e;let r=this.stride,n=this.length*r,i=this.buffer.length;n>=i&&this._resize(i===0?Uh(n*1,this.BYTES_PER_ELEMENT):Uh(n*2,this.BYTES_PER_ELEMENT))}return this}flush(e=this.length){e=Uh(e*this.stride,this.BYTES_PER_ELEMENT);let r=CN(this.buffer,e);return this.clear(),r}clear(){return this.length=0,this._resize(0),this}_resize(e){return this.buffer=rB.memcpy(new this.ArrayType(e),this.buffer)}};In.BufferBuilder=qu;qu.prototype.offset=0;var ad=class extends qu{last(){return this.get(this.length-1)}get(e){return this.buffer[e]}set(e,r){return this.reserve(e-this.length+1),this.buffer[e*this.stride]=r,this}};In.DataBufferBuilder=ad;var nB=class extends ad{constructor(e=new Uint8Array(0)){super(e,1/8);this.numValid=0}get numInvalid(){return this.length-this.numValid}get(e){return this.buffer[e>>3]>>e%8&1}set(e,r){let{buffer:n}=this.reserve(e-this.length+1),i=e>>3,o=e%8,f=n[i]>>o&1;return r?f===0&&(n[i]|=1<<o,++this.numValid):f===1&&(n[i]&=~(1<<o),--this.numValid),this}clear(){return this.numValid=0,super.clear()}};In.BitmapBufferBuilder=nB;var iB=class extends ad{constructor(e=new Int32Array(1)){super(e,1)}append(e){return this.set(this.length-1,e)}set(e,r){let n=this.length-1,i=this.reserve(e-n+1).buffer;return n<e++&&i.fill(i[n],n,e),i[e]=i[e-1]+r,this}flush(e=this.length-1){return e>this.length&&this.set(e-1,0),super.flush(e+1)}};In.OffsetsBufferBuilder=iB;var oB=class extends qu{get ArrayType64(){return this._ArrayType64||(this._ArrayType64=this.buffer instanceof Int32Array?zh.BigInt64Array:zh.BigUint64Array)}set(e,r){switch(this.reserve(e-this.length+1),typeof r){case"bigint":this.buffer64[e]=r;break;case"number":this.buffer[e*this.stride]=r;break;default:this.buffer.set(r,e*this.stride)}return this}_resize(e){let r=super._resize(e),n=r.byteLength/(this.BYTES_PER_ELEMENT*this.stride);return zh.BigIntAvailable&&(this.buffer64=new this.ArrayType64(r.buffer,r.byteOffset,n)),r}};In.WideBufferBuilder=oB});var Xt=z(ef=>{"use strict";Object.defineProperty(ef,"__esModule",{value:!0});ef.VariableWidthBuilder=ef.FixedWidthBuilder=ef.Builder=void 0;var WN=or(),na=Rt(),YN=Xn(),KN=tB(),Lh=$o(),GN=_t(),Sn=class{constructor({type:e,nullValues:r}){this.length=0,this.finished=!1,this.type=e,this.children=[],this.nullValues=r,this.stride=GN.strideForType(e),this._nulls=new Lh.BitmapBufferBuilder,r&&r.length>0&&(this._isValid=KN.createIsValidFunction(r))}static new(e){}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e){throw new Error('"throughDOM" not available in this environment')}static throughIterable(e){return JN(e)}static throughAsyncIterable(e){return ZN(e)}toVector(){return WN.Vector.new(this.flush())}get ArrayType(){return this.type.ArrayType}get nullCount(){return this._nulls.numInvalid}get numChildren(){return this.children.length}get byteLength(){let e=0;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),this._typeIds&&(e+=this._typeIds.byteLength),this.children.reduce((r,n)=>r+n.byteLength,e)}get reservedLength(){return this._nulls.reservedLength}get reservedByteLength(){let e=0;return this._offsets&&(e+=this._offsets.reservedByteLength),this._values&&(e+=this._values.reservedByteLength),this._nulls&&(e+=this._nulls.reservedByteLength),this._typeIds&&(e+=this._typeIds.reservedByteLength),this.children.reduce((r,n)=>r+n.reservedByteLength,e)}get valueOffsets(){return this._offsets?this._offsets.buffer:null}get values(){return this._values?this._values.buffer:null}get nullBitmap(){return this._nulls?this._nulls.buffer:null}get typeIds(){return this._typeIds?this._typeIds.buffer:null}append(e){return this.set(this.length,e)}isValid(e){return this._isValid(e)}set(e,r){return this.setValid(e,this.isValid(r))&&this.setValue(e,r),this}setValue(e,r){this._setValue(this,e,r)}setValid(e,r){return this.length=this._nulls.set(e,+r).length,r}addChild(e,r=`${this.numChildren}`){throw new Error(`Cannot append children to non-nested type "${this.type}"`)}getChildAt(e){return this.children[e]||null}flush(){let e=[],r=this._values,n=this._offsets,i=this._typeIds,{length:o,nullCount:f}=this;i?(e[na.BufferType.TYPE]=i.flush(o),n&&(e[na.BufferType.OFFSET]=n.flush(o))):n?(r&&(e[na.BufferType.DATA]=r.flush(n.last())),e[na.BufferType.OFFSET]=n.flush(o)):r&&(e[na.BufferType.DATA]=r.flush(o)),f>0&&(e[na.BufferType.VALIDITY]=this._nulls.flush(o));let s=YN.Data.new(this.type,0,o,f,e,this.children.map(l=>l.flush()));return this.clear(),s}finish(){return this.finished=!0,this.children.forEach(e=>e.finish()),this}clear(){return this.length=0,this._offsets&&this._offsets.clear(),this._values&&this._values.clear(),this._nulls&&this._nulls.clear(),this._typeIds&&this._typeIds.clear(),this.children.forEach(e=>e.clear()),this}};ef.Builder=Sn;Sn.prototype.length=1;Sn.prototype.stride=1;Sn.prototype.children=null;Sn.prototype.finished=!1;Sn.prototype.nullValues=null;Sn.prototype._isValid=()=>!0;var fB=class extends Sn{constructor(e){super(e);this._values=new Lh.DataBufferBuilder(new this.ArrayType(0),this.stride)}setValue(e,r){let n=this._values;return n.reserve(e-n.length+1),super.setValue(e,r)}};ef.FixedWidthBuilder=fB;var sB=class extends Sn{constructor(e){super(e);this._pendingLength=0,this._offsets=new Lh.OffsetsBufferBuilder}setValue(e,r){let n=this._pending||(this._pending=new Map),i=n.get(e);i&&(this._pendingLength-=i.length),this._pendingLength+=r.length,n.set(e,r)}setValid(e,r){return super.setValid(e,r)?!0:((this._pending||(this._pending=new Map)).set(e,void 0),!1)}clear(){return this._pendingLength=0,this._pending=void 0,super.clear()}flush(){return this._flush(),super.flush()}finish(){return this._flush(),super.finish()}_flush(){let e=this._pending,r=this._pendingLength;return this._pendingLength=0,this._pending=void 0,e&&e.size>0&&this._flushPending(e,r),this}};ef.VariableWidthBuilder=sB;function JN(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return function*(i){let o=0,f=Sn.new(t);for(let s of i)f.append(s)[n]>=r&&++o&&(yield f.toVector());(f.finish().length>0||o===0)&&(yield f.toVector())}}function ZN(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return async function*(i){let o=0,f=Sn.new(t);for await(let s of i)f.append(s)[n]>=r&&++o&&(yield f.toVector());(f.finish().length>0||o===0)&&(yield f.toVector())}}});var Vh=z(ld=>{"use strict";Object.defineProperty(ld,"__esModule",{value:!0});ld.BoolBuilder=void 0;var XN=$o(),QN=Xt(),aB=class extends QN.Builder{constructor(e){super(e);this._values=new XN.BitmapBufferBuilder}setValue(e,r){this._values.set(e,+r)}};ld.BoolBuilder=aB});var Ch=z(ud=>{"use strict";Object.defineProperty(ud,"__esModule",{value:!0});ud.NullBuilder=void 0;var $N=Xt(),lB=class extends $N.Builder{setValue(e,r){}setValid(e,r){return this.length=Math.max(e+1,this.length),r}};ud.NullBuilder=lB});var Wh=z(tf=>{"use strict";Object.defineProperty(tf,"__esModule",{value:!0});tf.DateMillisecondBuilder=tf.DateDayBuilder=tf.DateBuilder=void 0;var eD=Xt(),cd=class extends eD.FixedWidthBuilder{};tf.DateBuilder=cd;var uB=class extends cd{};tf.DateDayBuilder=uB;var cB=class extends cd{};tf.DateMillisecondBuilder=cB});var Yh=z(pd=>{"use strict";Object.defineProperty(pd,"__esModule",{value:!0});pd.DecimalBuilder=void 0;var tD=Xt(),pB=class extends tD.FixedWidthBuilder{};pd.DecimalBuilder=pB});var Gh=z(dd=>{"use strict";Object.defineProperty(dd,"__esModule",{value:!0});dd.DictionaryBuilder=void 0;var rD=_t(),Kh=Xt(),dB=class extends Kh.Builder{constructor({type:e,nullValues:r,dictionaryHashFunction:n}){super({type:new rD.Dictionary(e.dictionary,e.indices,e.id,e.isOrdered)});this._nulls=null,this._dictionaryOffset=0,this._keysToIndices=Object.create(null),this.indices=Kh.Builder.new({type:this.type.indices,nullValues:r}),this.dictionary=Kh.Builder.new({type:this.type.dictionary,nullValues:null}),typeof n=="function"&&(this.valueToKey=n)}get values(){return this.indices.values}get nullCount(){return this.indices.nullCount}get nullBitmap(){return this.indices.nullBitmap}get byteLength(){return this.indices.byteLength+this.dictionary.byteLength}get reservedLength(){return this.indices.reservedLength+this.dictionary.reservedLength}get reservedByteLength(){return this.indices.reservedByteLength+this.dictionary.reservedByteLength}isValid(e){return this.indices.isValid(e)}setValid(e,r){let n=this.indices;return r=n.setValid(e,r),this.length=n.length,r}setValue(e,r){let n=this._keysToIndices,i=this.valueToKey(r),o=n[i];return o===void 0&&(n[i]=o=this._dictionaryOffset+this.dictionary.append(r).length-1),this.indices.setValue(e,o)}flush(){let e=this.type,r=this._dictionary,n=this.dictionary.toVector(),i=this.indices.flush().clone(e);return i.dictionary=r?r.concat(n):n,this.finished||(this._dictionaryOffset+=n.length),this._dictionary=i.dictionary,this.clear(),i}finish(){return this.indices.finish(),this.dictionary.finish(),this._dictionaryOffset=0,this._keysToIndices=Object.create(null),super.finish()}clear(){return this.indices.clear(),this.dictionary.clear(),super.clear()}valueToKey(e){return typeof e=="string"?e:`${e}`}};dd.DictionaryBuilder=dB});var Jh=z(md=>{"use strict";Object.defineProperty(md,"__esModule",{value:!0});md.FixedSizeBinaryBuilder=void 0;var nD=Xt(),mB=class extends nD.FixedWidthBuilder{};md.FixedSizeBinaryBuilder=mB});var vu=z(oa=>{"use strict";Object.defineProperty(oa,"__esModule",{value:!0});oa.float64ToUint16=oa.uint16ToFloat64=void 0;var bB=new Float64Array(1),ia=new Uint32Array(bB.buffer);function iD(t){let e=(t&31744)>>10,r=(t&1023)/1024,n=(-1)**((t&32768)>>15);switch(e){case 31:return n*(r?NaN:1/0);case 0:return n*(r?6103515625e-14*r:0)}return n*2**(e-15)*(1+r)}oa.uint16ToFloat64=iD;function oD(t){if(t!==t)return 32256;bB[0]=t;let e=(ia[1]&2147483648)>>16&65535,r=ia[1]&2146435072,n=0;return r>=1089470464?ia[0]>0?r=31744:(r=(r&2080374784)>>16,n=(ia[1]&1048575)>>10):r<=1056964608?(n=1048576+(ia[1]&1048575),n=1048576+(n<<(r>>20)-998)>>21,r=0):(r=r-1056964608>>10,n=(ia[1]&1048575)+512>>10),e|r|n&65535}oa.float64ToUint16=oD});var Zh=z(vi=>{"use strict";Object.defineProperty(vi,"__esModule",{value:!0});vi.Float64Builder=vi.Float32Builder=vi.Float16Builder=vi.FloatBuilder=void 0;var fD=vu(),sD=Xt(),Tu=class extends sD.FixedWidthBuilder{};vi.FloatBuilder=Tu;var wB=class extends Tu{setValue(e,r){this._values.set(e,fD.float64ToUint16(r))}};vi.Float16Builder=wB;var hB=class extends Tu{setValue(e,r){this._values.set(e,r)}};vi.Float32Builder=hB;var gB=class extends Tu{setValue(e,r){this._values.set(e,r)}};vi.Float64Builder=gB});var Iu=z(yr=>{"use strict";Object.defineProperty(yr,"__esModule",{value:!0});yr.BN=yr.bignumToBigInt=yr.bignumToString=yr.isArrowBigNumSymbol=void 0;var aD=gr(),Bu=Fr();yr.isArrowBigNumSymbol=Symbol.for("isArrowBigNum");function Qn(t,...e){return e.length===0?Object.setPrototypeOf(aD.toArrayBufferView(this.TypedArray,t),this.constructor.prototype):Object.setPrototypeOf(new this.TypedArray(t,...e),this.constructor.prototype)}Qn.prototype[yr.isArrowBigNumSymbol]=!0;Qn.prototype.toJSON=function(){return`"${yr.bignumToString(this)}"`};Qn.prototype.valueOf=function(){return yB(this)};Qn.prototype.toString=function(){return yr.bignumToString(this)};Qn.prototype[Symbol.toPrimitive]=function(t="default"){switch(t){case"number":return yB(this);case"string":return yr.bignumToString(this);case"default":return yr.bignumToBigInt(this)}return yr.bignumToString(this)};function fa(...t){return Qn.apply(this,t)}function sa(...t){return Qn.apply(this,t)}function ku(...t){return Qn.apply(this,t)}Object.setPrototypeOf(fa.prototype,Object.create(Int32Array.prototype));Object.setPrototypeOf(sa.prototype,Object.create(Uint32Array.prototype));Object.setPrototypeOf(ku.prototype,Object.create(Uint32Array.prototype));Object.assign(fa.prototype,Qn.prototype,{constructor:fa,signed:!0,TypedArray:Int32Array,BigIntArray:Bu.BigInt64Array});Object.assign(sa.prototype,Qn.prototype,{constructor:sa,signed:!1,TypedArray:Uint32Array,BigIntArray:Bu.BigUint64Array});Object.assign(ku.prototype,Qn.prototype,{constructor:ku,signed:!0,TypedArray:Uint32Array,BigIntArray:Bu.BigUint64Array});function yB(t){let{buffer:e,byteOffset:r,length:n,signed:i}=t,o=new Int32Array(e,r,n),f=0,s=0,l=o.length,u,c;for(;s<l;)c=o[s++],u=o[s++],i||(u=u>>>0),f+=(c>>>0)+u*s**32;return f}Bu.BigIntAvailable?(yr.bignumToBigInt=t=>t.byteLength===8?new t.BigIntArray(t.buffer,t.byteOffset,1)[0]:Xh(t),yr.bignumToString=t=>t.byteLength===8?`${new t.BigIntArray(t.buffer,t.byteOffset,1)[0]}`:Xh(t)):(yr.bignumToString=Xh,yr.bignumToBigInt=yr.bignumToString);function Xh(t){let e="",r=new Uint32Array(2),n=new Uint16Array(t.buffer,t.byteOffset,t.byteLength/2),i=new Uint32Array((n=new Uint16Array(n).reverse()).buffer),o=-1,f=n.length-1;do{for(r[0]=n[o=0];o<f;)n[o++]=r[1]=r[0]/10,r[0]=(r[0]-r[1]*10<<16)+n[o];n[o]=r[1]=r[0]/10,r[0]=r[0]-r[1]*10,e=`${r[0]}${e}`}while(i[0]||i[1]||i[2]||i[3]);return e||"0"}var bd=class{static new(e,r){switch(r){case!0:return new fa(e);case!1:return new sa(e)}switch(e.constructor){case Int8Array:case Int16Array:case Int32Array:case Bu.BigInt64Array:return new fa(e)}return e.byteLength===16?new ku(e):new sa(e)}static signed(e){return new fa(e)}static unsigned(e){return new sa(e)}static decimal(e){return new ku(e)}constructor(e,r){return bd.new(e,r)}};yr.BN=bd});var Qh=z(pr=>{"use strict";Object.defineProperty(pr,"__esModule",{value:!0});pr.Uint64Builder=pr.Uint32Builder=pr.Uint16Builder=pr.Uint8Builder=pr.Int64Builder=pr.Int32Builder=pr.Int16Builder=pr.Int8Builder=pr.IntBuilder=void 0;var lD=Iu(),jB=$o(),uD=Fr(),cD=Xt(),Ti=class extends cD.FixedWidthBuilder{setValue(e,r){this._values.set(e,r)}};pr.IntBuilder=Ti;var _B=class extends Ti{};pr.Int8Builder=_B;var qB=class extends Ti{};pr.Int16Builder=qB;var vB=class extends Ti{};pr.Int32Builder=vB;var TB=class extends Ti{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(wd));super(e);this._values=new jB.WideBufferBuilder(new Int32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(wd(e))}};pr.Int64Builder=TB;var BB=class extends Ti{};pr.Uint8Builder=BB;var kB=class extends Ti{};pr.Uint16Builder=kB;var IB=class extends Ti{};pr.Uint32Builder=IB;var SB=class extends Ti{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(wd));super(e);this._values=new jB.WideBufferBuilder(new Uint32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(wd(e))}};pr.Uint64Builder=SB;var wd=(t=>e=>(ArrayBuffer.isView(e)&&(t.buffer=e.buffer,t.byteOffset=e.byteOffset,t.byteLength=e.byteLength,e=lD.bignumToBigInt(t),t.buffer=null),e))({BigIntArray:uD.BigInt64Array})});var $h=z(xn=>{"use strict";Object.defineProperty(xn,"__esModule",{value:!0});xn.TimeNanosecondBuilder=xn.TimeMicrosecondBuilder=xn.TimeMillisecondBuilder=xn.TimeSecondBuilder=xn.TimeBuilder=void 0;var pD=Xt(),aa=class extends pD.FixedWidthBuilder{};xn.TimeBuilder=aa;var xB=class extends aa{};xn.TimeSecondBuilder=xB;var AB=class extends aa{};xn.TimeMillisecondBuilder=AB;var EB=class extends aa{};xn.TimeMicrosecondBuilder=EB;var OB=class extends aa{};xn.TimeNanosecondBuilder=OB});var eg=z(An=>{"use strict";Object.defineProperty(An,"__esModule",{value:!0});An.TimestampNanosecondBuilder=An.TimestampMicrosecondBuilder=An.TimestampMillisecondBuilder=An.TimestampSecondBuilder=An.TimestampBuilder=void 0;var dD=Xt(),la=class extends dD.FixedWidthBuilder{};An.TimestampBuilder=la;var NB=class extends la{};An.TimestampSecondBuilder=NB;var DB=class extends la{};An.TimestampMillisecondBuilder=DB;var FB=class extends la{};An.TimestampMicrosecondBuilder=FB;var PB=class extends la{};An.TimestampNanosecondBuilder=PB});var tg=z(rf=>{"use strict";Object.defineProperty(rf,"__esModule",{value:!0});rf.IntervalYearMonthBuilder=rf.IntervalDayTimeBuilder=rf.IntervalBuilder=void 0;var mD=Xt(),hd=class extends mD.FixedWidthBuilder{};rf.IntervalBuilder=hd;var RB=class extends hd{};rf.IntervalDayTimeBuilder=RB;var HB=class extends hd{};rf.IntervalYearMonthBuilder=HB});var yd=z(gd=>{"use strict";Object.defineProperty(gd,"__esModule",{value:!0});gd.BinaryBuilder=void 0;var bD=gr(),wD=$o(),hD=Xt(),MB=class extends hD.VariableWidthBuilder{constructor(e){super(e);this._values=new wD.BufferBuilder(new Uint8Array(0))}get byteLength(){let e=this._pendingLength+this.length*4;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),e}setValue(e,r){return super.setValue(e,bD.toUint8Array(r))}_flushPending(e,r){let n=this._offsets,i=this._values.reserve(r).buffer,o=0,f=0,s=0,l;for([o,l]of e)l===void 0?n.set(o,0):(f=l.length,i.set(l,s),n.set(o,f),s+=f)}};gd.BinaryBuilder=MB});var _d=z(jd=>{"use strict";Object.defineProperty(jd,"__esModule",{value:!0});jd.Utf8Builder=void 0;var gD=Gf(),yD=yd(),jD=$o(),_D=Xt(),rg=class extends _D.VariableWidthBuilder{constructor(e){super(e);this._values=new jD.BufferBuilder(new Uint8Array(0))}get byteLength(){let e=this._pendingLength+this.length*4;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),e}setValue(e,r){return super.setValue(e,gD.encodeUtf8(r))}_flushPending(e,r){}};jd.Utf8Builder=rg;rg.prototype._flushPending=yD.BinaryBuilder.prototype._flushPending});var ng=z(qd=>{"use strict";Object.defineProperty(qd,"__esModule",{value:!0});qd.Run=void 0;var qD=or(),zB=class{get length(){return this._values.length}get(e){return this._values[e]}clear(){return this._values=null,this}bind(e){return e instanceof qD.Vector?e:(this._values=e,this)}};qd.Run=zB});var vr=z(ua=>{"use strict";Object.defineProperty(ua,"__esModule",{value:!0});ua.Field=ua.Schema=void 0;var vD=_t(),En=class{constructor(e=[],r,n){this.fields=e||[],this.metadata=r||new Map,n||(n=ig(e)),this.dictionaries=n}get[Symbol.toStringTag](){return"Schema"}toString(){return`Schema<{ ${this.fields.map((e,r)=>`${r}: ${e}`).join(", ")} }>`}select(...e){let r=e.reduce((n,i)=>(n[i]=!0)&&n,Object.create(null));return new En(this.fields.filter(n=>r[n.name]),this.metadata)}selectAt(...e){return new En(e.map(r=>this.fields[r]).filter(Boolean),this.metadata)}assign(...e){let r=e[0]instanceof En?e[0]:Array.isArray(e[0])?new En(e[0]):new En(e),n=[...this.fields],i=vd(vd(new Map,this.metadata),r.metadata),o=r.fields.filter(s=>{let l=n.findIndex(u=>u.name===s.name);return~l?(n[l]=s.clone({metadata:vd(vd(new Map,n[l].metadata),s.metadata)}))&&!1:!0}),f=ig(o,new Map);return new En([...n,...o],i,new Map([...this.dictionaries,...f]))}};ua.Schema=En;var uo=class{constructor(e,r,n=!1,i){this.name=e,this.type=r,this.nullable=n,this.metadata=i||new Map}static new(...e){let[r,n,i,o]=e;return e[0]&&typeof e[0]=="object"&&({name:r}=e[0],n===void 0&&(n=e[0].type),i===void 0&&(i=e[0].nullable),o===void 0&&(o=e[0].metadata)),new uo(`${r}`,n,i,o)}get typeId(){return this.type.typeId}get[Symbol.toStringTag](){return"Field"}toString(){return`${this.name}: ${this.type}`}clone(...e){let[r,n,i,o]=e;return!e[0]||typeof e[0]!="object"?[r=this.name,n=this.type,i=this.nullable,o=this.metadata]=e:{name:r=this.name,type:n=this.type,nullable:i=this.nullable,metadata:o=this.metadata}=e[0],uo.new(r,n,i,o)}};ua.Field=uo;function vd(t,e){return new Map([...t||new Map,...e||new Map])}function ig(t,e=new Map){for(let r=-1,n=t.length;++r<n;){let o=t[r].type;if(vD.DataType.isDictionary(o)){if(!e.has(o.id))e.set(o.id,o.dictionary);else if(e.get(o.id)!==o.dictionary)throw new Error("Cannot create Schema containing two different dictionaries with the same Id")}o.children&&o.children.length>0&&ig(o.children,e)}return e}En.prototype.fields=null;En.prototype.metadata=null;En.prototype.dictionaries=null;uo.prototype.type=null;uo.prototype.name=null;uo.prototype.nullable=null;uo.prototype.metadata=null});var og=z(Td=>{"use strict";Object.defineProperty(Td,"__esModule",{value:!0});Td.ListBuilder=void 0;var TD=ng(),BD=vr(),kD=_t(),ID=$o(),SD=Xt(),UB=class extends SD.VariableWidthBuilder{constructor(e){super(e);this._run=new TD.Run,this._offsets=new ID.OffsetsBufferBuilder}addChild(e,r="0"){if(this.numChildren>0)throw new Error("ListBuilder can only have one child.");return this.children[this.numChildren]=e,this.type=new kD.List(new BD.Field(r,e.type,!0)),this.numChildren-1}clear(){return this._run.clear(),super.clear()}_flushPending(e){let r=this._run,n=this._offsets,i=this._setValue,o=0,f;for([o,f]of e)f===void 0?n.set(o,0):(n.set(o,f.length),i(this,o,r.bind(f)))}};Td.ListBuilder=UB});var fg=z(Bd=>{"use strict";Object.defineProperty(Bd,"__esModule",{value:!0});Bd.FixedSizeListBuilder=void 0;var xD=ng(),AD=vr(),ED=Xt(),OD=_t(),LB=class extends ED.Builder{constructor(){super(...arguments);this._run=new xD.Run}setValue(e,r){super.setValue(e,this._run.bind(r))}addChild(e,r="0"){if(this.numChildren>0)throw new Error("FixedSizeListBuilder can only have one child.");let n=this.children.push(e);return this.type=new OD.FixedSizeList(this.type.listSize,new AD.Field(r,e.type,!0)),n}clear(){return this._run.clear(),super.clear()}};Bd.FixedSizeListBuilder=LB});var sg=z(kd=>{"use strict";Object.defineProperty(kd,"__esModule",{value:!0});kd.MapBuilder=void 0;var ND=vr(),DD=_t(),FD=Xt(),VB=class extends FD.VariableWidthBuilder{set(e,r){return super.set(e,r)}setValue(e,r){r=r instanceof Map?r:new Map(Object.entries(r));let n=this._pending||(this._pending=new Map),i=n.get(e);i&&(this._pendingLength-=i.size),this._pendingLength+=r.size,n.set(e,r)}addChild(e,r=`${this.numChildren}`){if(this.numChildren>0)throw new Error("ListBuilder can only have one child.");return this.children[this.numChildren]=e,this.type=new DD.Map_(new ND.Field(r,e.type,!0),this.type.keysSorted),this.numChildren-1}_flushPending(e){let r=this._offsets,n=this._setValue;e.forEach((i,o)=>{i===void 0?r.set(o,0):(r.set(o,i.size),n(this,o,i))})}};kd.MapBuilder=VB});var ag=z(Id=>{"use strict";Object.defineProperty(Id,"__esModule",{value:!0});Id.StructBuilder=void 0;var PD=vr(),RD=Xt(),HD=_t(),CB=class extends RD.Builder{addChild(e,r=`${this.numChildren}`){let n=this.children.push(e);return this.type=new HD.Struct([...this.type.children,new PD.Field(r,e.type,!0)]),n}};Id.StructBuilder=CB});var lg=z(nf=>{"use strict";Object.defineProperty(nf,"__esModule",{value:!0});nf.DenseUnionBuilder=nf.SparseUnionBuilder=nf.UnionBuilder=void 0;var MD=vr(),WB=$o(),zD=Xt(),UD=_t(),Sd=class extends zD.Builder{constructor(e){super(e);this._typeIds=new WB.DataBufferBuilder(new Int8Array(0),1),typeof e.valueToChildTypeId=="function"&&(this._valueToChildTypeId=e.valueToChildTypeId)}get typeIdToChildIndex(){return this.type.typeIdToChildIndex}append(e,r){return this.set(this.length,e,r)}set(e,r,n){return n===void 0&&(n=this._valueToChildTypeId(this,r,e)),this.setValid(e,this.isValid(r))&&this.setValue(e,r,n),this}setValue(e,r,n){this._typeIds.set(e,n),super.setValue(e,r)}addChild(e,r=`${this.children.length}`){let n=this.children.push(e),{type:{children:i,mode:o,typeIds:f}}=this,s=[...i,new MD.Field(r,e.type)];return this.type=new UD.Union(o,[...f,n],s),n}_valueToChildTypeId(e,r,n){throw new Error("Cannot map UnionBuilder value to child typeId. Pass the `childTypeId` as the second argument to unionBuilder.append(), or supply a `valueToChildTypeId` function as part of the UnionBuilder constructor options.")}};nf.UnionBuilder=Sd;var YB=class extends Sd{};nf.SparseUnionBuilder=YB;var KB=class extends Sd{constructor(e){super(e);this._offsets=new WB.DataBufferBuilder(new Int32Array(0))}setValue(e,r,n){let i=this.type.typeIdToChildIndex[n];return this._offsets.set(e,this.getChildAt(i).length),super.setValue(e,r,n)}};nf.DenseUnionBuilder=KB});var xr=z(xd=>{"use strict";Object.defineProperty(xd,"__esModule",{value:!0});xd.Visitor=void 0;var LD=Xn(),VD=or(),Z=Rt(),CD=_t(),Ot=class{visitMany(e,...r){return e.map((n,i)=>this.visit(n,...r.map(o=>o[i])))}visit(...e){return this.getVisitFn(e[0],!1).apply(this,e)}getVisitFn(e,r=!0){return WD(this,e,r)}visitNull(e,...r){return null}visitBool(e,...r){return null}visitInt(e,...r){return null}visitFloat(e,...r){return null}visitUtf8(e,...r){return null}visitBinary(e,...r){return null}visitFixedSizeBinary(e,...r){return null}visitDate(e,...r){return null}visitTimestamp(e,...r){return null}visitTime(e,...r){return null}visitDecimal(e,...r){return null}visitList(e,...r){return null}visitStruct(e,...r){return null}visitUnion(e,...r){return null}visitDictionary(e,...r){return null}visitInterval(e,...r){return null}visitFixedSizeList(e,...r){return null}visitMap(e,...r){return null}};xd.Visitor=Ot;function WD(t,e,r=!0){let n=null,i=Z.Type.NONE;switch(e instanceof LD.Data||e instanceof VD.Vector?i=ug(e.type):e instanceof CD.DataType?i=ug(e):typeof(i=e)!="number"&&(i=Z.Type[e]),i){case Z.Type.Null:n=t.visitNull;break;case Z.Type.Bool:n=t.visitBool;break;case Z.Type.Int:n=t.visitInt;break;case Z.Type.Int8:n=t.visitInt8||t.visitInt;break;case Z.Type.Int16:n=t.visitInt16||t.visitInt;break;case Z.Type.Int32:n=t.visitInt32||t.visitInt;break;case Z.Type.Int64:n=t.visitInt64||t.visitInt;break;case Z.Type.Uint8:n=t.visitUint8||t.visitInt;break;case Z.Type.Uint16:n=t.visitUint16||t.visitInt;break;case Z.Type.Uint32:n=t.visitUint32||t.visitInt;break;case Z.Type.Uint64:n=t.visitUint64||t.visitInt;break;case Z.Type.Float:n=t.visitFloat;break;case Z.Type.Float16:n=t.visitFloat16||t.visitFloat;break;case Z.Type.Float32:n=t.visitFloat32||t.visitFloat;break;case Z.Type.Float64:n=t.visitFloat64||t.visitFloat;break;case Z.Type.Utf8:n=t.visitUtf8;break;case Z.Type.Binary:n=t.visitBinary;break;case Z.Type.FixedSizeBinary:n=t.visitFixedSizeBinary;break;case Z.Type.Date:n=t.visitDate;break;case Z.Type.DateDay:n=t.visitDateDay||t.visitDate;break;case Z.Type.DateMillisecond:n=t.visitDateMillisecond||t.visitDate;break;case Z.Type.Timestamp:n=t.visitTimestamp;break;case Z.Type.TimestampSecond:n=t.visitTimestampSecond||t.visitTimestamp;break;case Z.Type.TimestampMillisecond:n=t.visitTimestampMillisecond||t.visitTimestamp;break;case Z.Type.TimestampMicrosecond:n=t.visitTimestampMicrosecond||t.visitTimestamp;break;case Z.Type.TimestampNanosecond:n=t.visitTimestampNanosecond||t.visitTimestamp;break;case Z.Type.Time:n=t.visitTime;break;case Z.Type.TimeSecond:n=t.visitTimeSecond||t.visitTime;break;case Z.Type.TimeMillisecond:n=t.visitTimeMillisecond||t.visitTime;break;case Z.Type.TimeMicrosecond:n=t.visitTimeMicrosecond||t.visitTime;break;case Z.Type.TimeNanosecond:n=t.visitTimeNanosecond||t.visitTime;break;case Z.Type.Decimal:n=t.visitDecimal;break;case Z.Type.List:n=t.visitList;break;case Z.Type.Struct:n=t.visitStruct;break;case Z.Type.Union:n=t.visitUnion;break;case Z.Type.DenseUnion:n=t.visitDenseUnion||t.visitUnion;break;case Z.Type.SparseUnion:n=t.visitSparseUnion||t.visitUnion;break;case Z.Type.Dictionary:n=t.visitDictionary;break;case Z.Type.Interval:n=t.visitInterval;break;case Z.Type.IntervalDayTime:n=t.visitIntervalDayTime||t.visitInterval;break;case Z.Type.IntervalYearMonth:n=t.visitIntervalYearMonth||t.visitInterval;break;case Z.Type.FixedSizeList:n=t.visitFixedSizeList;break;case Z.Type.Map:n=t.visitMap;break}if(typeof n=="function")return n;if(!r)return()=>null;throw new Error(`Unrecognized type '${Z.Type[i]}'`)}function ug(t){switch(t.typeId){case Z.Type.Null:return Z.Type.Null;case Z.Type.Int:{let{bitWidth:e,isSigned:r}=t;switch(e){case 8:return r?Z.Type.Int8:Z.Type.Uint8;case 16:return r?Z.Type.Int16:Z.Type.Uint16;case 32:return r?Z.Type.Int32:Z.Type.Uint32;case 64:return r?Z.Type.Int64:Z.Type.Uint64}return Z.Type.Int}case Z.Type.Float:switch(t.precision){case Z.Precision.HALF:return Z.Type.Float16;case Z.Precision.SINGLE:return Z.Type.Float32;case Z.Precision.DOUBLE:return Z.Type.Float64}return Z.Type.Float;case Z.Type.Binary:return Z.Type.Binary;case Z.Type.Utf8:return Z.Type.Utf8;case Z.Type.Bool:return Z.Type.Bool;case Z.Type.Decimal:return Z.Type.Decimal;case Z.Type.Time:switch(t.unit){case Z.TimeUnit.SECOND:return Z.Type.TimeSecond;case Z.TimeUnit.MILLISECOND:return Z.Type.TimeMillisecond;case Z.TimeUnit.MICROSECOND:return Z.Type.TimeMicrosecond;case Z.TimeUnit.NANOSECOND:return Z.Type.TimeNanosecond}return Z.Type.Time;case Z.Type.Timestamp:switch(t.unit){case Z.TimeUnit.SECOND:return Z.Type.TimestampSecond;case Z.TimeUnit.MILLISECOND:return Z.Type.TimestampMillisecond;case Z.TimeUnit.MICROSECOND:return Z.Type.TimestampMicrosecond;case Z.TimeUnit.NANOSECOND:return Z.Type.TimestampNanosecond}return Z.Type.Timestamp;case Z.Type.Date:switch(t.unit){case Z.DateUnit.DAY:return Z.Type.DateDay;case Z.DateUnit.MILLISECOND:return Z.Type.DateMillisecond}return Z.Type.Date;case Z.Type.Interval:switch(t.unit){case Z.IntervalUnit.DAY_TIME:return Z.Type.IntervalDayTime;case Z.IntervalUnit.YEAR_MONTH:return Z.Type.IntervalYearMonth}return Z.Type.Interval;case Z.Type.Map:return Z.Type.Map;case Z.Type.List:return Z.Type.List;case Z.Type.Struct:return Z.Type.Struct;case Z.Type.Union:switch(t.mode){case Z.UnionMode.Dense:return Z.Type.DenseUnion;case Z.UnionMode.Sparse:return Z.Type.SparseUnion}return Z.Type.Union;case Z.Type.FixedSizeBinary:return Z.Type.FixedSizeBinary;case Z.Type.FixedSizeList:return Z.Type.FixedSizeList;case Z.Type.Dictionary:return Z.Type.Dictionary}throw new Error(`Unrecognized type '${Z.Type[t.typeId]}'`)}Ot.prototype.visitInt8=null;Ot.prototype.visitInt16=null;Ot.prototype.visitInt32=null;Ot.prototype.visitInt64=null;Ot.prototype.visitUint8=null;Ot.prototype.visitUint16=null;Ot.prototype.visitUint32=null;Ot.prototype.visitUint64=null;Ot.prototype.visitFloat16=null;Ot.prototype.visitFloat32=null;Ot.prototype.visitFloat64=null;Ot.prototype.visitDateDay=null;Ot.prototype.visitDateMillisecond=null;Ot.prototype.visitTimestampSecond=null;Ot.prototype.visitTimestampMillisecond=null;Ot.prototype.visitTimestampMicrosecond=null;Ot.prototype.visitTimestampNanosecond=null;Ot.prototype.visitTimeSecond=null;Ot.prototype.visitTimeMillisecond=null;Ot.prototype.visitTimeMicrosecond=null;Ot.prototype.visitTimeNanosecond=null;Ot.prototype.visitDenseUnion=null;Ot.prototype.visitSparseUnion=null;Ot.prototype.visitIntervalDayTime=null;Ot.prototype.visitIntervalYearMonth=null});var dg=z(ca=>{"use strict";Object.defineProperty(ca,"__esModule",{value:!0});ca.instance=ca.SetVisitor=void 0;var YD=or(),KD=xr(),GD=Gf(),JD=vu(),ZD=gr(),On=Rt(),Ge=class extends KD.Visitor{};ca.SetVisitor=Ge;var XD=(t,e,r)=>{t[e]=r/864e5|0},cg=(t,e,r)=>{t[e]=r%4294967296|0,t[e+1]=r/4294967296|0},QD=(t,e,r)=>{t[e]=r*1e3%4294967296|0,t[e+1]=r*1e3/4294967296|0},$D=(t,e,r)=>{t[e]=r*1e6%4294967296|0,t[e+1]=r*1e6/4294967296|0},GB=(t,e,r,n)=>{let{[r]:i,[r+1]:o}=e;i!=null&&o!=null&&t.set(n.subarray(0,o-i),i)},eF=({offset:t,values:e},r,n)=>{let i=t+r;n?e[i>>3]|=1<<i%8:e[i>>3]&=~(1<<i%8)},JB=({values:t},e,r)=>{XD(t,e,r.valueOf())},ZB=({values:t},e,r)=>{cg(t,e*2,r.valueOf())},Bi=({stride:t,values:e},r,n)=>{e[t*r]=n},XB=({stride:t,values:e},r,n)=>{e[t*r]=JD.float64ToUint16(n)},pg=(t,e,r)=>{switch(typeof r){case"bigint":t.values64[e]=r;break;case"number":t.values[e*t.stride]=r;break;default:{let n=r,{stride:i,ArrayType:o}=t,f=ZD.toArrayBufferView(o,n);t.values.set(f.subarray(0,i),i*e)}}},tF=({stride:t,values:e},r,n)=>{e.set(n.subarray(0,t),t*r)},rF=({values:t,valueOffsets:e},r,n)=>GB(t,e,r,n),nF=({values:t,valueOffsets:e},r,n)=>{GB(t,e,r,GD.encodeUtf8(n))},iF=(t,e,r)=>{t.type.bitWidth<64?Bi(t,e,r):pg(t,e,r)},oF=(t,e,r)=>{t.type.precision!==On.Precision.HALF?Bi(t,e,r):XB(t,e,r)},fF=(t,e,r)=>{t.type.unit===On.DateUnit.DAY?JB(t,e,r):ZB(t,e,r)},QB=({values:t},e,r)=>cg(t,e*2,r/1e3),$B=({values:t},e,r)=>cg(t,e*2,r),ek=({values:t},e,r)=>QD(t,e*2,r),tk=({values:t},e,r)=>$D(t,e*2,r),sF=(t,e,r)=>{switch(t.type.unit){case On.TimeUnit.SECOND:return QB(t,e,r);case On.TimeUnit.MILLISECOND:return $B(t,e,r);case On.TimeUnit.MICROSECOND:return ek(t,e,r);case On.TimeUnit.NANOSECOND:return tk(t,e,r)}},rk=({values:t,stride:e},r,n)=>{t[e*r]=n},nk=({values:t,stride:e},r,n)=>{t[e*r]=n},ik=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},ok=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},aF=(t,e,r)=>{switch(t.type.unit){case On.TimeUnit.SECOND:return rk(t,e,r);case On.TimeUnit.MILLISECOND:return nk(t,e,r);case On.TimeUnit.MICROSECOND:return ik(t,e,r);case On.TimeUnit.NANOSECOND:return ok(t,e,r)}},lF=({values:t},e,r)=>{t.set(r.subarray(0,4),4*e)},uF=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets;for(let o=-1,f=i[e],s=i[e+1];f<s;)n.set(f++,r.get(++o))},cF=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets,o=r instanceof Map?[...r]:Object.entries(r);for(let f=-1,s=i[e],l=i[e+1];s<l;)n.set(s++,o[++f])},pF=(t,e)=>(r,n,i)=>r&&r.set(t,e[i]),dF=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(i)),mF=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(n.name)),bF=(t,e)=>(r,n,i)=>r&&r.set(t,e[n.name]),wF=(t,e,r)=>{let n=r instanceof Map?mF(e,r):r instanceof YD.Vector?dF(e,r):Array.isArray(r)?pF(e,r):bF(e,r);t.type.children.forEach((i,o)=>n(t.getChildAt(o),i,o))},hF=(t,e,r)=>{t.type.mode===On.UnionMode.Dense?fk(t,e,r):sk(t,e,r)},fk=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(t.valueOffsets[e],r)},sk=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(e,r)},gF=(t,e,r)=>{let n=t.getKey(e);n!==null&&t.setValue(n,r)},yF=(t,e,r)=>{t.type.unit===On.IntervalUnit.DAY_TIME?ak(t,e,r):lk(t,e,r)},ak=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},lk=({values:t},e,r)=>{t[e]=r[0]*12+r[1]%12},jF=(t,e,r)=>{let n=t.getChildAt(0),{stride:i}=t;for(let o=-1,f=e*i;++o<i;)n.set(f+o,r.get(o))};Ge.prototype.visitBool=eF;Ge.prototype.visitInt=iF;Ge.prototype.visitInt8=Bi;Ge.prototype.visitInt16=Bi;Ge.prototype.visitInt32=Bi;Ge.prototype.visitInt64=pg;Ge.prototype.visitUint8=Bi;Ge.prototype.visitUint16=Bi;Ge.prototype.visitUint32=Bi;Ge.prototype.visitUint64=pg;Ge.prototype.visitFloat=oF;Ge.prototype.visitFloat16=XB;Ge.prototype.visitFloat32=Bi;Ge.prototype.visitFloat64=Bi;Ge.prototype.visitUtf8=nF;Ge.prototype.visitBinary=rF;Ge.prototype.visitFixedSizeBinary=tF;Ge.prototype.visitDate=fF;Ge.prototype.visitDateDay=JB;Ge.prototype.visitDateMillisecond=ZB;Ge.prototype.visitTimestamp=sF;Ge.prototype.visitTimestampSecond=QB;Ge.prototype.visitTimestampMillisecond=$B;Ge.prototype.visitTimestampMicrosecond=ek;Ge.prototype.visitTimestampNanosecond=tk;Ge.prototype.visitTime=aF;Ge.prototype.visitTimeSecond=rk;Ge.prototype.visitTimeMillisecond=nk;Ge.prototype.visitTimeMicrosecond=ik;Ge.prototype.visitTimeNanosecond=ok;Ge.prototype.visitDecimal=lF;Ge.prototype.visitList=uF;Ge.prototype.visitStruct=wF;Ge.prototype.visitUnion=hF;Ge.prototype.visitDenseUnion=fk;Ge.prototype.visitSparseUnion=sk;Ge.prototype.visitDictionary=gF;Ge.prototype.visitInterval=yF;Ge.prototype.visitIntervalDayTime=ak;Ge.prototype.visitIntervalYearMonth=lk;Ge.prototype.visitFixedSizeList=jF;Ge.prototype.visitMap=cF;ca.instance=new Ge});var uk=z(pa=>{"use strict";Object.defineProperty(pa,"__esModule",{value:!0});pa.instance=pa.GetBuilderCtor=void 0;var _F=xr(),qF=yd(),vF=Vh(),mg=Wh(),TF=Yh(),BF=Gh(),kF=Jh(),IF=fg(),Ad=Zh(),bg=tg(),co=Qh(),SF=og(),xF=sg(),AF=Ch(),EF=ag(),Su=eg(),xu=$h(),wg=lg(),OF=_d(),hg=class extends _F.Visitor{visitNull(){return AF.NullBuilder}visitBool(){return vF.BoolBuilder}visitInt(){return co.IntBuilder}visitInt8(){return co.Int8Builder}visitInt16(){return co.Int16Builder}visitInt32(){return co.Int32Builder}visitInt64(){return co.Int64Builder}visitUint8(){return co.Uint8Builder}visitUint16(){return co.Uint16Builder}visitUint32(){return co.Uint32Builder}visitUint64(){return co.Uint64Builder}visitFloat(){return Ad.FloatBuilder}visitFloat16(){return Ad.Float16Builder}visitFloat32(){return Ad.Float32Builder}visitFloat64(){return Ad.Float64Builder}visitUtf8(){return OF.Utf8Builder}visitBinary(){return qF.BinaryBuilder}visitFixedSizeBinary(){return kF.FixedSizeBinaryBuilder}visitDate(){return mg.DateBuilder}visitDateDay(){return mg.DateDayBuilder}visitDateMillisecond(){return mg.DateMillisecondBuilder}visitTimestamp(){return Su.TimestampBuilder}visitTimestampSecond(){return Su.TimestampSecondBuilder}visitTimestampMillisecond(){return Su.TimestampMillisecondBuilder}visitTimestampMicrosecond(){return Su.TimestampMicrosecondBuilder}visitTimestampNanosecond(){return Su.TimestampNanosecondBuilder}visitTime(){return xu.TimeBuilder}visitTimeSecond(){return xu.TimeSecondBuilder}visitTimeMillisecond(){return xu.TimeMillisecondBuilder}visitTimeMicrosecond(){return xu.TimeMicrosecondBuilder}visitTimeNanosecond(){return xu.TimeNanosecondBuilder}visitDecimal(){return TF.DecimalBuilder}visitList(){return SF.ListBuilder}visitStruct(){return EF.StructBuilder}visitUnion(){return wg.UnionBuilder}visitDenseUnion(){return wg.DenseUnionBuilder}visitSparseUnion(){return wg.SparseUnionBuilder}visitDictionary(){return BF.DictionaryBuilder}visitInterval(){return bg.IntervalBuilder}visitIntervalDayTime(){return bg.IntervalDayTimeBuilder}visitIntervalYearMonth(){return bg.IntervalYearMonthBuilder}visitFixedSizeList(){return IF.FixedSizeListBuilder}visitMap(){return xF.MapBuilder}};pa.GetBuilderCtor=hg;pa.instance=new hg});var Od=z(ue=>{"use strict";Object.defineProperty(ue,"__esModule",{value:!0});ue.DenseUnionBuilder=ue.SparseUnionBuilder=ue.UnionBuilder=ue.StructBuilder=ue.MapBuilder=ue.FixedSizeListBuilder=ue.ListBuilder=ue.BinaryBuilder=ue.Utf8Builder=ue.IntervalYearMonthBuilder=ue.IntervalDayTimeBuilder=ue.IntervalBuilder=ue.TimestampNanosecondBuilder=ue.TimestampMicrosecondBuilder=ue.TimestampMillisecondBuilder=ue.TimestampSecondBuilder=ue.TimestampBuilder=ue.TimeNanosecondBuilder=ue.TimeMicrosecondBuilder=ue.TimeMillisecondBuilder=ue.TimeSecondBuilder=ue.TimeBuilder=ue.Uint64Builder=ue.Uint32Builder=ue.Uint16Builder=ue.Uint8Builder=ue.Int64Builder=ue.Int32Builder=ue.Int16Builder=ue.Int8Builder=ue.IntBuilder=ue.Float64Builder=ue.Float32Builder=ue.Float16Builder=ue.FloatBuilder=ue.FixedSizeBinaryBuilder=ue.DictionaryBuilder=ue.DecimalBuilder=ue.DateMillisecondBuilder=ue.DateDayBuilder=ue.DateBuilder=ue.NullBuilder=ue.BoolBuilder=ue.Builder=void 0;var NF=Xt();Object.defineProperty(ue,"Builder",{enumerable:!0,get:function(){return NF.Builder}});var DF=Vh();Object.defineProperty(ue,"BoolBuilder",{enumerable:!0,get:function(){return DF.BoolBuilder}});var FF=Ch();Object.defineProperty(ue,"NullBuilder",{enumerable:!0,get:function(){return FF.NullBuilder}});var gg=Wh();Object.defineProperty(ue,"DateBuilder",{enumerable:!0,get:function(){return gg.DateBuilder}});Object.defineProperty(ue,"DateDayBuilder",{enumerable:!0,get:function(){return gg.DateDayBuilder}});Object.defineProperty(ue,"DateMillisecondBuilder",{enumerable:!0,get:function(){return gg.DateMillisecondBuilder}});var PF=Yh();Object.defineProperty(ue,"DecimalBuilder",{enumerable:!0,get:function(){return PF.DecimalBuilder}});var RF=Gh();Object.defineProperty(ue,"DictionaryBuilder",{enumerable:!0,get:function(){return RF.DictionaryBuilder}});var HF=Jh();Object.defineProperty(ue,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return HF.FixedSizeBinaryBuilder}});var Ed=Zh();Object.defineProperty(ue,"FloatBuilder",{enumerable:!0,get:function(){return Ed.FloatBuilder}});Object.defineProperty(ue,"Float16Builder",{enumerable:!0,get:function(){return Ed.Float16Builder}});Object.defineProperty(ue,"Float32Builder",{enumerable:!0,get:function(){return Ed.Float32Builder}});Object.defineProperty(ue,"Float64Builder",{enumerable:!0,get:function(){return Ed.Float64Builder}});var po=Qh();Object.defineProperty(ue,"IntBuilder",{enumerable:!0,get:function(){return po.IntBuilder}});Object.defineProperty(ue,"Int8Builder",{enumerable:!0,get:function(){return po.Int8Builder}});Object.defineProperty(ue,"Int16Builder",{enumerable:!0,get:function(){return po.Int16Builder}});Object.defineProperty(ue,"Int32Builder",{enumerable:!0,get:function(){return po.Int32Builder}});Object.defineProperty(ue,"Int64Builder",{enumerable:!0,get:function(){return po.Int64Builder}});Object.defineProperty(ue,"Uint8Builder",{enumerable:!0,get:function(){return po.Uint8Builder}});Object.defineProperty(ue,"Uint16Builder",{enumerable:!0,get:function(){return po.Uint16Builder}});Object.defineProperty(ue,"Uint32Builder",{enumerable:!0,get:function(){return po.Uint32Builder}});Object.defineProperty(ue,"Uint64Builder",{enumerable:!0,get:function(){return po.Uint64Builder}});var Au=$h();Object.defineProperty(ue,"TimeBuilder",{enumerable:!0,get:function(){return Au.TimeBuilder}});Object.defineProperty(ue,"TimeSecondBuilder",{enumerable:!0,get:function(){return Au.TimeSecondBuilder}});Object.defineProperty(ue,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return Au.TimeMillisecondBuilder}});Object.defineProperty(ue,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return Au.TimeMicrosecondBuilder}});Object.defineProperty(ue,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return Au.TimeNanosecondBuilder}});var Eu=eg();Object.defineProperty(ue,"TimestampBuilder",{enumerable:!0,get:function(){return Eu.TimestampBuilder}});Object.defineProperty(ue,"TimestampSecondBuilder",{enumerable:!0,get:function(){return Eu.TimestampSecondBuilder}});Object.defineProperty(ue,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return Eu.TimestampMillisecondBuilder}});Object.defineProperty(ue,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return Eu.TimestampMicrosecondBuilder}});Object.defineProperty(ue,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return Eu.TimestampNanosecondBuilder}});var yg=tg();Object.defineProperty(ue,"IntervalBuilder",{enumerable:!0,get:function(){return yg.IntervalBuilder}});Object.defineProperty(ue,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return yg.IntervalDayTimeBuilder}});Object.defineProperty(ue,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return yg.IntervalYearMonthBuilder}});var MF=_d();Object.defineProperty(ue,"Utf8Builder",{enumerable:!0,get:function(){return MF.Utf8Builder}});var zF=yd();Object.defineProperty(ue,"BinaryBuilder",{enumerable:!0,get:function(){return zF.BinaryBuilder}});var UF=og();Object.defineProperty(ue,"ListBuilder",{enumerable:!0,get:function(){return UF.ListBuilder}});var LF=fg();Object.defineProperty(ue,"FixedSizeListBuilder",{enumerable:!0,get:function(){return LF.FixedSizeListBuilder}});var VF=sg();Object.defineProperty(ue,"MapBuilder",{enumerable:!0,get:function(){return VF.MapBuilder}});var CF=ag();Object.defineProperty(ue,"StructBuilder",{enumerable:!0,get:function(){return CF.StructBuilder}});var jg=lg();Object.defineProperty(ue,"UnionBuilder",{enumerable:!0,get:function(){return jg.UnionBuilder}});Object.defineProperty(ue,"SparseUnionBuilder",{enumerable:!0,get:function(){return jg.SparseUnionBuilder}});Object.defineProperty(ue,"DenseUnionBuilder",{enumerable:!0,get:function(){return jg.DenseUnionBuilder}});var _g=Rt(),WF=_d(),YF=Xt(),ck=dg(),pk=uk();YF.Builder.new=dk;function dk(t){let e=t.type,r=new(pk.instance.getVisitFn(e)())(t);if(e.children&&e.children.length>0){let n=t.children||[],i={nullValues:t.nullValues},o=Array.isArray(n)?(f,s)=>n[s]||i:({name:f})=>n[f]||i;e.children.forEach((f,s)=>{let{type:l}=f,u=o(f,s);r.children.push(dk({...u,type:l}))})}return r}Object.keys(_g.Type).map(t=>_g.Type[t]).filter(t=>typeof t=="number"&&t!==_g.Type.NONE).forEach(t=>{let e=pk.instance.visit(t);e.prototype._setValue=ck.instance.getVisitFn(t)});WF.Utf8Builder.prototype._setValue=ck.instance.visitBinary});var mk=z(da=>{"use strict";Object.defineProperty(da,"__esModule",{value:!0});da.Block=da.Footer=void 0;var KF=oo(),Nd=Zo(),Nn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFooter(e,r){return(r||new Nn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFooter(e,r){return e.setPosition(e.position()+KF.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Nn).__init(e.readInt32(e.position())+e.position(),e)}version(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Nd.MetadataVersion.V1}schema(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new Nd.Schema).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}dictionaries(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new Dd).__init(this.bb.__vector(this.bb_pos+n)+e*24,this.bb):null}dictionariesLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}recordBatches(e,r){let n=this.bb.__offset(this.bb_pos,10);return n?(r||new Dd).__init(this.bb.__vector(this.bb_pos+n)+e*24,this.bb):null}recordBatchesLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,12);return n?(r||new Nd.KeyValue).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,12);return e?this.bb.__vector_len(this.bb_pos+e):0}static startFooter(e){e.startObject(5)}static addVersion(e,r){e.addFieldInt16(0,r,Nd.MetadataVersion.V1)}static addSchema(e,r){e.addFieldOffset(1,r,0)}static addDictionaries(e,r){e.addFieldOffset(2,r,0)}static startDictionariesVector(e,r){e.startVector(24,r,8)}static addRecordBatches(e,r){e.addFieldOffset(3,r,0)}static startRecordBatchesVector(e,r){e.startVector(24,r,8)}static addCustomMetadata(e,r){e.addFieldOffset(4,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endFooter(e){return e.endObject()}static finishFooterBuffer(e,r){e.finish(r)}static finishSizePrefixedFooterBuffer(e,r){e.finish(r,void 0,!0)}static createFooter(e,r,n,i,o,f){return Nn.startFooter(e),Nn.addVersion(e,r),Nn.addSchema(e,n),Nn.addDictionaries(e,i),Nn.addRecordBatches(e,o),Nn.addCustomMetadata(e,f),Nn.endFooter(e)}};da.Footer=Nn;var Dd=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}offset(){return this.bb.readInt64(this.bb_pos)}metaDataLength(){return this.bb.readInt32(this.bb_pos+8)}bodyLength(){return this.bb.readInt64(this.bb_pos+16)}static createBlock(e,r,n,i){return e.prep(8,24),e.writeInt64(i),e.pad(4),e.writeInt32(n),e.writeInt64(r),e.offset()}};da.Block=Dd});var Tg=z(ma=>{"use strict";Object.defineProperty(ma,"__esModule",{value:!0});ma.FileBlock=ma.Footer=void 0;var $n=mk(),qg=oo(),bk=qg.flatbuffers.Long,GF=qg.flatbuffers.Builder,JF=qg.flatbuffers.ByteBuffer,wk=vr(),hk=Rt(),ZF=gr(),vg=class{constructor(e,r=hk.MetadataVersion.V4,n,i){this.schema=e,this.version=r,n&&(this._recordBatches=n),i&&(this._dictionaryBatches=i)}static decode(e){e=new JF(ZF.toUint8Array(e));let r=$n.Footer.getRootAsFooter(e),n=wk.Schema.decode(r.schema());return new gk(n,r)}static encode(e){let r=new GF,n=wk.Schema.encode(r,e.schema);$n.Footer.startRecordBatchesVector(r,e.numRecordBatches),[...e.recordBatches()].slice().reverse().forEach(f=>of.encode(r,f));let i=r.endVector();$n.Footer.startDictionariesVector(r,e.numDictionaries),[...e.dictionaryBatches()].slice().reverse().forEach(f=>of.encode(r,f));let o=r.endVector();return $n.Footer.startFooter(r),$n.Footer.addSchema(r,n),$n.Footer.addVersion(r,hk.MetadataVersion.V4),$n.Footer.addRecordBatches(r,i),$n.Footer.addDictionaries(r,o),$n.Footer.finishFooterBuffer(r,$n.Footer.endFooter(r)),r.asUint8Array()}get numRecordBatches(){return this._recordBatches.length}get numDictionaries(){return this._dictionaryBatches.length}*recordBatches(){for(let e,r=-1,n=this.numRecordBatches;++r<n;)(e=this.getRecordBatch(r))&&(yield e)}*dictionaryBatches(){for(let e,r=-1,n=this.numDictionaries;++r<n;)(e=this.getDictionaryBatch(r))&&(yield e)}getRecordBatch(e){return e>=0&&e<this.numRecordBatches&&this._recordBatches[e]||null}getDictionaryBatch(e){return e>=0&&e<this.numDictionaries&&this._dictionaryBatches[e]||null}};ma.Footer=vg;var gk=class extends vg{constructor(e,r){super(e,r.version());this._footer=r}get numRecordBatches(){return this._footer.recordBatchesLength()}get numDictionaries(){return this._footer.dictionariesLength()}getRecordBatch(e){if(e>=0&&e<this.numRecordBatches){let r=this._footer.recordBatches(e);if(r)return of.decode(r)}return null}getDictionaryBatch(e){if(e>=0&&e<this.numDictionaries){let r=this._footer.dictionaries(e);if(r)return of.decode(r)}return null}},of=class{constructor(e,r,n){this.metaDataLength=e,this.offset=typeof n=="number"?n:n.low,this.bodyLength=typeof r=="number"?r:r.low}static decode(e){return new of(e.metaDataLength(),e.bodyLength(),e.offset())}static encode(e,r){let{metaDataLength:n}=r,i=new bk(r.offset,0),o=new bk(r.bodyLength,0);return $n.Block.createBlock(e,i,n,o)}};ma.FileBlock=of});var lf=z(af=>{"use strict";Object.defineProperty(af,"__esModule",{value:!0});af.AsyncByteStream=af.ByteStream=af.AsyncByteQueue=void 0;var ff=_u(),yk=Gf(),Ou=Xs(),Bg=gr(),ba=Fr(),kg=class extends Ou.AsyncQueue{write(e){if((e=Bg.toUint8Array(e)).byteLength>0)return super.write(e)}toString(e=!1){return e?yk.decodeUtf8(this.toUint8Array(!0)):this.toUint8Array(!1).then(yk.decodeUtf8)}toUint8Array(e=!1){return e?Bg.joinUint8Arrays(this._values)[0]:(async()=>{let r=[],n=0;for await(let i of this)r.push(i),n+=i.byteLength;return Bg.joinUint8Arrays(r,n)[0]})()}};af.AsyncByteQueue=kg;var jk=class{constructor(e){e&&(this.source=new _k(ff.default.fromIterable(e)))}[Symbol.iterator](){return this}next(e){return this.source.next(e)}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}peek(e){return this.source.peek(e)}read(e){return this.source.read(e)}};af.ByteStream=jk;var Fd=class{constructor(e){e instanceof Fd?this.source=e.source:e instanceof kg?this.source=new sf(ff.default.fromAsyncIterable(e)):ba.isReadableNodeStream(e)?this.source=new sf(ff.default.fromNodeStream(e)):ba.isReadableDOMStream(e)?this.source=new sf(ff.default.fromDOMStream(e)):ba.isFetchResponse(e)?this.source=new sf(ff.default.fromDOMStream(e.body)):ba.isIterable(e)?this.source=new sf(ff.default.fromIterable(e)):ba.isPromise(e)?this.source=new sf(ff.default.fromAsyncIterable(e)):ba.isAsyncIterable(e)&&(this.source=new sf(ff.default.fromAsyncIterable(e)))}[Symbol.asyncIterator](){return this}next(e){return this.source.next(e)}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}get closed(){return this.source.closed}cancel(e){return this.source.cancel(e)}peek(e){return this.source.peek(e)}read(e){return this.source.read(e)}};af.AsyncByteStream=Fd;var _k=class{constructor(e){this.source=e}cancel(e){this.return(e)}peek(e){return this.next(e,"peek").value}read(e){return this.next(e,"read").value}next(e,r="read"){return this.source.next({cmd:r,size:e})}throw(e){return Object.create(this.source.throw&&this.source.throw(e)||Ou.ITERATOR_DONE)}return(e){return Object.create(this.source.return&&this.source.return(e)||Ou.ITERATOR_DONE)}},sf=class{constructor(e){this.source=e,this._closedPromise=new Promise(r=>this._closedPromiseResolve=r)}async cancel(e){await this.return(e)}get closed(){return this._closedPromise}async read(e){return(await this.next(e,"read")).value}async peek(e){return(await this.next(e,"peek")).value}async next(e,r="read"){return await this.source.next({cmd:r,size:e})}async throw(e){let r=this.source.throw&&await this.source.throw(e)||Ou.ITERATOR_DONE;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)}async return(e){let r=this.source.return&&await this.source.return(e)||Ou.ITERATOR_DONE;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)}}});var Ig=z(wa=>{"use strict";Object.defineProperty(wa,"__esModule",{value:!0});wa.AsyncRandomAccessFile=wa.RandomAccessFile=void 0;var qk=lf(),XF=gr(),vk=class extends qk.ByteStream{constructor(e,r){super();this.position=0,this.buffer=XF.toUint8Array(e),this.size=typeof r=="undefined"?this.buffer.byteLength:r}readInt32(e){let{buffer:r,byteOffset:n}=this.readAt(e,4);return new DataView(r,n).getInt32(0,!0)}seek(e){return this.position=Math.min(e,this.size),e<this.size}read(e){let{buffer:r,size:n,position:i}=this;return r&&i<n?(typeof e!="number"&&(e=1/0),this.position=Math.min(n,i+Math.min(n-i,e)),r.subarray(i,this.position)):null}readAt(e,r){let n=this.buffer,i=Math.min(this.size,e+r);return n?n.subarray(e,i):new Uint8Array(r)}close(){this.buffer&&(this.buffer=null)}throw(e){return this.close(),{done:!0,value:e}}return(e){return this.close(),{done:!0,value:e}}};wa.RandomAccessFile=vk;var Tk=class extends qk.AsyncByteStream{constructor(e,r){super();this.position=0,this._handle=e,typeof r=="number"?this.size=r:this._pending=(async()=>{this.size=(await e.stat()).size,delete this._pending})()}async readInt32(e){let{buffer:r,byteOffset:n}=await this.readAt(e,4);return new DataView(r,n).getInt32(0,!0)}async seek(e){return this._pending&&await this._pending,this.position=Math.min(e,this.size),e<this.size}async read(e){this._pending&&await this._pending;let{_handle:r,size:n,position:i}=this;if(r&&i<n){typeof e!="number"&&(e=1/0);let o=i,f=0,s=0,l=Math.min(n,o+Math.min(n-o,e)),u=new Uint8Array(Math.max(0,(this.position=l)-o));for(;(o+=s)<l&&(f+=s)<u.byteLength;)({bytesRead:s}=await r.read(u,f,u.byteLength-f,o));return u}return null}async readAt(e,r){this._pending&&await this._pending;let{_handle:n,size:i}=this;if(n&&e+r<i){let o=Math.min(i,e+r),f=new Uint8Array(o-e);return(await n.read(f,0,r,e)).buffer}return new Uint8Array(r)}async close(){let e=this._handle;this._handle=null,e&&await e.close()}async throw(e){return await this.close(),{done:!0,value:e}}async return(e){return await this.close(),{done:!0,value:e}}};wa.AsyncRandomAccessFile=Tk});var xg=z(ki=>{"use strict";Object.defineProperty(ki,"__esModule",{value:!0});ki.Int128=ki.Int64=ki.Uint64=ki.BaseInt64=void 0;var QF=1<<16;function ha(t){return t<0&&(t=4294967295+t+1),`0x${t.toString(16)}`}var ga=8,Sg=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8],Pd=class{constructor(e){this.buffer=e}high(){return this.buffer[1]}low(){return this.buffer[0]}_times(e){let r=new Uint32Array([this.buffer[1]>>>16,this.buffer[1]&65535,this.buffer[0]>>>16,this.buffer[0]&65535]),n=new Uint32Array([e.buffer[1]>>>16,e.buffer[1]&65535,e.buffer[0]>>>16,e.buffer[0]&65535]),i=r[3]*n[3];this.buffer[0]=i&65535;let o=i>>>16;return i=r[2]*n[3],o+=i,i=r[3]*n[2]>>>0,o+=i,this.buffer[0]+=o<<16,this.buffer[1]=o>>>0<i?QF:0,this.buffer[1]+=o>>>16,this.buffer[1]+=r[1]*n[3]+r[2]*n[2]+r[3]*n[1],this.buffer[1]+=r[0]*n[3]+r[1]*n[2]+r[2]*n[1]+r[3]*n[0]<<16,this}_plus(e){let r=this.buffer[0]+e.buffer[0]>>>0;this.buffer[1]+=e.buffer[1],r<this.buffer[0]>>>0&&++this.buffer[1],this.buffer[0]=r}lessThan(e){return this.buffer[1]<e.buffer[1]||this.buffer[1]===e.buffer[1]&&this.buffer[0]<e.buffer[0]}equals(e){return this.buffer[1]===e.buffer[1]&&this.buffer[0]==e.buffer[0]}greaterThan(e){return e.lessThan(this)}hex(){return`${ha(this.buffer[1])} ${ha(this.buffer[0])}`}};ki.BaseInt64=Pd;var qt=class extends Pd{times(e){return this._times(e),this}plus(e){return this._plus(e),this}static from(e,r=new Uint32Array(2)){return qt.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return qt.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.length,i=new qt(r);for(let o=0;o<n;){let f=ga<n-o?ga:n-o,s=new qt(new Uint32Array([parseInt(e.substr(o,f),10),0])),l=new qt(new Uint32Array([Sg[f],0]));i.times(l),i.plus(s),o+=f}return i}static convertArray(e){let r=new Uint32Array(e.length*2);for(let n=-1,i=e.length;++n<i;)qt.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new qt(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new qt(new Uint32Array(e.buffer)).plus(r)}};ki.Uint64=qt;var sn=class extends Pd{negate(){return this.buffer[0]=~this.buffer[0]+1,this.buffer[1]=~this.buffer[1],this.buffer[0]==0&&++this.buffer[1],this}times(e){return this._times(e),this}plus(e){return this._plus(e),this}lessThan(e){let r=this.buffer[1]<<0,n=e.buffer[1]<<0;return r<n||r===n&&this.buffer[0]<e.buffer[0]}static from(e,r=new Uint32Array(2)){return sn.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return sn.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.startsWith("-"),i=e.length,o=new sn(r);for(let f=n?1:0;f<i;){let s=ga<i-f?ga:i-f,l=new sn(new Uint32Array([parseInt(e.substr(f,s),10),0])),u=new sn(new Uint32Array([Sg[s],0]));o.times(u),o.plus(l),f+=s}return n?o.negate():o}static convertArray(e){let r=new Uint32Array(e.length*2);for(let n=-1,i=e.length;++n<i;)sn.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new sn(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new sn(new Uint32Array(e.buffer)).plus(r)}};ki.Int64=sn;var ei=class{constructor(e){this.buffer=e}high(){return new sn(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2))}low(){return new sn(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset,2))}negate(){return this.buffer[0]=~this.buffer[0]+1,this.buffer[1]=~this.buffer[1],this.buffer[2]=~this.buffer[2],this.buffer[3]=~this.buffer[3],this.buffer[0]==0&&++this.buffer[1],this.buffer[1]==0&&++this.buffer[2],this.buffer[2]==0&&++this.buffer[3],this}times(e){let r=new qt(new Uint32Array([this.buffer[3],0])),n=new qt(new Uint32Array([this.buffer[2],0])),i=new qt(new Uint32Array([this.buffer[1],0])),o=new qt(new Uint32Array([this.buffer[0],0])),f=new qt(new Uint32Array([e.buffer[3],0])),s=new qt(new Uint32Array([e.buffer[2],0])),l=new qt(new Uint32Array([e.buffer[1],0])),u=new qt(new Uint32Array([e.buffer[0],0])),c=qt.multiply(o,u);this.buffer[0]=c.low();let _=new qt(new Uint32Array([c.high(),0]));return c=qt.multiply(i,u),_.plus(c),c=qt.multiply(o,l),_.plus(c),this.buffer[1]=_.low(),this.buffer[3]=_.lessThan(c)?1:0,this.buffer[2]=_.high(),new qt(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2)).plus(qt.multiply(n,u)).plus(qt.multiply(i,l)).plus(qt.multiply(o,s)),this.buffer[3]+=qt.multiply(r,u).plus(qt.multiply(n,l)).plus(qt.multiply(i,s)).plus(qt.multiply(o,f)).low(),this}plus(e){let r=new Uint32Array(4);return r[3]=this.buffer[3]+e.buffer[3]>>>0,r[2]=this.buffer[2]+e.buffer[2]>>>0,r[1]=this.buffer[1]+e.buffer[1]>>>0,r[0]=this.buffer[0]+e.buffer[0]>>>0,r[0]<this.buffer[0]>>>0&&++r[1],r[1]<this.buffer[1]>>>0&&++r[2],r[2]<this.buffer[2]>>>0&&++r[3],this.buffer[3]=r[3],this.buffer[2]=r[2],this.buffer[1]=r[1],this.buffer[0]=r[0],this}hex(){return`${ha(this.buffer[3])} ${ha(this.buffer[2])} ${ha(this.buffer[1])} ${ha(this.buffer[0])}`}static multiply(e,r){return new ei(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new ei(new Uint32Array(e.buffer)).plus(r)}static from(e,r=new Uint32Array(4)){return ei.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(4)){return ei.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(4)){let n=e.startsWith("-"),i=e.length,o=new ei(r);for(let f=n?1:0;f<i;){let s=ga<i-f?ga:i-f,l=new ei(new Uint32Array([parseInt(e.substr(f,s),10),0,0,0])),u=new ei(new Uint32Array([Sg[s],0,0,0]));o.times(u),o.plus(l),f+=s}return n?o.negate():o}static convertArray(e){let r=new Uint32Array(e.length*4);for(let n=-1,i=e.length;++n<i;)ei.from(e[n],new Uint32Array(r.buffer,r.byteOffset+4*4*n,4));return r}};ki.Int128=ei});var Sk=z(ya=>{"use strict";Object.defineProperty(ya,"__esModule",{value:!0});ya.JSONVectorLoader=ya.VectorLoader=void 0;var jr=Xn(),$F=vr(),mo=_t(),eP=xr(),Bk=qi(),tP=Gf(),Rd=xg(),kk=Rt(),Ii=gr(),Ag=class extends eP.Visitor{constructor(e,r,n,i){super();this.nodesIndex=-1,this.buffersIndex=-1,this.bytes=e,this.nodes=r,this.buffers=n,this.dictionaries=i}visit(e){return super.visit(e instanceof $F.Field?e.type:e)}visitNull(e,{length:r}=this.nextFieldNode()){return jr.Data.Null(e,0,r)}visitBool(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Bool(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitInt(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Int(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFloat(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Float(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitUtf8(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Utf8(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.readData(e))}visitBinary(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Binary(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.readData(e))}visitFixedSizeBinary(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.FixedSizeBinary(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDate(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Date(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTimestamp(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Timestamp(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTime(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Time(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDecimal(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Decimal(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitList(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.List(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.visit(e.children[0]))}visitStruct(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Struct(e,0,r,n,this.readNullBitmap(e,n),this.visitMany(e.children))}visitUnion(e){return e.mode===kk.UnionMode.Sparse?this.visitSparseUnion(e):this.visitDenseUnion(e)}visitDenseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Union(e,0,r,n,this.readNullBitmap(e,n),this.readTypeIds(e),this.readOffsets(e),this.visitMany(e.children))}visitSparseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Union(e,0,r,n,this.readNullBitmap(e,n),this.readTypeIds(e),this.visitMany(e.children))}visitDictionary(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Dictionary(e,0,r,n,this.readNullBitmap(e,n),this.readData(e.indices),this.readDictionary(e))}visitInterval(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Interval(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFixedSizeList(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.FixedSizeList(e,0,r,n,this.readNullBitmap(e,n),this.visit(e.children[0]))}visitMap(e,{length:r,nullCount:n}=this.nextFieldNode()){return jr.Data.Map(e,0,r,n,this.readNullBitmap(e,n),this.readOffsets(e),this.visit(e.children[0]))}nextFieldNode(){return this.nodes[++this.nodesIndex]}nextBufferRange(){return this.buffers[++this.buffersIndex]}readNullBitmap(e,r,n=this.nextBufferRange()){return r>0&&this.readData(e,n)||new Uint8Array(0)}readOffsets(e,r){return this.readData(e,r)}readTypeIds(e,r){return this.readData(e,r)}readData(e,{length:r,offset:n}=this.nextBufferRange()){return this.bytes.subarray(n,n+r)}readDictionary(e){return this.dictionaries.get(e.id)}};ya.VectorLoader=Ag;var Ik=class extends Ag{constructor(e,r,n,i){super(new Uint8Array(0),r,n,i);this.sources=e}readNullBitmap(e,r,{offset:n}=this.nextBufferRange()){return r<=0?new Uint8Array(0):Bk.packBools(this.sources[n])}readOffsets(e,{offset:r}=this.nextBufferRange()){return Ii.toArrayBufferView(Uint8Array,Ii.toArrayBufferView(Int32Array,this.sources[r]))}readTypeIds(e,{offset:r}=this.nextBufferRange()){return Ii.toArrayBufferView(Uint8Array,Ii.toArrayBufferView(e.ArrayType,this.sources[r]))}readData(e,{offset:r}=this.nextBufferRange()){let{sources:n}=this;return mo.DataType.isTimestamp(e)||(mo.DataType.isInt(e)||mo.DataType.isTime(e))&&e.bitWidth===64||mo.DataType.isDate(e)&&e.unit===kk.DateUnit.MILLISECOND?Ii.toArrayBufferView(Uint8Array,Rd.Int64.convertArray(n[r])):mo.DataType.isDecimal(e)?Ii.toArrayBufferView(Uint8Array,Rd.Int128.convertArray(n[r])):mo.DataType.isBinary(e)||mo.DataType.isFixedSizeBinary(e)?rP(n[r]):mo.DataType.isBool(e)?Bk.packBools(n[r]):mo.DataType.isUtf8(e)?tP.encodeUtf8(n[r].join("")):Ii.toArrayBufferView(Uint8Array,Ii.toArrayBufferView(e.ArrayType,n[r].map(i=>+i)))}};ya.JSONVectorLoader=Ik;function rP(t){let e=t.join(""),r=new Uint8Array(e.length/2);for(let n=0;n<e.length;n+=2)r[n>>1]=parseInt(e.substr(n,2),16);return r}});var Nu=z(_a=>{"use strict";Object.defineProperty(_a,"__esModule",{value:!0});_a.StructRow=_a.MapRow=void 0;var xk=Hh(),Ar=Symbol.for("parent"),ja=Symbol.for("rowIndex"),an=Symbol.for("keyToIdx"),ln=Symbol.for("idxToVal"),Eg=Symbol.for("nodejs.util.inspect.custom"),Si=class{constructor(e,r){this[Ar]=e,this.size=r}entries(){return this[Symbol.iterator]()}has(e){return this.get(e)!==void 0}get(e){let r;if(e!=null){let n=this[an]||(this[an]=new Map),i=n.get(e);if(i!==void 0){let o=this[ln]||(this[ln]=new Array(this.size));(r=o[i])!==void 0||(o[i]=r=this.getValue(i))}else if((i=this.getIndex(e))>-1){n.set(e,i);let o=this[ln]||(this[ln]=new Array(this.size));(r=o[i])!==void 0||(o[i]=r=this.getValue(i))}}return r}set(e,r){if(e!=null){let n=this[an]||(this[an]=new Map),i=n.get(e);if(i===void 0&&n.set(e,i=this.getIndex(e)),i>-1){let o=this[ln]||(this[ln]=new Array(this.size));o[i]=this.setValue(i,r)}}return this}clear(){throw new Error(`Clearing ${this[Symbol.toStringTag]} not supported.`)}delete(e){throw new Error(`Deleting ${this[Symbol.toStringTag]} values not supported.`)}*[Symbol.iterator](){let e=this.keys(),r=this.values(),n=this[an]||(this[an]=new Map),i=this[ln]||(this[ln]=new Array(this.size));for(let o,f,s=0,l,u;!((l=e.next()).done||(u=r.next()).done);++s)o=l.value,f=u.value,i[s]=f,n.has(o)||n.set(o,s),yield[o,f]}forEach(e,r){let n=this.keys(),i=this.values(),o=r===void 0?e:(l,u,c)=>e.call(r,l,u,c),f=this[an]||(this[an]=new Map),s=this[ln]||(this[ln]=new Array(this.size));for(let l,u,c=0,_,p;!((_=n.next()).done||(p=i.next()).done);++c)l=_.value,u=p.value,s[c]=u,f.has(l)||f.set(l,c),o(u,l,this)}toArray(){return[...this.values()]}toJSON(){let e={};return this.forEach((r,n)=>e[n]=r),e}inspect(){return this.toString()}[Eg](){return this.toString()}toString(){let e=[];return this.forEach((r,n)=>{n=xk.valueToString(n),r=xk.valueToString(r),e.push(`${n}: ${r}`)}),`{ ${e.join(", ")} }`}};Si[Symbol.toStringTag]=(t=>(Object.defineProperties(t,{size:{writable:!0,enumerable:!1,configurable:!1,value:0},[Ar]:{writable:!0,enumerable:!1,configurable:!1,value:null},[ja]:{writable:!0,enumerable:!1,configurable:!1,value:-1}}),t[Symbol.toStringTag]="Row"))(Si.prototype);var Ak=class extends Si{constructor(e){super(e,e.length);return nP(this)}keys(){return this[Ar].getChildAt(0)[Symbol.iterator]()}values(){return this[Ar].getChildAt(1)[Symbol.iterator]()}getKey(e){return this[Ar].getChildAt(0).get(e)}getIndex(e){return this[Ar].getChildAt(0).indexOf(e)}getValue(e){return this[Ar].getChildAt(1).get(e)}setValue(e,r){this[Ar].getChildAt(1).set(e,r)}};_a.MapRow=Ak;var Ek=class extends Si{constructor(e){super(e,e.type.children.length);return Ok(this)}*keys(){for(let e of this[Ar].type.children)yield e.name}*values(){for(let e of this[Ar].type.children)yield this[e.name]}getKey(e){return this[Ar].type.children[e].name}getIndex(e){return this[Ar].type.children.findIndex(r=>r.name===e)}getValue(e){return this[Ar].getChildAt(e).get(this[ja])}setValue(e,r){return this[Ar].getChildAt(e).set(this[ja],r)}};_a.StructRow=Ek;Object.setPrototypeOf(Si.prototype,Map.prototype);var Ok=(()=>{let t={enumerable:!0,configurable:!1,get:null,set:null};return e=>{let r=-1,n=e[an]||(e[an]=new Map),i=f=>function(){return this.get(f)},o=f=>function(s){return this.set(f,s)};for(let f of e.keys())n.set(f,++r),t.get=i(f),t.set=o(f),Object.prototype.hasOwnProperty.call(e,f)||(t.enumerable=!0,Object.defineProperty(e,f,t)),Object.prototype.hasOwnProperty.call(e,r)||(t.enumerable=!1,Object.defineProperty(e,r,t));return t.get=t.set=null,e}})(),nP=(()=>{if(typeof Proxy=="undefined")return Ok;let t=Si.prototype.has,e=Si.prototype.get,r=Si.prototype.set,n=Si.prototype.getKey,i={isExtensible(){return!1},deleteProperty(){return!1},preventExtensions(){return!0},ownKeys(o){return[...o.keys()].map(f=>`${f}`)},has(o,f){switch(f){case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:case Ar:case ja:case ln:case an:case Eg:return!0}return typeof f=="number"&&!o.has(f)&&(f=o.getKey(f)),o.has(f)},get(o,f,s){switch(f){case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:case Ar:case ja:case ln:case an:case Eg:return Reflect.get(o,f,s)}return typeof f=="number"&&!t.call(s,f)&&(f=n.call(s,f)),e.call(s,f)},set(o,f,s,l){switch(f){case Ar:case ja:case ln:case an:return Reflect.set(o,f,s,l);case"getKey":case"getIndex":case"getValue":case"setValue":case"toArray":case"toJSON":case"inspect":case"constructor":case"isPrototypeOf":case"propertyIsEnumerable":case"toString":case"toLocaleString":case"valueOf":case"size":case"has":case"get":case"set":case"clear":case"delete":case"keys":case"values":case"entries":case"forEach":case"__proto__":case"__defineGetter__":case"__defineSetter__":case"hasOwnProperty":case"__lookupGetter__":case"__lookupSetter__":case Symbol.iterator:case Symbol.toStringTag:return!1}return typeof f=="number"&&!t.call(l,f)&&(f=n.call(l,f)),t.call(l,f)?!!r.call(l,f,s):!1}};return o=>new Proxy(o,i)})()});var Fu=z(uf=>{"use strict";Object.defineProperty(uf,"__esModule",{value:!0});uf.createElementComparator=uf.clampRange=uf.clampIndex=void 0;var Nk=or(),Dk=Nu(),iP=gr(),Fk=Fr();function oP(t,e,r){let n=t.length,i=e>-1?e:n+e%n;return r?r(t,i):i}uf.clampIndex=oP;var Pk;function fP(t,e,r,n){let{length:i=0}=t,o=typeof e!="number"?0:e,f=typeof r!="number"?i:r;return o<0&&(o=(o%i+i)%i),f<0&&(f=(f%i+i)%i),f<o&&(Pk=o,o=f,f=Pk),f>i&&(f=i),n?n(t,o,f):[o,f]}uf.clampRange=fP;var sP=Fk.BigIntAvailable?Fk.BigInt(0):0,Rk=t=>t!==t;function Du(t){let e=typeof t;if(e!=="object"||t===null)return Rk(t)?Rk:e!=="bigint"?r=>r===t:r=>sP+r===t;if(t instanceof Date){let r=t.valueOf();return n=>n instanceof Date?n.valueOf()===r:!1}return ArrayBuffer.isView(t)?r=>r?iP.compareArrayLike(t,r):!1:t instanceof Map?lP(t):Array.isArray(t)?aP(t):t instanceof Nk.Vector?uP(t):cP(t)}uf.createElementComparator=Du;function aP(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=Du(t[r]);return Hd(e)}function lP(t){let e=-1,r=[];return t.forEach(n=>r[++e]=Du(n)),Hd(r)}function uP(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=Du(t.get(r));return Hd(e)}function cP(t){let e=Object.keys(t);if(e.length===0)return()=>!1;let r=[];for(let n=-1,i=e.length;++n<i;)r[n]=Du(t[e[n]]);return Hd(r,e)}function Hd(t,e){return r=>{if(!r||typeof r!="object")return!1;switch(r.constructor){case Array:return pP(t,r);case Map:case Dk.MapRow:case Dk.StructRow:return Hk(t,r,r.keys());case Object:case void 0:return Hk(t,r,e||Object.keys(r))}return r instanceof Nk.Vector?dP(t,r):!1}}function pP(t,e){let r=t.length;if(e.length!==r)return!1;for(let n=-1;++n<r;)if(!t[n](e[n]))return!1;return!0}function dP(t,e){let r=t.length;if(e.length!==r)return!1;for(let n=-1;++n<r;)if(!t[n](e.get(n)))return!1;return!0}function Hk(t,e,r){let n=r[Symbol.iterator](),i=e instanceof Map?e.keys():Object.keys(e)[Symbol.iterator](),o=e instanceof Map?e.values():Object.values(e)[Symbol.iterator](),f=0,s=t.length,l=o.next(),u=n.next(),c=i.next();for(;f<s&&!u.done&&!c.done&&!l.done&&!(u.value!==c.value||!t[f](l.value));++f,u=n.next(),c=i.next(),l=o.next());return f===s&&u.done&&c.done&&l.done?!0:(n.return&&n.return(),i.return&&i.return(),o.return&&o.return(),!1)}});var qa=z(Qr=>{"use strict";Object.defineProperty(Qr,"__esModule",{value:!0});Qr.selectColumnChildrenArgs=Qr.selectVectorChildrenArgs=Qr.selectChunkArgs=Qr.selectFieldArgs=Qr.selectColumnArgs=Qr.selectArgs=void 0;var Mk=Xn(),zk=vr(),cf=va(),Pu=or(),Uk=_t(),mP=df(),pf=Array.isArray;Qr.selectArgs=(t,e)=>Md(t,e,[],0);Qr.selectColumnArgs=t=>{let[e,r]=Ng(t,[[],[]]);return r.map((n,i)=>n instanceof cf.Column?cf.Column.new(n.field.clone(e[i]),n):n instanceof Pu.Vector?cf.Column.new(e[i],n):cf.Column.new(e[i],[]))};Qr.selectFieldArgs=t=>Ng(t,[[],[]]);Qr.selectChunkArgs=(t,e)=>Og(t,e,[],0);Qr.selectVectorChildrenArgs=(t,e)=>Lk(t,e,[],0);Qr.selectColumnChildrenArgs=(t,e)=>Vk(t,e,[],0);function Md(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)pf(i=e[f])?o=Md(t,i,r,o).length:i instanceof t&&(r[o++]=i);return r}function Og(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)pf(i=e[f])?o=Og(t,i,r,o).length:i instanceof mP.Chunked?o=Og(t,i.chunks,r,o).length:i instanceof t&&(r[o++]=i);return r}function Lk(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)pf(i=e[f])?o=Lk(t,i,r,o).length:i instanceof t?o=Md(Pu.Vector,i.schema.fields.map((l,u)=>i.getChildAt(u)),r,o).length:i instanceof Pu.Vector&&(r[o++]=i);return r}function Vk(t,e,r,n){let i,o=n,f=-1,s=e.length;for(;++f<s;)pf(i=e[f])?o=Vk(t,i,r,o).length:i instanceof t?o=Md(cf.Column,i.schema.fields.map((l,u)=>cf.Column.new(l,i.getChildAt(u))),r,o).length:i instanceof cf.Column&&(r[o++]=i);return r}var bP=(t,[e,r],n)=>(t[0][n]=e,t[1][n]=r,t);function Ng(t,e){let r,n;switch(n=t.length){case 0:return e;case 1:if(r=e[0],!t[0])return e;if(pf(t[0]))return Ng(t[0],e);t[0]instanceof Mk.Data||t[0]instanceof Pu.Vector||t[0]instanceof Uk.DataType||([r,t]=Object.entries(t[0]).reduce(bP,e));break;default:pf(r=t[n-1])?t=pf(t[0])?t[0]:t.slice(0,n-1):(t=pf(t[0])?t[0]:t,r=[])}let i=-1,o=-1,f=-1,s=t.length,l,u,[c,_]=e;for(;++f<s;)u=t[f],u instanceof cf.Column&&(_[++o]=u)?c[++i]=u.field.clone(r[f],u.type,!0):({[f]:l=f}=r,u instanceof Uk.DataType&&(_[++o]=u)?c[++i]=zk.Field.new(l,u,!0):u&&u.type&&(_[++o]=u)&&(u instanceof Mk.Data&&(_[o]=u=Pu.Vector.new(u)),c[++i]=zk.Field.new(l,u.type,!0)));return e}});var df=z(zd=>{"use strict";Object.defineProperty(zd,"__esModule",{value:!0});zd.Chunked=void 0;var wP=Fu(),Ck=_t(),hP=qa(),Wk=or(),Yk=class{constructor(e){this.chunks=e,this.chunkIndex=0,this.chunkIterator=this.getChunkIterator()}next(){for(;this.chunkIndex<this.chunks.length;){let e=this.chunkIterator.next();if(!e.done)return e;++this.chunkIndex<this.chunks.length&&(this.chunkIterator=this.getChunkIterator())}return{done:!0,value:null}}getChunkIterator(){return this.chunks[this.chunkIndex][Symbol.iterator]()}[Symbol.iterator](){return this}},bo=class extends Wk.AbstractVector{constructor(e,r=[],n=gP(r)){super();this._nullCount=-1,this._type=e,this._chunks=r,this._chunkOffsets=n,this._length=n[n.length-1],this._numChildren=(this._type.children||[]).length}static flatten(...e){return hP.selectChunkArgs(Wk.Vector,e)}static concat(...e){let r=bo.flatten(...e);return new bo(r[0].type,r)}get type(){return this._type}get length(){return this._length}get chunks(){return this._chunks}get typeId(){return this._type.typeId}get VectorName(){return`Chunked<${this._type}>`}get data(){return this._chunks[0]?this._chunks[0].data:null}get ArrayType(){return this._type.ArrayType}get numChildren(){return this._numChildren}get stride(){return this._chunks[0]?this._chunks[0].stride:1}get byteLength(){return this._chunks.reduce((e,r)=>e+r.byteLength,0)}get nullCount(){let e=this._nullCount;return e<0&&(this._nullCount=e=this._chunks.reduce((r,{nullCount:n})=>r+n,0)),e}get indices(){if(Ck.DataType.isDictionary(this._type)){if(!this._indices){let e=this._chunks;this._indices=e.length===1?e[0].indices:bo.concat(...e.map(r=>r.indices))}return this._indices}return null}get dictionary(){return Ck.DataType.isDictionary(this._type)?this._chunks[this._chunks.length-1].data.dictionary:null}[Symbol.iterator](){return new Yk(this._chunks)}clone(e=this._chunks){return new bo(this._type,e)}concat(...e){return this.clone(bo.flatten(this,...e))}slice(e,r){return wP.clampRange(this,e,r,this._sliceInternal)}getChildAt(e){if(e<0||e>=this._numChildren)return null;let r=this._children||(this._children=[]),n,i,o;return(n=r[e])?n:(i=(this._type.children||[])[e])&&(o=this._chunks.map(f=>f.getChildAt(e)).filter(f=>f!=null),o.length>0)?r[e]=new bo(i.type,o):null}search(e,r){let n=e,i=this._chunkOffsets,o=i.length-1;if(n<0||n>=i[o])return null;if(o<=1)return r?r(this,0,n):[0,n];let f=0,s=0,l=0;do{if(f+1===o)return r?r(this,f,n-s):[f,n-s];l=f+(o-f)/2|0,n>=i[l]?f=l:o=l}while(n<i[o]&&n>=(s=i[f]));return null}isValid(e){return!!this.search(e,this.isValidInternal)}get(e){return this.search(e,this.getInternal)}set(e,r){this.search(e,({chunks:n},i,o)=>n[i].set(o,r))}indexOf(e,r){return r&&typeof r=="number"?this.search(r,(n,i,o)=>this.indexOfInternal(n,i,o,e)):this.indexOfInternal(this,0,Math.max(0,r||0),e)}toArray(){let{chunks:e}=this,r=e.length,n=this._type.ArrayType;if(r<=0)return new n(0);if(r<=1)return e[0].toArray();let i=0,o=new Array(r);for(let l=-1;++l<r;)i+=(o[l]=e[l].toArray()).length;n!==o[0].constructor&&(n=o[0].constructor);let f=new n(i),s=n===Array?jP:yP;for(let l=-1,u=0;++l<r;)u=s(o[l],f,u);return f}getInternal({_chunks:e},r,n){return e[r].get(n)}isValidInternal({_chunks:e},r,n){return e[r].isValid(n)}indexOfInternal({_chunks:e},r,n,i){let o=r-1,f=e.length,s=n,l=0,u=-1;for(;++o<f;){if(~(u=e[o].indexOf(i,s)))return l+u;s=0,l+=e[o].length}return-1}_sliceInternal(e,r,n){let i=[],{chunks:o,_chunkOffsets:f}=e;for(let s=-1,l=o.length;++s<l;){let u=o[s],c=u.length,_=f[s];if(_>=n)break;if(r>=_+c)continue;if(_>=r&&_+c<=n){i.push(u);continue}let p=Math.max(0,r-_),j=Math.min(n-_,c);i.push(u.slice(p,j))}return e.clone(i)}};zd.Chunked=bo;function gP(t){let e=new Uint32Array((t||[]).length+1),r=e[0]=0,n=e.length;for(let i=0;++i<n;)e[i]=r+=t[i-1].length;return e}var yP=(t,e,r)=>(e.set(t,r),r+t.length),jP=(t,e,r)=>{let n=r;for(let i=-1,o=t.length;++i<o;)e[n++]=t[i];return n}});var va=z(Ud=>{"use strict";Object.defineProperty(Ud,"__esModule",{value:!0});Ud.Column=void 0;var Kk=vr(),Gk=or(),Dg=df(),as=class extends Dg.Chunked{constructor(e,r=[],n){r=Dg.Chunked.flatten(...r);super(e.type,r,n);if(this._field=e,r.length===1&&!(this instanceof Fg))return new Fg(e,r[0],this._chunkOffsets)}static new(...e){let[r,n,...i]=e;typeof r!="string"&&!(r instanceof Kk.Field)&&(n=r,r="");let o=Dg.Chunked.flatten(Array.isArray(n)?[...n,...i]:n instanceof Gk.Vector?[n,...i]:[Gk.Vector.new(n,...i)]);if(typeof r=="string"){let f=o[0].data.type;r=new Kk.Field(r,f,!0)}else!r.nullable&&o.some(({nullCount:f})=>f>0)&&(r=r.clone({nullable:!0}));return new as(r,o)}get field(){return this._field}get name(){return this._field.name}get nullable(){return this._field.nullable}get metadata(){return this._field.metadata}clone(e=this._chunks){return new as(this._field,e)}getChildAt(e){if(e<0||e>=this.numChildren)return null;let r=this._children||(this._children=[]),n,i,o;return(n=r[e])?n:(i=(this.type.children||[])[e])&&(o=this._chunks.map(f=>f.getChildAt(e)).filter(f=>f!=null),o.length>0)?r[e]=new as(i,o):null}};Ud.Column=as;var Fg=class extends as{constructor(e,r,n){super(e,[r],n);this._chunk=r}search(e,r){return r?r(this,0,e):[0,e]}isValid(e){return this._chunk.isValid(e)}get(e){return this._chunk.get(e)}set(e,r){this._chunk.set(e,r)}indexOf(e,r){return this._chunk.indexOf(e,r)}}});var Jk=z(Ta=>{"use strict";Object.defineProperty(Ta,"__esModule",{value:!0});Ta.instance=Ta.TypeAssembler=void 0;var _P=oo(),qP=_P.flatbuffers.Long,vP=xr(),xe=Zo(),Pg=class extends vP.Visitor{visit(e,r){return e==null||r==null?void 0:super.visit(e,r)}visitNull(e,r){return xe.Null.startNull(r),xe.Null.endNull(r)}visitInt(e,r){return xe.Int.startInt(r),xe.Int.addBitWidth(r,e.bitWidth),xe.Int.addIsSigned(r,e.isSigned),xe.Int.endInt(r)}visitFloat(e,r){return xe.FloatingPoint.startFloatingPoint(r),xe.FloatingPoint.addPrecision(r,e.precision),xe.FloatingPoint.endFloatingPoint(r)}visitBinary(e,r){return xe.Binary.startBinary(r),xe.Binary.endBinary(r)}visitBool(e,r){return xe.Bool.startBool(r),xe.Bool.endBool(r)}visitUtf8(e,r){return xe.Utf8.startUtf8(r),xe.Utf8.endUtf8(r)}visitDecimal(e,r){return xe.Decimal.startDecimal(r),xe.Decimal.addScale(r,e.scale),xe.Decimal.addPrecision(r,e.precision),xe.Decimal.endDecimal(r)}visitDate(e,r){return xe.Date.startDate(r),xe.Date.addUnit(r,e.unit),xe.Date.endDate(r)}visitTime(e,r){return xe.Time.startTime(r),xe.Time.addUnit(r,e.unit),xe.Time.addBitWidth(r,e.bitWidth),xe.Time.endTime(r)}visitTimestamp(e,r){let n=e.timezone&&r.createString(e.timezone)||void 0;return xe.Timestamp.startTimestamp(r),xe.Timestamp.addUnit(r,e.unit),n!==void 0&&xe.Timestamp.addTimezone(r,n),xe.Timestamp.endTimestamp(r)}visitInterval(e,r){return xe.Interval.startInterval(r),xe.Interval.addUnit(r,e.unit),xe.Interval.endInterval(r)}visitList(e,r){return xe.List.startList(r),xe.List.endList(r)}visitStruct(e,r){return xe.Struct_.startStruct_(r),xe.Struct_.endStruct_(r)}visitUnion(e,r){xe.Union.startTypeIdsVector(r,e.typeIds.length);let n=xe.Union.createTypeIdsVector(r,e.typeIds);return xe.Union.startUnion(r),xe.Union.addMode(r,e.mode),xe.Union.addTypeIds(r,n),xe.Union.endUnion(r)}visitDictionary(e,r){let n=this.visit(e.indices,r);return xe.DictionaryEncoding.startDictionaryEncoding(r),xe.DictionaryEncoding.addId(r,new qP(e.id,0)),xe.DictionaryEncoding.addIsOrdered(r,e.isOrdered),n!==void 0&&xe.DictionaryEncoding.addIndexType(r,n),xe.DictionaryEncoding.endDictionaryEncoding(r)}visitFixedSizeBinary(e,r){return xe.FixedSizeBinary.startFixedSizeBinary(r),xe.FixedSizeBinary.addByteWidth(r,e.byteWidth),xe.FixedSizeBinary.endFixedSizeBinary(r)}visitFixedSizeList(e,r){return xe.FixedSizeList.startFixedSizeList(r),xe.FixedSizeList.addListSize(r,e.listSize),xe.FixedSizeList.endFixedSizeList(r)}visitMap(e,r){return xe.Map.startMap(r),xe.Map.addKeysSorted(r,e.keysSorted),xe.Map.endMap(r)}};Ta.TypeAssembler=Pg;Ta.instance=new Pg});var rI=z(xi=>{"use strict";Object.defineProperty(xi,"__esModule",{value:!0});xi.fieldFromJSON=xi.dictionaryBatchFromJSON=xi.recordBatchFromJSON=xi.schemaFromJSON=void 0;var Ba=vr(),Vt=_t(),ls=us(),ka=Rt();function TP(t,e=new Map){return new Ba.Schema(kP(t,e),Ld(t.customMetadata),e)}xi.schemaFromJSON=TP;function Zk(t){return new ls.RecordBatch(t.count,Qk(t.columns),$k(t.columns))}xi.recordBatchFromJSON=Zk;function BP(t){return new ls.DictionaryBatch(Zk(t.data),t.id,t.isDelta)}xi.dictionaryBatchFromJSON=BP;function kP(t,e){return(t.fields||[]).filter(Boolean).map(r=>Ba.Field.fromJSON(r,e))}function Xk(t,e){return(t.children||[]).filter(Boolean).map(r=>Ba.Field.fromJSON(r,e))}function Qk(t){return(t||[]).reduce((e,r)=>[...e,new ls.FieldNode(r.count,IP(r.VALIDITY)),...Qk(r.children)],[])}function $k(t,e=[]){for(let r=-1,n=(t||[]).length;++r<n;){let i=t[r];i.VALIDITY&&e.push(new ls.BufferRegion(e.length,i.VALIDITY.length)),i.TYPE&&e.push(new ls.BufferRegion(e.length,i.TYPE.length)),i.OFFSET&&e.push(new ls.BufferRegion(e.length,i.OFFSET.length)),i.DATA&&e.push(new ls.BufferRegion(e.length,i.DATA.length)),e=$k(i.children,e)}return e}function IP(t){return(t||[]).reduce((e,r)=>e+ +(r===0),0)}function SP(t,e){let r,n,i,o,f,s;return!e||!(o=t.dictionary)?(f=tI(t,Xk(t,e)),i=new Ba.Field(t.name,f,t.nullable,Ld(t.customMetadata))):e.has(r=o.id)?(n=(n=o.indexType)?eI(n):new Vt.Int32,s=new Vt.Dictionary(e.get(r),n,r,o.isOrdered),i=new Ba.Field(t.name,s,t.nullable,Ld(t.customMetadata))):(n=(n=o.indexType)?eI(n):new Vt.Int32,e.set(r,f=tI(t,Xk(t,e))),s=new Vt.Dictionary(f,n,r,o.isOrdered),i=new Ba.Field(t.name,s,t.nullable,Ld(t.customMetadata))),i||null}xi.fieldFromJSON=SP;function Ld(t){return new Map(Object.entries(t||{}))}function eI(t){return new Vt.Int(t.isSigned,t.bitWidth)}function tI(t,e){let r=t.type.name;switch(r){case"NONE":return new Vt.Null;case"null":return new Vt.Null;case"binary":return new Vt.Binary;case"utf8":return new Vt.Utf8;case"bool":return new Vt.Bool;case"list":return new Vt.List((e||[])[0]);case"struct":return new Vt.Struct(e||[]);case"struct_":return new Vt.Struct(e||[])}switch(r){case"int":{let n=t.type;return new Vt.Int(n.isSigned,n.bitWidth)}case"floatingpoint":{let n=t.type;return new Vt.Float(ka.Precision[n.precision])}case"decimal":{let n=t.type;return new Vt.Decimal(n.scale,n.precision)}case"date":{let n=t.type;return new Vt.Date_(ka.DateUnit[n.unit])}case"time":{let n=t.type;return new Vt.Time(ka.TimeUnit[n.unit],n.bitWidth)}case"timestamp":{let n=t.type;return new Vt.Timestamp(ka.TimeUnit[n.unit],n.timezone)}case"interval":{let n=t.type;return new Vt.Interval(ka.IntervalUnit[n.unit])}case"union":{let n=t.type;return new Vt.Union(ka.UnionMode[n.mode],n.typeIds||[],e||[])}case"fixedsizebinary":{let n=t.type;return new Vt.FixedSizeBinary(n.byteWidth)}case"fixedsizelist":{let n=t.type;return new Vt.FixedSizeList(n.listSize,(e||[])[0])}case"map":{let n=t.type;return new Vt.Map_((e||[])[0],n.keysSorted)}}throw new Error(`Unrecognized type: "${r}"`)}});var us=z(Fn=>{"use strict";Object.defineProperty(Fn,"__esModule",{value:!0});Fn.FieldNode=Fn.BufferRegion=Fn.DictionaryBatch=Fn.RecordBatch=Fn.Message=void 0;var Rg=oo(),ke=Zo(),Wt=Yp(),Tr=vr(),xP=gr(),Qt=Rt(),Hg=Jk(),Vd=rI(),cs=Rg.flatbuffers.Long,AP=Rg.flatbuffers.Builder,EP=Rg.flatbuffers.ByteBuffer,Ct=_t(),mf=class{constructor(e,r,n,i){this._version=r,this._headerType=n,this.body=new Uint8Array(0),i&&(this._createHeader=()=>i),this._bodyLength=typeof e=="number"?e:e.low}static fromJSON(e,r){let n=new mf(0,Qt.MetadataVersion.V4,r);return n._createHeader=OP(e,r),n}static decode(e){e=new EP(xP.toUint8Array(e));let r=Wt.Message.getRootAsMessage(e),n=r.bodyLength(),i=r.version(),o=r.headerType(),f=new mf(n,i,o);return f._createHeader=NP(r,o),f}static encode(e){let r=new AP,n=-1;return e.isSchema()?n=Tr.Schema.encode(r,e.header()):e.isRecordBatch()?n=Dn.encode(r,e.header()):e.isDictionaryBatch()&&(n=Ai.encode(r,e.header())),Wt.Message.startMessage(r),Wt.Message.addVersion(r,Qt.MetadataVersion.V4),Wt.Message.addHeader(r,n),Wt.Message.addHeaderType(r,e.headerType),Wt.Message.addBodyLength(r,new cs(e.bodyLength,0)),Wt.Message.finishMessageBuffer(r,Wt.Message.endMessage(r)),r.asUint8Array()}static from(e,r=0){if(e instanceof Tr.Schema)return new mf(0,Qt.MetadataVersion.V4,Qt.MessageHeader.Schema,e);if(e instanceof Dn)return new mf(r,Qt.MetadataVersion.V4,Qt.MessageHeader.RecordBatch,e);if(e instanceof Ai)return new mf(r,Qt.MetadataVersion.V4,Qt.MessageHeader.DictionaryBatch,e);throw new Error(`Unrecognized Message header: ${e}`)}get type(){return this.headerType}get version(){return this._version}get headerType(){return this._headerType}get bodyLength(){return this._bodyLength}header(){return this._createHeader()}isSchema(){return this.headerType===Qt.MessageHeader.Schema}isRecordBatch(){return this.headerType===Qt.MessageHeader.RecordBatch}isDictionaryBatch(){return this.headerType===Qt.MessageHeader.DictionaryBatch}};Fn.Message=mf;var Dn=class{constructor(e,r,n){this._nodes=r,this._buffers=n,this._length=typeof e=="number"?e:e.low}get nodes(){return this._nodes}get length(){return this._length}get buffers(){return this._buffers}};Fn.RecordBatch=Dn;var Ai=class{constructor(e,r,n=!1){this._data=e,this._isDelta=n,this._id=typeof r=="number"?r:r.low}get id(){return this._id}get data(){return this._data}get isDelta(){return this._isDelta}get length(){return this.data.length}get nodes(){return this.data.nodes}get buffers(){return this.data.buffers}};Fn.DictionaryBatch=Ai;var ps=class{constructor(e,r){this.offset=typeof e=="number"?e:e.low,this.length=typeof r=="number"?r:r.low}};Fn.BufferRegion=ps;var ds=class{constructor(e,r){this.length=typeof e=="number"?e:e.low,this.nullCount=typeof r=="number"?r:r.low}};Fn.FieldNode=ds;function OP(t,e){return()=>{switch(e){case Qt.MessageHeader.Schema:return Tr.Schema.fromJSON(t);case Qt.MessageHeader.RecordBatch:return Dn.fromJSON(t);case Qt.MessageHeader.DictionaryBatch:return Ai.fromJSON(t)}throw new Error(`Unrecognized Message type: { name: ${Qt.MessageHeader[e]}, type: ${e} }`)}}function NP(t,e){return()=>{switch(e){case Qt.MessageHeader.Schema:return Tr.Schema.decode(t.header(new ke.Schema));case Qt.MessageHeader.RecordBatch:return Dn.decode(t.header(new Wt.RecordBatch),t.version());case Qt.MessageHeader.DictionaryBatch:return Ai.decode(t.header(new Wt.DictionaryBatch),t.version())}throw new Error(`Unrecognized Message type: { name: ${Qt.MessageHeader[e]}, type: ${e} }`)}}Tr.Field.encode=CP;Tr.Field.decode=LP;Tr.Field.fromJSON=Vd.fieldFromJSON;Tr.Schema.encode=VP;Tr.Schema.decode=DP;Tr.Schema.fromJSON=Vd.schemaFromJSON;Dn.encode=WP;Dn.decode=FP;Dn.fromJSON=Vd.recordBatchFromJSON;Ai.encode=YP;Ai.decode=PP;Ai.fromJSON=Vd.dictionaryBatchFromJSON;ds.encode=KP;ds.decode=HP;ps.encode=GP;ps.decode=RP;function DP(t,e=new Map){let r=UP(t,e);return new Tr.Schema(r,Cd(t),e)}function FP(t,e=Qt.MetadataVersion.V4){return new Dn(t.length(),MP(t),zP(t,e))}function PP(t,e=Qt.MetadataVersion.V4){return new Ai(Dn.decode(t.data(),e),t.id(),t.isDelta())}function RP(t){return new ps(t.offset(),t.length())}function HP(t){return new ds(t.length(),t.nullCount())}function MP(t){let e=[];for(let r,n=-1,i=-1,o=t.nodesLength();++n<o;)(r=t.nodes(n))&&(e[++i]=ds.decode(r));return e}function zP(t,e){let r=[];for(let n,i=-1,o=-1,f=t.buffersLength();++i<f;)(n=t.buffers(i))&&(e<Qt.MetadataVersion.V4&&(n.bb_pos+=8*(i+1)),r[++o]=ps.decode(n));return r}function UP(t,e){let r=[];for(let n,i=-1,o=-1,f=t.fieldsLength();++i<f;)(n=t.fields(i))&&(r[++o]=Tr.Field.decode(n,e));return r}function nI(t,e){let r=[];for(let n,i=-1,o=-1,f=t.childrenLength();++i<f;)(n=t.children(i))&&(r[++o]=Tr.Field.decode(n,e));return r}function LP(t,e){let r,n,i,o,f,s;return!e||!(s=t.dictionary())?(i=oI(t,nI(t,e)),n=new Tr.Field(t.name(),i,t.nullable(),Cd(t))):e.has(r=s.id().low)?(o=(o=s.indexType())?iI(o):new Ct.Int32,f=new Ct.Dictionary(e.get(r),o,r,s.isOrdered()),n=new Tr.Field(t.name(),f,t.nullable(),Cd(t))):(o=(o=s.indexType())?iI(o):new Ct.Int32,e.set(r,i=oI(t,nI(t,e))),f=new Ct.Dictionary(i,o,r,s.isOrdered()),n=new Tr.Field(t.name(),f,t.nullable(),Cd(t))),n||null}function Cd(t){let e=new Map;if(t)for(let r,n,i=-1,o=t.customMetadataLength()|0;++i<o;)(r=t.customMetadata(i))&&(n=r.key())!=null&&e.set(n,r.value());return e}function iI(t){return new Ct.Int(t.isSigned(),t.bitWidth())}function oI(t,e){let r=t.typeType();switch(r){case ke.Type.NONE:return new Ct.Null;case ke.Type.Null:return new Ct.Null;case ke.Type.Binary:return new Ct.Binary;case ke.Type.Utf8:return new Ct.Utf8;case ke.Type.Bool:return new Ct.Bool;case ke.Type.List:return new Ct.List((e||[])[0]);case ke.Type.Struct_:return new Ct.Struct(e||[])}switch(r){case ke.Type.Int:{let n=t.type(new ke.Int);return new Ct.Int(n.isSigned(),n.bitWidth())}case ke.Type.FloatingPoint:{let n=t.type(new ke.FloatingPoint);return new Ct.Float(n.precision())}case ke.Type.Decimal:{let n=t.type(new ke.Decimal);return new Ct.Decimal(n.scale(),n.precision())}case ke.Type.Date:{let n=t.type(new ke.Date);return new Ct.Date_(n.unit())}case ke.Type.Time:{let n=t.type(new ke.Time);return new Ct.Time(n.unit(),n.bitWidth())}case ke.Type.Timestamp:{let n=t.type(new ke.Timestamp);return new Ct.Timestamp(n.unit(),n.timezone())}case ke.Type.Interval:{let n=t.type(new ke.Interval);return new Ct.Interval(n.unit())}case ke.Type.Union:{let n=t.type(new ke.Union);return new Ct.Union(n.mode(),n.typeIdsArray()||[],e||[])}case ke.Type.FixedSizeBinary:{let n=t.type(new ke.FixedSizeBinary);return new Ct.FixedSizeBinary(n.byteWidth())}case ke.Type.FixedSizeList:{let n=t.type(new ke.FixedSizeList);return new Ct.FixedSizeList(n.listSize(),(e||[])[0])}case ke.Type.Map:{let n=t.type(new ke.Map);return new Ct.Map_((e||[])[0],n.keysSorted())}}throw new Error(`Unrecognized type: "${ke.Type[r]}" (${r})`)}function VP(t,e){let r=e.fields.map(o=>Tr.Field.encode(t,o));ke.Schema.startFieldsVector(t,r.length);let n=ke.Schema.createFieldsVector(t,r),i=e.metadata&&e.metadata.size>0?ke.Schema.createCustomMetadataVector(t,[...e.metadata].map(([o,f])=>{let s=t.createString(`${o}`),l=t.createString(`${f}`);return ke.KeyValue.startKeyValue(t),ke.KeyValue.addKey(t,s),ke.KeyValue.addValue(t,l),ke.KeyValue.endKeyValue(t)})):-1;return ke.Schema.startSchema(t),ke.Schema.addFields(t,n),ke.Schema.addEndianness(t,JP?ke.Endianness.Little:ke.Endianness.Big),i!==-1&&ke.Schema.addCustomMetadata(t,i),ke.Schema.endSchema(t)}function CP(t,e){let r=-1,n=-1,i=-1,o=e.type,f=e.typeId;Ct.DataType.isDictionary(o)?(f=o.dictionary.typeId,i=Hg.instance.visit(o,t),n=Hg.instance.visit(o.dictionary,t)):n=Hg.instance.visit(o,t);let s=(o.children||[]).map(c=>Tr.Field.encode(t,c)),l=ke.Field.createChildrenVector(t,s),u=e.metadata&&e.metadata.size>0?ke.Field.createCustomMetadataVector(t,[...e.metadata].map(([c,_])=>{let p=t.createString(`${c}`),j=t.createString(`${_}`);return ke.KeyValue.startKeyValue(t),ke.KeyValue.addKey(t,p),ke.KeyValue.addValue(t,j),ke.KeyValue.endKeyValue(t)})):-1;return e.name&&(r=t.createString(e.name)),ke.Field.startField(t),ke.Field.addType(t,n),ke.Field.addTypeType(t,f),ke.Field.addChildren(t,l),ke.Field.addNullable(t,!!e.nullable),r!==-1&&ke.Field.addName(t,r),i!==-1&&ke.Field.addDictionary(t,i),u!==-1&&ke.Field.addCustomMetadata(t,u),ke.Field.endField(t)}function WP(t,e){let r=e.nodes||[],n=e.buffers||[];Wt.RecordBatch.startNodesVector(t,r.length),r.slice().reverse().forEach(f=>ds.encode(t,f));let i=t.endVector();Wt.RecordBatch.startBuffersVector(t,n.length),n.slice().reverse().forEach(f=>ps.encode(t,f));let o=t.endVector();return Wt.RecordBatch.startRecordBatch(t),Wt.RecordBatch.addLength(t,new cs(e.length,0)),Wt.RecordBatch.addNodes(t,i),Wt.RecordBatch.addBuffers(t,o),Wt.RecordBatch.endRecordBatch(t)}function YP(t,e){let r=Dn.encode(t,e.data);return Wt.DictionaryBatch.startDictionaryBatch(t),Wt.DictionaryBatch.addId(t,new cs(e.id,0)),Wt.DictionaryBatch.addIsDelta(t,e.isDelta),Wt.DictionaryBatch.addData(t,r),Wt.DictionaryBatch.endDictionaryBatch(t)}function KP(t,e){return Wt.FieldNode.createFieldNode(t,new cs(e.length,0),new cs(e.nullCount,0))}function GP(t,e){return ke.Buffer.createBuffer(t,new cs(e.offset,0),new cs(e.length,0))}var JP=function(){let t=new ArrayBuffer(2);return new DataView(t).setInt16(0,256,!0),new Int16Array(t)[0]===256}()});var Yd=z(dt=>{"use strict";Object.defineProperty(dt,"__esModule",{value:!0});dt.magicX2AndPadding=dt.magicAndPadding=dt.magicLength=dt.checkForMagicArrowString=dt.MAGIC=dt.MAGIC_STR=dt.PADDING=dt.JSONMessageReader=dt.AsyncMessageReader=dt.MessageReader=void 0;var bf=Rt(),ZP=oo(),fI=ZP.flatbuffers.ByteBuffer,Ru=us(),XP=Fr(),QP=Ig(),sI=gr(),Wd=lf(),ti=Xs(),Mg=t=>`Expected ${bf.MessageHeader[t]} Message in stream, but was null or length 0.`,zg=t=>`Header pointer of flatbuffer-encoded ${bf.MessageHeader[t]} Message is null or length 0.`,aI=(t,e)=>`Expected to read ${t} metadata bytes, but only read ${e}.`,lI=(t,e)=>`Expected to read ${t} bytes for message body, but only read ${e}.`,Ug=class{constructor(e){this.source=e instanceof Wd.ByteStream?e:new Wd.ByteStream(e)}[Symbol.iterator](){return this}next(){let e;return(e=this.readMetadataLength()).done||e.value===-1&&(e=this.readMetadataLength()).done||(e=this.readMetadata(e.value)).done?ti.ITERATOR_DONE:e}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}readMessage(e){let r;if((r=this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Mg(e));return r.value}readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=sI.toUint8Array(this.source.read(e));if(r.byteLength<e)throw new Error(lI(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}readSchema(e=!1){let r=bf.MessageHeader.Schema,n=this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error(zg(r));return i}readMetadataLength(){let e=this.source.read(dt.PADDING),r=e&&new fI(e),n=r&&r.readInt32(0)||0;return{done:n===0,value:n}}readMetadata(e){let r=this.source.read(e);if(!r)return ti.ITERATOR_DONE;if(r.byteLength<e)throw new Error(aI(e,r.byteLength));return{done:!1,value:Ru.Message.decode(r)}}};dt.MessageReader=Ug;var uI=class{constructor(e,r){this.source=e instanceof Wd.AsyncByteStream?e:XP.isFileHandle(e)?new QP.AsyncRandomAccessFile(e,r):new Wd.AsyncByteStream(e)}[Symbol.asyncIterator](){return this}async next(){let e;return(e=await this.readMetadataLength()).done||e.value===-1&&(e=await this.readMetadataLength()).done||(e=await this.readMetadata(e.value)).done?ti.ITERATOR_DONE:e}async throw(e){return await this.source.throw(e)}async return(e){return await this.source.return(e)}async readMessage(e){let r;if((r=await this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Mg(e));return r.value}async readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=sI.toUint8Array(await this.source.read(e));if(r.byteLength<e)throw new Error(lI(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}async readSchema(e=!1){let r=bf.MessageHeader.Schema,n=await this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error(zg(r));return i}async readMetadataLength(){let e=await this.source.read(dt.PADDING),r=e&&new fI(e),n=r&&r.readInt32(0)||0;return{done:n===0,value:n}}async readMetadata(e){let r=await this.source.read(e);if(!r)return ti.ITERATOR_DONE;if(r.byteLength<e)throw new Error(aI(e,r.byteLength));return{done:!1,value:Ru.Message.decode(r)}}};dt.AsyncMessageReader=uI;var cI=class extends Ug{constructor(e){super(new Uint8Array(0));this._schema=!1,this._body=[],this._batchIndex=0,this._dictionaryIndex=0,this._json=e instanceof ti.ArrowJSON?e:new ti.ArrowJSON(e)}next(){let{_json:e}=this;if(!this._schema){this._schema=!0;let r=Ru.Message.fromJSON(e.schema,bf.MessageHeader.Schema);return{done:!1,value:r}}if(this._dictionaryIndex<e.dictionaries.length){let r=e.dictionaries[this._dictionaryIndex++];this._body=r.data.columns;let n=Ru.Message.fromJSON(r,bf.MessageHeader.DictionaryBatch);return{done:!1,value:n}}if(this._batchIndex<e.batches.length){let r=e.batches[this._batchIndex++];this._body=r.columns;let n=Ru.Message.fromJSON(r,bf.MessageHeader.RecordBatch);return{done:!1,value:n}}return this._body=[],ti.ITERATOR_DONE}readMessageBody(e){return r(this._body);function r(n){return(n||[]).reduce((i,o)=>[...i,...o.VALIDITY&&[o.VALIDITY]||[],...o.TYPE&&[o.TYPE]||[],...o.OFFSET&&[o.OFFSET]||[],...o.DATA&&[o.DATA]||[],...r(o.children)],[])}}readMessage(e){let r;if((r=this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Mg(e));return r.value}readSchema(){let e=bf.MessageHeader.Schema,r=this.readMessage(e),n=r&&r.header();if(!r||!n)throw new Error(zg(e));return n}};dt.JSONMessageReader=cI;dt.PADDING=4;dt.MAGIC_STR="ARROW1";dt.MAGIC=new Uint8Array(dt.MAGIC_STR.length);for(let t=0;t<dt.MAGIC_STR.length;t+=1|0)dt.MAGIC[t]=dt.MAGIC_STR.charCodeAt(t);function $P(t,e=0){for(let r=-1,n=dt.MAGIC.length;++r<n;)if(dt.MAGIC[r]!==t[e+r])return!1;return!0}dt.checkForMagicArrowString=$P;dt.magicLength=dt.MAGIC.length;dt.magicAndPadding=dt.magicLength+dt.PADDING;dt.magicX2AndPadding=dt.magicLength*2+dt.PADDING});var Wg=z($t=>{"use strict";Object.defineProperty($t,"__esModule",{value:!0});$t.compareTypes=$t.compareFields=$t.compareSchemas=$t.instance=$t.TypeComparator=void 0;var eR=xr(),Me=class extends eR.Visitor{compareSchemas(e,r){return e===r||r instanceof e.constructor&&this.compareManyFields(e.fields,r.fields)}compareManyFields(e,r){return e===r||Array.isArray(e)&&Array.isArray(r)&&e.length===r.length&&e.every((n,i)=>this.compareFields(n,r[i]))}compareFields(e,r){return e===r||r instanceof e.constructor&&e.name===r.name&&e.nullable===r.nullable&&this.visit(e.type,r.type)}};$t.TypeComparator=Me;function $r(t,e){return e instanceof t.constructor}function Hu(t,e){return t===e||$r(t,e)}function wo(t,e){return t===e||$r(t,e)&&t.bitWidth===e.bitWidth&&t.isSigned===e.isSigned}function Kd(t,e){return t===e||$r(t,e)&&t.precision===e.precision}function tR(t,e){return t===e||$r(t,e)&&t.byteWidth===e.byteWidth}function Lg(t,e){return t===e||$r(t,e)&&t.unit===e.unit}function Mu(t,e){return t===e||$r(t,e)&&t.unit===e.unit&&t.timezone===e.timezone}function zu(t,e){return t===e||$r(t,e)&&t.unit===e.unit&&t.bitWidth===e.bitWidth}function rR(t,e){return t===e||$r(t,e)&&t.children.length===e.children.length&&$t.instance.compareManyFields(t.children,e.children)}function nR(t,e){return t===e||$r(t,e)&&t.children.length===e.children.length&&$t.instance.compareManyFields(t.children,e.children)}function Vg(t,e){return t===e||$r(t,e)&&t.mode===e.mode&&t.typeIds.every((r,n)=>r===e.typeIds[n])&&$t.instance.compareManyFields(t.children,e.children)}function iR(t,e){return t===e||$r(t,e)&&t.id===e.id&&t.isOrdered===e.isOrdered&&$t.instance.visit(t.indices,e.indices)&&$t.instance.visit(t.dictionary,e.dictionary)}function Cg(t,e){return t===e||$r(t,e)&&t.unit===e.unit}function oR(t,e){return t===e||$r(t,e)&&t.listSize===e.listSize&&t.children.length===e.children.length&&$t.instance.compareManyFields(t.children,e.children)}function fR(t,e){return t===e||$r(t,e)&&t.keysSorted===e.keysSorted&&t.children.length===e.children.length&&$t.instance.compareManyFields(t.children,e.children)}Me.prototype.visitNull=Hu;Me.prototype.visitBool=Hu;Me.prototype.visitInt=wo;Me.prototype.visitInt8=wo;Me.prototype.visitInt16=wo;Me.prototype.visitInt32=wo;Me.prototype.visitInt64=wo;Me.prototype.visitUint8=wo;Me.prototype.visitUint16=wo;Me.prototype.visitUint32=wo;Me.prototype.visitUint64=wo;Me.prototype.visitFloat=Kd;Me.prototype.visitFloat16=Kd;Me.prototype.visitFloat32=Kd;Me.prototype.visitFloat64=Kd;Me.prototype.visitUtf8=Hu;Me.prototype.visitBinary=Hu;Me.prototype.visitFixedSizeBinary=tR;Me.prototype.visitDate=Lg;Me.prototype.visitDateDay=Lg;Me.prototype.visitDateMillisecond=Lg;Me.prototype.visitTimestamp=Mu;Me.prototype.visitTimestampSecond=Mu;Me.prototype.visitTimestampMillisecond=Mu;Me.prototype.visitTimestampMicrosecond=Mu;Me.prototype.visitTimestampNanosecond=Mu;Me.prototype.visitTime=zu;Me.prototype.visitTimeSecond=zu;Me.prototype.visitTimeMillisecond=zu;Me.prototype.visitTimeMicrosecond=zu;Me.prototype.visitTimeNanosecond=zu;Me.prototype.visitDecimal=Hu;Me.prototype.visitList=rR;Me.prototype.visitStruct=nR;Me.prototype.visitUnion=Vg;Me.prototype.visitDenseUnion=Vg;Me.prototype.visitSparseUnion=Vg;Me.prototype.visitDictionary=iR;Me.prototype.visitInterval=Cg;Me.prototype.visitIntervalDayTime=Cg;Me.prototype.visitIntervalYearMonth=Cg;Me.prototype.visitFixedSizeList=oR;Me.prototype.visitMap=fR;$t.instance=new Me;function sR(t,e){return $t.instance.compareSchemas(t,e)}$t.compareSchemas=sR;function aR(t,e){return $t.instance.compareFields(t,e)}$t.compareFields=aR;function lR(t,e){return $t.instance.visit(t,e)}$t.compareTypes=lR});var wI=z(Gd=>{"use strict";Object.defineProperty(Gd,"__esModule",{value:!0});Gd.VectorAssembler=void 0;var uR=xr(),pI=Rt(),cR=ho(),Yg=gr(),Kg=qi(),pR=qa(),dI=us(),mI=_t(),dr=class extends uR.Visitor{constructor(){super();this._byteLength=0,this._nodes=[],this._buffers=[],this._bufferRegions=[]}static assemble(...e){let r=new dr,n=pR.selectVectorChildrenArgs(cR.RecordBatch,e),[i=r]=r.visitMany(n);return i}visit(e){if(!mI.DataType.isDictionary(e.type)){let{data:r,length:n,nullCount:i}=e;if(n>2147483647)throw new RangeError("Cannot write arrays larger than 2^31 - 1 in length");mI.DataType.isNull(e.type)||ri.call(this,i<=0?new Uint8Array(0):Kg.truncateBitmap(r.offset,n,r.nullBitmap)),this.nodes.push(new dI.FieldNode(n,i))}return super.visit(e)}visitNull(e){return this}visitDictionary(e){return this.visit(e.indices)}get nodes(){return this._nodes}get buffers(){return this._buffers}get byteLength(){return this._byteLength}get bufferRegions(){return this._bufferRegions}};Gd.VectorAssembler=dr;function ri(t){let e=t.byteLength+7&~7;return this.buffers.push(t),this.bufferRegions.push(new dI.BufferRegion(this._byteLength,e)),this._byteLength+=e,this}function dR(t){let{type:e,length:r,typeIds:n,valueOffsets:i}=t;if(ri.call(this,n),e.mode===pI.UnionMode.Sparse)return Jg.call(this,t);if(e.mode===pI.UnionMode.Dense){if(t.offset<=0)return ri.call(this,i),Jg.call(this,t);{let o=n.reduce((c,_)=>Math.max(c,_),n[0]),f=new Int32Array(o+1),s=new Int32Array(o+1).fill(-1),l=new Int32Array(r),u=Yg.rebaseValueOffsets(-i[0],r,i);for(let c,_,p=-1;++p<r;)(_=s[c=n[p]])===-1&&(_=s[c]=u[c]),l[p]=u[p]-_,++f[c];ri.call(this,l);for(let c,_=-1,p=e.children.length;++_<p;)if(c=t.getChildAt(_)){let j=e.typeIds[_],S=Math.min(r,f[j]);this.visit(c.slice(s[j],S))}}}return this}function mR(t){let e;return t.nullCount>=t.length?ri.call(this,new Uint8Array(0)):(e=t.values)instanceof Uint8Array?ri.call(this,Kg.truncateBitmap(t.offset,t.length,e)):ri.call(this,Kg.packBools(t))}function wf(t){return ri.call(this,t.values.subarray(0,t.length*t.stride))}function bI(t){let{length:e,values:r,valueOffsets:n}=t,i=n[0],o=n[e],f=Math.min(o-i,r.byteLength-i);return ri.call(this,Yg.rebaseValueOffsets(-n[0],e,n)),ri.call(this,r.subarray(i,i+f)),this}function Gg(t){let{length:e,valueOffsets:r}=t;return r&&ri.call(this,Yg.rebaseValueOffsets(r[0],e,r)),this.visit(t.getChildAt(0))}function Jg(t){return this.visitMany(t.type.children.map((e,r)=>t.getChildAt(r)).filter(Boolean))[0]}dr.prototype.visitBool=mR;dr.prototype.visitInt=wf;dr.prototype.visitFloat=wf;dr.prototype.visitUtf8=bI;dr.prototype.visitBinary=bI;dr.prototype.visitFixedSizeBinary=wf;dr.prototype.visitDate=wf;dr.prototype.visitTimestamp=wf;dr.prototype.visitTime=wf;dr.prototype.visitDecimal=wf;dr.prototype.visitList=Gg;dr.prototype.visitStruct=Jg;dr.prototype.visitUnion=dR;dr.prototype.visitInterval=wf;dr.prototype.visitFixedSizeList=Gg;dr.prototype.visitMap=Gg});var gI=z(Jd=>{"use strict";Object.defineProperty(Jd,"__esModule",{value:!0});Jd.JSONTypeAssembler=void 0;var bR=xr(),Er=Zo(),Ia=Rt(),hI=class extends bR.Visitor{visit(e){return e==null?void 0:super.visit(e)}visitNull({typeId:e}){return{name:Er.Type[e].toLowerCase()}}visitInt({typeId:e,bitWidth:r,isSigned:n}){return{name:Er.Type[e].toLowerCase(),bitWidth:r,isSigned:n}}visitFloat({typeId:e,precision:r}){return{name:Er.Type[e].toLowerCase(),precision:Ia.Precision[r]}}visitBinary({typeId:e}){return{name:Er.Type[e].toLowerCase()}}visitBool({typeId:e}){return{name:Er.Type[e].toLowerCase()}}visitUtf8({typeId:e}){return{name:Er.Type[e].toLowerCase()}}visitDecimal({typeId:e,scale:r,precision:n}){return{name:Er.Type[e].toLowerCase(),scale:r,precision:n}}visitDate({typeId:e,unit:r}){return{name:Er.Type[e].toLowerCase(),unit:Ia.DateUnit[r]}}visitTime({typeId:e,unit:r,bitWidth:n}){return{name:Er.Type[e].toLowerCase(),unit:Ia.TimeUnit[r],bitWidth:n}}visitTimestamp({typeId:e,timezone:r,unit:n}){return{name:Er.Type[e].toLowerCase(),unit:Ia.TimeUnit[n],timezone:r}}visitInterval({typeId:e,unit:r}){return{name:Er.Type[e].toLowerCase(),unit:Ia.IntervalUnit[r]}}visitList({typeId:e}){return{name:Er.Type[e].toLowerCase()}}visitStruct({typeId:e}){return{name:Er.Type[e].toLowerCase()}}visitUnion({typeId:e,mode:r,typeIds:n}){return{name:Er.Type[e].toLowerCase(),mode:Ia.UnionMode[r],typeIds:[...n]}}visitDictionary(e){return this.visit(e.dictionary)}visitFixedSizeBinary({typeId:e,byteWidth:r}){return{name:Er.Type[e].toLowerCase(),byteWidth:r}}visitFixedSizeList({typeId:e,listSize:r}){return{name:Er.Type[e].toLowerCase(),listSize:r}}visitMap({typeId:e,keysSorted:r}){return{name:Er.Type[e].toLowerCase(),keysSorted:r}}};Jd.JSONTypeAssembler=hI});var _I=z(Qd=>{"use strict";Object.defineProperty(Qd,"__esModule",{value:!0});Qd.JSONVectorAssembler=void 0;var wR=Iu(),Uu=va(),hR=or(),gR=xr(),yR=Rt(),jR=ho(),Zg=Rt(),Zd=qi(),_R=qa(),yI=_t(),Xd=class extends gR.Visitor{static assemble(...e){return new Xd().visitMany(_R.selectColumnChildrenArgs(jR.RecordBatch,e))}visit(e){let{data:r,name:n,length:i}=e,{offset:o,nullCount:f,nullBitmap:s}=r,l=yI.DataType.isDictionary(e.type)?e.type.indices:e.type,u=Object.assign([],r.buffers,{[yR.BufferType.VALIDITY]:void 0});return{name:n,count:i,VALIDITY:yI.DataType.isNull(l)?void 0:f<=0?Array.from({length:i},()=>1):[...new Zd.BitIterator(s,o,i,null,Zd.getBit)],...super.visit(hR.Vector.new(r.clone(l,o,i,0,u)))}}visitNull(){return{}}visitBool({values:e,offset:r,length:n}){return{DATA:[...new Zd.BitIterator(e,r,n,null,Zd.getBool)]}}visitInt(e){return{DATA:e.type.bitWidth<64?[...e.values]:[...Lu(e.values,2)]}}visitFloat(e){return{DATA:[...e.values]}}visitUtf8(e){return{DATA:[...e],OFFSET:[...e.valueOffsets]}}visitBinary(e){return{DATA:[...jI(e)],OFFSET:[...e.valueOffsets]}}visitFixedSizeBinary(e){return{DATA:[...jI(e)]}}visitDate(e){return{DATA:e.type.unit===Zg.DateUnit.DAY?[...e.values]:[...Lu(e.values,2)]}}visitTimestamp(e){return{DATA:[...Lu(e.values,2)]}}visitTime(e){return{DATA:e.type.unit<Zg.TimeUnit.MICROSECOND?[...e.values]:[...Lu(e.values,2)]}}visitDecimal(e){return{DATA:[...Lu(e.values,4)]}}visitList(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new Uu.Column(r,[e.getChildAt(n)])))}}visitStruct(e){return{children:e.type.children.map((r,n)=>this.visit(new Uu.Column(r,[e.getChildAt(n)])))}}visitUnion(e){return{TYPE:[...e.typeIds],OFFSET:e.type.mode===Zg.UnionMode.Dense?[...e.valueOffsets]:void 0,children:e.type.children.map((r,n)=>this.visit(new Uu.Column(r,[e.getChildAt(n)])))}}visitInterval(e){return{DATA:[...e.values]}}visitFixedSizeList(e){return{children:e.type.children.map((r,n)=>this.visit(new Uu.Column(r,[e.getChildAt(n)])))}}visitMap(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new Uu.Column(r,[e.getChildAt(n)])))}}};Qd.JSONVectorAssembler=Xd;function*jI(t){for(let e of t)yield e.reduce((r,n)=>`${r}${("0"+(n&255).toString(16)).slice(-2)}`,"").toUpperCase()}function*Lu(t,e){for(let r=-1,n=t.length/e;++r<n;)yield`${wR.BN.new(t.subarray((r+0)*e,(r+1)*e),!1)}`}});var nm=z(Oi=>{"use strict";Object.defineProperty(Oi,"__esModule",{value:!0});Oi.RecordBatchJSONWriter=Oi.RecordBatchFileWriter=Oi.RecordBatchStreamWriter=Oi.RecordBatchWriter=void 0;var Xg=Cu(),qR=Yd(),vR=va(),TR=_t(),BR=vr(),$d=us(),Qg=us(),Sa=Tg(),$g=Rt(),qI=Wg(),ey=lf(),vI=wI(),kR=gI(),TI=_I(),IR=gr(),ty=ho(),SR=Xs(),Ei=Fr(),Vu=class extends SR.ReadableInterop{constructor(e){super();this._position=0,this._started=!1,this._sink=new ey.AsyncByteQueue,this._schema=null,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,Ei.isObject(e)||(e={autoDestroy:!0,writeLegacyIpcFormat:!1}),this._autoDestroy=typeof e.autoDestroy=="boolean"?e.autoDestroy:!0,this._writeLegacyIpcFormat=typeof e.writeLegacyIpcFormat=="boolean"?e.writeLegacyIpcFormat:!1}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e,r){throw new Error('"throughDOM" not available in this environment')}toString(e=!1){return this._sink.toString(e)}toUint8Array(e=!1){return this._sink.toUint8Array(e)}writeAll(e){return Ei.isPromise(e)?e.then(r=>this.writeAll(r)):Ei.isAsyncIterable(e)?ny(this,e):ry(this,e)}get closed(){return this._sink.closed}[Symbol.asyncIterator](){return this._sink[Symbol.asyncIterator]()}toDOMStream(e){return this._sink.toDOMStream(e)}toNodeStream(e){return this._sink.toNodeStream(e)}close(){return this.reset()._sink.close()}abort(e){return this.reset()._sink.abort(e)}finish(){return this._autoDestroy?this.close():this.reset(this._sink,this._schema),this}reset(e=this._sink,r=null){return e===this._sink||e instanceof ey.AsyncByteQueue?this._sink=e:(this._sink=new ey.AsyncByteQueue,e&&Ei.isWritableDOMStream(e)?this.toDOMStream({type:"bytes"}).pipeTo(e):e&&Ei.isWritableNodeStream(e)&&this.toNodeStream({objectMode:!1}).pipe(e)),this._started&&this._schema&&this._writeFooter(this._schema),this._started=!1,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,(!r||!qI.compareSchemas(r,this._schema))&&(r===null?(this._position=0,this._schema=null):(this._started=!0,this._schema=r,this._writeSchema(r))),this}write(e){let r=null;if(this._sink){if(e==null)return this.finish()&&void 0;if(e instanceof Xg.Table&&!(r=e.schema))return this.finish()&&void 0;if(e instanceof ty.RecordBatch&&!(r=e.schema))return this.finish()&&void 0}else throw new Error("RecordBatchWriter is closed");if(r&&!qI.compareSchemas(r,this._schema)){if(this._started&&this._autoDestroy)return this.close();this.reset(this._sink,r)}e instanceof ty.RecordBatch?e instanceof ty._InternalEmptyPlaceholderRecordBatch||this._writeRecordBatch(e):e instanceof Xg.Table?this.writeAll(e.chunks):Ei.isIterable(e)&&this.writeAll(e)}_writeMessage(e,r=8){let n=r-1,i=$d.Message.encode(e),o=i.byteLength,f=this._writeLegacyIpcFormat?4:8,s=o+f+n&~n,l=s-o-f;return e.headerType===$g.MessageHeader.RecordBatch?this._recordBatchBlocks.push(new Sa.FileBlock(s,e.bodyLength,this._position)):e.headerType===$g.MessageHeader.DictionaryBatch&&this._dictionaryBlocks.push(new Sa.FileBlock(s,e.bodyLength,this._position)),this._writeLegacyIpcFormat||this._write(Int32Array.of(-1)),this._write(Int32Array.of(s-f)),o>0&&this._write(i),this._writePadding(l)}_write(e){if(this._started){let r=IR.toUint8Array(e);r&&r.byteLength>0&&(this._sink.write(r),this._position+=r.byteLength)}return this}_writeSchema(e){return this._writeMessage($d.Message.from(e))}_writeFooter(e){return this._writeLegacyIpcFormat?this._write(Int32Array.of(0)):this._write(Int32Array.of(-1,0))}_writeMagic(){return this._write(qR.MAGIC)}_writePadding(e){return e>0?this._write(new Uint8Array(e)):this}_writeRecordBatch(e){let{byteLength:r,nodes:n,bufferRegions:i,buffers:o}=vI.VectorAssembler.assemble(e),f=new Qg.RecordBatch(e.length,n,i),s=$d.Message.from(f,r);return this._writeDictionaries(e)._writeMessage(s)._writeBodyBuffers(o)}_writeDictionaryBatch(e,r,n=!1){this._dictionaryDeltaOffsets.set(r,e.length+(this._dictionaryDeltaOffsets.get(r)||0));let{byteLength:i,nodes:o,bufferRegions:f,buffers:s}=vI.VectorAssembler.assemble(e),l=new Qg.RecordBatch(e.length,o,f),u=new Qg.DictionaryBatch(l,r,n),c=$d.Message.from(u,i);return this._writeMessage(c)._writeBodyBuffers(s)}_writeBodyBuffers(e){let r,n,i;for(let o=-1,f=e.length;++o<f;)(r=e[o])&&(n=r.byteLength)>0&&(this._write(r),(i=(n+7&~7)-n)>0&&this._writePadding(i));return this}_writeDictionaries(e){for(let[r,n]of e.dictionaries){let i=this._dictionaryDeltaOffsets.get(r)||0;if(i===0||(n=n.slice(i)).length>0){let o="chunks"in n?n.chunks:[n];for(let f of o)this._writeDictionaryBatch(f,r,i>0),i+=f.length}}return this}};Oi.RecordBatchWriter=Vu;var em=class extends Vu{static writeAll(e,r){let n=new em(r);return Ei.isPromise(e)?e.then(i=>n.writeAll(i)):Ei.isAsyncIterable(e)?ny(n,e):ry(n,e)}};Oi.RecordBatchStreamWriter=em;var tm=class extends Vu{static writeAll(e){let r=new tm;return Ei.isPromise(e)?e.then(n=>r.writeAll(n)):Ei.isAsyncIterable(e)?ny(r,e):ry(r,e)}constructor(){super();this._autoDestroy=!0}_writeSchema(e){return this._writeMagic()._writePadding(2)}_writeFooter(e){let r=Sa.Footer.encode(new Sa.Footer(e,$g.MetadataVersion.V4,this._recordBatchBlocks,this._dictionaryBlocks));return super._writeFooter(e)._write(r)._write(Int32Array.of(r.byteLength))._writeMagic()}};Oi.RecordBatchFileWriter=tm;var rm=class extends Vu{constructor(){super();this._autoDestroy=!0,this._recordBatches=[],this._dictionaries=[]}static writeAll(e){return new rm().writeAll(e)}_writeMessage(){return this}_writeFooter(e){return this}_writeSchema(e){return this._write(`{
25
- "schema": ${JSON.stringify({fields:e.fields.map(BI)},null,2)}`)}_writeDictionaries(e){return e.dictionaries.size>0&&this._dictionaries.push(e),this}_writeDictionaryBatch(e,r,n=!1){return this._dictionaryDeltaOffsets.set(r,e.length+(this._dictionaryDeltaOffsets.get(r)||0)),this._write(this._dictionaryBlocks.length===0?" ":`,
26
- `),this._write(`${xR(e,r,n)}`),this._dictionaryBlocks.push(new Sa.FileBlock(0,0,0)),this}_writeRecordBatch(e){return this._writeDictionaries(e),this._recordBatches.push(e),this}close(){if(this._dictionaries.length>0){this._write(`,
27
- "dictionaries": [
28
- `);for(let e of this._dictionaries)super._writeDictionaries(e);this._write(`
29
- ]`)}if(this._recordBatches.length>0){for(let e=-1,r=this._recordBatches.length;++e<r;)this._write(e===0?`,
30
- "batches": [
31
- `:`,
32
- `),this._write(`${AR(this._recordBatches[e])}`),this._recordBatchBlocks.push(new Sa.FileBlock(0,0,0));this._write(`
33
- ]`)}return this._schema&&this._write(`
34
- }`),this._dictionaries=[],this._recordBatches=[],super.close()}};Oi.RecordBatchJSONWriter=rm;function ry(t,e){let r=e;e instanceof Xg.Table&&(r=e.chunks,t.reset(void 0,e.schema));for(let n of r)t.write(n);return t.finish()}async function ny(t,e){for await(let r of e)t.write(r);return t.finish()}function BI({name:t,type:e,nullable:r}){let n=new kR.JSONTypeAssembler;return{name:t,nullable:r,type:n.visit(e),children:(e.children||[]).map(BI),dictionary:TR.DataType.isDictionary(e)?{id:e.id,isOrdered:e.isOrdered,indexType:n.visit(e.indices)}:void 0}}function xR(t,e,r=!1){let n=new BR.Field(`${e}`,t.type,t.nullCount>0),i=TI.JSONVectorAssembler.assemble(new vR.Column(n,[t]));return JSON.stringify({id:e,isDelta:r,data:{count:t.length,columns:i}},null,2)}function AR(t){return JSON.stringify({count:t.length,columns:TI.JSONVectorAssembler.assemble(t)},null,2)}});var fy=z(hf=>{"use strict";Object.defineProperty(hf,"__esModule",{value:!0});hf.distributeVectorsIntoRecordBatches=hf.distributeColumnsIntoRecordBatches=hf.ensureSameLengthData=void 0;var kI=Xn(),iy=vr(),ER=df(),OR=ho(),oy=new Uint8Array(0),II=t=>[oy,oy,new Uint8Array(t),oy];function NR(t,e,r=e.reduce((n,i)=>Math.max(n,i.length),0)){let n,i,o=-1,f=e.length,s=[...t.fields],l=[],u=(r+63&~63)>>3;for(;++o<f;)(n=e[o])&&n.length===r?l[o]=n:((i=s[o]).nullable||(s[o]=s[o].clone({nullable:!0})),l[o]=n?n._changeLengthAndBackfillNullBitmap(r):kI.Data.new(i.type,0,r,r,II(u)));return[new iy.Schema(s),r,l]}hf.ensureSameLengthData=NR;function DR(t){return SI(new iy.Schema(t.map(({field:e})=>e)),t)}hf.distributeColumnsIntoRecordBatches=DR;function SI(t,e){return FR(t,e.map(r=>r instanceof ER.Chunked?r.chunks.map(n=>n.data):[r.data]))}hf.distributeVectorsIntoRecordBatches=SI;function FR(t,e){let r=[...t.fields],n=[],i={numBatches:e.reduce((_,p)=>Math.max(_,p.length),0)},o=0,f=0,s=-1,l=e.length,u,c=[];for(;i.numBatches-- >0;){for(f=Number.POSITIVE_INFINITY,s=-1;++s<l;)c[s]=u=e[s].shift(),f=Math.min(f,u?u.length:f);isFinite(f)&&(c=PR(r,f,c,e,i),f>0&&(n[o++]=[f,c.slice()]))}return[t=new iy.Schema(r,t.metadata),n.map(_=>new OR.RecordBatch(t,..._))]}function PR(t,e,r,n,i){let o,f,s=0,l=-1,u=n.length,c=(e+63&~63)>>3;for(;++l<u;)(o=r[l])&&(s=o.length)>=e?s===e?r[l]=o:(r[l]=o.slice(0,e),o=o.slice(e,s-e),i.numBatches=Math.max(i.numBatches,n[l].unshift(o))):((f=t[l]).nullable||(t[l]=f.clone({nullable:!0})),r[l]=o?o._changeLengthAndBackfillNullBitmap(e):kI.Data.new(f.type,0,e,e,II(c)));return r}});var sr=z(im=>{"use strict";Object.defineProperty(im,"__esModule",{value:!0});im.BaseVector=void 0;var RR=Rt(),HR=df(),MR=Fu(),sy=or(),ay=class extends sy.AbstractVector{constructor(e,r){super();this._children=r,this.numChildren=e.childData.length,this._bindDataAccessors(this.data=e)}get type(){return this.data.type}get typeId(){return this.data.typeId}get length(){return this.data.length}get offset(){return this.data.offset}get stride(){return this.data.stride}get nullCount(){return this.data.nullCount}get byteLength(){return this.data.byteLength}get VectorName(){return`${RR.Type[this.typeId]}Vector`}get ArrayType(){return this.type.ArrayType}get values(){return this.data.values}get typeIds(){return this.data.typeIds}get nullBitmap(){return this.data.nullBitmap}get valueOffsets(){return this.data.valueOffsets}get[Symbol.toStringTag](){return`${this.VectorName}<${this.type[Symbol.toStringTag]}>`}clone(e,r=this._children){return sy.Vector.new(e,r)}concat(...e){return HR.Chunked.concat(this,...e)}slice(e,r){return MR.clampRange(this,e,r,this._sliceInternal)}isValid(e){if(this.nullCount>0){let r=this.offset+e;return(this.nullBitmap[r>>3]&1<<r%8)!==0}return!0}getChildAt(e){return e<0||e>=this.numChildren?null:(this._children||(this._children=[]))[e]||(this._children[e]=sy.Vector.new(this.data.childData[e]))}toJSON(){return[...this]}_sliceInternal(e,r,n){return e.clone(e.data.slice(r,n-r),null)}_bindDataAccessors(e){}};im.BaseVector=ay;ay.prototype[Symbol.isConcatSpreadable]=!0});var ly=z(om=>{"use strict";Object.defineProperty(om,"__esModule",{value:!0});om.BinaryVector=void 0;var zR=or(),UR=sr(),LR=_t(),xI=class extends UR.BaseVector{asUtf8(){return zR.Vector.new(this.data.clone(new LR.Utf8))}};om.BinaryVector=xI});var uy=z(fm=>{"use strict";Object.defineProperty(fm,"__esModule",{value:!0});fm.BoolVector=void 0;var VR=_t(),CR=sr(),WR=Ni(),AI=class extends CR.BaseVector{static from(e){return WR.vectorFromValuesWithType(()=>new VR.Bool,e)}};fm.BoolVector=AI});var py=z(gf=>{"use strict";Object.defineProperty(gf,"__esModule",{value:!0});gf.DateMillisecondVector=gf.DateDayVector=gf.DateVector=void 0;var YR=Rt(),KR=sr(),EI=Ni(),cy=_t(),sm=class extends KR.BaseVector{static from(...e){return e.length===2?EI.vectorFromValuesWithType(()=>e[1]===YR.DateUnit.DAY?new cy.DateDay:new cy.DateMillisecond,e[0]):EI.vectorFromValuesWithType(()=>new cy.DateMillisecond,e[0])}};gf.DateVector=sm;var OI=class extends sm{};gf.DateDayVector=OI;var NI=class extends sm{};gf.DateMillisecondVector=NI});var dy=z(am=>{"use strict";Object.defineProperty(am,"__esModule",{value:!0});am.DecimalVector=void 0;var GR=sr(),DI=class extends GR.BaseVector{};am.DecimalVector=DI});var um=z(lm=>{"use strict";Object.defineProperty(lm,"__esModule",{value:!0});lm.DictionaryVector=void 0;var JR=Xn(),FI=or(),ZR=sr(),XR=Ni(),QR=_t(),my=class extends ZR.BaseVector{constructor(e){super(e);this.indices=FI.Vector.new(e.clone(this.type.indices))}static from(...e){if(e.length===3){let[r,n,i]=e,o=new QR.Dictionary(r.type,n,null,null);return FI.Vector.new(JR.Data.Dictionary(o,0,i.length,0,null,i,r))}return XR.vectorFromValuesWithType(()=>e[0].type,e[0])}get dictionary(){return this.data.dictionary}reverseLookup(e){return this.dictionary.indexOf(e)}getKey(e){return this.indices.get(e)}getValue(e){return this.dictionary.get(e)}setKey(e,r){return this.indices.set(e,r)}setValue(e,r){return this.dictionary.set(e,r)}};lm.DictionaryVector=my;my.prototype.indices=null});var by=z(cm=>{"use strict";Object.defineProperty(cm,"__esModule",{value:!0});cm.FixedSizeBinaryVector=void 0;var $R=sr(),PI=class extends $R.BaseVector{};cm.FixedSizeBinaryVector=PI});var wy=z(pm=>{"use strict";Object.defineProperty(pm,"__esModule",{value:!0});pm.FixedSizeListVector=void 0;var e3=sr(),RI=class extends e3.BaseVector{};pm.FixedSizeListVector=RI});var jy=z(Di=>{"use strict";Object.defineProperty(Di,"__esModule",{value:!0});Di.Float64Vector=Di.Float32Vector=Di.Float16Vector=Di.FloatVector=void 0;var t3=Xn(),r3=or(),n3=sr(),i3=Ni(),ms=_t(),Wu=class extends n3.BaseVector{static from(e){let r=s3(this);if(e instanceof ArrayBuffer||ArrayBuffer.isView(e)){let n=f3(e.constructor)||r;if(r===null&&(r=n),r&&r===n){let i=new r,o=e.byteLength/i.ArrayType.BYTES_PER_ELEMENT;if(!o3(r,e.constructor))return r3.Vector.new(t3.Data.Float(i,0,o,0,null,e))}}if(r)return i3.vectorFromValuesWithType(()=>new r,e);throw e instanceof DataView||e instanceof ArrayBuffer?new TypeError(`Cannot infer float type from instance of ${e.constructor.name}`):new TypeError("Unrecognized FloatVector input")}};Di.FloatVector=Wu;var hy=class extends Wu{toFloat32Array(){return new Float32Array(this)}toFloat64Array(){return new Float64Array(this)}};Di.Float16Vector=hy;var gy=class extends Wu{};Di.Float32Vector=gy;var yy=class extends Wu{};Di.Float64Vector=yy;var o3=(t,e)=>t===ms.Float16&&e!==Uint16Array,f3=t=>{switch(t){case Uint16Array:return ms.Float16;case Float32Array:return ms.Float32;case Float64Array:return ms.Float64;default:return null}},s3=t=>{switch(t){case hy:return ms.Float16;case gy:return ms.Float32;case yy:return ms.Float64;default:return null}}});var _y=z(yf=>{"use strict";Object.defineProperty(yf,"__esModule",{value:!0});yf.IntervalYearMonthVector=yf.IntervalDayTimeVector=yf.IntervalVector=void 0;var a3=sr(),dm=class extends a3.BaseVector{};yf.IntervalVector=dm;var HI=class extends dm{};yf.IntervalDayTimeVector=HI;var MI=class extends dm{};yf.IntervalYearMonthVector=MI});var mm=z(mr=>{"use strict";Object.defineProperty(mr,"__esModule",{value:!0});mr.Uint64Vector=mr.Uint32Vector=mr.Uint16Vector=mr.Uint8Vector=mr.Int64Vector=mr.Int32Vector=mr.Int16Vector=mr.Int8Vector=mr.IntVector=void 0;var l3=Xn(),u3=or(),c3=sr(),p3=Ni(),zI=Fr(),UI=gr(),er=_t(),Fi=class extends c3.BaseVector{static from(...e){let[r,n=!1]=e,i=b3(this,n);if(r instanceof ArrayBuffer||ArrayBuffer.isView(r)){let o=m3(r.constructor,n)||i;if(i===null&&(i=o),i&&i===o){let f=new i,s=r.byteLength/f.ArrayType.BYTES_PER_ELEMENT;return d3(i,r.constructor)&&(s*=.5),u3.Vector.new(l3.Data.Int(f,0,s,0,null,r))}}if(i)return p3.vectorFromValuesWithType(()=>new i,r);throw r instanceof DataView||r instanceof ArrayBuffer?new TypeError(`Cannot infer integer type from instance of ${r.constructor.name}`):new TypeError("Unrecognized IntVector input")}};mr.IntVector=Fi;var qy=class extends Fi{};mr.Int8Vector=qy;var vy=class extends Fi{};mr.Int16Vector=vy;var Ty=class extends Fi{};mr.Int32Vector=Ty;var By=class extends Fi{toBigInt64Array(){return UI.toBigInt64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigInt64Array())}};mr.Int64Vector=By;var ky=class extends Fi{};mr.Uint8Vector=ky;var Iy=class extends Fi{};mr.Uint16Vector=Iy;var Sy=class extends Fi{};mr.Uint32Vector=Sy;var xy=class extends Fi{toBigUint64Array(){return UI.toBigUint64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigUint64Array())}};mr.Uint64Vector=xy;var d3=(t,e)=>(t===er.Int64||t===er.Uint64)&&(e===Int32Array||e===Uint32Array),m3=(t,e)=>{switch(t){case Int8Array:return er.Int8;case Int16Array:return er.Int16;case Int32Array:return e?er.Int64:er.Int32;case zI.BigInt64Array:return er.Int64;case Uint8Array:return er.Uint8;case Uint16Array:return er.Uint16;case Uint32Array:return e?er.Uint64:er.Uint32;case zI.BigUint64Array:return er.Uint64;default:return null}},b3=(t,e)=>{switch(t){case qy:return er.Int8;case vy:return er.Int16;case Ty:return e?er.Int64:er.Int32;case By:return er.Int64;case ky:return er.Uint8;case Iy:return er.Uint16;case Sy:return e?er.Uint64:er.Uint32;case xy:return er.Uint64;default:return null}}});var Ay=z(bm=>{"use strict";Object.defineProperty(bm,"__esModule",{value:!0});bm.ListVector=void 0;var w3=sr(),LI=class extends w3.BaseVector{};bm.ListVector=LI});var Ey=z(wm=>{"use strict";Object.defineProperty(wm,"__esModule",{value:!0});wm.MapVector=void 0;var h3=Nu(),g3=or(),y3=sr(),j3=_t(),VI=class extends y3.BaseVector{asList(){let e=this.type.children[0];return g3.Vector.new(this.data.clone(new j3.List(e)))}bind(e){let r=this.getChildAt(0),{[e]:n,[e+1]:i}=this.valueOffsets;return new h3.MapRow(r.slice(n,i))}};wm.MapVector=VI});var Oy=z(hm=>{"use strict";Object.defineProperty(hm,"__esModule",{value:!0});hm.NullVector=void 0;var _3=sr(),CI=class extends _3.BaseVector{};hm.NullVector=CI});var Ny=z(gm=>{"use strict";Object.defineProperty(gm,"__esModule",{value:!0});gm.StructVector=void 0;var q3=Nu(),v3=sr(),T3=Symbol.for("rowIndex"),WI=class extends v3.BaseVector{bind(e){let r=this._row||(this._row=new q3.StructRow(this)),n=Object.create(r);return n[T3]=e,n}};gm.StructVector=WI});var Dy=z(Pn=>{"use strict";Object.defineProperty(Pn,"__esModule",{value:!0});Pn.TimestampNanosecondVector=Pn.TimestampMicrosecondVector=Pn.TimestampMillisecondVector=Pn.TimestampSecondVector=Pn.TimestampVector=void 0;var B3=sr(),xa=class extends B3.BaseVector{};Pn.TimestampVector=xa;var YI=class extends xa{};Pn.TimestampSecondVector=YI;var KI=class extends xa{};Pn.TimestampMillisecondVector=KI;var GI=class extends xa{};Pn.TimestampMicrosecondVector=GI;var JI=class extends xa{};Pn.TimestampNanosecondVector=JI});var Fy=z(Rn=>{"use strict";Object.defineProperty(Rn,"__esModule",{value:!0});Rn.TimeNanosecondVector=Rn.TimeMicrosecondVector=Rn.TimeMillisecondVector=Rn.TimeSecondVector=Rn.TimeVector=void 0;var k3=sr(),Aa=class extends k3.BaseVector{};Rn.TimeVector=Aa;var ZI=class extends Aa{};Rn.TimeSecondVector=ZI;var XI=class extends Aa{};Rn.TimeMillisecondVector=XI;var QI=class extends Aa{};Rn.TimeMicrosecondVector=QI;var $I=class extends Aa{};Rn.TimeNanosecondVector=$I});var Py=z(jf=>{"use strict";Object.defineProperty(jf,"__esModule",{value:!0});jf.SparseUnionVector=jf.DenseUnionVector=jf.UnionVector=void 0;var I3=sr(),ym=class extends I3.BaseVector{get typeIdToChildIndex(){return this.data.type.typeIdToChildIndex}};jf.UnionVector=ym;var eS=class extends ym{get valueOffsets(){return this.data.valueOffsets}};jf.DenseUnionVector=eS;var tS=class extends ym{};jf.SparseUnionVector=tS});var Ry=z(jm=>{"use strict";Object.defineProperty(jm,"__esModule",{value:!0});jm.Utf8Vector=void 0;var S3=or(),x3=sr(),rS=_t(),A3=Ni(),nS=class extends x3.BaseVector{static from(e){return A3.vectorFromValuesWithType(()=>new rS.Utf8,e)}asBinary(){return S3.Vector.new(this.data.clone(new rS.Binary))}};jm.Utf8Vector=nS});var iS=z(_f=>{"use strict";Object.defineProperty(_f,"__esModule",{value:!0});_f.partial2=_f.partial1=_f.partial0=void 0;function E3(t){return function(){return t(this)}}_f.partial0=E3;function O3(t){return function(e){return t(this,e)}}_f.partial1=O3;function N3(t){return function(e,r){return t(this,e,r)}}_f.partial2=N3});var zy=z(Ea=>{"use strict";Object.defineProperty(Ea,"__esModule",{value:!0});Ea.instance=Ea.GetVisitor=void 0;var _m=Iu(),D3=xr(),F3=Gf(),P3=vu(),Hn=Rt(),ze=class extends D3.Visitor{};Ea.GetVisitor=ze;var R3=(t,e)=>864e5*t[e],Hy=(t,e)=>4294967296*t[e+1]+(t[e]>>>0),H3=(t,e)=>4294967296*(t[e+1]/1e3)+(t[e]>>>0)/1e3,M3=(t,e)=>4294967296*(t[e+1]/1e6)+(t[e]>>>0)/1e6,oS=t=>new Date(t),z3=(t,e)=>oS(R3(t,e)),U3=(t,e)=>oS(Hy(t,e)),L3=(t,e)=>null,fS=(t,e,r)=>{let{[r]:n,[r+1]:i}=e;return n!=null&&i!=null?t.subarray(n,i):null},V3=({offset:t,values:e},r)=>{let n=t+r;return(e[n>>3]&1<<n%8)!=0},sS=({values:t},e)=>z3(t,e),aS=({values:t},e)=>U3(t,e*2),Pi=({stride:t,values:e},r)=>e[t*r],lS=({stride:t,values:e},r)=>P3.uint16ToFloat64(e[t*r]),My=({stride:t,values:e,type:r},n)=>_m.BN.new(e.subarray(t*n,t*(n+1)),r.isSigned),C3=({stride:t,values:e},r)=>e.subarray(t*r,t*(r+1)),W3=({values:t,valueOffsets:e},r)=>fS(t,e,r),Y3=({values:t,valueOffsets:e},r)=>{let n=fS(t,e,r);return n!==null?F3.decodeUtf8(n):null},K3=(t,e)=>t.type.bitWidth<64?Pi(t,e):My(t,e),G3=(t,e)=>t.type.precision!==Hn.Precision.HALF?Pi(t,e):lS(t,e),J3=(t,e)=>t.type.unit===Hn.DateUnit.DAY?sS(t,e):aS(t,e),uS=({values:t},e)=>1e3*Hy(t,e*2),cS=({values:t},e)=>Hy(t,e*2),pS=({values:t},e)=>H3(t,e*2),dS=({values:t},e)=>M3(t,e*2),Z3=(t,e)=>{switch(t.type.unit){case Hn.TimeUnit.SECOND:return uS(t,e);case Hn.TimeUnit.MILLISECOND:return cS(t,e);case Hn.TimeUnit.MICROSECOND:return pS(t,e);case Hn.TimeUnit.NANOSECOND:return dS(t,e)}},mS=({values:t,stride:e},r)=>t[e*r],bS=({values:t,stride:e},r)=>t[e*r],wS=({values:t},e)=>_m.BN.signed(t.subarray(2*e,2*(e+1))),hS=({values:t},e)=>_m.BN.signed(t.subarray(2*e,2*(e+1))),X3=(t,e)=>{switch(t.type.unit){case Hn.TimeUnit.SECOND:return mS(t,e);case Hn.TimeUnit.MILLISECOND:return bS(t,e);case Hn.TimeUnit.MICROSECOND:return wS(t,e);case Hn.TimeUnit.NANOSECOND:return hS(t,e)}},Q3=({values:t},e)=>_m.BN.decimal(t.subarray(4*e,4*(e+1))),$3=(t,e)=>{let r=t.getChildAt(0),{valueOffsets:n,stride:i}=t;return r.slice(n[e*i],n[e*i+1])},eH=(t,e)=>t.bind(e),tH=(t,e)=>t.bind(e),rH=(t,e)=>t.type.mode===Hn.UnionMode.Dense?gS(t,e):yS(t,e),gS=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(t.valueOffsets[e]):null},yS=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(e):null},nH=(t,e)=>t.getValue(t.getKey(e)),iH=(t,e)=>t.type.unit===Hn.IntervalUnit.DAY_TIME?jS(t,e):_S(t,e),jS=({values:t},e)=>t.subarray(2*e,2*(e+1)),_S=({values:t},e)=>{let r=t[e],n=new Int32Array(2);return n[0]=r/12|0,n[1]=r%12|0,n},oH=(t,e)=>{let r=t.getChildAt(0),{stride:n}=t;return r.slice(e*n,(e+1)*n)};ze.prototype.visitNull=L3;ze.prototype.visitBool=V3;ze.prototype.visitInt=K3;ze.prototype.visitInt8=Pi;ze.prototype.visitInt16=Pi;ze.prototype.visitInt32=Pi;ze.prototype.visitInt64=My;ze.prototype.visitUint8=Pi;ze.prototype.visitUint16=Pi;ze.prototype.visitUint32=Pi;ze.prototype.visitUint64=My;ze.prototype.visitFloat=G3;ze.prototype.visitFloat16=lS;ze.prototype.visitFloat32=Pi;ze.prototype.visitFloat64=Pi;ze.prototype.visitUtf8=Y3;ze.prototype.visitBinary=W3;ze.prototype.visitFixedSizeBinary=C3;ze.prototype.visitDate=J3;ze.prototype.visitDateDay=sS;ze.prototype.visitDateMillisecond=aS;ze.prototype.visitTimestamp=Z3;ze.prototype.visitTimestampSecond=uS;ze.prototype.visitTimestampMillisecond=cS;ze.prototype.visitTimestampMicrosecond=pS;ze.prototype.visitTimestampNanosecond=dS;ze.prototype.visitTime=X3;ze.prototype.visitTimeSecond=mS;ze.prototype.visitTimeMillisecond=bS;ze.prototype.visitTimeMicrosecond=wS;ze.prototype.visitTimeNanosecond=hS;ze.prototype.visitDecimal=Q3;ze.prototype.visitList=$3;ze.prototype.visitStruct=tH;ze.prototype.visitUnion=rH;ze.prototype.visitDenseUnion=gS;ze.prototype.visitSparseUnion=yS;ze.prototype.visitDictionary=nH;ze.prototype.visitInterval=iH;ze.prototype.visitIntervalDayTime=jS;ze.prototype.visitIntervalYearMonth=_S;ze.prototype.visitFixedSizeList=oH;ze.prototype.visitMap=eH;Ea.instance=new ze});var BS=z(Oa=>{"use strict";Object.defineProperty(Oa,"__esModule",{value:!0});Oa.instance=Oa.IndexOfVisitor=void 0;var fH=xr(),qS=qi(),vS=Fu(),Ue=class extends fH.Visitor{};Oa.IndexOfVisitor=Ue;function sH(t,e){return e===null&&t.length>0?0:-1}function aH(t,e){let{nullBitmap:r}=t.data;if(!r||t.nullCount<=0)return-1;let n=0;for(let i of new qS.BitIterator(r,t.data.offset+(e||0),t.length,r,qS.getBool)){if(!i)return n;++n}return-1}function it(t,e,r){if(e===void 0)return-1;if(e===null)return aH(t,r);let n=vS.createElementComparator(e);for(let i=(r||0)-1,o=t.length;++i<o;)if(n(t.get(i)))return i;return-1}function TS(t,e,r){let n=vS.createElementComparator(e);for(let i=(r||0)-1,o=t.length;++i<o;)if(n(t.get(i)))return i;return-1}Ue.prototype.visitNull=sH;Ue.prototype.visitBool=it;Ue.prototype.visitInt=it;Ue.prototype.visitInt8=it;Ue.prototype.visitInt16=it;Ue.prototype.visitInt32=it;Ue.prototype.visitInt64=it;Ue.prototype.visitUint8=it;Ue.prototype.visitUint16=it;Ue.prototype.visitUint32=it;Ue.prototype.visitUint64=it;Ue.prototype.visitFloat=it;Ue.prototype.visitFloat16=it;Ue.prototype.visitFloat32=it;Ue.prototype.visitFloat64=it;Ue.prototype.visitUtf8=it;Ue.prototype.visitBinary=it;Ue.prototype.visitFixedSizeBinary=it;Ue.prototype.visitDate=it;Ue.prototype.visitDateDay=it;Ue.prototype.visitDateMillisecond=it;Ue.prototype.visitTimestamp=it;Ue.prototype.visitTimestampSecond=it;Ue.prototype.visitTimestampMillisecond=it;Ue.prototype.visitTimestampMicrosecond=it;Ue.prototype.visitTimestampNanosecond=it;Ue.prototype.visitTime=it;Ue.prototype.visitTimeSecond=it;Ue.prototype.visitTimeMillisecond=it;Ue.prototype.visitTimeMicrosecond=it;Ue.prototype.visitTimeNanosecond=it;Ue.prototype.visitDecimal=it;Ue.prototype.visitList=it;Ue.prototype.visitStruct=it;Ue.prototype.visitUnion=it;Ue.prototype.visitDenseUnion=TS;Ue.prototype.visitSparseUnion=TS;Ue.prototype.visitDictionary=it;Ue.prototype.visitInterval=it;Ue.prototype.visitIntervalDayTime=it;Ue.prototype.visitIntervalYearMonth=it;Ue.prototype.visitFixedSizeList=it;Ue.prototype.visitMap=it;Oa.instance=new Ue});var Uy=z(Na=>{"use strict";Object.defineProperty(Na,"__esModule",{value:!0});Na.instance=Na.IteratorVisitor=void 0;var qm=Rt(),lH=xr(),uH=qi(),kS=zy(),Le=class extends lH.Visitor{};Na.IteratorVisitor=Le;function cH(t){let e=kS.instance.getVisitFn(t);return new uH.BitIterator(t.data.nullBitmap,t.data.offset,t.length,t,(r,n,i,o)=>(i&1<<o)!=0?e(r,n):null)}var IS=class{constructor(e,r){this.vector=e,this.getFn=r,this.index=0}next(){return this.index<this.vector.length?{value:this.getFn(this.vector,this.index++)}:{done:!0,value:null}}[Symbol.iterator](){return this}};function $e(t){if(t.nullCount>0)return cH(t);let{type:e,typeId:r,length:n}=t;return t.stride===1&&(r===qm.Type.Timestamp||r===qm.Type.Int&&e.bitWidth!==64||r===qm.Type.Time&&e.bitWidth!==64||r===qm.Type.Float&&e.precision>0)?t.data.values.subarray(0,n)[Symbol.iterator]():new IS(t,kS.instance.getVisitFn(t))}Le.prototype.visitNull=$e;Le.prototype.visitBool=$e;Le.prototype.visitInt=$e;Le.prototype.visitInt8=$e;Le.prototype.visitInt16=$e;Le.prototype.visitInt32=$e;Le.prototype.visitInt64=$e;Le.prototype.visitUint8=$e;Le.prototype.visitUint16=$e;Le.prototype.visitUint32=$e;Le.prototype.visitUint64=$e;Le.prototype.visitFloat=$e;Le.prototype.visitFloat16=$e;Le.prototype.visitFloat32=$e;Le.prototype.visitFloat64=$e;Le.prototype.visitUtf8=$e;Le.prototype.visitBinary=$e;Le.prototype.visitFixedSizeBinary=$e;Le.prototype.visitDate=$e;Le.prototype.visitDateDay=$e;Le.prototype.visitDateMillisecond=$e;Le.prototype.visitTimestamp=$e;Le.prototype.visitTimestampSecond=$e;Le.prototype.visitTimestampMillisecond=$e;Le.prototype.visitTimestampMicrosecond=$e;Le.prototype.visitTimestampNanosecond=$e;Le.prototype.visitTime=$e;Le.prototype.visitTimeSecond=$e;Le.prototype.visitTimeMillisecond=$e;Le.prototype.visitTimeMicrosecond=$e;Le.prototype.visitTimeNanosecond=$e;Le.prototype.visitDecimal=$e;Le.prototype.visitList=$e;Le.prototype.visitStruct=$e;Le.prototype.visitUnion=$e;Le.prototype.visitDenseUnion=$e;Le.prototype.visitSparseUnion=$e;Le.prototype.visitDictionary=$e;Le.prototype.visitInterval=$e;Le.prototype.visitIntervalDayTime=$e;Le.prototype.visitIntervalYearMonth=$e;Le.prototype.visitFixedSizeList=$e;Le.prototype.visitMap=$e;Na.instance=new Le});var SS=z(Da=>{"use strict";Object.defineProperty(Da,"__esModule",{value:!0});Da.instance=Da.ToArrayVisitor=void 0;var Yu=Rt(),pH=xr(),dH=Uy(),Ve=class extends pH.Visitor{};Da.ToArrayVisitor=Ve;function et(t){let{type:e,length:r,stride:n}=t;switch(e.typeId){case Yu.Type.Int:case Yu.Type.Float:case Yu.Type.Decimal:case Yu.Type.Time:case Yu.Type.Timestamp:return t.data.values.subarray(0,r*n)}return[...dH.instance.visit(t)]}Ve.prototype.visitNull=et;Ve.prototype.visitBool=et;Ve.prototype.visitInt=et;Ve.prototype.visitInt8=et;Ve.prototype.visitInt16=et;Ve.prototype.visitInt32=et;Ve.prototype.visitInt64=et;Ve.prototype.visitUint8=et;Ve.prototype.visitUint16=et;Ve.prototype.visitUint32=et;Ve.prototype.visitUint64=et;Ve.prototype.visitFloat=et;Ve.prototype.visitFloat16=et;Ve.prototype.visitFloat32=et;Ve.prototype.visitFloat64=et;Ve.prototype.visitUtf8=et;Ve.prototype.visitBinary=et;Ve.prototype.visitFixedSizeBinary=et;Ve.prototype.visitDate=et;Ve.prototype.visitDateDay=et;Ve.prototype.visitDateMillisecond=et;Ve.prototype.visitTimestamp=et;Ve.prototype.visitTimestampSecond=et;Ve.prototype.visitTimestampMillisecond=et;Ve.prototype.visitTimestampMicrosecond=et;Ve.prototype.visitTimestampNanosecond=et;Ve.prototype.visitTime=et;Ve.prototype.visitTimeSecond=et;Ve.prototype.visitTimeMillisecond=et;Ve.prototype.visitTimeMicrosecond=et;Ve.prototype.visitTimeNanosecond=et;Ve.prototype.visitDecimal=et;Ve.prototype.visitList=et;Ve.prototype.visitStruct=et;Ve.prototype.visitUnion=et;Ve.prototype.visitDenseUnion=et;Ve.prototype.visitSparseUnion=et;Ve.prototype.visitDictionary=et;Ve.prototype.visitInterval=et;Ve.prototype.visitIntervalDayTime=et;Ve.prototype.visitIntervalYearMonth=et;Ve.prototype.visitFixedSizeList=et;Ve.prototype.visitMap=et;Da.instance=new Ve});var xS=z(Fa=>{"use strict";Object.defineProperty(Fa,"__esModule",{value:!0});Fa.instance=Fa.ByteWidthVisitor=void 0;var mH=xr(),bH=Rt(),Ku=(t,e)=>t+e,Ly=t=>`Cannot compute the byte width of variable-width column ${t}`,Vy=class extends mH.Visitor{visitNull(e){return 0}visitInt(e){return e.bitWidth/8}visitFloat(e){return e.ArrayType.BYTES_PER_ELEMENT}visitBinary(e){throw new Error(Ly(e))}visitUtf8(e){throw new Error(Ly(e))}visitBool(e){return 1/8}visitDecimal(e){return 16}visitDate(e){return(e.unit+1)*4}visitTime(e){return e.bitWidth/8}visitTimestamp(e){return e.unit===bH.TimeUnit.SECOND?4:8}visitInterval(e){return(e.unit+1)*4}visitList(e){throw new Error(Ly(e))}visitStruct(e){return this.visitFields(e.children).reduce(Ku,0)}visitUnion(e){return this.visitFields(e.children).reduce(Ku,0)}visitFixedSizeBinary(e){return e.byteWidth}visitFixedSizeList(e){return e.listSize*this.visitFields(e.children).reduce(Ku,0)}visitMap(e){return this.visitFields(e.children).reduce(Ku,0)}visitDictionary(e){return this.visit(e.indices)}visitFields(e){return(e||[]).map(r=>this.visit(r.type))}visitSchema(e){return this.visitFields(e.fields).reduce(Ku,0)}};Fa.ByteWidthVisitor=Vy;Fa.instance=new Vy});var AS=z(Pa=>{"use strict";Object.defineProperty(Pa,"__esModule",{value:!0});Pa.instance=Pa.GetVectorConstructor=void 0;var wH=xr(),hH=ly(),gH=uy(),Cy=py(),yH=dy(),jH=um(),_H=by(),qH=wy(),vm=jy(),Wy=_y(),go=mm(),vH=Ay(),TH=Ey(),BH=Oy(),kH=Ny(),Gu=Dy(),Ju=Fy(),Yy=Py(),IH=Ry(),Ky=class extends wH.Visitor{visitNull(){return BH.NullVector}visitBool(){return gH.BoolVector}visitInt(){return go.IntVector}visitInt8(){return go.Int8Vector}visitInt16(){return go.Int16Vector}visitInt32(){return go.Int32Vector}visitInt64(){return go.Int64Vector}visitUint8(){return go.Uint8Vector}visitUint16(){return go.Uint16Vector}visitUint32(){return go.Uint32Vector}visitUint64(){return go.Uint64Vector}visitFloat(){return vm.FloatVector}visitFloat16(){return vm.Float16Vector}visitFloat32(){return vm.Float32Vector}visitFloat64(){return vm.Float64Vector}visitUtf8(){return IH.Utf8Vector}visitBinary(){return hH.BinaryVector}visitFixedSizeBinary(){return _H.FixedSizeBinaryVector}visitDate(){return Cy.DateVector}visitDateDay(){return Cy.DateDayVector}visitDateMillisecond(){return Cy.DateMillisecondVector}visitTimestamp(){return Gu.TimestampVector}visitTimestampSecond(){return Gu.TimestampSecondVector}visitTimestampMillisecond(){return Gu.TimestampMillisecondVector}visitTimestampMicrosecond(){return Gu.TimestampMicrosecondVector}visitTimestampNanosecond(){return Gu.TimestampNanosecondVector}visitTime(){return Ju.TimeVector}visitTimeSecond(){return Ju.TimeSecondVector}visitTimeMillisecond(){return Ju.TimeMillisecondVector}visitTimeMicrosecond(){return Ju.TimeMicrosecondVector}visitTimeNanosecond(){return Ju.TimeNanosecondVector}visitDecimal(){return yH.DecimalVector}visitList(){return vH.ListVector}visitStruct(){return kH.StructVector}visitUnion(){return Yy.UnionVector}visitDenseUnion(){return Yy.DenseUnionVector}visitSparseUnion(){return Yy.SparseUnionVector}visitDictionary(){return jH.DictionaryVector}visitInterval(){return Wy.IntervalVector}visitIntervalDayTime(){return Wy.IntervalDayTimeVector}visitIntervalYearMonth(){return Wy.IntervalYearMonthVector}visitFixedSizeList(){return qH.FixedSizeListVector}visitMap(){return TH.MapVector}};Pa.GetVectorConstructor=Ky;Pa.instance=new Ky});var Ni=z(se=>{"use strict";Object.defineProperty(se,"__esModule",{value:!0});se.vectorFromValuesWithType=se.StructRow=se.MapRow=se.Utf8Vector=se.SparseUnionVector=se.DenseUnionVector=se.UnionVector=se.TimeNanosecondVector=se.TimeMicrosecondVector=se.TimeMillisecondVector=se.TimeSecondVector=se.TimeVector=se.TimestampNanosecondVector=se.TimestampMicrosecondVector=se.TimestampMillisecondVector=se.TimestampSecondVector=se.TimestampVector=se.StructVector=se.NullVector=se.MapVector=se.ListVector=se.Uint64Vector=se.Uint32Vector=se.Uint16Vector=se.Uint8Vector=se.Int64Vector=se.Int32Vector=se.Int16Vector=se.Int8Vector=se.IntVector=se.IntervalYearMonthVector=se.IntervalDayTimeVector=se.IntervalVector=se.Float64Vector=se.Float32Vector=se.Float16Vector=se.FloatVector=se.FixedSizeListVector=se.FixedSizeBinaryVector=se.DictionaryVector=se.DecimalVector=se.DateMillisecondVector=se.DateDayVector=se.DateVector=se.Chunked=se.BoolVector=se.BinaryVector=se.BaseVector=se.Vector=void 0;var SH=or();Object.defineProperty(se,"Vector",{enumerable:!0,get:function(){return SH.Vector}});var xH=sr();Object.defineProperty(se,"BaseVector",{enumerable:!0,get:function(){return xH.BaseVector}});var AH=ly();Object.defineProperty(se,"BinaryVector",{enumerable:!0,get:function(){return AH.BinaryVector}});var EH=uy();Object.defineProperty(se,"BoolVector",{enumerable:!0,get:function(){return EH.BoolVector}});var OH=df();Object.defineProperty(se,"Chunked",{enumerable:!0,get:function(){return OH.Chunked}});var Gy=py();Object.defineProperty(se,"DateVector",{enumerable:!0,get:function(){return Gy.DateVector}});Object.defineProperty(se,"DateDayVector",{enumerable:!0,get:function(){return Gy.DateDayVector}});Object.defineProperty(se,"DateMillisecondVector",{enumerable:!0,get:function(){return Gy.DateMillisecondVector}});var NH=dy();Object.defineProperty(se,"DecimalVector",{enumerable:!0,get:function(){return NH.DecimalVector}});var DH=um();Object.defineProperty(se,"DictionaryVector",{enumerable:!0,get:function(){return DH.DictionaryVector}});var FH=by();Object.defineProperty(se,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return FH.FixedSizeBinaryVector}});var PH=wy();Object.defineProperty(se,"FixedSizeListVector",{enumerable:!0,get:function(){return PH.FixedSizeListVector}});var Tm=jy();Object.defineProperty(se,"FloatVector",{enumerable:!0,get:function(){return Tm.FloatVector}});Object.defineProperty(se,"Float16Vector",{enumerable:!0,get:function(){return Tm.Float16Vector}});Object.defineProperty(se,"Float32Vector",{enumerable:!0,get:function(){return Tm.Float32Vector}});Object.defineProperty(se,"Float64Vector",{enumerable:!0,get:function(){return Tm.Float64Vector}});var Jy=_y();Object.defineProperty(se,"IntervalVector",{enumerable:!0,get:function(){return Jy.IntervalVector}});Object.defineProperty(se,"IntervalDayTimeVector",{enumerable:!0,get:function(){return Jy.IntervalDayTimeVector}});Object.defineProperty(se,"IntervalYearMonthVector",{enumerable:!0,get:function(){return Jy.IntervalYearMonthVector}});var yo=mm();Object.defineProperty(se,"IntVector",{enumerable:!0,get:function(){return yo.IntVector}});Object.defineProperty(se,"Int8Vector",{enumerable:!0,get:function(){return yo.Int8Vector}});Object.defineProperty(se,"Int16Vector",{enumerable:!0,get:function(){return yo.Int16Vector}});Object.defineProperty(se,"Int32Vector",{enumerable:!0,get:function(){return yo.Int32Vector}});Object.defineProperty(se,"Int64Vector",{enumerable:!0,get:function(){return yo.Int64Vector}});Object.defineProperty(se,"Uint8Vector",{enumerable:!0,get:function(){return yo.Uint8Vector}});Object.defineProperty(se,"Uint16Vector",{enumerable:!0,get:function(){return yo.Uint16Vector}});Object.defineProperty(se,"Uint32Vector",{enumerable:!0,get:function(){return yo.Uint32Vector}});Object.defineProperty(se,"Uint64Vector",{enumerable:!0,get:function(){return yo.Uint64Vector}});var RH=Ay();Object.defineProperty(se,"ListVector",{enumerable:!0,get:function(){return RH.ListVector}});var HH=Ey();Object.defineProperty(se,"MapVector",{enumerable:!0,get:function(){return HH.MapVector}});var MH=Oy();Object.defineProperty(se,"NullVector",{enumerable:!0,get:function(){return MH.NullVector}});var zH=Ny();Object.defineProperty(se,"StructVector",{enumerable:!0,get:function(){return zH.StructVector}});var Zu=Dy();Object.defineProperty(se,"TimestampVector",{enumerable:!0,get:function(){return Zu.TimestampVector}});Object.defineProperty(se,"TimestampSecondVector",{enumerable:!0,get:function(){return Zu.TimestampSecondVector}});Object.defineProperty(se,"TimestampMillisecondVector",{enumerable:!0,get:function(){return Zu.TimestampMillisecondVector}});Object.defineProperty(se,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return Zu.TimestampMicrosecondVector}});Object.defineProperty(se,"TimestampNanosecondVector",{enumerable:!0,get:function(){return Zu.TimestampNanosecondVector}});var Xu=Fy();Object.defineProperty(se,"TimeVector",{enumerable:!0,get:function(){return Xu.TimeVector}});Object.defineProperty(se,"TimeSecondVector",{enumerable:!0,get:function(){return Xu.TimeSecondVector}});Object.defineProperty(se,"TimeMillisecondVector",{enumerable:!0,get:function(){return Xu.TimeMillisecondVector}});Object.defineProperty(se,"TimeMicrosecondVector",{enumerable:!0,get:function(){return Xu.TimeMicrosecondVector}});Object.defineProperty(se,"TimeNanosecondVector",{enumerable:!0,get:function(){return Xu.TimeNanosecondVector}});var Zy=Py();Object.defineProperty(se,"UnionVector",{enumerable:!0,get:function(){return Zy.UnionVector}});Object.defineProperty(se,"DenseUnionVector",{enumerable:!0,get:function(){return Zy.DenseUnionVector}});Object.defineProperty(se,"SparseUnionVector",{enumerable:!0,get:function(){return Zy.SparseUnionVector}});var UH=Ry();Object.defineProperty(se,"Utf8Vector",{enumerable:!0,get:function(){return UH.Utf8Vector}});var ES=Nu();Object.defineProperty(se,"MapRow",{enumerable:!0,get:function(){return ES.MapRow}});Object.defineProperty(se,"StructRow",{enumerable:!0,get:function(){return ES.StructRow}});var Qu=iS(),Xy=Rt(),Ra=or(),OS=df(),bs=sr(),LH=qi(),Bm=Fr(),NS=Xt(),DS=zy(),FS=dg(),PS=BS(),RS=SS(),HS=Uy(),MS=xS(),zS=AS();Ra.Vector.new=VH;Ra.Vector.from=WH;function VH(t,...e){return new(zS.instance.getVisitFn(t)())(t,...e)}function CH(t,e){if(Bm.isIterable(e))return Ra.Vector.from({nullValues:[null,void 0],type:t(),values:e});if(Bm.isAsyncIterable(e))return Ra.Vector.from({nullValues:[null,void 0],type:t(),values:e});let{values:r=[],type:n=t(),nullValues:i=[null,void 0]}={...e};return Bm.isIterable(r)?Ra.Vector.from({nullValues:i,...e,type:n}):Ra.Vector.from({nullValues:i,...e,type:n})}se.vectorFromValuesWithType=CH;function WH(t){let{values:e=[],...r}={nullValues:[null,void 0],...t};if(Bm.isIterable(e)){let n=[...NS.Builder.throughIterable(r)(e)];return n.length===1?n[0]:OS.Chunked.concat(n)}return(async n=>{let i=NS.Builder.throughAsyncIterable(r);for await(let o of i(e))n.push(o);return n.length===1?n[0]:OS.Chunked.concat(n)})([])}bs.BaseVector.prototype.get=function(e){return DS.instance.visit(this,e)};bs.BaseVector.prototype.set=function(e,r){return FS.instance.visit(this,e,r)};bs.BaseVector.prototype.indexOf=function(e,r){return PS.instance.visit(this,e,r)};bs.BaseVector.prototype.toArray=function(){return RS.instance.visit(this)};bs.BaseVector.prototype.getByteWidth=function(){return MS.instance.visit(this.type)};bs.BaseVector.prototype[Symbol.iterator]=function(){return HS.instance.visit(this)};bs.BaseVector.prototype._bindDataAccessors=JH;Object.keys(Xy.Type).map(t=>Xy.Type[t]).filter(t=>typeof t=="number").filter(t=>t!==Xy.Type.NONE).forEach(t=>{let e=zS.instance.visit(t);e.prototype.get=Qu.partial1(DS.instance.getVisitFn(t)),e.prototype.set=Qu.partial2(FS.instance.getVisitFn(t)),e.prototype.indexOf=Qu.partial2(PS.instance.getVisitFn(t)),e.prototype.toArray=Qu.partial0(RS.instance.getVisitFn(t)),e.prototype.getByteWidth=YH(MS.instance.getVisitFn(t)),e.prototype[Symbol.iterator]=Qu.partial0(HS.instance.getVisitFn(t))});function YH(t){return function(){return t(this.type)}}function KH(t){return function(e){return this.isValid(e)?t.call(this,e):null}}function GH(t){return function(e,r){LH.setBool(this.nullBitmap,this.offset+e,r!=null)&&t.call(this,e,r)}}function JH(){let t=this.nullBitmap;t&&t.byteLength>0&&(this.get=KH(this.get),this.set=GH(this.set))}});var Cu=z(km=>{"use strict";Object.defineProperty(km,"__esModule",{value:!0});km.Table=void 0;var ZH=va(),US=vr(),Qy=ho(),XH=$u(),$y=_t(),LS=qa(),ej=Fr(),VS=nm(),CS=fy(),tj=Ni(),Br=class extends tj.Chunked{constructor(...e){let r=null;e[0]instanceof US.Schema&&(r=e.shift());let n=LS.selectArgs(Qy.RecordBatch,e);if(!r&&!(r=n[0]&&n[0].schema))throw new TypeError("Table must be initialized with a Schema or at least one RecordBatch");n[0]||(n[0]=new Qy._InternalEmptyPlaceholderRecordBatch(r));super(new $y.Struct(r.fields),n);this._schema=r,this._chunks=n}static empty(e=new US.Schema([])){return new Br(e,[])}static from(e){if(!e)return Br.empty();if(typeof e=="object"){let n=ej.isIterable(e.values)?QH(e):ej.isAsyncIterable(e.values)?$H(e):null;if(n!==null)return n}let r=XH.RecordBatchReader.from(e);return ej.isPromise(r)?(async()=>await Br.from(await r))():r.isSync()&&(r=r.open())?r.schema?new Br(r.schema,[...r]):Br.empty():(async n=>{let i=await n,o=i.schema,f=[];if(o){for await(let s of i)f.push(s);return new Br(o,f)}return Br.empty()})(r.open())}static async fromAsync(e){return await Br.from(e)}static fromStruct(e){return Br.new(e.data.childData,e.type.children)}static new(...e){return new Br(...CS.distributeColumnsIntoRecordBatches(LS.selectColumnArgs(e)))}get schema(){return this._schema}get length(){return this._length}get chunks(){return this._chunks}get numCols(){return this._numChildren}clone(e=this._chunks){return new Br(this._schema,e)}getColumn(e){return this.getColumnAt(this.getColumnIndex(e))}getColumnAt(e){return this.getChildAt(e)}getColumnIndex(e){return this._schema.fields.findIndex(r=>r.name===e)}getChildAt(e){if(e<0||e>=this.numChildren)return null;let r,n,i=this._schema.fields,o=this._children||(this._children=[]);if(n=o[e])return n;if(r=i[e]){let f=this._chunks.map(s=>s.getChildAt(e)).filter(s=>s!=null);if(f.length>0)return o[e]=new ZH.Column(r,f)}return null}serialize(e="binary",r=!0){return(r?VS.RecordBatchStreamWriter:VS.RecordBatchFileWriter).writeAll(this).toUint8Array(!0)}count(){return this._length}select(...e){let r=this._schema.fields.reduce((n,i,o)=>n.set(i.name,o),new Map);return this.selectAt(...e.map(n=>r.get(n)).filter(n=>n>-1))}selectAt(...e){let r=this._schema.selectAt(...e);return new Br(r,this._chunks.map(({length:n,data:{childData:i}})=>new Qy.RecordBatch(r,n,e.map(o=>i[o]).filter(Boolean))))}assign(e){let r=this._schema.fields,[n,i]=e.schema.fields.reduce((s,l,u)=>{let[c,_]=s,p=r.findIndex(j=>j.name===l.name);return~p?_[p]=u:c.push(u),s},[[],[]]),o=this._schema.assign(e.schema),f=[...r.map((s,l,u,c=i[l])=>c===void 0?this.getColumnAt(l):e.getColumnAt(c)),...n.map(s=>e.getColumnAt(s))].filter(Boolean);return new Br(...CS.distributeVectorsIntoRecordBatches(o,f))}};km.Table=Br;function QH(t){let{type:e}=t;return e instanceof $y.Struct?Br.fromStruct(tj.StructVector.from(t)):null}function $H(t){let{type:e}=t;return e instanceof $y.Struct?tj.StructVector.from(t).then(r=>Br.fromStruct(r)):null}});var ho=z(Ha=>{"use strict";Object.defineProperty(Ha,"__esModule",{value:!0});Ha._InternalEmptyPlaceholderRecordBatch=Ha.RecordBatch=void 0;var rj=Xn(),nj=Cu(),eM=or(),tM=xr(),rM=vr(),nM=Fr(),iM=df(),oM=qa(),ij=_t(),fM=fy(),sM=Ni(),qf=class extends sM.StructVector{constructor(...e){let r,n=e[0],i;if(e[1]instanceof rj.Data)[,r,i]=e;else{let o=n.fields,[,f,s]=e;r=rj.Data.Struct(new ij.Struct(o),0,f,0,null,s)}super(r,i);this._schema=n}static from(e){return nM.isIterable(e.values),nj.Table.from(e)}static new(...e){let[r,n]=oM.selectFieldArgs(e),i=n.filter(o=>o instanceof eM.Vector);return new qf(...fM.ensureSameLengthData(new rM.Schema(r),i.map(o=>o.data)))}clone(e,r=this._children){return new qf(this._schema,e,r)}concat(...e){let r=this._schema,n=iM.Chunked.flatten(this,...e);return new nj.Table(r,n.map(({data:i})=>new qf(r,i)))}get schema(){return this._schema}get numCols(){return this._schema.fields.length}get dictionaries(){return this._dictionaries||(this._dictionaries=Im.collect(this))}select(...e){let r=this._schema.fields.reduce((n,i,o)=>n.set(i.name,o),new Map);return this.selectAt(...e.map(n=>r.get(n)).filter(n=>n>-1))}selectAt(...e){let r=this._schema.selectAt(...e),n=e.map(i=>this.data.childData[i]).filter(Boolean);return new qf(r,this.length,n)}};Ha.RecordBatch=qf;var WS=class extends qf{constructor(e){super(e,0,e.fields.map(r=>rj.Data.new(r.type,0,0,0)))}};Ha._InternalEmptyPlaceholderRecordBatch=WS;var Im=class extends tM.Visitor{constructor(){super(...arguments);this.dictionaries=new Map}static collect(e){return new Im().visit(e.data,new ij.Struct(e.schema.fields)).dictionaries}visit(e,r){return ij.DataType.isDictionary(r)?this.visitDictionary(e,r):(e.childData.forEach((n,i)=>this.visit(n,r.children[i].type)),this)}visitDictionary(e,r){let n=e.dictionary;return n&&n.length>0&&this.dictionaries.set(r.id,n),this}}});var $u=z(Un=>{"use strict";Object.defineProperty(Un,"__esModule",{value:!0});Un.AsyncRecordBatchFileReader=Un.RecordBatchFileReader=Un.AsyncRecordBatchStreamReader=Un.RecordBatchStreamReader=Un.RecordBatchReader=void 0;var YS=or(),Sm=Rt(),KS=Tg(),GS=_u(),JS=lf(),ec=Ig(),ZS=Sk(),oj=ho(),ws=Xs(),Mn=Yd(),zn=Fr(),Ri=class extends ws.ReadableInterop{constructor(e){super();this._impl=e}get closed(){return this._impl.closed}get schema(){return this._impl.schema}get autoDestroy(){return this._impl.autoDestroy}get dictionaries(){return this._impl.dictionaries}get numDictionaries(){return this._impl.numDictionaries}get numRecordBatches(){return this._impl.numRecordBatches}get footer(){return this._impl.isFile()?this._impl.footer:null}isSync(){return this._impl.isSync()}isAsync(){return this._impl.isAsync()}isFile(){return this._impl.isFile()}isStream(){return this._impl.isStream()}next(){return this._impl.next()}throw(e){return this._impl.throw(e)}return(e){return this._impl.return(e)}cancel(){return this._impl.cancel()}reset(e){return this._impl.reset(e),this._DOMStream=void 0,this._nodeStream=void 0,this}open(e){let r=this._impl.open(e);return zn.isPromise(r)?r.then(()=>this):this}readRecordBatch(e){return this._impl.isFile()?this._impl.readRecordBatch(e):null}[Symbol.iterator](){return this._impl[Symbol.iterator]()}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}toDOMStream(){return GS.default.toDOMStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this})}toNodeStream(){return GS.default.toNodeStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this},{objectMode:!0})}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e,r){throw new Error('"throughDOM" not available in this environment')}static from(e){return e instanceof Ri?e:zn.isArrowJSON(e)?aM(e):zn.isFileHandle(e)?cM(e):zn.isPromise(e)?(async()=>await Ri.from(await e))():zn.isFetchResponse(e)||zn.isReadableDOMStream(e)||zn.isReadableNodeStream(e)||zn.isAsyncIterable(e)?uM(new JS.AsyncByteStream(e)):lM(new JS.ByteStream(e))}static readAll(e){return e instanceof Ri?e.isSync()?e1(e):t1(e):zn.isArrowJSON(e)||ArrayBuffer.isView(e)||zn.isIterable(e)||zn.isIteratorResult(e)?e1(e):t1(e)}};Un.RecordBatchReader=Ri;var Ma=class extends Ri{constructor(e){super(e);this._impl=e}[Symbol.iterator](){return this._impl[Symbol.iterator]()}async*[Symbol.asyncIterator](){yield*this[Symbol.iterator]()}};Un.RecordBatchStreamReader=Ma;var za=class extends Ri{constructor(e){super(e);this._impl=e}[Symbol.iterator](){throw new Error("AsyncRecordBatchStreamReader is not Iterable")}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}};Un.AsyncRecordBatchStreamReader=za;var xm=class extends Ma{constructor(e){super(e);this._impl=e}};Un.RecordBatchFileReader=xm;var fj=class extends za{constructor(e){super(e);this._impl=e}};Un.AsyncRecordBatchFileReader=fj;var sj=class{constructor(e=new Map){this.closed=!1,this.autoDestroy=!0,this._dictionaryIndex=0,this._recordBatchIndex=0,this.dictionaries=e}get numDictionaries(){return this._dictionaryIndex}get numRecordBatches(){return this._recordBatchIndex}isSync(){return!1}isAsync(){return!1}isFile(){return!1}isStream(){return!1}reset(e){return this._dictionaryIndex=0,this._recordBatchIndex=0,this.schema=e,this.dictionaries=new Map,this}_loadRecordBatch(e,r){return new oj.RecordBatch(this.schema,e.length,this._loadVectors(e,r,this.schema.fields))}_loadDictionaryBatch(e,r){let{id:n,isDelta:i,data:o}=e,{dictionaries:f,schema:s}=this,l=f.get(n);if(i||!l){let u=s.dictionaries.get(n);return l&&i?l.concat(YS.Vector.new(this._loadVectors(o,r,[u])[0])):YS.Vector.new(this._loadVectors(o,r,[u])[0])}return l}_loadVectors(e,r,n){return new ZS.VectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}},tc=class extends sj{constructor(e,r){super(r);this._reader=zn.isArrowJSON(e)?new Mn.JSONMessageReader(this._handle=e):new Mn.MessageReader(this._handle=e)}isSync(){return!0}isStream(){return!0}[Symbol.iterator](){return this}cancel(){!this.closed&&(this.closed=!0)&&(this.reset()._reader.return(),this._reader=null,this.dictionaries=null)}open(e){return this.closed||(this.autoDestroy=$S(this,e),this.schema||(this.schema=this._reader.readSchema())||this.cancel()),this}throw(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.throw(e):ws.ITERATOR_DONE}return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.return(e):ws.ITERATOR_DONE}next(){if(this.closed)return ws.ITERATOR_DONE;let e,{_reader:r}=this;for(;e=this._readNextMessageAndValidate();)if(e.isSchema())this.reset(e.header());else if(e.isRecordBatch()){this._recordBatchIndex++;let n=e.header(),i=r.readMessageBody(e.bodyLength),o=this._loadRecordBatch(n,i);return{done:!1,value:o}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=r.readMessageBody(e.bodyLength),o=this._loadDictionaryBatch(n,i);this.dictionaries.set(n.id,o)}return this.schema&&this._recordBatchIndex===0?(this._recordBatchIndex++,{done:!1,value:new oj._InternalEmptyPlaceholderRecordBatch(this.schema)}):this.return()}_readNextMessageAndValidate(e){return this._reader.readMessage(e)}},rc=class extends sj{constructor(e,r){super(r);this._reader=new Mn.AsyncMessageReader(this._handle=e)}isAsync(){return!0}isStream(){return!0}[Symbol.asyncIterator](){return this}async cancel(){!this.closed&&(this.closed=!0)&&(await this.reset()._reader.return(),this._reader=null,this.dictionaries=null)}async open(e){return this.closed||(this.autoDestroy=$S(this,e),this.schema||(this.schema=await this._reader.readSchema())||await this.cancel()),this}async throw(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?await this.reset()._reader.throw(e):ws.ITERATOR_DONE}async return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?await this.reset()._reader.return(e):ws.ITERATOR_DONE}async next(){if(this.closed)return ws.ITERATOR_DONE;let e,{_reader:r}=this;for(;e=await this._readNextMessageAndValidate();)if(e.isSchema())await this.reset(e.header());else if(e.isRecordBatch()){this._recordBatchIndex++;let n=e.header(),i=await r.readMessageBody(e.bodyLength),o=this._loadRecordBatch(n,i);return{done:!1,value:o}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=await r.readMessageBody(e.bodyLength),o=this._loadDictionaryBatch(n,i);this.dictionaries.set(n.id,o)}return this.schema&&this._recordBatchIndex===0?(this._recordBatchIndex++,{done:!1,value:new oj._InternalEmptyPlaceholderRecordBatch(this.schema)}):await this.return()}async _readNextMessageAndValidate(e){return await this._reader.readMessage(e)}},aj=class extends tc{constructor(e,r){super(e instanceof ec.RandomAccessFile?e:new ec.RandomAccessFile(e),r)}get footer(){return this._footer}get numDictionaries(){return this._footer?this._footer.numDictionaries:0}get numRecordBatches(){return this._footer?this._footer.numRecordBatches:0}isSync(){return!0}isFile(){return!0}open(e){if(!this.closed&&!this._footer){this.schema=(this._footer=this._readFooter()).schema;for(let r of this._footer.dictionaryBatches())r&&this._readDictionaryBatch(this._dictionaryIndex++)}return super.open(e)}readRecordBatch(e){if(this.closed)return null;this._footer||this.open();let r=this._footer&&this._footer.getRecordBatch(e);if(r&&this._handle.seek(r.offset)){let n=this._reader.readMessage(Sm.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),o=this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,o)}}return null}_readDictionaryBatch(e){let r=this._footer&&this._footer.getDictionaryBatch(e);if(r&&this._handle.seek(r.offset)){let n=this._reader.readMessage(Sm.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),o=this._reader.readMessageBody(n.bodyLength),f=this._loadDictionaryBatch(i,o);this.dictionaries.set(i.id,f)}}}_readFooter(){let{_handle:e}=this,r=e.size-Mn.magicAndPadding,n=e.readInt32(r),i=e.readAt(r-n,n);return KS.Footer.decode(i)}_readNextMessageAndValidate(e){if(this._footer||this.open(),this._footer&&this._recordBatchIndex<this.numRecordBatches){let r=this._footer&&this._footer.getRecordBatch(this._recordBatchIndex);if(r&&this._handle.seek(r.offset))return this._reader.readMessage(e)}return null}},XS=class extends rc{constructor(e,...r){let n=typeof r[0]!="number"?r.shift():void 0,i=r[0]instanceof Map?r.shift():void 0;super(e instanceof ec.AsyncRandomAccessFile?e:new ec.AsyncRandomAccessFile(e,n),i)}get footer(){return this._footer}get numDictionaries(){return this._footer?this._footer.numDictionaries:0}get numRecordBatches(){return this._footer?this._footer.numRecordBatches:0}isFile(){return!0}isAsync(){return!0}async open(e){if(!this.closed&&!this._footer){this.schema=(this._footer=await this._readFooter()).schema;for(let r of this._footer.dictionaryBatches())r&&await this._readDictionaryBatch(this._dictionaryIndex++)}return await super.open(e)}async readRecordBatch(e){if(this.closed)return null;this._footer||await this.open();let r=this._footer&&this._footer.getRecordBatch(e);if(r&&await this._handle.seek(r.offset)){let n=await this._reader.readMessage(Sm.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),o=await this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,o)}}return null}async _readDictionaryBatch(e){let r=this._footer&&this._footer.getDictionaryBatch(e);if(r&&await this._handle.seek(r.offset)){let n=await this._reader.readMessage(Sm.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),o=await this._reader.readMessageBody(n.bodyLength),f=this._loadDictionaryBatch(i,o);this.dictionaries.set(i.id,f)}}}async _readFooter(){let{_handle:e}=this;e._pending&&await e._pending;let r=e.size-Mn.magicAndPadding,n=await e.readInt32(r),i=await e.readAt(r-n,n);return KS.Footer.decode(i)}async _readNextMessageAndValidate(e){if(this._footer||await this.open(),this._footer&&this._recordBatchIndex<this.numRecordBatches){let r=this._footer.getRecordBatch(this._recordBatchIndex);if(r&&await this._handle.seek(r.offset))return await this._reader.readMessage(e)}return null}},QS=class extends tc{constructor(e,r){super(e,r)}_loadVectors(e,r,n){return new ZS.JSONVectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}};function $S(t,e){return e&&typeof e.autoDestroy=="boolean"?e.autoDestroy:t.autoDestroy}function*e1(t){let e=Ri.from(t);try{if(!e.open({autoDestroy:!1}).closed)do yield e;while(!e.reset().open().closed)}finally{e.cancel()}}async function*t1(t){let e=await Ri.from(t);try{if(!(await e.open({autoDestroy:!1})).closed)do yield e;while(!(await e.reset().open()).closed)}finally{await e.cancel()}}function aM(t){return new Ma(new QS(t))}function lM(t){let e=t.peek(Mn.magicLength+7&~7);return e&&e.byteLength>=4?Mn.checkForMagicArrowString(e)?new xm(new aj(t.read())):new Ma(new tc(t)):new Ma(new tc(function*(){}()))}async function uM(t){let e=await t.peek(Mn.magicLength+7&~7);return e&&e.byteLength>=4?Mn.checkForMagicArrowString(e)?new xm(new aj(await t.read())):new za(new rc(t)):new za(new rc(async function*(){}()))}async function cM(t){let{size:e}=await t.stat(),r=new ec.AsyncRandomAccessFile(t,e);return e>=Mn.magicX2AndPadding&&Mn.checkForMagicArrowString(await r.readAt(0,Mn.magicLength+7&~7))?new fj(new XS(r)):new za(new rc(r))}});var i1=z(Am=>{"use strict";Object.defineProperty(Am,"__esModule",{value:!0});Am.toDOMStream=void 0;var r1=gr(),n1=Fr();function pM(t,e){if(n1.isAsyncIterable(t))return mM(t,e);if(n1.isIterable(t))return dM(t,e);throw new Error("toDOMStream() must be called with an Iterable or AsyncIterable")}Am.toDOMStream=pM;function dM(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,start(f){o(f,r||(r=t[Symbol.iterator]()))},pull(f){r?o(f,r):f.close()},cancel(){(r&&r.return&&r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});function o(f,s){let l,u=null,c=f.desiredSize||null;for(;!(u=s.next(n?c:null)).done;)if(ArrayBuffer.isView(u.value)&&(l=r1.toUint8Array(u.value))&&(c!=null&&n&&(c=c-l.byteLength+1),u.value=l),f.enqueue(u.value),c!=null&&--c<=0)return;f.close()}}function mM(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,async start(f){await o(f,r||(r=t[Symbol.asyncIterator]()))},async pull(f){r?await o(f,r):f.close()},async cancel(){(r&&r.return&&await r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});async function o(f,s){let l,u=null,c=f.desiredSize||null;for(;!(u=await s.next(n?c:null)).done;)if(ArrayBuffer.isView(u.value)&&(l=r1.toUint8Array(u.value))&&(c!=null&&n&&(c=c-l.byteLength+1),u.value=l),f.enqueue(u.value),c!=null&&--c<=0)return;f.close()}}});var s1=z(Ua=>{"use strict";Object.defineProperty(Ua,"__esModule",{value:!0});Ua.BuilderTransform=Ua.builderThroughDOMStream=void 0;var bM=Od();function wM(t){return new lj(t)}Ua.builderThroughDOMStream=wM;var lj=class{constructor(e){this._numChunks=0,this._finished=!1,this._bufferedSize=0;let{["readableStrategy"]:r,["writableStrategy"]:n,["queueingStrategy"]:i="count",...o}=e;this._controller=null,this._builder=bM.Builder.new(o),this._getSize=i!=="bytes"?o1:f1;let{["highWaterMark"]:f=i==="bytes"?2**14:1e3}={...r},{["highWaterMark"]:s=i==="bytes"?2**14:1e3}={...n};this.readable=new ReadableStream({cancel:()=>{this._builder.clear()},pull:l=>{this._maybeFlush(this._builder,this._controller=l)},start:l=>{this._maybeFlush(this._builder,this._controller=l)}},{highWaterMark:f,size:i!=="bytes"?o1:f1}),this.writable=new WritableStream({abort:()=>{this._builder.clear()},write:()=>{this._maybeFlush(this._builder,this._controller)},close:()=>{this._maybeFlush(this._builder.finish(),this._controller)}},{highWaterMark:s,size:l=>this._writeValueAndReturnChunkSize(l)})}_writeValueAndReturnChunkSize(e){let r=this._bufferedSize;return this._bufferedSize=this._getSize(this._builder.append(e)),this._bufferedSize-r}_maybeFlush(e,r){r!==null&&(this._bufferedSize>=r.desiredSize&&++this._numChunks&&this._enqueue(r,e.toVector()),e.finished&&((e.length>0||this._numChunks===0)&&++this._numChunks&&this._enqueue(r,e.toVector()),!this._finished&&(this._finished=!0)&&this._enqueue(r,null)))}_enqueue(e,r){this._bufferedSize=0,this._controller=null,r===null?e.close():e.enqueue(r)}};Ua.BuilderTransform=lj;var o1=t=>t.length,f1=t=>t.byteLength});var a1=z(Em=>{"use strict";Object.defineProperty(Em,"__esModule",{value:!0});Em.recordBatchReaderThroughDOMStream=void 0;var hM=lf(),gM=$u();function yM(t,e){let r=new hM.AsyncByteQueue,n=null,i=new ReadableStream({async cancel(){await r.close()},async start(s){await f(s,n||(n=await o()))},async pull(s){n?await f(s,n):s.close()}});return{writable:new WritableStream(r,{highWaterMark:2**14,...t}),readable:i};async function o(){return await(await gM.RecordBatchReader.from(r)).open(e)}async function f(s,l){let u=s.desiredSize,c=null;for(;!(c=await l.next()).done;)if(s.enqueue(c.value),u!=null&&--u<=0)return;s.close()}}Em.recordBatchReaderThroughDOMStream=yM});var l1=z(Om=>{"use strict";Object.defineProperty(Om,"__esModule",{value:!0});Om.recordBatchWriterThroughDOMStream=void 0;var jM=lf();function _M(t,e){let r=new this(t),n=new jM.AsyncByteStream(r),i=new ReadableStream({type:"bytes",async cancel(){await n.cancel()},async pull(f){await o(f)},async start(f){await o(f)}},{highWaterMark:2**14,...e});return{writable:new WritableStream(r,t),readable:i};async function o(f){let s=null,l=f.desiredSize;for(;s=await n.read(l||null);)if(f.enqueue(s),l!=null&&(l-=s.byteLength)<=0)return;f.close()}}Om.recordBatchWriterThroughDOMStream=_M});var bj=z(st=>{"use strict";Object.defineProperty(st,"__esModule",{value:!0});st.custom=st.or=st.and=st.col=st.lit=st.CustomPredicate=st.Not=st.GTeq=st.LTeq=st.Equals=st.Or=st.And=st.CombinationPredicate=st.ComparisonPredicate=st.Predicate=st.Col=st.Literal=st.Value=void 0;var qM=um(),vf=class{eq(e){return e instanceof vf||(e=new jo(e)),new cj(this,e)}le(e){return e instanceof vf||(e=new jo(e)),new pj(this,e)}ge(e){return e instanceof vf||(e=new jo(e)),new dj(this,e)}lt(e){return new Wa(this.ge(e))}gt(e){return new Wa(this.le(e))}ne(e){return new Wa(this.eq(e))}};st.Value=vf;var jo=class extends vf{constructor(e){super();this.v=e}};st.Literal=jo;var uj=class extends vf{constructor(e){super();this.name=e}bind(e){if(!this.colidx){this.colidx=-1;let n=e.schema.fields;for(let i=-1;++i<n.length;)if(n[i].name===this.name){this.colidx=i;break}if(this.colidx<0)throw new Error(`Failed to bind Col "${this.name}"`)}let r=this.vector=e.getChildAt(this.colidx);return n=>r.get(n)}};st.Col=uj;var La=class{and(...e){return new Va(this,...e)}or(...e){return new Ca(this,...e)}not(){return new Wa(this)}};st.Predicate=La;var nc=class extends La{constructor(e,r){super();this.left=e,this.right=r}bind(e){return this.left instanceof jo?this.right instanceof jo?this._bindLitLit(e,this.left,this.right):this._bindLitCol(e,this.left,this.right):this.right instanceof jo?this._bindColLit(e,this.left,this.right):this._bindColCol(e,this.left,this.right)}};st.ComparisonPredicate=nc;var ic=class extends La{constructor(...e){super();this.children=e}};st.CombinationPredicate=ic;ic.prototype.children=Object.freeze([]);var Va=class extends ic{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof Va?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.every(o=>o(n,i))}};st.And=Va;var Ca=class extends ic{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof Ca?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.some(o=>o(n,i))}};st.Or=Ca;var cj=class extends nc{_bindLitLit(e,r,n){let i=r.v==n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)==o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);if(r.vector instanceof qM.DictionaryVector){let o,f=r.vector;return f.dictionary!==this.lastDictionary?(o=f.reverseLookup(n.v),this.lastDictionary=f.dictionary,this.lastKey=o):o=this.lastKey,o===-1?()=>!1:s=>f.getKey(s)===o}else return(o,f)=>i(o,f)==n.v}_bindLitCol(e,r,n){return this._bindColLit(e,n,r)}};st.Equals=cj;var pj=class extends nc{_bindLitLit(e,r,n){let i=r.v<=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)<=o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);return(o,f)=>i(o,f)<=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(o,f)=>r.v<=i(o,f)}};st.LTeq=pj;var dj=class extends nc{_bindLitLit(e,r,n){let i=r.v>=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),o=n.bind(e);return(f,s)=>i(f,s)>=o(f,s)}_bindColLit(e,r,n){let i=r.bind(e);return(o,f)=>i(o,f)>=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(o,f)=>r.v>=i(o,f)}};st.GTeq=dj;var Wa=class extends La{constructor(e){super();this.child=e}bind(e){let r=this.child.bind(e);return(n,i)=>!r(n,i)}};st.Not=Wa;var mj=class extends La{constructor(e,r){super();this.next=e,this.bind_=r}bind(e){return this.bind_(e),this.next}};st.CustomPredicate=mj;function vM(t){return new jo(t)}st.lit=vM;function TM(t){return new uj(t)}st.col=TM;function BM(...t){return new Va(...t)}st.and=BM;function kM(...t){return new Ca(...t)}st.or=kM;function IM(t,e){return new mj(t,e)}st.custom=IM});var m1=z(Tf=>{"use strict";Object.defineProperty(Tf,"__esModule",{value:!0});Tf.FilteredDataFrame=Tf.CountByResult=Tf.DataFrame=void 0;var Ya=Cu(),u1=mm(),wj=vr(),c1=bj(),SM=ho(),p1=_t();Ya.Table.prototype.countBy=function(t){return new hs(this.chunks).countBy(t)};Ya.Table.prototype.scan=function(t,e){return new hs(this.chunks).scan(t,e)};Ya.Table.prototype.scanReverse=function(t,e){return new hs(this.chunks).scanReverse(t,e)};Ya.Table.prototype.filter=function(t){return new hs(this.chunks).filter(t)};var hs=class extends Ya.Table{filter(e){return new oc(this.chunks,e)}scan(e,r){let n=this.chunks,i=n.length;for(let o=-1;++o<i;){let f=n[o];r&&r(f);for(let s=-1,l=f.length;++s<l;)e(s,f)}}scanReverse(e,r){let n=this.chunks,i=n.length;for(let o=i;--o>=0;){let f=n[o];r&&r(f);for(let s=f.length;--s>=0;)e(s,f)}}countBy(e){let r=this.chunks,n=r.length,i=typeof e=="string"?new c1.Col(e):e;i.bind(r[n-1]);let o=i.vector;if(!p1.DataType.isDictionary(o.type))throw new Error("countBy currently only supports dictionary-encoded columns");let f=Math.ceil(Math.log(o.length)/Math.log(256)),s=f==4?Uint32Array:f>=2?Uint16Array:Uint8Array,l=new s(o.dictionary.length);for(let u=-1;++u<n;){let c=r[u];i.bind(c);let _=i.vector.indices;for(let p=-1,j=c.length;++p<j;){let S=_.get(p);S!==null&&l[S]++}}return new Nm(o.dictionary,u1.IntVector.from(l))}};Tf.DataFrame=hs;var Nm=class extends Ya.Table{constructor(e,r){let n=new wj.Schema([new wj.Field("values",e.type),new wj.Field("counts",r.type)]);super(new SM.RecordBatch(n,r.length,[e,r]))}toJSON(){let e=this.getColumnAt(0),r=this.getColumnAt(1),n={};for(let i=-1;++i<this.length;)n[e.get(i)]=r.get(i);return n}};Tf.CountByResult=Nm;var d1=class{constructor(e,r){this.batches=e,this.predicate=r,this.batchIndex=0,this.index=0,this.batch=this.batches[this.batchIndex],this.predicateFunc=this.predicate.bind(this.batch)}next(){for(;this.batchIndex<this.batches.length;){for(;this.index<this.batch.length;){if(this.predicateFunc(this.index,this.batch))return{value:this.batch.get(this.index++)};this.index++}++this.batchIndex<this.batches.length&&(this.index=0,this.batch=this.batches[this.batchIndex],this.predicateFunc=this.predicate.bind(this.batch))}return{done:!0,value:null}}[Symbol.iterator](){return this}},oc=class extends hs{constructor(e,r){super(e);this._predicate=r}scan(e,r){let n=this._chunks,i=n.length;for(let o=-1;++o<i;){let f=n[o],s=this._predicate.bind(f),l=!1;for(let u=-1,c=f.length;++u<c;)s(u,f)&&(r&&!l&&(r(f),l=!0),e(u,f))}}scanReverse(e,r){let n=this._chunks,i=n.length;for(let o=i;--o>=0;){let f=n[o],s=this._predicate.bind(f),l=!1;for(let u=f.length;--u>=0;)s(u,f)&&(r&&!l&&(r(f),l=!0),e(u,f))}}count(){let e=0,r=this._chunks,n=r.length;for(let i=-1;++i<n;){let o=r[i],f=this._predicate.bind(o);for(let s=-1,l=o.length;++s<l;)f(s,o)&&++e}return e}[Symbol.iterator](){return new d1(this._chunks,this._predicate)}filter(e){return new oc(this._chunks,this._predicate.and(e))}countBy(e){let r=this._chunks,n=r.length,i=typeof e=="string"?new c1.Col(e):e;i.bind(r[n-1]);let o=i.vector;if(!p1.DataType.isDictionary(o.type))throw new Error("countBy currently only supports dictionary-encoded columns");let f=Math.ceil(Math.log(o.length)/Math.log(256)),s=f==4?Uint32Array:f>=2?Uint16Array:Uint8Array,l=new s(o.dictionary.length);for(let u=-1;++u<n;){let c=r[u],_=this._predicate.bind(c);i.bind(c);let p=i.vector.indices;for(let j=-1,S=c.length;++j<S;){let T=p.get(j);T!==null&&_(j,c)&&l[T]++}}return new Nm(o.dictionary,u1.IntVector.from(l))}};Tf.FilteredDataFrame=oc});var h1=z(w=>{"use strict";Object.defineProperty(w,"__esModule",{value:!0});w.util=w.predicate=w.CountByResult=w.FilteredDataFrame=w.DataFrame=w.RecordBatch=w.Message=w.JSONMessageReader=w.AsyncMessageReader=w.MessageReader=w.RecordBatchJSONWriter=w.RecordBatchStreamWriter=w.RecordBatchFileWriter=w.RecordBatchWriter=w.AsyncRecordBatchStreamReader=w.AsyncRecordBatchFileReader=w.RecordBatchStreamReader=w.RecordBatchFileReader=w.RecordBatchReader=w.AsyncByteQueue=w.AsyncByteStream=w.ByteStream=w.Utf8Builder=w.SparseUnionBuilder=w.DenseUnionBuilder=w.UnionBuilder=w.TimeNanosecondBuilder=w.TimeMicrosecondBuilder=w.TimeMillisecondBuilder=w.TimeSecondBuilder=w.TimeBuilder=w.TimestampNanosecondBuilder=w.TimestampMicrosecondBuilder=w.TimestampMillisecondBuilder=w.TimestampSecondBuilder=w.TimestampBuilder=w.StructBuilder=w.NullBuilder=w.MapBuilder=w.ListBuilder=w.Uint64Builder=w.Uint32Builder=w.Uint16Builder=w.Uint8Builder=w.Int64Builder=w.Int32Builder=w.Int16Builder=w.Int8Builder=w.IntBuilder=w.IntervalYearMonthBuilder=w.IntervalDayTimeBuilder=w.IntervalBuilder=w.Float64Builder=w.Float32Builder=w.Float16Builder=w.FloatBuilder=w.FixedSizeListBuilder=w.FixedSizeBinaryBuilder=w.DictionaryBuilder=w.DecimalBuilder=w.DateMillisecondBuilder=w.DateDayBuilder=w.DateBuilder=w.BoolBuilder=w.BinaryBuilder=w.Builder=w.Utf8Vector=w.SparseUnionVector=w.DenseUnionVector=w.UnionVector=w.TimeNanosecondVector=w.TimeMicrosecondVector=w.TimeMillisecondVector=w.TimeSecondVector=w.TimeVector=w.TimestampNanosecondVector=w.TimestampMicrosecondVector=w.TimestampMillisecondVector=w.TimestampSecondVector=w.TimestampVector=w.StructVector=w.NullVector=w.MapVector=w.ListVector=w.Uint64Vector=w.Uint32Vector=w.Uint16Vector=w.Uint8Vector=w.Int64Vector=w.Int32Vector=w.Int16Vector=w.Int8Vector=w.IntVector=w.IntervalYearMonthVector=w.IntervalDayTimeVector=w.IntervalVector=w.Float64Vector=w.Float32Vector=w.Float16Vector=w.FloatVector=w.FixedSizeListVector=w.FixedSizeBinaryVector=w.DictionaryVector=w.DecimalVector=w.DateMillisecondVector=w.DateDayVector=w.DateVector=w.Chunked=w.BoolVector=w.BinaryVector=w.BaseVector=w.Vector=w.Field=w.Schema=w.Visitor=w.Column=w.Table=w.Map_=w.FixedSizeList=w.IntervalYearMonth=w.IntervalDayTime=w.Interval=w.Dictionary=w.SparseUnion=w.DenseUnion=w.Union=w.Struct=w.List=w.Decimal=w.TimeNanosecond=w.TimeMicrosecond=w.TimeMillisecond=w.TimeSecond=w.Time=w.TimestampNanosecond=w.TimestampMicrosecond=w.TimestampMillisecond=w.TimestampSecond=w.Timestamp=w.DateMillisecond=w.DateDay=w.Date_=w.FixedSizeBinary=w.Binary=w.Utf8=w.Float64=w.Float32=w.Float16=w.Float=w.Uint64=w.Uint32=w.Uint16=w.Uint8=w.Int64=w.Int32=w.Int16=w.Int8=w.Int=w.Bool=w.Null=w.DataType=w.Data=w.BufferType=w.Type=w.MessageHeader=w.MetadataVersion=w.IntervalUnit=w.UnionMode=w.Precision=w.TimeUnit=w.DateUnit=void 0;var Ka=Zo();Object.defineProperty(w,"DateUnit",{enumerable:!0,get:function(){return Ka.DateUnit}});Object.defineProperty(w,"TimeUnit",{enumerable:!0,get:function(){return Ka.TimeUnit}});Object.defineProperty(w,"Precision",{enumerable:!0,get:function(){return Ka.Precision}});Object.defineProperty(w,"UnionMode",{enumerable:!0,get:function(){return Ka.UnionMode}});Object.defineProperty(w,"IntervalUnit",{enumerable:!0,get:function(){return Ka.IntervalUnit}});Object.defineProperty(w,"MetadataVersion",{enumerable:!0,get:function(){return Ka.MetadataVersion}});var xM=Yp();Object.defineProperty(w,"MessageHeader",{enumerable:!0,get:function(){return xM.MessageHeader}});var b1=Rt();Object.defineProperty(w,"Type",{enumerable:!0,get:function(){return b1.Type}});Object.defineProperty(w,"BufferType",{enumerable:!0,get:function(){return b1.BufferType}});var AM=Xn();Object.defineProperty(w,"Data",{enumerable:!0,get:function(){return AM.Data}});var Ze=_t();Object.defineProperty(w,"DataType",{enumerable:!0,get:function(){return Ze.DataType}});Object.defineProperty(w,"Null",{enumerable:!0,get:function(){return Ze.Null}});Object.defineProperty(w,"Bool",{enumerable:!0,get:function(){return Ze.Bool}});Object.defineProperty(w,"Int",{enumerable:!0,get:function(){return Ze.Int}});Object.defineProperty(w,"Int8",{enumerable:!0,get:function(){return Ze.Int8}});Object.defineProperty(w,"Int16",{enumerable:!0,get:function(){return Ze.Int16}});Object.defineProperty(w,"Int32",{enumerable:!0,get:function(){return Ze.Int32}});Object.defineProperty(w,"Int64",{enumerable:!0,get:function(){return Ze.Int64}});Object.defineProperty(w,"Uint8",{enumerable:!0,get:function(){return Ze.Uint8}});Object.defineProperty(w,"Uint16",{enumerable:!0,get:function(){return Ze.Uint16}});Object.defineProperty(w,"Uint32",{enumerable:!0,get:function(){return Ze.Uint32}});Object.defineProperty(w,"Uint64",{enumerable:!0,get:function(){return Ze.Uint64}});Object.defineProperty(w,"Float",{enumerable:!0,get:function(){return Ze.Float}});Object.defineProperty(w,"Float16",{enumerable:!0,get:function(){return Ze.Float16}});Object.defineProperty(w,"Float32",{enumerable:!0,get:function(){return Ze.Float32}});Object.defineProperty(w,"Float64",{enumerable:!0,get:function(){return Ze.Float64}});Object.defineProperty(w,"Utf8",{enumerable:!0,get:function(){return Ze.Utf8}});Object.defineProperty(w,"Binary",{enumerable:!0,get:function(){return Ze.Binary}});Object.defineProperty(w,"FixedSizeBinary",{enumerable:!0,get:function(){return Ze.FixedSizeBinary}});Object.defineProperty(w,"Date_",{enumerable:!0,get:function(){return Ze.Date_}});Object.defineProperty(w,"DateDay",{enumerable:!0,get:function(){return Ze.DateDay}});Object.defineProperty(w,"DateMillisecond",{enumerable:!0,get:function(){return Ze.DateMillisecond}});Object.defineProperty(w,"Timestamp",{enumerable:!0,get:function(){return Ze.Timestamp}});Object.defineProperty(w,"TimestampSecond",{enumerable:!0,get:function(){return Ze.TimestampSecond}});Object.defineProperty(w,"TimestampMillisecond",{enumerable:!0,get:function(){return Ze.TimestampMillisecond}});Object.defineProperty(w,"TimestampMicrosecond",{enumerable:!0,get:function(){return Ze.TimestampMicrosecond}});Object.defineProperty(w,"TimestampNanosecond",{enumerable:!0,get:function(){return Ze.TimestampNanosecond}});Object.defineProperty(w,"Time",{enumerable:!0,get:function(){return Ze.Time}});Object.defineProperty(w,"TimeSecond",{enumerable:!0,get:function(){return Ze.TimeSecond}});Object.defineProperty(w,"TimeMillisecond",{enumerable:!0,get:function(){return Ze.TimeMillisecond}});Object.defineProperty(w,"TimeMicrosecond",{enumerable:!0,get:function(){return Ze.TimeMicrosecond}});Object.defineProperty(w,"TimeNanosecond",{enumerable:!0,get:function(){return Ze.TimeNanosecond}});Object.defineProperty(w,"Decimal",{enumerable:!0,get:function(){return Ze.Decimal}});Object.defineProperty(w,"List",{enumerable:!0,get:function(){return Ze.List}});Object.defineProperty(w,"Struct",{enumerable:!0,get:function(){return Ze.Struct}});Object.defineProperty(w,"Union",{enumerable:!0,get:function(){return Ze.Union}});Object.defineProperty(w,"DenseUnion",{enumerable:!0,get:function(){return Ze.DenseUnion}});Object.defineProperty(w,"SparseUnion",{enumerable:!0,get:function(){return Ze.SparseUnion}});Object.defineProperty(w,"Dictionary",{enumerable:!0,get:function(){return Ze.Dictionary}});Object.defineProperty(w,"Interval",{enumerable:!0,get:function(){return Ze.Interval}});Object.defineProperty(w,"IntervalDayTime",{enumerable:!0,get:function(){return Ze.IntervalDayTime}});Object.defineProperty(w,"IntervalYearMonth",{enumerable:!0,get:function(){return Ze.IntervalYearMonth}});Object.defineProperty(w,"FixedSizeList",{enumerable:!0,get:function(){return Ze.FixedSizeList}});Object.defineProperty(w,"Map_",{enumerable:!0,get:function(){return Ze.Map_}});var EM=Cu();Object.defineProperty(w,"Table",{enumerable:!0,get:function(){return EM.Table}});var OM=va();Object.defineProperty(w,"Column",{enumerable:!0,get:function(){return OM.Column}});var NM=xr();Object.defineProperty(w,"Visitor",{enumerable:!0,get:function(){return NM.Visitor}});var w1=vr();Object.defineProperty(w,"Schema",{enumerable:!0,get:function(){return w1.Schema}});Object.defineProperty(w,"Field",{enumerable:!0,get:function(){return w1.Field}});var Ce=Ni();Object.defineProperty(w,"Vector",{enumerable:!0,get:function(){return Ce.Vector}});Object.defineProperty(w,"BaseVector",{enumerable:!0,get:function(){return Ce.BaseVector}});Object.defineProperty(w,"BinaryVector",{enumerable:!0,get:function(){return Ce.BinaryVector}});Object.defineProperty(w,"BoolVector",{enumerable:!0,get:function(){return Ce.BoolVector}});Object.defineProperty(w,"Chunked",{enumerable:!0,get:function(){return Ce.Chunked}});Object.defineProperty(w,"DateVector",{enumerable:!0,get:function(){return Ce.DateVector}});Object.defineProperty(w,"DateDayVector",{enumerable:!0,get:function(){return Ce.DateDayVector}});Object.defineProperty(w,"DateMillisecondVector",{enumerable:!0,get:function(){return Ce.DateMillisecondVector}});Object.defineProperty(w,"DecimalVector",{enumerable:!0,get:function(){return Ce.DecimalVector}});Object.defineProperty(w,"DictionaryVector",{enumerable:!0,get:function(){return Ce.DictionaryVector}});Object.defineProperty(w,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return Ce.FixedSizeBinaryVector}});Object.defineProperty(w,"FixedSizeListVector",{enumerable:!0,get:function(){return Ce.FixedSizeListVector}});Object.defineProperty(w,"FloatVector",{enumerable:!0,get:function(){return Ce.FloatVector}});Object.defineProperty(w,"Float16Vector",{enumerable:!0,get:function(){return Ce.Float16Vector}});Object.defineProperty(w,"Float32Vector",{enumerable:!0,get:function(){return Ce.Float32Vector}});Object.defineProperty(w,"Float64Vector",{enumerable:!0,get:function(){return Ce.Float64Vector}});Object.defineProperty(w,"IntervalVector",{enumerable:!0,get:function(){return Ce.IntervalVector}});Object.defineProperty(w,"IntervalDayTimeVector",{enumerable:!0,get:function(){return Ce.IntervalDayTimeVector}});Object.defineProperty(w,"IntervalYearMonthVector",{enumerable:!0,get:function(){return Ce.IntervalYearMonthVector}});Object.defineProperty(w,"IntVector",{enumerable:!0,get:function(){return Ce.IntVector}});Object.defineProperty(w,"Int8Vector",{enumerable:!0,get:function(){return Ce.Int8Vector}});Object.defineProperty(w,"Int16Vector",{enumerable:!0,get:function(){return Ce.Int16Vector}});Object.defineProperty(w,"Int32Vector",{enumerable:!0,get:function(){return Ce.Int32Vector}});Object.defineProperty(w,"Int64Vector",{enumerable:!0,get:function(){return Ce.Int64Vector}});Object.defineProperty(w,"Uint8Vector",{enumerable:!0,get:function(){return Ce.Uint8Vector}});Object.defineProperty(w,"Uint16Vector",{enumerable:!0,get:function(){return Ce.Uint16Vector}});Object.defineProperty(w,"Uint32Vector",{enumerable:!0,get:function(){return Ce.Uint32Vector}});Object.defineProperty(w,"Uint64Vector",{enumerable:!0,get:function(){return Ce.Uint64Vector}});Object.defineProperty(w,"ListVector",{enumerable:!0,get:function(){return Ce.ListVector}});Object.defineProperty(w,"MapVector",{enumerable:!0,get:function(){return Ce.MapVector}});Object.defineProperty(w,"NullVector",{enumerable:!0,get:function(){return Ce.NullVector}});Object.defineProperty(w,"StructVector",{enumerable:!0,get:function(){return Ce.StructVector}});Object.defineProperty(w,"TimestampVector",{enumerable:!0,get:function(){return Ce.TimestampVector}});Object.defineProperty(w,"TimestampSecondVector",{enumerable:!0,get:function(){return Ce.TimestampSecondVector}});Object.defineProperty(w,"TimestampMillisecondVector",{enumerable:!0,get:function(){return Ce.TimestampMillisecondVector}});Object.defineProperty(w,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return Ce.TimestampMicrosecondVector}});Object.defineProperty(w,"TimestampNanosecondVector",{enumerable:!0,get:function(){return Ce.TimestampNanosecondVector}});Object.defineProperty(w,"TimeVector",{enumerable:!0,get:function(){return Ce.TimeVector}});Object.defineProperty(w,"TimeSecondVector",{enumerable:!0,get:function(){return Ce.TimeSecondVector}});Object.defineProperty(w,"TimeMillisecondVector",{enumerable:!0,get:function(){return Ce.TimeMillisecondVector}});Object.defineProperty(w,"TimeMicrosecondVector",{enumerable:!0,get:function(){return Ce.TimeMicrosecondVector}});Object.defineProperty(w,"TimeNanosecondVector",{enumerable:!0,get:function(){return Ce.TimeNanosecondVector}});Object.defineProperty(w,"UnionVector",{enumerable:!0,get:function(){return Ce.UnionVector}});Object.defineProperty(w,"DenseUnionVector",{enumerable:!0,get:function(){return Ce.DenseUnionVector}});Object.defineProperty(w,"SparseUnionVector",{enumerable:!0,get:function(){return Ce.SparseUnionVector}});Object.defineProperty(w,"Utf8Vector",{enumerable:!0,get:function(){return Ce.Utf8Vector}});var Xe=Od();Object.defineProperty(w,"Builder",{enumerable:!0,get:function(){return Xe.Builder}});Object.defineProperty(w,"BinaryBuilder",{enumerable:!0,get:function(){return Xe.BinaryBuilder}});Object.defineProperty(w,"BoolBuilder",{enumerable:!0,get:function(){return Xe.BoolBuilder}});Object.defineProperty(w,"DateBuilder",{enumerable:!0,get:function(){return Xe.DateBuilder}});Object.defineProperty(w,"DateDayBuilder",{enumerable:!0,get:function(){return Xe.DateDayBuilder}});Object.defineProperty(w,"DateMillisecondBuilder",{enumerable:!0,get:function(){return Xe.DateMillisecondBuilder}});Object.defineProperty(w,"DecimalBuilder",{enumerable:!0,get:function(){return Xe.DecimalBuilder}});Object.defineProperty(w,"DictionaryBuilder",{enumerable:!0,get:function(){return Xe.DictionaryBuilder}});Object.defineProperty(w,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return Xe.FixedSizeBinaryBuilder}});Object.defineProperty(w,"FixedSizeListBuilder",{enumerable:!0,get:function(){return Xe.FixedSizeListBuilder}});Object.defineProperty(w,"FloatBuilder",{enumerable:!0,get:function(){return Xe.FloatBuilder}});Object.defineProperty(w,"Float16Builder",{enumerable:!0,get:function(){return Xe.Float16Builder}});Object.defineProperty(w,"Float32Builder",{enumerable:!0,get:function(){return Xe.Float32Builder}});Object.defineProperty(w,"Float64Builder",{enumerable:!0,get:function(){return Xe.Float64Builder}});Object.defineProperty(w,"IntervalBuilder",{enumerable:!0,get:function(){return Xe.IntervalBuilder}});Object.defineProperty(w,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return Xe.IntervalDayTimeBuilder}});Object.defineProperty(w,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return Xe.IntervalYearMonthBuilder}});Object.defineProperty(w,"IntBuilder",{enumerable:!0,get:function(){return Xe.IntBuilder}});Object.defineProperty(w,"Int8Builder",{enumerable:!0,get:function(){return Xe.Int8Builder}});Object.defineProperty(w,"Int16Builder",{enumerable:!0,get:function(){return Xe.Int16Builder}});Object.defineProperty(w,"Int32Builder",{enumerable:!0,get:function(){return Xe.Int32Builder}});Object.defineProperty(w,"Int64Builder",{enumerable:!0,get:function(){return Xe.Int64Builder}});Object.defineProperty(w,"Uint8Builder",{enumerable:!0,get:function(){return Xe.Uint8Builder}});Object.defineProperty(w,"Uint16Builder",{enumerable:!0,get:function(){return Xe.Uint16Builder}});Object.defineProperty(w,"Uint32Builder",{enumerable:!0,get:function(){return Xe.Uint32Builder}});Object.defineProperty(w,"Uint64Builder",{enumerable:!0,get:function(){return Xe.Uint64Builder}});Object.defineProperty(w,"ListBuilder",{enumerable:!0,get:function(){return Xe.ListBuilder}});Object.defineProperty(w,"MapBuilder",{enumerable:!0,get:function(){return Xe.MapBuilder}});Object.defineProperty(w,"NullBuilder",{enumerable:!0,get:function(){return Xe.NullBuilder}});Object.defineProperty(w,"StructBuilder",{enumerable:!0,get:function(){return Xe.StructBuilder}});Object.defineProperty(w,"TimestampBuilder",{enumerable:!0,get:function(){return Xe.TimestampBuilder}});Object.defineProperty(w,"TimestampSecondBuilder",{enumerable:!0,get:function(){return Xe.TimestampSecondBuilder}});Object.defineProperty(w,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return Xe.TimestampMillisecondBuilder}});Object.defineProperty(w,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return Xe.TimestampMicrosecondBuilder}});Object.defineProperty(w,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return Xe.TimestampNanosecondBuilder}});Object.defineProperty(w,"TimeBuilder",{enumerable:!0,get:function(){return Xe.TimeBuilder}});Object.defineProperty(w,"TimeSecondBuilder",{enumerable:!0,get:function(){return Xe.TimeSecondBuilder}});Object.defineProperty(w,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return Xe.TimeMillisecondBuilder}});Object.defineProperty(w,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return Xe.TimeMicrosecondBuilder}});Object.defineProperty(w,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return Xe.TimeNanosecondBuilder}});Object.defineProperty(w,"UnionBuilder",{enumerable:!0,get:function(){return Xe.UnionBuilder}});Object.defineProperty(w,"DenseUnionBuilder",{enumerable:!0,get:function(){return Xe.DenseUnionBuilder}});Object.defineProperty(w,"SparseUnionBuilder",{enumerable:!0,get:function(){return Xe.SparseUnionBuilder}});Object.defineProperty(w,"Utf8Builder",{enumerable:!0,get:function(){return Xe.Utf8Builder}});var hj=lf();Object.defineProperty(w,"ByteStream",{enumerable:!0,get:function(){return hj.ByteStream}});Object.defineProperty(w,"AsyncByteStream",{enumerable:!0,get:function(){return hj.AsyncByteStream}});Object.defineProperty(w,"AsyncByteQueue",{enumerable:!0,get:function(){return hj.AsyncByteQueue}});var fc=$u();Object.defineProperty(w,"RecordBatchReader",{enumerable:!0,get:function(){return fc.RecordBatchReader}});Object.defineProperty(w,"RecordBatchFileReader",{enumerable:!0,get:function(){return fc.RecordBatchFileReader}});Object.defineProperty(w,"RecordBatchStreamReader",{enumerable:!0,get:function(){return fc.RecordBatchStreamReader}});Object.defineProperty(w,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return fc.AsyncRecordBatchFileReader}});Object.defineProperty(w,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return fc.AsyncRecordBatchStreamReader}});var Dm=nm();Object.defineProperty(w,"RecordBatchWriter",{enumerable:!0,get:function(){return Dm.RecordBatchWriter}});Object.defineProperty(w,"RecordBatchFileWriter",{enumerable:!0,get:function(){return Dm.RecordBatchFileWriter}});Object.defineProperty(w,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return Dm.RecordBatchStreamWriter}});Object.defineProperty(w,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return Dm.RecordBatchJSONWriter}});var gj=Yd();Object.defineProperty(w,"MessageReader",{enumerable:!0,get:function(){return gj.MessageReader}});Object.defineProperty(w,"AsyncMessageReader",{enumerable:!0,get:function(){return gj.AsyncMessageReader}});Object.defineProperty(w,"JSONMessageReader",{enumerable:!0,get:function(){return gj.JSONMessageReader}});var DM=us();Object.defineProperty(w,"Message",{enumerable:!0,get:function(){return DM.Message}});var FM=ho();Object.defineProperty(w,"RecordBatch",{enumerable:!0,get:function(){return FM.RecordBatch}});var yj=m1();Object.defineProperty(w,"DataFrame",{enumerable:!0,get:function(){return yj.DataFrame}});Object.defineProperty(w,"FilteredDataFrame",{enumerable:!0,get:function(){return yj.FilteredDataFrame}});Object.defineProperty(w,"CountByResult",{enumerable:!0,get:function(){return yj.CountByResult}});var PM=Iu(),RM=xg(),HM=qi(),MM=vu(),zM=gr(),UM=Fu(),LM=bj();w.predicate=LM;var jj=Wg();w.util={...PM,...RM,...HM,...MM,...zM,...UM,compareSchemas:jj.compareSchemas,compareFields:jj.compareFields,compareTypes:jj.compareTypes}});var g1=z(h=>{"use strict";Object.defineProperty(h,"__esModule",{value:!0});h.Utf8Builder=h.SparseUnionBuilder=h.DenseUnionBuilder=h.UnionBuilder=h.TimeNanosecondBuilder=h.TimeMicrosecondBuilder=h.TimeMillisecondBuilder=h.TimeSecondBuilder=h.TimeBuilder=h.TimestampNanosecondBuilder=h.TimestampMicrosecondBuilder=h.TimestampMillisecondBuilder=h.TimestampSecondBuilder=h.TimestampBuilder=h.StructBuilder=h.NullBuilder=h.MapBuilder=h.ListBuilder=h.Uint64Builder=h.Uint32Builder=h.Uint16Builder=h.Uint8Builder=h.Int64Builder=h.Int32Builder=h.Int16Builder=h.Int8Builder=h.IntBuilder=h.IntervalYearMonthBuilder=h.IntervalDayTimeBuilder=h.IntervalBuilder=h.Float64Builder=h.Float32Builder=h.Float16Builder=h.FloatBuilder=h.FixedSizeListBuilder=h.FixedSizeBinaryBuilder=h.DictionaryBuilder=h.DecimalBuilder=h.DateMillisecondBuilder=h.DateDayBuilder=h.DateBuilder=h.BoolBuilder=h.BinaryBuilder=h.Builder=h.util=h.predicate=h.CountByResult=h.FilteredDataFrame=h.DataFrame=h.RecordBatch=h.Message=h.JSONMessageReader=h.AsyncMessageReader=h.MessageReader=h.RecordBatchJSONWriter=h.RecordBatchStreamWriter=h.RecordBatchFileWriter=h.RecordBatchWriter=h.AsyncRecordBatchStreamReader=h.AsyncRecordBatchFileReader=h.RecordBatchStreamReader=h.RecordBatchFileReader=h.RecordBatchReader=h.AsyncByteQueue=h.AsyncByteStream=h.ByteStream=h.Utf8Vector=h.SparseUnionVector=h.DenseUnionVector=h.UnionVector=h.TimeNanosecondVector=h.TimeMicrosecondVector=h.TimeMillisecondVector=h.TimeSecondVector=h.TimeVector=h.TimestampNanosecondVector=h.TimestampMicrosecondVector=h.TimestampMillisecondVector=h.TimestampSecondVector=h.TimestampVector=h.StructVector=h.NullVector=h.MapVector=h.ListVector=h.Uint64Vector=h.Uint32Vector=h.Uint16Vector=h.Uint8Vector=h.Int64Vector=h.Int32Vector=h.Int16Vector=h.Int8Vector=h.IntVector=h.IntervalYearMonthVector=h.IntervalDayTimeVector=h.IntervalVector=h.Float64Vector=h.Float32Vector=h.Float16Vector=h.FloatVector=h.FixedSizeListVector=h.FixedSizeBinaryVector=h.DictionaryVector=h.DecimalVector=h.DateMillisecondVector=h.DateDayVector=h.DateVector=h.Chunked=h.BoolVector=h.BinaryVector=h.BaseVector=h.Vector=h.Visitor=h.Field=h.Schema=h.Column=h.Table=h.Map_=h.FixedSizeList=h.IntervalYearMonth=h.IntervalDayTime=h.Interval=h.Dictionary=h.SparseUnion=h.DenseUnion=h.Union=h.Struct=h.List=h.Decimal=h.TimeNanosecond=h.TimeMicrosecond=h.TimeMillisecond=h.TimeSecond=h.Time=h.TimestampNanosecond=h.TimestampMicrosecond=h.TimestampMillisecond=h.TimestampSecond=h.Timestamp=h.DateMillisecond=h.DateDay=h.Date_=h.FixedSizeBinary=h.Binary=h.Utf8=h.Float64=h.Float32=h.Float16=h.Float=h.Uint64=h.Uint32=h.Uint16=h.Uint8=h.Int64=h.Int32=h.Int16=h.Int8=h.Int=h.Bool=h.Null=h.DataType=h.Data=h.BufferType=h.UnionMode=h.Type=h.TimeUnit=h.Precision=h.MetadataVersion=h.MessageHeader=h.IntervalUnit=h.DateUnit=void 0;var VM=_u(),CM=Od(),_j=$u(),qj=nm(),WM=i1(),YM=s1(),vj=a1(),Tj=l1();VM.default.toDOMStream=WM.toDOMStream;CM.Builder.throughDOM=YM.builderThroughDOMStream;_j.RecordBatchReader.throughDOM=vj.recordBatchReaderThroughDOMStream;_j.RecordBatchFileReader.throughDOM=vj.recordBatchReaderThroughDOMStream;_j.RecordBatchStreamReader.throughDOM=vj.recordBatchReaderThroughDOMStream;qj.RecordBatchWriter.throughDOM=Tj.recordBatchWriterThroughDOMStream;qj.RecordBatchFileWriter.throughDOM=Tj.recordBatchWriterThroughDOMStream;qj.RecordBatchStreamWriter.throughDOM=Tj.recordBatchWriterThroughDOMStream;var F=h1();Object.defineProperty(h,"DateUnit",{enumerable:!0,get:function(){return F.DateUnit}});Object.defineProperty(h,"IntervalUnit",{enumerable:!0,get:function(){return F.IntervalUnit}});Object.defineProperty(h,"MessageHeader",{enumerable:!0,get:function(){return F.MessageHeader}});Object.defineProperty(h,"MetadataVersion",{enumerable:!0,get:function(){return F.MetadataVersion}});Object.defineProperty(h,"Precision",{enumerable:!0,get:function(){return F.Precision}});Object.defineProperty(h,"TimeUnit",{enumerable:!0,get:function(){return F.TimeUnit}});Object.defineProperty(h,"Type",{enumerable:!0,get:function(){return F.Type}});Object.defineProperty(h,"UnionMode",{enumerable:!0,get:function(){return F.UnionMode}});Object.defineProperty(h,"BufferType",{enumerable:!0,get:function(){return F.BufferType}});Object.defineProperty(h,"Data",{enumerable:!0,get:function(){return F.Data}});Object.defineProperty(h,"DataType",{enumerable:!0,get:function(){return F.DataType}});Object.defineProperty(h,"Null",{enumerable:!0,get:function(){return F.Null}});Object.defineProperty(h,"Bool",{enumerable:!0,get:function(){return F.Bool}});Object.defineProperty(h,"Int",{enumerable:!0,get:function(){return F.Int}});Object.defineProperty(h,"Int8",{enumerable:!0,get:function(){return F.Int8}});Object.defineProperty(h,"Int16",{enumerable:!0,get:function(){return F.Int16}});Object.defineProperty(h,"Int32",{enumerable:!0,get:function(){return F.Int32}});Object.defineProperty(h,"Int64",{enumerable:!0,get:function(){return F.Int64}});Object.defineProperty(h,"Uint8",{enumerable:!0,get:function(){return F.Uint8}});Object.defineProperty(h,"Uint16",{enumerable:!0,get:function(){return F.Uint16}});Object.defineProperty(h,"Uint32",{enumerable:!0,get:function(){return F.Uint32}});Object.defineProperty(h,"Uint64",{enumerable:!0,get:function(){return F.Uint64}});Object.defineProperty(h,"Float",{enumerable:!0,get:function(){return F.Float}});Object.defineProperty(h,"Float16",{enumerable:!0,get:function(){return F.Float16}});Object.defineProperty(h,"Float32",{enumerable:!0,get:function(){return F.Float32}});Object.defineProperty(h,"Float64",{enumerable:!0,get:function(){return F.Float64}});Object.defineProperty(h,"Utf8",{enumerable:!0,get:function(){return F.Utf8}});Object.defineProperty(h,"Binary",{enumerable:!0,get:function(){return F.Binary}});Object.defineProperty(h,"FixedSizeBinary",{enumerable:!0,get:function(){return F.FixedSizeBinary}});Object.defineProperty(h,"Date_",{enumerable:!0,get:function(){return F.Date_}});Object.defineProperty(h,"DateDay",{enumerable:!0,get:function(){return F.DateDay}});Object.defineProperty(h,"DateMillisecond",{enumerable:!0,get:function(){return F.DateMillisecond}});Object.defineProperty(h,"Timestamp",{enumerable:!0,get:function(){return F.Timestamp}});Object.defineProperty(h,"TimestampSecond",{enumerable:!0,get:function(){return F.TimestampSecond}});Object.defineProperty(h,"TimestampMillisecond",{enumerable:!0,get:function(){return F.TimestampMillisecond}});Object.defineProperty(h,"TimestampMicrosecond",{enumerable:!0,get:function(){return F.TimestampMicrosecond}});Object.defineProperty(h,"TimestampNanosecond",{enumerable:!0,get:function(){return F.TimestampNanosecond}});Object.defineProperty(h,"Time",{enumerable:!0,get:function(){return F.Time}});Object.defineProperty(h,"TimeSecond",{enumerable:!0,get:function(){return F.TimeSecond}});Object.defineProperty(h,"TimeMillisecond",{enumerable:!0,get:function(){return F.TimeMillisecond}});Object.defineProperty(h,"TimeMicrosecond",{enumerable:!0,get:function(){return F.TimeMicrosecond}});Object.defineProperty(h,"TimeNanosecond",{enumerable:!0,get:function(){return F.TimeNanosecond}});Object.defineProperty(h,"Decimal",{enumerable:!0,get:function(){return F.Decimal}});Object.defineProperty(h,"List",{enumerable:!0,get:function(){return F.List}});Object.defineProperty(h,"Struct",{enumerable:!0,get:function(){return F.Struct}});Object.defineProperty(h,"Union",{enumerable:!0,get:function(){return F.Union}});Object.defineProperty(h,"DenseUnion",{enumerable:!0,get:function(){return F.DenseUnion}});Object.defineProperty(h,"SparseUnion",{enumerable:!0,get:function(){return F.SparseUnion}});Object.defineProperty(h,"Dictionary",{enumerable:!0,get:function(){return F.Dictionary}});Object.defineProperty(h,"Interval",{enumerable:!0,get:function(){return F.Interval}});Object.defineProperty(h,"IntervalDayTime",{enumerable:!0,get:function(){return F.IntervalDayTime}});Object.defineProperty(h,"IntervalYearMonth",{enumerable:!0,get:function(){return F.IntervalYearMonth}});Object.defineProperty(h,"FixedSizeList",{enumerable:!0,get:function(){return F.FixedSizeList}});Object.defineProperty(h,"Map_",{enumerable:!0,get:function(){return F.Map_}});Object.defineProperty(h,"Table",{enumerable:!0,get:function(){return F.Table}});Object.defineProperty(h,"Column",{enumerable:!0,get:function(){return F.Column}});Object.defineProperty(h,"Schema",{enumerable:!0,get:function(){return F.Schema}});Object.defineProperty(h,"Field",{enumerable:!0,get:function(){return F.Field}});Object.defineProperty(h,"Visitor",{enumerable:!0,get:function(){return F.Visitor}});Object.defineProperty(h,"Vector",{enumerable:!0,get:function(){return F.Vector}});Object.defineProperty(h,"BaseVector",{enumerable:!0,get:function(){return F.BaseVector}});Object.defineProperty(h,"BinaryVector",{enumerable:!0,get:function(){return F.BinaryVector}});Object.defineProperty(h,"BoolVector",{enumerable:!0,get:function(){return F.BoolVector}});Object.defineProperty(h,"Chunked",{enumerable:!0,get:function(){return F.Chunked}});Object.defineProperty(h,"DateVector",{enumerable:!0,get:function(){return F.DateVector}});Object.defineProperty(h,"DateDayVector",{enumerable:!0,get:function(){return F.DateDayVector}});Object.defineProperty(h,"DateMillisecondVector",{enumerable:!0,get:function(){return F.DateMillisecondVector}});Object.defineProperty(h,"DecimalVector",{enumerable:!0,get:function(){return F.DecimalVector}});Object.defineProperty(h,"DictionaryVector",{enumerable:!0,get:function(){return F.DictionaryVector}});Object.defineProperty(h,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return F.FixedSizeBinaryVector}});Object.defineProperty(h,"FixedSizeListVector",{enumerable:!0,get:function(){return F.FixedSizeListVector}});Object.defineProperty(h,"FloatVector",{enumerable:!0,get:function(){return F.FloatVector}});Object.defineProperty(h,"Float16Vector",{enumerable:!0,get:function(){return F.Float16Vector}});Object.defineProperty(h,"Float32Vector",{enumerable:!0,get:function(){return F.Float32Vector}});Object.defineProperty(h,"Float64Vector",{enumerable:!0,get:function(){return F.Float64Vector}});Object.defineProperty(h,"IntervalVector",{enumerable:!0,get:function(){return F.IntervalVector}});Object.defineProperty(h,"IntervalDayTimeVector",{enumerable:!0,get:function(){return F.IntervalDayTimeVector}});Object.defineProperty(h,"IntervalYearMonthVector",{enumerable:!0,get:function(){return F.IntervalYearMonthVector}});Object.defineProperty(h,"IntVector",{enumerable:!0,get:function(){return F.IntVector}});Object.defineProperty(h,"Int8Vector",{enumerable:!0,get:function(){return F.Int8Vector}});Object.defineProperty(h,"Int16Vector",{enumerable:!0,get:function(){return F.Int16Vector}});Object.defineProperty(h,"Int32Vector",{enumerable:!0,get:function(){return F.Int32Vector}});Object.defineProperty(h,"Int64Vector",{enumerable:!0,get:function(){return F.Int64Vector}});Object.defineProperty(h,"Uint8Vector",{enumerable:!0,get:function(){return F.Uint8Vector}});Object.defineProperty(h,"Uint16Vector",{enumerable:!0,get:function(){return F.Uint16Vector}});Object.defineProperty(h,"Uint32Vector",{enumerable:!0,get:function(){return F.Uint32Vector}});Object.defineProperty(h,"Uint64Vector",{enumerable:!0,get:function(){return F.Uint64Vector}});Object.defineProperty(h,"ListVector",{enumerable:!0,get:function(){return F.ListVector}});Object.defineProperty(h,"MapVector",{enumerable:!0,get:function(){return F.MapVector}});Object.defineProperty(h,"NullVector",{enumerable:!0,get:function(){return F.NullVector}});Object.defineProperty(h,"StructVector",{enumerable:!0,get:function(){return F.StructVector}});Object.defineProperty(h,"TimestampVector",{enumerable:!0,get:function(){return F.TimestampVector}});Object.defineProperty(h,"TimestampSecondVector",{enumerable:!0,get:function(){return F.TimestampSecondVector}});Object.defineProperty(h,"TimestampMillisecondVector",{enumerable:!0,get:function(){return F.TimestampMillisecondVector}});Object.defineProperty(h,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return F.TimestampMicrosecondVector}});Object.defineProperty(h,"TimestampNanosecondVector",{enumerable:!0,get:function(){return F.TimestampNanosecondVector}});Object.defineProperty(h,"TimeVector",{enumerable:!0,get:function(){return F.TimeVector}});Object.defineProperty(h,"TimeSecondVector",{enumerable:!0,get:function(){return F.TimeSecondVector}});Object.defineProperty(h,"TimeMillisecondVector",{enumerable:!0,get:function(){return F.TimeMillisecondVector}});Object.defineProperty(h,"TimeMicrosecondVector",{enumerable:!0,get:function(){return F.TimeMicrosecondVector}});Object.defineProperty(h,"TimeNanosecondVector",{enumerable:!0,get:function(){return F.TimeNanosecondVector}});Object.defineProperty(h,"UnionVector",{enumerable:!0,get:function(){return F.UnionVector}});Object.defineProperty(h,"DenseUnionVector",{enumerable:!0,get:function(){return F.DenseUnionVector}});Object.defineProperty(h,"SparseUnionVector",{enumerable:!0,get:function(){return F.SparseUnionVector}});Object.defineProperty(h,"Utf8Vector",{enumerable:!0,get:function(){return F.Utf8Vector}});Object.defineProperty(h,"ByteStream",{enumerable:!0,get:function(){return F.ByteStream}});Object.defineProperty(h,"AsyncByteStream",{enumerable:!0,get:function(){return F.AsyncByteStream}});Object.defineProperty(h,"AsyncByteQueue",{enumerable:!0,get:function(){return F.AsyncByteQueue}});Object.defineProperty(h,"RecordBatchReader",{enumerable:!0,get:function(){return F.RecordBatchReader}});Object.defineProperty(h,"RecordBatchFileReader",{enumerable:!0,get:function(){return F.RecordBatchFileReader}});Object.defineProperty(h,"RecordBatchStreamReader",{enumerable:!0,get:function(){return F.RecordBatchStreamReader}});Object.defineProperty(h,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return F.AsyncRecordBatchFileReader}});Object.defineProperty(h,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return F.AsyncRecordBatchStreamReader}});Object.defineProperty(h,"RecordBatchWriter",{enumerable:!0,get:function(){return F.RecordBatchWriter}});Object.defineProperty(h,"RecordBatchFileWriter",{enumerable:!0,get:function(){return F.RecordBatchFileWriter}});Object.defineProperty(h,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return F.RecordBatchStreamWriter}});Object.defineProperty(h,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return F.RecordBatchJSONWriter}});Object.defineProperty(h,"MessageReader",{enumerable:!0,get:function(){return F.MessageReader}});Object.defineProperty(h,"AsyncMessageReader",{enumerable:!0,get:function(){return F.AsyncMessageReader}});Object.defineProperty(h,"JSONMessageReader",{enumerable:!0,get:function(){return F.JSONMessageReader}});Object.defineProperty(h,"Message",{enumerable:!0,get:function(){return F.Message}});Object.defineProperty(h,"RecordBatch",{enumerable:!0,get:function(){return F.RecordBatch}});Object.defineProperty(h,"DataFrame",{enumerable:!0,get:function(){return F.DataFrame}});Object.defineProperty(h,"FilteredDataFrame",{enumerable:!0,get:function(){return F.FilteredDataFrame}});Object.defineProperty(h,"CountByResult",{enumerable:!0,get:function(){return F.CountByResult}});Object.defineProperty(h,"predicate",{enumerable:!0,get:function(){return F.predicate}});Object.defineProperty(h,"util",{enumerable:!0,get:function(){return F.util}});Object.defineProperty(h,"Builder",{enumerable:!0,get:function(){return F.Builder}});Object.defineProperty(h,"BinaryBuilder",{enumerable:!0,get:function(){return F.BinaryBuilder}});Object.defineProperty(h,"BoolBuilder",{enumerable:!0,get:function(){return F.BoolBuilder}});Object.defineProperty(h,"DateBuilder",{enumerable:!0,get:function(){return F.DateBuilder}});Object.defineProperty(h,"DateDayBuilder",{enumerable:!0,get:function(){return F.DateDayBuilder}});Object.defineProperty(h,"DateMillisecondBuilder",{enumerable:!0,get:function(){return F.DateMillisecondBuilder}});Object.defineProperty(h,"DecimalBuilder",{enumerable:!0,get:function(){return F.DecimalBuilder}});Object.defineProperty(h,"DictionaryBuilder",{enumerable:!0,get:function(){return F.DictionaryBuilder}});Object.defineProperty(h,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return F.FixedSizeBinaryBuilder}});Object.defineProperty(h,"FixedSizeListBuilder",{enumerable:!0,get:function(){return F.FixedSizeListBuilder}});Object.defineProperty(h,"FloatBuilder",{enumerable:!0,get:function(){return F.FloatBuilder}});Object.defineProperty(h,"Float16Builder",{enumerable:!0,get:function(){return F.Float16Builder}});Object.defineProperty(h,"Float32Builder",{enumerable:!0,get:function(){return F.Float32Builder}});Object.defineProperty(h,"Float64Builder",{enumerable:!0,get:function(){return F.Float64Builder}});Object.defineProperty(h,"IntervalBuilder",{enumerable:!0,get:function(){return F.IntervalBuilder}});Object.defineProperty(h,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return F.IntervalDayTimeBuilder}});Object.defineProperty(h,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return F.IntervalYearMonthBuilder}});Object.defineProperty(h,"IntBuilder",{enumerable:!0,get:function(){return F.IntBuilder}});Object.defineProperty(h,"Int8Builder",{enumerable:!0,get:function(){return F.Int8Builder}});Object.defineProperty(h,"Int16Builder",{enumerable:!0,get:function(){return F.Int16Builder}});Object.defineProperty(h,"Int32Builder",{enumerable:!0,get:function(){return F.Int32Builder}});Object.defineProperty(h,"Int64Builder",{enumerable:!0,get:function(){return F.Int64Builder}});Object.defineProperty(h,"Uint8Builder",{enumerable:!0,get:function(){return F.Uint8Builder}});Object.defineProperty(h,"Uint16Builder",{enumerable:!0,get:function(){return F.Uint16Builder}});Object.defineProperty(h,"Uint32Builder",{enumerable:!0,get:function(){return F.Uint32Builder}});Object.defineProperty(h,"Uint64Builder",{enumerable:!0,get:function(){return F.Uint64Builder}});Object.defineProperty(h,"ListBuilder",{enumerable:!0,get:function(){return F.ListBuilder}});Object.defineProperty(h,"MapBuilder",{enumerable:!0,get:function(){return F.MapBuilder}});Object.defineProperty(h,"NullBuilder",{enumerable:!0,get:function(){return F.NullBuilder}});Object.defineProperty(h,"StructBuilder",{enumerable:!0,get:function(){return F.StructBuilder}});Object.defineProperty(h,"TimestampBuilder",{enumerable:!0,get:function(){return F.TimestampBuilder}});Object.defineProperty(h,"TimestampSecondBuilder",{enumerable:!0,get:function(){return F.TimestampSecondBuilder}});Object.defineProperty(h,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return F.TimestampMillisecondBuilder}});Object.defineProperty(h,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return F.TimestampMicrosecondBuilder}});Object.defineProperty(h,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return F.TimestampNanosecondBuilder}});Object.defineProperty(h,"TimeBuilder",{enumerable:!0,get:function(){return F.TimeBuilder}});Object.defineProperty(h,"TimeSecondBuilder",{enumerable:!0,get:function(){return F.TimeSecondBuilder}});Object.defineProperty(h,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return F.TimeMillisecondBuilder}});Object.defineProperty(h,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return F.TimeMicrosecondBuilder}});Object.defineProperty(h,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return F.TimeNanosecondBuilder}});Object.defineProperty(h,"UnionBuilder",{enumerable:!0,get:function(){return F.UnionBuilder}});Object.defineProperty(h,"DenseUnionBuilder",{enumerable:!0,get:function(){return F.DenseUnionBuilder}});Object.defineProperty(h,"SparseUnionBuilder",{enumerable:!0,get:function(){return F.SparseUnionBuilder}});Object.defineProperty(h,"Utf8Builder",{enumerable:!0,get:function(){return F.Utf8Builder}})});var ii={self:typeof self!="undefined"&&self,window:typeof window!="undefined"&&window,global:typeof global!="undefined"&&global,document:typeof document!="undefined"&&document},C1=ii.self||ii.window||ii.global||{},W1=ii.window||ii.self||ii.global||{},Y1=ii.global||ii.self||ii.window||{},K1=ii.document||{};var Vn=Boolean(typeof process!="object"||String(process)!=="[object process]"||process.browser);var Aj=typeof process!="undefined"&&process.version&&/v([0-9]*)/.exec(process.version),G1=Aj&&parseFloat(Aj[1])||0;function zm(t,e=!0,r){let n=r||new Set;if(t){if(Ej(t))n.add(t);else if(Ej(t.buffer))n.add(t.buffer);else if(!ArrayBuffer.isView(t)){if(e&&typeof t=="object")for(let i in t)zm(t[i],e,n)}}return r===void 0?Array.from(n):[]}function Ej(t){return t?t instanceof ArrayBuffer||typeof MessagePort!="undefined"&&t instanceof MessagePort||typeof ImageBitmap!="undefined"&&t instanceof ImageBitmap||typeof OffscreenCanvas!="undefined"&&t instanceof OffscreenCanvas:!1}function kf(){let parentPort;try{eval("globalThis.parentPort = require('worker_threads').parentPort"),parentPort=globalThis.parentPort}catch{}return parentPort}var Um=new Map,cn=class{static inWorkerThread(){return typeof self!="undefined"||Boolean(kf())}static set onmessage(e){function r(i){let o=kf(),{type:f,payload:s}=o?i:i.data;e(f,s)}let n=kf();n?(n.on("message",r),n.on("exit",()=>console.debug("Node worker closing"))):globalThis.onmessage=r}static addEventListener(e){let r=Um.get(e);r||(r=i=>{if(!J1(i))return;let o=kf(),{type:f,payload:s}=o?i:i.data;e(f,s)}),kf()?console.error("not implemented"):globalThis.addEventListener("message",r)}static removeEventListener(e){let r=Um.get(e);Um.delete(e),kf()?console.error("not implemented"):globalThis.removeEventListener("message",r)}static postMessage(e,r){let n={source:"loaders.gl",type:e,payload:r},i=zm(r),o=kf();o?o.postMessage(n,i):globalThis.postMessage(n,i)}};function J1(t){let{type:e,data:r}=t;return e==="message"&&r&&typeof r.source=="string"&&r.source.startsWith("loaders.gl")}var Z1=0;function Lm(t){!cn.inWorkerThread()||(cn.onmessage=async(e,r)=>{switch(e){case"process":try{let{input:n,options:i={},context:o={}}=r,f=await Q1({loader:t,arrayBuffer:n,options:i,context:{...o,parse:X1}});cn.postMessage("done",{result:f})}catch(n){let i=n instanceof Error?n.message:"";cn.postMessage("error",{error:i})}break;default:}})}function X1(t,e){return new Promise((r,n)=>{let i=Z1++,o=(s,l)=>{if(l.id===i)switch(s){case"done":cn.removeEventListener(o),r(l.result);break;case"error":cn.removeEventListener(o),n(l.error);break;default:}};cn.addEventListener(o);let f={id:i,input:t,options:e};cn.postMessage("process",f)})}async function Q1({loader:t,arrayBuffer:e,options:r,context:n}){let i,o;if(t.parseSync||t.parse)i=e,o=t.parseSync||t.parse;else if(t.parseTextSync)i=new TextDecoder().decode(e),o=t.parseTextSync;else throw new Error(`Could not load data with ${t.name} loader`);return r={...r,modules:t&&t.options&&t.options.modules||{},worker:!1},await o(i,{...r},n,t)}function Oj(...t){let e=t.map(o=>o instanceof ArrayBuffer?new Uint8Array(o):o),r=e.reduce((o,f)=>o+f.byteLength,0),n=new Uint8Array(r),i=0;for(let o of e)n.set(o,i),i+=o.byteLength;return n.buffer}async function Vm(t){let e=[];for await(let r of t)e.push(r);return Oj(...e)}function Nj(t){return t}function Dj(t){return t&&typeof t=="object"&&t.isBuffer}function rn(t){if(Dj(t))return Nj(t);if(t instanceof ArrayBuffer)return t;if(ArrayBuffer.isView(t))return t.byteOffset===0&&t.byteLength===t.buffer.byteLength?t.buffer:t.buffer.slice(t.byteOffset,t.byteOffset+t.byteLength);if(typeof t=="string"){let e=t;return new TextEncoder().encode(e).buffer}if(t&&typeof t=="object"&&t._toArrayBuffer)return t._toArrayBuffer();throw new Error("toArrayBuffer")}function zi(t){return e=>new Promise((r,n)=>t(e,(i,o)=>i?n(i):r(o)))}function $a(t){if(t instanceof ArrayBuffer)return{read:async(n,i)=>Buffer.from(t,n,i),close:async()=>{},size:t.byteLength};let e=t;return{read:async(r,n)=>{let i=await e.slice(r,r+n).arrayBuffer();return Buffer.from(i)},close:async()=>{},size:e.size}}var $1="3.4.6",ex={parquet:{type:"arrow-table",wasmUrl:"https://unpkg.com/parquet-wasm@0.3.1/esm2/arrow1_bg.wasm"}},Fj={name:"Apache Parquet",id:"parquet-wasm",module:"parquet",version:$1,worker:!1,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:ex};var tx="3.4.6",rx={parquet:{type:"object-row-table",url:void 0,columnList:[],geoparquet:!0}},Cm={name:"Apache Parquet",id:"parquet",module:"parquet",version:tx,worker:!0,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:rx};var gs=Pe(Hj());function Mj(t,e,r){switch(t){case"BOOLEAN":return ix(e);case"INT32":return fx(e);case"INT64":return ax(e);case"INT96":return ux(e);case"FLOAT":return px(e);case"DOUBLE":return mx(e);case"BYTE_ARRAY":return wx(e);case"FIXED_LEN_BYTE_ARRAY":return gx(e,r);default:throw new Error(`unsupported type: ${t}`)}}function zj(t,e,r,n){switch(t){case"BOOLEAN":return ox(e,r);case"INT32":return sx(e,r);case"INT64":return lx(e,r);case"INT96":return cx(e,r);case"FLOAT":return dx(e,r);case"DOUBLE":return bx(e,r);case"BYTE_ARRAY":return hx(e,r);case"FIXED_LEN_BYTE_ARRAY":return yx(e,r,n);default:throw new Error(`unsupported type: ${t}`)}}function ix(t){let e=Buffer.alloc(Math.ceil(t.length/8));e.fill(0);for(let r=0;r<t.length;r++)t[r]&&(e[Math.floor(r/8)]|=1<<r%8);return e}function ox(t,e){let r=[];for(let n=0;n<e;n++){let i=t.buffer[t.offset+Math.floor(n/8)];r.push((i&1<<n%8)>0)}return t.offset+=Math.ceil(e/8),r}function fx(t){let e=Buffer.alloc(4*t.length);for(let r=0;r<t.length;r++)e.writeInt32LE(t[r],r*4);return e}function sx(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readInt32LE(t.offset)),t.offset+=4;return r}function ax(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)gs.default.writeInt64LE(t[r],e,r*8);return e}function lx(t,e){let r=[];for(let n=0;n<e;n++)r.push(gs.default.readInt64LE(t.buffer,t.offset)),t.offset+=8;return r}function ux(t){let e=Buffer.alloc(12*t.length);for(let r=0;r<t.length;r++)t[r]>=0?(gs.default.writeInt64LE(t[r],e,r*12),e.writeUInt32LE(0,r*12+8)):(gs.default.writeInt64LE(~-t[r]+1,e,r*12),e.writeUInt32LE(4294967295,r*12+8));return e}function cx(t,e){let r=[];for(let n=0;n<e;n++){let i=gs.default.readInt64LE(t.buffer,t.offset);t.buffer.readUInt32LE(t.offset+8)===4294967295?r.push(~-i+1):r.push(i),t.offset+=12}return r}function px(t){let e=Buffer.alloc(4*t.length);for(let r=0;r<t.length;r++)e.writeFloatLE(t[r],r*4);return e}function dx(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readFloatLE(t.offset)),t.offset+=4;return r}function mx(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)e.writeDoubleLE(t[r],r*8);return e}function bx(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readDoubleLE(t.offset)),t.offset+=8;return r}function wx(t){let e=0;for(let i=0;i<t.length;i++)t[i]=Buffer.from(t[i]),e+=4+t[i].length;let r=Buffer.alloc(e),n=0;for(let i=0;i<t.length;i++)r.writeUInt32LE(t[i].length,n),t[i].copy(r,n+4),n+=4+t[i].length;return r}function hx(t,e){let r=[];for(let n=0;n<e;n++){let i=t.buffer.readUInt32LE(t.offset);t.offset+=4,r.push(t.buffer.slice(t.offset,t.offset+i)),t.offset+=i}return r}function gx(t,e){if(!e.typeLength)throw new Error("missing option: typeLength (required for FIXED_LEN_BYTE_ARRAY)");for(let r=0;r<t.length;r++)if(t[r]=Buffer.from(t[r]),t[r].length!==e.typeLength)throw new Error(`invalid value for FIXED_LEN_BYTE_ARRAY: ${t[r]}`);return Buffer.concat(t)}function yx(t,e,r){let n=[];if(!r.typeLength)throw new Error("missing option: typeLength (required for FIXED_LEN_BYTE_ARRAY)");for(let i=0;i<e;i++)n.push(t.buffer.slice(t.offset,t.offset+r.typeLength)),t.offset+=r.typeLength;return n}var tl=Pe(Xj());function Qj(t,e,r){if(!("bitWidth"in r))throw new Error("bitWidth is required");switch(t){case"BOOLEAN":case"INT32":case"INT64":e=e.map(s=>parseInt(s,10));break;default:throw new Error(`unsupported type: ${t}`)}let n=Buffer.alloc(0),i=[],o=0;for(let s=0;s<e.length;s++)o===0&&i.length%8==0&&e[s]===e[s+1]?(i.length&&(n=Buffer.concat([n,$j(i,r)]),i=[]),o=1):o>0&&e[s]===e[s-1]?o+=1:(o&&(n=Buffer.concat([n,e0(e[s-1],o,r)]),o=0),i.push(e[s]));if(o?n=Buffer.concat([n,e0(e[e.length-1],o,r)]):i.length&&(n=Buffer.concat([n,$j(i,r)])),r.disableEnvelope)return n;let f=Buffer.alloc(n.length+4);return f.writeUInt32LE(n.length,void 0),n.copy(f,4),f}function wc(t,e,r,n){if(!("bitWidth"in n))throw new Error("bitWidth is required");n.disableEnvelope||(e.offset+=4);let i=[];for(;i.length<r;){let o=tl.default.decode(e.buffer,e.offset);if(e.offset+=tl.default.encodingLength(o),o&1){let f=(o>>1)*8;i.push(...Nx(e,f,n))}else{let f=o>>1;i.push(...Dx(e,f,n))}}if(i=i.slice(0,r),i.length!==r)throw new Error("invalid RLE encoding");return i}function Nx(t,e,r){let n=r.bitWidth;if(e%8!=0)throw new Error("must be a multiple of 8");let i=new Array(e).fill(0);for(let o=0;o<n*e;o++)t.buffer[t.offset+Math.floor(o/8)]&1<<o%8&&(i[Math.floor(o/n)]|=1<<o%n);return t.offset+=n*(e/8),i}function Dx(t,e,r){let n=r.bitWidth,i=0;for(let o=0;o<Math.ceil(n/8);o++)i<<8,i+=t.buffer[t.offset],t.offset+=1;return new Array(e).fill(i)}function $j(t,e){let r=e.bitWidth;for(let i=0;i<t.length%8;i++)t.push(0);let n=Buffer.alloc(Math.ceil(r*(t.length/8)));for(let i=0;i<r*t.length;i++)(t[Math.floor(i/r)]&1<<i%r)>0&&(n[Math.floor(i/8)]|=1<<i%8);return Buffer.concat([Buffer.from(tl.default.encode(t.length/8<<1|1)),n])}function e0(t,e,r){let n=r.bitWidth,i=Buffer.alloc(Math.ceil(n/8));for(let o=0;o<i.length;o++)i.writeUInt8(t&255,o),t>>8;return Buffer.concat([Buffer.from(tl.default.encode(e<<1)),i])}function Ym(t,e,r,n){return n.bitWidth=e.buffer.slice(e.offset,e.offset+1).readInt8(0),e.offset+=1,wc(t,e,r,{...n,disableEnvelope:!0})}function Km(t,e,r,n){throw new Error("Encode dictionary functionality is not supported")}var rl={PLAIN:{encodeValues:Mj,decodeValues:zj},RLE:{encodeValues:Qj,decodeValues:wc},PLAIN_DICTIONARY:{encodeValues:Km,decodeValues:Ym},RLE_DICTIONARY:{encodeValues:Km,decodeValues:Ym}};var nn=class{constructor(e){this.compressBatches=this.compressBatches.bind(this),this.decompressBatches=this.decompressBatches.bind(this)}async preload(){}async compress(e){return await this.preload(),this.compressSync(e)}async decompress(e,r){return await this.preload(),this.decompressSync(e,r)}compressSync(e){throw new Error(`${this.name}: sync compression not supported`)}decompressSync(e,r){throw new Error(`${this.name}: sync decompression not supported`)}async*compressBatches(e){let r=await this.concatenate(e);yield this.compress(r)}async*decompressBatches(e){let r=await this.concatenate(e);yield this.decompress(r)}concatenate(e){return Vm(e)}improveError(e){return e.message.includes(this.name)||(e.message=`${this.name} ${e.message}`),e}};var hc=class extends nn{constructor(e){super(e);this.name="uncompressed";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return e}decompressSync(e){return e}async*compressBatches(e){return yield*e}async*decompressBatches(e){return yield*e}};var yl=Pe(U_()),Yi=Pe(Sb());var xb=class extends nn{constructor(e={}){super(e);this.name="deflate";this.extensions=[];this.contentEncodings=["deflate"];this.isSupported=!0;this._chunks=[];this.options=e}async compress(e){if(!Vn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await zi(Yi.default.gzip)(e):await zi(Yi.default.deflate)(e);return rn(r)}return this.compressSync(e)}async decompress(e){if(!Vn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await zi(Yi.default.gunzip)(e):await zi(Yi.default.inflate)(e);return rn(r)}return this.decompressSync(e)}compressSync(e){if(!Vn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Yi.default.gzipSync(e):Yi.default.deflateSync(e);return rn(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return yl.default.deflate(n,r).buffer}decompressSync(e){if(!Vn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Yi.default.gunzipSync(e):Yi.default.inflateSync(e);return rn(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return yl.default.inflate(n,r).buffer}async*compressBatches(e){let r=this.options?.deflate||{},n=new yl.default.Deflate(r);yield*this.transformBatches(n,e)}async*decompressBatches(e){let r=this.options?.deflate||{},n=new yl.default.Inflate(r);yield*this.transformBatches(n,e)}async*transformBatches(e,r){e.onData=this._onData.bind(this),e.onEnd=this._onEnd.bind(this);for await(let f of r){let s=new Uint8Array(f);if(!e.push(s,!1))throw new Error(`${this._getError()}write`);yield*this._getChunks()}let n=new Uint8Array(0),i=e.push(n,!0);yield*this._getChunks()}_onData(e){this._chunks.push(e)}_onEnd(e){if(e!==0)throw new Error(this._getError(e)+this._chunks.length)}_getChunks(){let e=this._chunks;return this._chunks=[],e}_getError(e=0){let r={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"};return`${this.name}: ${r[e]}`}};var Dc=class extends xb{constructor(e){super({...e,deflate:{...e?.gzip,gzip:!0}});this.name="gzip";this.extensions=["gz","gzip"];this.contentEncodings=["gzip","x-gzip"];this.isSupported=!0}};var IE=407708164,jl,_l=class extends nn{constructor(e){super(e);this.name="lz4";this.extensions=["lz4"];this.contentEncodings=["x-lz4"];this.isSupported=!0;if(this.options=e,jl=jl||this.options?.modules?.lz4js,!jl)throw new Error(this.name)}compressSync(e){let r=new Uint8Array(e);return jl.compress(r).buffer}decompressSync(e,r){try{let n=this.checkMagicNumber(e),i=new Uint8Array(e);if(n)return jl.decompress(i,r).buffer;if(!r){let s=new Error("Need to provide maxSize");throw this.improveError(s)}let o=new Uint8Array(r),f=this.decodeBlock(i,o);return o=o.slice(0,f),rn(o)}catch(n){throw this.improveError(n)}}decodeBlock(e,r,n,i){n=n||0,i=i||e.length-n;let o=0;for(let f=n;f<i;){let s=e[f++],l=s>>4;if(l>0){let S=l+240;for(;S===255;)S=e[f++],l+=S;let T=f+l;for(;f<T;)r[o++]=e[f++];if(f===i)return o}let u=e[f++]|e[f++]<<8;if(u===0||u>o)return-(f-2);let c=s&15,_=c+240;for(;_===255;)_=e[f++],c+=_;let p=o-u,j=o+c+4;for(;o<j;)r[o++]=r[p++]}return o}checkMagicNumber(e){return new Uint32Array(e.slice(0,4))[0]===IE}};var Fc,Pc,Rc=class extends nn{constructor(e){super(e);this.name="zstd";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e,Fc=this.options?.modules?.["zstd-codec"],Fc||console.warn(`${this.name} library not installed`)}async preload(){!Pc&&Fc&&(Pc=await new Promise(e=>Fc.run(r=>e(r))))}compressSync(e){let r=new Pc.Simple,n=new Uint8Array(e);return r.compress(n).buffer}decompressSync(e){let r=new Pc.Simple,n=new Uint8Array(e);return r.decompress(n).buffer}};var zc=Pe(Q_()),Uc=class extends nn{constructor(e){super(e);this.name="snappy";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return(0,zc.compress)(e)}decompressSync(e){return(0,zc.uncompress)(e)}};var UE=()=>{function t(a){this.data=a,this.offset=0}let e=Int32Array.from([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]),r=Int32Array.from([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),n=Int32Array.from([0,3,2,1,0,0,0,0,0,0,3,3,3,3,3,3]),i=Int32Array.from([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),o=Int32Array.from([131072,131076,131075,196610,131072,131076,131075,262145,131072,131076,131075,196610,131072,131076,131075,262149]),f=Int32Array.from([1,5,9,13,17,25,33,41,49,65,81,97,113,145,177,209,241,305,369,497,753,1265,2289,4337,8433,16625]),s=Int32Array.from([2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,7,8,9,10,11,12,13,24]),l=Int16Array.from([0,0,0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,7,8,9,10,12,14,24]),u=Int16Array.from([0,0,0,0,0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,7,8,9,10,24]),c=new Int16Array(2816);S(c);function _(a){let x=-1,k=16;for(;k>0;)a>>>k!=0&&(x+=k,a=a>>>k),k=k>>1;return x+a}function p(a,x,k){return 16+x+2*(k<<a)}function j(a,x,k){if(a<k+(2<<x))throw"maxDistance is too small";let A=(a-k>>x)+4,O=_(A)-1;return((O-1<<1|A>>O&1)-1<<x)+(1<<x)+k+16}function S(a){let x=new Int16Array(24),k=new Int16Array(24);k[0]=2;for(let A=0;A<23;++A)x[A+1]=x[A]+(1<<l[A]),k[A+1]=k[A]+(1<<u[A]);for(let A=0;A<704;++A){let O=A>>>6,Q=-4;O>=2&&(O-=2,Q=0);let re=(170064>>>O*2&3)<<3|A>>>3&7,he=(156228>>>O*2&3)<<3|A&7,Ae=k[he],Ee=Q+(Ae>4?3:Ae-2),qe=A*4;a[qe+0]=l[re]|u[he]<<8,a[qe+1]=x[re],a[qe+2]=k[he],a[qe+3]=Ee}}function T(a){let x=a.isLargeWindow;if(a.isLargeWindow=0,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Be(a,1)==0)return 16;let k=Be(a,3);return k!=0?17+k:(k=Be(a,3),k!=0?k==1?x==0||(a.isLargeWindow=1,Be(a,1)==1)||(k=Be(a,6),k<10||k>30)?-1:k:8+k:17)}function U(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isEager=1}function W(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isLargeWindow=1}function L(a,x){if(a.runningState!=1)throw"State MUST be freshly initialized";if(a.cdNumChunks==0&&(a.cdChunks=new Array(16),a.cdChunkOffsets=new Int32Array(16),a.cdBlockBits=-1),a.cdNumChunks==15)throw"Too many dictionary chunks";a.cdChunks[a.cdNumChunks]=x,a.cdNumChunks++,a.cdTotalSize+=x.length,a.cdChunkOffsets[a.cdNumChunks]=a.cdTotalSize}function te(a,x){if(a.runningState!=0)throw"State MUST be uninitialized";a.blockTrees=new Int32Array(3091),a.blockTrees[0]=7,a.distRbIdx=3;let k=j(2147483644,3,15<<3);a.distExtraBits=new Int8Array(k),a.distOffset=new Int32Array(k),a.input=x,v(a),a.runningState=1}function ce(a){if(a.runningState==0)throw"State MUST be initialized";a.runningState!=11&&(a.runningState=11,a.input!=null&&(A1(a.input),a.input=null))}function J(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Be(a,1)!=0){let x=Be(a,3);return x==0?1:Be(a,x)+(1<<x)}return 0}function D(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.inputEnd=Be(a,1),a.metaBlockLength=0,a.isUncompressed=0,a.isMetadata=0,a.inputEnd!=0&&Be(a,1)!=0)return;let x=Be(a,2)+4;if(x==7){if(a.isMetadata=1,Be(a,1)!=0)throw"Corrupted reserved bit";let k=Be(a,2);if(k==0)return;for(let A=0;A<k;A++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let O=Be(a,8);if(O==0&&A+1==k&&k>1)throw"Exuberant nibble";a.metaBlockLength|=O<<A*8}}else for(let k=0;k<x;k++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let A=Be(a,4);if(A==0&&k+1==x&&x>4)throw"Exuberant nibble";a.metaBlockLength|=A<<k*4}a.metaBlockLength++,a.inputEnd==0&&(a.isUncompressed=Be(a,1))}function ae(a,x,k){let A=a[x],O=k.accumulator32>>>k.bitOffset;A+=O&255;let Q=a[A]>>16,re=a[A]&65535;if(Q<=8)return k.bitOffset+=Q,re;A+=re;let he=(1<<Q)-1;return A+=(O&he)>>>8,k.bitOffset+=(a[A]>>16)+8,a[A]&65535}function Y(a,x,k){k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16);let A=ae(a,x,k),O=s[A];return k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16),f[A]+(O<=16?Be(k,O):Ln(k,O))}function pe(a,x){let k=a[x];for(;x>0;x--)a[x]=a[x-1];a[0]=k}function y(a,x){let k=new Int32Array(256);for(let A=0;A<256;A++)k[A]=A;for(let A=0;A<x;A++){let O=a[A]&255;a[A]=k[O],O!=0&&pe(k,O)}}function g(a,x,k,A){let O=0,Q=8,re=0,he=0,Ae=32768,Ee=new Int32Array(32+1),qe=Ee.length-1;for(rt(Ee,qe,5,a,18);O<x&&Ae>0;){A.halfOffset>2030&&Je(A),A.bitOffset>=16&&(A.accumulator32=A.shortBuffer[A.halfOffset++]<<16|A.accumulator32>>>16,A.bitOffset-=16);let nt=A.accumulator32>>>A.bitOffset&31;A.bitOffset+=Ee[nt]>>16;let ot=Ee[nt]&65535;if(ot<16)re=0,k[O++]=ot,ot!=0&&(Q=ot,Ae-=32768>>ot);else{let Mt=ot-14,en=0;ot==16&&(en=Q),he!=en&&(re=0,he=en);let un=re;re>0&&(re-=2,re<<=Mt),A.bitOffset>=16&&(A.accumulator32=A.shortBuffer[A.halfOffset++]<<16|A.accumulator32>>>16,A.bitOffset-=16),re+=Be(A,Mt)+3;let wr=re-un;if(O+wr>x)throw"symbol + repeatDelta > numSymbols";for(let at=0;at<wr;at++)k[O++]=he;he!=0&&(Ae-=wr<<15-he)}}if(Ae!=0)throw"Unused space";k.fill(0,O,x)}function N(a,x){for(let k=0;k<x-1;++k)for(let A=k+1;A<x;++A)if(a[k]==a[A])throw"Duplicate simple Huffman code symbol"}function b(a,x,k,A,O){let Q=new Int32Array(x),re=new Int32Array(4),he=1+_(a-1),Ae=Be(O,2)+1;for(let qe=0;qe<Ae;qe++){O.bitOffset>=16&&(O.accumulator32=O.shortBuffer[O.halfOffset++]<<16|O.accumulator32>>>16,O.bitOffset-=16);let nt=Be(O,he);if(nt>=x)throw"Can't readHuffmanCode";re[qe]=nt}N(re,Ae);let Ee=Ae;switch(Ae==4&&(Ee+=Be(O,1)),Ee){case 1:Q[re[0]]=1;break;case 2:Q[re[0]]=1,Q[re[1]]=1;break;case 3:Q[re[0]]=1,Q[re[1]]=2,Q[re[2]]=2;break;case 4:Q[re[0]]=2,Q[re[1]]=2,Q[re[2]]=2,Q[re[3]]=2;break;case 5:Q[re[0]]=1,Q[re[1]]=2,Q[re[2]]=3,Q[re[3]]=3;break;default:break}return rt(k,A,8,Q,x)}function H(a,x,k,A,O){let Q=new Int32Array(a),re=new Int32Array(18),he=32,Ae=0;for(let Ee=x;Ee<18&&he>0;Ee++){let qe=r[Ee];O.bitOffset>=16&&(O.accumulator32=O.shortBuffer[O.halfOffset++]<<16|O.accumulator32>>>16,O.bitOffset-=16);let nt=O.accumulator32>>>O.bitOffset&15;O.bitOffset+=o[nt]>>16;let ot=o[nt]&65535;re[qe]=ot,ot!=0&&(he-=32>>ot,Ae++)}if(he!=0&&Ae!=1)throw"Corrupted Huffman code histogram";return g(re,a,Q,O),rt(k,A,8,Q,a)}function K(a,x,k,A,O){O.halfOffset>2030&&Je(O),O.bitOffset>=16&&(O.accumulator32=O.shortBuffer[O.halfOffset++]<<16|O.accumulator32>>>16,O.bitOffset-=16);let Q=Be(O,2);return Q==1?b(a,x,k,A,O):H(x,Q,k,A,O)}function M(a,x,k){k.halfOffset>2030&&Je(k);let A=J(k)+1;if(A==1)return x.fill(0,0,a),A;k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16);let O=Be(k,1),Q=0;O!=0&&(Q=Be(k,4)+1);let re=A+Q,he=e[re+31>>5],Ae=new Int32Array(he+1),Ee=Ae.length-1;K(re,re,Ae,Ee,k);for(let qe=0;qe<a;){k.halfOffset>2030&&Je(k),k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16);let nt=ae(Ae,Ee,k);if(nt==0)x[qe]=0,qe++;else if(nt<=Q){k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16);let ot=(1<<nt)+Be(k,nt);for(;ot!=0;){if(qe>=a)throw"Corrupted context map";x[qe]=0,qe++,ot--}}else x[qe]=nt-Q,qe++}return k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16),Be(k,1)==1&&y(x,a),A}function ie(a,x,k){let A=a.rings,O=4+x*2;a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let Q=ae(a.blockTrees,2*x,a),re=Y(a.blockTrees,2*x+1,a);return Q==1?Q=A[O+1]+1:Q==0?Q=A[O]:Q-=2,Q>=k&&(Q-=k),A[O]=A[O+1],A[O+1]=Q,re}function E(a){a.literalBlockLength=ie(a,0,a.numLiteralBlockTypes);let x=a.rings[5];a.contextMapSlice=x<<6,a.literalTreeIdx=a.contextMap[a.contextMapSlice]&255;let k=a.contextModes[x];a.contextLookupOffset1=k<<9,a.contextLookupOffset2=a.contextLookupOffset1+256}function We(a){a.commandBlockLength=ie(a,1,a.numCommandBlockTypes),a.commandTreeIdx=a.rings[7]}function de(a){a.distanceBlockLength=ie(a,2,a.numDistanceBlockTypes),a.distContextMapSlice=a.rings[9]<<2}function C(a){let x=a.maxRingBufferSize;if(x>a.expectedTotalSize){let O=a.expectedTotalSize;for(;x>>1>O;)x>>=1;a.inputEnd==0&&x<16384&&a.maxRingBufferSize>=16384&&(x=16384)}if(x<=a.ringBufferSize)return;let k=x+37,A=new Int8Array(k);a.ringBuffer.length!=0&&A.set(a.ringBuffer.subarray(0,0+a.ringBufferSize),0),a.ringBuffer=A,a.ringBufferSize=x}function X(a){if(a.inputEnd!=0){a.nextRunningState=10,a.runningState=12;return}a.literalTreeGroup=new Int32Array(0),a.commandTreeGroup=new Int32Array(0),a.distanceTreeGroup=new Int32Array(0),a.halfOffset>2030&&Je(a),D(a),!(a.metaBlockLength==0&&a.isMetadata==0)&&(a.isUncompressed!=0||a.isMetadata!=0?(ne(a),a.runningState=a.isMetadata!=0?5:6):a.runningState=3,a.isMetadata==0&&(a.expectedTotalSize+=a.metaBlockLength,a.expectedTotalSize>1<<30&&(a.expectedTotalSize=1<<30),a.ringBufferSize<a.maxRingBufferSize&&C(a)))}function He(a,x,k){let A=a.blockTrees[2*x];if(k<=1)return a.blockTrees[2*x+1]=A,a.blockTrees[2*x+2]=A,1<<28;let O=k+2;A+=K(O,O,a.blockTrees,2*x,a),a.blockTrees[2*x+1]=A;let Q=26;return A+=K(Q,Q,a.blockTrees,2*x+1,a),a.blockTrees[2*x+2]=A,Y(a.blockTrees,2*x+1,a)}function we(a,x){let k=a.distExtraBits,A=a.distOffset,O=a.distancePostfixBits,Q=a.numDirectDistanceCodes,re=1<<O,he=1,Ae=0,Ee=16;for(let qe=0;qe<Q;++qe)k[Ee]=0,A[Ee]=qe+1,++Ee;for(;Ee<x;){let qe=Q+((2+Ae<<he)-4<<O)+1;for(let nt=0;nt<re;++nt)k[Ee]=he,A[Ee]=qe+nt,++Ee;he=he+Ae,Ae=Ae^1}}function tt(a){a.numLiteralBlockTypes=J(a)+1,a.literalBlockLength=He(a,0,a.numLiteralBlockTypes),a.numCommandBlockTypes=J(a)+1,a.commandBlockLength=He(a,1,a.numCommandBlockTypes),a.numDistanceBlockTypes=J(a)+1,a.distanceBlockLength=He(a,2,a.numDistanceBlockTypes),a.halfOffset>2030&&Je(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.distancePostfixBits=Be(a,2),a.numDirectDistanceCodes=Be(a,4)<<a.distancePostfixBits,a.contextModes=new Int8Array(a.numLiteralBlockTypes);for(let Q=0;Q<a.numLiteralBlockTypes;){let re=Bo(Q+96,a.numLiteralBlockTypes);for(;Q<re;++Q)a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.contextModes[Q]=Be(a,2);a.halfOffset>2030&&Je(a)}a.contextMap=new Int8Array(a.numLiteralBlockTypes<<6);let x=M(a.numLiteralBlockTypes<<6,a.contextMap,a);a.trivialLiteralContext=1;for(let Q=0;Q<a.numLiteralBlockTypes<<6;Q++)if(a.contextMap[Q]!=Q>>6){a.trivialLiteralContext=0;break}a.distContextMap=new Int8Array(a.numDistanceBlockTypes<<2);let k=M(a.numDistanceBlockTypes<<2,a.distContextMap,a);a.literalTreeGroup=$(256,256,x,a),a.commandTreeGroup=$(704,704,a.numCommandBlockTypes,a);let A=p(a.distancePostfixBits,a.numDirectDistanceCodes,24),O=A;a.isLargeWindow==1&&(A=p(a.distancePostfixBits,a.numDirectDistanceCodes,62),O=j(2147483644,a.distancePostfixBits,a.numDirectDistanceCodes)),a.distanceTreeGroup=$(A,O,k,a),we(a,O),a.contextMapSlice=0,a.distContextMapSlice=0,a.contextLookupOffset1=a.contextModes[0]*512,a.contextLookupOffset2=a.contextLookupOffset1+256,a.literalTreeIdx=0,a.commandTreeIdx=0,a.rings[4]=1,a.rings[5]=0,a.rings[6]=1,a.rings[7]=0,a.rings[8]=1,a.rings[9]=0}function kr(a){let x=a.ringBuffer;if(a.metaBlockLength<=0){P(a),a.runningState=2;return}let k=Bo(a.ringBufferSize-a.pos,a.metaBlockLength);if(Qe(a,x,a.pos,k),a.metaBlockLength-=k,a.pos+=k,a.pos==a.ringBufferSize){a.nextRunningState=6,a.runningState=12;return}P(a),a.runningState=2}function je(a){let x=Bo(a.outputLength-a.outputUsed,a.ringBufferBytesReady-a.ringBufferBytesWritten);return x!=0&&(a.output.set(a.ringBuffer.subarray(a.ringBufferBytesWritten,a.ringBufferBytesWritten+x),a.outputOffset+a.outputUsed),a.outputUsed+=x,a.ringBufferBytesWritten+=x),a.outputUsed<a.outputLength?1:0}function $(a,x,k,A){let O=e[x+31>>5],Q=new Int32Array(k+k*O),re=k;for(let he=0;he<k;++he)Q[he]=re,re+=K(a,x,Q,he,A);return Q}function qo(a){let x=a.ringBufferSize;return a.isEager!=0&&(x=Bo(x,a.ringBufferBytesWritten+a.outputLength-a.outputUsed)),x}function vo(a,x){if(a.distance>2147483644)throw"Invalid backward reference";let k=a.distance-a.maxDistance-1-a.cdTotalSize;if(k<0)Ye(a,-k-1,a.copyLength),a.runningState=14;else{let A=At,O=a.copyLength;if(O>31)throw"Invalid backward reference";let Q=To[O];if(Q==0)throw"Invalid backward reference";let re=tr[O],he=(1<<Q)-1,Ae=k&he,Ee=k>>>Q;re+=Ae*O;let qe=d;if(Ee>=qe.numTransforms)throw"Invalid backward reference";let nt=B(a.ringBuffer,a.pos,A,re,O,qe,Ee);if(a.pos+=nt,a.metaBlockLength-=nt,a.pos>=x){a.nextRunningState=4,a.runningState=12;return}a.runningState=4}}function It(a){a.cdBlockMap=new Int8Array(256);let x=8;for(;a.cdTotalSize-1>>>x!=0;)x++;x-=8,a.cdBlockBits=x;let k=0,A=0;for(;k<a.cdTotalSize;){for(;a.cdChunkOffsets[A+1]<k;)A++;a.cdBlockMap[k>>>x]=A,k+=1<<x}}function Ye(a,x,k){a.cdBlockBits==-1&&It(a);let A=a.cdBlockMap[x>>>a.cdBlockBits];for(;x>=a.cdChunkOffsets[A+1];)A++;if(a.cdTotalSize>x+k)throw"Invalid backward reference";a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance,a.metaBlockLength-=k,a.cdBrIndex=A,a.cdBrOffset=x-a.cdChunkOffsets[A],a.cdBrLength=k,a.cdBrCopied=0}function Ht(a,x){let k=a.pos,A=k;for(;a.cdBrLength!=a.cdBrCopied;){let O=x-k,re=a.cdChunkOffsets[a.cdBrIndex+1]-a.cdChunkOffsets[a.cdBrIndex]-a.cdBrOffset,he=a.cdBrLength-a.cdBrCopied;if(he>re&&(he=re),he>O&&(he=O),x1(a.ringBuffer,k,a.cdChunks[a.cdBrIndex],a.cdBrOffset,a.cdBrOffset+he),k+=he,a.cdBrOffset+=he,a.cdBrCopied+=he,he==re&&(a.cdBrIndex++,a.cdBrOffset=0),k>=x)break}return k-A}function mt(a){if(a.runningState==0)throw"Can't decompress until initialized";if(a.runningState==11)throw"Can't decompress after close";if(a.runningState==1){let O=T(a);if(O==-1)throw"Invalid 'windowBits' code";a.maxRingBufferSize=1<<O,a.maxBackwardDistance=a.maxRingBufferSize-16,a.runningState=2}let x=qo(a),k=a.ringBufferSize-1,A=a.ringBuffer;for(;a.runningState!=10;)switch(a.runningState){case 2:if(a.metaBlockLength<0)throw"Invalid metablock length";X(a),x=qo(a),k=a.ringBufferSize-1,A=a.ringBuffer;continue;case 3:tt(a),a.runningState=4;case 4:if(a.metaBlockLength<=0){a.runningState=2;continue}a.halfOffset>2030&&Je(a),a.commandBlockLength==0&&We(a),a.commandBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let O=ae(a.commandTreeGroup,a.commandTreeIdx,a)<<2,Q=c[O],re=c[O+1],he=c[O+2];a.distanceCode=c[O+3],a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let Ae=Q&255;a.insertLength=re+(Ae<=16?Be(a,Ae):Ln(a,Ae)),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let Ee=Q>>8;a.copyLength=he+(Ee<=16?Be(a,Ee):Ln(a,Ee)),a.j=0,a.runningState=7;case 7:if(a.trivialLiteralContext!=0){for(;a.j<a.insertLength;)if(a.halfOffset>2030&&Je(a),a.literalBlockLength==0&&E(a),a.literalBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),A[a.pos]=ae(a.literalTreeGroup,a.literalTreeIdx,a),a.pos++,a.j++,a.pos>=x){a.nextRunningState=7,a.runningState=12;break}}else{let wr=A[a.pos-1&k]&255,at=A[a.pos-2&k]&255;for(;a.j<a.insertLength;){a.halfOffset>2030&&Je(a),a.literalBlockLength==0&&E(a);let tn=St[a.contextLookupOffset1+wr]|St[a.contextLookupOffset2+at],Hi=a.contextMap[a.contextMapSlice+tn]&255;if(a.literalBlockLength--,at=wr,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),wr=ae(a.literalTreeGroup,Hi,a),A[a.pos]=wr,a.pos++,a.j++,a.pos>=x){a.nextRunningState=7,a.runningState=12;break}}}if(a.runningState!=7)continue;if(a.metaBlockLength-=a.insertLength,a.metaBlockLength<=0){a.runningState=4;continue}let qe=a.distanceCode;if(qe<0)a.distance=a.rings[a.distRbIdx];else{a.halfOffset>2030&&Je(a),a.distanceBlockLength==0&&de(a),a.distanceBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let wr=a.distContextMap[a.distContextMapSlice+qe]&255;if(qe=ae(a.distanceTreeGroup,wr,a),qe<16){let at=a.distRbIdx+n[qe]&3;if(a.distance=a.rings[at]+i[qe],a.distance<0)throw"Negative distance"}else{let at=a.distExtraBits[qe],tn;a.bitOffset+at<=32?tn=Be(a,at):(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),tn=at<=16?Be(a,at):Ln(a,at)),a.distance=a.distOffset[qe]+(tn<<a.distancePostfixBits)}}if(a.maxDistance!=a.maxBackwardDistance&&a.pos<a.maxBackwardDistance?a.maxDistance=a.pos:a.maxDistance=a.maxBackwardDistance,a.distance>a.maxDistance){a.runningState=9;continue}if(qe>0&&(a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance),a.copyLength>a.metaBlockLength)throw"Invalid backward reference";a.j=0,a.runningState=8;case 8:let nt=a.pos-a.distance&k,ot=a.pos,Mt=a.copyLength-a.j,en=nt+Mt,un=ot+Mt;if(en<k&&un<k){if(Mt<12||en>ot&&un>nt)for(let wr=0;wr<Mt;wr+=4)A[ot++]=A[nt++],A[ot++]=A[nt++],A[ot++]=A[nt++],A[ot++]=A[nt++];else A.copyWithin(ot,nt,en);a.j+=Mt,a.metaBlockLength-=Mt,a.pos+=Mt}else for(;a.j<a.copyLength;)if(A[a.pos]=A[a.pos-a.distance&k],a.metaBlockLength--,a.pos++,a.j++,a.pos>=x){a.nextRunningState=8,a.runningState=12;break}a.runningState==8&&(a.runningState=4);continue;case 9:vo(a,x);continue;case 14:if(a.pos+=Ht(a,x),a.pos>=x){a.nextRunningState=14,a.runningState=12;return}a.runningState=4;continue;case 5:for(;a.metaBlockLength>0;)a.halfOffset>2030&&Je(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Be(a,8),a.metaBlockLength--;a.runningState=2;continue;case 6:kr(a);continue;case 12:a.ringBufferBytesReady=Bo(a.pos,a.ringBufferSize),a.runningState=13;case 13:if(je(a)==0)return;a.pos>=a.maxBackwardDistance&&(a.maxDistance=a.maxBackwardDistance),a.pos>=a.ringBufferSize&&(a.pos>a.ringBufferSize&&A.copyWithin(0,a.ringBufferSize,a.pos),a.pos&=k,a.ringBufferBytesWritten=0),a.runningState=a.nextRunningState;continue;default:throw"Unexpected state "+a.runningState}if(a.runningState==10){if(a.metaBlockLength<0)throw"Invalid metablock length";ne(a),vt(a,1)}}function q(a,x,k){this.numTransforms=0,this.triplets=new Int32Array(0),this.prefixSuffixStorage=new Int8Array(0),this.prefixSuffixHeads=new Int32Array(0),this.params=new Int16Array(0),this.numTransforms=a,this.triplets=new Int32Array(a*3),this.params=new Int16Array(a),this.prefixSuffixStorage=new Int8Array(x),this.prefixSuffixHeads=new Int32Array(k+1)}let d=new q(121,167,50);function m(a,x,k,A,O){let Q=A.length,re=1,he=0;for(let Ae=0;Ae<Q;++Ae){let Ee=A.charCodeAt(Ae);Ee==35?x[re++]=he:a[he++]=Ee}for(let Ae=0;Ae<363;++Ae)k[Ae]=O.charCodeAt(Ae)-32}m(d.prefixSuffixStorage,d.prefixSuffixHeads,d.triplets,`# #s #, #e #.# the #.com/#\xC2\xA0# of # and # in # to #"#">#
10
+ `)+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}function wj(t){return Array.isArray(t)}ot.isArray=wj;function Zm(t){return typeof t=="boolean"}ot.isBoolean=Zm;function Rp(t){return t===null}ot.isNull=Rp;function wI(t){return t==null}ot.isNullOrUndefined=wI;function hj(t){return typeof t=="number"}ot.isNumber=hj;function Dp(t){return typeof t=="string"}ot.isString=Dp;function hI(t){return typeof t=="symbol"}ot.isSymbol=hI;function hf(t){return t===void 0}ot.isUndefined=hf;function zp(t){return Wo(t)&&Qm(t)==="[object RegExp]"}ot.isRegExp=zp;function Wo(t){return typeof t=="object"&&t!==null}ot.isObject=Wo;function Xm(t){return Wo(t)&&Qm(t)==="[object Date]"}ot.isDate=Xm;function Fp(t){return Wo(t)&&(Qm(t)==="[object Error]"||t instanceof Error)}ot.isError=Fp;function Pp(t){return typeof t=="function"}ot.isFunction=Pp;function bI(t){return t===null||typeof t=="boolean"||typeof t=="number"||typeof t=="string"||typeof t=="symbol"||typeof t=="undefined"}ot.isPrimitive=bI;ot.isBuffer=cj();function Qm(t){return Object.prototype.toString.call(t)}function $m(t){return t<10?"0"+t.toString(10):t.toString(10)}var gI=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function jI(){var t=new Date,e=[$m(t.getHours()),$m(t.getMinutes()),$m(t.getSeconds())].join(":");return[t.getDate(),gI[t.getMonth()],e].join(" ")}ot.log=function(){console.log("%s - %s",jI(),ot.format.apply(ot,arguments))};ot.inherits=mj();ot._extend=function(t,e){if(!e||!Wo(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t};function bj(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var so=typeof Symbol!="undefined"?Symbol("util.promisify.custom"):void 0;ot.promisify=function(e){if(typeof e!="function")throw new TypeError('The "original" argument must be of type Function');if(so&&e[so]){var r=e[so];if(typeof r!="function")throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(r,so,{value:r,enumerable:!1,writable:!1,configurable:!0}),r}function r(){for(var n,i,f=new Promise(function(l,p){n=l,i=p}),o=[],s=0;s<arguments.length;s++)o.push(arguments[s]);o.push(function(l,p){l?i(l):n(p)});try{e.apply(this,o)}catch(l){i(l)}return f}return Object.setPrototypeOf(r,Object.getPrototypeOf(e)),so&&Object.defineProperty(r,so,{value:r,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(r,dj(e))};ot.promisify.custom=so;function yI(t,e){if(!t){var r=new Error("Promise was rejected with a falsy value");r.reason=t,t=r}return e(t)}function vI(t){if(typeof t!="function")throw new TypeError('The "original" argument must be of type Function');function e(){for(var r=[],n=0;n<arguments.length;n++)r.push(arguments[n]);var i=r.pop();if(typeof i!="function")throw new TypeError("The last argument must be of type Function");var f=this,o=function(){return i.apply(f,arguments)};t.apply(this,r).then(function(s){process.nextTick(o,null,s)},function(s){process.nextTick(yI,s,o)})}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),Object.defineProperties(e,dj(t)),e}ot.callbackify=vI});var bf=he((fi,ed)=>{var Mp=Ai(),cl=fi.Type={STOP:0,VOID:1,BOOL:2,BYTE:3,I08:3,DOUBLE:4,I16:6,I32:8,I64:10,STRING:11,UTF7:11,STRUCT:12,MAP:13,SET:14,LIST:15,UTF8:16,UTF16:17};fi.MessageType={CALL:1,REPLY:2,EXCEPTION:3,ONEWAY:4};fi.TException=Up;function Up(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}Mp.inherits(Up,Error);var _I=fi.TApplicationExceptionType={UNKNOWN:0,UNKNOWN_METHOD:1,INVALID_MESSAGE_TYPE:2,WRONG_METHOD_NAME:3,BAD_SEQUENCE_ID:4,MISSING_RESULT:5,INTERNAL_ERROR:6,PROTOCOL_ERROR:7,INVALID_TRANSFORM:8,INVALID_PROTOCOL:9,UNSUPPORTED_CLIENT_TYPE:10};fi.TApplicationException=Lp;function Lp(t,e){Up.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.type=t||_I.UNKNOWN,this.name=this.constructor.name,this.message=e}Mp.inherits(Lp,Up);Lp.prototype.read=function(t){for(var e,r=t.readStructBegin("TApplicationException");r=t.readFieldBegin(),r.ftype!=cl.STOP;){switch(r.fid){case 1:r.ftype==cl.STRING?(r=t.readString(),this.message=r):r=t.skip(r.ftype);break;case 2:r.ftype==cl.I32?(r=t.readI32(),this.type=r):r=t.skip(r.ftype);break;default:r=t.skip(r.ftype);break}t.readFieldEnd()}t.readStructEnd()};Lp.prototype.write=function(t){t.writeStructBegin("TApplicationException"),this.message&&(t.writeFieldBegin("message",cl.STRING,1),t.writeString(this.message),t.writeFieldEnd()),this.code&&(t.writeFieldBegin("type",cl.I32,2),t.writeI32(this.code),t.writeFieldEnd()),t.writeFieldStop(),t.writeStructEnd()};var BN=fi.TProtocolExceptionType={UNKNOWN:0,INVALID_DATA:1,NEGATIVE_SIZE:2,SIZE_LIMIT:3,BAD_VERSION:4,NOT_IMPLEMENTED:5,DEPTH_LIMIT:6};fi.TProtocolException=gj;function gj(t,e){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.type=t,this.message=e}Mp.inherits(gj,Error);fi.objectLength=function(t){return Object.keys(t).length};fi.inherits=function(t,e){Mp.inherits(t,e)};var Cp,Vp;Cp=function(t,e){if(!t)return t;var r;e.shift===void 0?r=e:r=e[0];var n=r,i=t.length,f=[],o,s;for(o=0;o<i;o++)s=t[o],r===null?f.push(s):r===Vp||r===Cp?f.push(r(s,e.slice(1))):f.push(new n(s));return f};Vp=function(t,e){if(!t)return t;var r;e.shift===void 0?r=e:r=e[0];var n=r,i={},f;for(var o in t)t.hasOwnProperty(o)&&(f=t[o],r===null?i[o]=f:r===Vp||r===Cp?i[o]=r(f,e.slice(1)):i[o]=new n(f));return i};ed.exports.copyMap=Vp;ed.exports.copyList=Cp});var yj=he((IN,jj)=>{var Yo=null;typeof WebSocket!="undefined"?Yo=WebSocket:typeof MozWebSocket!="undefined"?Yo=MozWebSocket:typeof global!="undefined"?Yo=global.WebSocket||global.MozWebSocket:typeof window!="undefined"?Yo=window.WebSocket||window.MozWebSocket:typeof self!="undefined"&&(Yo=self.WebSocket||self.MozWebSocket);jj.exports=Yo});var rd=he((SN,td)=>{"use strict";var Ko=typeof Reflect=="object"?Reflect:null,vj=Ko&&typeof Ko.apply=="function"?Ko.apply:function(e,r,n){return Function.prototype.apply.call(e,r,n)},Wp;Ko&&typeof Ko.ownKeys=="function"?Wp=Ko.ownKeys:Object.getOwnPropertySymbols?Wp=function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:Wp=function(e){return Object.getOwnPropertyNames(e)};function qI(t){console&&console.warn&&console.warn(t)}var _j=Number.isNaN||function(e){return e!==e};function ht(){ht.init.call(this)}td.exports=ht;td.exports.once=II;ht.EventEmitter=ht;ht.prototype._events=void 0;ht.prototype._eventsCount=0;ht.prototype._maxListeners=void 0;var qj=10;function Yp(t){if(typeof t!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}Object.defineProperty(ht,"defaultMaxListeners",{enumerable:!0,get:function(){return qj},set:function(t){if(typeof t!="number"||t<0||_j(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");qj=t}});ht.init=function(){(this._events===void 0||this._events===Object.getPrototypeOf(this)._events)&&(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0};ht.prototype.setMaxListeners=function(e){if(typeof e!="number"||e<0||_j(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this};function kj(t){return t._maxListeners===void 0?ht.defaultMaxListeners:t._maxListeners}ht.prototype.getMaxListeners=function(){return kj(this)};ht.prototype.emit=function(e){for(var r=[],n=1;n<arguments.length;n++)r.push(arguments[n]);var i=e==="error",f=this._events;if(f!==void 0)i=i&&f.error===void 0;else if(!i)return!1;if(i){var o;if(r.length>0&&(o=r[0]),o instanceof Error)throw o;var s=new Error("Unhandled error."+(o?" ("+o.message+")":""));throw s.context=o,s}var l=f[e];if(l===void 0)return!1;if(typeof l=="function")vj(l,this,r);else for(var p=l.length,u=xj(l,p),n=0;n<p;++n)vj(u[n],this,r);return!0};function Tj(t,e,r,n){var i,f,o;if(Yp(r),f=t._events,f===void 0?(f=t._events=Object.create(null),t._eventsCount=0):(f.newListener!==void 0&&(t.emit("newListener",e,r.listener?r.listener:r),f=t._events),o=f[e]),o===void 0)o=f[e]=r,++t._eventsCount;else if(typeof o=="function"?o=f[e]=n?[r,o]:[o,r]:n?o.unshift(r):o.push(r),i=kj(t),i>0&&o.length>i&&!o.warned){o.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+o.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=t,s.type=e,s.count=o.length,qI(s)}return t}ht.prototype.addListener=function(e,r){return Tj(this,e,r,!1)};ht.prototype.on=ht.prototype.addListener;ht.prototype.prependListener=function(e,r){return Tj(this,e,r,!0)};function kI(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,arguments.length===0?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function Bj(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},i=kI.bind(n);return i.listener=r,n.wrapFn=i,i}ht.prototype.once=function(e,r){return Yp(r),this.on(e,Bj(this,e,r)),this};ht.prototype.prependOnceListener=function(e,r){return Yp(r),this.prependListener(e,Bj(this,e,r)),this};ht.prototype.removeListener=function(e,r){var n,i,f,o,s;if(Yp(r),i=this._events,i===void 0)return this;if(n=i[e],n===void 0)return this;if(n===r||n.listener===r)--this._eventsCount==0?this._events=Object.create(null):(delete i[e],i.removeListener&&this.emit("removeListener",e,n.listener||r));else if(typeof n!="function"){for(f=-1,o=n.length-1;o>=0;o--)if(n[o]===r||n[o].listener===r){s=n[o].listener,f=o;break}if(f<0)return this;f===0?n.shift():TI(n,f),n.length===1&&(i[e]=n[0]),i.removeListener!==void 0&&this.emit("removeListener",e,s||r)}return this};ht.prototype.off=ht.prototype.removeListener;ht.prototype.removeAllListeners=function(e){var r,n,i;if(n=this._events,n===void 0)return this;if(n.removeListener===void 0)return arguments.length===0?(this._events=Object.create(null),this._eventsCount=0):n[e]!==void 0&&(--this._eventsCount==0?this._events=Object.create(null):delete n[e]),this;if(arguments.length===0){var f=Object.keys(n),o;for(i=0;i<f.length;++i)o=f[i],o!=="removeListener"&&this.removeAllListeners(o);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(r=n[e],typeof r=="function")this.removeListener(e,r);else if(r!==void 0)for(i=r.length-1;i>=0;i--)this.removeListener(e,r[i]);return this};function Ij(t,e,r){var n=t._events;if(n===void 0)return[];var i=n[e];return i===void 0?[]:typeof i=="function"?r?[i.listener||i]:[i]:r?BI(i):xj(i,i.length)}ht.prototype.listeners=function(e){return Ij(this,e,!0)};ht.prototype.rawListeners=function(e){return Ij(this,e,!1)};ht.listenerCount=function(t,e){return typeof t.listenerCount=="function"?t.listenerCount(e):Sj.call(t,e)};ht.prototype.listenerCount=Sj;function Sj(t){var e=this._events;if(e!==void 0){var r=e[t];if(typeof r=="function")return 1;if(r!==void 0)return r.length}return 0}ht.prototype.eventNames=function(){return this._eventsCount>0?Wp(this._events):[]};function xj(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}function TI(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function BI(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}function II(t,e){return new Promise(function(r,n){function i(o){t.removeListener(e,f),n(o)}function f(){typeof t.removeListener=="function"&&t.removeListener("error",i),r([].slice.call(arguments))}Ej(t,e,f,{once:!0}),e!=="error"&&SI(t,i,{once:!0})})}function SI(t,e,r){typeof t.on=="function"&&Ej(t,"error",e,r)}function Ej(t,e,r,n){if(typeof t.on=="function")n.once?t.once(e,r):t.on(e,r);else if(typeof t.addEventListener=="function")t.addEventListener(e,function i(f){n.once&&t.removeEventListener(e,i),r(f)});else throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t)}});var Kp=he(gf=>{var nd=Math.pow(2,8),xI=Math.pow(2,16),Aj=Math.pow(2,24),Oj=Math.pow(2,32),EI=Math.pow(2,40),AI=Math.pow(2,48),id=Math.pow(2,52),OI=Math.pow(2,1022);gf.readByte=function(t){return t>127?t-256:t};gf.readI16=function(t,e){e=e||0;var r=t[e+1];return r+=t[e]<<8,t[e]&128&&(r-=xI),r};gf.readI32=function(t,e){e=e||0;var r=t[e+3];return r+=t[e+2]<<8,r+=t[e+1]<<16,r+=t[e]*Aj,t[e]&128&&(r-=Oj),r};gf.writeI16=function(t,e){return t[1]=e&255,e>>=8,t[0]=e&255,t};gf.writeI32=function(t,e){return t[3]=e&255,e>>=8,t[2]=e&255,e>>=8,t[1]=e&255,e>>=8,t[0]=e&255,t};gf.readDouble=function(t,e){e=e||0;var r=t[e]&128,n=(t[e+1]&240)>>4;n+=(t[e]&127)<<4;var i=t[e+7];switch(i+=t[e+6]<<8,i+=t[e+5]<<16,i+=t[e+4]*Aj,i+=t[e+3]*Oj,i+=t[e+2]*EI,i+=(t[e+1]&15)*AI,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=id,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};gf.writeDouble=function(t,e){var r,n,i;return t[0]=e<0?128:0,e=Math.abs(e),e!==e?(r=2251799813685248,n=2047):e===1/0?(r=0,n=2047):(n=Math.floor(Math.log(e)/Math.LN2),i=Math.pow(2,-n),e*i<1&&(n--,i*=2),n+1023>=2047?(r=0,n=2047):n+1023>=1?(r=(e*i-1)*id,n+=1023):(r=e*OI*id,n=0)),t[1]=n<<4&240,t[0]|=n>>4&127,t[7]=r&255,r=Math.floor(r/nd),t[6]=r&255,r=Math.floor(r/nd),t[5]=r&255,r=Math.floor(r/nd),t[4]=r&255,r>>=8,t[3]=r&255,r>>=8,t[2]=r&255,r>>=8,t[1]|=r&15,t}});var lo=he((EN,Hj)=>{var NI=Ai();Hj.exports=Nj;function Nj(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}NI.inherits(Nj,Error)});var Jp=he(Oi=>{var HI=Ai(),Go=function(){},Rj=console.log,Gp="error";function ml(t){return function(){var e=["thrift: ["+t+"] "].concat(Array.from(arguments));return Rj(HI.format.apply(null,e))}}var fd=Go,od=Go,sd=Go,ld=Go,ad=Go;Oi.setLogFunc=function(t){Rj=t};var RI=Oi.setLogLevel=function(t){switch(fd=od=sd=ld=ad=Go,Gp=t,Gp){case"trace":fd=ml("TRACE");case"debug":od=ml("DEBUG");case"error":sd=ml("ERROR");case"warning":ld=ml("WARN");case"info":ad=ml("INFO")}};RI(Gp);Oi.getLogLevel=function(){return Gp};Oi.trace=function(){return fd.apply(null,arguments)};Oi.debug=function(){return od.apply(null,arguments)};Oi.error=function(){return sd.apply(null,arguments)};Oi.warning=function(){return ld.apply(null,arguments)};Oi.info=function(){return ad.apply(null,arguments)}});var cd=he((ON,Dj)=>{var DI=Jp(),Ni=_n(),Ft=bf(),vt=Ft.Type;Dj.exports=J;var pd=Math.pow(2,8),zI=Math.pow(2,24),FI=Math.pow(2,32),PI=Math.pow(2,40),MI=Math.pow(2,48),ud=Math.pow(2,52),UI=Math.pow(2,1022);function J(t){this.trans=t,this.lastField_=[],this.lastFieldId_=0,this.string_limit_=0,this.string_buf_=null,this.string_buf_size_=0,this.container_limit_=0,this.booleanField_={name:null,hasBoolValue:!1},this.boolValue_={hasBoolValue:!1,boolValue:!1}}J.PROTOCOL_ID=-126;J.VERSION_N=1;J.VERSION_MASK=31;J.TYPE_MASK=-32;J.TYPE_BITS=7;J.TYPE_SHIFT_AMOUNT=5;J.Types={CT_STOP:0,CT_BOOLEAN_TRUE:1,CT_BOOLEAN_FALSE:2,CT_BYTE:3,CT_I16:4,CT_I32:5,CT_I64:6,CT_DOUBLE:7,CT_BINARY:8,CT_LIST:9,CT_SET:10,CT_MAP:11,CT_STRUCT:12};J.TTypeToCType=[J.Types.CT_STOP,0,J.Types.CT_BOOLEAN_TRUE,J.Types.CT_BYTE,J.Types.CT_DOUBLE,0,J.Types.CT_I16,0,J.Types.CT_I32,0,J.Types.CT_I64,J.Types.CT_BINARY,J.Types.CT_STRUCT,J.Types.CT_MAP,J.Types.CT_SET,J.Types.CT_LIST];J.prototype.getTransport=function(){return this.trans};J.prototype.getCompactType=function(t){return J.TTypeToCType[t]};J.prototype.getTType=function(t){switch(t){case vt.STOP:return vt.STOP;case J.Types.CT_BOOLEAN_FALSE:case J.Types.CT_BOOLEAN_TRUE:return vt.BOOL;case J.Types.CT_BYTE:return vt.BYTE;case J.Types.CT_I16:return vt.I16;case J.Types.CT_I32:return vt.I32;case J.Types.CT_I64:return vt.I64;case J.Types.CT_DOUBLE:return vt.DOUBLE;case J.Types.CT_BINARY:return vt.STRING;case J.Types.CT_LIST:return vt.LIST;case J.Types.CT_SET:return vt.SET;case J.Types.CT_MAP:return vt.MAP;case J.Types.CT_STRUCT:return vt.STRUCT;default:throw new Ft.TProtocolException(Ft.TProtocolExceptionType.INVALID_DATA,"Unknown type: "+t)}return vt.STOP};J.prototype.flush=function(){return this.trans.flush()};J.prototype.writeMessageBegin=function(t,e,r){this.writeByte(J.PROTOCOL_ID),this.writeByte(J.VERSION_N&J.VERSION_MASK|e<<J.TYPE_SHIFT_AMOUNT&J.TYPE_MASK),this.writeVarint32(r),this.writeString(t),this._seqid?DI.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};J.prototype.writeMessageEnd=function(){};J.prototype.writeStructBegin=function(t){this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0};J.prototype.writeStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};J.prototype.writeFieldBegin=function(t,e,r){if(e!=vt.BOOL)return this.writeFieldBeginInternal(t,e,r,-1);this.booleanField_.name=t,this.booleanField_.fieldType=e,this.booleanField_.fieldId=r};J.prototype.writeFieldEnd=function(){};J.prototype.writeFieldStop=function(){this.writeByte(J.Types.CT_STOP)};J.prototype.writeMapBegin=function(t,e,r){r===0?this.writeByte(0):(this.writeVarint32(r),this.writeByte(this.getCompactType(t)<<4|this.getCompactType(e)))};J.prototype.writeMapEnd=function(){};J.prototype.writeListBegin=function(t,e){this.writeCollectionBegin(t,e)};J.prototype.writeListEnd=function(){};J.prototype.writeSetBegin=function(t,e){this.writeCollectionBegin(t,e)};J.prototype.writeSetEnd=function(){};J.prototype.writeBool=function(t){this.booleanField_.name!==null?(this.writeFieldBeginInternal(this.booleanField_.name,this.booleanField_.fieldType,this.booleanField_.fieldId,t?J.Types.CT_BOOLEAN_TRUE:J.Types.CT_BOOLEAN_FALSE),this.booleanField_.name=null):this.writeByte(t?J.Types.CT_BOOLEAN_TRUE:J.Types.CT_BOOLEAN_FALSE)};J.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};J.prototype.writeI16=function(t){this.writeVarint32(this.i32ToZigzag(t))};J.prototype.writeI32=function(t){this.writeVarint32(this.i32ToZigzag(t))};J.prototype.writeI64=function(t){this.writeVarint64(this.i64ToZigzag(t))};J.prototype.writeDouble=function(t){var e=new Buffer(8),r,n,i;e[7]=t<0?128:0,t=Math.abs(t),t!==t?(r=2251799813685248,n=2047):t===1/0?(r=0,n=2047):(n=Math.floor(Math.log(t)/Math.LN2),i=Math.pow(2,-n),t*i<1&&(n--,i*=2),n+1023>=2047?(r=0,n=2047):n+1023>=1?(r=(t*i-1)*ud,n+=1023):(r=t*UI*ud,n=0)),e[6]=n<<4&240,e[7]|=n>>4&127,e[0]=r&255,r=Math.floor(r/pd),e[1]=r&255,r=Math.floor(r/pd),e[2]=r&255,r=Math.floor(r/pd),e[3]=r&255,r>>=8,e[4]=r&255,r>>=8,e[5]=r&255,r>>=8,e[6]|=r&15,this.trans.write(e)};J.prototype.writeStringOrBinary=function(t,e,r){if(typeof r=="string")this.writeVarint32(Buffer.byteLength(r,e)),this.trans.write(new Buffer(r,e));else if(r instanceof Buffer||Object.prototype.toString.call(r)=="[object Uint8Array]")this.writeVarint32(r.length),this.trans.write(r);else throw new Error(t+" called without a string/Buffer argument: "+r)};J.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};J.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};J.prototype.writeFieldBeginInternal=function(t,e,r,n){var i=n==-1?this.getCompactType(e):n;r>this.lastFieldId_&&r-this.lastFieldId_<=15?this.writeByte(r-this.lastFieldId_<<4|i):(this.writeByte(i),this.writeI16(r)),this.lastFieldId_=r};J.prototype.writeCollectionBegin=function(t,e){e<=14?this.writeByte(e<<4|this.getCompactType(t)):(this.writeByte(240|this.getCompactType(t)),this.writeVarint32(e))};J.prototype.writeVarint32=function(t){for(var e=new Buffer(5),r=0;;)if((t&~127)==0){e[r++]=t;break}else e[r++]=t&127|128,t=t>>>7;var n=new Buffer(r);e.copy(n,0,0,r),this.trans.write(n)};J.prototype.writeVarint64=function(t){if(typeof t=="number"&&(t=new Ni(t)),!(t instanceof Ni))throw new Ft.TProtocolException(Ft.TProtocolExceptionType.INVALID_DATA,"Expected Int64 or Number, found: "+t);for(var e=new Buffer(10),r=0,n=t.buffer.readUInt32BE(0,!0),i=t.buffer.readUInt32BE(4,!0),f=0;;)if((i&~127)==0&&n===0){e[r++]=i;break}else e[r++]=i&127|128,f=n<<25,i=i>>>7,n=n>>>7,i=i|f;var o=new Buffer(r);e.copy(o,0,0,r),this.trans.write(o)};J.prototype.i64ToZigzag=function(t){if(typeof t=="string"?t=new Ni(parseInt(t,10)):typeof t=="number"&&(t=new Ni(t)),!(t instanceof Ni))throw new Ft.TProtocolException(Ft.TProtocolExceptionType.INVALID_DATA,"Expected Int64 or Number, found: "+t);var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=e>>>31;return e=(e<<1|r>>>31)^(n?4294967295:0),r=r<<1^(n?4294967295:0),new Ni(e,r)};J.prototype.i32ToZigzag=function(t){return t<<1^(t&2147483648?4294967295:0)};J.prototype.readMessageBegin=function(){var t=this.trans.readByte();if(t!=J.PROTOCOL_ID)throw new Ft.TProtocolException(Ft.TProtocolExceptionType.BAD_VERSION,"Bad protocol identifier "+t);var e=this.trans.readByte(),r=e&J.VERSION_MASK;if(r!=J.VERSION_N)throw new Ft.TProtocolException(Ft.TProtocolExceptionType.BAD_VERSION,"Bad protocol version "+r);var n=e>>J.TYPE_SHIFT_AMOUNT&J.TYPE_BITS,i=this.readVarint32(),f=this.readString();return{fname:f,mtype:n,rseqid:i}};J.prototype.readMessageEnd=function(){};J.prototype.readStructBegin=function(){return this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0,{fname:""}};J.prototype.readStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};J.prototype.readFieldBegin=function(){var t=0,e=this.trans.readByte(e),r=e&15;if(r==J.Types.CT_STOP)return{fname:null,ftype:Ft.Type.STOP,fid:0};var n=(e&240)>>>4;n===0?t=this.readI16():t=this.lastFieldId_+n;var i=this.getTType(r);return(r==J.Types.CT_BOOLEAN_TRUE||r==J.Types.CT_BOOLEAN_FALSE)&&(this.boolValue_.hasBoolValue=!0,this.boolValue_.boolValue=r==J.Types.CT_BOOLEAN_TRUE),this.lastFieldId_=t,{fname:null,ftype:i,fid:t}};J.prototype.readFieldEnd=function(){};J.prototype.readMapBegin=function(){var t=this.readVarint32();if(t<0)throw new Ft.TProtocolException(Ft.TProtocolExceptionType.NEGATIVE_SIZE,"Negative map size");var e=0;t!==0&&(e=this.trans.readByte());var r=this.getTType((e&240)>>>4),n=this.getTType(e&15);return{ktype:r,vtype:n,size:t}};J.prototype.readMapEnd=function(){};J.prototype.readListBegin=function(){var t=this.trans.readByte(),e=t>>>4&15;if(e==15&&(e=this.readVarint32()),e<0)throw new Ft.TProtocolException(Ft.TProtocolExceptionType.NEGATIVE_SIZE,"Negative list size");var r=this.getTType(t&15);return{etype:r,size:e}};J.prototype.readListEnd=function(){};J.prototype.readSetBegin=function(){return this.readListBegin()};J.prototype.readSetEnd=function(){};J.prototype.readBool=function(){var t=!1,e=0;if(this.boolValue_.hasBoolValue===!0)t=this.boolValue_.boolValue,this.boolValue_.hasBoolValue=!1;else{var r=this.trans.readByte();e=r.rsize,t=r.value==J.Types.CT_BOOLEAN_TRUE}return t};J.prototype.readByte=function(){return this.trans.readByte()};J.prototype.readI16=function(){return this.readI32()};J.prototype.readI32=function(){return this.zigzagToI32(this.readVarint32())};J.prototype.readI64=function(){return this.zigzagToI64(this.readVarint64())};J.prototype.readDouble=function(){var t=this.trans.read(8),e=0,r=t[e+7]&128,n=(t[e+6]&240)>>4;n+=(t[e+7]&127)<<4;var i=t[e];switch(i+=t[e+1]<<8,i+=t[e+2]<<16,i+=t[e+3]*zI,i+=t[e+4]*FI,i+=t[e+5]*PI,i+=(t[e+6]&15)*MI,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=ud,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};J.prototype.readBinary=function(){var t=this.readVarint32();if(t===0)return new Buffer(0);if(t<0)throw new Ft.TProtocolException(Ft.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};J.prototype.readString=function(){var t=this.readVarint32();if(t===0)return"";if(t<0)throw new Ft.TProtocolException(Ft.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};J.prototype.readVarint32=function(){return this.readVarint64().toNumber()};J.prototype.readVarint64=function(){for(var t=0,e=0,r=0,n=0;;){var i=this.trans.readByte();if(t++,n<=25?e=e|(i&127)<<n:25<n&&n<32?(e=e|(i&127)<<n,r=r|(i&127)>>>32-n):r=r|(i&127)<<n-32,n+=7,!(i&128))break;if(t>=10)throw new Ft.TProtocolException(Ft.TProtocolExceptionType.INVALID_DATA,"Variable-length int over 10 bytes.")}return new Ni(r,e)};J.prototype.zigzagToI32=function(t){return t>>>1^-1*(t&1)};J.prototype.zigzagToI64=function(t){var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=new Ni(e&0,r&1);n._2scomp();var i=n.buffer.readUInt32BE(0,!0),f=n.buffer.readUInt32BE(4,!0),o=e<<31;return e=e>>>1^i,r=(r>>>1|o)^f,new Ni(e,r)};J.prototype.skip=function(t){switch(t){case vt.BOOL:this.readBool();break;case vt.BYTE:this.readByte();break;case vt.I16:this.readI16();break;case vt.I32:this.readI32();break;case vt.I64:this.readI64();break;case vt.DOUBLE:this.readDouble();break;case vt.STRING:this.readString();break;case vt.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===vt.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case vt.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case vt.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case vt.LIST:for(var o=this.readListBegin(),s=0;s<o.size;++s)this.skip(o.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var wd=he((NN,Uj)=>{var zj=Jp(),md=Kp(),Fj=_n(),Hi=bf(),zr=Hi.Type;Uj.exports=_e;var Pj=-65536,dd=-2147418112,Mj=255;_e.VERSION_MASK=Pj;_e.VERSION_1=dd;_e.TYPE_MASK=Mj;function _e(t,e,r){this.trans=t,this.strictRead=e!==void 0?e:!1,this.strictWrite=r!==void 0?r:!0,this._seqid=null}_e.prototype.flush=function(){return this.trans.flush()};_e.prototype.writeMessageBegin=function(t,e,r){this.strictWrite?(this.writeI32(dd|e),this.writeString(t),this.writeI32(r)):(this.writeString(t),this.writeByte(e),this.writeI32(r)),this._seqid!==null?zj.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};_e.prototype.writeMessageEnd=function(){this._seqid!==null?this._seqid=null:zj.warning("No seqid to unset")};_e.prototype.writeStructBegin=function(t){};_e.prototype.writeStructEnd=function(){};_e.prototype.writeFieldBegin=function(t,e,r){this.writeByte(e),this.writeI16(r)};_e.prototype.writeFieldEnd=function(){};_e.prototype.writeFieldStop=function(){this.writeByte(zr.STOP)};_e.prototype.writeMapBegin=function(t,e,r){this.writeByte(t),this.writeByte(e),this.writeI32(r)};_e.prototype.writeMapEnd=function(){};_e.prototype.writeListBegin=function(t,e){this.writeByte(t),this.writeI32(e)};_e.prototype.writeListEnd=function(){};_e.prototype.writeSetBegin=function(t,e){this.writeByte(t),this.writeI32(e)};_e.prototype.writeSetEnd=function(){};_e.prototype.writeBool=function(t){t?this.writeByte(1):this.writeByte(0)};_e.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};_e.prototype.writeI16=function(t){this.trans.write(md.writeI16(new Buffer(2),t))};_e.prototype.writeI32=function(t){this.trans.write(md.writeI32(new Buffer(4),t))};_e.prototype.writeI64=function(t){t.buffer?this.trans.write(t.buffer):this.trans.write(new Fj(t).buffer)};_e.prototype.writeDouble=function(t){this.trans.write(md.writeDouble(new Buffer(8),t))};_e.prototype.writeStringOrBinary=function(t,e,r){if(typeof r=="string")this.writeI32(Buffer.byteLength(r,e)),this.trans.write(new Buffer(r,e));else if(r instanceof Buffer||Object.prototype.toString.call(r)=="[object Uint8Array]")this.writeI32(r.length),this.trans.write(r);else throw new Error(t+" called without a string/Buffer argument: "+r)};_e.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};_e.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};_e.prototype.readMessageBegin=function(){var t=this.readI32(),e,r,n;if(t<0){var i=t&Pj;if(i!=dd)throw new Hi.TProtocolException(Hi.TProtocolExceptionType.BAD_VERSION,"Bad version in readMessageBegin: "+t);e=t&Mj,r=this.readString(),n=this.readI32()}else{if(this.strictRead)throw new Hi.TProtocolException(Hi.TProtocolExceptionType.BAD_VERSION,"No protocol version header");r=this.trans.read(t),e=this.readByte(),n=this.readI32()}return{fname:r,mtype:e,rseqid:n}};_e.prototype.readMessageEnd=function(){};_e.prototype.readStructBegin=function(){return{fname:""}};_e.prototype.readStructEnd=function(){};_e.prototype.readFieldBegin=function(){var t=this.readByte();if(t==zr.STOP)return{fname:null,ftype:t,fid:0};var e=this.readI16();return{fname:null,ftype:t,fid:e}};_e.prototype.readFieldEnd=function(){};_e.prototype.readMapBegin=function(){var t=this.readByte(),e=this.readByte(),r=this.readI32();return{ktype:t,vtype:e,size:r}};_e.prototype.readMapEnd=function(){};_e.prototype.readListBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};_e.prototype.readListEnd=function(){};_e.prototype.readSetBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};_e.prototype.readSetEnd=function(){};_e.prototype.readBool=function(){var t=this.readByte();return t!==0};_e.prototype.readByte=function(){return this.trans.readByte()};_e.prototype.readI16=function(){return this.trans.readI16()};_e.prototype.readI32=function(){return this.trans.readI32()};_e.prototype.readI64=function(){var t=this.trans.read(8);return new Fj(t)};_e.prototype.readDouble=function(){return this.trans.readDouble()};_e.prototype.readBinary=function(){var t=this.readI32();if(t===0)return new Buffer(0);if(t<0)throw new Hi.TProtocolException(Hi.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};_e.prototype.readString=function(){var t=this.readI32();if(t===0)return"";if(t<0)throw new Hi.TProtocolException(Hi.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};_e.prototype.getTransport=function(){return this.trans};_e.prototype.skip=function(t){switch(t){case zr.BOOL:this.readBool();break;case zr.BYTE:this.readByte();break;case zr.I16:this.readI16();break;case zr.I32:this.readI32();break;case zr.I64:this.readI64();break;case zr.DOUBLE:this.readDouble();break;case zr.STRING:this.readString();break;case zr.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===zr.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case zr.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case zr.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case zr.LIST:for(var o=this.readListBegin(),s=0;s<o.size;++s)this.skip(o.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var hd=he((HN,Kj)=>{var LI=Ai(),Zp=cd(),Lj=wd(),CI=lo();function dl(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}LI.inherits(dl,Error);Kj.exports=Yt;var VI=0,WI=1,YI=0,KI=32/8,GI=48/8,JI=64/8,ZI=96/8,Cj=112/8,Vj=4095,Wj=1,XI=1073741823;function Ri(t){var e=wl();this.outputBuffer=null;var r=this;this.transport=new e(null,function(n){r.outputBuffer=n}),this.transport.inBuf=t||Buffer.alloc(0),this.transport.writeCursor=this.transport.inBuf.length,this.protocol=new Zp(this.transport)}Ri.prototype.readVarint32=function(){return this.protocol.readVarint32()};Ri.prototype.writeVarint32=function(t){this.protocol.writeVarint32(t)};Ri.prototype.readString=function(){return this.protocol.readString()};Ri.prototype.writeString=function(t){this.protocol.writeString(t)};Ri.prototype.getOutCount=function(){return this.transport.outCount};Ri.prototype.write=function(t){this.transport.write(t)};Ri.prototype.toBuffer=function(){return this.transport.flush(),this.outputBuffer};Yt.SubprotocolId={BINARY:0,JSON:1,COMPACT:2};function Yt(){this.maxFrameSize=XI,this.protocolId=Yt.SubprotocolId.BINARY,this.rheaders={},this.wheaders={},this.inBuf=Buffer.alloc(0),this.outCount=0,this.flags=null,this.seqid=0,this.shouldWriteHeaders=!0}var Yj=function(t,e){if(typeof t!="string"||typeof e!="string")throw new dl("Header key and values must be strings")},QI=function(t){for(var e=Object.keys(Yt.SubprotocolId),r=0;r<e.length;r++)if(t===Yt.SubprotocolId[e[r]])return!0;throw new Error(t+" is not a valid protocol id")};Yt.prototype.setSeqId=function(t){this.seqid=t};Yt.prototype.getSeqId=function(t){return this.seqid};Yt.prototype.setFlags=function(t){this.flags=t};Yt.prototype.getReadHeaders=function(){return this.rheaders};Yt.prototype.setReadHeader=function(t,e){Yj(t,e),this.rheaders[t]=e};Yt.prototype.clearReadHeaders=function(){this.rheaders={}};Yt.prototype.getWriteHeaders=function(){return this.wheaders};Yt.prototype.setWriteHeader=function(t,e){Yj(t,e),this.wheaders[t]=e};Yt.prototype.clearWriteHeaders=function(){this.wheaders={}};Yt.prototype.setMaxFrameSize=function(t){this.maxFrameSize=t};Yt.prototype.setProtocolId=function(t){QI(t),this.protocolId=t};Yt.prototype.getProtocolId=function(){return this.protocolId};var $I=function(t){var e=t.readInt32BE();return(e&Lj.VERSION_MASK)===Lj.VERSION_1},eS=function(t){var e=t.readInt8(VI),r=t.readInt8(WI);return e===Zp.PROTOCOL_ID&&(r&Zp.VERSION_MASK)===Zp.VERSION_N};Yt.prototype.readHeaders=function(){var t=this.inBuf,e=!1;if($I(t)&&(this.setProtocolId(Yt.SubprotocolId.BINARY),e=!0),eS(t)&&(this.setProtocolId(Yt.SubprotocolId.COMPACT),e=!0),e){this.shouldWriteHeaders=!1;return}var r=t.readInt32BE(YI);if(r>this.maxFrameSize)throw new dl("Frame exceeds maximum frame size");var n=t.readInt16BE(KI);if(this.shouldWriteHeaders=n===Vj,!!this.shouldWriteHeaders){this.setFlags(t.readInt16BE(GI)),this.setSeqId(t.readInt32BE(JI));var i=t.readInt16BE(ZI)*4,f=Cj+i;if(f>t.length)throw new dl("Header size is greater than frame size");var o=Buffer.alloc(i);t.copy(o,0,Cj,f);var s=new Ri(o);this.setProtocolId(s.readVarint32());var l=s.readVarint32();if(l>0)throw new dl("Transforms are not yet supported");for(;;)try{var p=s.readVarint32();if(p!==Wj)break;for(var u=s.readVarint32(),b=0;b<u;b++){var c=s.readString(),h=s.readString();this.setReadHeader(c,h)}}catch(T){if(T instanceof CI)break;throw T}return this.read(f),this.getReadHeaders()}};Yt.prototype.writeHeaders=function(){if(!!this.shouldWriteHeaders){var t=this.getWriteHeaders(),e=new Ri;e.writeVarint32(this.protocolId),e.writeVarint32(0);var r=Object.keys(t);if(r.length>0){e.writeVarint32(Wj),e.writeVarint32(r.length);for(var n=0;n<r.length;n++){var i=r[n],f=t[i];e.writeString(i),e.writeString(f)}}var o=e.getOutCount(),s=(4-o%4)%4,l=Buffer.alloc(2);l.writeInt16BE(Math.floor((o+s)/4));var p=Buffer.alloc(s);p.fill(0),e.write(p);var u=e.toBuffer(),b=Buffer.alloc(4);b.writeInt32BE(10+this.outCount+u.length);var c=Buffer.alloc(2);c.writeInt16BE(Vj);var h=Buffer.alloc(2);h.writeInt16BE(0);var T=Buffer.alloc(4);T.writeInt32BE(this.getSeqId());var y=Buffer.concat([b,c,h,T,l,u]);this.outBuffers.unshift(y),this.outCount+=y.length}}});var wl=he((RN,Gj)=>{var Xp=Kp(),tS=lo(),rS=hd();Gj.exports=Pt;function Pt(t,e){this.defaultReadBufferSize=1024,this.writeBufferSize=512,this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0,this.onFlush=e}Pt.prototype=new rS;Pt.prototype.reset=function(){this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0};Pt.receiver=function(t,e){var r=new Pt;return function(n){if(r.writeCursor+n.length>r.inBuf.length){var i=new Buffer(r.writeCursor+n.length);r.inBuf.copy(i,0,0,r.writeCursor),r.inBuf=i}n.copy(r.inBuf,r.writeCursor,0),r.writeCursor+=n.length,t(r,e)}};Pt.prototype.commitPosition=function(){var t=this.writeCursor-this.readCursor,e=t*2>this.defaultReadBufferSize?t*2:this.defaultReadBufferSize,r=new Buffer(e);t>0&&this.inBuf.copy(r,0,this.readCursor,this.writeCursor),this.readCursor=0,this.writeCursor=t,this.inBuf=r};Pt.prototype.rollbackPosition=function(){this.readCursor=0};Pt.prototype.isOpen=function(){return!0};Pt.prototype.open=function(){};Pt.prototype.close=function(){};Pt.prototype.setCurrSeqId=function(t){this._seqid=t};Pt.prototype.ensureAvailable=function(t){if(this.readCursor+t>this.writeCursor)throw new tS};Pt.prototype.read=function(t){this.ensureAvailable(t);var e=new Buffer(t);return this.inBuf.copy(e,0,this.readCursor,this.readCursor+t),this.readCursor+=t,e};Pt.prototype.readByte=function(){return this.ensureAvailable(1),Xp.readByte(this.inBuf[this.readCursor++])};Pt.prototype.readI16=function(){this.ensureAvailable(2);var t=Xp.readI16(this.inBuf,this.readCursor);return this.readCursor+=2,t};Pt.prototype.readI32=function(){this.ensureAvailable(4);var t=Xp.readI32(this.inBuf,this.readCursor);return this.readCursor+=4,t};Pt.prototype.readDouble=function(){this.ensureAvailable(8);var t=Xp.readDouble(this.inBuf,this.readCursor);return this.readCursor+=8,t};Pt.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readCursor,this.readCursor+t);return this.readCursor+=t,e};Pt.prototype.borrow=function(){var t={buf:this.inBuf,readIndex:this.readCursor,writeIndex:this.writeCursor};return t};Pt.prototype.consume=function(t){this.readCursor+=t};Pt.prototype.write=function(t){typeof t=="string"&&(t=new Buffer(t,"utf8")),this.outBuffers.push(t),this.outCount+=t.length};Pt.prototype.flush=function(){var t=this._seqid;if(this._seqid=null,!(this.outCount<1)){var e=new Buffer(this.outCount),r=0;this.outBuffers.forEach(function(n){n.copy(e,r,0),r+=n.length}),this.onFlush&&this.onFlush(e,t),this.outBuffers=[],this.outCount=0}}});var gd=he((DN,$j)=>{var Jj=_n(),Zj=$j.exports={},nS=Math.pow(2,24),Xj=Math.pow(2,31),bd=Math.pow(2,32),Qj=Math.pow(10,11);Zj.toDecimalString=function(t){var e=t.buffer,r=t.offset;if(!e[r]&&!(e[r+1]&224)||!~e[r]&&!~(e[r+1]&224))return t.toString();var n=e[r]&128;if(n){for(var i=!1,f=new Buffer(8),o=7;o>=0;--o)f[o]=~e[r+o]+(i?0:1)&255,i|=e[r+o];e=f}var s=e[r+1]+(e[r]<<8),l=e[r+7]+(e[r+6]<<8)+(e[r+5]<<16)+e[r+4]*nS+(e[r+3]+(e[r+2]<<8))*bd+s*74976710656,p=Math.floor(l/Qj)+s*2814;return l=("00000000000"+String(l%Qj)).slice(-11),(n?"-":"")+String(p)+l};Zj.fromDecimalString=function(t){var e=t.charAt(0)==="-";if(t.length<(e?17:16))return new Jj(+t);if(t.length>(e?20:19))throw new RangeError("Too many digits for Int64: "+t);var r=+t.slice(e?1:0,-15),n=+t.slice(-15)+r*2764472320,i=Math.floor(n/bd)+r*232830;if(n=n%bd,i>=Xj&&!(e&&i==Xj&&n==0))throw new RangeError("The magnitude is too large for Int64.");return e&&(i=~i,n===0?i=i+1&4294967295:n=~n+1,i=2147483648|i),new Jj(i,n)}});var ry=he((PN,ty)=>{var ey=_n(),zN=gd(),FN=ty.exports=function(){"use strict";var t,e,r={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:`
11
+ `,r:"\r",t:" "},n,i=function(h){throw new SyntaxError(h)},f=function(h){return h&&h!==e&&i("Expected '"+h+"' instead of '"+e+"'"),e=n.charAt(t),t+=1,e},o=function(){var h,T="";for(e==="-"&&(T="-",f("-"));e>="0"&&e<="9";)T+=e,f();if(e===".")for(T+=".";f()&&e>="0"&&e<="9";)T+=e;if(e==="e"||e==="E")for(T+=e,f(),(e==="-"||e==="+")&&(T+=e,f());e>="0"&&e<="9";)T+=e,f();if(h=+T,!isFinite(h))i("Bad number");else return h>=ey.MAX_INT||h<=ey.MIN_INT?T:h},s=function(){var h,T,y="",N;if(e==='"')for(;f();){if(e==='"')return f(),y;if(e==="\\")if(f(),e==="u"){for(N=0,T=0;T<4&&(h=parseInt(f(),16),!!isFinite(h));T+=1)N=N*16+h;y+=String.fromCharCode(N)}else if(typeof r[e]=="string")y+=r[e];else break;else y+=e}i("Bad string")},l=function(){for(;e&&e<=" ";)f()},p=function(){switch(e){case"t":return f("t"),f("r"),f("u"),f("e"),!0;case"f":return f("f"),f("a"),f("l"),f("s"),f("e"),!1;case"n":return f("n"),f("u"),f("l"),f("l"),null}i("Unexpected '"+e+"'")},u,b=function(){var h=[];if(e==="["){if(f("["),l(),e==="]")return f("]"),h;for(;e;){if(h.push(u()),l(),e==="]")return f("]"),h;f(","),l()}}i("Bad array")},c=function(){var h,T={};if(e==="{"){if(f("{"),l(),e==="}")return f("}"),T;for(;e;){if(h=s(),l(),f(":"),Object.hasOwnProperty.call(T,h)&&i('Duplicate key "'+h+'"'),T[h]=u(),l(),e==="}")return f("}"),T;f(","),l()}}i("Bad object")};return u=function(){switch(l(),e){case"{":return c();case"[":return b();case'"':return s();case"-":return o();default:return e>="0"&&e<="9"?o():p()}},function(h){var T;return n=h,t=0,e=" ",T=u(),l(),e&&i("Syntax error"),T}}()});var hl=he((UN,fy)=>{var jd=_n(),iS=bf(),rt=iS.Type,MN=Ai(),ny=gd(),fS=ry(),iy=lo();fy.exports=fe;function fe(t){this.tstack=[],this.tpos=[],this.trans=t}fe.Type={};fe.Type[rt.BOOL]='"tf"';fe.Type[rt.BYTE]='"i8"';fe.Type[rt.I16]='"i16"';fe.Type[rt.I32]='"i32"';fe.Type[rt.I64]='"i64"';fe.Type[rt.DOUBLE]='"dbl"';fe.Type[rt.STRUCT]='"rec"';fe.Type[rt.STRING]='"str"';fe.Type[rt.MAP]='"map"';fe.Type[rt.LIST]='"lst"';fe.Type[rt.SET]='"set"';fe.RType={};fe.RType.tf=rt.BOOL;fe.RType.i8=rt.BYTE;fe.RType.i16=rt.I16;fe.RType.i32=rt.I32;fe.RType.i64=rt.I64;fe.RType.dbl=rt.DOUBLE;fe.RType.rec=rt.STRUCT;fe.RType.str=rt.STRING;fe.RType.map=rt.MAP;fe.RType.lst=rt.LIST;fe.RType.set=rt.SET;fe.Version=1;fe.prototype.flush=function(){return this.writeToTransportIfStackIsFlushable(),this.trans.flush()};fe.prototype.writeToTransportIfStackIsFlushable=function(){this.tstack.length===1&&this.trans.write(this.tstack.pop())};fe.prototype.writeMessageBegin=function(t,e,r){this.tstack.push([fe.Version,'"'+t+'"',e,r])};fe.prototype.writeMessageEnd=function(){var t=this.tstack.pop();this.wobj=this.tstack.pop(),this.wobj.push(t),this.wbuf="["+this.wobj.join(",")+"]",this.trans.write(this.wbuf)};fe.prototype.writeStructBegin=function(t){this.tpos.push(this.tstack.length),this.tstack.push({})};fe.prototype.writeStructEnd=function(){var t=this.tpos.pop(),e=this.tstack[t],r="{",n=!0;for(var i in e)n?n=!1:r+=",",r+=i+":"+e[i];r+="}",this.tstack[t]=r,this.writeToTransportIfStackIsFlushable()};fe.prototype.writeFieldBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push({fieldId:'"'+r+'"',fieldType:fe.Type[e]})};fe.prototype.writeFieldEnd=function(){var t=this.tstack.pop(),e=this.tstack.pop();":"+t==":[object Object]"?this.tstack[this.tstack.length-1][e.fieldId]="{"+e.fieldType+":"+JSON.stringify(t)+"}":this.tstack[this.tstack.length-1][e.fieldId]="{"+e.fieldType+":"+t+"}",this.tpos.pop(),this.writeToTransportIfStackIsFlushable()};fe.prototype.writeFieldStop=function(){};fe.prototype.writeMapBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push([fe.Type[t],fe.Type[e],0])};fe.prototype.writeMapEnd=function(){var t=this.tpos.pop();if(t!=this.tstack.length){(this.tstack.length-t-1)%2!=0&&this.tstack.push("");var e=(this.tstack.length-t-1)/2;this.tstack[t][this.tstack[t].length-1]=e;for(var r="}",n=!0;this.tstack.length>t+1;){var i=this.tstack.pop(),f=this.tstack.pop();n?n=!1:r=","+r,isNaN(f)||(f='"'+f+'"'),r=f+":"+i+r}r="{"+r,this.tstack[t].push(r),this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()}};fe.prototype.writeListBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([fe.Type[t],e])};fe.prototype.writeListEnd=function(){for(var t=this.tpos.pop();this.tstack.length>t+1;){var e=this.tstack[t+1];this.tstack.splice(t+1,1),this.tstack[t].push(e)}this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()};fe.prototype.writeSetBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([fe.Type[t],e])};fe.prototype.writeSetEnd=function(){for(var t=this.tpos.pop();this.tstack.length>t+1;){var e=this.tstack[t+1];this.tstack.splice(t+1,1),this.tstack[t].push(e)}this.tstack[t]="["+this.tstack[t].join(",")+"]",this.writeToTransportIfStackIsFlushable()};fe.prototype.writeBool=function(t){this.tstack.push(t?1:0)};fe.prototype.writeByte=function(t){this.tstack.push(t)};fe.prototype.writeI16=function(t){this.tstack.push(t)};fe.prototype.writeI32=function(t){this.tstack.push(t)};fe.prototype.writeI64=function(t){t instanceof jd?this.tstack.push(ny.toDecimalString(t)):this.tstack.push(t)};fe.prototype.writeDouble=function(t){this.tstack.push(t)};fe.prototype.writeString=function(t){if(t===null)this.tstack.push(null);else{if(typeof t=="string")var e=t;else if(t instanceof Buffer)var e=t.toString("utf8");else throw new Error("writeString called without a string/Buffer argument: "+t);for(var r="",n=0;n<e.length;n++){var i=e.charAt(n);i==='"'?r+='\\"':i==="\\"?r+="\\\\":i==="\b"?r+="\\b":i==="\f"?r+="\\f":i===`
12
+ `?r+="\\n":i==="\r"?r+="\\r":i===" "?r+="\\t":r+=i}this.tstack.push('"'+r+'"')}};fe.prototype.writeBinary=function(t){if(typeof t=="string")var e=new Buffer(t,"binary");else if(t instanceof Buffer||Object.prototype.toString.call(t)=="[object Uint8Array]")var e=t;else throw new Error("writeBinary called without a string/Buffer argument: "+t);this.tstack.push('"'+e.toString("base64")+'"')};fe.prototype.readMessageBegin=function(){this.rstack=[],this.rpos=[];var t=this.trans.borrow();if(t.readIndex>=t.writeIndex)throw new iy;var e=t.readIndex;if(t.buf[e]!==91)throw new Error("Malformed JSON input, no opening bracket");e++;for(var r=1,n=!1;e<t.writeIndex;e++){var i=t.buf[e];if(n)i===34?n=!1:i===92&&(e+=1);else if(i===91)r+=1;else if(i===93){if(r-=1,r===0)break}else i===34&&(n=!0)}if(r!==0)throw new iy;this.robj=fS(t.buf.slice(t.readIndex,e+1).toString()),this.trans.consume(e+1-t.readIndex);var f=this.robj.shift();if(f!=fe.Version)throw new Error("Wrong thrift protocol version: "+f);var o={};return o.fname=this.robj.shift(),o.mtype=this.robj.shift(),o.rseqid=this.robj.shift(),this.rstack.push(this.robj.shift()),o};fe.prototype.readMessageEnd=function(){};fe.prototype.readStructBegin=function(){var t={};return t.fname="",this.rstack[this.rstack.length-1]instanceof Array&&this.rstack.push(this.rstack[this.rstack.length-1].shift()),t};fe.prototype.readStructEnd=function(){this.rstack.pop()};fe.prototype.readFieldBegin=function(){var t={},e=-1,r=rt.STOP;for(var n in this.rstack[this.rstack.length-1])if(n!==null){e=parseInt(n,10),this.rpos.push(this.rstack.length);var i=this.rstack[this.rstack.length-1][e];delete this.rstack[this.rstack.length-1][e],this.rstack.push(i);break}if(e!=-1)for(var f in this.rstack[this.rstack.length-1])fe.RType[f]!==null&&(r=fe.RType[f],this.rstack[this.rstack.length-1]=this.rstack[this.rstack.length-1][f]);return t.fname="",t.ftype=r,t.fid=e,t};fe.prototype.readFieldEnd=function(){for(var t=this.rpos.pop();this.rstack.length>t;)this.rstack.pop()};fe.prototype.readMapBegin=function(){var t=this.rstack.pop(),e=t.shift();e instanceof Array&&(this.rstack.push(t),t=e,e=t.shift());var r={};return r.ktype=fe.RType[e],r.vtype=fe.RType[t.shift()],r.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),r};fe.prototype.readMapEnd=function(){this.readFieldEnd()};fe.prototype.readListBegin=function(){var t=this.rstack[this.rstack.length-1],e={};return e.etype=fe.RType[t.shift()],e.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),e};fe.prototype.readListEnd=function(){var t=this.rpos.pop()-2,e=this.rstack;e.pop(),e instanceof Array&&e.length>t&&e[t].length>0&&e.push(e[t].shift())};fe.prototype.readSetBegin=function(){return this.readListBegin()};fe.prototype.readSetEnd=function(){return this.readListEnd()};fe.prototype.readBool=function(){return this.readValue()=="1"};fe.prototype.readByte=function(){return this.readI32()};fe.prototype.readI16=function(){return this.readI32()};fe.prototype.readI32=function(t){return+this.readValue()};fe.prototype.readValue=function(t){t===void 0&&(t=this.rstack[this.rstack.length-1]);var e={};if(t instanceof Array)t.length===0?e.value=void 0:e.value=t.shift();else if(!(t instanceof jd)&&t instanceof Object){for(var r in t)if(r!==null){this.rstack.push(t[r]),delete t[r],e.value=r;break}}else e.value=t,this.rstack.pop();return e.value};fe.prototype.readI64=function(){var t=this.readValue();return typeof t=="string"?ny.fromDecimalString(t):new jd(t)};fe.prototype.readDouble=function(){return this.readI32()};fe.prototype.readBinary=function(){return new Buffer(this.readValue(),"base64")};fe.prototype.readString=function(){return this.readValue()};fe.prototype.getTransport=function(){return this.trans};fe.prototype.skip=function(t){switch(t){case rt.BOOL:this.readBool();break;case rt.BYTE:this.readByte();break;case rt.I16:this.readI16();break;case rt.I32:this.readI32();break;case rt.I64:this.readI64();break;case rt.DOUBLE:this.readDouble();break;case rt.STRING:this.readString();break;case rt.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===rt.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case rt.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case rt.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case rt.LIST:for(var o=this.readListBegin(),s=0;s<o.size;++s)this.skip(o.etype);this.readListEnd();break;default:throw new Error("Invalid type: "+t)}}});var yd=he((LN,oy)=>{oy.exports=oS;function oS(t,e){t.Client&&(t=t.Client);var r=function(f,o){e.write(f,o)},n=new e.transport(void 0,r),i=new t(n,e.protocol);return n.client=i,e.client=i,i}});var sy=he(Jo=>{"use strict";Object.defineProperty(Jo,"__esModule",{value:!0});var sS=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},lS=typeof window!="undefined"&&typeof window.document!="undefined",aS=(typeof self=="undefined"?"undefined":sS(self))==="object"&&self.constructor&&self.constructor.name==="DedicatedWorkerGlobalScope",pS=typeof process!="undefined"&&process.versions!=null&&process.versions.node!=null,uS=function(){return typeof window!="undefined"&&window.name==="nodejs"||navigator.userAgent.includes("Node.js")||navigator.userAgent.includes("jsdom")};Jo.isBrowser=lS;Jo.isWebWorker=aS;Jo.isNode=pS;Jo.isJsDom=uS});var uy=he(Qp=>{var cS=Ai(),ly=yj(),ay=rd().EventEmitter,py=bf(),mS=wl(),dS=hl(),wS=lo(),hS=yd(),bS=sy();Qp.WSConnection=Ir;function Ir(t,e,r){ay.call(this),this.options=r||{},this.host=t,this.port=e,this.secure=this.options.secure||!1,this.transport=this.options.transport||mS,this.protocol=this.options.protocol||dS,this.path=this.options.path,this.send_pending=[],this.seqId2Service={},this.wsOptions={host:this.host,port:this.port||80,path:this.options.path||"/",headers:this.options.headers||{}};for(var n in this.options.wsOptions)this.wsOptions[n]=this.options.wsOptions[n]}cS.inherits(Ir,ay);Ir.prototype.__reset=function(){this.socket=null,this.send_pending=[]};Ir.prototype.__onOpen=function(){this.emit("open"),this.send_pending.length>0&&(this.send_pending.forEach(function(t){this.socket.send(t)},this),this.send_pending=[])};Ir.prototype.__onClose=function(t){this.emit("close"),this.__reset()};Ir.prototype.__decodeCallback=function(t){var e=new this.protocol(t);try{for(;;){var r=e.readMessageBegin(),n=r.rseqid*-1,i=this.client,f=this.seqId2Service[r.rseqid];f&&(i=this.client[f],delete this.seqId2Service[r.rseqid]),i._reqs[n]=function(o,s){t.commitPosition();var l=i._reqs[r.rseqid];delete i._reqs[r.rseqid],l&&l(o,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new py.TApplicationException(py.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(o){if(o instanceof wS)t.rollbackPosition();else throw o}};Ir.prototype.__onData=function(t){Object.prototype.toString.call(t)==="[object ArrayBuffer]"&&(t=new Uint8Array(t));var e=new Buffer(t);this.transport.receiver(this.__decodeCallback.bind(this))(e)};Ir.prototype.__onMessage=function(t){this.__onData(t.data)};Ir.prototype.__onError=function(t){this.emit("error",t),this.socket.close()};Ir.prototype.isOpen=function(){return this.socket&&this.socket.readyState===this.socket.OPEN};Ir.prototype.open=function(){this.socket&&this.socket.readyState!==this.socket.CLOSED||(bS.isBrowser?this.socket=new ly(this.uri()):this.socket=new ly(this.uri(),"",this.wsOptions),this.socket.binaryType="arraybuffer",this.socket.onopen=this.__onOpen.bind(this),this.socket.onmessage=this.__onMessage.bind(this),this.socket.onerror=this.__onError.bind(this),this.socket.onclose=this.__onClose.bind(this))};Ir.prototype.close=function(){this.socket.close()};Ir.prototype.uri=function(){var t=this.secure?"wss":"ws",e="",r=this.path||"/",n=this.host;return this.port&&(t==="wss"&&this.port!==443||t==="ws"&&this.port!==80)&&(e=":"+this.port),t+"://"+n+e+r};Ir.prototype.write=function(t){this.isOpen()?this.socket.send(t):this.send_pending.push(t)};Qp.createWSConnection=function(t,e,r){return new Ir(t,e,r)};Qp.createWSClient=hS});var my=he($p=>{var gS=Ai(),jS=rd().EventEmitter,cy=bf(),yS=wl(),vS=hl(),_S=lo(),qS=yd();$p.XHRConnection=Fr;function Fr(t,e,r){this.options=r||{},this.wpos=0,this.rpos=0,this.useCORS=r&&r.useCORS,this.send_buf="",this.recv_buf="",this.transport=r.transport||yS,this.protocol=r.protocol||vS,this.headers=r.headers||{},t=t||window.location.host,e=e||window.location.port;var n=r.https?"https://":"http://",i=r.path||"/";e===""&&(e=void 0),!e||e===80||e==="80"?this.url=n+t+i:this.url=n+t+":"+e+i,this.seqId2Service={}}gS.inherits(Fr,jS);Fr.prototype.getXmlHttpRequestObject=function(){try{return new XMLHttpRequest}catch{}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch{}try{return new ActiveXObject("Microsoft.XMLHTTP")}catch{}throw"Your browser doesn't support XHR."};Fr.prototype.flush=function(){var t=this;if(this.url===void 0||this.url==="")return this.send_buf;var e=this.getXmlHttpRequestObject();e.overrideMimeType&&e.overrideMimeType("application/json"),e.onreadystatechange=function(){this.readyState==4&&this.status==200&&t.setRecvBuffer(this.responseText)},e.open("POST",this.url,!0),Object.keys(this.headers).forEach(function(r){e.setRequestHeader(r,t.headers[r])}),e.send(this.send_buf)};Fr.prototype.setRecvBuffer=function(t){if(this.recv_buf=t,this.recv_buf_sz=this.recv_buf.length,this.wpos=this.recv_buf.length,this.rpos=0,Object.prototype.toString.call(t)=="[object ArrayBuffer]")var e=new Uint8Array(t);var r=new Buffer(e||t);this.transport.receiver(this.__decodeCallback.bind(this))(r)};Fr.prototype.__decodeCallback=function(t){var e=new this.protocol(t);try{for(;;){var r=e.readMessageBegin(),n=r.rseqid*-1,i=this.client,f=this.seqId2Service[r.rseqid];f&&(i=this.client[f],delete this.seqId2Service[r.rseqid]),i._reqs[n]=function(o,s){t.commitPosition();var l=i._reqs[r.rseqid];delete i._reqs[r.rseqid],l&&l(o,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new cy.TApplicationException(cy.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(o){if(o instanceof _S)t.rollbackPosition();else throw o}};Fr.prototype.isOpen=function(){return!0};Fr.prototype.open=function(){};Fr.prototype.close=function(){};Fr.prototype.read=function(t){var e=this.wpos-this.rpos;if(e===0)return"";var r=t;e<t&&(r=e);var n=this.read_buf.substr(this.rpos,r);return this.rpos+=r,n};Fr.prototype.readAll=function(){return this.recv_buf};Fr.prototype.write=function(t){this.send_buf=t,this.flush()};Fr.prototype.getSendBuffer=function(){return this.send_buf};$p.createXHRConnection=function(t,e,r){return new Fr(t,e,r)};$p.createXHRClient=qS});var wy=he((dy,vd)=>{(function(t){"use strict";if(typeof bootstrap=="function")bootstrap("promise",t);else if(typeof dy=="object"&&typeof vd=="object")vd.exports=t();else if(typeof define=="function"&&define.amd)define(t);else if(typeof ses!="undefined")if(ses.ok())ses.makeQ=t;else return;else if(typeof window!="undefined"||typeof self!="undefined"){var e=typeof window!="undefined"?window:self,r=e.Q;e.Q=t(),e.Q.noConflict=function(){return e.Q=r,this}}else throw new Error("This environment was not anticipated by Q. Please file a bug.")})(function(){"use strict";var t=!1;try{throw new Error}catch(_){t=!!_.stack}var e=ne(),r,n=function(){},i=function(){var _={task:void 0,next:null},B=_,D=!1,X=void 0,ye=!1,Pe=[];function ke(){for(var yt,Vt;_.next;)_=_.next,yt=_.task,_.task=void 0,Vt=_.domain,Vt&&(_.domain=void 0,Vt.enter()),gt(yt,Vt);for(;Pe.length;)yt=Pe.pop(),gt(yt);D=!1}function gt(yt,Vt){try{yt()}catch(ef){if(ye)throw Vt&&Vt.exit(),setTimeout(ke,0),Vt&&Vt.enter(),ef;setTimeout(function(){throw ef},0)}Vt&&Vt.exit()}if(i=function(yt){B=B.next={task:yt,domain:ye&&process.domain,next:null},D||(D=!0,X())},typeof process=="object"&&process.toString()==="[object process]"&&process.nextTick)ye=!0,X=function(){process.nextTick(ke)};else if(typeof setImmediate=="function")typeof window!="undefined"?X=setImmediate.bind(window,ke):X=function(){setImmediate(ke)};else if(typeof MessageChannel!="undefined"){var at=new MessageChannel;at.port1.onmessage=function(){X=jt,at.port1.onmessage=ke,ke()};var jt=function(){at.port2.postMessage(0)};X=function(){setTimeout(ke,0),jt()}}else X=function(){setTimeout(ke,0)};return i.runAfter=function(yt){Pe.push(yt),D||(D=!0,X())},i}(),f=Function.call;function o(_){return function(){return f.apply(_,arguments)}}var s=o(Array.prototype.slice),l=o(Array.prototype.reduce||function(_,B){var D=0,X=this.length;if(arguments.length===1)do{if(D in this){B=this[D++];break}if(++D>=X)throw new TypeError}while(1);for(;D<X;D++)D in this&&(B=_(B,this[D],D));return B}),p=o(Array.prototype.indexOf||function(_){for(var B=0;B<this.length;B++)if(this[B]===_)return B;return-1}),u=o(Array.prototype.map||function(_,B){var D=this,X=[];return l(D,function(ye,Pe,ke){X.push(_.call(B,Pe,ke,D))},void 0),X}),b=Object.create||function(_){function B(){}return B.prototype=_,new B},c=Object.defineProperty||function(_,B,D){return _[B]=D.value,_},h=o(Object.prototype.hasOwnProperty),T=Object.keys||function(_){var B=[];for(var D in _)h(_,D)&&B.push(D);return B},y=o(Object.prototype.toString);function N(_){return _===Object(_)}function P(_){return y(_)==="[object StopIteration]"||_ instanceof R}var R;typeof ReturnValue!="undefined"?R=ReturnValue:R=function(_){this.value=_};var Y="From previous event:";function re(_,B){if(t&&B.stack&&typeof _=="object"&&_!==null&&_.stack){for(var D=[],X=B;X;X=X.source)X.stack&&(!_.__minimumStackCounter__||_.__minimumStackCounter__>X.stackCounter)&&(c(_,"__minimumStackCounter__",{value:X.stackCounter,configurable:!0}),D.unshift(X.stack));D.unshift(_.stack);var ye=D.join(`
13
+ `+Y+`
14
+ `),Pe=W(ye);c(_,"stack",{value:Pe,configurable:!0})}}function W(_){for(var B=_.split(`
15
+ `),D=[],X=0;X<B.length;++X){var ye=B[X];!L(ye)&&!O(ye)&&ye&&D.push(ye)}return D.join(`
16
+ `)}function O(_){return _.indexOf("(module.js:")!==-1||_.indexOf("(node.js:")!==-1}function te(_){var B=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(_);if(B)return[B[1],Number(B[2])];var D=/at ([^ ]+):(\d+):(?:\d+)$/.exec(_);if(D)return[D[1],Number(D[2])];var X=/.*@(.+):(\d+)$/.exec(_);if(X)return[X[1],Number(X[2])]}function L(_){var B=te(_);if(!B)return!1;var D=B[0],X=B[1];return D===r&&X>=e&&X<=Hn}function ne(){if(!!t)try{throw new Error}catch(X){var _=X.stack.split(`
17
+ `),B=_[0].indexOf("@")>0?_[1]:_[2],D=te(B);return D?(r=D[0],D[1]):void 0}}function j(_,B,D){return function(){return typeof console!="undefined"&&typeof console.warn=="function"&&console.warn(B+" is deprecated, use "+D+" instead.",new Error("").stack),_.apply(_,arguments)}}function g(_){return _ instanceof M?_:ie(_)?xt(_):xe(_)}g.resolve=g,g.nextTick=i,g.longStackSupport=!1;var A=1;typeof process=="object"&&process&&process.env&&process.env.Q_DEBUG&&(g.longStackSupport=!0),g.defer=w;function w(){var _=[],B=[],D,X=b(w.prototype),ye=b(M.prototype);if(ye.promiseDispatch=function(ke,gt,at){var jt=s(arguments);_?(_.push(jt),gt==="when"&&at[1]&&B.push(at[1])):g.nextTick(function(){D.promiseDispatch.apply(D,jt)})},ye.valueOf=function(){if(_)return ye;var ke=x(D);return Se(ke)&&(D=ke),ke},ye.inspect=function(){return D?D.inspect():{state:"pending"}},g.longStackSupport&&t)try{throw new Error}catch(ke){ye.stack=ke.stack.substring(ke.stack.indexOf(`
18
+ `)+1),ye.stackCounter=A++}function Pe(ke){D=ke,g.longStackSupport&&t&&(ye.source=ke),l(_,function(gt,at){g.nextTick(function(){ke.promiseDispatch.apply(ke,at)})},void 0),_=void 0,B=void 0}return X.promise=ye,X.resolve=function(ke){D||Pe(g(ke))},X.fulfill=function(ke){D||Pe(xe(ke))},X.reject=function(ke){D||Pe(bt(ke))},X.notify=function(ke){D||l(B,function(gt,at){g.nextTick(function(){at(ke)})},void 0)},X}w.prototype.makeNodeResolver=function(){var _=this;return function(B,D){B?_.reject(B):arguments.length>2?_.resolve(s(arguments,1)):_.resolve(D)}},g.Promise=F,g.promise=F;function F(_){if(typeof _!="function")throw new TypeError("resolver must be a function.");var B=w();try{_(B.resolve,B.reject,B.notify)}catch(D){B.reject(D)}return B.promise}F.race=C,F.all=ee,F.reject=bt,F.resolve=g,g.passByCopy=function(_){return _},M.prototype.passByCopy=function(){return this},g.join=function(_,B){return g(_).join(B)},M.prototype.join=function(_){return g([this,_]).spread(function(B,D){if(B===D)return B;throw new Error("Q can't join: not the same: "+B+" "+D)})},g.race=C;function C(_){return F(function(B,D){for(var X=0,ye=_.length;X<ye;X++)g(_[X]).then(B,D)})}M.prototype.race=function(){return this.then(g.race)},g.makePromise=M;function M(_,B,D){B===void 0&&(B=function(Pe){return bt(new Error("Promise does not support operation: "+Pe))}),D===void 0&&(D=function(){return{state:"unknown"}});var X=b(M.prototype);if(X.promiseDispatch=function(Pe,ke,gt){var at;try{_[ke]?at=_[ke].apply(X,gt):at=B.call(X,ke,gt)}catch(jt){at=bt(jt)}Pe&&Pe(at)},X.inspect=D,D){var ye=D();ye.state==="rejected"&&(X.exception=ye.reason),X.valueOf=function(){var Pe=D();return Pe.state==="pending"||Pe.state==="rejected"?X:Pe.value}}return X}M.prototype.toString=function(){return"[object Promise]"},M.prototype.then=function(_,B,D){var X=this,ye=w(),Pe=!1;function ke(jt){try{return typeof _=="function"?_(jt):jt}catch(yt){return bt(yt)}}function gt(jt){if(typeof B=="function"){re(jt,X);try{return B(jt)}catch(yt){return bt(yt)}}return bt(jt)}function at(jt){return typeof D=="function"?D(jt):jt}return g.nextTick(function(){X.promiseDispatch(function(jt){Pe||(Pe=!0,ye.resolve(ke(jt)))},"when",[function(jt){Pe||(Pe=!0,ye.resolve(gt(jt)))}])}),X.promiseDispatch(void 0,"when",[void 0,function(jt){var yt,Vt=!1;try{yt=at(jt)}catch(ef){if(Vt=!0,g.onerror)g.onerror(ef);else throw ef}Vt||ye.notify(yt)}]),ye.promise},g.tap=function(_,B){return g(_).tap(B)},M.prototype.tap=function(_){return _=g(_),this.then(function(B){return _.fcall(B).thenResolve(B)})},g.when=Q;function Q(_,B,D,X){return g(_).then(B,D,X)}M.prototype.thenResolve=function(_){return this.then(function(){return _})},g.thenResolve=function(_,B){return g(_).thenResolve(B)},M.prototype.thenReject=function(_){return this.then(function(){throw _})},g.thenReject=function(_,B){return g(_).thenReject(B)},g.nearer=x;function x(_){if(Se(_)){var B=_.inspect();if(B.state==="fulfilled")return B.value}return _}g.isPromise=Se;function Se(_){return _ instanceof M}g.isPromiseAlike=ie;function ie(_){return N(_)&&typeof _.then=="function"}g.isPending=U;function U(_){return Se(_)&&_.inspect().state==="pending"}M.prototype.isPending=function(){return this.inspect().state==="pending"},g.isFulfilled=K;function K(_){return!Se(_)||_.inspect().state==="fulfilled"}M.prototype.isFulfilled=function(){return this.inspect().state==="fulfilled"},g.isRejected=Ie;function Ie(_){return Se(_)&&_.inspect().state==="rejected"}M.prototype.isRejected=function(){return this.inspect().state==="rejected"};var oe=[],We=[],pr=[],ae=!0;function St(){oe.length=0,We.length=0,ae||(ae=!0)}function Qi(_,B){!ae||(typeof process=="object"&&typeof process.emit=="function"&&g.nextTick.runAfter(function(){p(We,_)!==-1&&(process.emit("unhandledRejection",B,_),pr.push(_))}),We.push(_),B&&typeof B.stack!="undefined"?oe.push(B.stack):oe.push("(no stack) "+B))}function $i(_){if(!!ae){var B=p(We,_);B!==-1&&(typeof process=="object"&&typeof process.emit=="function"&&g.nextTick.runAfter(function(){var D=p(pr,_);D!==-1&&(process.emit("rejectionHandled",oe[B],_),pr.splice(D,1))}),We.splice(B,1),oe.splice(B,1))}}g.resetUnhandledRejections=St,g.getUnhandledReasons=function(){return oe.slice()},g.stopUnhandledRejectionTracking=function(){St(),ae=!1},St(),g.reject=bt;function bt(_){var B=M({when:function(D){return D&&$i(this),D?D(_):this}},function(){return this},function(){return{state:"rejected",reason:_}});return Qi(B,_),B}g.fulfill=xe;function xe(_){return M({when:function(){return _},get:function(B){return _[B]},set:function(B,D){_[B]=D},delete:function(B){delete _[B]},post:function(B,D){return B==null?_.apply(void 0,D):_[B].apply(_,D)},apply:function(B,D){return _.apply(B,D)},keys:function(){return T(_)}},void 0,function(){return{state:"fulfilled",value:_}})}function xt(_){var B=w();return g.nextTick(function(){try{_.then(B.resolve,B.reject,B.notify)}catch(D){B.reject(D)}}),B.promise}g.master=it;function it(_){return M({isDef:function(){}},function(D,X){return $(_,D,X)},function(){return g(_).inspect()})}g.spread=v;function v(_,B,D){return g(_).spread(B,D)}M.prototype.spread=function(_,B){return this.all().then(function(D){return _.apply(void 0,D)},B)},g.async=m;function m(_){return function(){function B(Pe,ke){var gt;if(typeof StopIteration=="undefined"){try{gt=D[Pe](ke)}catch(at){return bt(at)}return gt.done?g(gt.value):Q(gt.value,X,ye)}else{try{gt=D[Pe](ke)}catch(at){return P(at)?g(at.value):bt(at)}return Q(gt,X,ye)}}var D=_.apply(this,arguments),X=B.bind(B,"next"),ye=B.bind(B,"throw");return X()}}g.spawn=d;function d(_){g.done(g.async(_)())}g.return=q;function q(_){throw new R(_)}g.promised=z;function z(_){return function(){return v([this,ee(arguments)],function(B,D){return _.apply(B,D)})}}g.dispatch=$;function $(_,B,D){return g(_).dispatch(B,D)}M.prototype.dispatch=function(_,B){var D=this,X=w();return g.nextTick(function(){D.promiseDispatch(X.resolve,_,B)}),X.promise},g.get=function(_,B){return g(_).dispatch("get",[B])},M.prototype.get=function(_){return this.dispatch("get",[_])},g.set=function(_,B,D){return g(_).dispatch("set",[B,D])},M.prototype.set=function(_,B){return this.dispatch("set",[_,B])},g.del=g.delete=function(_,B){return g(_).dispatch("delete",[B])},M.prototype.del=M.prototype.delete=function(_){return this.dispatch("delete",[_])},g.mapply=g.post=function(_,B,D){return g(_).dispatch("post",[B,D])},M.prototype.mapply=M.prototype.post=function(_,B){return this.dispatch("post",[_,B])},g.send=g.mcall=g.invoke=function(_,B){return g(_).dispatch("post",[B,s(arguments,2)])},M.prototype.send=M.prototype.mcall=M.prototype.invoke=function(_){return this.dispatch("post",[_,s(arguments,1)])},g.fapply=function(_,B){return g(_).dispatch("apply",[void 0,B])},M.prototype.fapply=function(_){return this.dispatch("apply",[void 0,_])},g.try=g.fcall=function(_){return g(_).dispatch("apply",[void 0,s(arguments,1)])},M.prototype.fcall=function(){return this.dispatch("apply",[void 0,s(arguments)])},g.fbind=function(_){var B=g(_),D=s(arguments,1);return function(){return B.dispatch("apply",[this,D.concat(s(arguments))])}},M.prototype.fbind=function(){var _=this,B=s(arguments);return function(){return _.dispatch("apply",[this,B.concat(s(arguments))])}},g.keys=function(_){return g(_).dispatch("keys",[])},M.prototype.keys=function(){return this.dispatch("keys",[])},g.all=ee;function ee(_){return Q(_,function(B){var D=0,X=w();return l(B,function(ye,Pe,ke){var gt;Se(Pe)&&(gt=Pe.inspect()).state==="fulfilled"?B[ke]=gt.value:(++D,Q(Pe,function(at){B[ke]=at,--D==0&&X.resolve(B)},X.reject,function(at){X.notify({index:ke,value:at})}))},void 0),D===0&&X.resolve(B),X.promise})}M.prototype.all=function(){return ee(this)},g.any=Ye;function Ye(_){if(_.length===0)return g.resolve();var B=g.defer(),D=0;return l(_,function(X,ye,Pe){var ke=_[Pe];D++,Q(ke,gt,at,jt);function gt(yt){B.resolve(yt)}function at(yt){if(D--,D===0){var Vt=yt||new Error(""+yt);Vt.message="Q can't get fulfillment value from any promise, all promises were rejected. Last error message: "+Vt.message,B.reject(Vt)}}function jt(yt){B.notify({index:Pe,value:yt})}},void 0),B.promise}M.prototype.any=function(){return Ye(this)},g.allResolved=j(Re,"allResolved","allSettled");function Re(_){return Q(_,function(B){return B=u(B,g),Q(ee(u(B,function(D){return Q(D,n,n)})),function(){return B})})}M.prototype.allResolved=function(){return Re(this)},g.allSettled=mt;function mt(_){return g(_).allSettled()}M.prototype.allSettled=function(){return this.then(function(_){return ee(u(_,function(B){B=g(B);function D(){return B.inspect()}return B.then(D,D)}))})},g.fail=g.catch=function(_,B){return g(_).then(void 0,B)},M.prototype.fail=M.prototype.catch=function(_){return this.then(void 0,_)},g.progress=tr;function tr(_,B){return g(_).then(void 0,void 0,B)}M.prototype.progress=function(_){return this.then(void 0,void 0,_)},g.fin=g.finally=function(_,B){return g(_).finally(B)},M.prototype.fin=M.prototype.finally=function(_){if(!_||typeof _.apply!="function")throw new Error("Q can't apply finally callback");return _=g(_),this.then(function(B){return _.fcall().then(function(){return B})},function(B){return _.fcall().then(function(){throw B})})},g.done=function(_,B,D,X){return g(_).done(B,D,X)},M.prototype.done=function(_,B,D){var X=function(Pe){g.nextTick(function(){if(re(Pe,ye),g.onerror)g.onerror(Pe);else throw Pe})},ye=_||B||D?this.then(_,B,D):this;typeof process=="object"&&process&&process.domain&&(X=process.domain.bind(X)),ye.then(void 0,X)},g.timeout=function(_,B,D){return g(_).timeout(B,D)},M.prototype.timeout=function(_,B){var D=w(),X=setTimeout(function(){(!B||typeof B=="string")&&(B=new Error(B||"Timed out after "+_+" ms"),B.code="ETIMEDOUT"),D.reject(B)},_);return this.then(function(ye){clearTimeout(X),D.resolve(ye)},function(ye){clearTimeout(X),D.reject(ye)},D.notify),D.promise},g.delay=function(_,B){return B===void 0&&(B=_,_=void 0),g(_).delay(B)},M.prototype.delay=function(_){return this.then(function(B){var D=w();return setTimeout(function(){D.resolve(B)},_),D.promise})},g.nfapply=function(_,B){return g(_).nfapply(B)},M.prototype.nfapply=function(_){var B=w(),D=s(_);return D.push(B.makeNodeResolver()),this.fapply(D).fail(B.reject),B.promise},g.nfcall=function(_){var B=s(arguments,1);return g(_).nfapply(B)},M.prototype.nfcall=function(){var _=s(arguments),B=w();return _.push(B.makeNodeResolver()),this.fapply(_).fail(B.reject),B.promise},g.nfbind=g.denodeify=function(_){if(_===void 0)throw new Error("Q can't wrap an undefined function");var B=s(arguments,1);return function(){var D=B.concat(s(arguments)),X=w();return D.push(X.makeNodeResolver()),g(_).fapply(D).fail(X.reject),X.promise}},M.prototype.nfbind=M.prototype.denodeify=function(){var _=s(arguments);return _.unshift(this),g.denodeify.apply(void 0,_)},g.nbind=function(_,B){var D=s(arguments,2);return function(){var X=D.concat(s(arguments)),ye=w();X.push(ye.makeNodeResolver());function Pe(){return _.apply(B,arguments)}return g(Pe).fapply(X).fail(ye.reject),ye.promise}},M.prototype.nbind=function(){var _=s(arguments,0);return _.unshift(this),g.nbind.apply(void 0,_)},g.nmapply=g.npost=function(_,B,D){return g(_).npost(B,D)},M.prototype.nmapply=M.prototype.npost=function(_,B){var D=s(B||[]),X=w();return D.push(X.makeNodeResolver()),this.dispatch("post",[_,D]).fail(X.reject),X.promise},g.nsend=g.nmcall=g.ninvoke=function(_,B){var D=s(arguments,2),X=w();return D.push(X.makeNodeResolver()),g(_).dispatch("post",[B,D]).fail(X.reject),X.promise},M.prototype.nsend=M.prototype.nmcall=M.prototype.ninvoke=function(_){var B=s(arguments,1),D=w();return B.push(D.makeNodeResolver()),this.dispatch("post",[_,B]).fail(D.reject),D.promise},g.nodeify=ce;function ce(_,B){return g(_).nodeify(B)}M.prototype.nodeify=function(_){if(_)this.then(function(B){g.nextTick(function(){_(null,B)})},function(B){g.nextTick(function(){_(B)})});else return this},g.noConflict=function(){throw new Error("Q.noConflict only works when Q is used as a global")};var Hn=ne();return g})});var jy=he(gy=>{var kS=Ai(),hy=bf();gy.Multiplexer=by;function TS(t,e,r){function n(i,f,o){e.call(this,i,f,o)}return kS.inherits(n,e),n.prototype.writeMessageBegin=function(i,f,o){f==hy.MessageType.CALL||f==hy.MessageType.ONEWAY?(r.seqId2Service[o]=t,n.super_.prototype.writeMessageBegin.call(this,t+":"+i,f,o)):n.super_.prototype.writeMessageBegin.call(this,i,f,o)},n}function by(){this.seqid=0}by.prototype.createClient=function(t,e,r){e.Client&&(e=e.Client);var n=function(l,p){r.write(l,p)},i=new r.transport(void 0,n),f=new TS(t,r.protocol,r),o=new e(i,f),s=this;return o.new_seqid=function(){return s.seqid+=1,s.seqid},typeof r.client!="object"&&(r.client={}),r.client[t]=o,o}});var vy=he((KN,yy)=>{var Zo=Kp(),BS=lo(),IS=hd();yy.exports=Kt;function Kt(t,e){this.inBuf=t||new Buffer(0),this.outBuffers=[],this.outCount=0,this.readPos=0,this.onFlush=e}Kt.prototype=new IS;Kt.receiver=function(t,e){var r=null;return function(n){for(r&&(n=Buffer.concat([r,n]),r=null);n.length;){if(n.length<4){r=n;return}var i=Zo.readI32(n,0);if(n.length<4+i){r=n;return}var f=n.slice(4,4+i);r=n.slice(4+i),t(new Kt(f),e),n=r,r=null}}};Kt.prototype.commitPosition=function(){},Kt.prototype.rollbackPosition=function(){},Kt.prototype.isOpen=function(){return!0};Kt.prototype.open=function(){};Kt.prototype.close=function(){};Kt.prototype.setCurrSeqId=function(t){this._seqid=t};Kt.prototype.ensureAvailable=function(t){if(this.readPos+t>this.inBuf.length)throw new BS};Kt.prototype.read=function(t){this.ensureAvailable(t);var e=this.readPos+t;if(this.inBuf.length<e)throw new Error("read("+t+") failed - not enough data");var r=this.inBuf.slice(this.readPos,e);return this.readPos=e,r};Kt.prototype.readByte=function(){return this.ensureAvailable(1),Zo.readByte(this.inBuf[this.readPos++])};Kt.prototype.readI16=function(){this.ensureAvailable(2);var t=Zo.readI16(this.inBuf,this.readPos);return this.readPos+=2,t};Kt.prototype.readI32=function(){this.ensureAvailable(4);var t=Zo.readI32(this.inBuf,this.readPos);return this.readPos+=4,t};Kt.prototype.readDouble=function(){this.ensureAvailable(8);var t=Zo.readDouble(this.inBuf,this.readPos);return this.readPos+=8,t};Kt.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readPos,this.readPos+t);return this.readPos+=t,e};Kt.prototype.borrow=function(){return{buf:this.inBuf,readIndex:this.readPos,writeIndex:this.inBuf.length}};Kt.prototype.consume=function(t){this.readPos+=t};Kt.prototype.write=function(t,e){typeof t=="string"&&(t=new Buffer(t,e||"utf8")),this.outBuffers.push(t),this.outCount+=t.length};Kt.prototype.flush=function(){var t=this._seqid;this._seqid=null;var e=new Buffer(this.outCount),r=0;if(this.outBuffers.forEach(function(i){i.copy(e,r,0),r+=i.length}),this.onFlush){var n=new Buffer(e.length+4);Zo.writeI32(n,e.length),e.copy(n,4,0,e.length),this.onFlush&&this.onFlush(n,t)}this.outBuffers=[],this.outCount=0}});var qy=he((GN,_y)=>{var SS=Jp();_y.exports=Sr;function Sr(t){this.__reset(t)}Sr.prototype.__reset=function(t){this.url=t,this.socket=null,this.callbacks=[],this.send_pending=[],this.send_buf="",this.recv_buf="",this.rb_wpos=0,this.rb_rpos=0};Sr.prototype.flush=function(t,e){var r=this;this.isOpen()?(this.socket.send(this.send_buf),this.callbacks.push(function(){var n=e;return function(i){r.setRecvBuffer(i),n()}}())):this.send_pending.push({buf:this.send_buf,cb:e})};Sr.prototype.__onOpen=function(){var t=this;this.send_pending.length>0&&(this.send_pending.forEach(function(e){t.socket.send(e.buf),t.callbacks.push(function(){var r=e.cb;return function(n){t.setRecvBuffer(n),r()}}())}),this.send_pending=[])};Sr.prototype.__onClose=function(t){this.__reset(this.url)};Sr.prototype.__onMessage=function(t){this.callbacks.length&&this.callbacks.shift()(t.data)};Sr.prototype.__onError=function(t){SS.error("websocket: "+t.toString()),this.socket.close()};Sr.prototype.setRecvBuffer=function(t){this.recv_buf=t,this.recv_buf_sz=this.recv_buf.length,this.wpos=this.recv_buf.length,this.rpos=0};Sr.prototype.isOpen=function(){return this.socket&&this.socket.readyState==this.socket.OPEN};Sr.prototype.open=function(){this.socket&&this.socket.readyState!=this.socket.CLOSED||(this.socket=new WebSocket(this.url),this.socket.onopen=this.__onOpen.bind(this),this.socket.onmessage=this.__onMessage.bind(this),this.socket.onerror=this.__onError.bind(this),this.socket.onclose=this.__onClose.bind(this))};Sr.prototype.close=function(){this.socket.close()};Sr.prototype.read=function(t){var e=this.wpos-this.rpos;if(e===0)return"";var r=t;e<t&&(r=e);var n=this.read_buf.substr(this.rpos,r);return this.rpos+=r,n};Sr.prototype.readAll=function(){return this.recv_buf};Sr.prototype.write=function(t){this.send_buf=t};Sr.prototype.getSendBuffer=function(){return this.send_buf}});var nt=he(ar=>{ar.Thrift=bf();var _d=uy();ar.WSConnection=_d.WSConnection;ar.createWSConnection=_d.createWSConnection;ar.createWSClient=_d.createWSClient;var qd=my();ar.XHRConnection=qd.XHRConnection;ar.createXHRConnection=qd.createXHRConnection;ar.createXHRClient=qd.createXHRClient;ar.Int64=_n();ar.Q=wy();var xS=jy();ar.Multiplexer=xS.Multiplexer;ar.TBufferedTransport=wl();ar.TFramedTransport=vy();ar.TWebSocketTransport=qy();ar.Protocol=hl();ar.TJSONProtocol=hl();ar.TBinaryProtocol=wd();ar.TCompactProtocol=cd()});var j0=he((WR,nu)=>{var Gy,Jy,Zy,Xy,Qy,$y,e0,t0,r0,n0,i0,f0,o0,tu,Nd,s0,l0,a0,es,p0,u0,c0,m0,d0,w0,h0,b0,g0,ru;(function(t){var e=typeof global=="object"?global:typeof self=="object"?self:typeof this=="object"?this:{};typeof define=="function"&&define.amd?define("tslib",["exports"],function(n){t(r(e,r(n)))}):typeof nu=="object"&&typeof nu.exports=="object"?t(r(e,r(nu.exports))):t(r(e));function r(n,i){return n!==e&&(typeof Object.create=="function"?Object.defineProperty(n,"__esModule",{value:!0}):n.__esModule=!0),function(f,o){return n[f]=i?i(f,o):o}}})(function(t){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,i){n.__proto__=i}||function(n,i){for(var f in i)Object.prototype.hasOwnProperty.call(i,f)&&(n[f]=i[f])};Gy=function(n,i){if(typeof i!="function"&&i!==null)throw new TypeError("Class extends value "+String(i)+" is not a constructor or null");e(n,i);function f(){this.constructor=n}n.prototype=i===null?Object.create(i):(f.prototype=i.prototype,new f)},Jy=Object.assign||function(n){for(var i,f=1,o=arguments.length;f<o;f++){i=arguments[f];for(var s in i)Object.prototype.hasOwnProperty.call(i,s)&&(n[s]=i[s])}return n},Zy=function(n,i){var f={};for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&i.indexOf(o)<0&&(f[o]=n[o]);if(n!=null&&typeof Object.getOwnPropertySymbols=="function")for(var s=0,o=Object.getOwnPropertySymbols(n);s<o.length;s++)i.indexOf(o[s])<0&&Object.prototype.propertyIsEnumerable.call(n,o[s])&&(f[o[s]]=n[o[s]]);return f},Xy=function(n,i,f,o){var s=arguments.length,l=s<3?i:o===null?o=Object.getOwnPropertyDescriptor(i,f):o,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(n,i,f,o);else for(var u=n.length-1;u>=0;u--)(p=n[u])&&(l=(s<3?p(l):s>3?p(i,f,l):p(i,f))||l);return s>3&&l&&Object.defineProperty(i,f,l),l},Qy=function(n,i){return function(f,o){i(f,o,n)}},$y=function(n,i,f,o,s,l){function p(re){if(re!==void 0&&typeof re!="function")throw new TypeError("Function expected");return re}for(var u=o.kind,b=u==="getter"?"get":u==="setter"?"set":"value",c=!i&&n?o.static?n:n.prototype:null,h=i||(c?Object.getOwnPropertyDescriptor(c,o.name):{}),T,y=!1,N=f.length-1;N>=0;N--){var P={};for(var R in o)P[R]=R==="access"?{}:o[R];for(var R in o.access)P.access[R]=o.access[R];P.addInitializer=function(re){if(y)throw new TypeError("Cannot add initializers after decoration has completed");l.push(p(re||null))};var Y=(0,f[N])(u==="accessor"?{get:h.get,set:h.set}:h[b],P);if(u==="accessor"){if(Y===void 0)continue;if(Y===null||typeof Y!="object")throw new TypeError("Object expected");(T=p(Y.get))&&(h.get=T),(T=p(Y.set))&&(h.set=T),(T=p(Y.init))&&s.push(T)}else(T=p(Y))&&(u==="field"?s.push(T):h[b]=T)}c&&Object.defineProperty(c,o.name,h),y=!0},e0=function(n,i,f){for(var o=arguments.length>2,s=0;s<i.length;s++)f=o?i[s].call(n,f):i[s].call(n);return o?f:void 0},t0=function(n){return typeof n=="symbol"?n:"".concat(n)},r0=function(n,i,f){return typeof i=="symbol"&&(i=i.description?"[".concat(i.description,"]"):""),Object.defineProperty(n,"name",{configurable:!0,value:f?"".concat(f," ",i):i})},n0=function(n,i){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(n,i)},i0=function(n,i,f,o){function s(l){return l instanceof f?l:new f(function(p){p(l)})}return new(f||(f=Promise))(function(l,p){function u(h){try{c(o.next(h))}catch(T){p(T)}}function b(h){try{c(o.throw(h))}catch(T){p(T)}}function c(h){h.done?l(h.value):s(h.value).then(u,b)}c((o=o.apply(n,i||[])).next())})},f0=function(n,i){var f={label:0,sent:function(){if(l[0]&1)throw l[1];return l[1]},trys:[],ops:[]},o,s,l,p;return p={next:u(0),throw:u(1),return:u(2)},typeof Symbol=="function"&&(p[Symbol.iterator]=function(){return this}),p;function u(c){return function(h){return b([c,h])}}function b(c){if(o)throw new TypeError("Generator is already executing.");for(;p&&(p=0,c[0]&&(f=0)),f;)try{if(o=1,s&&(l=c[0]&2?s.return:c[0]?s.throw||((l=s.return)&&l.call(s),0):s.next)&&!(l=l.call(s,c[1])).done)return l;switch(s=0,l&&(c=[c[0]&2,l.value]),c[0]){case 0:case 1:l=c;break;case 4:return f.label++,{value:c[1],done:!1};case 5:f.label++,s=c[1],c=[0];continue;case 7:c=f.ops.pop(),f.trys.pop();continue;default:if(l=f.trys,!(l=l.length>0&&l[l.length-1])&&(c[0]===6||c[0]===2)){f=0;continue}if(c[0]===3&&(!l||c[1]>l[0]&&c[1]<l[3])){f.label=c[1];break}if(c[0]===6&&f.label<l[1]){f.label=l[1],l=c;break}if(l&&f.label<l[2]){f.label=l[2],f.ops.push(c);break}l[2]&&f.ops.pop(),f.trys.pop();continue}c=i.call(n,f)}catch(h){c=[6,h],s=0}finally{o=l=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}},o0=function(n,i){for(var f in n)f!=="default"&&!Object.prototype.hasOwnProperty.call(i,f)&&ru(i,n,f)},ru=Object.create?function(n,i,f,o){o===void 0&&(o=f);var s=Object.getOwnPropertyDescriptor(i,f);(!s||("get"in s?!i.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:function(){return i[f]}}),Object.defineProperty(n,o,s)}:function(n,i,f,o){o===void 0&&(o=f),n[o]=i[f]},tu=function(n){var i=typeof Symbol=="function"&&Symbol.iterator,f=i&&n[i],o=0;if(f)return f.call(n);if(n&&typeof n.length=="number")return{next:function(){return n&&o>=n.length&&(n=void 0),{value:n&&n[o++],done:!n}}};throw new TypeError(i?"Object is not iterable.":"Symbol.iterator is not defined.")},Nd=function(n,i){var f=typeof Symbol=="function"&&n[Symbol.iterator];if(!f)return n;var o=f.call(n),s,l=[],p;try{for(;(i===void 0||i-- >0)&&!(s=o.next()).done;)l.push(s.value)}catch(u){p={error:u}}finally{try{s&&!s.done&&(f=o.return)&&f.call(o)}finally{if(p)throw p.error}}return l},s0=function(){for(var n=[],i=0;i<arguments.length;i++)n=n.concat(Nd(arguments[i]));return n},l0=function(){for(var n=0,i=0,f=arguments.length;i<f;i++)n+=arguments[i].length;for(var o=Array(n),s=0,i=0;i<f;i++)for(var l=arguments[i],p=0,u=l.length;p<u;p++,s++)o[s]=l[p];return o},a0=function(n,i,f){if(f||arguments.length===2)for(var o=0,s=i.length,l;o<s;o++)(l||!(o in i))&&(l||(l=Array.prototype.slice.call(i,0,o)),l[o]=i[o]);return n.concat(l||Array.prototype.slice.call(i))},es=function(n){return this instanceof es?(this.v=n,this):new es(n)},p0=function(n,i,f){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var o=f.apply(n,i||[]),s,l=[];return s={},p("next"),p("throw"),p("return"),s[Symbol.asyncIterator]=function(){return this},s;function p(y){o[y]&&(s[y]=function(N){return new Promise(function(P,R){l.push([y,N,P,R])>1||u(y,N)})})}function u(y,N){try{b(o[y](N))}catch(P){T(l[0][3],P)}}function b(y){y.value instanceof es?Promise.resolve(y.value.v).then(c,h):T(l[0][2],y)}function c(y){u("next",y)}function h(y){u("throw",y)}function T(y,N){y(N),l.shift(),l.length&&u(l[0][0],l[0][1])}},u0=function(n){var i,f;return i={},o("next"),o("throw",function(s){throw s}),o("return"),i[Symbol.iterator]=function(){return this},i;function o(s,l){i[s]=n[s]?function(p){return(f=!f)?{value:es(n[s](p)),done:!1}:l?l(p):p}:l}},c0=function(n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=n[Symbol.asyncIterator],f;return i?i.call(n):(n=typeof tu=="function"?tu(n):n[Symbol.iterator](),f={},o("next"),o("throw"),o("return"),f[Symbol.asyncIterator]=function(){return this},f);function o(l){f[l]=n[l]&&function(p){return new Promise(function(u,b){p=n[l](p),s(u,b,p.done,p.value)})}}function s(l,p,u,b){Promise.resolve(b).then(function(c){l({value:c,done:u})},p)}},m0=function(n,i){return Object.defineProperty?Object.defineProperty(n,"raw",{value:i}):n.raw=i,n};var r=Object.create?function(n,i){Object.defineProperty(n,"default",{enumerable:!0,value:i})}:function(n,i){n.default=i};d0=function(n){if(n&&n.__esModule)return n;var i={};if(n!=null)for(var f in n)f!=="default"&&Object.prototype.hasOwnProperty.call(n,f)&&ru(i,n,f);return r(i,n),i},w0=function(n){return n&&n.__esModule?n:{default:n}},h0=function(n,i,f,o){if(f==="a"&&!o)throw new TypeError("Private accessor was defined without a getter");if(typeof i=="function"?n!==i||!o:!i.has(n))throw new TypeError("Cannot read private member from an object whose class did not declare it");return f==="m"?o:f==="a"?o.call(n):o?o.value:i.get(n)},b0=function(n,i,f,o,s){if(o==="m")throw new TypeError("Private method is not writable");if(o==="a"&&!s)throw new TypeError("Private accessor was defined without a setter");if(typeof i=="function"?n!==i||!s:!i.has(n))throw new TypeError("Cannot write private member to an object whose class did not declare it");return o==="a"?s.call(n,f):s?s.value=f:i.set(n,f),f},g0=function(n,i){if(i===null||typeof i!="object"&&typeof i!="function")throw new TypeError("Cannot use 'in' operator on non-object");return typeof n=="function"?i===n:n.has(i)},t("__extends",Gy),t("__assign",Jy),t("__rest",Zy),t("__decorate",Xy),t("__param",Qy),t("__esDecorate",$y),t("__runInitializers",e0),t("__propKey",t0),t("__setFunctionName",r0),t("__metadata",n0),t("__awaiter",i0),t("__generator",f0),t("__exportStar",o0),t("__createBinding",ru),t("__values",tu),t("__read",Nd),t("__spread",s0),t("__spreadArrays",l0),t("__spreadArray",a0),t("__await",es),t("__asyncGenerator",p0),t("__asyncDelegator",u0),t("__asyncValues",c0),t("__makeTemplateObject",m0),t("__importStar",d0),t("__importDefault",w0),t("__classPrivateFieldGet",h0),t("__classPrivateFieldSet",b0),t("__classPrivateFieldIn",g0)})});var Xn={self:typeof self!="undefined"&&self,window:typeof window!="undefined"&&window,global:typeof global!="undefined"&&global,document:typeof document!="undefined"&&document},L_=Xn.self||Xn.window||Xn.global||{},C_=Xn.window||Xn.self||Xn.global||{},V_=Xn.global||Xn.self||Xn.window||{},W_=Xn.document||{};var Rn=Boolean(typeof process!="object"||String(process)!=="[object process]"||process.browser);var nh=typeof process!="undefined"&&process.version&&/v([0-9]*)/.exec(process.version),Y_=nh&&parseFloat(nh[1])||0;function jc(t,e=!0,r){let n=r||new Set;if(t){if(ih(t))n.add(t);else if(ih(t.buffer))n.add(t.buffer);else if(!ArrayBuffer.isView(t)){if(e&&typeof t=="object")for(let i in t)jc(t[i],e,n)}}return r===void 0?Array.from(n):[]}function ih(t){return t?t instanceof ArrayBuffer||typeof MessagePort!="undefined"&&t instanceof MessagePort||typeof ImageBitmap!="undefined"&&t instanceof ImageBitmap||typeof OffscreenCanvas!="undefined"&&t instanceof OffscreenCanvas:!1}function Vf(){let parentPort;try{eval("globalThis.parentPort = require('worker_threads').parentPort"),parentPort=globalThis.parentPort}catch{}return parentPort}var yc=new Map,hn=class{static inWorkerThread(){return typeof self!="undefined"||Boolean(Vf())}static set onmessage(e){function r(i){let f=Vf(),{type:o,payload:s}=f?i:i.data;e(o,s)}let n=Vf();n?(n.on("message",r),n.on("exit",()=>console.debug("Node worker closing"))):globalThis.onmessage=r}static addEventListener(e){let r=yc.get(e);r||(r=i=>{if(!K_(i))return;let f=Vf(),{type:o,payload:s}=f?i:i.data;e(o,s)}),Vf()?console.error("not implemented"):globalThis.addEventListener("message",r)}static removeEventListener(e){let r=yc.get(e);yc.delete(e),Vf()?console.error("not implemented"):globalThis.removeEventListener("message",r)}static postMessage(e,r){let n={source:"loaders.gl",type:e,payload:r},i=jc(r),f=Vf();f?f.postMessage(n,i):globalThis.postMessage(n,i)}};function K_(t){let{type:e,data:r}=t;return e==="message"&&r&&typeof r.source=="string"&&r.source.startsWith("loaders.gl")}var G_=0;function vc(t){!hn.inWorkerThread()||(hn.onmessage=async(e,r)=>{switch(e){case"process":try{let{input:n,options:i={},context:f={}}=r,o=await Z_({loader:t,arrayBuffer:n,options:i,context:{...f,parse:J_}});hn.postMessage("done",{result:o})}catch(n){let i=n instanceof Error?n.message:"";hn.postMessage("error",{error:i})}break;default:}})}function J_(t,e){return new Promise((r,n)=>{let i=G_++,f=(s,l)=>{if(l.id===i)switch(s){case"done":hn.removeEventListener(f),r(l.result);break;case"error":hn.removeEventListener(f),n(l.error);break;default:}};hn.addEventListener(f);let o={id:i,input:t,options:e};hn.postMessage("process",o)})}async function Z_({loader:t,arrayBuffer:e,options:r,context:n}){let i,f;if(t.parseSync||t.parse)i=e,f=t.parseSync||t.parse;else if(t.parseTextSync)i=new TextDecoder().decode(e),f=t.parseTextSync;else throw new Error(`Could not load data with ${t.name} loader`);return r={...r,modules:t&&t.options&&t.options.modules||{},worker:!1},await f(i,{...r},n,t)}function fh(...t){let e=t.map(f=>f instanceof ArrayBuffer?new Uint8Array(f):f),r=e.reduce((f,o)=>f+o.byteLength,0),n=new Uint8Array(r),i=0;for(let f of e)n.set(f,i),i+=f.byteLength;return n.buffer}async function _c(t){let e=[];for await(let r of t)e.push(r);return fh(...e)}function oh(t){return t}function sh(t){return t&&typeof t=="object"&&t.isBuffer}function Jr(t){if(sh(t))return oh(t);if(t instanceof ArrayBuffer)return t;if(ArrayBuffer.isView(t))return t.byteOffset===0&&t.byteLength===t.buffer.byteLength?t.buffer:t.buffer.slice(t.byteOffset,t.byteOffset+t.byteLength);if(typeof t=="string"){let e=t;return new TextEncoder().encode(e).buffer}if(t&&typeof t=="object"&&t._toArrayBuffer)return t._toArrayBuffer();throw new Error("toArrayBuffer")}function vi(t){return e=>new Promise((r,n)=>t(e,(i,f)=>i?n(i):r(f)))}function Rs(t){if(t instanceof ArrayBuffer)return{read:async(n,i)=>Buffer.from(t,n,i),close:async()=>{},size:t.byteLength};let e=t;return{read:async(r,n)=>{let i=await e.slice(r,r+n).arrayBuffer();return Buffer.from(i)},close:async()=>{},size:e.size}}var X_="4.0.0-alpha.10",Q_={parquet:{type:"object-row-table",url:void 0,columnList:[],geoparquet:!0}},Aa={name:"Apache Parquet",id:"parquet",module:"parquet",version:X_,worker:!0,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:Q_};var ko=Te(ph());function uh(t,e,r){switch(t){case"BOOLEAN":return eq(e);case"INT32":return rq(e);case"INT64":return iq(e);case"INT96":return oq(e);case"FLOAT":return lq(e);case"DOUBLE":return pq(e);case"BYTE_ARRAY":return cq(e);case"FIXED_LEN_BYTE_ARRAY":return dq(e,r);default:throw new Error(`unsupported type: ${t}`)}}function ch(t,e,r,n){switch(t){case"BOOLEAN":return tq(e,r);case"INT32":return nq(e,r);case"INT64":return fq(e,r);case"INT96":return sq(e,r);case"FLOAT":return aq(e,r);case"DOUBLE":return uq(e,r);case"BYTE_ARRAY":return mq(e,r);case"FIXED_LEN_BYTE_ARRAY":return wq(e,r,n);default:throw new Error(`unsupported type: ${t}`)}}function eq(t){let e=Buffer.alloc(Math.ceil(t.length/8));e.fill(0);for(let r=0;r<t.length;r++)t[r]&&(e[Math.floor(r/8)]|=1<<r%8);return e}function tq(t,e){let r=[];for(let n=0;n<e;n++){let i=t.buffer[t.offset+Math.floor(n/8)];r.push((i&1<<n%8)>0)}return t.offset+=Math.ceil(e/8),r}function rq(t){let e=Buffer.alloc(4*t.length);for(let r=0;r<t.length;r++)e.writeInt32LE(t[r],r*4);return e}function nq(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readInt32LE(t.offset)),t.offset+=4;return r}function iq(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)ko.default.writeInt64LE(t[r],e,r*8);return e}function fq(t,e){let r=[];for(let n=0;n<e;n++)r.push(ko.default.readInt64LE(t.buffer,t.offset)),t.offset+=8;return r}function oq(t){let e=Buffer.alloc(12*t.length);for(let r=0;r<t.length;r++)t[r]>=0?(ko.default.writeInt64LE(t[r],e,r*12),e.writeUInt32LE(0,r*12+8)):(ko.default.writeInt64LE(~-t[r]+1,e,r*12),e.writeUInt32LE(4294967295,r*12+8));return e}function sq(t,e){let r=[];for(let n=0;n<e;n++){let i=ko.default.readInt64LE(t.buffer,t.offset);t.buffer.readUInt32LE(t.offset+8)===4294967295?r.push(~-i+1):r.push(i),t.offset+=12}return r}function lq(t){let e=Buffer.alloc(4*t.length);for(let r=0;r<t.length;r++)e.writeFloatLE(t[r],r*4);return e}function aq(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readFloatLE(t.offset)),t.offset+=4;return r}function pq(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)e.writeDoubleLE(t[r],r*8);return e}function uq(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readDoubleLE(t.offset)),t.offset+=8;return r}function cq(t){let e=0;for(let i=0;i<t.length;i++)t[i]=Buffer.from(t[i]),e+=4+t[i].length;let r=Buffer.alloc(e),n=0;for(let i=0;i<t.length;i++)r.writeUInt32LE(t[i].length,n),t[i].copy(r,n+4),n+=4+t[i].length;return r}function mq(t,e){let r=[];for(let n=0;n<e;n++){let i=t.buffer.readUInt32LE(t.offset);t.offset+=4,r.push(t.buffer.slice(t.offset,t.offset+i)),t.offset+=i}return r}function dq(t,e){if(!e.typeLength)throw new Error("missing option: typeLength (required for FIXED_LEN_BYTE_ARRAY)");for(let r=0;r<t.length;r++)if(t[r]=Buffer.from(t[r]),t[r].length!==e.typeLength)throw new Error(`invalid value for FIXED_LEN_BYTE_ARRAY: ${t[r]}`);return Buffer.concat(t)}function wq(t,e,r){let n=[];if(!r.typeLength)throw new Error("missing option: typeLength (required for FIXED_LEN_BYTE_ARRAY)");for(let i=0;i<e;i++)n.push(t.buffer.slice(t.offset,t.offset+r.typeLength)),t.offset+=r.typeLength;return n}var zs=Te(qh());function kh(t,e,r){if(!("bitWidth"in r))throw new Error("bitWidth is required");switch(t){case"BOOLEAN":case"INT32":case"INT64":e=e.map(s=>parseInt(s,10));break;default:throw new Error(`unsupported type: ${t}`)}let n=Buffer.alloc(0),i=[],f=0;for(let s=0;s<e.length;s++)f===0&&i.length%8==0&&e[s]===e[s+1]?(i.length&&(n=Buffer.concat([n,Th(i,r)]),i=[]),f=1):f>0&&e[s]===e[s-1]?f+=1:(f&&(n=Buffer.concat([n,Bh(e[s-1],f,r)]),f=0),i.push(e[s]));if(f?n=Buffer.concat([n,Bh(e[e.length-1],f,r)]):i.length&&(n=Buffer.concat([n,Th(i,r)])),r.disableEnvelope)return n;let o=Buffer.alloc(n.length+4);return o.writeUInt32LE(n.length,void 0),n.copy(o,4),o}function Ra(t,e,r,n){if(!("bitWidth"in n))throw new Error("bitWidth is required");n.disableEnvelope||(e.offset+=4);let i=[];for(;i.length<r;){let f=zs.default.decode(e.buffer,e.offset);if(e.offset+=zs.default.encodingLength(f),f&1){let o=(f>>1)*8;i.push(...xq(e,o,n))}else{let o=f>>1;i.push(...Eq(e,o,n))}}if(i=i.slice(0,r),i.length!==r)throw new Error("invalid RLE encoding");return i}function xq(t,e,r){let n=r.bitWidth;if(e%8!=0)throw new Error("must be a multiple of 8");let i=new Array(e).fill(0);for(let f=0;f<n*e;f++)t.buffer[t.offset+Math.floor(f/8)]&1<<f%8&&(i[Math.floor(f/n)]|=1<<f%n);return t.offset+=n*(e/8),i}function Eq(t,e,r){let n=r.bitWidth,i=0;for(let f=0;f<Math.ceil(n/8);f++)i<<8,i+=t.buffer[t.offset],t.offset+=1;return new Array(e).fill(i)}function Th(t,e){let r=e.bitWidth;for(let i=0;i<t.length%8;i++)t.push(0);let n=Buffer.alloc(Math.ceil(r*(t.length/8)));for(let i=0;i<r*t.length;i++)(t[Math.floor(i/r)]&1<<i%r)>0&&(n[Math.floor(i/8)]|=1<<i%8);return Buffer.concat([Buffer.from(zs.default.encode(t.length/8<<1|1)),n])}function Bh(t,e,r){let n=r.bitWidth,i=Buffer.alloc(Math.ceil(n/8));for(let f=0;f<i.length;f++)i.writeUInt8(t&255,f),t>>8;return Buffer.concat([Buffer.from(zs.default.encode(e<<1)),i])}function kc(t,e,r,n){return n.bitWidth=e.buffer.slice(e.offset,e.offset+1).readInt8(0),e.offset+=1,Ra(t,e,r,{...n,disableEnvelope:!0})}function Tc(t,e,r,n){throw new Error("Encode dictionary functionality is not supported")}var Fs={PLAIN:{encodeValues:uh,decodeValues:ch},RLE:{encodeValues:kh,decodeValues:Ra},PLAIN_DICTIONARY:{encodeValues:Tc,decodeValues:kc},RLE_DICTIONARY:{encodeValues:Tc,decodeValues:kc}};var Zr=class{constructor(e){this.compressBatches=this.compressBatches.bind(this),this.decompressBatches=this.decompressBatches.bind(this)}async preload(){}async compress(e){return await this.preload(),this.compressSync(e)}async decompress(e,r){return await this.preload(),this.decompressSync(e,r)}compressSync(e){throw new Error(`${this.name}: sync compression not supported`)}decompressSync(e,r){throw new Error(`${this.name}: sync decompression not supported`)}async*compressBatches(e){let r=await this.concatenate(e);yield this.compress(r)}async*decompressBatches(e){let r=await this.concatenate(e);yield this.decompress(r)}concatenate(e){return _c(e)}improveError(e){return e.message.includes(this.name)||(e.message=`${this.name} ${e.message}`),e}};var Da=class extends Zr{constructor(e){super(e);this.name="uncompressed";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return e}decompressSync(e){return e}async*compressBatches(e){return yield*e}async*decompressBatches(e){return yield*e}};var tl=Te(mg()),Ii=Te(om());var sm=class extends Zr{constructor(e={}){super(e);this.name="deflate";this.extensions=[];this.contentEncodings=["deflate"];this.isSupported=!0;this._chunks=[];this.options=e}async compress(e){if(!Rn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await vi(Ii.default.gzip)(e):await vi(Ii.default.deflate)(e);return Jr(r)}return this.compressSync(e)}async decompress(e){if(!Rn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await vi(Ii.default.gunzip)(e):await vi(Ii.default.inflate)(e);return Jr(r)}return this.decompressSync(e)}compressSync(e){if(!Rn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Ii.default.gzipSync(e):Ii.default.deflateSync(e);return Jr(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return tl.default.deflate(n,r).buffer}decompressSync(e){if(!Rn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Ii.default.gunzipSync(e):Ii.default.inflateSync(e);return Jr(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return tl.default.inflate(n,r).buffer}async*compressBatches(e){let r=this.options?.deflate||{},n=new tl.default.Deflate(r);yield*this.transformBatches(n,e)}async*decompressBatches(e){let r=this.options?.deflate||{},n=new tl.default.Inflate(r);yield*this.transformBatches(n,e)}async*transformBatches(e,r){e.onData=this._onData.bind(this),e.onEnd=this._onEnd.bind(this);for await(let o of r){let s=new Uint8Array(o);if(!e.push(s,!1))throw new Error(`${this._getError()}write`);yield*this._getChunks()}let n=new Uint8Array(0),i=e.push(n,!0);yield*this._getChunks()}_onData(e){this._chunks.push(e)}_onEnd(e){if(e!==0)throw new Error(this._getError(e)+this._chunks.length)}_getChunks(){let e=this._chunks;return this._chunks=[],e}_getError(e=0){let r={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"};return`${this.name}: ${r[e]}`}};var $a=class extends sm{constructor(e){super({...e,deflate:{...e?.gzip,gzip:!0}});this.name="gzip";this.extensions=["gz","gzip"];this.contentEncodings=["gzip","x-gzip"];this.isSupported=!0}};var qT=()=>{function t(a){this.data=a,this.offset=0}let e=Int32Array.from([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]),r=Int32Array.from([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),n=Int32Array.from([0,3,2,1,0,0,0,0,0,0,3,3,3,3,3,3]),i=Int32Array.from([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),f=Int32Array.from([131072,131076,131075,196610,131072,131076,131075,262145,131072,131076,131075,196610,131072,131076,131075,262149]),o=Int32Array.from([1,5,9,13,17,25,33,41,49,65,81,97,113,145,177,209,241,305,369,497,753,1265,2289,4337,8433,16625]),s=Int32Array.from([2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,7,8,9,10,11,12,13,24]),l=Int16Array.from([0,0,0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,7,8,9,10,12,14,24]),p=Int16Array.from([0,0,0,0,0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,7,8,9,10,24]),u=new Int16Array(2816);T(u);function b(a){let I=-1,k=16;for(;k>0;)a>>>k!=0&&(I+=k,a=a>>>k),k=k>>1;return I+a}function c(a,I,k){return 16+I+2*(k<<a)}function h(a,I,k){if(a<k+(2<<I))throw"maxDistance is too small";let S=(a-k>>I)+4,E=b(S)-1;return((E-1<<1|S>>E&1)-1<<I)+(1<<I)+k+16}function T(a){let I=new Int16Array(24),k=new Int16Array(24);k[0]=2;for(let S=0;S<23;++S)I[S+1]=I[S]+(1<<l[S]),k[S+1]=k[S]+(1<<p[S]);for(let S=0;S<704;++S){let E=S>>>6,G=-4;E>=2&&(E-=2,G=0);let Z=(170064>>>E*2&3)<<3|S>>>3&7,se=(156228>>>E*2&3)<<3|S&7,we=k[se],ge=G+(we>4?3:we-2),ue=S*4;a[ue+0]=l[Z]|p[se]<<8,a[ue+1]=I[Z],a[ue+2]=k[se],a[ue+3]=ge}}function y(a){let I=a.isLargeWindow;if(a.isLargeWindow=0,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),ce(a,1)==0)return 16;let k=ce(a,3);return k!=0?17+k:(k=ce(a,3),k!=0?k==1?I==0||(a.isLargeWindow=1,ce(a,1)==1)||(k=ce(a,6),k<10||k>30)?-1:k:8+k:17)}function N(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isEager=1}function P(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isLargeWindow=1}function R(a,I){if(a.runningState!=1)throw"State MUST be freshly initialized";if(a.cdNumChunks==0&&(a.cdChunks=new Array(16),a.cdChunkOffsets=new Int32Array(16),a.cdBlockBits=-1),a.cdNumChunks==15)throw"Too many dictionary chunks";a.cdChunks[a.cdNumChunks]=I,a.cdNumChunks++,a.cdTotalSize+=I.length,a.cdChunkOffsets[a.cdNumChunks]=a.cdTotalSize}function Y(a,I){if(a.runningState!=0)throw"State MUST be uninitialized";a.blockTrees=new Int32Array(3091),a.blockTrees[0]=7,a.distRbIdx=3;let k=h(2147483644,3,15<<3);a.distExtraBits=new Int8Array(k),a.distOffset=new Int32Array(k),a.input=I,_(a),a.runningState=1}function re(a){if(a.runningState==0)throw"State MUST be initialized";a.runningState!=11&&(a.runningState=11,a.input!=null&&(x_(a.input),a.input=null))}function W(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),ce(a,1)!=0){let I=ce(a,3);return I==0?1:ce(a,I)+(1<<I)}return 0}function O(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.inputEnd=ce(a,1),a.metaBlockLength=0,a.isUncompressed=0,a.isMetadata=0,a.inputEnd!=0&&ce(a,1)!=0)return;let I=ce(a,2)+4;if(I==7){if(a.isMetadata=1,ce(a,1)!=0)throw"Corrupted reserved bit";let k=ce(a,2);if(k==0)return;for(let S=0;S<k;S++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let E=ce(a,8);if(E==0&&S+1==k&&k>1)throw"Exuberant nibble";a.metaBlockLength|=E<<S*8}}else for(let k=0;k<I;k++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let S=ce(a,4);if(S==0&&k+1==I&&I>4)throw"Exuberant nibble";a.metaBlockLength|=S<<k*4}a.metaBlockLength++,a.inputEnd==0&&(a.isUncompressed=ce(a,1))}function te(a,I,k){let S=a[I],E=k.accumulator32>>>k.bitOffset;S+=E&255;let G=a[S]>>16,Z=a[S]&65535;if(G<=8)return k.bitOffset+=G,Z;S+=Z;let se=(1<<G)-1;return S+=(E&se)>>>8,k.bitOffset+=(a[S]>>16)+8,a[S]&65535}function L(a,I,k){k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16);let S=te(a,I,k),E=s[S];return k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16),o[S]+(E<=16?ce(k,E):Hn(k,E))}function ne(a,I){let k=a[I];for(;I>0;I--)a[I]=a[I-1];a[0]=k}function j(a,I){let k=new Int32Array(256);for(let S=0;S<256;S++)k[S]=S;for(let S=0;S<I;S++){let E=a[S]&255;a[S]=k[E],E!=0&&ne(k,E)}}function g(a,I,k,S){let E=0,G=8,Z=0,se=0,we=32768,ge=new Int32Array(32+1),ue=ge.length-1;for(Ye(ge,ue,5,a,18);E<I&&we>0;){S.halfOffset>2030&&Re(S),S.bitOffset>=16&&(S.accumulator32=S.shortBuffer[S.halfOffset++]<<16|S.accumulator32>>>16,S.bitOffset-=16);let Ke=S.accumulator32>>>S.bitOffset&31;S.bitOffset+=ge[Ke]>>16;let Ze=ge[Ke]&65535;if(Ze<16)Z=0,k[E++]=Ze,Ze!=0&&(G=Ze,we-=32768>>Ze);else{let Et=Ze-14,Kr=0;Ze==16&&(Kr=G),se!=Kr&&(Z=0,se=Kr);let wn=Z;Z>0&&(Z-=2,Z<<=Et),S.bitOffset>=16&&(S.accumulator32=S.shortBuffer[S.halfOffset++]<<16|S.accumulator32>>>16,S.bitOffset-=16),Z+=ce(S,Et)+3;let rr=Z-wn;if(E+rr>I)throw"symbol + repeatDelta > numSymbols";for(let $e=0;$e<rr;$e++)k[E++]=se;se!=0&&(we-=rr<<15-se)}}if(we!=0)throw"Unused space";k.fill(0,E,I)}function A(a,I){for(let k=0;k<I-1;++k)for(let S=k+1;S<I;++S)if(a[k]==a[S])throw"Duplicate simple Huffman code symbol"}function w(a,I,k,S,E){let G=new Int32Array(I),Z=new Int32Array(4),se=1+b(a-1),we=ce(E,2)+1;for(let ue=0;ue<we;ue++){E.bitOffset>=16&&(E.accumulator32=E.shortBuffer[E.halfOffset++]<<16|E.accumulator32>>>16,E.bitOffset-=16);let Ke=ce(E,se);if(Ke>=I)throw"Can't readHuffmanCode";Z[ue]=Ke}A(Z,we);let ge=we;switch(we==4&&(ge+=ce(E,1)),ge){case 1:G[Z[0]]=1;break;case 2:G[Z[0]]=1,G[Z[1]]=1;break;case 3:G[Z[0]]=1,G[Z[1]]=2,G[Z[2]]=2;break;case 4:G[Z[0]]=2,G[Z[1]]=2,G[Z[2]]=2,G[Z[3]]=2;break;case 5:G[Z[0]]=1,G[Z[1]]=2,G[Z[2]]=3,G[Z[3]]=3;break;default:break}return Ye(k,S,8,G,I)}function F(a,I,k,S,E){let G=new Int32Array(a),Z=new Int32Array(18),se=32,we=0;for(let ge=I;ge<18&&se>0;ge++){let ue=r[ge];E.bitOffset>=16&&(E.accumulator32=E.shortBuffer[E.halfOffset++]<<16|E.accumulator32>>>16,E.bitOffset-=16);let Ke=E.accumulator32>>>E.bitOffset&15;E.bitOffset+=f[Ke]>>16;let Ze=f[Ke]&65535;Z[ue]=Ze,Ze!=0&&(se-=32>>Ze,we++)}if(se!=0&&we!=1)throw"Corrupted Huffman code histogram";return g(Z,a,G,E),Ye(k,S,8,G,a)}function C(a,I,k,S,E){E.halfOffset>2030&&Re(E),E.bitOffset>=16&&(E.accumulator32=E.shortBuffer[E.halfOffset++]<<16|E.accumulator32>>>16,E.bitOffset-=16);let G=ce(E,2);return G==1?w(a,I,k,S,E):F(I,G,k,S,E)}function M(a,I,k){k.halfOffset>2030&&Re(k);let S=W(k)+1;if(S==1)return I.fill(0,0,a),S;k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16);let E=ce(k,1),G=0;E!=0&&(G=ce(k,4)+1);let Z=S+G,se=e[Z+31>>5],we=new Int32Array(se+1),ge=we.length-1;C(Z,Z,we,ge,k);for(let ue=0;ue<a;){k.halfOffset>2030&&Re(k),k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16);let Ke=te(we,ge,k);if(Ke==0)I[ue]=0,ue++;else if(Ke<=G){k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16);let Ze=(1<<Ke)+ce(k,Ke);for(;Ze!=0;){if(ue>=a)throw"Corrupted context map";I[ue]=0,ue++,Ze--}}else I[ue]=Ke-G,ue++}return k.bitOffset>=16&&(k.accumulator32=k.shortBuffer[k.halfOffset++]<<16|k.accumulator32>>>16,k.bitOffset-=16),ce(k,1)==1&&j(I,a),S}function Q(a,I,k){let S=a.rings,E=4+I*2;a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let G=te(a.blockTrees,2*I,a),Z=L(a.blockTrees,2*I+1,a);return G==1?G=S[E+1]+1:G==0?G=S[E]:G-=2,G>=k&&(G-=k),S[E]=S[E+1],S[E+1]=G,Z}function x(a){a.literalBlockLength=Q(a,0,a.numLiteralBlockTypes);let I=a.rings[5];a.contextMapSlice=I<<6,a.literalTreeIdx=a.contextMap[a.contextMapSlice]&255;let k=a.contextModes[I];a.contextLookupOffset1=k<<9,a.contextLookupOffset2=a.contextLookupOffset1+256}function Se(a){a.commandBlockLength=Q(a,1,a.numCommandBlockTypes),a.commandTreeIdx=a.rings[7]}function ie(a){a.distanceBlockLength=Q(a,2,a.numDistanceBlockTypes),a.distContextMapSlice=a.rings[9]<<2}function U(a){let I=a.maxRingBufferSize;if(I>a.expectedTotalSize){let E=a.expectedTotalSize;for(;I>>1>E;)I>>=1;a.inputEnd==0&&I<16384&&a.maxRingBufferSize>=16384&&(I=16384)}if(I<=a.ringBufferSize)return;let k=I+37,S=new Int8Array(k);a.ringBuffer.length!=0&&S.set(a.ringBuffer.subarray(0,0+a.ringBufferSize),0),a.ringBuffer=S,a.ringBufferSize=I}function K(a){if(a.inputEnd!=0){a.nextRunningState=10,a.runningState=12;return}a.literalTreeGroup=new Int32Array(0),a.commandTreeGroup=new Int32Array(0),a.distanceTreeGroup=new Int32Array(0),a.halfOffset>2030&&Re(a),O(a),!(a.metaBlockLength==0&&a.isMetadata==0)&&(a.isUncompressed!=0||a.isMetadata!=0?(X(a),a.runningState=a.isMetadata!=0?5:6):a.runningState=3,a.isMetadata==0&&(a.expectedTotalSize+=a.metaBlockLength,a.expectedTotalSize>1<<30&&(a.expectedTotalSize=1<<30),a.ringBufferSize<a.maxRingBufferSize&&U(a)))}function Ie(a,I,k){let S=a.blockTrees[2*I];if(k<=1)return a.blockTrees[2*I+1]=S,a.blockTrees[2*I+2]=S,1<<28;let E=k+2;S+=C(E,E,a.blockTrees,2*I,a),a.blockTrees[2*I+1]=S;let G=26;return S+=C(G,G,a.blockTrees,2*I+1,a),a.blockTrees[2*I+2]=S,L(a.blockTrees,2*I+1,a)}function oe(a,I){let k=a.distExtraBits,S=a.distOffset,E=a.distancePostfixBits,G=a.numDirectDistanceCodes,Z=1<<E,se=1,we=0,ge=16;for(let ue=0;ue<G;++ue)k[ge]=0,S[ge]=ue+1,++ge;for(;ge<I;){let ue=G+((2+we<<se)-4<<E)+1;for(let Ke=0;Ke<Z;++Ke)k[ge]=se,S[ge]=ue+Ke,++ge;se=se+we,we=we^1}}function We(a){a.numLiteralBlockTypes=W(a)+1,a.literalBlockLength=Ie(a,0,a.numLiteralBlockTypes),a.numCommandBlockTypes=W(a)+1,a.commandBlockLength=Ie(a,1,a.numCommandBlockTypes),a.numDistanceBlockTypes=W(a)+1,a.distanceBlockLength=Ie(a,2,a.numDistanceBlockTypes),a.halfOffset>2030&&Re(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.distancePostfixBits=ce(a,2),a.numDirectDistanceCodes=ce(a,4)<<a.distancePostfixBits,a.contextModes=new Int8Array(a.numLiteralBlockTypes);for(let G=0;G<a.numLiteralBlockTypes;){let Z=tf(G+96,a.numLiteralBlockTypes);for(;G<Z;++G)a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.contextModes[G]=ce(a,2);a.halfOffset>2030&&Re(a)}a.contextMap=new Int8Array(a.numLiteralBlockTypes<<6);let I=M(a.numLiteralBlockTypes<<6,a.contextMap,a);a.trivialLiteralContext=1;for(let G=0;G<a.numLiteralBlockTypes<<6;G++)if(a.contextMap[G]!=G>>6){a.trivialLiteralContext=0;break}a.distContextMap=new Int8Array(a.numDistanceBlockTypes<<2);let k=M(a.numDistanceBlockTypes<<2,a.distContextMap,a);a.literalTreeGroup=St(256,256,I,a),a.commandTreeGroup=St(704,704,a.numCommandBlockTypes,a);let S=c(a.distancePostfixBits,a.numDirectDistanceCodes,24),E=S;a.isLargeWindow==1&&(S=c(a.distancePostfixBits,a.numDirectDistanceCodes,62),E=h(2147483644,a.distancePostfixBits,a.numDirectDistanceCodes)),a.distanceTreeGroup=St(S,E,k,a),oe(a,E),a.contextMapSlice=0,a.distContextMapSlice=0,a.contextLookupOffset1=a.contextModes[0]*512,a.contextLookupOffset2=a.contextLookupOffset1+256,a.literalTreeIdx=0,a.commandTreeIdx=0,a.rings[4]=1,a.rings[5]=0,a.rings[6]=1,a.rings[7]=0,a.rings[8]=1,a.rings[9]=0}function pr(a){let I=a.ringBuffer;if(a.metaBlockLength<=0){D(a),a.runningState=2;return}let k=tf(a.ringBufferSize-a.pos,a.metaBlockLength);if(Pe(a,I,a.pos,k),a.metaBlockLength-=k,a.pos+=k,a.pos==a.ringBufferSize){a.nextRunningState=6,a.runningState=12;return}D(a),a.runningState=2}function ae(a){let I=tf(a.outputLength-a.outputUsed,a.ringBufferBytesReady-a.ringBufferBytesWritten);return I!=0&&(a.output.set(a.ringBuffer.subarray(a.ringBufferBytesWritten,a.ringBufferBytesWritten+I),a.outputOffset+a.outputUsed),a.outputUsed+=I,a.ringBufferBytesWritten+=I),a.outputUsed<a.outputLength?1:0}function St(a,I,k,S){let E=e[I+31>>5],G=new Int32Array(k+k*E),Z=k;for(let se=0;se<k;++se)G[se]=Z,Z+=C(a,I,G,se,S);return G}function Qi(a){let I=a.ringBufferSize;return a.isEager!=0&&(I=tf(I,a.ringBufferBytesWritten+a.outputLength-a.outputUsed)),I}function $i(a,I){if(a.distance>2147483644)throw"Invalid backward reference";let k=a.distance-a.maxDistance-1-a.cdTotalSize;if(k<0)xe(a,-k-1,a.copyLength),a.runningState=14;else{let S=yt,E=a.copyLength;if(E>31)throw"Invalid backward reference";let G=ef[E];if(G==0)throw"Invalid backward reference";let Z=Vt[E],se=(1<<G)-1,we=k&se,ge=k>>>G;Z+=we*E;let ue=m;if(ge>=ue.numTransforms)throw"Invalid backward reference";let Ke=q(a.ringBuffer,a.pos,S,Z,E,ue,ge);if(a.pos+=Ke,a.metaBlockLength-=Ke,a.pos>=I){a.nextRunningState=4,a.runningState=12;return}a.runningState=4}}function bt(a){a.cdBlockMap=new Int8Array(256);let I=8;for(;a.cdTotalSize-1>>>I!=0;)I++;I-=8,a.cdBlockBits=I;let k=0,S=0;for(;k<a.cdTotalSize;){for(;a.cdChunkOffsets[S+1]<k;)S++;a.cdBlockMap[k>>>I]=S,k+=1<<I}}function xe(a,I,k){a.cdBlockBits==-1&&bt(a);let S=a.cdBlockMap[I>>>a.cdBlockBits];for(;I>=a.cdChunkOffsets[S+1];)S++;if(a.cdTotalSize>I+k)throw"Invalid backward reference";a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance,a.metaBlockLength-=k,a.cdBrIndex=S,a.cdBrOffset=I-a.cdChunkOffsets[S],a.cdBrLength=k,a.cdBrCopied=0}function xt(a,I){let k=a.pos,S=k;for(;a.cdBrLength!=a.cdBrCopied;){let E=I-k,Z=a.cdChunkOffsets[a.cdBrIndex+1]-a.cdChunkOffsets[a.cdBrIndex]-a.cdBrOffset,se=a.cdBrLength-a.cdBrCopied;if(se>Z&&(se=Z),se>E&&(se=E),S_(a.ringBuffer,k,a.cdChunks[a.cdBrIndex],a.cdBrOffset,a.cdBrOffset+se),k+=se,a.cdBrOffset+=se,a.cdBrCopied+=se,se==Z&&(a.cdBrIndex++,a.cdBrOffset=0),k>=I)break}return k-S}function it(a){if(a.runningState==0)throw"Can't decompress until initialized";if(a.runningState==11)throw"Can't decompress after close";if(a.runningState==1){let E=y(a);if(E==-1)throw"Invalid 'windowBits' code";a.maxRingBufferSize=1<<E,a.maxBackwardDistance=a.maxRingBufferSize-16,a.runningState=2}let I=Qi(a),k=a.ringBufferSize-1,S=a.ringBuffer;for(;a.runningState!=10;)switch(a.runningState){case 2:if(a.metaBlockLength<0)throw"Invalid metablock length";K(a),I=Qi(a),k=a.ringBufferSize-1,S=a.ringBuffer;continue;case 3:We(a),a.runningState=4;case 4:if(a.metaBlockLength<=0){a.runningState=2;continue}a.halfOffset>2030&&Re(a),a.commandBlockLength==0&&Se(a),a.commandBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let E=te(a.commandTreeGroup,a.commandTreeIdx,a)<<2,G=u[E],Z=u[E+1],se=u[E+2];a.distanceCode=u[E+3],a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let we=G&255;a.insertLength=Z+(we<=16?ce(a,we):Hn(a,we)),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let ge=G>>8;a.copyLength=se+(ge<=16?ce(a,ge):Hn(a,ge)),a.j=0,a.runningState=7;case 7:if(a.trivialLiteralContext!=0){for(;a.j<a.insertLength;)if(a.halfOffset>2030&&Re(a),a.literalBlockLength==0&&x(a),a.literalBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),S[a.pos]=te(a.literalTreeGroup,a.literalTreeIdx,a),a.pos++,a.j++,a.pos>=I){a.nextRunningState=7,a.runningState=12;break}}else{let rr=S[a.pos-1&k]&255,$e=S[a.pos-2&k]&255;for(;a.j<a.insertLength;){a.halfOffset>2030&&Re(a),a.literalBlockLength==0&&x(a);let Gr=gt[a.contextLookupOffset1+rr]|gt[a.contextLookupOffset2+$e],ji=a.contextMap[a.contextMapSlice+Gr]&255;if(a.literalBlockLength--,$e=rr,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),rr=te(a.literalTreeGroup,ji,a),S[a.pos]=rr,a.pos++,a.j++,a.pos>=I){a.nextRunningState=7,a.runningState=12;break}}}if(a.runningState!=7)continue;if(a.metaBlockLength-=a.insertLength,a.metaBlockLength<=0){a.runningState=4;continue}let ue=a.distanceCode;if(ue<0)a.distance=a.rings[a.distRbIdx];else{a.halfOffset>2030&&Re(a),a.distanceBlockLength==0&&ie(a),a.distanceBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let rr=a.distContextMap[a.distContextMapSlice+ue]&255;if(ue=te(a.distanceTreeGroup,rr,a),ue<16){let $e=a.distRbIdx+n[ue]&3;if(a.distance=a.rings[$e]+i[ue],a.distance<0)throw"Negative distance"}else{let $e=a.distExtraBits[ue],Gr;a.bitOffset+$e<=32?Gr=ce(a,$e):(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Gr=$e<=16?ce(a,$e):Hn(a,$e)),a.distance=a.distOffset[ue]+(Gr<<a.distancePostfixBits)}}if(a.maxDistance!=a.maxBackwardDistance&&a.pos<a.maxBackwardDistance?a.maxDistance=a.pos:a.maxDistance=a.maxBackwardDistance,a.distance>a.maxDistance){a.runningState=9;continue}if(ue>0&&(a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance),a.copyLength>a.metaBlockLength)throw"Invalid backward reference";a.j=0,a.runningState=8;case 8:let Ke=a.pos-a.distance&k,Ze=a.pos,Et=a.copyLength-a.j,Kr=Ke+Et,wn=Ze+Et;if(Kr<k&&wn<k){if(Et<12||Kr>Ze&&wn>Ke)for(let rr=0;rr<Et;rr+=4)S[Ze++]=S[Ke++],S[Ze++]=S[Ke++],S[Ze++]=S[Ke++],S[Ze++]=S[Ke++];else S.copyWithin(Ze,Ke,Kr);a.j+=Et,a.metaBlockLength-=Et,a.pos+=Et}else for(;a.j<a.copyLength;)if(S[a.pos]=S[a.pos-a.distance&k],a.metaBlockLength--,a.pos++,a.j++,a.pos>=I){a.nextRunningState=8,a.runningState=12;break}a.runningState==8&&(a.runningState=4);continue;case 9:$i(a,I);continue;case 14:if(a.pos+=xt(a,I),a.pos>=I){a.nextRunningState=14,a.runningState=12;return}a.runningState=4;continue;case 5:for(;a.metaBlockLength>0;)a.halfOffset>2030&&Re(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),ce(a,8),a.metaBlockLength--;a.runningState=2;continue;case 6:pr(a);continue;case 12:a.ringBufferBytesReady=tf(a.pos,a.ringBufferSize),a.runningState=13;case 13:if(ae(a)==0)return;a.pos>=a.maxBackwardDistance&&(a.maxDistance=a.maxBackwardDistance),a.pos>=a.ringBufferSize&&(a.pos>a.ringBufferSize&&S.copyWithin(0,a.ringBufferSize,a.pos),a.pos&=k,a.ringBufferBytesWritten=0),a.runningState=a.nextRunningState;continue;default:throw"Unexpected state "+a.runningState}if(a.runningState==10){if(a.metaBlockLength<0)throw"Invalid metablock length";X(a),mt(a,1)}}function v(a,I,k){this.numTransforms=0,this.triplets=new Int32Array(0),this.prefixSuffixStorage=new Int8Array(0),this.prefixSuffixHeads=new Int32Array(0),this.params=new Int16Array(0),this.numTransforms=a,this.triplets=new Int32Array(a*3),this.params=new Int16Array(a),this.prefixSuffixStorage=new Int8Array(I),this.prefixSuffixHeads=new Int32Array(k+1)}let m=new v(121,167,50);function d(a,I,k,S,E){let G=S.length,Z=1,se=0;for(let we=0;we<G;++we){let ge=S.charCodeAt(we);ge==35?I[Z++]=se:a[se++]=ge}for(let we=0;we<363;++we)k[we]=E.charCodeAt(we)-32}d(m.prefixSuffixStorage,m.prefixSuffixHeads,m.triplets,`# #s #, #e #.# the #.com/#\xC2\xA0# of # and # in # to #"#">#
35
19
  #]# for # a # that #. # with #'# from # by #. The # on # as # is #ing #
36
- #:#ed #(# at #ly #="# of the #. This #,# not #er #al #='#ful #ive #less #est #ize #ous #`,` !! ! , *! &! " ! ) * * - ! # ! #!*! + ,$ ! - % . / # 0 1 . " 2 3!* 4% ! # / 5 6 7 8 0 1 & $ 9 + : ; < ' != > ?! 4 @ 4 2 & A *# ( B C& ) % ) !*# *-% A +! *. D! %' & E *6 F G% ! *A *% H! D I!+! J!+ K +- *4! A L!*4 M N +6 O!*% +.! K *G P +%( ! G *D +D Q +# *K!*G!+D!+# +G +A +4!+% +K!+4!*D!+K!*K`);function B(a,x,k,A,O,Q,re){let he=x,Ae=Q.triplets,Ee=Q.prefixSuffixStorage,qe=Q.prefixSuffixHeads,nt=3*re,ot=Ae[nt],Mt=Ae[nt+1],en=Ae[nt+2],un=qe[ot],wr=qe[ot+1],at=qe[en],tn=qe[en+1],Hi=Mt-11,cc=Mt-0;for((Hi<1||Hi>9)&&(Hi=0),(cc<1||cc>9)&&(cc=0);un!=wr;)a[he++]=Ee[un++];Hi>O&&(Hi=O),A+=Hi,O-=Hi,O-=cc;let Ij=O;for(;Ij>0;)a[he++]=k[A++],Ij--;if(Mt==10||Mt==11){let Nt=he-O;for(Mt==10&&(O=1);O>0;){let Bf=a[Nt]&255;Bf<192?(Bf>=97&&Bf<=122&&(a[Nt]^=32),Nt+=1,O-=1):Bf<224?(a[Nt+1]^=32,Nt+=2,O-=2):(a[Nt+2]^=5,Nt+=3,O-=3)}}else if(Mt==21||Mt==22){let Nt=he-O,Bf=Q.params[re],Cr=(Bf&32767)+(16777216-(Bf&32768));for(;O>0;){let ko=1,Mi=a[Nt]&255;if(Mi<128)Cr+=Mi,a[Nt]=Cr&127;else if(!(Mi<192)){if(Mi<224)if(O>=2){let Io=a[Nt+1];Cr+=Io&63|(Mi&31)<<6,a[Nt]=192|Cr>>6&31,a[Nt+1]=Io&192|Cr&63,ko=2}else ko=O;else if(Mi<240)if(O>=3){let Io=a[Nt+1],Qa=a[Nt+2];Cr+=Qa&63|(Io&63)<<6|(Mi&15)<<12,a[Nt]=224|Cr>>12&15,a[Nt+1]=Io&192|Cr>>6&63,a[Nt+2]=Qa&192|Cr&63,ko=3}else ko=O;else if(Mi<248)if(O>=4){let Io=a[Nt+1],Qa=a[Nt+2],Sj=a[Nt+3];Cr+=Sj&63|(Qa&63)<<6|(Io&63)<<12|(Mi&7)<<18,a[Nt]=240|Cr>>18&7,a[Nt+1]=Io&192|Cr>>12&63,a[Nt+2]=Qa&192|Cr>>6&63,a[Nt+3]=Sj&192|Cr&63,ko=4}else ko=O}Nt+=ko,O-=ko,Mt==21&&(O=0)}}for(;at!=tn;)a[he++]=Ee[at++];return he-x}function R(a,x){let k=1<<x-1;for(;(a&k)!=0;)k>>=1;return(a&k-1)+k}function oe(a,x,k,A,O){do A-=k,a[x+A]=O;while(A>0)}function fe(a,x,k){let A=1<<x-k;for(;x<15&&(A-=a[x],!(A<=0));)x++,A<<=1;return x-k}function rt(a,x,k,A,O){let Q=a[x],re,he=new Int32Array(O),Ae=new Int32Array(16),Ee=new Int32Array(16),qe;for(qe=0;qe<O;qe++)Ae[A[qe]]++;Ee[1]=0;for(let at=1;at<15;at++)Ee[at+1]=Ee[at]+Ae[at];for(qe=0;qe<O;qe++)A[qe]!=0&&(he[Ee[A[qe]]++]=qe);let nt=k,ot=1<<nt,Mt=ot;if(Ee[15]==1){for(re=0;re<Mt;re++)a[Q+re]=he[0];return Mt}re=0,qe=0;for(let at=1,tn=2;at<=k;at++,tn<<=1)for(;Ae[at]>0;Ae[at]--)oe(a,Q+re,tn,ot,at<<16|he[qe++]),re=R(re,at);let en=Mt-1,un=-1,wr=Q;for(let at=k+1,tn=2;at<=15;at++,tn<<=1)for(;Ae[at]>0;Ae[at]--)(re&en)!=un&&(wr+=ot,nt=fe(Ae,at,k),ot=1<<nt,Mt+=ot,un=re&en,a[Q+un]=nt+k<<16|wr-Q-un),oe(a,wr+(re>>k),tn,ot,at-k<<16|he[qe++]),re=R(re,at);return Mt}function Je(a){if(a.endOfStreamReached!=0){if(Oe(a)>=-2)return;throw"No more input"}let x=a.halfOffset<<1,k=4096-x;for(a.byteBuffer.copyWithin(0,x,4096),a.halfOffset=0;k<4096;){let A=4096-k,O=kj(a.input,a.byteBuffer,k,A);if(O<=0){a.endOfStreamReached=1,a.tailBytes=k,k+=1;break}k+=O}Fe(a,k)}function vt(a,x){if(a.endOfStreamReached==0)return;let k=(a.halfOffset<<1)+(a.bitOffset+7>>3)-4;if(k>a.tailBytes)throw"Read after end";if(x!=0&&k!=a.tailBytes)throw"Unused bytes after end"}function br(a){if(a.bitOffset>32)throw"Accumulator underloaded: "+a.bitOffset}function Be(a,x){let k=a.accumulator32>>>a.bitOffset&(1<<x)-1;return a.bitOffset+=x,k}function Ln(a,x){let k=Be(a,16);return a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,k|Be(a,x-16)<<16}function v(a){a.byteBuffer=new Int8Array(4160),a.accumulator32=0,a.shortBuffer=new Int16Array(2080),a.bitOffset=32,a.halfOffset=2048,a.endOfStreamReached=0,I(a)}function I(a){a.halfOffset>2030&&Je(a),vt(a,0),a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16}function P(a){a.bitOffset==32&&I(a)}function ne(a){let x=32-a.bitOffset&7;if(x!=0&&Be(a,x)!=0)throw"Corrupted padding bits"}function Oe(a){let x=2048;return a.endOfStreamReached!=0&&(x=a.tailBytes+1>>1),x-a.halfOffset}function Qe(a,x,k,A){if((a.bitOffset&7)!=0)throw"Unaligned copyBytes";for(;a.bitOffset!=32&&A!=0;)x[k++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,A--;if(A==0)return;let O=Bo(Oe(a),A>>1);if(O>0){let Q=a.halfOffset<<1,re=O<<1;x.set(a.byteBuffer.subarray(Q,Q+re),k),k+=re,A-=re,a.halfOffset+=O}if(A!=0){if(Oe(a)>0){for(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);A!=0;)x[k++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,A--;vt(a,0);return}for(;A>0;){let Q=kj(a.input,x,k,A);if(Q==-1)throw"Unexpected end of input";k+=Q,A-=Q}}}function Fe(a,x){let k=a.byteBuffer,A=x>>1,O=a.shortBuffer;for(let Q=0;Q<A;++Q)O[Q]=k[Q*2]&255|(k[Q*2+1]&255)<<8}let St=new Int32Array(2048);function yt(a,x,k){for(let O=0;O<256;++O)a[O]=O&63,a[512+O]=O>>2,a[1792+O]=2+(O>>6);for(let O=0;O<128;++O)a[1024+O]=4*(x.charCodeAt(O)-32);for(let O=0;O<64;++O)a[1152+O]=O&1,a[1216+O]=2+(O&1);let A=1280;for(let O=0;O<19;++O){let Q=O&3,re=k.charCodeAt(O)-32;for(let he=0;he<re;++he)a[A++]=Q}for(let O=0;O<16;++O)a[1792+O]=1,a[2032+O]=6;a[1792]=0,a[2047]=7;for(let O=0;O<256;++O)a[1536+O]=a[1792+O]<<3}yt(St,` !! ! "#$##%#$&'##(#)#++++++++++((&*'##,---,---,-----,-----,-----&#'###.///.///./////./////./////&#'# `,"A/* ': & : $ \x81 @");function xt(){this.ringBuffer=new Int8Array(0),this.contextModes=new Int8Array(0),this.contextMap=new Int8Array(0),this.distContextMap=new Int8Array(0),this.distExtraBits=new Int8Array(0),this.output=new Int8Array(0),this.byteBuffer=new Int8Array(0),this.shortBuffer=new Int16Array(0),this.intBuffer=new Int32Array(0),this.rings=new Int32Array(0),this.blockTrees=new Int32Array(0),this.literalTreeGroup=new Int32Array(0),this.commandTreeGroup=new Int32Array(0),this.distanceTreeGroup=new Int32Array(0),this.distOffset=new Int32Array(0),this.runningState=0,this.nextRunningState=0,this.accumulator32=0,this.bitOffset=0,this.halfOffset=0,this.tailBytes=0,this.endOfStreamReached=0,this.metaBlockLength=0,this.inputEnd=0,this.isUncompressed=0,this.isMetadata=0,this.literalBlockLength=0,this.numLiteralBlockTypes=0,this.commandBlockLength=0,this.numCommandBlockTypes=0,this.distanceBlockLength=0,this.numDistanceBlockTypes=0,this.pos=0,this.maxDistance=0,this.distRbIdx=0,this.trivialLiteralContext=0,this.literalTreeIdx=0,this.commandTreeIdx=0,this.j=0,this.insertLength=0,this.contextMapSlice=0,this.distContextMapSlice=0,this.contextLookupOffset1=0,this.contextLookupOffset2=0,this.distanceCode=0,this.numDirectDistanceCodes=0,this.distancePostfixBits=0,this.distance=0,this.copyLength=0,this.maxBackwardDistance=0,this.maxRingBufferSize=0,this.ringBufferSize=0,this.expectedTotalSize=0,this.outputOffset=0,this.outputLength=0,this.outputUsed=0,this.ringBufferBytesWritten=0,this.ringBufferBytesReady=0,this.isEager=0,this.isLargeWindow=0,this.cdNumChunks=0,this.cdTotalSize=0,this.cdBrIndex=0,this.cdBrOffset=0,this.cdBrLength=0,this.cdBrCopied=0,this.cdChunks=new Array(0),this.cdChunkOffsets=new Int32Array(0),this.cdBlockBits=0,this.cdBlockMap=new Int8Array(0),this.input=null,this.ringBuffer=new Int8Array(0),this.rings=new Int32Array(10),this.rings[0]=16,this.rings[1]=15,this.rings[2]=11,this.rings[3]=4}let At=null,tr=new Int32Array(32),To=new Int32Array(32);function I1(a,x){if(N1(a)==0||O1(a)==0)throw"newData must be a direct read-only byte buffer";if(x.length>31)throw"sizeBits length must be at most "+31;for(let re=0;re<4;++re)if(x[re]!=0)throw"first "+4+" must be 0";let k=tr,A=To;A.set(x.subarray(0,0+x.length),0);let O=0,Q=a.length;for(let re=0;re<x.length;++re){k[re]=O;let he=A[re];if(he!=0){if(he>=31)throw"newSizeBits values must be less than 31";if(O+=re<<he,O<=0||O>Q)throw"newSizeBits is inconsistent: overflow"}}for(let re=x.length;re<32;++re)k[re]=O;if(O!=Q)throw"newSizeBits is inconsistent: underflow";At=a}function S1(a,x,k,A,O,Q){let re=F1(x+k);if(re.length!=a.length)throw"Corrupted brotli dictionary";let he=0,Ae=A.length;for(let Ee=0;Ee<Ae;Ee+=2){let qe=A.charCodeAt(Ee)-36,nt=A.charCodeAt(Ee+1)-36;for(let ot=0;ot<qe;++ot)re[he]^=3,he++;for(let ot=0;ot<nt;++ot)re[he]^=236,he++}for(let Ee=0;Ee<Q.length;++Ee)O[Ee]=Q.charCodeAt(Ee)-65;a.set(re)}{let a=new Int8Array(122784),x=new Int32Array(25);S1(a,'wjnfgltmojefofewab`h`lgfgbwbpkltlmozpjwf`jwzlsfmivpwojhfeqfftlqhwf{wzfbqlufqalgzolufelqnallhsobzojufojmfkfosklnfpjgfnlqftlqgolmdwkfnujftejmgsbdfgbzpevookfbgwfqnfb`kbqfbeqlnwqvfnbqhbaofvslmkjdkgbwfobmgmftpfufmmf{w`bpfalwkslpwvpfgnbgfkbmgkfqftkbwmbnfOjmhaoldpjyfabpfkfognbhfnbjmvpfq$*#(klogfmgptjwkMftpqfbgtfqfpjdmwbhfkbufdbnfpffm`boosbwktfoosovpnfmvejonsbqwiljmwkjpojpwdllgmffgtbzptfpwilapnjmgboploldlqj`kvpfpobpwwfbnbqnzellghjmdtjoofbpwtbqgafpwejqfSbdfhmltbtbz-smdnlufwkbmolbgdjufpfoemlwfnv`keffgnbmzql`hj`lmlm`follhkjgfgjfgKlnfqvofklpwbib{jmel`ovaobtpofppkboeplnfpv`kylmf233&lmfp`bqfWjnfqb`faovfelvqtffheb`fklsfdbufkbqgolpwtkfmsbqhhfswsbpppkjsqllnKWNOsobmWzsfglmfpbufhffseobdojmhplogejufwllhqbwfwltmivnswkvpgbqh`bqgejofefbqpwbzhjoowkbweboobvwlfufq-`lnwbohpklsulwfgffsnlgfqfpwwvqmalqmabmgefooqlpfvqo+phjmqlof`lnfb`wpbdfpnffwdlog-isdjwfnubqzefowwkfmpfmggqlsUjft`lsz2-3!?,b=pwlsfopfojfpwlvqsb`h-djesbpw`pp<dqbznfbm%dw8qjgfpklwobwfpbjgqlbgubq#effoilkmqj`hslqwebpw$VB.gfbg?,a=sllqajoowzsfV-P-tllgnvpw1s{8JmelqbmhtjgftbmwtbooofbgX3^8sbvotbufpvqf\'+$ tbjwnbppbqnpdlfpdbjmobmdsbjg"..#ol`hvmjwqllwtbohejqntjef{no!plmdwfpw13s{hjmgqltpwlloelmwnbjopbefpwbqnbsp`lqfqbjmeoltabazpsbmpbzp7s{85s{8bqwpellwqfbotjhjkfbwpwfswqjslqd,obhftfbhwlogElqn`bpwebmpabmhufqzqvmpivozwbph2s{8dlbodqftpoltfgdfjg>!pfwp6s{8-ip<73s{je#+pllmpfbwmlmfwvafyfqlpfmwqffgeb`wjmwldjewkbqn2;s{`bnfkjooalogyllnuljgfbpzqjmdejoosfbhjmjw`lpw0s{8ib`hwbdpajwpqloofgjwhmftmfbq?"..dqltIPLMgvwzMbnfpbofzlv#olwpsbjmibyy`logfzfpejpkttt-qjphwbapsqfu23s{qjpf16s{Aovfgjmd033/abooelqgfbqmtjogal{-ebjqob`hufqpsbjqivmfwf`kje+"sj`hfujo\'+! tbqnolqgglfpsvoo/333jgfbgqbtkvdfpslwevmgavqmkqfe`foohfzpwj`hklvqolppevfo21s{pvjwgfboQPP!bdfgdqfzDFW!fbpfbjnpdjqobjgp;s{8mbuzdqjgwjsp :::tbqpobgz`bqp*8#~sks<kfoowbootklnyk9 ), #233kboo- B4s{8svpk`kbw3s{8`qft),?,kbpk46s{eobwqbqf#%%#wfoo`bnslmwlobjgnjppphjswfmwejmfnbofdfwpsolw733/  `lloeffw-sks?aq=fqj`nlpwdvjgafoogfp`kbjqnbwkbwln,jnd% ;1ov`h`fmw3338wjmzdlmfkwnopfoogqvdEQFFmlgfmj`h<jg>olpfmvooubpwtjmgQPP#tfbqqfozaffmpbnfgvhfmbpb`bsftjpkdvoeW109kjwppolwdbwfhj`haovqwkfz26s{$$*8*8!=npjftjmpajqgplqwafwbpffhW2;9lqgpwqffnboo53s{ebqnlupalzpX3^-$*8!SLPWafbqhjgp*8~~nbqzwfmg+VH*rvbgyk9\n.pjy....sqls$*8ojewW2:9uj`fbmgzgfaw=QPPsllomf`haoltW259gllqfuboW249ofwpebjolqbosloomlub`lopdfmf#lxplewqlnfwjooqlpp?k0=slvqebgfsjmh?wq=njmj*\x7F"+njmfyk9abqpkfbq33*8njoh#..=jqlmeqfggjphtfmwpljosvwp,ip,klozW119JPAMW139bgbnpffp?k1=iplm$/#$`lmwW129#QPPollsbpjbnllm?,s=plvoOJMFelqw`bqwW279?k2=;3s{"..?:s{8W379njhf975Ymj`fjm`kZlqhqj`fyk9\b$**8svqfnbdfsbqbwlmfalmg904Y\\le\\$^*8333/yk9\vwbmhzbqgaltoavpk965YIbub03s{ \x7F~ &@0&907YifeeF[SJ`bpkujpbdloepmltyk9rvfq-`pppj`hnfbwnjm-ajmggfookjqfsj`pqfmw905YKWWS.132elwltloeFMG#{al{967YALGZgj`h8 ~ f{jw906Yubqpafbw$~*8gjfw:::8bmmf~~?,Xj^-Obmdhn.^tjqfwlzpbggppfbobof{8 \n~f`klmjmf-lqd336*wlmziftppbmgofdpqlle333*#133tjmfdfbqgldpallwdbqz`vwpwzofwfnswjlm-{no`l`hdbmd\'+$-63s{Sk-Gnjp`bobmolbmgfphnjofqzbmvmj{gjp`*8~ gvpw`ojs*- 43s{.133GUGp4^=?wbsfgfnlj((*tbdffvqlskjolswpklofEBRpbpjm.15WobapsfwpVQO#avoh`llh8~ KFBGX3^*baaqivbm+2:;ofpkwtjm?,j=plmzdvzpev`hsjsf\x7F. "331*mgltX2^8X^8 Old#pbow \n\nabmdwqjnabwk*x 33s{ ~*8hl9\0effpbg=p9,,#X^8wloosovd+*x x #-ip$133sgvboalbw-ISD*8 ~rvlw*8 $*8  ~1327132613251324132;132:13131312131113101317131613151314131;131:130313021301130013071306130513041320132113221323133:133;133413351336133713301331133213332:::2::;2::42::52::62::72::02::12::22::32:;:2:;;2:;42:;52:;62:;72:;02:;12:;22:;32:4:2:4;2:442:452:462:472:402:412:422:432:5:2:5;2:542:552:562:572:502:512:522:532:6:2:6;2:642:652:662:672:602:612:622:632333231720:73333::::`lnln/Mpfpwffpwbsfqlwlglkb`f`bgbb/]lajfmg/Abbp/Aujgb`bpllwqlelqlplollwqb`vbogjilpjgldqbmwjslwfnbgfafbodlrv/Efpwlmbgbwqfpsl`l`bpbabilwlgbpjmlbdvbsvfpvmlpbmwfgj`fovjpfoobnbzlylmbbnlqsjpllaqb`oj`foolgjlpklqb`bpj<[<\\<Q<\\<R<P=l<\\=l=o=n<\\<Q<Y<S<R<R=n<T<[<Q<R<X<R=n<R<Z<Y<R<Q<T=i<q<\\<Y<Y<]=g<P=g<~=g=m<R<^=g<^<R<q<R<R<]<s<R<W<T<Q<T<L<H<q<Y<p=g=n=g<r<Q<T<P<X<\\<{<\\<x<\\<q=o<r<]=n<Y<t<[<Y<U<Q=o<P<P<N=g=o<Z5m5f4O5j5i4K5i4U5o5h4O5d4]4C5f4K5m5e5k5d5h5i5h5o4K5d5h5k4D4_4K5h4I5j5k5f4O5f5n4C5k5h4G5i4D5k5h5d5h5f4D5h4K5f4D5o4X5f4K5i4O5i5j4F4D5f5h5j4A4D5k5i5i4X5d4Xejqpwujgflojdkwtlqognfgjbtkjwf`olpfaob`hqjdkwpnbooallhpsob`fnvpj`ejfoglqgfqsljmwubovfofufowbaofalbqgklvpfdqlvstlqhpzfbqppwbwfwlgbztbwfqpwbqwpwzofgfbwksltfqsklmfmjdkwfqqlqjmsvwbalvwwfqnpwjwofwllopfufmwol`bowjnfpobqdftlqgpdbnfppklqwpsb`fel`vp`ofbqnlgfoaol`hdvjgfqbgjlpkbqftlnfmbdbjmnlmfzjnbdfmbnfpzlvmdojmfpobwfq`lolqdqffmeqlmw%bns8tbw`kelq`fsqj`fqvofpafdjmbewfqujpjwjppvfbqfbpafoltjmgf{wlwboklvqpobafosqjmwsqfppavjowojmhppsffgpwvgzwqbgfelvmgpfmpfvmgfqpkltmelqnpqbmdfbggfgpwjoonlufgwbhfmbalufeobpkej{fglewfmlwkfqujftp`kf`hofdboqjufqjwfnprvj`hpkbsfkvnbmf{jpwdljmdnlujfwkjqgabpj`sfb`fpwbdftjgwkoldjmjgfbptqlwfsbdfpvpfqpgqjufpwlqfaqfbhplvwkulj`fpjwfpnlmwktkfqfavjogtkj`kfbqwkelqvnwkqffpslqwsbqwz@oj`holtfqojufp`obppobzfqfmwqzpwlqzvpbdfplvmg`lvqwzlvq#ajqwkslsvswzsfpbssozJnbdfafjmdvssfqmlwfpfufqzpkltpnfbmpf{wqbnbw`kwqb`hhmltmfbqozafdbmpvsfqsbsfqmlqwkofbqmdjufmmbnfgfmgfgWfqnpsbqwpDqlvsaqbmgvpjmdtlnbmebopfqfbgzbvgjlwbhfptkjof-`ln,ojufg`bpfpgbjoz`kjogdqfbwivgdfwklpfvmjwpmfufqaqlbg`lbpw`lufqbssofejofp`z`ofp`fmfsobmp`oj`htqjwfrvffmsjf`ffnbjoeqbnflogfqsklwlojnjw`b`kf`jujop`boffmwfqwkfnfwkfqfwlv`kalvmgqlzbobphfgtklofpjm`fpwl`h#mbnfebjwkkfbqwfnswzleefqp`lsfltmfgnjdkwboavnwkjmhaollgbqqbznbilqwqvpw`bmlmvmjlm`lvmwubojgpwlmfPwzofOldjmkbsszl``vqofew9eqfpkrvjwfejonpdqbgfmffgpvqabmejdkwabpjpklufqbvwl8qlvwf-kwnonj{fgejmboZlvq#pojgfwlsj`aqltmbolmfgqbtmpsojwqfb`kQjdkwgbwfpnbq`krvlwfdllgpOjmhpglvawbpzm`wkvnaboolt`kjfezlvwkmlufo23s{8pfqufvmwjokbmgp@kf`hPsb`frvfqzibnfpfrvbowtj`f3/333Pwbqwsbmfoplmdpqlvmgfjdkwpkjewtlqwkslpwpofbgptffhpbuljgwkfpfnjofpsobmfpnbqwboskbsobmwnbqhpqbwfpsobzp`objnpbofpwf{wppwbqptqlmd?,k0=wkjmd-lqd,nvowjkfbqgSltfqpwbmgwlhfmplojg+wkjpaqjmdpkjsppwbeewqjfg`boopevoozeb`wpbdfmwWkjp#,,..=bgnjmfdzswFufmw26s{8Fnbjowqvf!`qlpppsfmwaoldpal{!=mlwfgofbuf`kjmbpjyfpdvfpw?,k7=qlalwkfbuzwqvf/pfufmdqbmg`qjnfpjdmpbtbqfgbm`fskbpf=?"..fm\\VP% 0:8133s{\\mbnfobwjmfmilzbib{-bwjlmpnjwkV-P-#klogpsfwfqjmgjbmbu!=`kbjmp`lqf`lnfpgljmdsqjlqPkbqf2::3pqlnbmojpwpibsbmeboopwqjboltmfqbdqff?,k1=bavpfbofqwlsfqb!.,,T`bqgpkjoopwfbnpSklwlwqvwk`ofbm-sks<pbjmwnfwboolvjpnfbmwsqlleaqjfeqlt!=dfmqfwqv`hollhpUbovfEqbnf-mfw,..= ?wqz#x ubq#nbhfp`lpwpsobjmbgvowrvfpwwqbjmobalqkfosp`bvpfnbdj`nlwlqwkfjq163s{ofbpwpwfsp@lvmw`lvogdobpppjgfpevmgpklwfobtbqgnlvwknlufpsbqjpdjufpgvw`kwf{bpeqvjwmvoo/\x7F\x7FX^8wls!= ?"..SLPW!l`fbm?aq,=eollqpsfbhgfswk#pjyfabmhp`bw`k`kbqw13s{8bojdmgfboptlvog63s{8vqo>!sbqhpnlvpfNlpw#---?,bnlmdaqbjmalgz#mlmf8abpfg`bqqzgqbewqfefqsbdf\\klnf-nfwfqgfobzgqfbnsqlufiljmw?,wq=gqvdp?"..#bsqjojgfboboofmf{b`welqwk`lgfpoldj`Ujft#pffnpaobmhslqwp#+133pbufg\\ojmhdlbopdqbmwdqffhklnfpqjmdpqbwfg03s{8tklpfsbqpf+*8!#Aol`hojmv{ilmfpsj{fo$*8!=*8je+.ofewgbujgklqpfEl`vpqbjpfal{fpWqb`hfnfmw?,fn=abq!=-pq`>wltfqbow>!`baofkfmqz17s{8pfwvsjwbozpkbqsnjmlqwbpwftbmwpwkjp-qfpfwtkffodjqop,`pp,233&8`ovappwveeajaofulwfp#2333hlqfb~*8 abmgprvfvf>#x~8;3s{8`hjmdx \n\nbkfbg`ol`hjqjpkojhf#qbwjlpwbwpElqn!zbkll*X3^8Balvwejmgp?,k2=gfavdwbphpVQO#>`foop~*+*821s{8sqjnfwfoopwvqmp3{533-isd!psbjmafb`kwb{fpnj`qlbmdfo..=?,djewppwfuf.ojmhalgz-~*8 \nnlvmw#+2::EBR?,qldfqeqbmh@obpp1;s{8effgp?k2=?p`lwwwfpwp11s{8gqjmh*#\x7F\x7F#oftjppkboo 30:8#elq#olufgtbpwf33s{8ib9npjnlm?elmwqfsoznffwpvmwfq`kfbswjdkwAqbmg*#">#gqfpp`ojspqllnplmhfznlajonbjm-Mbnf#sobwfevmmzwqffp`ln,!2-isdtnlgfsbqbnPWBQWofew#jggfm/#132*8 ~ elqn-ujqvp`kbjqwqbmptlqpwSbdfpjwjlmsbw`k?".. l.`b`ejqnpwlvqp/333#bpjbmj((*xbglaf$*X3^jg>23alwk8nfmv#-1-nj-smd!hfujm`lb`k@kjogaqv`f1-isdVQO*(-isd\x7Fpvjwfpoj`fkbqqz213!#ptffwwq= mbnf>gjfdlsbdf#ptjpp..= eee8!=Old-`ln!wqfbwpkffw*#%%#27s{8poffsmwfmwejofgib9ojg>!`Mbnf!tlqpfpklwp.al{.gfowb %ow8afbqp97;Y?gbwb.qvqbo?,b=#psfmgabhfqpklsp>#!!8sks!=`wjlm20s{8aqjbmkfoolpjyf>l>&1E#iljmnbzaf?jnd#jnd!=/#eipjnd!#!*X3^NWlsAWzsf!mftozGbmph`yf`kwqbjohmltp?,k6=ebr!=yk.`m23*8 .2!*8wzsf>aovfpwqvozgbujp-ip$8= ?"pwffo#zlv#k1= elqn#ifpvp233&#nfmv- \n tbofpqjphpvnfmwggjmda.ojhwfb`kdje!#ufdbpgbmphffpwjpkrjspvlnjplaqfgfpgffmwqfwlglpsvfgfb/]lpfpw/Mwjfmfkbpwblwqlpsbqwfglmgfmvfulkb`fqelqnbnjpnlnfilqnvmglbrv/Ag/Abpp/_olbzvgbef`kbwlgbpwbmwlnfmlpgbwlplwqbppjwjlnv`klbklqbovdbqnbzlqfpwlpklqbpwfmfqbmwfpelwlpfpwbpsb/Apmvfubpbovgelqlpnfgjlrvjfmnfpfpslgfq`kjofpfq/Muf`fpgf`jqilp/Efpwbqufmwbdqvslkf`klfoolpwfmdlbnjdl`lpbpmjufodfmwfnjpnbbjqfpivojlwfnbpkb`jbebulqivmjlojaqfsvmwlavfmlbvwlqbaqjoavfmbwf{wlnbqylpbafqojpwbovfdl`/_nlfmfqlivfdlsfq/Vkbafqfpwlzmvm`bnvifqubolqevfqbojaqldvpwbjdvboulwlp`bplpdv/Absvfglplnlpbujplvpwfggfafmml`kfavp`bebowbfvqlppfqjfgj`kl`vqpl`obuf`bpbpof/_msobylobqdllaqbpujpwbbslzlivmwlwqbwbujpwl`qfbq`bnslkfnlp`jm`l`bqdlsjplplqgfmkb`fm/Mqfbgjp`lsfgql`fq`bsvfgbsbsfonfmlq/Vwjo`obqlilqdf`boofslmfqwbqgfmbgjfnbq`bpjdvffoobppjdol`l`kfnlwlpnbgqf`obpfqfpwlmj/]lrvfgbsbpbqabm`lkjilpujbifsbaol/Epwfujfmfqfjmlgfibqelmgl`bmbomlqwfofwqb`bvpbwlnbqnbmlpovmfpbvwlpujoobufmglsfpbqwjslpwfmdbnbq`loofubsbgqfvmjglubnlpylmbpbnalpabmgbnbqjbbavplnv`kbpvajqqjlibujujqdqbgl`kj`bboo/Ailufmgj`kbfpwbmwbofppbojqpvfolsfplpejmfpoobnbavp`l/Epwboofdbmfdqlsobybkvnlqsbdbqivmwbglaofjpobpalopbab/]lkbaobov`kb/mqfbgj`fmivdbqmlwbpuboofboo/M`bqdbglolqbabilfpw/Edvpwlnfmwfnbqjlejqnb`lpwlej`kbsobwbkldbqbqwfpofzfpbrvfonvpflabpfpsl`lpnjwbg`jfol`kj`lnjfgldbmbqpbmwlfwbsbgfafpsobzbqfgfppjfwf`lqwf`lqfbgvgbpgfpflujfilgfpfbbdvbp%rvlw8glnbjm`lnnlmpwbwvpfufmwpnbpwfqpzpwfnb`wjlmabmmfqqfnlufp`qloovsgbwfdolabonfgjvnejowfqmvnafq`kbmdfqfpvowsvaoj`p`qffm`kllpfmlqnbowqbufojppvfpplvq`fwbqdfwpsqjmdnlgvofnlajofptjw`ksklwlpalqgfqqfdjlmjwpfoepl`jbob`wjuf`lovnmqf`lqgelooltwjwof=fjwkfqofmdwkebnjozeqjfmgobzlvwbvwklq`qfbwfqfujftpvnnfqpfqufqsobzfgsobzfqf{sbmgsloj`zelqnbwglvaofsljmwppfqjfpsfqplmojujmdgfpjdmnlmwkpelq`fpvmjrvftfjdkwsflsoffmfqdzmbwvqfpfbq`kejdvqfkbujmd`vpwlnleepfwofwwfqtjmgltpvanjwqfmgfqdqlvspvsolbgkfbowknfwklgujgflpp`klloevwvqfpkbgltgfabwfubovfpLaif`wlwkfqpqjdkwpofbdvf`kqlnfpjnsofmlwj`fpkbqfgfmgjmdpfbplmqfslqwlmojmfprvbqfavwwlmjnbdfpfmbaofnlujmdobwfpwtjmwfqEqbm`fsfqjlgpwqlmdqfsfbwOlmglmgfwbjoelqnfggfnbmgpf`vqfsbppfgwlddofsob`fpgfuj`fpwbwj``jwjfppwqfbnzfooltbwwb`hpwqffweojdkwkjggfmjmel!=lsfmfgvpfevouboofz`bvpfpofbgfqpf`qfwpf`lmggbnbdfpslqwpf{`fswqbwjmdpjdmfgwkjmdpfeef`wejfogppwbwfpleej`fujpvbofgjwlqulovnfQfslqwnvpfvnnlujfpsbqfmwb``fppnlpwoznlwkfq!#jg>!nbqhfwdqlvmg`kbm`fpvqufzafelqfpznalonlnfmwpsff`knlwjlmjmpjgfnbwwfq@fmwfqlaif`wf{jpwpnjggofFvqlsfdqltwkofdb`znbmmfqfmlvdk`bqffqbmptfqlqjdjmslqwbo`ojfmwpfof`wqbmgln`olpfgwlsj`p`lnjmdebwkfqlswjlmpjnsozqbjpfgfp`bsf`klpfm`kvq`kgfejmfqfbplm`lqmfqlvwsvwnfnlqzjeqbnfsloj`fnlgfopMvnafqgvqjmdleefqppwzofphjoofgojpwfg`boofgpjoufqnbqdjmgfofwfafwwfqaqltpfojnjwpDolabopjmdoftjgdfw`fmwfqavgdfwmltqbs`qfgjw`objnpfmdjmfpbefwz`klj`fpsjqjw.pwzofpsqfbgnbhjmdmffgfgqvppjbsofbpff{wfmwP`qjswaqlhfmbooltp`kbqdfgjujgfeb`wlqnfnafq.abpfgwkflqz`lmejdbqlvmgtlqhfgkfosfg@kvq`kjnsb`wpklvogbotbzpoldl!#alwwlnojpw!=*xubq#sqfej{lqbmdfKfbgfq-svpk+`lvsofdbqgfmaqjgdfobvm`kQfujftwbhjmdujpjlmojwwofgbwjmdAvwwlmafbvwzwkfnfpelqdlwPfbq`kbm`klqbonlpwolbgfg@kbmdfqfwvqmpwqjmdqfolbgNlajofjm`lnfpvssozPlvq`flqgfqpujftfg%maps8`lvqpfBalvw#jpobmg?kwno#`llhjfmbnf>!bnbylmnlgfqmbguj`fjm?,b=9#Wkf#gjboldklvpfpAFDJM#Nf{j`lpwbqwp`fmwqfkfjdkwbggjmdJpobmgbppfwpFnsjqfP`kllofeelqwgjqf`wmfbqoznbmvboPfof`w- Lmfiljmfgnfmv!=SkjojsbtbqgpkbmgofjnslqwLeej`fqfdbqgphjoopmbwjlmPslqwpgfdqfftffhoz#+f-d-afkjmggl`wlqolddfgvmjwfg?,a=?,afdjmpsobmwpbppjpwbqwjpwjppvfg033s{\x7F`bmbgbbdfm`zp`kfnfqfnbjmAqbyjopbnsofoldl!=afzlmg.p`bofb``fswpfqufgnbqjmfEllwfq`bnfqb?,k2= \\elqn!ofbufppwqfpp!#,= -dje!#lmolbgolbgfqL{elqgpjpwfqpvqujuojpwfmefnbofGfpjdmpjyf>!bssfbowf{w!=ofufopwkbmhpkjdkfqelq`fgbmjnbobmzlmfBeqj`bbdqffgqf`fmwSflsof?aq#,=tlmgfqsqj`fpwvqmfg\x7F\x7F#x~8nbjm!=jmojmfpvmgbztqbs!=ebjofg`fmpvpnjmvwfafb`lmrvlwfp263s{\x7Ffpwbwfqfnlwffnbjo!ojmhfgqjdkw8pjdmboelqnbo2-kwnopjdmvssqjm`feolbw9-smd!#elqvn-B``fppsbsfqpplvmgpf{wfmgKfjdkwpojgfqVWE.;!%bns8#Afelqf-#TjwkpwvgjlltmfqpnbmbdfsqlejwiRvfqzbmmvbosbqbnpalvdkwebnlvpdlldofolmdfqj((*#xjpqbfopbzjmdgf`jgfklnf!=kfbgfqfmpvqfaqbm`ksjf`fpaol`h8pwbwfgwls!=?qb`jmdqfpjyf..%dw8sb`jwzpf{vboavqfbv-isd!#23/333lawbjmwjwofpbnlvmw/#Jm`-`lnfgznfmv!#ozqj`pwlgbz-jmgffg`lvmwz\\oldl-EbnjozollhfgNbqhfwopf#jeSobzfqwvqhfz*8ubq#elqfpwdjujmdfqqlqpGlnbjm~fopfxjmpfqwAold?,ellwfqoldjm-ebpwfqbdfmwp?algz#23s{#3sqbdnbeqjgbzivmjlqgloobqsob`fg`lufqpsovdjm6/333#sbdf!=alpwlm-wfpw+bubwbqwfpwfg\\`lvmwelqvnpp`kfnbjmgf{/ejoofgpkbqfpqfbgfqbofqw+bssfbqPvanjwojmf!=algz!= )#WkfWklvdkpffjmdifqpfzMftp?,ufqjezf{sfqwjmivqztjgwk>@llhjfPWBQW#b`qlpp\\jnbdfwkqfbgmbwjufsl`hfwal{!= Pzpwfn#Gbujg`bm`fqwbaofpsqlufgBsqjo#qfboozgqjufqjwfn!=nlqf!=albqgp`lolqp`bnsvpejqpw#\x7F\x7F#X^8nfgjb-dvjwbqejmjpktjgwk9pkltfgLwkfq#-sks!#bppvnfobzfqptjoplmpwlqfpqfojfeptfgfm@vpwlnfbpjoz#zlvq#Pwqjmd Tkjowbzolq`ofbq9qfplqweqfm`kwklvdk!*#(#!?algz=avzjmdaqbmgpNfnafqmbnf!=lssjmdpf`wlq6s{8!=upsb`fslpwfqnbilq#`leeffnbqwjmnbwvqfkbssfm?,mbu=hbmpbpojmh!=Jnbdfp>ebopftkjof#kpsb`f3%bns8# Jm##sltfqSlophj.`lolqilqgbmAlwwlnPwbqw#.`lvmw1-kwnomftp!=32-isdLmojmf.qjdkwnjoofqpfmjlqJPAM#33/333#dvjgfpubovf*f`wjlmqfsbjq-{no!##qjdkwp-kwno.aol`hqfdF{s9klufqtjwkjmujqdjmsklmfp?,wq=vpjmd# \nubq#=$*8 \n?,wg= ?,wq= abkbpbaqbpjodbofdlnbdzbqslophjpqsphj4]4C5d\bTA\nzk\vBl\bQ\x7F\vUmGx\bSM\nmC\bTA wQ\nd}\bW@\bTl\bTF i@ cT\vBM\v|jBV qw cC\bWI\npa fM\n{Z{X\bTF\bVV\bVK \x7FmkF []\bPm\bTv\nsI\vpg [I\bQpmx\v_W\n^M\npe\vQ}\vGu\nel\npeChBV\bTA So\nzk\vGL\vxD\nd[JzMY\bQpli\nfl\npC{BNt\vwT i_\bTgQQ\n|p\vXN\bQS\vxDQC\bWZ pD\vVS\bTWNtYh\nzuKjN} wr Ha\n_D j`\vQ}\vWp\nxZ{c ji BU\nbDa| Tn pV\nZd\nmC\vEV{X c} To\bWl\bUd IQ cg\vxs\nXW wR\vek c} ]y Jn\nrp\neg\npV\nz\\{W\npl\nz\\\nzU Pc `{\bV@\nc|\bRw i_\bVb\nwX HvSu\bTF\v_W\vWs\vsIm\x7F\nTT\ndc US }f iZ\bWz c}MD Be iD\v@@\bTl\bPv }tSwM`\vnU kW\ved\nqo\vxY A|\bTz\vy`BRBM iaXU\nyun^ fL iI\nXW fD\bWz\bW@ yj \x7Fm av BN\vb\\ pD\bTf\nY[ Jn\bQy [^\vWc\vyuDlCJ\vWj\vHR `V\vuW Qy\np@\vGuplJm\bW[\nLP\nxC\n`m wQui\x7FR\nbI wQ BZ WVBR\npg cgtiCW\n_y Rg\bQa\vQB\vWc\nYble\ngESu\nL[ Q\x7F ea dj\v]W\nb~M` wL\bTV\bVH\nt\x7F\npl |bs_\bU|\bTaoQlvSkM`\bTv\vK}\nfl cCoQBR Hk |d\bQp HK BZ\vHR\bPv\vLx\vEZ\bT\x7F\bTv iDoDMU\vwBSuk`St\ntC Pl Kg\noi jY\vxYh}\nzk\bWZ \x7Fm\ve` TB fE\nzk `zYh\nV| HK AJ AJ\bUL p\\ ql\nYcKd\nfyYh [I\vDgJm\n]n\nlb\bUd\n{Z lu fsoQ\bTWJm\vwB eaYhBC sb Tn\nzU\n_y\vxY Q]\ngwmt O\\\ntb\bWW\bQy mI V[\ny\\\naB\vRb wQ\n]QQJ\bWg\vWa\bQj\ntC\bVH\nYm\vxs\bVK\nel\bWI\vxYCq\ntR\vHV\bTl\bVw ay\bQa\bVV }t dj\nr| p\\ wR\n{i\nTT [I i[ AJ\vxs\v_W d{\vQ} cg Tz A| Cj\vLmN}m\x7F\nbK dZ p\\ `V sV\np@ iD wQ\vQ}\bTfkaJm\v@@\bV` zp\n@NSw iI cg\noiSu\bVwloCy c}\vb\\ sUBA\bWI\bTf\nxS Vp\nd|\bTV\vbC NoJu\nTC |`\n{Z D]\bU| c}lm\bTl Bv Pl c}\bQp \x7Fm\nLk kj\n@NSbKO j_ p\\\nzU\bTl\bTg\bWI cfXO\bWW\ndzli BN\nd[\bWOMD\vKC dj I_\bVV\ny\\\vLmxl xB kV\vb\\\vJW\vVS Vx\vxD d{MD\bTa |`\vPzR}\vWsBM\nsICN\bTaJm\npe i_\npV\nrh Rd Hv\n~A\nxR\vWh\vWk\nxS\vAz\vwX\nbIoQ fw\nqI\nV|\nunz\x7F\vpg d\\\voA{D i_xB\bT\x7F `Vqr TTg]CA\vuR VJ T`\npw\vRb I_\nCxRo\vsICjKh Bv WVBBoD{D\nhcKm\v^R QE\n{I\np@\nc|Gt c}Dl\nzUqN sVk} Hh\v|j\nqou| Q]\vek\x7FZM`St\npe dj\bVG\veE \x7Fm\vWc|I\n[W fL\bT\x7F BZSu\vKaCqNtY[\nqI\bTv fM i@ }fB\\ Qy\vBl\bWgXDkc\vx[\bVV Q] \x7Fa Py\vxD\nfI }foD dj SGls ~DCN\n{Z \\v\n_D\nhc\vx_C[ AJ\nLM VxCI bj c^ cF\ntCSx wrXA\bU\\ |a\vK\\\bTV\bVj\nd| fsCX\ntb\bRw Vx AE A|\bT\x7FNt\vDg Vc\bTld@\npo \x7FM cF\npe iZ Bo\bSq\nfHl`\bTx\bWf HE\vF{ cO fD\nlm\vfZ\nlm\veU dGBH\bTV SiMW\nwX\nz\\ \\cCX\nd} l}\bQp\bTV F~\bQ\x7F `i\ng@nO\bUd\bTl\nL[ wQ ji\ntC |J\nLU\naB\vxYKj AJuN i[\npeSk\vDg\vx]\bVb\bVV\nea kV\nqI\bTaSk\nAO pD\ntb\nts\nyi\bVg i_\v_W\nLkNt yj fMR\x7F iI\bTl\vwX sV\vMl\nyu AJ\bVjKO WV\vA}\vW\x7F\nrp iD\v|olv\vsIBM d~ CU\bVbeV\npC\vwT j` c}\vxs\vps\vvh WV\vGg\vAe\vVK\v]W rg\vWcF` Br\vb\\ dZ\bQp\nqIkF\nLk\vAR\bWI\bTg bs dw\n{L\n_y iZ\bTA lg\bVV\bTl dk\n`k a{ i_{Awj wN\v@@\bTe i_\n_D wL\nAH\viK\vek\n[] p_ yj\bTv US [r\n{I\npsGt\vVK\nplS}\vWP |dMD\vHV\bT\x7FR}M`\bTV\bVHlvCh\bW[Ke R{\v^R ab BZ VA B`\nd|\nhsKe BeOi R{ d\\nB\bWZ dZ VJOs \x7FmuQ\vhZQ@QQ\nfI\bW[B\\li\nzU\nMdM`\nxS\bVV\n\\}\vxD \x7Fm\bTpIS\nc| kVi~ V{\vhZ |b\bWt\n@R\voA\vnU\bWI ea B` iD c} TzBR\vQBNj CP [I\bTv `WuN\vpg\vpg\vWc iT bs wL U_ c\\ |h\vKa Nr fL\nq|\nzu\nz\\ Nr\bUg |bm`\bTv\nyd\nrp\bWf UXBV\nzk\nd} wQ }fCe\ved\bTW\bSB\nxU cn\bTb\ne\x7F a\\ SG\bU|\npV\nN\\Kn\vnU At pD\v^R\vIrb[ R{ dE\vxD\vWK\vWA\bQL\bW@Su\bUd\nDM PcCADloQ Hswiub\n\x7Fa\bQpOb\nLP\bTlY[\vK} AJ\bQ\x7Fn^\vsA\bSM\nqM\bWZ\n^W\vz{S| fD\bVK\bTv\bPvBB CPdF id\vxsmx\vws cC\ntC ycM`\vW\x7F\nrh\bQp\vxD\\o\nsI_k\nzukF fDXsXO jp\bTvBS{B Br\nzQ\nbI c{BDBVnO\bTF caJd fL PV I_\nlK`o wX\npa gu\bP}{^\bWf\n{I BN\npaKl\vpg cn fL\vvhCq\bTl\vnU\bSqCm wR\bUJ\npe\nyd\nYgCy\vKW fD\neaoQ j_ BvnM\vID\bTa\nzApl\n]n\bTa R{ fr\n_y\bUg{Xkk\vxD|Ixl\nfyCe\vwB\nLk\vd]\noi\n}h Q]\npe\bVwHkOQ\nzk AJ\npV\bPv\ny\\ A{Oi\bSBXA\veE jp\nq} iDqN\v^R \x7Fm iZ Br\bVg\noi\n\\X U_\nc|\vHV\bTf Tn\\N\\N\nuBlv\nyu Td\bTf\bPL\v]W dG\nA`\nw^\ngI\npe dw\nz\\ia\bWZ cFJm\n{Z\bWO_kDfRR d\\\bVV\vxsBNtilm Td ]y\vHV So\v|jXX A|\vZ^\vGu\bTWM`kF\vhZ\vVK dG\vBl ay\nxUqEnO\bVw\nqICX\ne\x7F Pl\bWO\vLm dLuHCm dTfn\vwBka\vnU\n@M\nyT Hv \\}Kh d~Yhk}\neR d\\\bWI |b HK iD\bTWMY\npl\bQ_ wr\vAx HE\bTg\bSqvp\vb\\\bWO\nOl\nsI\nfy\vID \\c\n{Z\n^~\npe\nAO TT\vxvk_\bWO\v|j\vwB Qy i@ Pl Ha dZk}ra UT\vJc\ved\np@ QN\nd| kj HkM`\noi wr d\\\nlq\no_\nlb\nL[ acBBBHCm\npl IQ\bVK\vxs\n`e\viK\npaOi US\bTp fD\nPGkkXA\nz\\\neg\vWh wRqN\nqS cnlo\nxS\n^W BU\nt\x7F HE p\\ fF fw\bVV\bW@ ak\vVKls VJ\bVV\veE\\o\nyX\nYmM`lL\nd|\nzk A{sE wQXT\nt\x7F Pl ]y\vwT{pMD\vb\\ Q]Kj Jn\nAH\vRb BU HK \\c\nfIm\x7F\nqM\n@R So\noiBT Hv\n_yKh BZ ]i\bUJ V{Sr\nbI\vGg a_\bTR\nfI\nfl [K IIS|\vuW iI\bWI\nqI\v|jBV\bVg\bWZkF\vx]\bTA ab fr i@ Jd Jd\vps\nAO\bTaxu iD\nzk |d |`\bW[ lP dG\bVV\vw}\vqO i[\bQ\x7F\bTz\vVF wNts dw\bTv\neS\ngi NryS\npe\bVV\bSq\n`m yj BZ\vWX\bSB c\\\nUR [J c_nM\bWQ\vAx\nMd Brui\vxY\bSM\vWc\v|j\vxs }Q BO\bPL\bWW fM\nAO Pc\veUe^\bTg\nqI ac\bPv cFoQ Q\x7F\vhZka\nz\\ iK BU\n`k CPS|M`\n{I S{_O BZZiSk ps p\\\nYu\n]s\nxC\bWt\nbD kV\vGuyS\nqA [r\neKM` dZlL\bUg\bTl\nbD US\vb\\ pV\nccS\\ ct `z\bPL\vWs\nA`\neg\bSquECR\vDg `W\vz{\vWcSkSk bW\bUg ea\nxZ iI UX VJ\nqn S{\vRb\bTQ\nplGt\vuWuj\npF\nqI fL [I iaXO\nyu\vDg\ved q{VG\bQ\x7Fka Vj kV xB\nd|\np@ QN Pc ps]j kV oU\bTp\nzUnB\vB] a{\bV@\n]nm` cz R{m`\bQa\vwT\bSMMYqN dj~s\vQ}MY\vMB Bv wR\bRg\vQ} ql\vKC\nrmxuCC\vwB\vvh BqXq\npV i_ObuE\nbd\nqo\v{i\nC~ BL\veEuH\bVjEyGz\vzR\v{i cf\n{Z\n]nXA\vGu\vnU hS\vGI\nCc HE\bTA HBBHCj\nCc\bTF HE\nXI A{\bQ\x7F c\\\vmO\vWX\nfH\np@MY\bTF\nlK Bt\nzU TTKm\vwT\npV\ndt\vyI Vx Q\x7F Rg Td\nzU\bRS\nLM wAnM Tn\ndS ]g\nLc\vwB }t [I CPkX\vFm\vhZm\x7F i[\np@\vQ}\vW\x7F |d\nMO\nMd f_ fD cJ Hz\vRb io PyY[\nxU ct\v@@ ww\bPvBMFF\ntbv|\vKm Bq BqKh`o\nZdXU i] |` StB\\\bQ\x7F\v_W TJ\nqI |a A{\vuPMD Pl\nxR fL\vws c{ d\\\bV`\neg HKkc\nd|\bVV\ny\\kc i]\bVG `V ss I_ AE bs du\nel pD\vW\x7F\nqslv\bSMZi\vVKia\vQB Q\x7F\n{Z\bPt\vKl\nlK\nhs\ndS\bVKmf\nd^ kV cO\nc|\bVH \\]\bTv\bSq mI\vDg VJ cn\ny\\\bVg\bTv\nyX\bTF ]]\bTp\noi\nhs\veU\nBf djMr\n|p \\g ]r\bVb{D\nd[XN fM O\\s_ cf iZXN\vWc qv\n`m U^oD\nd|\vGg dE\vwflou}\nd|oQ `iOi\vxD\ndZ\nCxYw\nzk\ntb\ngw yj B`\nyX\vps\ntC\vpP\vqw\bPu\bPX Dm\npwNj ss aG\vxs\bPt\noLGz Ok i@ i]eC IQ ii dj\v@J |duh\bWZ\veU\vnU\bTa cCg]\nzkYh\bVK\nLU\np@\ntb\ntR Cj\vNP i@\bP{\n\\}\n{c\nwX fL\bVG c{ |` AJ |C fDln |d bs\nqI{B\vAx\np@\nzk\vRbOs\vWSe^\vD_ Bv\vWd\bVb\vxs\veE\bRw\n]n\n|p\vg| fwkc\bTIka\n\\TSp ju\vps\npeu|\vGr\bVe CU]MXU\vxD\bTa IQ\vWq CU am dj\bSoSw\vnUCh Q]s_\bPt fS\bTa \\}\n@OYc UZ\bTx\npe\vnU\nzU |} iD\nz\\\bSM\vxDBR\nzQ QN]MYh\nLP\vFm\vLXvc\vqlka HK\bVb\ntC\nCy\bTv\nuVoQ `z [I B`\vRb yj sb\vWs\bTl kV\ved\ne\x7FlL\vxN \x7Fm\nJn jY\vxD\bVb\bSq\vyu wL\vXL\bTA pg At nDXX wR\npl\nhwyS\nps cO\bW[\v|jXN sV p\\ Be\nb~\nAJ\n]ek`qN dw WV HE\vEVJz id B` zhE] fD\bTgqN\bTa jaCv\bSM\nhc\bUet_ ieg] wQ\nPn\bVB jw\bVg\vbE BZ\vRH\bP{ jp\n\\} a_ cC |a\vD] BZ i[ fD\vxW\no_ d\\\n_D\ntb \\c AJ\nlKoQlo\vLx\vM@\bWZKn\vpg\nTi\nIv\n|r\v@}JzLmWhk}ln\vxD\n]sgc\vps Br\bTW\vBMtZ\nBYDW jf\vSWC}\nqo dE mv IQ\bPP\bUblvBC\nzQ [I\vgl\nig\bUsBT\vbC\bSq sU iW\nJn SY HK rg\npV\vID\v|jKO `S |a`vbmglfmujbqnbgqjgavp`bqjmj`jlwjfnslslqrvf`vfmwbfpwbglsvfgfmivfdlp`lmwqbfpw/Mmmlnaqfwjfmfmsfqejonbmfqbbnjdlp`jvgbg`fmwqlbvmrvfsvfgfpgfmwqlsqjnfqsqf`jlpfd/Vmavfmlpuloufqsvmwlppfnbmbkba/Abbdlpwlmvfulpvmjglp`bqolpfrvjslmj/]lpnv`klpbodvmb`lqqfljnbdfmsbqwjqbqqjabnbq/Abklnaqffnsoflufqgbg`bnajlnv`kbpevfqlmsbpbglo/Amfbsbqf`fmvfubp`vqplpfpwbabrvjfqlojaqlp`vbmwlb``fplnjdvfoubqjlp`vbwqlwjfmfpdqvslppfq/Mmfvqlsbnfgjlpeqfmwfb`fq`bgfn/Mplefqwb`l`kfpnlgfoljwbojbofwqbpbod/Vm`lnsqb`vbofpf{jpwf`vfqslpjfmglsqfmpboofdbqujbifpgjmfqlnvq`jbslgq/Msvfpwlgjbqjlsvfaolrvjfqfnbmvfosqlsjl`qjpjp`jfqwlpfdvqlnvfqwfevfmwf`fqqbqdqbmgffef`wlsbqwfpnfgjgbsqlsjbleqf`fwjfqqbf.nbjoubqjbpelqnbpevwvqllaifwlpfdvjqqjfpdlmlqnbpnjpnlp/Vmj`l`bnjmlpjwjlpqby/_mgfajglsqvfabwlofglwfm/Abifp/Vpfpsfql`l`jmblqjdfmwjfmgb`jfmwl`/Mgjykbaobqpfq/Abobwjmbevfqybfpwjoldvfqqbfmwqbq/E{jwlo/_sfybdfmgbu/Agflfujwbqsbdjmbnfwqlpibujfqsbgqfpe/M`jo`bafyb/Mqfbppbojgbfmu/Alibs/_mbavplpajfmfpwf{wlpoofubqsvfgbmevfqwf`ln/Vm`obpfpkvnbmlwfmjglajoablvmjgbgfpw/Mpfgjwbq`qfbgl<X<W=c=k=n<R<V<\\<V<T<W<T=a=n<R<^=m<Y<Y<_<R<S=l<T=n<\\<V<Y=e<Y=o<Z<Y<v<\\<V<]<Y<[<]=g<W<R<Q<T<~=m<Y<S<R<X<A=n<R=n<R<P=k<Y<P<Q<Y=n<W<Y=n=l<\\<[<R<Q<\\<_<X<Y<P<Q<Y<x<W=c<s=l<T<Q<\\=m<Q<T=i=n<Y<P<V=n<R<_<R<X<^<R=n=n<\\<P<M<D<|<P<\\=c<K=n<R<^<\\=m<^<\\<P<Y<P=o<N<\\<V<X<^<\\<Q<\\<P=a=n<T=a=n=o<~<\\<P=n<Y=i<S=l<R=n=o=n<Q<\\<X<X<Q=c<~<R=n=n=l<T<Q<Y<U<~<\\=m<Q<T<P=m<\\<P=n<R=n=l=o<]<r<Q<T<P<T=l<Q<Y<Y<r<r<r<W<T=j=a=n<\\<r<Q<\\<Q<Y<P<X<R<P<P<R<U<X<^<Y<R<Q<R=m=o<X\fHy\fIk\fHU\fId\fHy\fIl\fHT\fIk\fHy\fHR\fHy\fIg\fHx\fH\\\fHF\fH\\\fHD\fIk\fHc\fHy\fHy\fHS\fHA\fIl\fHk\fHT\fHy\fH\\\fHH\fIg\fHU\fIg\fHj\fHF\fHU\fIl\fHC\fHU\fHC\fHR\fHH\fHy\fHI\fHRibdqbm\fHj\fHp\fHp\fIg\fHi\fH@\fHJ\fIg\fH{\fHd\fHp\fHR\fH{\fHc\fHU\fHB\fHk\fHD\fHY\fHU\fHC\fIk\fHI\fIk\fHI\fIl\fHt\fH\\\fHp\fH@\fHJ\fIl\fHy\fHd\fHp\fIl\fHY\fIk\fHD\fHd\fHD\fHc\fHU\fH\\\fHe\fHT\fHB\fIk\fHy\fHB\fHY\fIg\fH^\fIk\fHT\fH@\fHB\fHd\fHJ\fIk\fH\x7F\fH\\\fHj\fHB\fH@\fHT\fHA\fH\\\fH@\fHD\fHv\fH^\fHB\fHD\fHj\fH{\fHT\fIl\fH^\fIl4U5h5e4I5h5e5k4\\4K4N4B4]4U4C4C4K5h5e5k4\\5k4Y5d4]4V5f4]5o4K5j5d5h4K4D5f5j4U4]4Z4\\5h5o5k5j4K5f5d5i5n4K5h4U5h5f4K5j4K5h5o5j4A4F5e5n4D5h5d4A4E4K4B4]5m5n4[4U4D4C4]5o5j4I4\\4K5o5i4K4K4A4C4I5h4K5m5f5k4D4U4Z5o5f5m4D4A4G5d5i5j5d5k5d4O5j4K4@4C4K5h5k4K4_5h5i4U5j4C5h5f4_4U4D4]4Y5h5e5i5j4\\4D5k4K4O5j5k5i4G5h5o5j4F4K5h4K4A5f4G5i4Y4]4X4]4A4A5d5h5d5m5f4K4\\4K5h5o5h5i4]4E4K5j4F4K5h5m4O4D5d4B4K4Y4O5j4F4K5j5k4K5h5f4U4Z5d5d5n4C4K4D5j4B5f4]4D5j4F5h5o5i4X4K4M5d5k5f4K4D5d5n4Y4Y5d5i4K4]5n5i4O4A4C5j4A5j4U4C5i4]4O5f4K4A4E5o4F4D4C5d5j5f4@4D5i5j5k4F4A4F4@5k4E4_5j4E5f4F5i5o4]4E4V4^4E5j5m4_4D5f4F5h5h5k5h5j4K4F5h5o5n5h4D5h5i4K4U5j5k4O5d5h4X5f4M5j5d4]4O5i4K5m5f5o4D5o5h4\\4K4F4]4F4D4D4O5j5k5i4_4K5j5o4D5f4U5m5n4C4A4_5j5h5k5i4X4U4]4O5k5h4X5k4]5n4[4]4[5h4Dsqlejofpfquj`fgfebvowkjnpfoegfwbjop`lmwfmwpvsslqwpwbqwfgnfppbdfpv``fppebpkjlm?wjwof=`lvmwqzb``lvmw`qfbwfgpwlqjfpqfpvowpqvmmjmdsql`fpptqjwjmdlaif`wpujpjaoftfo`lnfbqwj`ofvmhmltmmfwtlqh`lnsbmzgzmbnj`aqltpfqsqjub`zsqlaofnPfquj`fqfpsf`wgjpsobzqfrvfpwqfpfquftfapjwfkjpwlqzeqjfmgplswjlmptlqhjmdufqpjlmnjoojlm`kbmmfotjmglt-bggqfppujpjwfgtfbwkfq`lqqf`wsqlgv`wfgjqf`welqtbqgzlv#`bmqfnlufgpvaif`w`lmwqlobq`kjuf`vqqfmwqfbgjmdojaqbqzojnjwfgnbmbdfqevqwkfqpvnnbqznb`kjmfnjmvwfpsqjubwf`lmwf{wsqldqbnpl`jfwzmvnafqptqjwwfmfmbaofgwqjddfqplvq`fpolbgjmdfofnfmwsbqwmfqejmboozsfqef`wnfbmjmdpzpwfnphffsjmd`vowvqf%rvlw8/ilvqmbosqlif`wpvqeb`fp%rvlw8f{sjqfpqfujftpabobm`fFmdojpk@lmwfmwwkqlvdkSofbpf#lsjmjlm`lmwb`wbufqbdfsqjnbqzujoobdfPsbmjpkdboofqzgf`ojmfnffwjmdnjppjlmslsvobqrvbojwznfbpvqfdfmfqbopsf`jfppfppjlmpf`wjlmtqjwfqp`lvmwfqjmjwjboqfslqwpejdvqfpnfnafqpklogjmdgjpsvwffbqojfqf{sqfppgjdjwbosj`wvqfBmlwkfqnbqqjfgwqbeej`ofbgjmd`kbmdfg`fmwqbouj`wlqzjnbdfp,qfbplmppwvgjfpefbwvqfojpwjmdnvpw#afp`kllopUfqpjlmvpvboozfsjplgfsobzjmddqltjmdlaujlvplufqobzsqfpfmwb`wjlmp?,vo= tqbssfqboqfbgz`fqwbjmqfbojwzpwlqbdfbmlwkfqgfphwlsleefqfgsbwwfqmvmvpvboGjdjwbo`bsjwboTfapjwfebjovqf`lmmf`wqfgv`fgBmgqljggf`bgfpqfdvobq#%bns8#bmjnbopqfofbpfBvwlnbwdfwwjmdnfwklgpmlwkjmdSlsvobq`bswjlmofwwfqp`bswvqfp`jfm`foj`fmpf`kbmdfpFmdobmg>2%bns8Kjpwlqz#>#mft#@fmwqbovsgbwfgPsf`jboMfwtlqhqfrvjqf`lnnfmwtbqmjmd@loofdfwlloabqqfnbjmpaf`bvpffof`wfgGfvwp`kejmbm`ftlqhfqprvj`hozafwtffmf{b`wozpfwwjmdgjpfbpfPl`jfwztfbslmpf{kjajw%ow8"..@lmwqlo`obppfp`lufqfglvwojmfbwwb`hpgfuj`fp+tjmgltsvqslpfwjwof>!Nlajof#hjoojmdpkltjmdJwbojbmgqlssfgkfbujozfeef`wp.2$^*8 `lmejqn@vqqfmwbgubm`fpkbqjmdlsfmjmdgqbtjmdajoojlmlqgfqfgDfqnbmzqfobwfg?,elqn=jm`ovgftkfwkfqgfejmfgP`jfm`f`bwboldBqwj`ofavwwlmpobqdfpwvmjelqnilvqmfzpjgfabq@kj`bdlklojgbzDfmfqbosbppbdf/%rvlw8bmjnbwfeffojmdbqqjufgsbppjmdmbwvqboqlvdkoz- Wkf#avw#mlwgfmpjwzAqjwbjm@kjmfpfob`h#lewqjavwfJqfobmg!#gbwb.eb`wlqpqf`fjufwkbw#jpOjaqbqzkvpabmgjm#eb`wbeebjqp@kbqofpqbgj`boaqlvdkwejmgjmdobmgjmd9obmd>!qfwvqm#ofbgfqpsobmmfgsqfnjvnsb`hbdfBnfqj`bFgjwjlm^%rvlw8Nfppbdfmffg#wlubovf>!`lnsof{ollhjmdpwbwjlmafojfufpnboofq.nlajofqf`lqgptbmw#wlhjmg#leEjqfel{zlv#bqfpjnjobqpwvgjfgnb{jnvnkfbgjmdqbsjgoz`ojnbwfhjmdglnfnfqdfgbnlvmwpelvmgfgsjlmffqelqnvobgzmbpwzklt#wl#Pvsslqwqfufmvff`lmlnzQfpvowpaqlwkfqplogjfqobqdfoz`boojmd-%rvlw8B``lvmwFgtbqg#pfdnfmwQlafqw#feelqwpSb`jej`ofbqmfgvs#tjwkkfjdkw9tf#kbufBmdfofpmbwjlmp\\pfbq`kbssojfgb`rvjqfnbppjufdqbmwfg9#ebopfwqfbwfgajddfpwafmfejwgqjujmdPwvgjfpnjmjnvnsfqkbspnlqmjmdpfoojmdjp#vpfgqfufqpfubqjbmw#qlof>!njppjmdb`kjfufsqlnlwfpwvgfmwplnflmff{wqfnfqfpwlqfalwwln9fuloufgboo#wkfpjwfnbsfmdojpktbz#wl##Bvdvpwpznalop@lnsbmznbwwfqpnvpj`bobdbjmpwpfqujmd~*+*8 sbznfmwwqlvaof`lm`fsw`lnsbqfsbqfmwpsobzfqpqfdjlmpnlmjwlq#$$Wkf#tjmmjmdf{solqfbgbswfgDboofqzsqlgv`fbajojwzfmkbm`f`bqffqp*-#Wkf#`loof`wPfbq`k#bm`jfmwf{jpwfgellwfq#kbmgofqsqjmwfg`lmplofFbpwfqmf{slqwptjmgltp@kbmmfojoofdbomfvwqbopvddfpw\\kfbgfqpjdmjmd-kwno!=pfwwofgtfpwfqm`bvpjmd.tfahjw`objnfgIvpwj`f`kbswfquj`wjnpWklnbp#nlyjoobsqlnjpfsbqwjfpfgjwjlmlvwpjgf9ebopf/kvmgqfgLoznsj`\\avwwlmbvwklqpqfb`kfg`kqlmj`gfnbmgppf`lmgpsqlwf`wbglswfgsqfsbqfmfjwkfqdqfbwozdqfbwfqlufqboojnsqluf`lnnbmgpsf`jbopfbq`k-tlqpkjsevmgjmdwklvdkwkjdkfpwjmpwfbgvwjojwzrvbqwfq@vowvqfwfpwjmd`ofbqozf{slpfgAqltpfqojafqbo~#`bw`kSqlif`wf{bnsofkjgf+*8EolqjgbbmptfqpbooltfgFnsfqlqgfefmpfpfqjlvpeqffglnPfufqbo.avwwlmEvqwkfqlvw#le#">#mvoowqbjmfgGfmnbqhuljg+3*,boo-ipsqfufmwQfrvfpwPwfskfm Tkfm#lapfquf?,k1= Nlgfqm#sqlujgf!#bow>!alqgfqp- Elq# Nbmz#bqwjpwpsltfqfgsfqelqnej`wjlmwzsf#lenfgj`bowj`hfwplsslpfg@lvm`jotjwmfppivpwj`fDflqdf#Afodjvn---?,b=wtjwwfqmlwbaoztbjwjmdtbqebqf#Lwkfq#qbmhjmdskqbpfpnfmwjlmpvqujufp`klobq?,s= #@lvmwqzjdmlqfgolpp#leivpw#bpDflqdjbpwqbmdf?kfbg=?pwlssfg2$^*8 jpobmgpmlwbaofalqgfq9ojpw#le`bqqjfg233/333?,k0= #pfufqboaf`lnfppfof`w#tfggjmd33-kwnonlmbq`klee#wkfwfb`kfqkjdkoz#ajloldzojef#lelq#fufmqjpf#le%qbrvl8sovplmfkvmwjmd+wklvdkGlvdobpiljmjmd`jq`ofpElq#wkfBm`jfmwUjfwmbnufkj`ofpv`k#bp`qzpwboubovf#>Tjmgltpfmilzfgb#pnboobppvnfg?b#jg>!elqfjdm#Boo#qjklt#wkfGjpsobzqfwjqfgkltfufqkjggfm8abwwofppffhjmd`bajmfwtbp#mlwollh#bw`lmgv`wdfw#wkfIbmvbqzkbssfmpwvqmjmdb9klufqLmojmf#Eqfm`k#ob`hjmdwzsj`bof{wqb`wfmfnjfpfufm#jedfmfqbwgf`jgfgbqf#mlw,pfbq`kafojfep.jnbdf9ol`bwfgpwbwj`-oldjm!=`lmufqwujlofmwfmwfqfgejqpw!=`jq`vjwEjmobmg`kfnjpwpkf#tbp23s{8!=bp#pv`kgjujgfg?,psbm=tjoo#afojmf#leb#dqfbwnzpwfqz,jmgf{-eboojmdgvf#wl#qbjotbz`loofdfnlmpwfqgfp`fmwjw#tjwkmv`ofbqIftjpk#sqlwfpwAqjwjpkeoltfqpsqfgj`wqfelqnpavwwlm#tkl#tbpof`wvqfjmpwbmwpvj`jgfdfmfqj`sfqjlgpnbqhfwpPl`jbo#ejpkjmd`lnajmfdqbskj`tjmmfqp?aq#,=?az#wkf#MbwvqboSqjub`z`llhjfplvw`lnfqfploufPtfgjpkaqjfeozSfqpjbmpl#nv`k@fmwvqzgfsj`wp`lovnmpklvpjmdp`qjswpmf{w#wlafbqjmdnbssjmdqfujpfgiRvfqz+.tjgwk9wjwof!=wllowjsPf`wjlmgfpjdmpWvqhjpkzlvmdfq-nbw`k+~*+*8 avqmjmdlsfqbwfgfdqffpplvq`f>Qj`kbqg`olpfozsobpwj`fmwqjfp?,wq= `lolq9 vo#jg>!slppfppqloojmdskzpj`pebjojmdf{f`vwf`lmwfpwojmh#wlGfebvow?aq#,= 9#wqvf/`kbqwfqwlvqjpn`obppj`sql`ffgf{sobjm?,k2= lmojmf-<{no#ufkfosjmdgjbnlmgvpf#wkfbjqojmffmg#..=*-bwwq+qfbgfqpklpwjmd eeeeeeqfbojyfUjm`fmwpjdmbop#pq`>!,Sqlgv`wgfpsjwfgjufqpfwfoojmdSvaoj`#kfog#jmIlpfsk#wkfbwqfbeef`wp?pwzof=b#obqdfglfpm$wobwfq/#Fofnfmwebuj`lm`qfbwlqKvmdbqzBjqslqwpff#wkfpl#wkbwNj`kbfoPzpwfnpSqldqbnp/#bmg##tjgwk>f%rvlw8wqbgjmdofew!= sfqplmpDlogfm#Beebjqpdqbnnbqelqnjmdgfpwqlzjgfb#le`bpf#lelogfpw#wkjp#jp-pq`#>#`bqwllmqfdjpwq@lnnlmpNvpojnpTkbw#jpjm#nbmznbqhjmdqfufbopJmgffg/frvbooz,pklt\\blvwgllqfp`bsf+Bvpwqjbdfmfwj`pzpwfn/Jm#wkf#pjwwjmdKf#boplJpobmgpB`bgfnz \n\n?"..Gbmjfo#ajmgjmdaol`h!=jnslpfgvwjojyfBaqbkbn+f{`fswxtjgwk9svwwjmd*-kwno+\x7F\x7F#X^8 GBWBX#)hjw`kfmnlvmwfgb`wvbo#gjbof`wnbjmoz#\\aobmh$jmpwboof{sfqwpje+wzsfJw#bopl%`lsz8#!=Wfqnpalqm#jmLswjlmpfbpwfqmwbohjmd`lm`fqmdbjmfg#lmdljmdivpwjez`qjwj`peb`wlqzjwp#ltmbppbvowjmujwfgobpwjmdkjp#ltmkqfe>!,!#qfo>!gfufols`lm`fqwgjbdqbngloobqp`ovpwfqsks<jg>bo`lklo*8~*+*8vpjmd#b=?psbm=ufppfopqfujuboBggqfppbnbwfvqbmgqljgboofdfgjoomfpptbohjmd`fmwfqprvbojeznbw`kfpvmjejfgf{wjm`wGfefmpfgjfg#jm \n?"..#`vpwlnpojmhjmdOjwwof#Allh#lefufmjmdnjm-ip<bqf#wkfhlmwbhwwlgbz$p-kwno!#wbqdfw>tfbqjmdBoo#Qjd8 ~*+*8qbjpjmd#Bopl/#`qv`jbobalvw!=gf`obqf..= ?p`ejqfel{bp#nv`kbssojfpjmgf{/#p/#avw#wzsf#>#  ?"..wltbqgpQf`lqgpSqjubwfElqfjdmSqfnjfq`klj`fpUjqwvboqfwvqmp@lnnfmwSltfqfgjmojmf8slufqwz`kbnafqOjujmd#ulovnfpBmwklmzoldjm!#QfobwfgF`lmlnzqfb`kfp`vwwjmddqbujwzojef#jm@kbswfq.pkbgltMlwbaof?,wg= #qfwvqmpwbgjvntjgdfwpubqzjmdwqbufopkfog#aztkl#bqftlqh#jmeb`vowzbmdvobqtkl#kbgbjqslqwwltm#le Plnf#$`oj`h$`kbqdfphfztlqgjw#tjoo`jwz#le+wkjp*8Bmgqft#vmjrvf#`kf`hfglq#nlqf033s{8#qfwvqm8qpjlm>!sovdjmptjwkjm#kfqpfoePwbwjlmEfgfqboufmwvqfsvaojpkpfmw#wlwfmpjlmb`wqfpp`lnf#wlejmdfqpGvhf#lesflsof/f{soljwtkbw#jpkbqnlmzb#nbilq!9!kwwsjm#kjp#nfmv!= nlmwkozleej`fq`lvm`jodbjmjmdfufm#jmPvnnbqzgbwf#leolzbowzejwmfppbmg#tbpfnsfqlqpvsqfnfPf`lmg#kfbqjmdQvppjbmolmdfpwBoafqwbobwfqbopfw#le#pnboo!=-bssfmggl#tjwkefgfqboabmh#leafmfbwkGfpsjwf@bsjwbodqlvmgp*/#bmg#sfq`fmwjw#eqln`olpjmd`lmwbjmJmpwfbgejewffmbp#tfoo-zbkll-qfpslmgejdkwfqlap`vqfqfeof`wlqdbmj`>#Nbwk-fgjwjmdlmojmf#sbggjmdb#tkloflmfqqlqzfbq#lefmg#le#abqqjfqtkfm#jwkfbgfq#klnf#leqfpvnfgqfmbnfgpwqlmd=kfbwjmdqfwbjmp`olvgeqtbz#le#Nbq`k#2hmltjmdjm#sbqwAfwtffmofpplmp`olpfpwujqwvboojmhp!=`qlppfgFMG#..=ebnlvp#btbqgfgOj`fmpfKfbowk#ebjqoz#tfbowkznjmjnboBeqj`bm`lnsfwfobafo!=pjmdjmdebqnfqpAqbpjo*gjp`vppqfsob`fDqfdlqzelmw#`lsvqpvfgbssfbqpnbhf#vsqlvmgfgalwk#leaol`hfgpbt#wkfleej`fp`lolvqpje+gl`vtkfm#kffmelq`fsvpk+evBvdvpw#VWE.;!=Ebmwbpzjm#nlpwjmivqfgVpvboozebqnjmd`olpvqflaif`w#gfefm`fvpf#le#Nfgj`bo?algz= fujgfmwaf#vpfghfz@lgfpj{wffmJpobnj` 333333fmwjqf#tjgfoz#b`wjuf#+wzsflelmf#`bm`lolq#>psfbhfqf{wfmgpSkzpj`pwfqqbjm?walgz=evmfqboujftjmdnjggof#`qj`hfwsqlskfwpkjewfggl`wlqpQvppfoo#wbqdfw`lnsb`wbodfaqbpl`jbo.avoh#lenbm#bmg?,wg= #kf#ofew*-ubo+*ebopf*8oldj`boabmhjmdklnf#wlmbnjmd#Bqjylmb`qfgjwp*8 ~*8 elvmgfqjm#wvqm@loojmpafelqf#Avw#wkf`kbqdfgWjwof!=@bswbjmpsfoofgdlggfppWbd#..=Bggjmd9avw#tbpQf`fmw#sbwjfmwab`h#jm>ebopf%Ojm`lomtf#hmlt@lvmwfqIvgbjpnp`qjsw#bowfqfg$^*8 ##kbp#wkfvm`ofbqFufmw$/alwk#jmmlw#boo ?"..#sob`jmdkbqg#wl#`fmwfqplqw#le`ojfmwppwqffwpAfqmbqgbppfqwpwfmg#wlebmwbpzgltm#jmkbqalvqEqffglniftfoqz,balvw--pfbq`kofdfmgpjp#nbgfnlgfqm#lmoz#lmlmoz#wljnbdf!#ojmfbq#sbjmwfqbmg#mlwqbqfoz#b`qlmzngfojufqpklqwfq33%bns8bp#nbmztjgwk>!,)#?"X@wjwof#>le#wkf#oltfpw#sj`hfg#fp`bsfgvpfp#lesflsofp#Svaoj`Nbwwkftwb`wj`pgbnbdfgtbz#elqobtp#lefbpz#wl#tjmgltpwqlmd##pjnsof~`bw`k+pfufmwkjmelal{tfmw#wlsbjmwfg`jwjyfmJ#glm$wqfwqfbw-#Plnf#tt-!*8 alnajmdnbjowl9nbgf#jm-#Nbmz#`bqqjfp\x7F\x7Fx~8tjtlqh#lepzmlmzngfefbwpebulqfglswj`bosbdfWqbvmofpp#pfmgjmdofew!=?`lnP`lqBoo#wkfiRvfqz-wlvqjpw@obppj`ebopf!#Tjokfonpvavqapdfmvjmfajpklsp-psojw+dolabo#elooltpalgz#lemlnjmbo@lmwb`wpf`vobqofew#wl`kjfeoz.kjggfm.abmmfq?,oj= -#Tkfm#jm#alwkgjpnjppF{solqfbotbzp#ujb#wkfpsb/]lotfoebqfqvojmd#bqqbmdf`bswbjmkjp#plmqvof#lekf#wllhjwpfoe/>3%bns8+`boofgpbnsofpwl#nbhf`ln,sbdNbqwjm#Hfmmfgzb``fswpevoo#lekbmgofgAfpjgfp,,..=?,baof#wlwbqdfwpfppfm`fkjn#wl#jwp#az#`lnnlm-njmfqbowl#wbhftbzp#wlp-lqd,obgujpfgsfmbowzpjnsof9je#wkfzOfwwfqpb#pklqwKfqafqwpwqjhfp#dqlvsp-ofmdwkeojdkwplufqobspoltoz#ofppfq#pl`jbo#?,s= \n\njw#jmwlqbmhfg#qbwf#levo= ##bwwfnswsbjq#lenbhf#jwHlmwbhwBmwlmjlkbujmd#qbwjmdp#b`wjufpwqfbnpwqbssfg!*-`pp+klpwjofofbg#wlojwwof#dqlvsp/Sj`wvqf..=  #qltp>!#laif`wjmufqpf?ellwfq@vpwlnU=?_,p`qploujmd@kbnafqpobufqztlvmgfgtkfqfbp">#$vmgelq#boosbqwoz#.qjdkw9Bqbajbmab`hfg#`fmwvqzvmjw#lenlajof.Fvqlsf/jp#klnfqjph#legfpjqfg@ojmwlm`lpw#lebdf#le#af`lnf#mlmf#les%rvlw8Njggof#fbg$*X3@qjwj`ppwvgjlp=%`lsz8dqlvs!=bppfnaonbhjmd#sqfppfgtjgdfw-sp9!#<#qfavjowaz#plnfElqnfq#fgjwlqpgfobzfg@bmlmj`kbg#wkfsvpkjmd`obpp>!avw#bqfsbqwjboAbazolmalwwln#`bqqjfq@lnnbmgjwp#vpfBp#tjwk`lvqpfpb#wkjqggfmlwfpbopl#jmKlvpwlm13s{8!=b``vpfgglvaof#dlbo#leEbnlvp#*-ajmg+sqjfpwp#Lmojmfjm#Ivozpw#(#!d`lmpvowgf`jnbokfosevoqfujufgjp#ufqzq$($jswolpjmd#efnbofpjp#boplpwqjmdpgbzp#lebqqjuboevwvqf#?laif`welq`jmdPwqjmd+!#,= \n\nkfqf#jpfm`lgfg-##Wkf#aboollmglmf#az,`lnnlmad`lolqobt#le#Jmgjbmbbuljgfgavw#wkf1s{#0s{irvfqz-bewfq#bsloj`z-nfm#bmgellwfq.>#wqvf8elq#vpfp`qffm-Jmgjbm#jnbdf#>ebnjoz/kwws9,,#%maps8gqjufqpfwfqmbopbnf#bpmlwj`fgujftfqp~*+*8 #jp#nlqfpfbplmpelqnfq#wkf#mftjp#ivpw`lmpfmw#Pfbq`ktbp#wkftkz#wkfpkjssfgaq=?aq=tjgwk9#kfjdkw>nbgf#le`vjpjmfjp#wkbwb#ufqz#Bgnjqbo#ej{fg8mlqnbo#NjppjlmSqfpp/#lmwbqjl`kbqpfwwqz#wl#jmubgfg>!wqvf!psb`jmdjp#nlpwb#nlqf#wlwboozeboo#le~*8 ##jnnfmpfwjnf#jmpfw#lvwpbwjpezwl#ejmggltm#wlolw#le#Sobzfqpjm#Ivmfrvbmwvnmlw#wkfwjnf#wlgjpwbmwEjmmjpkpq`#>#+pjmdof#kfos#leDfqnbm#obt#bmgobafofgelqfpwp`llhjmdpsb`f!=kfbgfq.tfoo#bpPwbmofzaqjgdfp,dolabo@qlbwjb#Balvw#X3^8 ##jw/#bmgdqlvsfgafjmd#b*xwkqltkf#nbgfojdkwfqfwkj`boEEEEEE!alwwln!ojhf#b#fnsolzpojuf#jmbp#pffmsqjmwfqnlpw#leva.ojmhqfif`wpbmg#vpfjnbdf!=pv``ffgeffgjmdMv`ofbqjmelqnbwl#kfosTlnfm$pMfjwkfqNf{j`bmsqlwfjm?wbaof#az#nbmzkfbowkzobtpvjwgfujpfg-svpk+xpfoofqppjnsoz#Wkqlvdk-`llhjf#Jnbdf+logfq!=vp-ip!=#Pjm`f#vmjufqpobqdfq#lsfm#wl"..#fmgojfp#jm$^*8 ##nbqhfwtkl#jp#+!GLN@lnbmbdfglmf#elqwzsfle#Hjmdglnsqlejwpsqlslpfwl#pklt`fmwfq8nbgf#jwgqfppfgtfqf#jmnj{wvqfsqf`jpfbqjpjmdpq`#>#$nbhf#b#pf`vqfgAbswjpwulwjmd# \n\nubq#Nbq`k#1dqft#vs@ojnbwf-qfnlufphjoofgtbz#wkf?,kfbg=eb`f#leb`wjmd#qjdkw!=wl#tlqhqfgv`fpkbp#kbgfqf`wfgpklt+*8b`wjlm>allh#lebm#bqfb>>#!kww?kfbgfq ?kwno=`lmelqneb`jmd#`llhjf-qfoz#lmklpwfg#-`vpwlnkf#tfmwavw#elqpsqfbg#Ebnjoz#b#nfbmplvw#wkfelqvnp-ellwbdf!=Nlajo@ofnfmwp!#jg>!bp#kjdkjmwfmpf..=?"..efnbof#jp#pffmjnsojfgpfw#wkfb#pwbwfbmg#kjpebpwfpwafpjgfpavwwlm\\alvmgfg!=?jnd#Jmelal{fufmwp/b#zlvmdbmg#bqfMbwjuf#`kfbsfqWjnflvwbmg#kbpfmdjmfptlm#wkf+nlpwozqjdkw9#ejmg#b#.alwwlnSqjm`f#bqfb#lenlqf#lepfbq`k\\mbwvqf/ofdboozsfqjlg/obmg#lelq#tjwkjmgv`fgsqlujmdnjppjofol`boozBdbjmpwwkf#tbzh%rvlw8s{8!= svpkfg#babmglmmvnfqbo@fqwbjmJm#wkjpnlqf#jmlq#plnfmbnf#jpbmg/#jm`qltmfgJPAM#3.`qfbwfpL`wlafqnbz#mlw`fmwfq#obwf#jmGfefm`ffmb`wfgtjpk#wlaqlbgoz`llojmdlmolbg>jw-#Wkfqf`lufqNfnafqpkfjdkw#bppvnfp?kwno= sflsof-jm#lmf#>tjmgltellwfq\\b#dllg#qfhobnblwkfqp/wl#wkjp\\`llhjfsbmfo!=Olmglm/gfejmfp`qvpkfgabswjpn`lbpwbopwbwvp#wjwof!#nluf#wlolpw#jmafwwfq#jnsojfpqjuboqzpfqufqp#PzpwfnSfqkbspfp#bmg#`lmwfmgeoltjmdobpwfg#qjpf#jmDfmfpjpujft#leqjpjmd#pffn#wlavw#jm#ab`hjmdkf#tjoodjufm#bdjujmd#`jwjfp-eolt#le#Obwfq#boo#avwKjdktbzlmoz#azpjdm#lekf#glfpgjeefqpabwwfqz%bns8obpjmdofpwkqfbwpjmwfdfqwbhf#lmqfevpfg`boofg#>VP%bnsPff#wkfmbwjufpaz#wkjppzpwfn-kfbg#le9klufq/ofpajbmpvqmbnfbmg#boo`lnnlm,kfbgfq\\\\sbqbnpKbqubqg,sj{fo-qfnlubopl#olmdqlof#leiljmwozphzp`qbVmj`lgfaq#,= Bwobmwbmv`ofvp@lvmwz/svqfoz#`lvmw!=fbpjoz#avjog#blm`oj`hb#djufmsljmwfqk%rvlw8fufmwp#fopf#x gjwjlmpmlt#wkf/#tjwk#nbm#tkllqd,Tfalmf#bmg`buboqzKf#gjfgpfbwwof33/333#xtjmgltkbuf#wlje+tjmgbmg#jwpplofoz#n%rvlw8qfmftfgGfwqljwbnlmdpwfjwkfq#wkfn#jmPfmbwlqVp?,b=?Hjmd#leEqbm`jp.sqlgv`kf#vpfgbqw#bmgkjn#bmgvpfg#azp`lqjmdbw#klnfwl#kbufqfobwfpjajojwzeb`wjlmAveebolojmh!=?tkbw#kfeqff#wl@jwz#le`lnf#jmpf`wlqp`lvmwfglmf#gbzmfqulvpprvbqf#~8je+dljm#tkbwjnd!#bojp#lmozpfbq`k,wvfpgbzollpfozPlolnlmpf{vbo#.#?b#kqnfgjvn!GL#MLW#Eqbm`f/tjwk#b#tbq#bmgpf`lmg#wbhf#b#=   nbqhfw-kjdktbzglmf#jm`wjujwz!obpw!=laojdfgqjpf#wl!vmgfejnbgf#wl#Fbqoz#sqbjpfgjm#jwp#elq#kjpbwkofwfIvsjwfqZbkll"#wfqnfg#pl#nbmzqfbooz#p-#Wkf#b#tlnbm<ubovf>gjqf`w#qjdkw!#aj`z`ofb`jmd>!gbz#bmgpwbwjmdQbwkfq/kjdkfq#Leej`f#bqf#mltwjnfp/#tkfm#b#sbz#elqlm#wkjp.ojmh!=8alqgfqbqlvmg#bmmvbo#wkf#Mftsvw#wkf-`ln!#wbhjm#wlb#aqjfe+jm#wkfdqlvsp-8#tjgwkfmyznfppjnsof#jm#obwfxqfwvqmwkfqbszb#sljmwabmmjmdjmhp!= +*8!#qfb#sob`f_v330@bbalvw#bwq= \n\n``lvmw#djufp#b?P@QJSWQbjotbzwkfnfp,wlloal{AzJg+!{kvnbmp/tbw`kfpjm#plnf#je#+tj`lnjmd#elqnbwp#Vmgfq#avw#kbpkbmgfg#nbgf#azwkbm#jmefbq#legfmlwfg,jeqbnfofew#jmulowbdfjm#fb`kb%rvlw8abpf#leJm#nbmzvmgfqdlqfdjnfpb`wjlm#?,s= ?vpwlnUb8%dw8?,jnslqwplq#wkbwnlpwoz#%bns8qf#pjyf>!?,b=?,kb#`obppsbppjufKlpw#>#TkfwkfqefqwjofUbqjlvp>X^8+ev`bnfqbp,=?,wg=b`wp#bpJm#plnf=  ?"lqdbmjp#?aq#,=Afjijmd`bwbo/Lgfvwp`kfvqlsfvfvphbqbdbfjodfpufmphbfpsb/]bnfmpbifvpvbqjlwqbabiln/E{j`ls/Mdjmbpjfnsqfpjpwfnbl`wvaqfgvqbmwfb/]bgjqfnsqfpbnlnfmwlmvfpwqlsqjnfqbwqbu/Epdqb`jbpmvfpwqbsql`fplfpwbglp`bojgbgsfqplmbm/Vnfqlb`vfqgln/Vpj`bnjfnaqllefqwbpbodvmlpsb/Apfpfifnsolgfqf`klbgfn/Mpsqjubglbdqfdbqfmob`fpslpjaofklwfofppfujoobsqjnfql/Vowjnlfufmwlpbq`kjul`vowvqbnvifqfpfmwqbgbbmvm`jlfnabqdlnfq`bgldqbmgfpfpwvgjlnfilqfpefaqfqlgjpf/]lwvqjpnl`/_gjdlslqwbgbfpsb`jlebnjojbbmwlmjlsfqnjwfdvbqgbqbodvmbpsqf`jlpbodvjfmpfmwjglujpjwbpw/Awvol`lml`fqpfdvmgl`lmpfileqbm`jbnjmvwlppfdvmgbwfmfnlpfef`wlpn/Mobdbpfpj/_mqfujpwbdqbmbgb`lnsqbqjmdqfpldbq`/Abb``j/_mf`vbglqrvjfmfpjm`ovplgfafq/Mnbwfqjbklnaqfpnvfpwqbslgq/Abnb/]bmb/Vowjnbfpwbnlplej`jbowbnajfmmjmd/Vmpbovglpslgfnlpnfilqbqslpjwjlmavpjmfppklnfsbdfpf`vqjwzobmdvbdfpwbmgbqg`bnsbjdmefbwvqfp`bwfdlqzf{wfqmbo`kjogqfmqfpfqufgqfpfbq`kf{`kbmdfebulqjwfwfnsobwfnjojwbqzjmgvpwqzpfquj`fpnbwfqjbosqlgv`wpy.jmgf{9`lnnfmwpplewtbqf`lnsofwf`bofmgbqsobwelqnbqwj`ofpqfrvjqfgnlufnfmwrvfpwjlmavjogjmdslojwj`pslppjaofqfojdjlmskzpj`boeffgab`hqfdjpwfqsj`wvqfpgjpbaofgsqlwl`lobvgjfm`fpfwwjmdpb`wjujwzfofnfmwpofbqmjmdbmzwkjmdbapwqb`wsqldqfpplufqujftnbdbyjmff`lmlnj`wqbjmjmdsqfppvqfubqjlvp#?pwqlmd=sqlsfqwzpklssjmdwldfwkfqbgubm`fgafkbujlqgltmolbgefbwvqfgellwaboopfof`wfgObmdvbdfgjpwbm`fqfnfnafqwqb`hjmdsbpptlqgnlgjejfgpwvgfmwpgjqf`wozejdkwjmdmlqwkfqmgbwbabpfefpwjuboaqfbhjmdol`bwjlmjmwfqmfwgqlsgltmsqb`wj`ffujgfm`fevm`wjlmnbqqjbdfqfpslmpfsqlaofnpmfdbwjufsqldqbnpbmbozpjpqfofbpfgabmmfq!=svq`kbpfsloj`jfpqfdjlmbo`qfbwjufbqdvnfmwallhnbqhqfefqqfq`kfnj`bogjujpjlm`booab`hpfsbqbwfsqlif`wp`lmeoj`wkbqgtbqfjmwfqfpwgfojufqznlvmwbjmlawbjmfg>#ebopf8elq+ubq#b``fswfg`bsb`jwz`lnsvwfqjgfmwjwzbjq`qbewfnsolzfgsqlslpfgglnfpwj`jm`ovgfpsqlujgfgklpsjwboufqwj`bo`loobspfbssqlb`ksbqwmfqpoldl!=?bgbvdkwfqbvwklq!#`vowvqboebnjojfp,jnbdfp,bppfnaozsltfqevowfb`kjmdejmjpkfggjpwqj`w`qjwj`bo`dj.ajm,svqslpfpqfrvjqfpfof`wjlmaf`lnjmdsqlujgfpb`bgfnj`f{fq`jpfb`wvbooznfgj`jmf`lmpwbmwb``jgfmwNbdbyjmfgl`vnfmwpwbqwjmdalwwln!=lapfqufg9#%rvlw8f{wfmgfgsqfujlvpPlewtbqf`vpwlnfqgf`jpjlmpwqfmdwkgfwbjofgpojdkwozsobmmjmdwf{wbqfb`vqqfm`zfufqzlmfpwqbjdkwwqbmpefqslpjwjufsqlgv`fgkfqjwbdfpkjssjmdbaplovwfqf`fjufgqfofubmwavwwlm!#ujlofm`fbmztkfqfafmfejwpobvm`kfgqf`fmwozboojbm`felooltfgnvowjsofavoofwjmjm`ovgfgl``vqqfgjmwfqmbo\'+wkjp*-qfsvaoj`=?wq=?wg`lmdqfppqf`lqgfgvowjnbwfplovwjlm?vo#jg>!gjp`lufqKlnf?,b=tfapjwfpmfwtlqhpbowklvdkfmwjqfoznfnlqjbonfppbdfp`lmwjmvfb`wjuf!=plnftkbwuj`wlqjbTfpwfqm##wjwof>!Ol`bwjlm`lmwqb`wujpjwlqpGltmolbgtjwklvw#qjdkw!= nfbpvqfptjgwk#>#ubqjbaofjmuloufgujqdjmjbmlqnboozkbssfmfgb``lvmwppwbmgjmdmbwjlmboQfdjpwfqsqfsbqfg`lmwqlopb``vqbwfajqwkgbzpwqbwfdzleej`jbodqbskj`p`qjnjmboslppjaoz`lmpvnfqSfqplmbopsfbhjmdubojgbwfb`kjfufg-isd!#,=nb`kjmfp?,k1= ##hfztlqgpeqjfmgozaqlwkfqp`lnajmfglqjdjmbo`lnslpfgf{sf`wfgbgfrvbwfsbhjpwbmeloolt!#ubovbaof?,obafo=qfobwjufaqjmdjmdjm`qfbpfdlufqmlqsovdjmp,Ojpw#le#Kfbgfq!=!#mbnf>!#+%rvlw8dqbgvbwf?,kfbg= `lnnfq`fnbobzpjbgjqf`wlqnbjmwbjm8kfjdkw9p`kfgvof`kbmdjmdab`h#wl#`bwkloj`sbwwfqmp`lolq9# dqfbwfpwpvssojfpqfojbaof?,vo= \n\n?pfof`w#`jwjyfmp`olwkjmdtbw`kjmd?oj#jg>!psf`jej``bqqzjmdpfmwfm`f?`fmwfq=`lmwqbpwwkjmhjmd`bw`k+f*plvwkfqmNj`kbfo#nfq`kbmw`bqlvpfosbggjmd9jmwfqjlq-psojw+!ojybwjlmL`wlafq#*xqfwvqmjnsqlufg..%dw8 `lufqbdf`kbjqnbm-smd!#,=pvaif`wpQj`kbqg#tkbwfufqsqlabaozqf`lufqzabpfabooivgdnfmw`lmmf`w--`pp!#,=#tfapjwfqfslqwfggfebvow!,=?,b= fof`wqj`p`lwobmg`qfbwjlmrvbmwjwz-#JPAM#3gjg#mlw#jmpwbm`f.pfbq`k.!#obmd>!psfbhfqp@lnsvwfq`lmwbjmpbq`kjufpnjmjpwfqqfb`wjlmgjp`lvmwJwbojbml`qjwfqjbpwqlmdoz9#$kwws9$p`qjsw$`lufqjmdleefqjmdbssfbqfgAqjwjpk#jgfmwjezEb`fallhmvnfqlvpufkj`ofp`lm`fqmpBnfqj`bmkbmgojmdgju#jg>!Tjoojbn#sqlujgfq\\`lmwfmwb``vqb`zpf`wjlm#bmgfqplmeof{jaof@bwfdlqzobtqfm`f?p`qjsw=obzlvw>!bssqlufg#nb{jnvnkfbgfq!=?,wbaof=Pfquj`fpkbnjowlm`vqqfmw#`bmbgjbm`kbmmfop,wkfnfp,,bqwj`oflswjlmboslqwvdboubovf>!!jmwfqubotjqfofppfmwjwofgbdfm`jfpPfbq`k!#nfbpvqfgwklvpbmgpsfmgjmd%kfoojs8mft#Gbwf!#pjyf>!sbdfMbnfnjggof!#!#,=?,b=kjggfm!=pfrvfm`fsfqplmbolufqeoltlsjmjlmpjoojmljpojmhp!= \n?wjwof=ufqpjlmppbwvqgbzwfqnjmbojwfnsqlsfmdjmffqpf`wjlmpgfpjdmfqsqlslpbo>!ebopf!Fpsb/]loqfofbpfppvanjw!#fq%rvlw8bggjwjlmpznswlnplqjfmwfgqfplvq`fqjdkw!=?sofbpvqfpwbwjlmpkjpwlqz-ofbujmd##alqgfq>`lmwfmwp`fmwfq!=- Plnf#gjqf`wfgpvjwbaofavodbqjb-pklt+*8gfpjdmfgDfmfqbo#`lm`fswpF{bnsofptjoojbnpLqjdjmbo!=?psbm=pfbq`k!=lsfqbwlqqfrvfpwpb#%rvlw8booltjmdGl`vnfmwqfujpjlm-# Wkf#zlvqpfoe@lmwb`w#nj`kjdbmFmdojpk#`lovnajbsqjlqjwzsqjmwjmdgqjmhjmdeb`jojwzqfwvqmfg@lmwfmw#leej`fqpQvppjbm#dfmfqbwf.;;6:.2!jmgj`bwfebnjojbq#rvbojwznbqdjm93#`lmwfmwujftslqw`lmwb`wp.wjwof!=slqwbaof-ofmdwk#fojdjaofjmuloufpbwobmwj`lmolbg>!gfebvow-pvssojfgsbznfmwpdolppbqz Bewfq#dvjgbm`f?,wg=?wgfm`lgjmdnjggof!=`bnf#wl#gjpsobzpp`lwwjpkilmbwkbmnbilqjwztjgdfwp-`ojmj`bowkbjobmgwfb`kfqp?kfbg= \nbeef`wfgpvsslqwpsljmwfq8wlPwqjmd?,pnboo=lhobklnbtjoo#af#jmufpwlq3!#bow>!klojgbzpQfplvq`foj`fmpfg#+tkj`k#-#Bewfq#`lmpjgfqujpjwjmdf{solqfqsqjnbqz#pfbq`k!#bmgqljg!rvj`hoz#nffwjmdpfpwjnbwf8qfwvqm#8`lolq9 #kfjdkw>bssqlubo/#%rvlw8#`kf`hfg-njm-ip!nbdmfwj`=?,b=?,kelqf`bpw-#Tkjof#wkvqpgbzgufqwjpf%fb`vwf8kbp@obppfubovbwflqgfqjmdf{jpwjmdsbwjfmwp#Lmojmf#`lolqbglLswjlmp!`bnsafoo?"..#fmg?,psbm=??aq#,= \\slsvsp\x7Fp`jfm`fp/%rvlw8#rvbojwz#Tjmgltp#bppjdmfgkfjdkw9#?a#`obppof%rvlw8#ubovf>!#@lnsbmzf{bnsofp?jeqbnf#afojfufpsqfpfmwpnbqpkboosbqw#le#sqlsfqoz*- Wkf#wb{lmlnznv`k#le#?,psbm= !#gbwb.pqwvdv/Fpp`qlooWl#sqlif`w?kfbg= bwwlqmfzfnskbpjppslmplqpebm`zal{tlqog$p#tjogojef`kf`hfg>pfppjlmpsqldqbnns{8elmw.#Sqlif`wilvqmbopafojfufgub`bwjlmwklnsplmojdkwjmdbmg#wkf#psf`jbo#alqgfq>3`kf`hjmd?,walgz=?avwwlm#@lnsofwf`ofbqej{ ?kfbg= bqwj`of#?pf`wjlmejmgjmdpqlof#jm#slsvobq##L`wlafqtfapjwf#f{slpvqfvpfg#wl##`kbmdfplsfqbwfg`oj`hjmdfmwfqjmd`lnnbmgpjmelqnfg#mvnafqp##?,gju=`qfbwjmdlmPvanjwnbqzobmg`loofdfpbmbozwj`ojpwjmdp`lmwb`w-olddfgJmbgujplqzpjaojmdp`lmwfmw!p%rvlw8*p-#Wkjp#sb`hbdfp`kf`hal{pvddfpwpsqfdmbmwwlnlqqltpsb`jmd>j`lm-smdibsbmfpf`lgfabpfavwwlm!=dbnaojmdpv`k#bp#/#tkjof#?,psbm=#njpplvqjpslqwjmdwls92s{#-?,psbm=wfmpjlmptjgwk>!1obyzolbgmlufnafqvpfg#jm#kfjdkw>!`qjsw!= %maps8?,?wq=?wg#kfjdkw91,sqlgv`w`lvmwqz#jm`ovgf#ellwfq!#%ow8"..#wjwof!=?,irvfqz-?,elqn= +\vBl\bQ\x7F*+\vUmGx*kqubwphjjwbojbmlqln/Nm(ow/Pqh/Kf4K4]4C5dwbnaj/Emmlwj`jbpnfmpbifpsfqplmbpgfqf`klpmb`jlmbopfquj`jl`lmwb`wlvpvbqjlpsqldqbnbdlajfqmlfnsqfpbpbmvm`jlpubofm`jb`lolnajbgfpsv/Epgfslqwfpsqlzf`wlsqlgv`wls/Vaoj`lmlplwqlpkjpwlqjbsqfpfmwfnjoolmfpnfgjbmwfsqfdvmwbbmwfqjlqqf`vqplpsqlaofnbpbmwjbdlmvfpwqlplsjmj/_mjnsqjnjqnjfmwqbpbn/Eqj`bufmgfglqpl`jfgbgqfpsf`wlqfbojybqqfdjpwqlsbobaqbpjmwfq/Epfmwlm`fpfpsf`jbonjfnaqlpqfbojgbg`/_qglabybqbdlybs/Mdjmbppl`jbofpaolrvfbqdfpwj/_mborvjofqpjpwfnbp`jfm`jbp`lnsofwlufqpj/_m`lnsofwbfpwvgjlps/Vaoj`blaifwjulboj`bmwfavp`bglq`bmwjgbgfmwqbgbpb``jlmfpbq`kjulppvsfqjlqnbzlq/Abbofnbmjbevm`j/_m/Vowjnlpkb`jfmglbrvfoolpfgj`j/_mefqmbmglbnajfmwfeb`fallhmvfpwqbp`ojfmwfpsql`fplpabpwbmwfsqfpfmwbqfslqwbq`lmdqfplsvaoj`bq`lnfq`jl`lmwqbwli/_ufmfpgjpwqjwlw/E`mj`b`lmivmwlfmfqd/Abwqbabibqbpwvqjbpqf`jfmwfvwjojybqalofw/Ampboubglq`lqqf`wbwqbabilpsqjnfqlpmfdl`jlpojafqwbggfwboofpsbmwboobsq/_{jnlbonfq/Abbmjnbofprvj/Emfp`lqby/_mpf``j/_mavp`bmglls`jlmfpf{wfqjlq`lm`fswlwlgbu/Abdbofq/Abfp`qjajqnfgj`jmboj`fm`jb`lmpvowbbpsf`wlp`q/Awj`bg/_obqfpivpwj`jbgfafq/Mmsfq/Alglmf`fpjwbnbmwfmfqsfrvf/]lqf`jajgbwqjavmbowfmfqjef`bm`j/_m`bmbqjbpgfp`bqdbgjufqplpnboolq`bqfrvjfqfw/E`mj`lgfafq/Abujujfmgbejmbmybpbgfobmwfevm`jlmb`lmpfilpgje/A`jo`jvgbgfpbmwjdvbpbubmybgbw/Eqnjmlvmjgbgfpp/Mm`kfy`bnsb/]bplewlmj`qfujpwbp`lmwjfmfpf`wlqfpnlnfmwlpeb`vowbg`q/Egjwlgjufqpbppvsvfpwleb`wlqfppfdvmglpsfrvf/]b<_<R<X<\\<Y=m<W<T<Y=m=n=`<]=g<W<R<]=g=n=`=a=n<R<P<y=m<W<T=n<R<_<R<P<Y<Q=c<^=m<Y=i=a=n<R<U<X<\\<Z<Y<]=g<W<T<_<R<X=o<X<Y<Q=`=a=n<R=n<]=g<W<\\=m<Y<]=c<R<X<T<Q=m<Y<]<Y<Q<\\<X<R=m<\\<U=n=h<R=n<R<Q<Y<_<R=m<^<R<T=m<^<R<U<T<_=l=g=n<R<Z<Y<^=m<Y<P=m<^<R=b<W<T=d=`=a=n<T=i<S<R<V<\\<X<Q<Y<U<X<R<P<\\<P<T=l<\\<W<T<]<R=n<Y<P=o=i<R=n=c<X<^=o=i=m<Y=n<T<W=b<X<T<X<Y<W<R<P<T=l<Y=n<Y<]=c=m<^<R<Y<^<T<X<Y=k<Y<_<R=a=n<T<P=m=k<Y=n=n<Y<P=g=j<Y<Q=g=m=n<\\<W<^<Y<X=`=n<Y<P<Y<^<R<X=g=n<Y<]<Y<^=g=d<Y<Q<\\<P<T=n<T<S<\\=n<R<P=o<S=l<\\<^<W<T=j<\\<R<X<Q<\\<_<R<X=g<[<Q<\\=b<P<R<_=o<X=l=o<_<^=m<Y<U<T<X<Y=n<V<T<Q<R<R<X<Q<R<X<Y<W<\\<X<Y<W<Y=m=l<R<V<T=b<Q=c<^<Y=m=`<y=m=n=`=l<\\<[<\\<Q<\\=d<T4K5h5h5k4K5h4F5f4@5i5f4U4B4K4Y4E4K5h4\\5f4U5h5f5k4@4C5f4C4K5h4N5j4K5h4]4C4F4A5o5i4Y5m4A4E5o4K5j4F4K5h5h5f5f5o5d5j4X4D5o4E5m5f5k4K4D5j4K4F4A5d4K4M4O5o4G4]4B5h4K5h4K5h4A4D4C5h5f5h4C4]5d4_4K4Z4V4[4F5o5d5j5k5j4K5o4_4K4A4E5j4K4C5f4K5h4[4D4U5h5f5o4X5o4]4K5f5i5o5j5i5j5k4K4X4]5o4E4]4J5f4_5j4X5f4[5i4K4\\4K4K5h5m5j4X4D4K4D4F4U4D4]4]4A5i4E5o4K5m4E5f5n5d5h5i4]5o4^5o5h5i4E4O4A5i4C5n5h4D5f5f4U5j5f4Y5d4]4E4[4]5f5n4X4K4]5o4@5d4K5h4O4B4]5e5i4U5j4K4K4D4A4G4U4]5d4Z4D4X5o5h5i4_4@5h4D5j4K5j4B4K5h4C5o4F4K4D5o5h5f4E4D4C5d5j4O5f4Z4K5f5d4@4C5m4]5f5n5o4F4D4F4O5m4Z5h5i4[4D4B4K5o4G4]4D4K4]5o4K5m4Z5h4K4A5h5e5j5m4_5k4O5f4K5i4]4C5d4C4O5j5k4K4C5f5j4K4K5h4K5j5i4U4]4Z4F4U5h5i4C4K4B5h5i5i5o5j\x07\x07\x07\x07\0\x07\x07\0\v\n \b\r\f\f\r\b \n\v\0\v\v\v\v\0\x07qfplvq`fp`lvmwqjfprvfpwjlmpfrvjsnfmw`lnnvmjwzbubjobaofkjdkojdkwGWG,{kwnonbqhfwjmdhmltofgdfplnfwkjmd`lmwbjmfqgjqf`wjlmpvap`qjafbgufqwjpf`kbqb`wfq!#ubovf>!?,pfof`w=Bvpwqbojb!#`obpp>!pjwvbwjlmbvwklqjwzelooltjmdsqjnbqjozlsfqbwjlm`kboofmdfgfufolsfgbmlmznlvpevm`wjlm#evm`wjlmp`lnsbmjfppwqv`wvqfbdqffnfmw!#wjwof>!slwfmwjbofgv`bwjlmbqdvnfmwppf`lmgbqz`lszqjdkwobmdvbdfpf{`ovpjuf`lmgjwjlm?,elqn= pwbwfnfmwbwwfmwjlmAjldqbskz~#fopf#x plovwjlmptkfm#wkf#Bmbozwj`pwfnsobwfpgbmdfqlvppbwfoojwfgl`vnfmwpsvaojpkfqjnslqwbmwsqlwlwzsfjmeovfm`f%qbrvl8?,feef`wjufdfmfqboozwqbmpelqnafbvwjevowqbmpslqwlqdbmjyfgsvaojpkfgsqlnjmfmwvmwjo#wkfwkvnambjoMbwjlmbo#-el`vp+*8lufq#wkf#njdqbwjlmbmmlvm`fgellwfq!= f{`fswjlmofpp#wkbmf{sfmpjufelqnbwjlmeqbnftlqhwfqqjwlqzmgj`bwjlm`vqqfmwoz`obppMbnf`qjwj`jpnwqbgjwjlmfopftkfqfBof{bmgfqbssljmwfgnbwfqjbopaqlbg`bpwnfmwjlmfgbeejojbwf?,lswjlm=wqfbwnfmwgjeefqfmw,gfebvow-Sqfpjgfmwlm`oj`h>!ajldqbskzlwkfqtjpfsfqnbmfmwEqbm/KbjpKlooztllgf{sbmpjlmpwbmgbqgp?,pwzof= qfgv`wjlmGf`fnafq#sqfefqqfg@bnaqjgdflsslmfmwpAvpjmfpp#`lmevpjlm= ?wjwof=sqfpfmwfgf{sobjmfgglfp#mlw#tlqogtjgfjmwfqeb`fslpjwjlmpmftpsbsfq?,wbaof= nlvmwbjmpojhf#wkf#fppfmwjboejmbm`jbopfof`wjlmb`wjlm>!,babmglmfgFgv`bwjlmsbqpfJmw+pwbajojwzvmbaof#wl?,wjwof= qfobwjlmpMlwf#wkbwfeej`jfmwsfqelqnfgwtl#zfbqpPjm`f#wkfwkfqfelqftqbssfq!=bowfqmbwfjm`qfbpfgAbwwof#lesfq`fjufgwqzjmd#wlmf`fppbqzslqwqbzfgfof`wjlmpFojybafwk?,jeqbnf=gjp`lufqzjmpvqbm`fp-ofmdwk8ofdfmgbqzDfldqbskz`bmgjgbwf`lqslqbwfplnfwjnfppfquj`fp-jmkfqjwfg?,pwqlmd=@lnnvmjwzqfojdjlvpol`bwjlmp@lnnjwwffavjogjmdpwkf#tlqogml#olmdfqafdjmmjmdqfefqfm`f`bmmlw#afeqfrvfm`zwzsj`boozjmwl#wkf#qfobwjuf8qf`lqgjmdsqfpjgfmwjmjwjboozwf`kmjrvfwkf#lwkfqjw#`bm#aff{jpwfm`fvmgfqojmfwkjp#wjnfwfofsklmfjwfnp`lsfsqb`wj`fpbgubmwbdf*8qfwvqm#Elq#lwkfqsqlujgjmdgfnl`qb`zalwk#wkf#f{wfmpjufpveefqjmdpvsslqwfg`lnsvwfqp#evm`wjlmsqb`wj`bopbjg#wkbwjw#nbz#afFmdojpk?,eqln#wkf#p`kfgvofggltmolbgp?,obafo= pvpsf`wfgnbqdjm9#3psjqjwvbo?,kfbg= nj`qlplewdqbgvboozgjp`vppfgkf#af`bnff{f`vwjufirvfqz-ipklvpfklog`lmejqnfgsvq`kbpfgojwfqboozgfpwqlzfgvs#wl#wkfubqjbwjlmqfnbjmjmdjw#jp#mlw`fmwvqjfpIbsbmfpf#bnlmd#wkf`lnsofwfgbodlqjwknjmwfqfpwpqfafoojlmvmgfejmfgfm`lvqbdfqfpjybaofjmuloujmdpfmpjwjufvmjufqpbosqlujpjlm+bowklvdkefbwvqjmd`lmgv`wfg*/#tkj`k#`lmwjmvfg.kfbgfq!=Efaqvbqz#mvnfqlvp#lufqeolt9`lnslmfmweqbdnfmwpf{`foofmw`lopsbm>!wf`kmj`bomfbq#wkf#Bgubm`fg#plvq`f#lef{sqfppfgKlmd#Hlmd#Eb`fallhnvowjsof#nf`kbmjpnfofubwjlmleefmpjuf?,elqn= \npslmplqfggl`vnfmw-lq#%rvlw8wkfqf#bqfwklpf#tklnlufnfmwpsql`fppfpgjeej`vowpvanjwwfgqf`lnnfmg`lmujm`fgsqlnlwjmd!#tjgwk>!-qfsob`f+`obppj`bo`lbojwjlmkjp#ejqpwgf`jpjlmpbppjpwbmwjmgj`bwfgfulovwjlm.tqbssfq!fmlvdk#wlbolmd#wkfgfojufqfg..= ?"..Bnfqj`bm#sqlwf`wfgMlufnafq#?,pwzof=?evqmjwvqfJmwfqmfw##lmaovq>!pvpsfmgfgqf`jsjfmwabpfg#lm#Nlqflufq/balojpkfg`loof`wfgtfqf#nbgffnlwjlmbofnfqdfm`zmbqqbwjufbgul`bwfps{8alqgfq`lnnjwwfggjq>!owq!fnsolzffpqfpfbq`k-#pfof`wfgpv``fpplq`vpwlnfqpgjpsobzfgPfswfnafqbgg@obpp+Eb`fallh#pvddfpwfgbmg#obwfqlsfqbwjmdfobalqbwfPlnfwjnfpJmpwjwvwf`fqwbjmozjmpwboofgelooltfqpIfqvpbofnwkfz#kbuf`lnsvwjmddfmfqbwfgsqlujm`fpdvbqbmwffbqajwqbqzqf`ldmjyftbmwfg#wls{8tjgwk9wkflqz#leafkbujlvqTkjof#wkffpwjnbwfgafdbm#wl#jw#af`bnfnbdmjwvgfnvpw#kbufnlqf#wkbmGjqf`wlqzf{wfmpjlmpf`qfwbqzmbwvqboozl``vqqjmdubqjbaofpdjufm#wkfsobwelqn-?,obafo=?ebjofg#wl`lnslvmgphjmgp#le#pl`jfwjfpbolmdpjgf#..%dw8 plvwktfpwwkf#qjdkwqbgjbwjlmnbz#kbuf#vmfp`bsf+pslhfm#jm!#kqfe>!,sqldqbnnflmoz#wkf#`lnf#eqlngjqf`wlqzavqjfg#jmb#pjnjobqwkfz#tfqf?,elmw=?,Mlqtfdjbmpsf`jejfgsqlgv`jmdsbppfmdfq+mft#Gbwfwfnslqbqzej`wjlmboBewfq#wkffrvbwjlmpgltmolbg-qfdvobqozgfufolsfqbaluf#wkfojmhfg#wlskfmlnfmbsfqjlg#lewllowjs!=pvapwbm`fbvwlnbwj`bpsf`w#leBnlmd#wkf`lmmf`wfgfpwjnbwfpBjq#Elq`fpzpwfn#lelaif`wjufjnnfgjbwfnbhjmd#jwsbjmwjmdp`lmrvfqfgbqf#pwjoosql`fgvqfdqltwk#lekfbgfg#azFvqlsfbm#gjujpjlmpnlof`vofpeqbm`kjpfjmwfmwjlmbwwqb`wfg`kjogkllgbopl#vpfggfgj`bwfgpjmdbslqfgfdqff#leebwkfq#le`lmeoj`wp?,b=?,s= `bnf#eqlntfqf#vpfgmlwf#wkbwqf`fjujmdF{f`vwjuffufm#nlqfb``fpp#wl`lnnbmgfqSlojwj`bonvpj`jbmpgfoj`jlvpsqjplmfqpbgufmw#leVWE.;!#,=?"X@GBWBX!=@lmwb`wPlvwkfqm#ad`lolq>!pfqjfp#le-#Jw#tbp#jm#Fvqlsfsfqnjwwfgubojgbwf-bssfbqjmdleej`jboppfqjlvpoz.obmdvbdfjmjwjbwfgf{wfmgjmdolmd.wfqnjmeobwjlmpv`k#wkbwdfw@llhjfnbqhfg#az?,avwwlm=jnsofnfmwavw#jw#jpjm`qfbpfpgltm#wkf#qfrvjqjmdgfsfmgfmw..= ?"..#jmwfqujftTjwk#wkf#`lsjfp#le`lmpfmpvptbp#avjowUfmfyvfob+elqnfqozwkf#pwbwfsfqplmmfopwqbwfdj`ebulvq#lejmufmwjlmTjhjsfgjb`lmwjmfmwujqwvbooztkj`k#tbpsqjm`jsof@lnsofwf#jgfmwj`bopklt#wkbwsqjnjwjufbtbz#eqlnnlof`vobqsqf`jpfozgjpploufgVmgfq#wkfufqpjlm>!=%maps8?,Jw#jp#wkf#Wkjp#jp#tjoo#kbuflqdbmjpnpplnf#wjnfEqjfgqj`ktbp#ejqpwwkf#lmoz#eb`w#wkbwelqn#jg>!sqf`fgjmdWf`kmj`boskzpj`jpwl``vqp#jmmbujdbwlqpf`wjlm!=psbm#jg>!plvdkw#wlafolt#wkfpvqujujmd~?,pwzof=kjp#gfbwkbp#jm#wkf`bvpfg#azsbqwjboozf{jpwjmd#vpjmd#wkftbp#djufmb#ojpw#leofufop#lemlwjlm#leLeej`jbo#gjpnjppfgp`jfmwjpwqfpfnaofpgvsoj`bwff{solpjufqf`lufqfgboo#lwkfqdboofqjfpxsbggjmd9sflsof#leqfdjlm#lebggqfppfpbppl`jbwfjnd#bow>!jm#nlgfqmpklvog#afnfwklg#leqfslqwjmdwjnfpwbnsmffgfg#wlwkf#Dqfbwqfdbqgjmdpffnfg#wlujftfg#bpjnsb`w#lmjgfb#wkbwwkf#Tlqogkfjdkw#lef{sbmgjmdWkfpf#bqf`vqqfmw!=`bqfevooznbjmwbjmp`kbqdf#le@obppj`bobggqfppfgsqfgj`wfgltmfqpkjs?gju#jg>!qjdkw!= qfpjgfm`fofbuf#wkf`lmwfmw!=bqf#lewfm##~*+*8 sqlabaoz#Sqlefpplq.avwwlm!#qfpslmgfgpbzp#wkbwkbg#wl#afsob`fg#jmKvmdbqjbmpwbwvp#lepfqufp#bpVmjufqpbof{f`vwjlmbddqfdbwfelq#tkj`kjmef`wjlmbdqffg#wlkltfufq/#slsvobq!=sob`fg#lm`lmpwqv`wfof`wlqbopznalo#lejm`ovgjmdqfwvqm#wlbq`kjwf`w@kqjpwjbmsqfujlvp#ojujmd#jmfbpjfq#wlsqlefpplq %ow8"..#feef`w#lebmbozwj`ptbp#wbhfmtkfqf#wkfwllh#lufqafojfe#jmBeqjhbbmpbp#ebq#bpsqfufmwfgtlqh#tjwkb#psf`jbo?ejfogpfw@kqjpwnbpQfwqjfufg Jm#wkf#ab`h#jmwlmlqwkfbpwnbdbyjmfp=?pwqlmd=`lnnjwwffdlufqmjmddqlvsp#lepwlqfg#jmfpwbaojpkb#dfmfqbojwp#ejqpwwkfjq#ltmslsvobwfgbm#laif`w@bqjaafbmboolt#wkfgjpwqj`wptjp`lmpjmol`bwjlm-8#tjgwk9#jmkbajwfgPl`jbojpwIbmvbqz#2?,ellwfq=pjnjobqoz`klj`f#lewkf#pbnf#psf`jej`#avpjmfpp#Wkf#ejqpw-ofmdwk8#gfpjqf#wlgfbo#tjwkpjm`f#wkfvpfqBdfmw`lm`fjufgjmgf{-sksbp#%rvlw8fmdbdf#jmqf`fmwoz/eft#zfbqptfqf#bopl ?kfbg= ?fgjwfg#azbqf#hmltm`jwjfp#jmb``fpphfz`lmgfnmfgbopl#kbufpfquj`fp/ebnjoz#leP`kllo#le`lmufqwfgmbwvqf#le#obmdvbdfnjmjpwfqp?,laif`w=wkfqf#jp#b#slsvobqpfrvfm`fpbgul`bwfgWkfz#tfqfbmz#lwkfqol`bwjlm>fmwfq#wkfnv`k#nlqfqfeof`wfgtbp#mbnfglqjdjmbo#b#wzsj`botkfm#wkfzfmdjmffqp`lvog#mlwqfpjgfmwptfgmfpgbzwkf#wkjqg#sqlgv`wpIbmvbqz#1tkbw#wkfzb#`fqwbjmqfb`wjlmpsql`fpplqbewfq#kjpwkf#obpw#`lmwbjmfg!=?,gju= ?,b=?,wg=gfsfmg#lmpfbq`k!= sjf`fp#le`lnsfwjmdQfefqfm`fwfmmfppfftkj`k#kbp#ufqpjlm>?,psbm=#??,kfbgfq=djufp#wkfkjpwlqjbmubovf>!!=sbggjmd93ujft#wkbwwldfwkfq/wkf#nlpw#tbp#elvmgpvapfw#lebwwb`h#lm`kjogqfm/sljmwp#lesfqplmbo#slpjwjlm9boofdfgoz@ofufobmgtbp#obwfqbmg#bewfqbqf#djufmtbp#pwjoop`qloojmdgfpjdm#lenbhfp#wkfnv`k#ofppBnfqj`bmp- Bewfq#/#avw#wkfNvpfvn#leolvjpjbmb+eqln#wkfnjmmfplwbsbqwj`ofpb#sql`fppGlnjmj`bmulovnf#leqfwvqmjmdgfefmpjuf33s{\x7Fqjdknbgf#eqlnnlvpflufq!#pwzof>!pwbwfp#le+tkj`k#jp`lmwjmvfpEqbm`jp`lavjogjmd#tjwklvw#btjwk#plnftkl#tlvogb#elqn#leb#sbqw#leafelqf#jwhmltm#bp##Pfquj`fpol`bwjlm#bmg#lewfmnfbpvqjmdbmg#jw#jpsbsfqab`hubovfp#le ?wjwof=>#tjmglt-gfwfqnjmffq%rvlw8#sobzfg#azbmg#fbqoz?,`fmwfq=eqln#wkjpwkf#wkqffsltfq#bmgle#%rvlw8jmmfqKWNO?b#kqfe>!z9jmojmf8@kvq`k#lewkf#fufmwufqz#kjdkleej`jbo#.kfjdkw9#`lmwfmw>!,`dj.ajm,wl#`qfbwfbeqjhbbmpfpsfqbmwleqbm/Kbjpobwujf)Mvojfwvuj)_(`f)Mwjmb(af)Mwjmb\fUh\fT{\fTN\n{I\np@Fr\vBl\bQ\x7F A{\vUmGx A{ypYA\0zX\bTV\bWl\bUdBM\vB{\npV\v@xB\\\np@DbGz al\npa fM uD\bV~mx\vQ}\ndS p\\\bVK\bS]\bU|oD kV\ved\vHR\nb~M`\nJpoD|Q\nLPSw\bTl\nAI\nxC\bWt BqF`Cm\vLm Kx }t\bPv\ny\\\naB V\x7F\nZdXUli fr i@ BHBDBV `V\n[] p_ Tn\n~A\nxR uD `{\bV@ Tn HK AJ\vxsZf\nqIZf\vBM\v|j }t\bSM\nmC\vQ}pfquj`jlpbqw/A`volbqdfmwjmbabq`folmb`vborvjfqsvaoj`bglsqlgv`wlpslo/Awj`bqfpsvfpwbtjhjsfgjbpjdvjfmwfa/Vprvfgb`lnvmjgbgpfdvqjgbgsqjm`jsbosqfdvmwbp`lmwfmjglqfpslmgfqufmfyvfobsqlaofnbpgj`jfnaqfqfob`j/_mmlujfnaqfpjnjobqfpsqlzf`wlpsqldqbnbpjmpwjwvwlb`wjujgbgfm`vfmwqbf`lmln/Abjn/Mdfmfp`lmwb`wbqgfp`bqdbqmf`fpbqjlbwfm`j/_mwfo/Eelml`lnjpj/_m`bm`jlmfp`bsb`jgbgfm`lmwqbqbm/Mojpjpebulqjwlpw/Eqnjmlpsqlujm`jbfwjrvfwbpfofnfmwlpevm`jlmfpqfpvowbgl`bq/M`wfqsqlsjfgbgsqjm`jsjlmf`fpjgbgnvmj`jsbo`qfb`j/_mgfp`bqdbpsqfpfm`jb`lnfq`jbolsjmjlmfpfifq`j`jlfgjwlqjbopbobnbm`bdlmy/Mofygl`vnfmwlsfo/A`vobqf`jfmwfpdfmfqbofpwbqqbdlmbsq/M`wj`bmlufgbgfpsqlsvfpwbsb`jfmwfpw/E`mj`bplaifwjulp`lmwb`wlp\fHB\fIk\fHn\fH^\fHS\fHc\fHU\fId\fHn\fH{\fHC\fHR\fHT\fHR\fHI\fHc\fHY\fHn\fH\\\fHU\fIk\fHy\fIg\fHd\fHy\fIm\fHw\fH\\\fHU\fHR\fH@\fHR\fHJ\fHy\fHU\fHR\fHT\fHA\fIl\fHU\fIm\fHc\fH\\\fHU\fIl\fHB\fId\fHn\fHJ\fHS\fHD\fH@\fHR\fHHgjsolgl`p\fHT\fHB\fHC\fH\\\fIn\fHF\fHD\fHR\fHB\fHF\fHH\fHR\fHG\fHS\fH\\\fHx\fHT\fHH\fHH\fH\\\fHU\fH^\fIg\fH{\fHU\fIm\fHj\fH@\fHR\fH\\\fHJ\fIk\fHZ\fHU\fIm\fHd\fHz\fIk\fH^\fHC\fHJ\fHS\fHy\fHR\fHB\fHY\fIk\fH@\fHH\fIl\fHD\fH@\fIl\fHv\fHB\fI`\fHH\fHT\fHR\fH^\fH^\fIk\fHz\fHp\fIe\fH@\fHB\fHJ\fHJ\fHH\fHI\fHR\fHD\fHU\fIl\fHZ\fHU\fH\\\fHi\fH^\fH{\fHy\fHA\fIl\fHD\fH{\fH\\\fHF\fHR\fHT\fH\\\fHR\fHH\fHy\fHS\fHc\fHe\fHT\fIk\fH{\fHC\fIl\fHU\fIn\fHm\fHj\fH{\fIk\fHs\fIl\fHB\fHz\fIg\fHp\fHy\fHR\fH\\\fHi\fHA\fIl\fH{\fHC\fIk\fHH\fIm\fHB\fHY\fIg\fHs\fHJ\fIk\fHn\fHi\fH{\fH\\\fH|\fHT\fIk\fHB\fIk\fH^\fH^\fH{\fHR\fHU\fHR\fH^\fHf\fHF\fH\\\fHv\fHR\fH\\\fH|\fHT\fHR\fHJ\fIk\fH\\\fHp\fHS\fHT\fHJ\fHS\fH^\fH@\fHn\fHJ\fH@\fHD\fHR\fHU\fIn\fHn\fH^\fHR\fHz\fHp\fIl\fHH\fH@\fHs\fHD\fHB\fHS\fH^\fHk\fHT\fIk\fHj\fHD\fIk\fHD\fHC\fHR\fHy\fIm\fH^\fH^\fIe\fH{\fHA\fHR\fH{\fH\\\fIk\fH^\fHp\fH{\fHU\fH\\\fHR\fHB\fH^\fH{\fIk\fHF\fIk\fHp\fHU\fHR\fHI\fHk\fHT\fIl\fHT\fHU\fIl\fHy\fH^\fHR\fHL\fIl\fHy\fHU\fHR\fHm\fHJ\fIn\fH\\\fHH\fHU\fHH\fHT\fHR\fHH\fHC\fHR\fHJ\fHj\fHC\fHR\fHF\fHR\fHy\fHy\fI`\fHD\fHZ\fHR\fHB\fHJ\fIk\fHz\fHC\fHU\fIl\fH\\\fHR\fHC\fHz\fIm\fHJ\fH^\fH{\fIl`bwfdlqjfpf{sfqjfm`f?,wjwof= @lszqjdkw#ibubp`qjsw`lmgjwjlmpfufqzwkjmd?s#`obpp>!wf`kmloldzab`hdqlvmg?b#`obpp>!nbmbdfnfmw%`lsz8#132ibubP`qjsw`kbqb`wfqpaqfbg`qvnawkfnpfoufpklqjylmwbodlufqmnfmw@bojelqmjbb`wjujwjfpgjp`lufqfgMbujdbwjlmwqbmpjwjlm`lmmf`wjlmmbujdbwjlmbssfbqbm`f?,wjwof=?n`kf`hal{!#wf`kmjrvfpsqlwf`wjlmbssbqfmwozbp#tfoo#bpvmw$/#$VB.qfplovwjlmlsfqbwjlmpwfofujpjlmwqbmpobwfgTbpkjmdwlmmbujdbwlq-#>#tjmglt-jnsqfppjlm%ow8aq%dw8ojwfqbwvqfslsvobwjlmad`lolq>! fpsf`jbooz#`lmwfmw>!sqlgv`wjlmmftpofwwfqsqlsfqwjfpgfejmjwjlmofbgfqpkjsWf`kmloldzSbqojbnfmw`lnsbqjplmvo#`obpp>!-jmgf{Le+!`lm`ovpjlmgjp`vppjlm`lnslmfmwpajloldj`boQfulovwjlm\\`lmwbjmfqvmgfqpwllgmlp`qjsw=?sfqnjppjlmfb`k#lwkfqbwnlpskfqf#lmel`vp>!?elqn#jg>!sql`fppjmdwkjp-ubovfdfmfqbwjlm@lmefqfm`fpvapfrvfmwtfoo.hmltmubqjbwjlmpqfsvwbwjlmskfmlnfmlmgjp`jsojmfoldl-smd!#+gl`vnfmw/alvmgbqjfpf{sqfppjlmpfwwofnfmwAb`hdqlvmglvw#le#wkffmwfqsqjpf+!kwwsp9!#vmfp`bsf+!sbpptlqg!#gfnl`qbwj`?b#kqfe>!,tqbssfq!= nfnafqpkjsojmdvjpwj`s{8sbggjmdskjolplskzbppjpwbm`fvmjufqpjwzeb`jojwjfpqf`ldmjyfgsqfefqfm`fje#+wzsflenbjmwbjmfgul`bavobqzkzslwkfpjp-pvanjw+*8%bns8maps8bmmlwbwjlmafkjmg#wkfElvmgbwjlmsvaojpkfq!bppvnswjlmjmwqlgv`fg`lqqvswjlmp`jfmwjpwpf{soj`jwozjmpwfbg#legjnfmpjlmp#lm@oj`h>!`lmpjgfqfggfsbqwnfmwl``vsbwjlmpllm#bewfqjmufpwnfmwsqlmlvm`fgjgfmwjejfgf{sfqjnfmwNbmbdfnfmwdfldqbskj`!#kfjdkw>!ojmh#qfo>!-qfsob`f+,gfsqfppjlm`lmefqfm`fsvmjpknfmwfojnjmbwfgqfpjpwbm`fbgbswbwjlmlsslpjwjlmtfoo#hmltmpvssofnfmwgfwfqnjmfgk2#`obpp>!3s{8nbqdjmnf`kbmj`bopwbwjpwj`p`fofaqbwfgDlufqmnfmw Gvqjmd#wgfufolsfqpbqwjej`jbofrvjubofmwlqjdjmbwfg@lnnjppjlmbwwb`knfmw?psbm#jg>!wkfqf#tfqfMfgfqobmgpafzlmg#wkfqfdjpwfqfgilvqmbojpweqfrvfmwozboo#le#wkfobmd>!fm!#?,pwzof= baplovwf8#pvsslqwjmdf{wqfnfoz#nbjmpwqfbn?,pwqlmd=#slsvobqjwzfnsolznfmw?,wbaof= #`lopsbm>!?,elqn= ##`lmufqpjlmbalvw#wkf#?,s=?,gju=jmwfdqbwfg!#obmd>!fmSlqwvdvfpfpvapwjwvwfjmgjujgvbojnslppjaofnvowjnfgjbbonlpw#boos{#plojg# bsbqw#eqlnpvaif`w#wljm#Fmdojpk`qjwj`jyfgf{`fsw#elqdvjgfojmfplqjdjmboozqfnbqhbaofwkf#pf`lmgk1#`obpp>!?b#wjwof>!+jm`ovgjmdsbqbnfwfqpsqlkjajwfg>#!kwws9,,gj`wjlmbqzsfq`fswjlmqfulovwjlmelvmgbwjlms{8kfjdkw9pv``fppevopvsslqwfqpnjoofmmjvnkjp#ebwkfqwkf#%rvlw8ml.qfsfbw8`lnnfq`jbojmgvpwqjbofm`lvqbdfgbnlvmw#le#vmleej`jbofeej`jfm`zQfefqfm`fp`llqgjmbwfgjp`objnfqf{sfgjwjlmgfufolsjmd`bo`vobwfgpjnsojejfgofdjwjnbwfpvapwqjmd+3!#`obpp>!`lnsofwfozjoovpwqbwfejuf#zfbqpjmpwqvnfmwSvaojpkjmd2!#`obpp>!spz`kloldz`lmejgfm`fmvnafq#le#bapfm`f#leel`vpfg#lmiljmfg#wkfpwqv`wvqfpsqfujlvpoz=?,jeqbnf=lm`f#bdbjmavw#qbwkfqjnnjdqbmwple#`lvqpf/b#dqlvs#leOjwfqbwvqfVmojhf#wkf?,b=%maps8 evm`wjlm#jw#tbp#wkf@lmufmwjlmbvwlnlajofSqlwfpwbmwbddqfppjufbewfq#wkf#Pjnjobqoz/!#,=?,gju=`loof`wjlm evm`wjlmujpjajojwzwkf#vpf#leulovmwffqpbwwqb`wjlmvmgfq#wkf#wkqfbwfmfg)?"X@GBWBXjnslqwbm`fjm#dfmfqbowkf#obwwfq?,elqn= ?,-jmgf{Le+$j#>#38#j#?gjeefqfm`fgfulwfg#wlwqbgjwjlmppfbq`k#elqvowjnbwfozwlvqmbnfmwbwwqjavwfppl.`boofg#~ ?,pwzof=fubovbwjlmfnskbpjyfgb``fppjaof?,pf`wjlm=pv``fppjlmbolmd#tjwkNfbmtkjof/jmgvpwqjfp?,b=?aq#,=kbp#af`lnfbpsf`wp#leWfofujpjlmpveej`jfmwabphfwabooalwk#pjgfp`lmwjmvjmdbm#bqwj`of?jnd#bow>!bgufmwvqfpkjp#nlwkfqnbm`kfpwfqsqjm`jsofpsbqwj`vobq`lnnfmwbqzfeef`wp#legf`jgfg#wl!=?pwqlmd=svaojpkfqpIlvqmbo#legjeej`vowzeb`jojwbwfb``fswbaofpwzof-`pp!\nevm`wjlm#jmmlubwjlm=@lszqjdkwpjwvbwjlmptlvog#kbufavpjmfppfpGj`wjlmbqzpwbwfnfmwplewfm#vpfgsfqpjpwfmwjm#Ibmvbqz`lnsqjpjmd?,wjwof= \ngjsolnbwj``lmwbjmjmdsfqelqnjmdf{wfmpjlmpnbz#mlw#af`lm`fsw#le#lm`oj`h>!Jw#jp#boplejmbm`jbo#nbhjmd#wkfOv{fnalvqdbggjwjlmbobqf#`boofgfmdbdfg#jm!p`qjsw!*8avw#jw#tbpfof`wqlmj`lmpvanjw>! ?"..#Fmg#fof`wqj`boleej`jboozpvddfpwjlmwls#le#wkfvmojhf#wkfBvpwqbojbmLqjdjmboozqfefqfm`fp ?,kfbg= qf`ldmjpfgjmjwjbojyfojnjwfg#wlBof{bmgqjbqfwjqfnfmwBgufmwvqfpelvq#zfbqp %ow8"..#jm`qfbpjmdgf`lqbwjlmk0#`obpp>!lqjdjmp#lelaojdbwjlmqfdvobwjlm`obppjejfg+evm`wjlm+bgubmwbdfpafjmd#wkf#kjpwlqjbmp?abpf#kqfeqfsfbwfgoztjoojmd#wl`lnsbqbaofgfpjdmbwfgmlnjmbwjlmevm`wjlmbojmpjgf#wkfqfufobwjlmfmg#le#wkfp#elq#wkf#bvwklqjyfgqfevpfg#wlwbhf#sob`fbvwlmlnlvp`lnsqlnjpfslojwj`bo#qfpwbvqbmwwtl#le#wkfEfaqvbqz#1rvbojwz#leptelaif`w-vmgfqpwbmgmfbqoz#bootqjwwfm#azjmwfqujftp!#tjgwk>!2tjwkgqbtboeolbw9ofewjp#vpvbooz`bmgjgbwfpmftpsbsfqpnzpwfqjlvpGfsbqwnfmwafpw#hmltmsbqojbnfmwpvssqfppfg`lmufmjfmwqfnfnafqfggjeefqfmw#pzpwfnbwj`kbp#ofg#wlsqlsbdbmgb`lmwqloofgjmeovfm`fp`fqfnlmjbosql`objnfgSqlwf`wjlmoj#`obpp>!P`jfmwjej``obpp>!ml.wqbgfnbqhpnlqf#wkbm#tjgfpsqfbgOjafqbwjlmwllh#sob`fgbz#le#wkfbp#olmd#bpjnsqjplmfgBggjwjlmbo ?kfbg= ?nObalqbwlqzMlufnafq#1f{`fswjlmpJmgvpwqjboubqjfwz#leeolbw9#ofeGvqjmd#wkfbppfppnfmwkbuf#affm#gfbop#tjwkPwbwjpwj`pl``vqqfm`f,vo=?,gju=`ofbqej{!=wkf#svaoj`nbmz#zfbqptkj`k#tfqflufq#wjnf/pzmlmznlvp`lmwfmw!= sqfpvnbaozkjp#ebnjozvpfqBdfmw-vmf{sf`wfgjm`ovgjmd#`kboofmdfgb#njmlqjwzvmgfejmfg!afolmdp#wlwbhfm#eqlnjm#L`wlafqslpjwjlm9#pbjg#wl#afqfojdjlvp#Efgfqbwjlm#qltpsbm>!lmoz#b#eftnfbmw#wkbwofg#wl#wkf..= ?gju#?ejfogpfw=Bq`kajpkls#`obpp>!mlafjmd#vpfgbssqlb`kfpsqjujofdfpmlp`qjsw= qfpvowp#jmnbz#af#wkfFbpwfq#fddnf`kbmjpnpqfbplmbaofSlsvobwjlm@loof`wjlmpfof`wfg!=mlp`qjsw=,jmgf{-sksbqqjubo#le.ippgh$**8nbmbdfg#wljm`lnsofwf`bpvbowjfp`lnsofwjlm@kqjpwjbmpPfswfnafq#bqjwknfwj`sql`fgvqfpnjdkw#kbufSqlgv`wjlmjw#bssfbqpSkjolplskzeqjfmgpkjsofbgjmd#wldjujmd#wkfwltbqg#wkfdvbqbmwffggl`vnfmwfg`lolq9 333ujgfl#dbnf`lnnjppjlmqfeof`wjmd`kbmdf#wkfbppl`jbwfgpbmp.pfqjelmhfzsqfpp8#sbggjmd9Kf#tbp#wkfvmgfqozjmdwzsj`booz#/#bmg#wkf#pq`Fofnfmwpv``fppjufpjm`f#wkf#pklvog#af#mfwtlqhjmdb``lvmwjmdvpf#le#wkfoltfq#wkbmpkltp#wkbw?,psbm= \n\n`lnsobjmwp`lmwjmvlvprvbmwjwjfpbpwqlmlnfqkf#gjg#mlwgvf#wl#jwpbssojfg#wlbm#bufqbdffeelqwp#wlwkf#evwvqfbwwfnsw#wlWkfqfelqf/`bsbajojwzQfsvaoj`bmtbp#elqnfgFof`wqlmj`hjolnfwfqp`kboofmdfpsvaojpkjmdwkf#elqnfqjmgjdfmlvpgjqf`wjlmppvapjgjbqz`lmpsjqb`zgfwbjop#lebmg#jm#wkfbeelqgbaofpvapwbm`fpqfbplm#elq`lmufmwjlmjwfnwzsf>!baplovwfozpvsslpfgozqfnbjmfg#bbwwqb`wjufwqbufoojmdpfsbqbwfozel`vpfp#lmfofnfmwbqzbssoj`baofelvmg#wkbwpwzofpkffwnbmvp`qjswpwbmgp#elq#ml.qfsfbw+plnfwjnfp@lnnfq`jbojm#Bnfqj`bvmgfqwbhfmrvbqwfq#lebm#f{bnsofsfqplmboozjmgf{-sks<?,avwwlm= sfq`fmwbdfafpw.hmltm`qfbwjmd#b!#gjq>!owqOjfvwfmbmw ?gju#jg>!wkfz#tlvogbajojwz#lenbgf#vs#lemlwfg#wkbw`ofbq#wkbwbqdvf#wkbwwl#bmlwkfq`kjogqfm$psvqslpf#leelqnvobwfgabpfg#vslmwkf#qfdjlmpvaif`w#lesbppfmdfqpslppfppjlm- Jm#wkf#Afelqf#wkfbewfqtbqgp`vqqfmwoz#b`qlpp#wkfp`jfmwjej``lnnvmjwz-`bsjwbojpnjm#Dfqnbmzqjdkw.tjmdwkf#pzpwfnPl`jfwz#leslojwj`jbmgjqf`wjlm9tfmw#lm#wlqfnlubo#le#Mft#Zlqh#bsbqwnfmwpjmgj`bwjlmgvqjmd#wkfvmofpp#wkfkjpwlqj`bokbg#affm#bgfejmjwjufjmdqfgjfmwbwwfmgbm`f@fmwfq#elqsqlnjmfm`fqfbgzPwbwfpwqbwfdjfpavw#jm#wkfbp#sbqw#le`lmpwjwvwf`objn#wkbwobalqbwlqz`lnsbwjaofebjovqf#le/#pv`k#bp#afdbm#tjwkvpjmd#wkf#wl#sqlujgfefbwvqf#leeqln#tkj`k,!#`obpp>!dfloldj`bopfufqbo#legfojafqbwfjnslqwbmw#klogp#wkbwjmd%rvlw8#ubojdm>wlswkf#Dfqnbmlvwpjgf#lemfdlwjbwfgkjp#`bqffqpfsbqbwjlmjg>!pfbq`ktbp#`boofgwkf#elvqwkqf`qfbwjlmlwkfq#wkbmsqfufmwjlmtkjof#wkf#fgv`bwjlm/`lmmf`wjmdb``vqbwfoztfqf#avjowtbp#hjoofgbdqffnfmwpnv`k#nlqf#Gvf#wl#wkftjgwk9#233plnf#lwkfqHjmdgln#lewkf#fmwjqfebnlvp#elqwl#`lmmf`wlaif`wjufpwkf#Eqfm`ksflsof#bmgefbwvqfg!=jp#pbjg#wlpwqv`wvqboqfefqfmgvnnlpw#lewfmb#pfsbqbwf.= ?gju#jg#Leej`jbo#tlqogtjgf-bqjb.obafowkf#sobmfwbmg#jw#tbpg!#ubovf>!ollhjmd#bwafmfej`jbobqf#jm#wkfnlmjwlqjmdqfslqwfgozwkf#nlgfqmtlqhjmd#lmbooltfg#wltkfqf#wkf#jmmlubwjuf?,b=?,gju=plvmgwqb`hpfbq`kElqnwfmg#wl#afjmsvw#jg>!lsfmjmd#leqfpwqj`wfgbglswfg#azbggqfppjmdwkfloldjbmnfwklgp#leubqjbmw#le@kqjpwjbm#ufqz#obqdfbvwlnlwjufaz#ebq#wkfqbmdf#eqlnsvqpvjw#leeloolt#wkfaqlvdkw#wljm#Fmdobmgbdqff#wkbwb``vpfg#le`lnfp#eqlnsqfufmwjmdgju#pwzof>kjp#lq#kfqwqfnfmglvpeqffgln#le`lm`fqmjmd3#2fn#2fn8Abphfwaboo,pwzof-`ppbm#fbqojfqfufm#bewfq,!#wjwof>!-`ln,jmgf{wbhjmd#wkfsjwwpavqdk`lmwfmw!=?p`qjsw=+ewvqmfg#lvwkbujmd#wkf?,psbm= #l``bpjlmboaf`bvpf#jwpwbqwfg#wlskzpj`booz=?,gju= ##`qfbwfg#az@vqqfmwoz/#ad`lolq>!wbajmgf{>!gjpbpwqlvpBmbozwj`p#bopl#kbp#b=?gju#jg>!?,pwzof= ?`boofg#elqpjmdfq#bmg-pq`#>#!,,ujlobwjlmpwkjp#sljmw`lmpwbmwozjp#ol`bwfgqf`lqgjmdpg#eqln#wkfmfgfqobmgpslqwvdv/Fp;N;};D;u;F5m4K4]4_7`gfpbqqlool`lnfmwbqjlfgv`b`j/_mpfswjfnaqfqfdjpwqbglgjqf``j/_mvaj`b`j/_msvaoj`jgbgqfpsvfpwbpqfpvowbglpjnslqwbmwfqfpfqubglpbqw/A`volpgjefqfmwfppjdvjfmwfpqfs/Vaoj`bpjwvb`j/_mnjmjpwfqjlsqjub`jgbggjqf`wlqjlelqnb`j/_mslaob`j/_msqfpjgfmwf`lmw','fmjglpb``fplqjlpwf`kmlqbwjsfqplmbofp`bwfdlq/Abfpsf`jbofpgjpslmjaofb`wvbojgbgqfefqfm`jbuboobglojgajaojlwf`bqfob`jlmfp`bofmgbqjlslo/Awj`bpbmwfqjlqfpgl`vnfmwlpmbwvqbofybnbwfqjbofpgjefqfm`jbf`lm/_nj`bwqbmpslqwfqlgq/Advfysbqwj`jsbqfm`vfmwqbmgjp`vpj/_mfpwqv`wvqbevmgb`j/_meqf`vfmwfpsfqnbmfmwfwlwbonfmwf<P<R<Z<Q<R<]=o<X<Y=n<P<R<Z<Y=n<^=l<Y<P=c=n<\\<V<Z<Y=k=n<R<]=g<]<R<W<Y<Y<R=k<Y<Q=`=a=n<R<_<R<V<R<_<X<\\<S<R=m<W<Y<^=m<Y<_<R=m<\\<U=n<Y=k<Y=l<Y<[<P<R<_=o=n=m<\\<U=n<\\<Z<T<[<Q<T<P<Y<Z<X=o<]=o<X=o=n<s<R<T=m<V<[<X<Y=m=`<^<T<X<Y<R=m<^=c<[<T<Q=o<Z<Q<R=m<^<R<Y<U<W=b<X<Y<U<S<R=l<Q<R<P<Q<R<_<R<X<Y=n<Y<U=m<^<R<T=i<S=l<\\<^<\\=n<\\<V<R<U<P<Y=m=n<R<T<P<Y<Y=n<Z<T<[<Q=`<R<X<Q<R<U<W=o=k=d<Y<S<Y=l<Y<X=k<\\=m=n<T=k<\\=m=n=`=l<\\<]<R=n<Q<R<^=g=i<S=l<\\<^<R=m<R<]<R<U<S<R=n<R<P<P<Y<Q<Y<Y=k<T=m<W<Y<Q<R<^=g<Y=o=m<W=o<_<R<V<R<W<R<Q<\\<[<\\<X=n<\\<V<R<Y=n<R<_<X<\\<S<R=k=n<T<s<R=m<W<Y=n<\\<V<T<Y<Q<R<^=g<U=m=n<R<T=n=n<\\<V<T=i=m=l<\\<[=o<M<\\<Q<V=n=h<R=l=o<P<v<R<_<X<\\<V<Q<T<_<T=m<W<R<^<\\<Q<\\=d<Y<U<Q<\\<U=n<T=m<^<R<T<P=m<^=c<[=`<W=b<]<R<U=k<\\=m=n<R=m=l<Y<X<T<v=l<R<P<Y<H<R=l=o<P=l=g<Q<V<Y=m=n<\\<W<T<S<R<T=m<V=n=g=m=c=k<P<Y=m=c=j=j<Y<Q=n=l=n=l=o<X<\\=m<\\<P=g=i=l=g<Q<V<\\<q<R<^=g<U=k<\\=m<R<^<P<Y=m=n<\\=h<T<W=`<P<P<\\=l=n<\\=m=n=l<\\<Q<P<Y=m=n<Y=n<Y<V=m=n<Q<\\=d<T=i<P<T<Q=o=n<T<P<Y<Q<T<T<P<Y=b=n<Q<R<P<Y=l<_<R=l<R<X=m<\\<P<R<P=a=n<R<P=o<V<R<Q=j<Y=m<^<R<Y<P<V<\\<V<R<U<|=l=i<T<^5i5j4F4C5e4I4]4_4K5h4]4_4K5h4E4K5h4U4K5i5o4F4D5k4K4D4]4K5i4@4K5h5f5d5i4K5h4Y5d4]4@4C5f4C4E4K5h4U4Z5d4I4Z4K5m4E4K5h5n4_5i4K5h4U4K4D4F4A5i5f5h5i5h5m4K4F5i5h4F5n5e4F4U4C5f5h4K5h4X4U4]4O4B4D4K4]4F4[5d5f4]4U5h5f5o5i4I4]5m4K5n4[5h4D4K4F4K5h5h4V4E4F4]4F5f4D4K5h5j4K4_4K5h4X5f4B5i5j4F4C5f4K5h4U4]4D4K5h5n4Y4Y4K5m5h4K5i4U5h5f5k4K4F4A4C5f4G4K5h5h5k5i4K5h4U5i5h5i5o4F4D4E5f5i5o5j5o4K5h4[5m5h5m5f4C5f5d4I4C4K4]4E4F4K4]5f4B4K5h4Y4A4E4F4_4@5f5h4K5h5d5n4F4U5j4C5i4K5i4C5f5j4E4F4Y5i5f5i4O4]4X5f5m4K5h4\\5f5j4U4]4D5f4E4D5d4K4D4E4O5h4U4K4D4K5h4_5m4]5i4X4K5o5h4F4U4K5h5e4K5h4O5d5h4K5h4_5j4E4@4K5i4U4E4K5h4Y4A5m4K5h4C5f5j5o5h5i4K4F4K5h4B4K4Y4K5h5i5h5m4O4U4Z4K4M5o4F4K4D4E4K5h4B5f4]4]4_4K4J5h4K5h5n5h4D4K5h4O4C4D5i5n4K4[4U5i4]4K4_5h5i5j4[5n4E4K5h5o4F4D4K5h4]4@5h4K4X4F4]5o4K5h5n4C5i5f4U4[5f5opAzWbdMbnf+-isd!#bow>!2s{#plojg# -dje!#bow>!wqbmpsbqfmwjmelqnbwjlmbssoj`bwjlm!#lm`oj`h>!fpwbaojpkfgbgufqwjpjmd-smd!#bow>!fmujqlmnfmwsfqelqnbm`fbssqlsqjbwf%bns8ngbpk8jnnfgjbwfoz?,pwqlmd=?,qbwkfq#wkbmwfnsfqbwvqfgfufolsnfmw`lnsfwjwjlmsob`fklogfqujpjajojwz9`lszqjdkw!=3!#kfjdkw>!fufm#wklvdkqfsob`fnfmwgfpwjmbwjlm@lqslqbwjlm?vo#`obpp>!Bppl`jbwjlmjmgjujgvbopsfqpsf`wjufpfwWjnflvw+vqo+kwws9,,nbwkfnbwj`pnbqdjm.wls9fufmwvbooz#gfp`qjswjlm*#ml.qfsfbw`loof`wjlmp-ISD\x7Fwkvna\x7Fsbqwj`jsbwf,kfbg=?algzeolbw9ofew8?oj#`obpp>!kvmgqfgp#le Kltfufq/#`lnslpjwjlm`ofbq9alwk8`llsfqbwjlmtjwkjm#wkf#obafo#elq>!alqgfq.wls9Mft#Yfbobmgqf`lnnfmgfgsklwldqbskzjmwfqfpwjmd%ow8pvs%dw8`lmwqlufqpzMfwkfqobmgpbowfqmbwjufnb{ofmdwk>!ptjwyfqobmgGfufolsnfmwfppfmwjbooz Bowklvdk#?,wf{wbqfb=wkvmgfqajqgqfsqfpfmwfg%bns8mgbpk8psf`vobwjlm`lnnvmjwjfpofdjpobwjlmfof`wqlmj`p \n?gju#jg>!joovpwqbwfgfmdjmffqjmdwfqqjwlqjfpbvwklqjwjfpgjpwqjavwfg5!#kfjdkw>!pbmp.pfqje8`bsbaof#le#gjpbssfbqfgjmwfqb`wjufollhjmd#elqjw#tlvog#afBedkbmjpwbmtbp#`qfbwfgNbwk-eollq+pvqqlvmgjmd`bm#bopl#aflapfqubwjlmnbjmwfmbm`ffm`lvmwfqfg?k1#`obpp>!nlqf#qf`fmwjw#kbp#affmjmubpjlm#le*-dfwWjnf+*evmgbnfmwboGfpsjwf#wkf!=?gju#jg>!jmpsjqbwjlmf{bnjmbwjlmsqfsbqbwjlmf{sobmbwjlm?jmsvw#jg>!?,b=?,psbm=ufqpjlmp#lejmpwqvnfmwpafelqf#wkf##>#$kwws9,,Gfp`qjswjlmqfobwjufoz#-pvapwqjmd+fb`k#le#wkff{sfqjnfmwpjmeovfmwjbojmwfdqbwjlmnbmz#sflsofgvf#wl#wkf#`lnajmbwjlmgl#mlw#kbufNjggof#Fbpw?mlp`qjsw=?`lszqjdkw!#sfqkbsp#wkfjmpwjwvwjlmjm#Gf`fnafqbqqbmdfnfmwnlpw#ebnlvpsfqplmbojwz`qfbwjlm#leojnjwbwjlmpf{`ovpjufozplufqfjdmwz.`lmwfmw!= ?wg#`obpp>!vmgfqdqlvmgsbqboofo#wlgl`wqjmf#lel``vsjfg#azwfqnjmloldzQfmbjppbm`fb#mvnafq#lepvsslqw#elqf{solqbwjlmqf`ldmjwjlmsqfgf`fpplq?jnd#pq`>!,?k2#`obpp>!svaoj`bwjlmnbz#bopl#afpsf`jbojyfg?,ejfogpfw=sqldqfppjufnjoojlmp#lepwbwfp#wkbwfmelq`fnfmwbqlvmg#wkf#lmf#bmlwkfq-sbqfmwMlgfbdqj`vowvqfBowfqmbwjufqfpfbq`kfqpwltbqgp#wkfNlpw#le#wkfnbmz#lwkfq#+fpsf`jbooz?wg#tjgwk>!8tjgwk9233&jmgfsfmgfmw?k0#`obpp>!#lm`kbmdf>!*-bgg@obpp+jmwfqb`wjlmLmf#le#wkf#gbvdkwfq#leb``fpplqjfpaqbm`kfp#le ?gju#jg>!wkf#obqdfpwgf`obqbwjlmqfdvobwjlmpJmelqnbwjlmwqbmpobwjlmgl`vnfmwbqzjm#lqgfq#wl!= ?kfbg= ?!#kfjdkw>!2b`qlpp#wkf#lqjfmwbwjlm*8?,p`qjsw=jnsofnfmwfg`bm#af#pffmwkfqf#tbp#bgfnlmpwqbwf`lmwbjmfq!=`lmmf`wjlmpwkf#Aqjwjpktbp#tqjwwfm"jnslqwbmw8s{8#nbqdjm.elooltfg#azbajojwz#wl#`lnsoj`bwfggvqjmd#wkf#jnnjdqbwjlmbopl#`boofg?k7#`obpp>!gjpwjm`wjlmqfsob`fg#azdlufqmnfmwpol`bwjlm#lejm#Mlufnafqtkfwkfq#wkf?,s= ?,gju=b`rvjpjwjlm`boofg#wkf#sfqpf`vwjlmgfpjdmbwjlmxelmw.pjyf9bssfbqfg#jmjmufpwjdbwff{sfqjfm`fgnlpw#ojhfoztjgfoz#vpfggjp`vppjlmpsqfpfm`f#le#+gl`vnfmw-f{wfmpjufozJw#kbp#affmjw#glfp#mlw`lmwqbqz#wljmkbajwbmwpjnsqlufnfmwp`klobqpkjs`lmpvnswjlmjmpwqv`wjlmelq#f{bnsoflmf#lq#nlqfs{8#sbggjmdwkf#`vqqfmwb#pfqjfp#lebqf#vpvboozqlof#jm#wkfsqfujlvpoz#gfqjubwjufpfujgfm`f#lef{sfqjfm`fp`lolqp`kfnfpwbwfg#wkbw`fqwjej`bwf?,b=?,gju= #pfof`wfg>!kjdk#p`klloqfpslmpf#wl`lnelqwbaofbglswjlm#lewkqff#zfbqpwkf#`lvmwqzjm#Efaqvbqzpl#wkbw#wkfsflsof#tkl#sqlujgfg#az?sbqbn#mbnfbeef`wfg#azjm#wfqnp#lebssljmwnfmwJPL.;;6:.2!tbp#alqm#jmkjpwlqj`bo#qfdbqgfg#bpnfbpvqfnfmwjp#abpfg#lm#bmg#lwkfq#9#evm`wjlm+pjdmjej`bmw`fofaqbwjlmwqbmpnjwwfg,ip,irvfqz-jp#hmltm#bpwkflqfwj`bo#wbajmgf{>!jw#`lvog#af?mlp`qjsw= kbujmd#affm ?kfbg= ?#%rvlw8Wkf#`lnsjobwjlmkf#kbg#affmsqlgv`fg#azskjolplskfq`lmpwqv`wfgjmwfmgfg#wlbnlmd#lwkfq`lnsbqfg#wlwl#pbz#wkbwFmdjmffqjmdb#gjeefqfmwqfefqqfg#wlgjeefqfm`fpafojfe#wkbwsklwldqbskpjgfmwjezjmdKjpwlqz#le#Qfsvaoj`#lemf`fppbqjozsqlabajojwzwf`kmj`boozofbujmd#wkfpsf`wb`vobqeqb`wjlm#lefof`wqj`jwzkfbg#le#wkfqfpwbvqbmwpsbqwmfqpkjsfnskbpjp#lmnlpw#qf`fmwpkbqf#tjwk#pbzjmd#wkbwejoofg#tjwkgfpjdmfg#wljw#jp#lewfm!=?,jeqbnf=bp#elooltp9nfqdfg#tjwkwkqlvdk#wkf`lnnfq`jbo#sljmwfg#lvwlsslqwvmjwzujft#le#wkfqfrvjqfnfmwgjujpjlm#lesqldqbnnjmdkf#qf`fjufgpfwJmwfqubo!=?,psbm=?,jm#Mft#Zlqhbggjwjlmbo#`lnsqfppjlm ?gju#jg>!jm`lqslqbwf8?,p`qjsw=?bwwb`kFufmwaf`bnf#wkf#!#wbqdfw>!\\`bqqjfg#lvwPlnf#le#wkfp`jfm`f#bmgwkf#wjnf#le@lmwbjmfq!=nbjmwbjmjmd@kqjpwlskfqNv`k#le#wkftqjwjmdp#le!#kfjdkw>!1pjyf#le#wkfufqpjlm#le#nj{wvqf#le#afwtffm#wkfF{bnsofp#lefgv`bwjlmbo`lnsfwjwjuf#lmpvanjw>!gjqf`wlq#legjpwjm`wjuf,GWG#[KWNO#qfobwjmd#wlwfmgfm`z#wlsqlujm`f#letkj`k#tlvoggfpsjwf#wkfp`jfmwjej`#ofdjpobwvqf-jmmfqKWNO#boofdbwjlmpBdqj`vowvqftbp#vpfg#jmbssqlb`k#wljmwfoojdfmwzfbqp#obwfq/pbmp.pfqjegfwfqnjmjmdSfqelqnbm`fbssfbqbm`fp/#tkj`k#jp#elvmgbwjlmpbaaqfujbwfgkjdkfq#wkbmp#eqln#wkf#jmgjujgvbo#`lnslpfg#lepvsslpfg#wl`objnp#wkbwbwwqjavwjlmelmw.pjyf92fofnfmwp#leKjpwlqj`bo#kjp#aqlwkfqbw#wkf#wjnfbmmjufqpbqzdlufqmfg#azqfobwfg#wl#vowjnbwfoz#jmmlubwjlmpjw#jp#pwjoo`bm#lmoz#afgfejmjwjlmpwlDNWPwqjmdB#mvnafq#lejnd#`obpp>!Fufmwvbooz/tbp#`kbmdfgl``vqqfg#jmmfjdkalqjmdgjpwjmdvjpktkfm#kf#tbpjmwqlgv`jmdwfqqfpwqjboNbmz#le#wkfbqdvfp#wkbwbm#Bnfqj`bm`lmrvfpw#letjgfpsqfbg#tfqf#hjoofgp`qffm#bmg#Jm#lqgfq#wlf{sf`wfg#wlgfp`fmgbmwpbqf#ol`bwfgofdjpobwjufdfmfqbwjlmp#ab`hdqlvmgnlpw#sflsofzfbqp#bewfqwkfqf#jp#mlwkf#kjdkfpweqfrvfmwoz#wkfz#gl#mlwbqdvfg#wkbwpkltfg#wkbwsqfglnjmbmwwkfloldj`boaz#wkf#wjnf`lmpjgfqjmdpklqw.ojufg?,psbm=?,b=`bm#af#vpfgufqz#ojwwoflmf#le#wkf#kbg#boqfbgzjmwfqsqfwfg`lnnvmj`bwfefbwvqfp#ledlufqmnfmw/?,mlp`qjsw=fmwfqfg#wkf!#kfjdkw>!0Jmgfsfmgfmwslsvobwjlmpobqdf.p`bof-#Bowklvdk#vpfg#jm#wkfgfpwqv`wjlmslppjajojwzpwbqwjmd#jmwtl#lq#nlqff{sqfppjlmppvalqgjmbwfobqdfq#wkbmkjpwlqz#bmg?,lswjlm= @lmwjmfmwbofojnjmbwjmdtjoo#mlw#afsqb`wj`f#lejm#eqlmw#lepjwf#le#wkffmpvqf#wkbwwl#`qfbwf#bnjppjppjssjslwfmwjboozlvwpwbmgjmdafwwfq#wkbmtkbw#jp#mltpjwvbwfg#jmnfwb#mbnf>!WqbgjwjlmbopvddfpwjlmpWqbmpobwjlmwkf#elqn#lebwnlpskfqj`jgfloldj`bofmwfqsqjpfp`bo`vobwjmdfbpw#le#wkfqfnmbmwp#lesovdjmpsbdf,jmgf{-sks<qfnbjmfg#jmwqbmpelqnfgKf#tbp#bopltbp#boqfbgzpwbwjpwj`bojm#ebulq#leNjmjpwqz#lenlufnfmw#leelqnvobwjlmjp#qfrvjqfg?ojmh#qfo>!Wkjp#jp#wkf#?b#kqfe>!,slsvobqjyfgjmuloufg#jmbqf#vpfg#wlbmg#pfufqbonbgf#az#wkfpffnp#wl#afojhfoz#wkbwSbofpwjmjbmmbnfg#bewfqjw#kbg#affmnlpw#`lnnlmwl#qfefq#wlavw#wkjp#jp`lmpf`vwjufwfnslqbqjozJm#dfmfqbo/`lmufmwjlmpwbhfp#sob`fpvagjujpjlmwfqqjwlqjbolsfqbwjlmbosfqnbmfmwoztbp#obqdfozlvwaqfbh#lejm#wkf#sbpwelooltjmd#b#{nomp9ld>!=?b#`obpp>!`obpp>!wf{w@lmufqpjlm#nbz#af#vpfgnbmveb`wvqfbewfq#afjmd`ofbqej{!= rvfpwjlm#letbp#fof`wfgwl#af`lnf#baf`bvpf#le#plnf#sflsofjmpsjqfg#azpv``fppevo#b#wjnf#tkfmnlqf#`lnnlmbnlmdpw#wkfbm#leej`jbotjgwk9233&8wf`kmloldz/tbp#bglswfgwl#hffs#wkfpfwwofnfmwpojuf#ajqwkpjmgf{-kwno!@lmmf`wj`vwbppjdmfg#wl%bns8wjnfp8b``lvmw#elqbojdm>qjdkwwkf#`lnsbmzbotbzp#affmqfwvqmfg#wljmuloufnfmwAf`bvpf#wkfwkjp#sfqjlg!#mbnf>!r!#`lmejmfg#wlb#qfpvow#leubovf>!!#,=jp#b`wvboozFmujqlmnfmw ?,kfbg= @lmufqpfoz/= ?gju#jg>!3!#tjgwk>!2jp#sqlabaozkbuf#af`lnf`lmwqloojmdwkf#sqlaofn`jwjyfmp#leslojwj`jbmpqfb`kfg#wkfbp#fbqoz#bp9mlmf8#lufq?wbaof#`fooubojgjwz#legjqf`woz#wllmnlvpfgltmtkfqf#jw#jptkfm#jw#tbpnfnafqp#le#qfobwjlm#wlb``lnnlgbwfbolmd#tjwk#Jm#wkf#obwfwkf#Fmdojpkgfoj`jlvp!=wkjp#jp#mlwwkf#sqfpfmwje#wkfz#bqfbmg#ejmboozb#nbwwfq#le \n?,gju=  ?,p`qjsw=ebpwfq#wkbmnbilqjwz#lebewfq#tkj`k`lnsbqbwjufwl#nbjmwbjmjnsqluf#wkfbtbqgfg#wkffq!#`obpp>!eqbnfalqgfqqfpwlqbwjlmjm#wkf#pbnfbmbozpjp#lewkfjq#ejqpwGvqjmd#wkf#`lmwjmfmwbopfrvfm`f#leevm`wjlm+*xelmw.pjyf9#tlqh#lm#wkf?,p`qjsw= ?afdjmp#tjwkibubp`qjsw9`lmpwjwvfmwtbp#elvmgfgfrvjojaqjvnbppvnf#wkbwjp#djufm#azmffgp#wl#af`llqgjmbwfpwkf#ubqjlvpbqf#sbqw#lelmoz#jm#wkfpf`wjlmp#lejp#b#`lnnlmwkflqjfp#legjp`lufqjfpbppl`jbwjlmfgdf#le#wkfpwqfmdwk#leslpjwjlm#jmsqfpfmw.gbzvmjufqpboozwl#elqn#wkfavw#jmpwfbg`lqslqbwjlmbwwb`kfg#wljp#`lnnlmozqfbplmp#elq#%rvlw8wkf#`bm#af#nbgftbp#baof#wltkj`k#nfbmpavw#gjg#mlwlmNlvpfLufqbp#slppjaoflsfqbwfg#az`lnjmd#eqlnwkf#sqjnbqzbggjwjlm#leelq#pfufqbowqbmpefqqfgb#sfqjlg#lebqf#baof#wlkltfufq/#jwpklvog#kbufnv`k#obqdfq \n?,p`qjsw=bglswfg#wkfsqlsfqwz#legjqf`wfg#azfeef`wjufoztbp#aqlvdkw`kjogqfm#leSqldqbnnjmdolmdfq#wkbmnbmvp`qjswptbq#bdbjmpwaz#nfbmp#lebmg#nlpw#lepjnjobq#wl#sqlsqjfwbqzlqjdjmbwjmdsqfpwjdjlvpdqbnnbwj`bof{sfqjfm`f-wl#nbhf#wkfJw#tbp#bopljp#elvmg#jm`lnsfwjwlqpjm#wkf#V-P-qfsob`f#wkfaqlvdkw#wkf`bo`vobwjlmeboo#le#wkfwkf#dfmfqbosqb`wj`boozjm#klmlq#leqfofbpfg#jmqfpjgfmwjbobmg#plnf#lehjmd#le#wkfqfb`wjlm#wl2pw#Fbqo#le`vowvqf#bmgsqjm`jsbooz?,wjwof= ##wkfz#`bm#afab`h#wl#wkfplnf#le#kjpf{slpvqf#wlbqf#pjnjobqelqn#le#wkfbggEbulqjwf`jwjyfmpkjssbqw#jm#wkfsflsof#tjwkjm#sqb`wj`fwl#`lmwjmvf%bns8njmvp8bssqlufg#az#wkf#ejqpw#booltfg#wkfbmg#elq#wkfevm`wjlmjmdsobzjmd#wkfplovwjlm#wlkfjdkw>!3!#jm#kjp#allhnlqf#wkbm#belooltp#wkf`qfbwfg#wkfsqfpfm`f#jm%maps8?,wg=mbwjlmbojpwwkf#jgfb#leb#`kbqb`wfqtfqf#elq`fg#`obpp>!awmgbzp#le#wkfefbwvqfg#jmpkltjmd#wkfjmwfqfpw#jmjm#sob`f#lewvqm#le#wkfwkf#kfbg#leOlqg#le#wkfslojwj`boozkbp#jwp#ltmFgv`bwjlmbobssqlubo#leplnf#le#wkffb`k#lwkfq/afkbujlq#lebmg#af`bvpfbmg#bmlwkfqbssfbqfg#lmqf`lqgfg#jmaob`h%rvlw8nbz#jm`ovgfwkf#tlqog$p`bm#ofbg#wlqfefqp#wl#balqgfq>!3!#dlufqmnfmw#tjmmjmd#wkfqfpvowfg#jm#tkjof#wkf#Tbpkjmdwlm/wkf#pvaif`w`jwz#jm#wkf=?,gju= \n\nqfeof`w#wkfwl#`lnsofwfaf`bnf#nlqfqbgjlb`wjufqfif`wfg#aztjwklvw#bmzkjp#ebwkfq/tkj`k#`lvog`lsz#le#wkfwl#jmgj`bwfb#slojwj`bob``lvmwp#le`lmpwjwvwfptlqhfg#tjwkfq?,b=?,oj=le#kjp#ojefb``lnsbmjfg`ojfmwTjgwksqfufmw#wkfOfdjpobwjufgjeefqfmwozwldfwkfq#jmkbp#pfufqboelq#bmlwkfqwf{w#le#wkfelvmgfg#wkff#tjwk#wkf#jp#vpfg#elq`kbmdfg#wkfvpvbooz#wkfsob`f#tkfqftkfqfbp#wkf=#?b#kqfe>!!=?b#kqfe>!wkfnpfoufp/bowklvdk#kfwkbw#`bm#afwqbgjwjlmboqlof#le#wkfbp#b#qfpvowqfnluf@kjoggfpjdmfg#aztfpw#le#wkfPlnf#sflsofsqlgv`wjlm/pjgf#le#wkfmftpofwwfqpvpfg#az#wkfgltm#wl#wkfb``fswfg#azojuf#jm#wkfbwwfnswp#wllvwpjgf#wkfeqfrvfm`jfpKltfufq/#jmsqldqbnnfqpbw#ofbpw#jmbssql{jnbwfbowklvdk#jwtbp#sbqw#lebmg#ubqjlvpDlufqmlq#lewkf#bqwj`ofwvqmfg#jmwl=?b#kqfe>!,wkf#f`lmlnzjp#wkf#nlpwnlpw#tjgfoztlvog#obwfqbmg#sfqkbspqjpf#wl#wkfl``vqp#tkfmvmgfq#tkj`k`lmgjwjlmp-wkf#tfpwfqmwkflqz#wkbwjp#sqlgv`fgwkf#`jwz#lejm#tkj`k#kfpffm#jm#wkfwkf#`fmwqboavjogjmd#lenbmz#le#kjpbqfb#le#wkfjp#wkf#lmoznlpw#le#wkfnbmz#le#wkfwkf#TfpwfqmWkfqf#jp#mlf{wfmgfg#wlPwbwjpwj`bo`lopsbm>1#\x7Fpklqw#pwlqzslppjaof#wlwlsloldj`bo`qjwj`bo#leqfslqwfg#wlb#@kqjpwjbmgf`jpjlm#wljp#frvbo#wlsqlaofnp#leWkjp#`bm#afnfq`kbmgjpfelq#nlpw#leml#fujgfm`ffgjwjlmp#lefofnfmwp#jm%rvlw8-#Wkf`ln,jnbdfp,tkj`k#nbhfpwkf#sql`fppqfnbjmp#wkfojwfqbwvqf/jp#b#nfnafqwkf#slsvobqwkf#bm`jfmwsqlaofnp#jmwjnf#le#wkfgfefbwfg#azalgz#le#wkfb#eft#zfbqpnv`k#le#wkfwkf#tlqh#le@bojelqmjb/pfqufg#bp#bdlufqmnfmw-`lm`fswp#lenlufnfmw#jm\n\n?gju#jg>!jw!#ubovf>!obmdvbdf#lebp#wkfz#bqfsqlgv`fg#jmjp#wkbw#wkff{sobjm#wkfgju=?,gju= Kltfufq#wkfofbg#wl#wkf\n?b#kqfe>!,tbp#dqbmwfgsflsof#kbuf`lmwjmvbooztbp#pffm#bpbmg#qfobwfgwkf#qlof#lesqlslpfg#azle#wkf#afpwfb`k#lwkfq-@lmpwbmwjmfsflsof#eqlngjbof`wp#lewl#qfujpjlmtbp#qfmbnfgb#plvq`f#lewkf#jmjwjboobvm`kfg#jmsqlujgf#wkfwl#wkf#tfpwtkfqf#wkfqfbmg#pjnjobqafwtffm#wtljp#bopl#wkfFmdojpk#bmg`lmgjwjlmp/wkbw#jw#tbpfmwjwofg#wlwkfnpfoufp-rvbmwjwz#leqbmpsbqfm`zwkf#pbnf#bpwl#iljm#wkf`lvmwqz#bmgwkjp#jp#wkfWkjp#ofg#wlb#pwbwfnfmw`lmwqbpw#wlobpwJmgf{Lewkqlvdk#kjpjp#gfpjdmfgwkf#wfqn#jpjp#sqlujgfgsqlwf`w#wkfmd?,b=?,oj=Wkf#`vqqfmwwkf#pjwf#lepvapwbmwjbof{sfqjfm`f/jm#wkf#Tfpwwkfz#pklvogpolufm(ajmb`lnfmwbqjlpvmjufqpjgbg`lmgj`jlmfpb`wjujgbgfpf{sfqjfm`jbwf`mlold/Absqlgv``j/_msvmwvb`j/_mbsoj`b`j/_m`lmwqbpf/]b`bwfdlq/Abpqfdjpwqbqpfsqlefpjlmbowqbwbnjfmwlqfd/Apwqbwfpf`qfwbq/Absqjm`jsbofpsqlwf``j/_mjnslqwbmwfpjnslqwbm`jbslpjajojgbgjmwfqfpbmwf`qf`jnjfmwlmf`fpjgbgfppvp`qjajqpfbpl`jb`j/_mgjpslmjaofpfubovb`j/_mfpwvgjbmwfpqfpslmpbaofqfplov`j/_mdvbgbobibqbqfdjpwqbglplslqwvmjgbg`lnfq`jbofpelwldqbe/Abbvwlqjgbgfpjmdfmjfq/Abwfofujpj/_m`lnsfwfm`jblsfqb`jlmfpfpwbaof`jglpjnsofnfmwfb`wvbonfmwfmbufdb`j/_m`lmelqnjgbgojmf.kfjdkw9elmw.ebnjoz9!#9#!kwws9,,bssoj`bwjlmpojmh!#kqfe>!psf`jej`booz,,?"X@GBWBX Lqdbmjybwjlmgjpwqjavwjlm3s{8#kfjdkw9qfobwjlmpkjsgfuj`f.tjgwk?gju#`obpp>!?obafo#elq>!qfdjpwqbwjlm?,mlp`qjsw= ,jmgf{-kwno!tjmglt-lsfm+#"jnslqwbmw8bssoj`bwjlm,jmgfsfmgfm`f,,ttt-dlldoflqdbmjybwjlmbvwl`lnsofwfqfrvjqfnfmwp`lmpfqubwjuf?elqn#mbnf>!jmwfoof`wvbonbqdjm.ofew92;wk#`fmwvqzbm#jnslqwbmwjmpwjwvwjlmpbaaqfujbwjlm?jnd#`obpp>!lqdbmjpbwjlm`jujojybwjlm2:wk#`fmwvqzbq`kjwf`wvqfjm`lqslqbwfg13wk#`fmwvqz.`lmwbjmfq!=nlpw#mlwbaoz,=?,b=?,gju=mlwjej`bwjlm$vmgfejmfg$*Evqwkfqnlqf/afojfuf#wkbwjmmfqKWNO#>#sqjlq#wl#wkfgqbnbwj`boozqfefqqjmd#wlmfdlwjbwjlmpkfbgrvbqwfqpPlvwk#Beqj`bvmpv``fppevoSfmmpzoubmjbBp#b#qfpvow/?kwno#obmd>!%ow8,pvs%dw8gfbojmd#tjwkskjobgfoskjbkjpwlqj`booz*8?,p`qjsw= sbggjmd.wls9f{sfqjnfmwbodfwBwwqjavwfjmpwqv`wjlmpwf`kmloldjfpsbqw#le#wkf#>evm`wjlm+*xpvap`qjswjlmo-gwg!= ?kwdfldqbskj`bo@lmpwjwvwjlm$/#evm`wjlm+pvsslqwfg#azbdqj`vowvqbo`lmpwqv`wjlmsvaoj`bwjlmpelmw.pjyf9#2b#ubqjfwz#le?gju#pwzof>!Fm`z`olsfgjbjeqbnf#pq`>!gfnlmpwqbwfgb``lnsojpkfgvmjufqpjwjfpGfnldqbskj`p*8?,p`qjsw=?gfgj`bwfg#wlhmltofgdf#lepbwjpeb`wjlmsbqwj`vobqoz?,gju=?,gju=Fmdojpk#+VP*bssfmg@kjog+wqbmpnjppjlmp-#Kltfufq/#jmwfoojdfm`f!#wbajmgf{>!eolbw9qjdkw8@lnnlmtfbowkqbmdjmd#eqlnjm#tkj`k#wkfbw#ofbpw#lmfqfsqlgv`wjlmfm`z`olsfgjb8elmw.pjyf92ivqjpgj`wjlmbw#wkbw#wjnf!=?b#`obpp>!Jm#bggjwjlm/gfp`qjswjlm(`lmufqpbwjlm`lmwb`w#tjwkjp#dfmfqboozq!#`lmwfmw>!qfsqfpfmwjmd%ow8nbwk%dw8sqfpfmwbwjlml``bpjlmbooz?jnd#tjgwk>!mbujdbwjlm!=`lnsfmpbwjlm`kbnsjlmpkjsnfgjb>!boo!#ujlobwjlm#leqfefqfm`f#wlqfwvqm#wqvf8Pwqj`w,,FM!#wqbmpb`wjlmpjmwfqufmwjlmufqjej`bwjlmJmelqnbwjlm#gjeej`vowjfp@kbnsjlmpkjs`bsbajojwjfp?"Xfmgje^..=~ ?,p`qjsw= @kqjpwjbmjwzelq#f{bnsof/Sqlefppjlmboqfpwqj`wjlmppvddfpw#wkbwtbp#qfofbpfg+pv`k#bp#wkfqfnluf@obpp+vmfnsolznfmwwkf#Bnfqj`bmpwqv`wvqf#le,jmgf{-kwno#svaojpkfg#jmpsbm#`obpp>!!=?b#kqfe>!,jmwqlgv`wjlmafolmdjmd#wl`objnfg#wkbw`lmpfrvfm`fp?nfwb#mbnf>!Dvjgf#wl#wkflufqtkfonjmdbdbjmpw#wkf#`lm`fmwqbwfg/ -mlmwlv`k#lapfqubwjlmp?,b= ?,gju= e#+gl`vnfmw-alqgfq9#2s{#xelmw.pjyf92wqfbwnfmw#le3!#kfjdkw>!2nlgjej`bwjlmJmgfsfmgfm`fgjujgfg#jmwldqfbwfq#wkbmb`kjfufnfmwpfpwbaojpkjmdIbubP`qjsw!#mfufqwkfofpppjdmjej`bm`fAqlbg`bpwjmd=%maps8?,wg=`lmwbjmfq!= pv`k#bp#wkf#jmeovfm`f#leb#sbqwj`vobqpq`>$kwws9,,mbujdbwjlm!#kboe#le#wkf#pvapwbmwjbo#%maps8?,gju=bgubmwbdf#legjp`lufqz#leevmgbnfmwbo#nfwqlslojwbmwkf#lsslpjwf!#{no9obmd>!gfojafqbwfozbojdm>`fmwfqfulovwjlm#lesqfpfqubwjlmjnsqlufnfmwpafdjmmjmd#jmIfpvp#@kqjpwSvaoj`bwjlmpgjpbdqffnfmwwf{w.bojdm9q/#evm`wjlm+*pjnjobqjwjfpalgz=?,kwno=jp#`vqqfmwozboskbafwj`bojp#plnfwjnfpwzsf>!jnbdf,nbmz#le#wkf#eolt9kjggfm8bubjobaof#jmgfp`qjaf#wkff{jpwfm`f#leboo#lufq#wkfwkf#Jmwfqmfw\n?vo#`obpp>!jmpwboobwjlmmfjdkalqkllgbqnfg#elq`fpqfgv`jmd#wkf`lmwjmvfp#wlMlmfwkfofpp/wfnsfqbwvqfp \n\n?b#kqfe>!`olpf#wl#wkff{bnsofp#le#jp#balvw#wkf+pff#afolt*-!#jg>!pfbq`ksqlefppjlmbojp#bubjobaofwkf#leej`jbo\n\n?,p`qjsw= \n\n?gju#jg>!b``fofqbwjlmwkqlvdk#wkf#Kboo#le#Ebnfgfp`qjswjlmpwqbmpobwjlmpjmwfqefqfm`f#wzsf>$wf{w,qf`fmw#zfbqpjm#wkf#tlqogufqz#slsvobqxab`hdqlvmg9wqbgjwjlmbo#plnf#le#wkf#`lmmf`wfg#wlf{soljwbwjlmfnfqdfm`f#le`lmpwjwvwjlmB#Kjpwlqz#lepjdmjej`bmw#nbmveb`wvqfgf{sf`wbwjlmp=?mlp`qjsw=?`bm#af#elvmgaf`bvpf#wkf#kbp#mlw#affmmfjdkalvqjmdtjwklvw#wkf#bggfg#wl#wkf\n?oj#`obpp>!jmpwqvnfmwboPlujfw#Vmjlmb`hmltofgdfgtkj`k#`bm#afmbnf#elq#wkfbwwfmwjlm#wlbwwfnswp#wl#gfufolsnfmwpJm#eb`w/#wkf?oj#`obpp>!bjnsoj`bwjlmppvjwbaof#elqnv`k#le#wkf#`lolmjybwjlmsqfpjgfmwjbo`bm`foAvaaof#Jmelqnbwjlmnlpw#le#wkf#jp#gfp`qjafgqfpw#le#wkf#nlqf#lq#ofppjm#PfswfnafqJmwfoojdfm`fpq`>!kwws9,,s{8#kfjdkw9#bubjobaof#wlnbmveb`wvqfqkvnbm#qjdkwpojmh#kqfe>!,bubjobajojwzsqlslqwjlmbolvwpjgf#wkf#bpwqlmlnj`bokvnbm#afjmdpmbnf#le#wkf#bqf#elvmg#jmbqf#abpfg#lmpnboofq#wkbmb#sfqplm#tklf{sbmpjlm#lebqdvjmd#wkbwmlt#hmltm#bpJm#wkf#fbqozjmwfqnfgjbwfgfqjufg#eqlnP`bmgjmbujbm?,b=?,gju= `lmpjgfq#wkfbm#fpwjnbwfgwkf#Mbwjlmbo?gju#jg>!sbdqfpvowjmd#jm`lnnjppjlmfgbmboldlvp#wlbqf#qfrvjqfg,vo= ?,gju= tbp#abpfg#lmbmg#af`bnf#b%maps8%maps8w!#ubovf>!!#tbp#`bswvqfgml#nlqf#wkbmqfpsf`wjufoz`lmwjmvf#wl#= ?kfbg= ?tfqf#`qfbwfgnlqf#dfmfqbojmelqnbwjlm#vpfg#elq#wkfjmgfsfmgfmw#wkf#Jnsfqjbo`lnslmfmw#lewl#wkf#mlqwkjm`ovgf#wkf#@lmpwqv`wjlmpjgf#le#wkf#tlvog#mlw#afelq#jmpwbm`fjmufmwjlm#lenlqf#`lnsof{`loof`wjufozab`hdqlvmg9#wf{w.bojdm9#jwp#lqjdjmbojmwl#b``lvmwwkjp#sql`fppbm#f{wfmpjufkltfufq/#wkfwkfz#bqf#mlwqfif`wfg#wkf`qjwj`jpn#legvqjmd#tkj`ksqlabaoz#wkfwkjp#bqwj`of+evm`wjlm+*xJw#pklvog#afbm#bdqffnfmwb``jgfmwboozgjeefqp#eqlnBq`kjwf`wvqfafwwfq#hmltmbqqbmdfnfmwpjmeovfm`f#lmbwwfmgfg#wkfjgfmwj`bo#wlplvwk#le#wkfsbpp#wkqlvdk{no!#wjwof>!tfjdkw9alog8`qfbwjmd#wkfgjpsobz9mlmfqfsob`fg#wkf?jnd#pq`>!,jkwwsp9,,ttt-Tlqog#Tbq#JJwfpwjnlmjbopelvmg#jm#wkfqfrvjqfg#wl#bmg#wkbw#wkfafwtffm#wkf#tbp#gfpjdmfg`lmpjpwp#le#`lmpjgfqbaozsvaojpkfg#azwkf#obmdvbdf@lmpfqubwjlm`lmpjpwfg#leqfefq#wl#wkfab`h#wl#wkf#`pp!#nfgjb>!Sflsof#eqln#bubjobaof#lmsqlufg#wl#afpvddfpwjlmp!tbp#hmltm#bpubqjfwjfp#leojhfoz#wl#af`lnsqjpfg#lepvsslqw#wkf#kbmgp#le#wkf`lvsofg#tjwk`lmmf`w#bmg#alqgfq9mlmf8sfqelqnbm`fpafelqf#afjmdobwfq#af`bnf`bo`vobwjlmplewfm#`boofgqfpjgfmwp#lenfbmjmd#wkbw=?oj#`obpp>!fujgfm`f#elqf{sobmbwjlmpfmujqlmnfmwp!=?,b=?,gju=tkj`k#booltpJmwqlgv`wjlmgfufolsfg#azb#tjgf#qbmdflm#afkboe#leubojdm>!wls!sqjm`jsof#lebw#wkf#wjnf/?,mlp`qjsw=pbjg#wl#kbufjm#wkf#ejqpwtkjof#lwkfqpkzslwkfwj`boskjolplskfqpsltfq#le#wkf`lmwbjmfg#jmsfqelqnfg#azjmbajojwz#wltfqf#tqjwwfmpsbm#pwzof>!jmsvw#mbnf>!wkf#rvfpwjlmjmwfmgfg#elqqfif`wjlm#lejnsojfp#wkbwjmufmwfg#wkfwkf#pwbmgbqgtbp#sqlabaozojmh#afwtffmsqlefpplq#lejmwfqb`wjlmp`kbmdjmd#wkfJmgjbm#L`fbm#`obpp>!obpwtlqhjmd#tjwk$kwws9,,ttt-zfbqp#afelqfWkjp#tbp#wkfqf`qfbwjlmbofmwfqjmd#wkfnfbpvqfnfmwpbm#f{wqfnfozubovf#le#wkfpwbqw#le#wkf ?,p`qjsw= bm#feelqw#wljm`qfbpf#wkfwl#wkf#plvwkpsb`jmd>!3!=pveej`jfmwozwkf#Fvqlsfbm`lmufqwfg#wl`ofbqWjnflvwgjg#mlw#kbuf`lmpfrvfmwozelq#wkf#mf{wf{wfmpjlm#lef`lmlnj`#bmgbowklvdk#wkfbqf#sqlgv`fgbmg#tjwk#wkfjmpveej`jfmwdjufm#az#wkfpwbwjmd#wkbwf{sfmgjwvqfp?,psbm=?,b= wklvdkw#wkbwlm#wkf#abpjp`foosbggjmd>jnbdf#le#wkfqfwvqmjmd#wljmelqnbwjlm/pfsbqbwfg#azbppbppjmbwfgp!#`lmwfmw>!bvwklqjwz#lemlqwktfpwfqm?,gju= ?gju#!=?,gju= ##`lmpvowbwjlm`lnnvmjwz#lewkf#mbwjlmbojw#pklvog#afsbqwj`jsbmwp#bojdm>!ofewwkf#dqfbwfpwpfof`wjlm#lepvsfqmbwvqbogfsfmgfmw#lmjp#nfmwjlmfgbooltjmd#wkftbp#jmufmwfgb``lnsbmzjmdkjp#sfqplmbobubjobaof#bwpwvgz#le#wkflm#wkf#lwkfqf{f`vwjlm#leKvnbm#Qjdkwpwfqnp#le#wkfbppl`jbwjlmpqfpfbq`k#bmgpv``ffgfg#azgfefbwfg#wkfbmg#eqln#wkfavw#wkfz#bqf`lnnbmgfq#lepwbwf#le#wkfzfbqp#le#bdfwkf#pwvgz#le?vo#`obpp>!psob`f#jm#wkftkfqf#kf#tbp?oj#`obpp>!ewkfqf#bqf#mltkj`k#af`bnfkf#svaojpkfgf{sqfppfg#jmwl#tkj`k#wkf`lnnjppjlmfqelmw.tfjdkw9wfqqjwlqz#lef{wfmpjlmp!=Qlnbm#Fnsjqffrvbo#wl#wkfJm#`lmwqbpw/kltfufq/#bmgjp#wzsj`boozbmg#kjp#tjef+bopl#`boofg=?vo#`obpp>!feef`wjufoz#fuloufg#jmwlpffn#wl#kbuftkj`k#jp#wkfwkfqf#tbp#mlbm#f{`foofmwboo#le#wkfpfgfp`qjafg#azJm#sqb`wj`f/aqlbg`bpwjmd`kbqdfg#tjwkqfeof`wfg#jmpvaif`wfg#wlnjojwbqz#bmgwl#wkf#sljmwf`lmlnj`boozpfwWbqdfwjmdbqf#b`wvboozuj`wlqz#lufq+*8?,p`qjsw=`lmwjmvlvpozqfrvjqfg#elqfulovwjlmbqzbm#feef`wjufmlqwk#le#wkf/#tkj`k#tbp#eqlmw#le#wkflq#lwkfqtjpfplnf#elqn#lekbg#mlw#affmdfmfqbwfg#azjmelqnbwjlm-sfqnjwwfg#wljm`ovgfp#wkfgfufolsnfmw/fmwfqfg#jmwlwkf#sqfujlvp`lmpjpwfmwozbqf#hmltm#bpwkf#ejfog#lewkjp#wzsf#ledjufm#wl#wkfwkf#wjwof#le`lmwbjmp#wkfjmpwbm`fp#lejm#wkf#mlqwkgvf#wl#wkfjqbqf#gfpjdmfg`lqslqbwjlmptbp#wkbw#wkflmf#le#wkfpfnlqf#slsvobqpv``ffgfg#jmpvsslqw#eqlnjm#gjeefqfmwglnjmbwfg#azgfpjdmfg#elqltmfqpkjs#lebmg#slppjaozpwbmgbqgjyfgqfpslmpfWf{wtbp#jmwfmgfgqf`fjufg#wkfbppvnfg#wkbwbqfbp#le#wkfsqjnbqjoz#jmwkf#abpjp#lejm#wkf#pfmpfb``lvmwp#elqgfpwqlzfg#azbw#ofbpw#wtltbp#gf`obqfg`lvog#mlw#afPf`qfwbqz#lebssfbq#wl#afnbqdjm.wls92,]_p(\x7F_p(\',df*xwkqlt#f~8wkf#pwbqw#lewtl#pfsbqbwfobmdvbdf#bmgtkl#kbg#affmlsfqbwjlm#legfbwk#le#wkfqfbo#mvnafqp\n?ojmh#qfo>!sqlujgfg#wkfwkf#pwlqz#le`lnsfwjwjlmpfmdojpk#+VH*fmdojpk#+VP*<p<R<Q<_<R<W<M=l<S=m<V<T=m=l<S=m<V<T=m=l<S=m<V<R5h4U4]4D5f4E\nAOGx\bTA\nzk\vBl\bQ\x7F\bTA\nzk\vUm\bQ\x7F\bTA\nzk\npeu| i@ cT\bVV\n\\}\nxS VptSk` [X [X\vHR\bPv\bTW\bUe\n\x7Fa\bQp\v_W\vWs\nxS\vAz\n_yKhjmelqnb`j/_mkfqqbnjfmwbpfof`wq/_mj`lgfp`qjs`j/_m`obpjej`bglp`lml`jnjfmwlsvaoj`b`j/_mqfob`jlmbgbpjmelqn/Mwj`bqfob`jlmbglpgfsbqwbnfmwlwqbabibglqfpgjqf`wbnfmwfbzvmwbnjfmwlnfq`bglOjaqf`lmw/M`wfmlpkbajwb`jlmfp`vnsojnjfmwlqfpwbvqbmwfpgjpslpj`j/_m`lmpf`vfm`jbfof`wq/_mj`bbsoj`b`jlmfpgfp`lmf`wbgljmpwbob`j/_mqfbojyb`j/_mvwjojyb`j/_mfm`j`olsfgjbfmefqnfgbgfpjmpwqvnfmwlpf{sfqjfm`jbpjmpwjwv`j/_msbqwj`vobqfppva`bwfdlqjb=n<R<W=`<V<R<L<R=m=m<T<T=l<\\<]<R=n=g<]<R<W=`=d<Y<S=l<R=m=n<R<P<R<Z<Y=n<Y<X=l=o<_<T=i=m<W=o=k<\\<Y=m<Y<U=k<\\=m<^=m<Y<_<X<\\<L<R=m=m<T=c<p<R=m<V<^<Y<X=l=o<_<T<Y<_<R=l<R<X<\\<^<R<S=l<R=m<X<\\<Q<Q=g=i<X<R<W<Z<Q=g<T<P<Y<Q<Q<R<p<R=m<V<^=g=l=o<]<W<Y<U<p<R=m<V<^<\\=m=n=l<\\<Q=g<Q<T=k<Y<_<R=l<\\<]<R=n<Y<X<R<W<Z<Y<Q=o=m<W=o<_<T=n<Y<S<Y=l=`<r<X<Q<\\<V<R<S<R=n<R<P=o=l<\\<]<R=n=o<\\<S=l<Y<W=c<^<R<R<]=e<Y<R<X<Q<R<_<R=m<^<R<Y<_<R=m=n<\\=n=`<T<X=l=o<_<R<U=h<R=l=o<P<Y=i<R=l<R=d<R<S=l<R=n<T<^=m=m=g<W<V<\\<V<\\<Z<X=g<U<^<W<\\=m=n<T<_=l=o<S<S=g<^<P<Y=m=n<Y=l<\\<]<R=n<\\=m<V<\\<[<\\<W<S<Y=l<^=g<U<X<Y<W<\\=n=`<X<Y<Q=`<_<T<S<Y=l<T<R<X<]<T<[<Q<Y=m<R=m<Q<R<^<Y<P<R<P<Y<Q=n<V=o<S<T=n=`<X<R<W<Z<Q<\\=l<\\<P<V<\\=i<Q<\\=k<\\<W<R<L<\\<]<R=n<\\<N<R<W=`<V<R=m<R<^=m<Y<P<^=n<R=l<R<U<Q<\\=k<\\<W<\\=m<S<T=m<R<V=m<W=o<Z<]=g=m<T=m=n<Y<P<S<Y=k<\\=n<T<Q<R<^<R<_<R<S<R<P<R=e<T=m<\\<U=n<R<^<S<R=k<Y<P=o<S<R<P<R=e=`<X<R<W<Z<Q<R=m=m=g<W<V<T<]=g=m=n=l<R<X<\\<Q<Q=g<Y<P<Q<R<_<T<Y<S=l<R<Y<V=n<M<Y<U=k<\\=m<P<R<X<Y<W<T=n<\\<V<R<_<R<R<Q<W<\\<U<Q<_<R=l<R<X<Y<^<Y=l=m<T=c=m=n=l<\\<Q<Y=h<T<W=`<P=g=o=l<R<^<Q=c=l<\\<[<Q=g=i<T=m<V<\\=n=`<Q<Y<X<Y<W=b=c<Q<^<\\=l=c<P<Y<Q=`=d<Y<P<Q<R<_<T=i<X<\\<Q<Q<R<U<[<Q<\\=k<T=n<Q<Y<W=`<[=c=h<R=l=o<P<\\<N<Y<S<Y=l=`<P<Y=m=c=j<\\<[<\\=e<T=n=g<w=o=k=d<T<Y\fHD\fHU\fIl\fHn\fHy\fH\\\fHD\fIk\fHi\fHF\fHD\fIk\fHy\fHS\fHC\fHR\fHy\fH\\\fIk\fHn\fHi\fHD\fIa\fHC\fHy\fIa\fHC\fHR\fH{\fHR\fHk\fHM\fH@\fHR\fH\\\fIk\fHy\fHS\fHT\fIl\fHJ\fHS\fHC\fHR\fHF\fHU\fH^\fIk\fHT\fHS\fHn\fHU\fHA\fHR\fH\\\fHH\fHi\fHF\fHD\fIl\fHY\fHR\fH^\fIk\fHT\fIk\fHY\fHR\fHy\fH\\\fHH\fIk\fHB\fIk\fH\\\fIk\fHU\fIg\fHD\fIk\fHT\fHy\fHH\fIk\fH@\fHU\fIm\fHH\fHT\fHR\fHk\fHs\fHU\fIg\fH{\fHR\fHp\fHR\fHD\fIk\fHB\fHS\fHD\fHs\fHy\fH\\\fHH\fHR\fHy\fH\\\fHD\fHR\fHe\fHD\fHy\fIk\fHC\fHU\fHR\fHm\fHT\fH@\fHT\fIk\fHA\fHR\fH[\fHR\fHj\fHF\fHy\fIk\fH^\fHS\fHC\fIk\fHZ\fIm\fH\\\fIn\fHk\fHT\fHy\fIk\fHt\fHn\fHs\fIk\fHB\fIk\fH\\\fIl\fHT\fHy\fHH\fHR\fHB\fIk\fH\\\fHR\fH^\fIk\fHy\fH\\\fHi\fHK\fHS\fHy\fHi\fHF\fHD\fHR\fHT\fHB\fHR\fHp\fHB\fIm\fHq\fIk\fHy\fHR\fH\\\fHO\fHU\fIg\fHH\fHR\fHy\fHM\fHP\fIl\fHC\fHU\fHR\fHn\fHU\fIg\fHs\fH^\fHZ\fH@\fIa\fHJ\fH^\fHS\fHC\fHR\fHp\fIl\fHY\fHD\fHp\fHR\fHH\fHR\fHy\fId\fHT\fIk\fHj\fHF\fHy\fHR\fHY\fHR\fH^\fIl\fHJ\fIk\fHD\fIk\fHF\fIn\fH\\\fIl\fHF\fHR\fHD\fIl\fHe\fHT\fHy\fIk\fHU\fIg\fH{\fIl\fH@\fId\fHL\fHy\fHj\fHF\fHy\fIl\fHY\fH\\\fIa\fH[\fH{\fHR\fHn\fHY\fHj\fHF\fHy\fIg\fHp\fHS\fH^\fHR\fHp\fHR\fHD\fHR\fHT\fHU\fHB\fHH\fHU\fHB\fIk\fHn\fHe\fHD\fHy\fIl\fHC\fHR\fHU\fIn\fHJ\fH\\\fIa\fHp\fHT\fIn\fHv\fIl\fHF\fHT\fHn\fHJ\fHT\fHY\fHR\fH^\fHU\fIg\fHD\fHR\fHU\fIg\fHH\fIl\fHp\fId\fHT\fIk\fHY\fHR\fHF\fHT\fHp\fHD\fHH\fHR\fHD\fIk\fHH\fHR\fHp\fHR\fH\\\fIl\fHt\fHR\fHC\fH^\fHp\fHS\fH^\fIk\fHD\fIl\fHv\fIk\fHp\fHR\fHn\fHv\fHF\fHH\fIa\fH\\\fH{\fIn\fH{\fH^\fHp\fHR\fHH\fIk\fH@\fHR\fHU\fH\\\fHj\fHF\fHD\fIk\fHY\fHR\fHU\fHD\fHk\fHT\fHy\fHR\fHT\fIm\fH@\fHU\fH\\\fHU\fHD\fIk\fHk\fHT\fHT\fIk\fHT\fHU\fHS\fHH\fH@\fHM\fHP\fIk\fHt\fHs\fHD\fHR\fHH\fH^\fHR\fHZ\fHF\fHR\fHn\fHv\fHZ\fIa\fH\\\fIl\fH@\fHM\fHP\fIl\fHU\fIg\fHH\fIk\fHT\fHR\fHd\fHs\fHZ\fHR\fHC\fHJ\fHT\fHy\fHH\fIl\fHp\fHR\fHH\fIl\fHY\fHR\fH^\fHR\fHU\fHp\fHR\fH\\\fHF\fHs\fHD\fHR\fH\\\fHz\fHD\fIk\fHT\fHM\fHP\fHy\fHB\fHS\fH^\fHR\fHe\fHT\fHy\fIl\fHy\fIk\fHY\fH^\fH^\fH{\fHH\fHR\fHz\fHR\fHD\fHR\fHi\fH\\\fIa\fHI\fHp\fHU\fHR\fHn\fHJ\fIk\fHz\fHR\fHF\fHU\fH^\fIl\fHD\fHS\fHC\fHB\fH@\fHS\fHD\fHR\fH@\fId\fHn\fHy\fHy\fHU\fIl\fHn\fHy\fHU\fHD\fHR\fHJ\fIk\fHH\fHR\fHU\fHB\fH^\fIk\fHy\fHR\fHG\fIl\fHp\fH@\fHy\fHS\fHH\fIm\fH\\\fHH\fHB\fHR\fHn\fH{\fHY\fHU\fIl\fHn\fH\\\fIg\fHp\fHP\fHB\fHS\fH^\fIl\fHj\fH\\\fIg\fHF\fHT\fIk\fHD\fHR\fHC\fHR\fHJ\fHY\fH^\fIk\fHD\fIk\fHz\fHR\fHH\fHR\fHy\fH\\\fIl\fH@\fHe\fHD\fHy\fHR\fHp\fHY\fHR\fH@\fHF\fIn\fH\\\fHR\fH@\fHM\fHP\fHR\fHT\fI`\fHJ\fHR\fHZ\fIk\fHC\fH\\\fHy\fHS\fHC\fIk\fHy\fHU\fHR\fHn\fHi\fHy\fHT\fH\\\fH@\fHD\fHR\fHc\fHY\fHU\fHR\fHn\fHT\fIa\fHI\fH^\fHB\fHS\fH^\fIk\fH^\fIk\fHz\fHy\fHY\fHS\fH[\fHC\fHy\fIa\fH\\\fHn\fHT\fHB\fIn\fHU\fHI\fHR\fHD\fHR4F4_4F4[5f4U5i4X4K4]5o4E4D5d4K4_4[4E4K5h4Y5m4A4E5i5d4K4Z5f4U4K5h4B4K4Y4E4K5h5i4^5f4C4K5h4U4K5i4E4K5h5o4K4F4D4K5h4]4C5d4C4D4]5j4K5i4@4K5h4C5d5h4E4K5h4U4K5h5i4K5h5i5d5n4U4K5h4U4]4D5f4K5h4_4]5f4U4K5h4@5d4K5h4K5h4\\5k4K4D4K5h4A5f4K4E4K5h4A5n5d5n4K5h5o4]5f5i4K5h4U4]4K5n5i4A5m5d4T4E4K5h4G4K5j5f5i4X4K5k4C4E4K5h5i4]4O4E4K5h5n4]4N5j4K5h4X4D4K4D4K5h4A5d4K4]4K5h4@4C5f4C4K5h4O4_4]4E4K5h4U5h5d5i5i4@5i5d4U4E4K5h4]4A5i5j4K5h5j5n4K4[5m5h4_4[5f5j4K5h5o5d5f4F4K5h4C5j5f4K4D4]5o4K4F5k4K5h4]5f4K4Z4F4A5f4K4F5f4D4F5d5n5f4F4K5h4O5d5h5e4K5h4D4]5f4C4K5h5o5h4K5i4K5h4]4K4D4[4K5h4X4B4Y5f4_5f4K4]4K4F4K5h4G4K5h4G4K5h4Y5h4K4E4K5h4A4C5f4G4K5h4^5d4K4]4K5h4B5h5f4@4K5h4@5i5f4U4K5h4U4K5i5k4K5h4@5i4K5h4K5h4_4K4U4E5i4X4K5k4C5k4K5h4]4J5f4_4K5h4C4B5d5h4K5h5m5j5f4E4K5h5o4F4K4D4K5h4C5d4]5f4K5h4C4]5d4_4K4_4F4V4]5n4F4Y4K5i5f5i4K5h4D5j4K4F4K5h4U4T5f5ifmwfqwbjmnfmwvmgfqpwbmgjmd#>#evm`wjlm+*-isd!#tjgwk>!`lmejdvqbwjlm-smd!#tjgwk>!?algz#`obpp>!Nbwk-qbmgln+*`lmwfnslqbqz#Vmjwfg#Pwbwfp`jq`vnpwbm`fp-bssfmg@kjog+lqdbmjybwjlmp?psbm#`obpp>!!=?jnd#pq`>!,gjpwjmdvjpkfgwklvpbmgp#le#`lnnvmj`bwjlm`ofbq!=?,gju=jmufpwjdbwjlmebuj`lm-j`l!#nbqdjm.qjdkw9abpfg#lm#wkf#Nbppb`kvpfwwpwbaof#alqgfq>jmwfqmbwjlmbobopl#hmltm#bpsqlmvm`jbwjlmab`hdqlvmg9 esbggjmd.ofew9Elq#f{bnsof/#njp`foobmflvp%ow8,nbwk%dw8spz`kloldj`bojm#sbqwj`vobqfbq`k!#wzsf>!elqn#nfwklg>!bp#lsslpfg#wlPvsqfnf#@lvqwl``bpjlmbooz#Bggjwjlmbooz/Mlqwk#Bnfqj`bs{8ab`hdqlvmglsslqwvmjwjfpFmwfqwbjmnfmw-wlOltfq@bpf+nbmveb`wvqjmdsqlefppjlmbo#`lnajmfg#tjwkElq#jmpwbm`f/`lmpjpwjmd#le!#nb{ofmdwk>!qfwvqm#ebopf8`lmp`jlvpmfppNfgjwfqqbmfbmf{wqblqgjmbqzbppbppjmbwjlmpvapfrvfmwoz#avwwlm#wzsf>!wkf#mvnafq#lewkf#lqjdjmbo#`lnsqfkfmpjufqfefqp#wl#wkf?,vo= ?,gju= skjolplskj`bool`bwjlm-kqfetbp#svaojpkfgPbm#Eqbm`jp`l+evm`wjlm+*x ?gju#jg>!nbjmplskjpwj`bwfgnbwkfnbwj`bo#,kfbg= ?algzpvddfpwp#wkbwgl`vnfmwbwjlm`lm`fmwqbwjlmqfobwjlmpkjspnbz#kbuf#affm+elq#f{bnsof/Wkjp#bqwj`of#jm#plnf#`bpfpsbqwp#le#wkf#gfejmjwjlm#leDqfbw#Aqjwbjm#`foosbggjmd>frvjubofmw#wlsob`fklogfq>!8#elmw.pjyf9#ivpwjej`bwjlmafojfufg#wkbwpveefqfg#eqlnbwwfnswfg#wl#ofbgfq#le#wkf`qjsw!#pq`>!,+evm`wjlm+*#xbqf#bubjobaof \n?ojmh#qfo>!#pq`>$kwws9,,jmwfqfpwfg#jm`lmufmwjlmbo#!#bow>!!#,=?,bqf#dfmfqboozkbp#bopl#affmnlpw#slsvobq#`lqqfpslmgjmd`qfgjwfg#tjwkwzof>!alqgfq9?,b=?,psbm=?,-dje!#tjgwk>!?jeqbnf#pq`>!wbaof#`obpp>!jmojmf.aol`h8b``lqgjmd#wl#wldfwkfq#tjwkbssql{jnbwfozsbqojbnfmwbqznlqf#bmg#nlqfgjpsobz9mlmf8wqbgjwjlmboozsqfglnjmbmwoz%maps8\x7F%maps8%maps8?,psbm=#`foopsb`jmd>?jmsvw#mbnf>!lq!#`lmwfmw>!`lmwqlufqpjbosqlsfqwz>!ld9,{.pkl`htbuf.gfnlmpwqbwjlmpvqqlvmgfg#azMfufqwkfofpp/tbp#wkf#ejqpw`lmpjgfqbaof#Bowklvdk#wkf#`loobalqbwjlmpklvog#mlw#afsqlslqwjlm#le?psbm#pwzof>!hmltm#bp#wkf#pklqwoz#bewfqelq#jmpwbm`f/gfp`qjafg#bp#,kfbg= ?algz#pwbqwjmd#tjwkjm`qfbpjmdoz#wkf#eb`w#wkbwgjp`vppjlm#lenjggof#le#wkfbm#jmgjujgvbogjeej`vow#wl#sljmw#le#ujftklnlpf{vbojwzb``fswbm`f#le?,psbm=?,gju=nbmveb`wvqfqplqjdjm#le#wkf`lnnlmoz#vpfgjnslqwbm`f#legfmlnjmbwjlmpab`hdqlvmg9# ofmdwk#le#wkfgfwfqnjmbwjlmb#pjdmjej`bmw!#alqgfq>!3!=qfulovwjlmbqzsqjm`jsofp#lejp#`lmpjgfqfgtbp#gfufolsfgJmgl.Fvqlsfbmuvomfqbaof#wlsqlslmfmwp#lebqf#plnfwjnfp`olpfq#wl#wkfMft#Zlqh#@jwz#mbnf>!pfbq`kbwwqjavwfg#wl`lvqpf#le#wkfnbwkfnbwj`jbmaz#wkf#fmg#lebw#wkf#fmg#le!#alqgfq>!3!#wf`kmloldj`bo-qfnluf@obpp+aqbm`k#le#wkffujgfm`f#wkbw"Xfmgje^..= Jmpwjwvwf#le#jmwl#b#pjmdofqfpsf`wjufoz-bmg#wkfqfelqfsqlsfqwjfp#lejp#ol`bwfg#jmplnf#le#tkj`kWkfqf#jp#bopl`lmwjmvfg#wl#bssfbqbm`f#le#%bns8mgbpk8#gfp`qjafp#wkf`lmpjgfqbwjlmbvwklq#le#wkfjmgfsfmgfmwozfrvjssfg#tjwkglfp#mlw#kbuf?,b=?b#kqfe>!`lmevpfg#tjwk?ojmh#kqfe>!,bw#wkf#bdf#lebssfbq#jm#wkfWkfpf#jm`ovgfqfdbqgofpp#le`lvog#af#vpfg#pwzof>%rvlw8pfufqbo#wjnfpqfsqfpfmw#wkfalgz= ?,kwno=wklvdkw#wl#afslsvobwjlm#leslppjajojwjfpsfq`fmwbdf#leb``fpp#wl#wkfbm#bwwfnsw#wlsqlgv`wjlm#leirvfqz,irvfqzwtl#gjeefqfmwafolmd#wl#wkffpwbaojpknfmwqfsob`jmd#wkfgfp`qjswjlm!#gfwfqnjmf#wkfbubjobaof#elqB``lqgjmd#wl#tjgf#qbmdf#le\n?gju#`obpp>!nlqf#`lnnlmozlqdbmjpbwjlmpevm`wjlmbojwztbp#`lnsofwfg#%bns8ngbpk8#sbqwj`jsbwjlmwkf#`kbqb`wfqbm#bggjwjlmbobssfbqp#wl#afeb`w#wkbw#wkfbm#f{bnsof#lepjdmjej`bmwozlmnlvpflufq>!af`bvpf#wkfz#bpzm`#>#wqvf8sqlaofnp#tjwkpffnp#wl#kbufwkf#qfpvow#le#pq`>!kwws9,,ebnjojbq#tjwkslppfppjlm#leevm`wjlm#+*#xwllh#sob`f#jmbmg#plnfwjnfppvapwbmwjbooz?psbm=?,psbm=jp#lewfm#vpfgjm#bm#bwwfnswdqfbw#gfbo#leFmujqlmnfmwbopv``fppevooz#ujqwvbooz#boo13wk#`fmwvqz/sqlefppjlmbopmf`fppbqz#wl#gfwfqnjmfg#az`lnsbwjajojwzaf`bvpf#jw#jpGj`wjlmbqz#lenlgjej`bwjlmpWkf#elooltjmdnbz#qfefq#wl9@lmpfrvfmwoz/Jmwfqmbwjlmbobowklvdk#plnfwkbw#tlvog#aftlqog$p#ejqpw`obppjejfg#bpalwwln#le#wkf+sbqwj`vobqozbojdm>!ofew!#nlpw#`lnnlmozabpjp#elq#wkfelvmgbwjlm#le`lmwqjavwjlmpslsvobqjwz#le`fmwfq#le#wkfwl#qfgv`f#wkfivqjpgj`wjlmpbssql{jnbwjlm#lmnlvpflvw>!Mft#Wfpwbnfmw`loof`wjlm#le?,psbm=?,b=?,jm#wkf#Vmjwfgejon#gjqf`wlq.pwqj`w-gwg!=kbp#affm#vpfgqfwvqm#wl#wkfbowklvdk#wkjp`kbmdf#jm#wkfpfufqbo#lwkfqavw#wkfqf#bqfvmsqf`fgfmwfgjp#pjnjobq#wlfpsf`jbooz#jmtfjdkw9#alog8jp#`boofg#wkf`lnsvwbwjlmbojmgj`bwf#wkbwqfpwqj`wfg#wl\n?nfwb#mbnf>!bqf#wzsj`booz`lmeoj`w#tjwkKltfufq/#wkf#Bm#f{bnsof#le`lnsbqfg#tjwkrvbmwjwjfp#leqbwkfq#wkbm#b`lmpwfoobwjlmmf`fppbqz#elqqfslqwfg#wkbwpsf`jej`bwjlmslojwj`bo#bmg%maps8%maps8?qfefqfm`fp#wlwkf#pbnf#zfbqDlufqmnfmw#ledfmfqbwjlm#lekbuf#mlw#affmpfufqbo#zfbqp`lnnjwnfmw#wl\n\n?vo#`obpp>!ujpvbojybwjlm2:wk#`fmwvqz/sqb`wjwjlmfqpwkbw#kf#tlvogbmg#`lmwjmvfgl``vsbwjlm#lejp#gfejmfg#bp`fmwqf#le#wkfwkf#bnlvmw#le=?gju#pwzof>!frvjubofmw#legjeefqfmwjbwfaqlvdkw#balvwnbqdjm.ofew9#bvwlnbwj`boozwklvdkw#le#bpPlnf#le#wkfpf ?gju#`obpp>!jmsvw#`obpp>!qfsob`fg#tjwkjp#lmf#le#wkffgv`bwjlm#bmgjmeovfm`fg#azqfsvwbwjlm#bp ?nfwb#mbnf>!b``lnnlgbwjlm?,gju= ?,gju=obqdf#sbqw#leJmpwjwvwf#elqwkf#pl.`boofg#bdbjmpw#wkf#Jm#wkjp#`bpf/tbp#bssljmwfg`objnfg#wl#afKltfufq/#wkjpGfsbqwnfmw#lewkf#qfnbjmjmdfeef`w#lm#wkfsbqwj`vobqoz#gfbo#tjwk#wkf ?gju#pwzof>!bonlpw#botbzpbqf#`vqqfmwozf{sqfppjlm#leskjolplskz#leelq#nlqf#wkbm`jujojybwjlmplm#wkf#jpobmgpfof`wfgJmgf{`bm#qfpvow#jm!#ubovf>!!#,=wkf#pwqv`wvqf#,=?,b=?,gju=Nbmz#le#wkfpf`bvpfg#az#wkfle#wkf#Vmjwfgpsbm#`obpp>!n`bm#af#wqb`fgjp#qfobwfg#wlaf`bnf#lmf#lejp#eqfrvfmwozojujmd#jm#wkfwkflqfwj`boozElooltjmd#wkfQfulovwjlmbqzdlufqmnfmw#jmjp#gfwfqnjmfgwkf#slojwj`bojmwqlgv`fg#jmpveej`jfmw#wlgfp`qjswjlm!=pklqw#pwlqjfppfsbqbwjlm#lebp#wl#tkfwkfqhmltm#elq#jwptbp#jmjwjboozgjpsobz9aol`hjp#bm#f{bnsofwkf#sqjm`jsbo`lmpjpwp#le#bqf`ldmjyfg#bp,algz=?,kwno=b#pvapwbmwjboqf`lmpwqv`wfgkfbg#le#pwbwfqfpjpwbm`f#wlvmgfqdqbgvbwfWkfqf#bqf#wtldqbujwbwjlmbobqf#gfp`qjafgjmwfmwjlmboozpfqufg#bp#wkf`obpp>!kfbgfqlsslpjwjlm#wlevmgbnfmwboozglnjmbwfg#wkfbmg#wkf#lwkfqboojbm`f#tjwktbp#elq`fg#wlqfpsf`wjufoz/bmg#slojwj`bojm#pvsslqw#lesflsof#jm#wkf13wk#`fmwvqz-bmg#svaojpkfgolbg@kbqwafbwwl#vmgfqpwbmgnfnafq#pwbwfpfmujqlmnfmwboejqpw#kboe#le`lvmwqjfp#bmgbq`kjwf`wvqboaf#`lmpjgfqfg`kbqb`wfqjyfg`ofbqJmwfqubobvwklqjwbwjufEfgfqbwjlm#letbp#pv``ffgfgbmg#wkfqf#bqfb#`lmpfrvfm`fwkf#Sqfpjgfmwbopl#jm`ovgfgeqff#plewtbqfpv``fppjlm#legfufolsfg#wkftbp#gfpwqlzfgbtbz#eqln#wkf8 ?,p`qjsw= ?bowklvdk#wkfzelooltfg#az#bnlqf#sltfqevoqfpvowfg#jm#bVmjufqpjwz#leKltfufq/#nbmzwkf#sqfpjgfmwKltfufq/#plnfjp#wklvdkw#wlvmwjo#wkf#fmgtbp#bmmlvm`fgbqf#jnslqwbmwbopl#jm`ovgfp=?jmsvw#wzsf>wkf#`fmwfq#le#GL#MLW#BOWFQvpfg#wl#qfefqwkfnfp,<plqw>wkbw#kbg#affmwkf#abpjp#elqkbp#gfufolsfgjm#wkf#pvnnfq`lnsbqbwjufozgfp`qjafg#wkfpv`k#bp#wklpfwkf#qfpvowjmdjp#jnslppjaofubqjlvp#lwkfqPlvwk#Beqj`bmkbuf#wkf#pbnffeef`wjufmfppjm#tkj`k#`bpf8#wf{w.bojdm9pwqv`wvqf#bmg8#ab`hdqlvmg9qfdbqgjmd#wkfpvsslqwfg#wkfjp#bopl#hmltmpwzof>!nbqdjmjm`ovgjmd#wkfabkbpb#Nfobzvmlqph#alhn/Iomlqph#mzmlqphpolufm)M(ajmbjmwfqmb`jlmbo`bojej`b`j/_m`lnvmj`b`j/_m`lmpwqv``j/_m!=?gju#`obpp>!gjpbnajdvbwjlmGlnbjmMbnf$/#$bgnjmjpwqbwjlmpjnvowbmflvpozwqbmpslqwbwjlmJmwfqmbwjlmbo#nbqdjm.alwwln9qfpslmpjajojwz?"Xfmgje^..= ?,=?nfwb#mbnf>!jnsofnfmwbwjlmjmeqbpwqv`wvqfqfsqfpfmwbwjlmalqgfq.alwwln9?,kfbg= ?algz=>kwws&0B&1E&1E?elqn#nfwklg>!nfwklg>!slpw!#,ebuj`lm-j`l!#~*8 ?,p`qjsw= -pfwBwwqjavwf+Bgnjmjpwqbwjlm>#mft#Bqqbz+*8?"Xfmgje^..= gjpsobz9aol`h8Vmelqwvmbwfoz/!=%maps8?,gju=,ebuj`lm-j`l!=>$pwzofpkffw$#jgfmwjej`bwjlm/#elq#f{bnsof/?oj=?b#kqfe>!,bm#bowfqmbwjufbp#b#qfpvow#lesw!=?,p`qjsw= wzsf>!pvanjw!# +evm`wjlm+*#xqf`lnnfmgbwjlmelqn#b`wjlm>!,wqbmpelqnbwjlmqf`lmpwqv`wjlm-pwzof-gjpsobz#B``lqgjmd#wl#kjggfm!#mbnf>!bolmd#tjwk#wkfgl`vnfmw-algz-bssql{jnbwfoz#@lnnvmj`bwjlmpslpw!#b`wjlm>!nfbmjmd#%rvlw8..?"Xfmgje^..=Sqjnf#Njmjpwfq`kbqb`wfqjpwj`?,b=#?b#`obpp>wkf#kjpwlqz#le#lmnlvpflufq>!wkf#dlufqmnfmwkqfe>!kwwsp9,,tbp#lqjdjmbooztbp#jmwqlgv`fg`obppjej`bwjlmqfsqfpfmwbwjufbqf#`lmpjgfqfg?"Xfmgje^..= gfsfmgp#lm#wkfVmjufqpjwz#le#jm#`lmwqbpw#wl#sob`fklogfq>!jm#wkf#`bpf#lejmwfqmbwjlmbo#`lmpwjwvwjlmbopwzof>!alqgfq.9#evm`wjlm+*#xAf`bvpf#le#wkf.pwqj`w-gwg!= ?wbaof#`obpp>!b``lnsbmjfg#azb``lvmw#le#wkf?p`qjsw#pq`>!,mbwvqf#le#wkf#wkf#sflsof#jm#jm#bggjwjlm#wlp*8#ip-jg#>#jg!#tjgwk>!233&!qfdbqgjmd#wkf#Qlnbm#@bwkloj`bm#jmgfsfmgfmwelooltjmd#wkf#-dje!#tjgwk>!2wkf#elooltjmd#gjp`qjnjmbwjlmbq`kbfloldj`bosqjnf#njmjpwfq-ip!=?,p`qjsw=`lnajmbwjlm#le#nbqdjmtjgwk>!`qfbwfFofnfmw+t-bwwb`kFufmw+?,b=?,wg=?,wq=pq`>!kwwsp9,,bJm#sbqwj`vobq/#bojdm>!ofew!#@yf`k#Qfsvaoj`Vmjwfg#Hjmdgln`lqqfpslmgfm`f`lm`ovgfg#wkbw-kwno!#wjwof>!+evm`wjlm#+*#x`lnfp#eqln#wkfbssoj`bwjlm#le?psbm#`obpp>!pafojfufg#wl#affnfmw+$p`qjsw$?,b= ?,oj= ?ojufqz#gjeefqfmw=?psbm#`obpp>!lswjlm#ubovf>!+bopl#hmltm#bp\n?oj=?b#kqfe>!=?jmsvw#mbnf>!pfsbqbwfg#eqlnqfefqqfg#wl#bp#ubojdm>!wls!=elvmgfq#le#wkfbwwfnswjmd#wl#`bqalm#gjl{jgf ?gju#`obpp>!`obpp>!pfbq`k.,algz= ?,kwno=lsslqwvmjwz#wl`lnnvmj`bwjlmp?,kfbg= ?algz#pwzof>!tjgwk9Wj\rVSmd#Uj\rWkw`kbmdfp#jm#wkfalqgfq.`lolq9 3!#alqgfq>!3!#?,psbm=?,gju=?tbp#gjp`lufqfg!#wzsf>!wf{w!#*8 ?,p`qjsw= Gfsbqwnfmw#le#f``ofpjbpwj`bowkfqf#kbp#affmqfpvowjmd#eqln?,algz=?,kwno=kbp#mfufq#affmwkf#ejqpw#wjnfjm#qfpslmpf#wlbvwlnbwj`booz#?,gju= ?gju#jtbp#`lmpjgfqfgsfq`fmw#le#wkf!#,=?,b=?,gju=`loof`wjlm#le#gfp`fmgfg#eqlnpf`wjlm#le#wkfb``fsw.`kbqpfwwl#af#`lmevpfgnfnafq#le#wkf#sbggjmd.qjdkw9wqbmpobwjlm#lejmwfqsqfwbwjlm#kqfe>$kwws9,,tkfwkfq#lq#mlwWkfqf#bqf#boplwkfqf#bqf#nbmzb#pnboo#mvnafqlwkfq#sbqwp#lejnslppjaof#wl##`obpp>!avwwlmol`bwfg#jm#wkf-#Kltfufq/#wkfbmg#fufmwvboozBw#wkf#fmg#le#af`bvpf#le#jwpqfsqfpfmwp#wkf?elqn#b`wjlm>!#nfwklg>!slpw!jw#jp#slppjaofnlqf#ojhfoz#wlbm#jm`qfbpf#jmkbuf#bopl#affm`lqqfpslmgp#wlbmmlvm`fg#wkbwbojdm>!qjdkw!=nbmz#`lvmwqjfpelq#nbmz#zfbqpfbqojfpw#hmltmaf`bvpf#jw#tbpsw!=?,p`qjsw=#ubojdm>!wls!#jmkbajwbmwp#leelooltjmd#zfbq ?gju#`obpp>!njoojlm#sflsof`lmwqlufqpjbo#`lm`fqmjmd#wkfbqdvf#wkbw#wkfdlufqmnfmw#bmgb#qfefqfm`f#wlwqbmpefqqfg#wlgfp`qjajmd#wkf#pwzof>!`lolq9bowklvdk#wkfqfafpw#hmltm#elqpvanjw!#mbnf>!nvowjsoj`bwjlmnlqf#wkbm#lmf#qf`ldmjwjlm#le@lvm`jo#le#wkffgjwjlm#le#wkf##?nfwb#mbnf>!Fmwfqwbjmnfmw#btbz#eqln#wkf#8nbqdjm.qjdkw9bw#wkf#wjnf#lejmufpwjdbwjlmp`lmmf`wfg#tjwkbmg#nbmz#lwkfqbowklvdk#jw#jpafdjmmjmd#tjwk#?psbm#`obpp>!gfp`fmgbmwp#le?psbm#`obpp>!j#bojdm>!qjdkw!?,kfbg= ?algz#bpsf`wp#le#wkfkbp#pjm`f#affmFvqlsfbm#Vmjlmqfnjmjp`fmw#lenlqf#gjeej`vowUj`f#Sqfpjgfmw`lnslpjwjlm#lesbppfg#wkqlvdknlqf#jnslqwbmwelmw.pjyf922s{f{sobmbwjlm#lewkf#`lm`fsw#letqjwwfm#jm#wkf\n?psbm#`obpp>!jp#lmf#le#wkf#qfpfnaobm`f#wllm#wkf#dqlvmgptkj`k#`lmwbjmpjm`ovgjmd#wkf#gfejmfg#az#wkfsvaoj`bwjlm#lenfbmp#wkbw#wkflvwpjgf#le#wkfpvsslqw#le#wkf?jmsvw#`obpp>!?psbm#`obpp>!w+Nbwk-qbmgln+*nlpw#sqlnjmfmwgfp`qjswjlm#le@lmpwbmwjmlsoftfqf#svaojpkfg?gju#`obpp>!pfbssfbqp#jm#wkf2!#kfjdkw>!2!#nlpw#jnslqwbmwtkj`k#jm`ovgfptkj`k#kbg#affmgfpwqv`wjlm#lewkf#slsvobwjlm \n?gju#`obpp>!slppjajojwz#leplnfwjnfp#vpfgbssfbq#wl#kbufpv``fpp#le#wkfjmwfmgfg#wl#afsqfpfmw#jm#wkfpwzof>!`ofbq9a ?,p`qjsw= ?tbp#elvmgfg#jmjmwfqujft#tjwk\\jg!#`lmwfmw>!`bsjwbo#le#wkf ?ojmh#qfo>!pqfofbpf#le#wkfsljmw#lvw#wkbw{NOKwwsQfrvfpwbmg#pvapfrvfmwpf`lmg#obqdfpwufqz#jnslqwbmwpsf`jej`bwjlmppvqeb`f#le#wkfbssojfg#wl#wkfelqfjdm#sloj`z\\pfwGlnbjmMbnffpwbaojpkfg#jmjp#afojfufg#wlJm#bggjwjlm#wlnfbmjmd#le#wkfjp#mbnfg#bewfqwl#sqlwf`w#wkfjp#qfsqfpfmwfgGf`obqbwjlm#lenlqf#feej`jfmw@obppjej`bwjlmlwkfq#elqnp#lekf#qfwvqmfg#wl?psbm#`obpp>!`sfqelqnbm`f#le+evm`wjlm+*#xje#bmg#lmoz#jeqfdjlmp#le#wkfofbgjmd#wl#wkfqfobwjlmp#tjwkVmjwfg#Mbwjlmppwzof>!kfjdkw9lwkfq#wkbm#wkfzsf!#`lmwfmw>!Bppl`jbwjlm#le ?,kfbg= ?algzol`bwfg#lm#wkfjp#qfefqqfg#wl+jm`ovgjmd#wkf`lm`fmwqbwjlmpwkf#jmgjujgvbobnlmd#wkf#nlpwwkbm#bmz#lwkfq,= ?ojmh#qfo>!#qfwvqm#ebopf8wkf#svqslpf#lewkf#bajojwz#wl8`lolq9 eee~ - ?psbm#`obpp>!wkf#pvaif`w#legfejmjwjlmp#le= ?ojmh#qfo>!`objn#wkbw#wkfkbuf#gfufolsfg?wbaof#tjgwk>!`fofaqbwjlm#leElooltjmd#wkf#wl#gjpwjmdvjpk?psbm#`obpp>!awbhfp#sob`f#jmvmgfq#wkf#mbnfmlwfg#wkbw#wkf=?"Xfmgje^..= pwzof>!nbqdjm.jmpwfbg#le#wkfjmwqlgv`fg#wkfwkf#sql`fpp#lejm`qfbpjmd#wkfgjeefqfm`fp#jmfpwjnbwfg#wkbwfpsf`jbooz#wkf,gju=?gju#jg>!tbp#fufmwvboozwkqlvdklvw#kjpwkf#gjeefqfm`fplnfwkjmd#wkbwpsbm=?,psbm=?,pjdmjej`bmwoz#=?,p`qjsw=  fmujqlmnfmwbo#wl#sqfufmw#wkfkbuf#affm#vpfgfpsf`jbooz#elqvmgfqpwbmg#wkfjp#fppfmwjbooztfqf#wkf#ejqpwjp#wkf#obqdfpwkbuf#affm#nbgf!#pq`>!kwws9,,jmwfqsqfwfg#bppf`lmg#kboe#le`qloojmd>!ml!#jp#`lnslpfg#leJJ/#Kloz#Qlnbmjp#f{sf`wfg#wlkbuf#wkfjq#ltmgfejmfg#bp#wkfwqbgjwjlmbooz#kbuf#gjeefqfmwbqf#lewfm#vpfgwl#fmpvqf#wkbwbdqffnfmw#tjwk`lmwbjmjmd#wkfbqf#eqfrvfmwozjmelqnbwjlm#lmf{bnsof#jp#wkfqfpvowjmd#jm#b?,b=?,oj=?,vo=#`obpp>!ellwfqbmg#fpsf`jboozwzsf>!avwwlm!#?,psbm=?,psbm=tkj`k#jm`ovgfg= ?nfwb#mbnf>!`lmpjgfqfg#wkf`bqqjfg#lvw#azKltfufq/#jw#jpaf`bnf#sbqw#lejm#qfobwjlm#wlslsvobq#jm#wkfwkf#`bsjwbo#letbp#leej`jbooztkj`k#kbp#affmwkf#Kjpwlqz#lebowfqmbwjuf#wlgjeefqfmw#eqlnwl#pvsslqw#wkfpvddfpwfg#wkbwjm#wkf#sql`fpp##?gju#`obpp>!wkf#elvmgbwjlmaf`bvpf#le#kjp`lm`fqmfg#tjwkwkf#vmjufqpjwzlsslpfg#wl#wkfwkf#`lmwf{w#le?psbm#`obpp>!swf{w!#mbnf>!r!\n\n?gju#`obpp>!wkf#p`jfmwjej`qfsqfpfmwfg#aznbwkfnbwj`jbmpfof`wfg#az#wkfwkbw#kbuf#affm=?gju#`obpp>!`gju#jg>!kfbgfqjm#sbqwj`vobq/`lmufqwfg#jmwl*8 ?,p`qjsw= ?skjolplskj`bo#pqsphlkqubwphjwj\rVSmd#Uj\rWkw<L=o=m=m<V<T<U=l=o=m=m<V<T<Ujmufpwjdb`j/_msbqwj`jsb`j/_m<V<R=n<R=l=g<Y<R<]<W<\\=m=n<T<V<R=n<R=l=g<U=k<Y<W<R<^<Y<V=m<T=m=n<Y<P=g<q<R<^<R=m=n<T<V<R=n<R=l=g=i<R<]<W<\\=m=n=`<^=l<Y<P<Y<Q<T<V<R=n<R=l<\\=c=m<Y<_<R<X<Q=c=m<V<\\=k<\\=n=`<Q<R<^<R=m=n<T<O<V=l<\\<T<Q=g<^<R<S=l<R=m=g<V<R=n<R=l<R<U=m<X<Y<W<\\=n=`<S<R<P<R=e=`=b=m=l<Y<X=m=n<^<R<]=l<\\<[<R<P=m=n<R=l<R<Q=g=o=k<\\=m=n<T<Y=n<Y=k<Y<Q<T<Y<\x7F<W<\\<^<Q<\\=c<T=m=n<R=l<T<T=m<T=m=n<Y<P<\\=l<Y=d<Y<Q<T=c<M<V<\\=k<\\=n=`<S<R=a=n<R<P=o=m<W<Y<X=o<Y=n=m<V<\\<[<\\=n=`=n<R<^<\\=l<R<^<V<R<Q<Y=k<Q<R=l<Y=d<Y<Q<T<Y<V<R=n<R=l<R<Y<R=l<_<\\<Q<R<^<V<R=n<R=l<R<P<L<Y<V<W<\\<P<\\4K5h5i5j4F4C5e5i5j4F4C5f4K4F4K5h5i5d4Z5d4U4K5h4D4]4K5i4@4K5h5i5d4K5n4U4K5h4]4_4K4J5h5i4X4K4]5o4K4F4K5h4O4U4Z4K4M4K5h4]5f4K4Z4E4K5h4F4Y5i5f5i4K5h4K4U4Z4K4M4K5h5j4F4K4J4@4K5h4O5h4U4K4D4K5h4F4_4@5f5h4K5h4O5n4_4K5i4K5h4Z4V4[4K4F4K5h5m5f4C5f5d4K5h4F4]4A5f4D4K5h4@4C5f4C4E4K5h4F4U5h5f5i4K5h4O4B4D4K4]4K5h4K5m5h4K5i4K5h4O5m5h4K5i4K5h4F4K4]5f4B4K5h4F5n5j5f4E4K5h4K5h4U4K4D4K5h4B5d4K4[4]4K5h5i4@4F5i4U4K5h4C5f5o5d4]4K5h4_5f4K4A4E4U4D4C4K5h5h5k4K5h4F4]4D5f4E4K5h4]5d4K4D4[4K5h4O4C4D5f4E4K5h4K4B4D4K4]4K5h5i4F4A4C4E4K5h4K4V4K5j5f`vqplq9sljmwfq8?,wjwof= ?nfwb#!#kqfe>!kwws9,,!=?psbm#`obpp>!nfnafqp#le#wkf#tjmglt-ol`bwjlmufqwj`bo.bojdm9,b=#\x7F#?b#kqfe>!?"gl`wzsf#kwno=nfgjb>!p`qffm!#?lswjlm#ubovf>!ebuj`lm-j`l!#,= \n\n?gju#`obpp>!`kbqb`wfqjpwj`p!#nfwklg>!dfw!#,algz= ?,kwno= pklqw`vw#j`lm!#gl`vnfmw-tqjwf+sbggjmd.alwwln9qfsqfpfmwbwjufppvanjw!#ubovf>!bojdm>!`fmwfq!#wkqlvdklvw#wkf#p`jfm`f#ej`wjlm ##?gju#`obpp>!pvanjw!#`obpp>!lmf#le#wkf#nlpw#ubojdm>!wls!=?tbp#fpwbaojpkfg*8 ?,p`qjsw= qfwvqm#ebopf8!=*-pwzof-gjpsobzaf`bvpf#le#wkf#gl`vnfmw-`llhjf?elqn#b`wjlm>!,~algzxnbqdjm938Fm`z`olsfgjb#leufqpjlm#le#wkf#-`qfbwfFofnfmw+mbnf!#`lmwfmw>!?,gju= ?,gju= bgnjmjpwqbwjuf#?,algz= ?,kwno=kjpwlqz#le#wkf#!=?jmsvw#wzsf>!slqwjlm#le#wkf#bp#sbqw#le#wkf#%maps8?b#kqfe>!lwkfq#`lvmwqjfp!= ?gju#`obpp>!?,psbm=?,psbm=?Jm#lwkfq#tlqgp/gjpsobz9#aol`h8`lmwqlo#le#wkf#jmwqlgv`wjlm#le,= ?nfwb#mbnf>!bp#tfoo#bp#wkf#jm#qf`fmw#zfbqp \n?gju#`obpp>!?,gju= \n?,gju= jmpsjqfg#az#wkfwkf#fmg#le#wkf#`lnsbwjaof#tjwkaf`bnf#hmltm#bp#pwzof>!nbqdjm9-ip!=?,p`qjsw=?#Jmwfqmbwjlmbo#wkfqf#kbuf#affmDfqnbm#obmdvbdf#pwzof>!`lolq9 @lnnvmjpw#Sbqwz`lmpjpwfmw#tjwkalqgfq>!3!#`foo#nbqdjmkfjdkw>!wkf#nbilqjwz#le!#bojdm>!`fmwfqqfobwfg#wl#wkf#nbmz#gjeefqfmw#Lqwklgl{#@kvq`kpjnjobq#wl#wkf#,= ?ojmh#qfo>!ptbp#lmf#le#wkf#vmwjo#kjp#gfbwk~*+*8 ?,p`qjsw=lwkfq#obmdvbdfp`lnsbqfg#wl#wkfslqwjlmp#le#wkfwkf#Mfwkfqobmgpwkf#nlpw#`lnnlmab`hdqlvmg9vqo+bqdvfg#wkbw#wkfp`qloojmd>!ml!#jm`ovgfg#jm#wkfMlqwk#Bnfqj`bm#wkf#mbnf#le#wkfjmwfqsqfwbwjlmpwkf#wqbgjwjlmbogfufolsnfmw#le#eqfrvfmwoz#vpfgb#`loof`wjlm#leufqz#pjnjobq#wlpvqqlvmgjmd#wkff{bnsof#le#wkjpbojdm>!`fmwfq!=tlvog#kbuf#affmjnbdf\\`bswjlm#>bwwb`kfg#wl#wkfpvddfpwjmd#wkbwjm#wkf#elqn#le#jmuloufg#jm#wkfjp#gfqjufg#eqlnmbnfg#bewfq#wkfJmwqlgv`wjlm#wlqfpwqj`wjlmp#lm#pwzof>!tjgwk9#`bm#af#vpfg#wl#wkf#`qfbwjlm#lenlpw#jnslqwbmw#jmelqnbwjlm#bmgqfpvowfg#jm#wkf`loobspf#le#wkfWkjp#nfbmp#wkbwfofnfmwp#le#wkftbp#qfsob`fg#azbmbozpjp#le#wkfjmpsjqbwjlm#elqqfdbqgfg#bp#wkfnlpw#pv``fppevohmltm#bp#%rvlw8b#`lnsqfkfmpjufKjpwlqz#le#wkf#tfqf#`lmpjgfqfgqfwvqmfg#wl#wkfbqf#qfefqqfg#wlVmplvq`fg#jnbdf= \n?gju#`obpp>!`lmpjpwp#le#wkfpwlsSqlsbdbwjlmjmwfqfpw#jm#wkfbubjobajojwz#lebssfbqp#wl#kbuffof`wqlnbdmfwj`fmbaofPfquj`fp+evm`wjlm#le#wkfJw#jp#jnslqwbmw?,p`qjsw=?,gju=evm`wjlm+*xubq#qfobwjuf#wl#wkfbp#b#qfpvow#le#wkf#slpjwjlm#leElq#f{bnsof/#jm#nfwklg>!slpw!#tbp#elooltfg#az%bns8ngbpk8#wkfwkf#bssoj`bwjlmip!=?,p`qjsw= vo=?,gju=?,gju=bewfq#wkf#gfbwktjwk#qfpsf`w#wlpwzof>!sbggjmd9jp#sbqwj`vobqozgjpsobz9jmojmf8#wzsf>!pvanjw!#jp#gjujgfg#jmwl\bTA\nzk#+\vBl\bQ\x7F*qfpslmpbajojgbgbgnjmjpwqb`j/_mjmwfqmb`jlmbofp`lqqfpslmgjfmwf\fHe\fHF\fHC\fIg\fH{\fHF\fIn\fH\\\fIa\fHY\fHU\fHB\fHR\fH\\\fIk\fH^\fIg\fH{\fIg\fHn\fHv\fIm\fHD\fHR\fHY\fH^\fIk\fHy\fHS\fHD\fHT\fH\\\fHy\fHR\fH\\\fHF\fIm\fH^\fHS\fHT\fHz\fIg\fHp\fIk\fHn\fHv\fHR\fHU\fHS\fHc\fHA\fIk\fHp\fIk\fHn\fHZ\fHR\fHB\fHS\fH^\fHU\fHB\fHR\fH\\\fIl\fHp\fHR\fH{\fH\\\fHO\fH@\fHD\fHR\fHD\fIk\fHy\fIm\fHB\fHR\fH\\\fH@\fIa\fH^\fIe\fH{\fHB\fHR\fH^\fHS\fHy\fHB\fHU\fHS\fH^\fHR\fHF\fIo\fH[\fIa\fHL\fH@\fHN\fHP\fHH\fIk\fHA\fHR\fHp\fHF\fHR\fHy\fIa\fH^\fHS\fHy\fHs\fIa\fH\\\fIk\fHD\fHz\fHS\fH^\fHR\fHG\fHJ\fI`\fH\\\fHR\fHD\fHB\fHR\fHB\fH^\fIk\fHB\fHH\fHJ\fHR\fHD\fH@\fHR\fHp\fHR\fH\\\fHY\fHS\fHy\fHR\fHT\fHy\fIa\fHC\fIg\fHn\fHv\fHR\fHU\fHH\fIk\fHF\fHU\fIm\fHm\fHv\fH@\fHH\fHR\fHC\fHR\fHT\fHn\fHY\fHR\fHJ\fHJ\fIk\fHz\fHD\fIk\fHF\fHS\fHw\fH^\fIk\fHY\fHS\fHZ\fIk\fH[\fH\\\fHR\fHp\fIa\fHC\fHe\fHH\fIa\fHH\fH\\\fHB\fIm\fHn\fH@\fHd\fHJ\fIg\fHD\fIg\fHn\fHe\fHF\fHy\fH\\\fHO\fHF\fHN\fHP\fIk\fHn\fHT\fIa\fHI\fHS\fHH\fHG\fHS\fH^\fIa\fHB\fHB\fIm\fHz\fIa\fHC\fHi\fHv\fIa\fHw\fHR\fHw\fIn\fHs\fHH\fIl\fHT\fHn\fH{\fIl\fHH\fHp\fHR\fHc\fH{\fHR\fHY\fHS\fHA\fHR\fH{\fHt\fHO\fIa\fHs\fIk\fHJ\fIn\fHT\fH\\\fIk\fHJ\fHS\fHD\fIg\fHn\fHU\fHH\fIa\fHC\fHR\fHT\fIk\fHy\fIa\fHT\fH{\fHR\fHn\fHK\fIl\fHY\fHS\fHZ\fIa\fHY\fH\\\fHR\fHH\fIk\fHn\fHJ\fId\fHs\fIa\fHT\fHD\fHy\fIa\fHZ\fHR\fHT\fHR\fHB\fHD\fIk\fHi\fHJ\fHR\fH^\fHH\fH@\fHS\fHp\fH^\fIl\fHF\fIm\fH\\\fIn\fH[\fHU\fHS\fHn\fHJ\fIl\fHB\fHS\fHH\fIa\fH\\\fHy\fHY\fHS\fHH\fHR\fH\\\fIm\fHF\fHC\fIk\fHT\fIa\fHI\fHR\fHD\fHy\fH\\\fIg\fHM\fHP\fHB\fIm\fHy\fIa\fHH\fHC\fIg\fHp\fHD\fHR\fHy\fIo\fHF\fHC\fHR\fHF\fIg\fHT\fIa\fHs\fHt\fH\\\fIk\fH^\fIn\fHy\fHR\fH\\\fIa\fHC\fHY\fHS\fHv\fHR\fH\\\fHT\fIn\fHv\fHD\fHR\fHB\fIn\fH^\fIa\fHC\fHJ\fIk\fHz\fIk\fHn\fHU\fHB\fIk\fHZ\fHR\fHT\fIa\fHy\fIn\fH^\fHB\fId\fHn\fHD\fIk\fHH\fId\fHC\fHR\fH\\\fHp\fHS\fHT\fHy\fIkqpp({no!#wjwof>!.wzsf!#`lmwfmw>!wjwof!#`lmwfmw>!bw#wkf#pbnf#wjnf-ip!=?,p`qjsw= ?!#nfwklg>!slpw!#?,psbm=?,b=?,oj=ufqwj`bo.bojdm9w,irvfqz-njm-ip!=-`oj`h+evm`wjlm+#pwzof>!sbggjmd.~*+*8 ?,p`qjsw= ?,psbm=?b#kqfe>!?b#kqfe>!kwws9,,*8#qfwvqm#ebopf8wf{w.gf`lqbwjlm9#p`qloojmd>!ml!#alqgfq.`loobspf9bppl`jbwfg#tjwk#Abkbpb#JmglmfpjbFmdojpk#obmdvbdf?wf{w#{no9psb`f>-dje!#alqgfq>!3!?,algz= ?,kwno= lufqeolt9kjggfm8jnd#pq`>!kwws9,,bggFufmwOjpwfmfqqfpslmpjaof#elq#p-ip!=?,p`qjsw= ,ebuj`lm-j`l!#,=lsfqbwjmd#pzpwfn!#pwzof>!tjgwk92wbqdfw>!\\aobmh!=Pwbwf#Vmjufqpjwzwf{w.bojdm9ofew8 gl`vnfmw-tqjwf+/#jm`ovgjmd#wkf#bqlvmg#wkf#tlqog*8 ?,p`qjsw= ?!#pwzof>!kfjdkw98lufqeolt9kjggfmnlqf#jmelqnbwjlmbm#jmwfqmbwjlmbob#nfnafq#le#wkf#lmf#le#wkf#ejqpw`bm#af#elvmg#jm#?,gju= \n\n?,gju= gjpsobz9#mlmf8!=!#,= ?ojmh#qfo>! ##+evm`wjlm+*#xwkf#26wk#`fmwvqz-sqfufmwGfebvow+obqdf#mvnafq#le#Azybmwjmf#Fnsjqf-isd\x7Fwkvna\x7Fofew\x7Fubpw#nbilqjwz#lenbilqjwz#le#wkf##bojdm>!`fmwfq!=Vmjufqpjwz#Sqfppglnjmbwfg#az#wkfPf`lmg#Tlqog#Tbqgjpwqjavwjlm#le#pwzof>!slpjwjlm9wkf#qfpw#le#wkf#`kbqb`wfqjyfg#az#qfo>!mleloolt!=gfqjufp#eqln#wkfqbwkfq#wkbm#wkf#b#`lnajmbwjlm#lepwzof>!tjgwk9233Fmdojpk.psfbhjmd`lnsvwfq#p`jfm`falqgfq>!3!#bow>!wkf#f{jpwfm`f#leGfnl`qbwj`#Sbqwz!#pwzof>!nbqdjm.Elq#wkjp#qfbplm/-ip!=?,p`qjsw= \npAzWbdMbnf+p*X3^ip!=?,p`qjsw= ?-ip!=?,p`qjsw= ojmh#qfo>!j`lm!#$#bow>$$#`obpp>$elqnbwjlm#le#wkfufqpjlmp#le#wkf#?,b=?,gju=?,gju=,sbdf= ##?sbdf= ?gju#`obpp>!`lmwaf`bnf#wkf#ejqpwabkbpb#Jmglmfpjbfmdojpk#+pjnsof*"y"W"W"["Q"U"V"@=i=l<^<\\=n=m<V<T<V<R<P<S<\\<Q<T<T=c<^<W=c<Y=n=m=c<x<R<]<\\<^<T=n=`=k<Y<W<R<^<Y<V<\\=l<\\<[<^<T=n<T=c<t<Q=n<Y=l<Q<Y=n<r=n<^<Y=n<T=n=`<Q<\\<S=l<T<P<Y=l<T<Q=n<Y=l<Q<Y=n<V<R=n<R=l<R<_<R=m=n=l<\\<Q<T=j=g<V<\\=k<Y=m=n<^<Y=o=m<W<R<^<T=c=i<S=l<R<]<W<Y<P=g<S<R<W=o=k<T=n=`=c<^<W=c=b=n=m=c<Q<\\<T<]<R<W<Y<Y<V<R<P<S<\\<Q<T=c<^<Q<T<P<\\<Q<T<Y=m=l<Y<X=m=n<^<\\4K5h5i5d4K4Z5f4U4K5h4]4J5f4_5f4E4K5h4K5j4F5n4K5h5i4X4K4]5o4K4F5o4K5h4_5f4K4]4K4F4K5h5i5o4F5d4D4E4K5h4_4U5d4C5f4E4K4A4Y4K4J5f4K4F4K5h4U4K5h5i5f4E4K5h4Y5d4F5f4K4F4K5h4K5j4F4]5j4F4K5h4F4Y4K5i5f5i4K5h4I4_5h4K5i5f4K5h5i4X4K4]5o4E4K5h5i4]4J5f4K4Fqlalwp!#`lmwfmw>!?gju#jg>!ellwfq!=wkf#Vmjwfg#Pwbwfp?jnd#pq`>!kwws9,,-isd\x7Fqjdkw\x7Fwkvna\x7F-ip!=?,p`qjsw= ?ol`bwjlm-sqlwl`loeqbnfalqgfq>!3!#p!#,= ?nfwb#mbnf>!?,b=?,gju=?,gju=?elmw.tfjdkw9alog8%rvlw8#bmg#%rvlw8gfsfmgjmd#lm#wkf#nbqdjm938sbggjmd9!#qfo>!mleloolt!#Sqfpjgfmw#le#wkf#wtfmwjfwk#`fmwvqzfujpjlm= ##?,sbdfJmwfqmfw#F{solqfqb-bpzm`#>#wqvf8 jmelqnbwjlm#balvw?gju#jg>!kfbgfq!=!#b`wjlm>!kwws9,,?b#kqfe>!kwwsp9,,?gju#jg>!`lmwfmw!?,gju= ?,gju= ?gfqjufg#eqln#wkf#?jnd#pq`>$kwws9,,b``lqgjmd#wl#wkf# ?,algz= ?,kwno= pwzof>!elmw.pjyf9p`qjsw#obmdvbdf>!Bqjbo/#Kfoufwj`b/?,b=?psbm#`obpp>!?,p`qjsw=?p`qjsw#slojwj`bo#sbqwjfpwg=?,wq=?,wbaof=?kqfe>!kwws9,,ttt-jmwfqsqfwbwjlm#leqfo>!pwzofpkffw!#gl`vnfmw-tqjwf+$?`kbqpfw>!vwe.;!= afdjmmjmd#le#wkf#qfufbofg#wkbw#wkfwfofujpjlm#pfqjfp!#qfo>!mleloolt!=#wbqdfw>!\\aobmh!=`objnjmd#wkbw#wkfkwws&0B&1E&1Ettt-nbmjefpwbwjlmp#leSqjnf#Njmjpwfq#lejmeovfm`fg#az#wkf`obpp>!`ofbqej{!=,gju= ?,gju=  wkqff.gjnfmpjlmbo@kvq`k#le#Fmdobmgle#Mlqwk#@bqlojmbprvbqf#hjolnfwqfp-bggFufmwOjpwfmfqgjpwjm`w#eqln#wkf`lnnlmoz#hmltm#bpSklmfwj`#Boskbafwgf`obqfg#wkbw#wkf`lmwqloofg#az#wkfAfmibnjm#Eqbmhojmqlof.sobzjmd#dbnfwkf#Vmjufqpjwz#lejm#Tfpwfqm#Fvqlsfsfqplmbo#`lnsvwfqSqlif`w#Dvwfmafqdqfdbqgofpp#le#wkfkbp#affm#sqlslpfgwldfwkfq#tjwk#wkf=?,oj=?oj#`obpp>!jm#plnf#`lvmwqjfpnjm-ip!=?,p`qjsw=le#wkf#slsvobwjlmleej`jbo#obmdvbdf?jnd#pq`>!jnbdfp,jgfmwjejfg#az#wkfmbwvqbo#qfplvq`fp`obppjej`bwjlm#le`bm#af#`lmpjgfqfgrvbmwvn#nf`kbmj`pMfufqwkfofpp/#wkfnjoojlm#zfbqp#bdl?,algz= ?,kwno="y"W"W"["Q"U"V"@ wbhf#bgubmwbdf#lebmg/#b``lqgjmd#wlbwwqjavwfg#wl#wkfNj`qlplew#Tjmgltpwkf#ejqpw#`fmwvqzvmgfq#wkf#`lmwqlogju#`obpp>!kfbgfqpklqwoz#bewfq#wkfmlwbaof#f{`fswjlmwfmp#le#wklvpbmgppfufqbo#gjeefqfmwbqlvmg#wkf#tlqog-qfb`kjmd#njojwbqzjplobwfg#eqln#wkflsslpjwjlm#wl#wkfwkf#Log#WfpwbnfmwBeqj`bm#Bnfqj`bmpjmpfqwfg#jmwl#wkfpfsbqbwf#eqln#wkfnfwqlslojwbm#bqfbnbhfp#jw#slppjaofb`hmltofgdfg#wkbwbqdvbaoz#wkf#nlpwwzsf>!wf{w,`pp!= wkf#JmwfqmbwjlmboB``lqgjmd#wl#wkf#sf>!wf{w,`pp!#,= `ljm`jgf#tjwk#wkfwtl.wkjqgp#le#wkfGvqjmd#wkjp#wjnf/gvqjmd#wkf#sfqjlgbmmlvm`fg#wkbw#kfwkf#jmwfqmbwjlmbobmg#nlqf#qf`fmwozafojfufg#wkbw#wkf`lmp`jlvpmfpp#bmgelqnfqoz#hmltm#bppvqqlvmgfg#az#wkfejqpw#bssfbqfg#jml``bpjlmbooz#vpfgslpjwjlm9baplovwf8!#wbqdfw>!\\aobmh!#slpjwjlm9qfobwjuf8wf{w.bojdm9`fmwfq8ib{,ojap,irvfqz,2-ab`hdqlvmg.`lolq9 wzsf>!bssoj`bwjlm,bmdvbdf!#`lmwfmw>!?nfwb#kwws.frvju>!Sqjub`z#Sloj`z?,b=f+!&0@p`qjsw#pq`>$!#wbqdfw>!\\aobmh!=Lm#wkf#lwkfq#kbmg/-isd\x7Fwkvna\x7Fqjdkw\x7F1?,gju=?gju#`obpp>!?gju#pwzof>!eolbw9mjmfwffmwk#`fmwvqz?,algz= ?,kwno= ?jnd#pq`>!kwws9,,p8wf{w.bojdm9`fmwfqelmw.tfjdkw9#alog8#B``lqgjmd#wl#wkf#gjeefqfm`f#afwtffm!#eqbnfalqgfq>!3!#!#pwzof>!slpjwjlm9ojmh#kqfe>!kwws9,,kwno7,ollpf-gwg!= gvqjmd#wkjp#sfqjlg?,wg=?,wq=?,wbaof=`olpfoz#qfobwfg#wlelq#wkf#ejqpw#wjnf8elmw.tfjdkw9alog8jmsvw#wzsf>!wf{w!#?psbm#pwzof>!elmw.lmqfbgzpwbwf`kbmdf\n?gju#`obpp>!`ofbqgl`vnfmw-ol`bwjlm-#Elq#f{bnsof/#wkf#b#tjgf#ubqjfwz#le#?"GL@WZSF#kwno= ?%maps8%maps8%maps8!=?b#kqfe>!kwws9,,pwzof>!eolbw9ofew8`lm`fqmfg#tjwk#wkf>kwws&0B&1E&1Ettt-jm#slsvobq#`vowvqfwzsf>!wf{w,`pp!#,=jw#jp#slppjaof#wl#Kbqubqg#Vmjufqpjwzwzofpkffw!#kqfe>!,wkf#nbjm#`kbqb`wfqL{elqg#Vmjufqpjwz##mbnf>!hfztlqgp!#`pwzof>!wf{w.bojdm9wkf#Vmjwfg#Hjmdglnefgfqbo#dlufqmnfmw?gju#pwzof>!nbqdjm#gfsfmgjmd#lm#wkf#gfp`qjswjlm#le#wkf?gju#`obpp>!kfbgfq-njm-ip!=?,p`qjsw=gfpwqv`wjlm#le#wkfpojdkwoz#gjeefqfmwjm#b``lqgbm`f#tjwkwfof`lnnvmj`bwjlmpjmgj`bwfp#wkbw#wkfpklqwoz#wkfqfbewfqfpsf`jbooz#jm#wkf#Fvqlsfbm#`lvmwqjfpKltfufq/#wkfqf#bqfpq`>!kwws9,,pwbwj`pvddfpwfg#wkbw#wkf!#pq`>!kwws9,,ttt-b#obqdf#mvnafq#le#Wfof`lnnvmj`bwjlmp!#qfo>!mleloolt!#wKloz#Qlnbm#Fnsfqlqbonlpw#f{`ovpjufoz!#alqgfq>!3!#bow>!Pf`qfwbqz#le#Pwbwf`vonjmbwjmd#jm#wkf@JB#Tlqog#Eb`wallhwkf#nlpw#jnslqwbmwbmmjufqpbqz#le#wkfpwzof>!ab`hdqlvmg.?oj=?fn=?b#kqfe>!,wkf#Bwobmwj`#L`fbmpwqj`woz#psfbhjmd/pklqwoz#afelqf#wkfgjeefqfmw#wzsfp#lewkf#Lwwlnbm#Fnsjqf=?jnd#pq`>!kwws9,,Bm#Jmwqlgv`wjlm#wl`lmpfrvfm`f#le#wkfgfsbqwvqf#eqln#wkf@lmefgfqbwf#Pwbwfpjmgjdfmlvp#sflsofpSql`ffgjmdp#le#wkfjmelqnbwjlm#lm#wkfwkflqjfp#kbuf#affmjmuloufnfmw#jm#wkfgjujgfg#jmwl#wkqffbgib`fmw#`lvmwqjfpjp#qfpslmpjaof#elqgjpplovwjlm#le#wkf`loobalqbwjlm#tjwktjgfoz#qfdbqgfg#bpkjp#`lmwfnslqbqjfpelvmgjmd#nfnafq#leGlnjmj`bm#Qfsvaoj`dfmfqbooz#b``fswfgwkf#slppjajojwz#lebqf#bopl#bubjobaofvmgfq#`lmpwqv`wjlmqfpwlqbwjlm#le#wkfwkf#dfmfqbo#svaoj`jp#bonlpw#fmwjqfozsbppfp#wkqlvdk#wkfkbp#affm#pvddfpwfg`lnsvwfq#bmg#ujgflDfqnbmj`#obmdvbdfp#b``lqgjmd#wl#wkf#gjeefqfmw#eqln#wkfpklqwoz#bewfqtbqgpkqfe>!kwwsp9,,ttt-qf`fmw#gfufolsnfmwAlbqg#le#Gjqf`wlqp?gju#`obpp>!pfbq`k\x7F#?b#kqfe>!kwws9,,Jm#sbqwj`vobq/#wkfNvowjsof#ellwmlwfplq#lwkfq#pvapwbm`fwklvpbmgp#le#zfbqpwqbmpobwjlm#le#wkf?,gju= ?,gju=  ?b#kqfe>!jmgf{-skstbp#fpwbaojpkfg#jmnjm-ip!=?,p`qjsw= sbqwj`jsbwf#jm#wkfb#pwqlmd#jmeovfm`fpwzof>!nbqdjm.wls9qfsqfpfmwfg#az#wkfdqbgvbwfg#eqln#wkfWqbgjwjlmbooz/#wkfFofnfmw+!p`qjsw!*8Kltfufq/#pjm`f#wkf,gju= ?,gju= ?gju#ofew8#nbqdjm.ofew9sqlwf`wjlm#bdbjmpw38#ufqwj`bo.bojdm9Vmelqwvmbwfoz/#wkfwzsf>!jnbdf,{.j`lm,gju= ?gju#`obpp>!#`obpp>!`ofbqej{!=?gju#`obpp>!ellwfq\n\n?,gju= \n\n?,gju= wkf#nlwjlm#sj`wvqf<}=f<W<_<\\=l=m<V<T<]=f<W<_<\\=l=m<V<T<H<Y<X<Y=l<\\=j<T<T<Q<Y=m<V<R<W=`<V<R=m<R<R<]=e<Y<Q<T<Y=m<R<R<]=e<Y<Q<T=c<S=l<R<_=l<\\<P<P=g<r=n<S=l<\\<^<T=n=`<]<Y=m<S<W<\\=n<Q<R<P<\\=n<Y=l<T<\\<W=g<S<R<[<^<R<W=c<Y=n<S<R=m<W<Y<X<Q<T<Y=l<\\<[<W<T=k<Q=g=i<S=l<R<X=o<V=j<T<T<S=l<R<_=l<\\<P<P<\\<S<R<W<Q<R=m=n=`=b<Q<\\=i<R<X<T=n=m=c<T<[<]=l<\\<Q<Q<R<Y<Q<\\=m<Y<W<Y<Q<T=c<T<[<P<Y<Q<Y<Q<T=c<V<\\=n<Y<_<R=l<T<T<|<W<Y<V=m<\\<Q<X=l\fHJ\fIa\fHY\fHR\fH\\\fHR\fHB\fId\fHD\fIm\fHi\fH^\fHF\fIa\fH\\\fHJ\fHR\fHD\fHA\fHR\fH\\\fHH\fIl\fHC\fHi\fHD\fIm\fHJ\fIk\fHZ\fHU\fHS\fHD\fIa\fHJ\fIl\fHk\fHn\fHM\fHS\fHC\fHR\fHJ\fHS\fH^\fIa\fH^\fIl\fHi\fHK\fHS\fHy\fHR\fH\\\fHY\fIl\fHM\fHS\fHC\fIg\fHv\fHS\fHs\fIa\fHL\fIk\fHT\fHB\fHR\fHv\fHR\fH\\\fHp\fHn\fHy\fIa\fHZ\fHD\fHJ\fIm\fHD\fHS\fHC\fHR\fHF\fIa\fH\\\fHC\fIg\fH{\fHi\fHD\fIm\fHT\fHR\fH\\\fH}\fHD\fH^\fHR\fHk\fHD\fHF\fHR\fH\\\fIa\fHs\fIl\fHZ\fH\\\fIa\fHH\fIg\fHn\fH^\fIg\fHy\fHT\fHA\fHR\fHG\fHP\fIa\fH^\fId\fHZ\fHZ\fH\\\fIa\fHH\fIk\fHn\fHF\fIa\fH\\\fHJ\fIk\fHZ\fHF\fIa\fH^\fIk\fHC\fH\\\fHy\fIk\fHn\fHJ\fIa\fH\\\fHT\fIa\fHI\fHS\fHH\fHS\fHe\fHH\fIa\fHF\fHR\fHJ\fHe\fHD\fIa\fHU\fIk\fHn\fHv\fHS\fHs\fIa\fHL\fHR\fHC\fHR\fHH\fIa\fH\\\fHR\fHp\fIa\fHC\fHR\fHJ\fHR\fHF\fIm\fH\\\fHR\fHD\fIk\fHp\fIg\fHM\fHP\fIk\fHn\fHi\fHD\fIm\fHY\fHR\fHJ\fHZ\fIa\fH\\\fIk\fHO\fIl\fHZ\fHS\fHy\fIa\fH[\fHR\fHT\fH\\\fHy\fHR\fH\\\fIl\fHT\fHn\fH{\fIa\fH\\\fHU\fHF\fH\\\fHS\fHO\fHR\fHB\fH@\fIa\fH\\\fHR\fHn\fHM\fH@\fHv\fIa\fHv\fIg\fHn\fHe\fHF\fH^\fH@\fIa\fHK\fHB\fHn\fHH\fIa\fH\\\fIl\fHT\fHn\fHF\fH\\\fIa\fHy\fHe\fHB\fIa\fHB\fIl\fHJ\fHB\fHR\fHK\fIa\fHC\fHB\fHT\fHU\fHR\fHC\fHH\fHR\fHZ\fH@\fIa\fHJ\fIg\fHn\fHB\fIl\fHM\fHS\fHC\fHR\fHj\fHd\fHF\fIl\fHc\fH^\fHB\fIg\fH@\fHR\fHk\fH^\fHT\fHn\fHz\fIa\fHC\fHR\fHj\fHF\fH\\\fIk\fHZ\fHD\fHi\fHD\fIm\fH@\fHn\fHK\fH@\fHR\fHp\fHP\fHR\fH\\\fHD\fHY\fIl\fHD\fHH\fHB\fHF\fIa\fH\\\fHB\fIm\fHz\fHF\fIa\fH\\\fHZ\fIa\fHD\fHF\fH\\\fHS\fHY\fHR\fH\\\fHD\fIm\fHy\fHT\fHR\fHD\fHT\fHB\fH\\\fIa\fHI\fHD\fHj\fHC\fIg\fHp\fHS\fHH\fHT\fIg\fHB\fHY\fHR\fH\\4K5h5i4X4K4]5o4K4F4K5h5i5j4F4C5f4K4F4K5h5o5i4D5f5d4F4]4K5h5i4X4K5k4C4K4F4U4C4C4K5h4^5d4K4]4U4C4C4K5h4]4C5d4C4K5h4I4_5h4K5i5f4E4K5h5m5d4F5d4X5d4D4K5h5i4_4K4D5n4K4F4K5h5i4U5h5d5i4K4F4K5h5i4_5h4_5h4K4F4K5h4@4]4K5m5f5o4_4K5h4K4_5h4K5i5f4E4K5h4K4F4Y4K5h4K4Fhfztlqgp!#`lmwfmw>!t0-lqd,2:::,{kwno!=?b#wbqdfw>!\\aobmh!#wf{w,kwno8#`kbqpfw>!#wbqdfw>!\\aobmh!=?wbaof#`foosbggjmd>!bvwl`lnsofwf>!lee!#wf{w.bojdm9#`fmwfq8wl#obpw#ufqpjlm#az#ab`hdqlvmg.`lolq9# !#kqfe>!kwws9,,ttt-,gju=?,gju=?gju#jg>?b#kqfe>! !#`obpp>!!=?jnd#pq`>!kwws9,,`qjsw!#pq`>!kwws9,, ?p`qjsw#obmdvbdf>!,,FM!#!kwws9,,ttt-tfm`lgfVQJ@lnslmfmw+!#kqfe>!ibubp`qjsw9?gju#`obpp>!`lmwfmwgl`vnfmw-tqjwf+$?p`slpjwjlm9#baplovwf8p`qjsw#pq`>!kwws9,,#pwzof>!nbqdjm.wls9-njm-ip!=?,p`qjsw= ?,gju= ?gju#`obpp>!t0-lqd,2:::,{kwno!#  ?,algz= ?,kwno=gjpwjm`wjlm#afwtffm,!#wbqdfw>!\\aobmh!=?ojmh#kqfe>!kwws9,,fm`lgjmd>!vwe.;!<= t-bggFufmwOjpwfmfq<b`wjlm>!kwws9,,ttt-j`lm!#kqfe>!kwws9,,#pwzof>!ab`hdqlvmg9wzsf>!wf{w,`pp!#,= nfwb#sqlsfqwz>!ld9w?jmsvw#wzsf>!wf{w!##pwzof>!wf{w.bojdm9wkf#gfufolsnfmw#le#wzofpkffw!#wzsf>!wfkwno8#`kbqpfw>vwe.;jp#`lmpjgfqfg#wl#afwbaof#tjgwk>!233&!#Jm#bggjwjlm#wl#wkf#`lmwqjavwfg#wl#wkf#gjeefqfm`fp#afwtffmgfufolsnfmw#le#wkf#Jw#jp#jnslqwbmw#wl#?,p`qjsw= ?p`qjsw##pwzof>!elmw.pjyf92=?,psbm=?psbm#jg>daOjaqbqz#le#@lmdqfpp?jnd#pq`>!kwws9,,jnFmdojpk#wqbmpobwjlmB`bgfnz#le#P`jfm`fpgju#pwzof>!gjpsobz9`lmpwqv`wjlm#le#wkf-dfwFofnfmwAzJg+jg*jm#`lmivm`wjlm#tjwkFofnfmw+$p`qjsw$*8#?nfwb#sqlsfqwz>!ld9<}=f<W<_<\\=l=m<V<T #wzsf>!wf{w!#mbnf>!=Sqjub`z#Sloj`z?,b=bgnjmjpwfqfg#az#wkffmbaofPjmdofQfrvfpwpwzof>%rvlw8nbqdjm9?,gju=?,gju=?,gju=?=?jnd#pq`>!kwws9,,j#pwzof>%rvlw8eolbw9qfefqqfg#wl#bp#wkf#wlwbo#slsvobwjlm#lejm#Tbpkjmdwlm/#G-@-#pwzof>!ab`hdqlvmg.bnlmd#lwkfq#wkjmdp/lqdbmjybwjlm#le#wkfsbqwj`jsbwfg#jm#wkfwkf#jmwqlgv`wjlm#lejgfmwjejfg#tjwk#wkfej`wjlmbo#`kbqb`wfq#L{elqg#Vmjufqpjwz#njpvmgfqpwbmgjmd#leWkfqf#bqf/#kltfufq/pwzofpkffw!#kqfe>!,@lovnajb#Vmjufqpjwzf{sbmgfg#wl#jm`ovgfvpvbooz#qfefqqfg#wljmgj`bwjmd#wkbw#wkfkbuf#pvddfpwfg#wkbwbeejojbwfg#tjwk#wkf`lqqfobwjlm#afwtffmmvnafq#le#gjeefqfmw=?,wg=?,wq=?,wbaof=Qfsvaoj`#le#Jqfobmg ?,p`qjsw= ?p`qjsw#vmgfq#wkf#jmeovfm`f`lmwqjavwjlm#wl#wkfLeej`jbo#tfapjwf#lekfbgrvbqwfqp#le#wkf`fmwfqfg#bqlvmg#wkfjnsoj`bwjlmp#le#wkfkbuf#affm#gfufolsfgEfgfqbo#Qfsvaoj`#leaf`bnf#jm`qfbpjmdoz`lmwjmvbwjlm#le#wkfMlwf/#kltfufq/#wkbwpjnjobq#wl#wkbw#le#`bsbajojwjfp#le#wkfb``lqgbm`f#tjwk#wkfsbqwj`jsbmwp#jm#wkfevqwkfq#gfufolsnfmwvmgfq#wkf#gjqf`wjlmjp#lewfm#`lmpjgfqfgkjp#zlvmdfq#aqlwkfq?,wg=?,wq=?,wbaof=?b#kwws.frvju>![.VB.skzpj`bo#sqlsfqwjfple#Aqjwjpk#@lovnajbkbp#affm#`qjwj`jyfg+tjwk#wkf#f{`fswjlmrvfpwjlmp#balvw#wkfsbppjmd#wkqlvdk#wkf3!#`foosbggjmd>!3!#wklvpbmgp#le#sflsofqfgjqf`wp#kfqf-#Elqkbuf#`kjogqfm#vmgfq&0F&0@,p`qjsw&0F!**8?b#kqfe>!kwws9,,ttt-?oj=?b#kqfe>!kwws9,,pjwf\\mbnf!#`lmwfmw>!wf{w.gf`lqbwjlm9mlmfpwzof>!gjpsobz9#mlmf?nfwb#kwws.frvju>![.mft#Gbwf+*-dfwWjnf+*#wzsf>!jnbdf,{.j`lm!?,psbm=?psbm#`obpp>!obmdvbdf>!ibubp`qjswtjmglt-ol`bwjlm-kqfe?b#kqfe>!ibubp`qjsw9..= ?p`qjsw#wzsf>!w?b#kqfe>$kwws9,,ttt-klqw`vw#j`lm!#kqfe>!?,gju= ?gju#`obpp>!?p`qjsw#pq`>!kwws9,,!#qfo>!pwzofpkffw!#w?,gju= ?p`qjsw#wzsf>,b=#?b#kqfe>!kwws9,,#booltWqbmpsbqfm`z>![.VB.@lnsbwjaof!#`lmqfobwjlmpkjs#afwtffm ?,p`qjsw= ?p`qjsw#?,b=?,oj=?,vo=?,gju=bppl`jbwfg#tjwk#wkf#sqldqbnnjmd#obmdvbdf?,b=?b#kqfe>!kwws9,,?,b=?,oj=?oj#`obpp>!elqn#b`wjlm>!kwws9,,?gju#pwzof>!gjpsobz9wzsf>!wf{w!#mbnf>!r!?wbaof#tjgwk>!233&!#ab`hdqlvmg.slpjwjlm9!#alqgfq>!3!#tjgwk>!qfo>!pklqw`vw#j`lm!#k5=?vo=?oj=?b#kqfe>!##?nfwb#kwws.frvju>!`pp!#nfgjb>!p`qffm!#qfpslmpjaof#elq#wkf#!#wzsf>!bssoj`bwjlm,!#pwzof>!ab`hdqlvmg.kwno8#`kbqpfw>vwe.;!#booltwqbmpsbqfm`z>!pwzofpkffw!#wzsf>!wf ?nfwb#kwws.frvju>!=?,psbm=?psbm#`obpp>!3!#`foopsb`jmd>!3!=8 ?,p`qjsw= ?p`qjsw#plnfwjnfp#`boofg#wkfglfp#mlw#mf`fppbqjozElq#nlqf#jmelqnbwjlmbw#wkf#afdjmmjmd#le#?"GL@WZSF#kwno=?kwnosbqwj`vobqoz#jm#wkf#wzsf>!kjggfm!#mbnf>!ibubp`qjsw9uljg+3*8!feef`wjufmfpp#le#wkf#bvwl`lnsofwf>!lee!#dfmfqbooz#`lmpjgfqfg=?jmsvw#wzsf>!wf{w!#!=?,p`qjsw= ?p`qjswwkqlvdklvw#wkf#tlqog`lnnlm#njp`lm`fswjlmbppl`jbwjlm#tjwk#wkf?,gju= ?,gju= ?gju#`gvqjmd#kjp#ojefwjnf/`lqqfpslmgjmd#wl#wkfwzsf>!jnbdf,{.j`lm!#bm#jm`qfbpjmd#mvnafqgjsolnbwj`#qfobwjlmpbqf#lewfm#`lmpjgfqfgnfwb#`kbqpfw>!vwe.;!#?jmsvw#wzsf>!wf{w!#f{bnsofp#jm`ovgf#wkf!=?jnd#pq`>!kwws9,,jsbqwj`jsbwjlm#jm#wkfwkf#fpwbaojpknfmw#le ?,gju= ?gju#`obpp>!%bns8maps8%bns8maps8wl#gfwfqnjmf#tkfwkfqrvjwf#gjeefqfmw#eqlnnbqhfg#wkf#afdjmmjmdgjpwbm`f#afwtffm#wkf`lmwqjavwjlmp#wl#wkf`lmeoj`w#afwtffm#wkftjgfoz#`lmpjgfqfg#wltbp#lmf#le#wkf#ejqpwtjwk#ubqzjmd#gfdqffpkbuf#psf`vobwfg#wkbw+gl`vnfmw-dfwFofnfmwsbqwj`jsbwjmd#jm#wkflqjdjmbooz#gfufolsfgfwb#`kbqpfw>!vwe.;!=#wzsf>!wf{w,`pp!#,= jmwfq`kbmdfbaoz#tjwknlqf#`olpfoz#qfobwfgpl`jbo#bmg#slojwj`bowkbw#tlvog#lwkfqtjpfsfqsfmgj`vobq#wl#wkfpwzof#wzsf>!wf{w,`ppwzsf>!pvanjw!#mbnf>!ebnjojfp#qfpjgjmd#jmgfufolsjmd#`lvmwqjfp`lnsvwfq#sqldqbnnjmdf`lmlnj`#gfufolsnfmwgfwfqnjmbwjlm#le#wkfelq#nlqf#jmelqnbwjlmlm#pfufqbo#l``bpjlmpslqwvdv/Fp#+Fvqlsfv*<O<V=l<\\={<Q=m=`<V<\\=o<V=l<\\={<Q=m=`<V<\\<L<R=m=m<T<U=m<V<R<U<P<\\=n<Y=l<T<\\<W<R<^<T<Q=h<R=l<P<\\=j<T<T=o<S=l<\\<^<W<Y<Q<T=c<Q<Y<R<]=i<R<X<T<P<R<T<Q=h<R=l<P<\\=j<T=c<t<Q=h<R=l<P<\\=j<T=c<L<Y=m<S=o<]<W<T<V<T<V<R<W<T=k<Y=m=n<^<R<T<Q=h<R=l<P<\\=j<T=b=n<Y=l=l<T=n<R=l<T<T<X<R=m=n<\\=n<R=k<Q<R4K5h5i4F5d4K4@4C5d5j4K5h4K4X4F4]4K5o4K4F4K5h4K5n4F4]4K4A4K4Fkwno8#`kbqpfw>VWE.;!#pfwWjnflvw+evm`wjlm+*gjpsobz9jmojmf.aol`h8?jmsvw#wzsf>!pvanjw!#wzsf#>#$wf{w,ibubp`qj?jnd#pq`>!kwws9,,ttt-!#!kwws9,,ttt-t0-lqd,pklqw`vw#j`lm!#kqfe>!!#bvwl`lnsofwf>!lee!#?,b=?,gju=?gju#`obpp>?,b=?,oj= ?oj#`obpp>!`pp!#wzsf>!wf{w,`pp!#?elqn#b`wjlm>!kwws9,,{w,`pp!#kqfe>!kwws9,,ojmh#qfo>!bowfqmbwf!# ?p`qjsw#wzsf>!wf{w,#lm`oj`h>!ibubp`qjsw9+mft#Gbwf*-dfwWjnf+*~kfjdkw>!2!#tjgwk>!2!#Sflsof$p#Qfsvaoj`#le##?b#kqfe>!kwws9,,ttt-wf{w.gf`lqbwjlm9vmgfqwkf#afdjmmjmd#le#wkf#?,gju= ?,gju= ?,gju= fpwbaojpknfmw#le#wkf#?,gju=?,gju=?,gju=?,g ujftslqwxnjm.kfjdkw9 ?p`qjsw#pq`>!kwws9,,lswjlm=?lswjlm#ubovf>lewfm#qfefqqfg#wl#bp#,lswjlm= ?lswjlm#ubov?"GL@WZSF#kwno= ?"..XJmwfqmbwjlmbo#Bjqslqw= ?b#kqfe>!kwws9,,ttt?,b=?b#kqfe>!kwws9,,t\fTL\fT^\fTE\fT^\fUh\fT{\fTN\roI\ro|\roL\ro{\roO\rov\rot\nAOGx\bTA\nzk#+\vUmGx*\fHD\fHS\fH\\\fIa\fHJ\fIk\fHZ\fHM\fHR\fHe\fHD\fH^\fIg\fHM\fHy\fIa\fH[\fIk\fHH\fIa\fH\\\fHp\fHR\fHD\fHy\fHR\fH\\\fIl\fHT\fHn\fH@\fHn\fHK\fHS\fHH\fHT\fIa\fHI\fHR\fHF\fHD\fHR\fHT\fIa\fHY\fIl\fHy\fHR\fH\\\fHT\fHn\fHT\fIa\fHy\fH\\\fHO\fHT\fHR\fHB\fH{\fIa\fH\\\fIl\fHv\fHS\fHs\fIa\fHL\fIg\fHn\fHY\fHS\fHp\fIa\fHr\fHR\fHD\fHi\fHB\fIk\fH\\\fHS\fHy\fHR\fHY\fHS\fHA\fHS\fHD\fIa\fHD\fH{\fHR\fHM\fHS\fHC\fHR\fHm\fHy\fIa\fHC\fIg\fHn\fHy\fHS\fHT\fIm\fH\\\fHy\fIa\fH[\fHR\fHF\fHU\fIm\fHm\fHv\fHH\fIl\fHF\fIa\fH\\\fH@\fHn\fHK\fHD\fHs\fHS\fHF\fIa\fHF\fHO\fIl\fHy\fIa\fH\\\fHS\fHy\fIk\fHs\fHF\fIa\fH\\\fHR\fH\\\fHn\fHA\fHF\fIa\fH\\\fHR\fHF\fIa\fHH\fHB\fHR\fH^\fHS\fHy\fIg\fHn\fH\\\fHG\fHP\fIa\fHH\fHR\fH\\\fHD\fHS\fH\\\fIa\fHB\fHR\fHO\fH^\fHS\fHB\fHS\fHs\fIk\fHMgfp`qjswjlm!#`lmwfmw>!gl`vnfmw-ol`bwjlm-sqlw-dfwFofnfmwpAzWbdMbnf+?"GL@WZSF#kwno= ?kwno#?nfwb#`kbqpfw>!vwe.;!=9vqo!#`lmwfmw>!kwws9,,-`pp!#qfo>!pwzofpkffw!pwzof#wzsf>!wf{w,`pp!=wzsf>!wf{w,`pp!#kqfe>!t0-lqd,2:::,{kwno!#{nowzsf>!wf{w,ibubp`qjsw!#nfwklg>!dfw!#b`wjlm>!ojmh#qfo>!pwzofpkffw!##>#gl`vnfmw-dfwFofnfmwwzsf>!jnbdf,{.j`lm!#,=`foosbggjmd>!3!#`foops-`pp!#wzsf>!wf{w,`pp!#?,b=?,oj=?oj=?b#kqfe>!!#tjgwk>!2!#kfjdkw>!2!!=?b#kqfe>!kwws9,,ttt-pwzof>!gjpsobz9mlmf8!=bowfqmbwf!#wzsf>!bssoj.,,T0@,,GWG#[KWNO#2-3#foopsb`jmd>!3!#`foosbg#wzsf>!kjggfm!#ubovf>!,b=%maps8?psbm#qlof>!p ?jmsvw#wzsf>!kjggfm!#obmdvbdf>!IbubP`qjsw!##gl`vnfmw-dfwFofnfmwpAd>!3!#`foopsb`jmd>!3!#zsf>!wf{w,`pp!#nfgjb>!wzsf>$wf{w,ibubp`qjsw$tjwk#wkf#f{`fswjlm#le#zsf>!wf{w,`pp!#qfo>!pw#kfjdkw>!2!#tjgwk>!2!#>$(fm`lgfVQJ@lnslmfmw+?ojmh#qfo>!bowfqmbwf!# algz/#wq/#jmsvw/#wf{wnfwb#mbnf>!qlalwp!#`lmnfwklg>!slpw!#b`wjlm>!= ?b#kqfe>!kwws9,,ttt-`pp!#qfo>!pwzofpkffw!#?,gju=?,gju=?gju#`obppobmdvbdf>!ibubp`qjsw!=bqjb.kjggfm>!wqvf!=.[?qjsw!#wzsf>!wf{w,ibubpo>38~*+*8 +evm`wjlm+*xab`hdqlvmg.jnbdf9#vqo+,b=?,oj=?oj=?b#kqfe>!k\n\n?oj=?b#kqfe>!kwws9,,bwlq!#bqjb.kjggfm>!wqv=#?b#kqfe>!kwws9,,ttt-obmdvbdf>!ibubp`qjsw!#,lswjlm= ?lswjlm#ubovf,gju=?,gju=?gju#`obpp>qbwlq!#bqjb.kjggfm>!wqf>+mft#Gbwf*-dfwWjnf+*slqwvdv/Fp#+gl#Aqbpjo*<R=l<_<\\<Q<T<[<\\=j<T<T<^<R<[<P<R<Z<Q<R=m=n=`<R<]=l<\\<[<R<^<\\<Q<T=c=l<Y<_<T=m=n=l<\\=j<T<T<^<R<[<P<R<Z<Q<R=m=n<T<R<]=c<[<\\=n<Y<W=`<Q<\\?"GL@WZSF#kwno#SVAOJ@#!mw.Wzsf!#`lmwfmw>!wf{w,?nfwb#kwws.frvju>!@lmwfqbmpjwjlmbo,,FM!#!kwws9?kwno#{nomp>!kwws9,,ttt.,,T0@,,GWG#[KWNO#2-3#WGWG,{kwno2.wqbmpjwjlmbo,,ttt-t0-lqd,WQ,{kwno2,sf#>#$wf{w,ibubp`qjsw$8?nfwb#mbnf>!gfp`qjswjlmsbqfmwMlgf-jmpfqwAfelqf?jmsvw#wzsf>!kjggfm!#mbip!#wzsf>!wf{w,ibubp`qj+gl`vnfmw*-qfbgz+evm`wjp`qjsw#wzsf>!wf{w,ibubpjnbdf!#`lmwfmw>!kwws9,,VB.@lnsbwjaof!#`lmwfmw>wno8#`kbqpfw>vwe.;!#,= ojmh#qfo>!pklqw`vw#j`lm?ojmh#qfo>!pwzofpkffw!#?,p`qjsw= ?p`qjsw#wzsf>>#gl`vnfmw-`qfbwfFofnfm?b#wbqdfw>!\\aobmh!#kqfe>#gl`vnfmw-dfwFofnfmwpAjmsvw#wzsf>!wf{w!#mbnf>b-wzsf#>#$wf{w,ibubp`qjmsvw#wzsf>!kjggfm!#mbnfkwno8#`kbqpfw>vwe.;!#,=gwg!= ?kwno#{nomp>!kwws.,,T0@,,GWG#KWNO#7-32#WfmwpAzWbdMbnf+$p`qjsw$*jmsvw#wzsf>!kjggfm!#mbn?p`qjsw#wzsf>!wf{w,ibubp!#pwzof>!gjpsobz9mlmf8!=gl`vnfmw-dfwFofnfmwAzJg+>gl`vnfmw-`qfbwfFofnfmw+$#wzsf>$wf{w,ibubp`qjsw$jmsvw#wzsf>!wf{w!#mbnf>!g-dfwFofnfmwpAzWbdMbnf+pmj`bo!#kqfe>!kwws9,,ttt-@,,GWG#KWNO#7-32#Wqbmpjw?pwzof#wzsf>!wf{w,`pp!= ?pwzof#wzsf>!wf{w,`pp!=jlmbo-gwg!= ?kwno#{nomp>kwws.frvju>!@lmwfmw.Wzsfgjmd>!3!#`foopsb`jmd>!3!kwno8#`kbqpfw>vwe.;!#,= #pwzof>!gjpsobz9mlmf8!=??oj=?b#kqfe>!kwws9,,ttt-#wzsf>$wf{w,ibubp`qjsw$=<X<Y=c=n<Y<W=`<Q<R=m=n<T=m<R<R=n<^<Y=n=m=n<^<T<T<S=l<R<T<[<^<R<X=m=n<^<\\<]<Y<[<R<S<\\=m<Q<R=m=n<T\fHF\fIm\fHT\fIa\fHH\fHS\fHy\fHR\fHy\fHR\fHn\fH{\fIa\fH\\\fIk\fHT\fHe\fHD\fIa\fHU\fIg\fHn\fHD\fIk\fHY\fHS\fHK\fHR\fHD\fHT\fHA\fHR\fHG\fHS\fHy\fIa\fHT\fHS\fHn\fH{\fHT\fIm\fH\\\fHy\fIa\fH[\fHS\fHH\fHy\fIe\fHF\fIl\fH\\\fHR\fHk\fHs\fHY\fHS\fHp\fIa\fHr\fHR\fHF\fHD\fHy\fHR\fH\\\fIa\fH\\\fHY\fHR\fHd\fHT\fHy\fIa\fH\\\fHS\fHC\fHH\fHR',"\u06F7%\u018C'T%\x85'W%\xD7%O%g%\xA6&\u0193%\u01E5&>&*&'&^&\x88\u0178\u0C3E&\u01AD&\u0192&)&^&%&'&\x82&P&1&\xB1&3&]&m&u&E&t&C&\xCF&V&V&/&>&6&\u0F76\u177Co&p&@&E&M&P&x&@&F&e&\xCC&7&:&(&D&0&C&)&.&F&-&1&(&L&F&1\u025E*\u03EA\u21F3&\u1372&K&;&)&E&H&P&0&?&9&V&\x81&-&v&a&,&E&)&?&=&'&'&B&\u0D2E&\u0503&\u0316*&*8&%&%&&&%,)&\x9A&>&\x86&7&]&F&2&>&J&6&n&2&%&?&\x8E&2&6&J&g&-&0&,&*&J&*&O&)&6&(&<&B&N&.&P&@&2&.&W&M&%\u053C\x84(,(<&,&\u03DA&\u18C7&-&,(%&(&%&(\u013B0&X&D&\x81&j&'&J&(&.&B&3&Z&R&h&3&E&E&<\xC6-\u0360\u1EF3&%8?&@&,&Z&@&0&J&,&^&x&_&6&C&6&C\u072C\u2A25&f&-&-&-&-&,&J&2&8&z&8&C&Y&8&-&d&\u1E78\xCC-&7&1&F&7&t&W&7&I&.&.&^&=\u0F9C\u19D3&8(>&/&/&\u077B')'\u1065')'%@/&0&%\u043E\u09C0*&*@&C\u053D\u05D4\u0274\u05EB4\u0DD7\u071A\u04D16\u0D84&/\u0178\u0303Z&*%\u0246\u03FF&\u0134&1\xA8\u04B4\u0174",x,"AAAAKKLLKKKKKJJIHHIHHGGFF"),D1(a),I1(E1(a),x)}function Bo(a,x){return a<=x?a:x}function x1(a,x,k,A,O){a.set(k.slice(A,O),x)}function kj(a,x,k,A){if(a==null)return-1;let O=Bo(a.offset+A,a.data.length),Q=O-a.offset;return x.set(a.data.subarray(a.offset,O),k),a.offset+=Q,Q}function A1(a){return 0}function E1(a){return a}function O1(a){return 1}function N1(a){return 1}function D1(a){}function F1(a){let x=a.length,k=new Int8Array(x);for(let A=0;A<x;++A)k[A]=a.charCodeAt(A);return k}function P1(a,x){let k=new xt;if(te(k,new t(a)),x){let he=x.customDictionary;he&&L(k,he)}let A=0,O=[];for(;;){let he=new Int8Array(16384);if(O.push(he),k.output=he,k.outputOffset=0,k.outputLength=16384,k.outputUsed=0,mt(k),A+=k.outputUsed,k.outputUsed<16384)break}ce(k);let Q=new Int8Array(A),re=0;for(let he=0;he<O.length;++he){let Ae=O[he],qe=Bo(A,re+16384)-re;qe<16384?Q.set(Ae.subarray(0,qe),re):Q.set(Ae,re),re+=qe}return Q}return P1},$_=UE();var Tl=Pe(Sb());var eq={brotli:{mode:0,quality:8,lgwin:22}},Ff,Lc=class extends nn{constructor(e){super(e);this.name="brotli";this.extensions=["br"];this.contentEncodings=["br"];this.isSupported=!0;this.options=e}async preload(){Ff=Ff||this.options?.modules?.brotli,Ff||console.warn(`${this.name} library not installed`)}async compress(e){if(!Vn&&this.options.brotli?.useZlib){let r=await zi(Tl.default.brotliCompress)(e);return rn(r)}return this.compressSync(e)}compressSync(e){if(!Vn&&this.options.brotli?.useZlib){let o=Tl.default.brotliCompressSync(e);return rn(o)}let r={...eq.brotli,...this.options?.brotli},n=new Uint8Array(e);if(!Ff)throw new Error("brotli compression: brotli module not installed");return Ff.compress(n,r).buffer}async decompress(e){if(!Vn&&this.options.brotli?.useZlib){let r=await zi(Tl.default.brotliDecompress)(e);return rn(r)}return this.decompressSync(e)}decompressSync(e){if(!Vn&&this.options.brotli?.useZlib){let o=Tl.default.brotliDecompressSync(e);return rn(o)}let r={...eq.brotli,...this.options?.brotli},n=new Uint8Array(e);return Ff?Ff.decompress(n,r).buffer:$_(n,void 0).buffer}};var bq=Pe(mq());function $E(t){return Buffer.from(t)}function eO(t){return Buffer.isBuffer(t)?new Uint8Array(t.buffer,t.byteOffset,t.length).slice().buffer:t}var Jc={lz4js:bq.default},Vb={UNCOMPRESSED:new hc,GZIP:new Dc,SNAPPY:new Uc,BROTLI:new Lc({modules:Jc}),LZ4:new _l({modules:Jc}),LZ4_RAW:new _l({modules:Jc}),ZSTD:new Rc({modules:Jc})};async function Zc(t,e,r){let n=Vb[t];if(!n)throw new Error(`parquet: invalid compression method: ${t}`);let i=eO(e),o=await n.decompress(i,r);return $E(o)}var Xc=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function zt(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}function Dt(t,e){return e={exports:{}},t(e,e.exports),e.exports}var tO=oO,rO=sO,nO=uO,ci=[],wn=[],iO=typeof Uint8Array!="undefined"?Uint8Array:Array,Cb="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(Hf=0,wq=Cb.length;Hf<wq;++Hf)ci[Hf]=Cb[Hf],wn[Cb.charCodeAt(Hf)]=Hf;var Hf,wq;wn["-".charCodeAt(0)]=62;wn["_".charCodeAt(0)]=63;function hq(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");r===-1&&(r=e);var n=r===e?0:4-r%4;return[r,n]}function oO(t){var e=hq(t),r=e[0],n=e[1];return(r+n)*3/4-n}function fO(t,e,r){return(e+r)*3/4-r}function sO(t){var e,r=hq(t),n=r[0],i=r[1],o=new iO(fO(t,n,i)),f=0,s=i>0?n-4:n,l;for(l=0;l<s;l+=4)e=wn[t.charCodeAt(l)]<<18|wn[t.charCodeAt(l+1)]<<12|wn[t.charCodeAt(l+2)]<<6|wn[t.charCodeAt(l+3)],o[f++]=e>>16&255,o[f++]=e>>8&255,o[f++]=e&255;return i===2&&(e=wn[t.charCodeAt(l)]<<2|wn[t.charCodeAt(l+1)]>>4,o[f++]=e&255),i===1&&(e=wn[t.charCodeAt(l)]<<10|wn[t.charCodeAt(l+1)]<<4|wn[t.charCodeAt(l+2)]>>2,o[f++]=e>>8&255,o[f++]=e&255),o}function aO(t){return ci[t>>18&63]+ci[t>>12&63]+ci[t>>6&63]+ci[t&63]}function lO(t,e,r){for(var n,i=[],o=e;o<r;o+=3)n=(t[o]<<16&16711680)+(t[o+1]<<8&65280)+(t[o+2]&255),i.push(aO(n));return i.join("")}function uO(t){for(var e,r=t.length,n=r%3,i=[],o=16383,f=0,s=r-n;f<s;f+=o)i.push(lO(t,f,f+o>s?s:f+o));return n===1?(e=t[r-1],i.push(ci[e>>2]+ci[e<<4&63]+"==")):n===2&&(e=(t[r-2]<<8)+t[r-1],i.push(ci[e>>10]+ci[e>>4&63]+ci[e<<2&63]+"=")),i.join("")}var Wb={byteLength:tO,toByteArray:rO,fromByteArray:nO},cO=function(e,r,n,i,o){var f,s,l=o*8-i-1,u=(1<<l)-1,c=u>>1,_=-7,p=n?o-1:0,j=n?-1:1,S=e[r+p];for(p+=j,f=S&(1<<-_)-1,S>>=-_,_+=l;_>0;f=f*256+e[r+p],p+=j,_-=8);for(s=f&(1<<-_)-1,f>>=-_,_+=i;_>0;s=s*256+e[r+p],p+=j,_-=8);if(f===0)f=1-c;else{if(f===u)return s?NaN:(S?-1:1)*(1/0);s=s+Math.pow(2,i),f=f-c}return(S?-1:1)*s*Math.pow(2,f-i)},pO=function(e,r,n,i,o,f){var s,l,u,c=f*8-o-1,_=(1<<c)-1,p=_>>1,j=o===23?Math.pow(2,-24)-Math.pow(2,-77):0,S=i?0:f-1,T=i?1:-1,U=r<0||r===0&&1/r<0?1:0;for(r=Math.abs(r),isNaN(r)||r===1/0?(l=isNaN(r)?1:0,s=_):(s=Math.floor(Math.log(r)/Math.LN2),r*(u=Math.pow(2,-s))<1&&(s--,u*=2),s+p>=1?r+=j/u:r+=j*Math.pow(2,1-p),r*u>=2&&(s++,u/=2),s+p>=_?(l=0,s=_):s+p>=1?(l=(r*u-1)*Math.pow(2,o),s=s+p):(l=r*Math.pow(2,p-1)*Math.pow(2,o),s=0));o>=8;e[n+S]=l&255,S+=T,l/=256,o-=8);for(s=s<<o|l,c+=o;c>0;e[n+S]=s&255,S+=T,s/=256,c-=8);e[n+S-T]|=U*128},Es={read:cO,write:pO},ge=Dt(function(t,e){var r=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=f,e.SlowBuffer=U,e.INSPECT_MAX_BYTES=50;var n=2147483647;e.kMaxLength=n,f.TYPED_ARRAY_SUPPORT=i(),!f.TYPED_ARRAY_SUPPORT&&typeof console!="undefined"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function i(){try{var q=new Uint8Array(1),d={foo:function(){return 42}};return Object.setPrototypeOf(d,Uint8Array.prototype),Object.setPrototypeOf(q,d),q.foo()===42}catch{return!1}}Object.defineProperty(f.prototype,"parent",{enumerable:!0,get:function(){if(!!f.isBuffer(this))return this.buffer}}),Object.defineProperty(f.prototype,"offset",{enumerable:!0,get:function(){if(!!f.isBuffer(this))return this.byteOffset}});function o(q){if(q>n)throw new RangeError('The value "'+q+'" is invalid for option "size"');var d=new Uint8Array(q);return Object.setPrototypeOf(d,f.prototype),d}function f(q,d,m){if(typeof q=="number"){if(typeof d=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return c(q)}return s(q,d,m)}f.poolSize=8192;function s(q,d,m){if(typeof q=="string")return _(q,d);if(ArrayBuffer.isView(q))return p(q);if(q==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+babelHelpers.typeof(q));if(Ye(q,ArrayBuffer)||q&&Ye(q.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(Ye(q,SharedArrayBuffer)||q&&Ye(q.buffer,SharedArrayBuffer)))return j(q,d,m);if(typeof q=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var B=q.valueOf&&q.valueOf();if(B!=null&&B!==q)return f.from(B,d,m);var R=S(q);if(R)return R;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof q[Symbol.toPrimitive]=="function")return f.from(q[Symbol.toPrimitive]("string"),d,m);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+babelHelpers.typeof(q))}f.from=function(q,d,m){return s(q,d,m)},Object.setPrototypeOf(f.prototype,Uint8Array.prototype),Object.setPrototypeOf(f,Uint8Array);function l(q){if(typeof q!="number")throw new TypeError('"size" argument must be of type number');if(q<0)throw new RangeError('The value "'+q+'" is invalid for option "size"')}function u(q,d,m){return l(q),q<=0?o(q):d!==void 0?typeof m=="string"?o(q).fill(d,m):o(q).fill(d):o(q)}f.alloc=function(q,d,m){return u(q,d,m)};function c(q){return l(q),o(q<0?0:T(q)|0)}f.allocUnsafe=function(q){return c(q)},f.allocUnsafeSlow=function(q){return c(q)};function _(q,d){if((typeof d!="string"||d==="")&&(d="utf8"),!f.isEncoding(d))throw new TypeError("Unknown encoding: "+d);var m=W(q,d)|0,B=o(m),R=B.write(q,d);return R!==m&&(B=B.slice(0,R)),B}function p(q){for(var d=q.length<0?0:T(q.length)|0,m=o(d),B=0;B<d;B+=1)m[B]=q[B]&255;return m}function j(q,d,m){if(d<0||q.byteLength<d)throw new RangeError('"offset" is outside of buffer bounds');if(q.byteLength<d+(m||0))throw new RangeError('"length" is outside of buffer bounds');var B;return d===void 0&&m===void 0?B=new Uint8Array(q):m===void 0?B=new Uint8Array(q,d):B=new Uint8Array(q,d,m),Object.setPrototypeOf(B,f.prototype),B}function S(q){if(f.isBuffer(q)){var d=T(q.length)|0,m=o(d);return m.length===0||q.copy(m,0,0,d),m}if(q.length!==void 0)return typeof q.length!="number"||Ht(q.length)?o(0):p(q);if(q.type==="Buffer"&&Array.isArray(q.data))return p(q.data)}function T(q){if(q>=n)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+n.toString(16)+" bytes");return q|0}function U(q){return+q!=q&&(q=0),f.alloc(+q)}f.isBuffer=function(d){return d!=null&&d._isBuffer===!0&&d!==f.prototype},f.compare=function(d,m){if(Ye(d,Uint8Array)&&(d=f.from(d,d.offset,d.byteLength)),Ye(m,Uint8Array)&&(m=f.from(m,m.offset,m.byteLength)),!f.isBuffer(d)||!f.isBuffer(m))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(d===m)return 0;for(var B=d.length,R=m.length,oe=0,fe=Math.min(B,R);oe<fe;++oe)if(d[oe]!==m[oe]){B=d[oe],R=m[oe];break}return B<R?-1:R<B?1:0},f.isEncoding=function(d){switch(String(d).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},f.concat=function(d,m){if(!Array.isArray(d))throw new TypeError('"list" argument must be an Array of Buffers');if(d.length===0)return f.alloc(0);var B;if(m===void 0)for(m=0,B=0;B<d.length;++B)m+=d[B].length;var R=f.allocUnsafe(m),oe=0;for(B=0;B<d.length;++B){var fe=d[B];if(Ye(fe,Uint8Array)&&(fe=f.from(fe)),!f.isBuffer(fe))throw new TypeError('"list" argument must be an Array of Buffers');fe.copy(R,oe),oe+=fe.length}return R};function W(q,d){if(f.isBuffer(q))return q.length;if(ArrayBuffer.isView(q)||Ye(q,ArrayBuffer))return q.byteLength;if(typeof q!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+babelHelpers.typeof(q));var m=q.length,B=arguments.length>2&&arguments[2]===!0;if(!B&&m===0)return 0;for(var R=!1;;)switch(d){case"ascii":case"latin1":case"binary":return m;case"utf8":case"utf-8":return je(q).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return m*2;case"hex":return m>>>1;case"base64":return vo(q).length;default:if(R)return B?-1:je(q).length;d=(""+d).toLowerCase(),R=!0}}f.byteLength=W;function L(q,d,m){var B=!1;if((d===void 0||d<0)&&(d=0),d>this.length||((m===void 0||m>this.length)&&(m=this.length),m<=0)||(m>>>=0,d>>>=0,m<=d))return"";for(q||(q="utf8");;)switch(q){case"hex":return E(this,d,m);case"utf8":case"utf-8":return b(this,d,m);case"ascii":return M(this,d,m);case"latin1":case"binary":return ie(this,d,m);case"base64":return N(this,d,m);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return We(this,d,m);default:if(B)throw new TypeError("Unknown encoding: "+q);q=(q+"").toLowerCase(),B=!0}}f.prototype._isBuffer=!0;function te(q,d,m){var B=q[d];q[d]=q[m],q[m]=B}f.prototype.swap16=function(){var d=this.length;if(d%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var m=0;m<d;m+=2)te(this,m,m+1);return this},f.prototype.swap32=function(){var d=this.length;if(d%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var m=0;m<d;m+=4)te(this,m,m+3),te(this,m+1,m+2);return this},f.prototype.swap64=function(){var d=this.length;if(d%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var m=0;m<d;m+=8)te(this,m,m+7),te(this,m+1,m+6),te(this,m+2,m+5),te(this,m+3,m+4);return this},f.prototype.toString=function(){var d=this.length;return d===0?"":arguments.length===0?b(this,0,d):L.apply(this,arguments)},f.prototype.toLocaleString=f.prototype.toString,f.prototype.equals=function(d){if(!f.isBuffer(d))throw new TypeError("Argument must be a Buffer");return this===d?!0:f.compare(this,d)===0},f.prototype.inspect=function(){var d="",m=e.INSPECT_MAX_BYTES;return d=this.toString("hex",0,m).replace(/(.{2})/g,"$1 ").trim(),this.length>m&&(d+=" ... "),"<Buffer "+d+">"},r&&(f.prototype[r]=f.prototype.inspect),f.prototype.compare=function(d,m,B,R,oe){if(Ye(d,Uint8Array)&&(d=f.from(d,d.offset,d.byteLength)),!f.isBuffer(d))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+babelHelpers.typeof(d));if(m===void 0&&(m=0),B===void 0&&(B=d?d.length:0),R===void 0&&(R=0),oe===void 0&&(oe=this.length),m<0||B>d.length||R<0||oe>this.length)throw new RangeError("out of range index");if(R>=oe&&m>=B)return 0;if(R>=oe)return-1;if(m>=B)return 1;if(m>>>=0,B>>>=0,R>>>=0,oe>>>=0,this===d)return 0;for(var fe=oe-R,rt=B-m,Je=Math.min(fe,rt),vt=this.slice(R,oe),br=d.slice(m,B),Be=0;Be<Je;++Be)if(vt[Be]!==br[Be]){fe=vt[Be],rt=br[Be];break}return fe<rt?-1:rt<fe?1:0};function ce(q,d,m,B,R){if(q.length===0)return-1;if(typeof m=="string"?(B=m,m=0):m>2147483647?m=2147483647:m<-2147483648&&(m=-2147483648),m=+m,Ht(m)&&(m=R?0:q.length-1),m<0&&(m=q.length+m),m>=q.length){if(R)return-1;m=q.length-1}else if(m<0)if(R)m=0;else return-1;if(typeof d=="string"&&(d=f.from(d,B)),f.isBuffer(d))return d.length===0?-1:J(q,d,m,B,R);if(typeof d=="number")return d=d&255,typeof Uint8Array.prototype.indexOf=="function"?R?Uint8Array.prototype.indexOf.call(q,d,m):Uint8Array.prototype.lastIndexOf.call(q,d,m):J(q,[d],m,B,R);throw new TypeError("val must be string, number or Buffer")}function J(q,d,m,B,R){var oe=1,fe=q.length,rt=d.length;if(B!==void 0&&(B=String(B).toLowerCase(),B==="ucs2"||B==="ucs-2"||B==="utf16le"||B==="utf-16le")){if(q.length<2||d.length<2)return-1;oe=2,fe/=2,rt/=2,m/=2}function Je(v,I){return oe===1?v[I]:v.readUInt16BE(I*oe)}var vt;if(R){var br=-1;for(vt=m;vt<fe;vt++)if(Je(q,vt)===Je(d,br===-1?0:vt-br)){if(br===-1&&(br=vt),vt-br+1===rt)return br*oe}else br!==-1&&(vt-=vt-br),br=-1}else for(m+rt>fe&&(m=fe-rt),vt=m;vt>=0;vt--){for(var Be=!0,Ln=0;Ln<rt;Ln++)if(Je(q,vt+Ln)!==Je(d,Ln)){Be=!1;break}if(Be)return vt}return-1}f.prototype.includes=function(d,m,B){return this.indexOf(d,m,B)!==-1},f.prototype.indexOf=function(d,m,B){return ce(this,d,m,B,!0)},f.prototype.lastIndexOf=function(d,m,B){return ce(this,d,m,B,!1)};function D(q,d,m,B){m=Number(m)||0;var R=q.length-m;B?(B=Number(B),B>R&&(B=R)):B=R;var oe=d.length;B>oe/2&&(B=oe/2);for(var fe=0;fe<B;++fe){var rt=parseInt(d.substr(fe*2,2),16);if(Ht(rt))return fe;q[m+fe]=rt}return fe}function ae(q,d,m,B){return It(je(d,q.length-m),q,m,B)}function Y(q,d,m,B){return It($(d),q,m,B)}function pe(q,d,m,B){return Y(q,d,m,B)}function y(q,d,m,B){return It(vo(d),q,m,B)}function g(q,d,m,B){return It(qo(d,q.length-m),q,m,B)}f.prototype.write=function(d,m,B,R){if(m===void 0)R="utf8",B=this.length,m=0;else if(B===void 0&&typeof m=="string")R=m,B=this.length,m=0;else if(isFinite(m))m=m>>>0,isFinite(B)?(B=B>>>0,R===void 0&&(R="utf8")):(R=B,B=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var oe=this.length-m;if((B===void 0||B>oe)&&(B=oe),d.length>0&&(B<0||m<0)||m>this.length)throw new RangeError("Attempt to write outside buffer bounds");R||(R="utf8");for(var fe=!1;;)switch(R){case"hex":return D(this,d,m,B);case"utf8":case"utf-8":return ae(this,d,m,B);case"ascii":return Y(this,d,m,B);case"latin1":case"binary":return pe(this,d,m,B);case"base64":return y(this,d,m,B);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return g(this,d,m,B);default:if(fe)throw new TypeError("Unknown encoding: "+R);R=(""+R).toLowerCase(),fe=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function N(q,d,m){return d===0&&m===q.length?Wb.fromByteArray(q):Wb.fromByteArray(q.slice(d,m))}function b(q,d,m){m=Math.min(q.length,m);for(var B=[],R=d;R<m;){var oe=q[R],fe=null,rt=oe>239?4:oe>223?3:oe>191?2:1;if(R+rt<=m){var Je,vt,br,Be;switch(rt){case 1:oe<128&&(fe=oe);break;case 2:Je=q[R+1],(Je&192)==128&&(Be=(oe&31)<<6|Je&63,Be>127&&(fe=Be));break;case 3:Je=q[R+1],vt=q[R+2],(Je&192)==128&&(vt&192)==128&&(Be=(oe&15)<<12|(Je&63)<<6|vt&63,Be>2047&&(Be<55296||Be>57343)&&(fe=Be));break;case 4:Je=q[R+1],vt=q[R+2],br=q[R+3],(Je&192)==128&&(vt&192)==128&&(br&192)==128&&(Be=(oe&15)<<18|(Je&63)<<12|(vt&63)<<6|br&63,Be>65535&&Be<1114112&&(fe=Be))}}fe===null?(fe=65533,rt=1):fe>65535&&(fe-=65536,B.push(fe>>>10&1023|55296),fe=56320|fe&1023),B.push(fe),R+=rt}return K(B)}var H=4096;function K(q){var d=q.length;if(d<=H)return String.fromCharCode.apply(String,q);for(var m="",B=0;B<d;)m+=String.fromCharCode.apply(String,q.slice(B,B+=H));return m}function M(q,d,m){var B="";m=Math.min(q.length,m);for(var R=d;R<m;++R)B+=String.fromCharCode(q[R]&127);return B}function ie(q,d,m){var B="";m=Math.min(q.length,m);for(var R=d;R<m;++R)B+=String.fromCharCode(q[R]);return B}function E(q,d,m){var B=q.length;(!d||d<0)&&(d=0),(!m||m<0||m>B)&&(m=B);for(var R="",oe=d;oe<m;++oe)R+=mt[q[oe]];return R}function We(q,d,m){for(var B=q.slice(d,m),R="",oe=0;oe<B.length;oe+=2)R+=String.fromCharCode(B[oe]+B[oe+1]*256);return R}f.prototype.slice=function(d,m){var B=this.length;d=~~d,m=m===void 0?B:~~m,d<0?(d+=B,d<0&&(d=0)):d>B&&(d=B),m<0?(m+=B,m<0&&(m=0)):m>B&&(m=B),m<d&&(m=d);var R=this.subarray(d,m);return Object.setPrototypeOf(R,f.prototype),R};function de(q,d,m){if(q%1!=0||q<0)throw new RangeError("offset is not uint");if(q+d>m)throw new RangeError("Trying to access beyond buffer length")}f.prototype.readUIntLE=function(d,m,B){d=d>>>0,m=m>>>0,B||de(d,m,this.length);for(var R=this[d],oe=1,fe=0;++fe<m&&(oe*=256);)R+=this[d+fe]*oe;return R},f.prototype.readUIntBE=function(d,m,B){d=d>>>0,m=m>>>0,B||de(d,m,this.length);for(var R=this[d+--m],oe=1;m>0&&(oe*=256);)R+=this[d+--m]*oe;return R},f.prototype.readUInt8=function(d,m){return d=d>>>0,m||de(d,1,this.length),this[d]},f.prototype.readUInt16LE=function(d,m){return d=d>>>0,m||de(d,2,this.length),this[d]|this[d+1]<<8},f.prototype.readUInt16BE=function(d,m){return d=d>>>0,m||de(d,2,this.length),this[d]<<8|this[d+1]},f.prototype.readUInt32LE=function(d,m){return d=d>>>0,m||de(d,4,this.length),(this[d]|this[d+1]<<8|this[d+2]<<16)+this[d+3]*16777216},f.prototype.readUInt32BE=function(d,m){return d=d>>>0,m||de(d,4,this.length),this[d]*16777216+(this[d+1]<<16|this[d+2]<<8|this[d+3])},f.prototype.readIntLE=function(d,m,B){d=d>>>0,m=m>>>0,B||de(d,m,this.length);for(var R=this[d],oe=1,fe=0;++fe<m&&(oe*=256);)R+=this[d+fe]*oe;return oe*=128,R>=oe&&(R-=Math.pow(2,8*m)),R},f.prototype.readIntBE=function(d,m,B){d=d>>>0,m=m>>>0,B||de(d,m,this.length);for(var R=m,oe=1,fe=this[d+--R];R>0&&(oe*=256);)fe+=this[d+--R]*oe;return oe*=128,fe>=oe&&(fe-=Math.pow(2,8*m)),fe},f.prototype.readInt8=function(d,m){return d=d>>>0,m||de(d,1,this.length),this[d]&128?(255-this[d]+1)*-1:this[d]},f.prototype.readInt16LE=function(d,m){d=d>>>0,m||de(d,2,this.length);var B=this[d]|this[d+1]<<8;return B&32768?B|4294901760:B},f.prototype.readInt16BE=function(d,m){d=d>>>0,m||de(d,2,this.length);var B=this[d+1]|this[d]<<8;return B&32768?B|4294901760:B},f.prototype.readInt32LE=function(d,m){return d=d>>>0,m||de(d,4,this.length),this[d]|this[d+1]<<8|this[d+2]<<16|this[d+3]<<24},f.prototype.readInt32BE=function(d,m){return d=d>>>0,m||de(d,4,this.length),this[d]<<24|this[d+1]<<16|this[d+2]<<8|this[d+3]},f.prototype.readFloatLE=function(d,m){return d=d>>>0,m||de(d,4,this.length),Es.read(this,d,!0,23,4)},f.prototype.readFloatBE=function(d,m){return d=d>>>0,m||de(d,4,this.length),Es.read(this,d,!1,23,4)},f.prototype.readDoubleLE=function(d,m){return d=d>>>0,m||de(d,8,this.length),Es.read(this,d,!0,52,8)},f.prototype.readDoubleBE=function(d,m){return d=d>>>0,m||de(d,8,this.length),Es.read(this,d,!1,52,8)};function C(q,d,m,B,R,oe){if(!f.isBuffer(q))throw new TypeError('"buffer" argument must be a Buffer instance');if(d>R||d<oe)throw new RangeError('"value" argument is out of bounds');if(m+B>q.length)throw new RangeError("Index out of range")}f.prototype.writeUIntLE=function(d,m,B,R){if(d=+d,m=m>>>0,B=B>>>0,!R){var oe=Math.pow(2,8*B)-1;C(this,d,m,B,oe,0)}var fe=1,rt=0;for(this[m]=d&255;++rt<B&&(fe*=256);)this[m+rt]=d/fe&255;return m+B},f.prototype.writeUIntBE=function(d,m,B,R){if(d=+d,m=m>>>0,B=B>>>0,!R){var oe=Math.pow(2,8*B)-1;C(this,d,m,B,oe,0)}var fe=B-1,rt=1;for(this[m+fe]=d&255;--fe>=0&&(rt*=256);)this[m+fe]=d/rt&255;return m+B},f.prototype.writeUInt8=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,1,255,0),this[m]=d&255,m+1},f.prototype.writeUInt16LE=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,2,65535,0),this[m]=d&255,this[m+1]=d>>>8,m+2},f.prototype.writeUInt16BE=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,2,65535,0),this[m]=d>>>8,this[m+1]=d&255,m+2},f.prototype.writeUInt32LE=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,4,4294967295,0),this[m+3]=d>>>24,this[m+2]=d>>>16,this[m+1]=d>>>8,this[m]=d&255,m+4},f.prototype.writeUInt32BE=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,4,4294967295,0),this[m]=d>>>24,this[m+1]=d>>>16,this[m+2]=d>>>8,this[m+3]=d&255,m+4},f.prototype.writeIntLE=function(d,m,B,R){if(d=+d,m=m>>>0,!R){var oe=Math.pow(2,8*B-1);C(this,d,m,B,oe-1,-oe)}var fe=0,rt=1,Je=0;for(this[m]=d&255;++fe<B&&(rt*=256);)d<0&&Je===0&&this[m+fe-1]!==0&&(Je=1),this[m+fe]=(d/rt>>0)-Je&255;return m+B},f.prototype.writeIntBE=function(d,m,B,R){if(d=+d,m=m>>>0,!R){var oe=Math.pow(2,8*B-1);C(this,d,m,B,oe-1,-oe)}var fe=B-1,rt=1,Je=0;for(this[m+fe]=d&255;--fe>=0&&(rt*=256);)d<0&&Je===0&&this[m+fe+1]!==0&&(Je=1),this[m+fe]=(d/rt>>0)-Je&255;return m+B},f.prototype.writeInt8=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,1,127,-128),d<0&&(d=255+d+1),this[m]=d&255,m+1},f.prototype.writeInt16LE=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,2,32767,-32768),this[m]=d&255,this[m+1]=d>>>8,m+2},f.prototype.writeInt16BE=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,2,32767,-32768),this[m]=d>>>8,this[m+1]=d&255,m+2},f.prototype.writeInt32LE=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,4,2147483647,-2147483648),this[m]=d&255,this[m+1]=d>>>8,this[m+2]=d>>>16,this[m+3]=d>>>24,m+4},f.prototype.writeInt32BE=function(d,m,B){return d=+d,m=m>>>0,B||C(this,d,m,4,2147483647,-2147483648),d<0&&(d=4294967295+d+1),this[m]=d>>>24,this[m+1]=d>>>16,this[m+2]=d>>>8,this[m+3]=d&255,m+4};function X(q,d,m,B,R,oe){if(m+B>q.length)throw new RangeError("Index out of range");if(m<0)throw new RangeError("Index out of range")}function He(q,d,m,B,R){return d=+d,m=m>>>0,R||X(q,d,m,4),Es.write(q,d,m,B,23,4),m+4}f.prototype.writeFloatLE=function(d,m,B){return He(this,d,m,!0,B)},f.prototype.writeFloatBE=function(d,m,B){return He(this,d,m,!1,B)};function we(q,d,m,B,R){return d=+d,m=m>>>0,R||X(q,d,m,8),Es.write(q,d,m,B,52,8),m+8}f.prototype.writeDoubleLE=function(d,m,B){return we(this,d,m,!0,B)},f.prototype.writeDoubleBE=function(d,m,B){return we(this,d,m,!1,B)},f.prototype.copy=function(d,m,B,R){if(!f.isBuffer(d))throw new TypeError("argument should be a Buffer");if(B||(B=0),!R&&R!==0&&(R=this.length),m>=d.length&&(m=d.length),m||(m=0),R>0&&R<B&&(R=B),R===B||d.length===0||this.length===0)return 0;if(m<0)throw new RangeError("targetStart out of bounds");if(B<0||B>=this.length)throw new RangeError("Index out of range");if(R<0)throw new RangeError("sourceEnd out of bounds");R>this.length&&(R=this.length),d.length-m<R-B&&(R=d.length-m+B);var oe=R-B;if(this===d&&typeof Uint8Array.prototype.copyWithin=="function")this.copyWithin(m,B,R);else if(this===d&&B<m&&m<R)for(var fe=oe-1;fe>=0;--fe)d[fe+m]=this[fe+B];else Uint8Array.prototype.set.call(d,this.subarray(B,R),m);return oe},f.prototype.fill=function(d,m,B,R){if(typeof d=="string"){if(typeof m=="string"?(R=m,m=0,B=this.length):typeof B=="string"&&(R=B,B=this.length),R!==void 0&&typeof R!="string")throw new TypeError("encoding must be a string");if(typeof R=="string"&&!f.isEncoding(R))throw new TypeError("Unknown encoding: "+R);if(d.length===1){var oe=d.charCodeAt(0);(R==="utf8"&&oe<128||R==="latin1")&&(d=oe)}}else typeof d=="number"?d=d&255:typeof d=="boolean"&&(d=Number(d));if(m<0||this.length<m||this.length<B)throw new RangeError("Out of range index");if(B<=m)return this;m=m>>>0,B=B===void 0?this.length:B>>>0,d||(d=0);var fe;if(typeof d=="number")for(fe=m;fe<B;++fe)this[fe]=d;else{var rt=f.isBuffer(d)?d:f.from(d,R),Je=rt.length;if(Je===0)throw new TypeError('The value "'+d+'" is invalid for argument "value"');for(fe=0;fe<B-m;++fe)this[fe+m]=rt[fe%Je]}return this};var tt=/[^+/0-9A-Za-z-_]/g;function kr(q){if(q=q.split("=")[0],q=q.trim().replace(tt,""),q.length<2)return"";for(;q.length%4!=0;)q=q+"=";return q}function je(q,d){d=d||1/0;for(var m,B=q.length,R=null,oe=[],fe=0;fe<B;++fe){if(m=q.charCodeAt(fe),m>55295&&m<57344){if(!R){if(m>56319){(d-=3)>-1&&oe.push(239,191,189);continue}else if(fe+1===B){(d-=3)>-1&&oe.push(239,191,189);continue}R=m;continue}if(m<56320){(d-=3)>-1&&oe.push(239,191,189),R=m;continue}m=(R-55296<<10|m-56320)+65536}else R&&(d-=3)>-1&&oe.push(239,191,189);if(R=null,m<128){if((d-=1)<0)break;oe.push(m)}else if(m<2048){if((d-=2)<0)break;oe.push(m>>6|192,m&63|128)}else if(m<65536){if((d-=3)<0)break;oe.push(m>>12|224,m>>6&63|128,m&63|128)}else if(m<1114112){if((d-=4)<0)break;oe.push(m>>18|240,m>>12&63|128,m>>6&63|128,m&63|128)}else throw new Error("Invalid code point")}return oe}function $(q){for(var d=[],m=0;m<q.length;++m)d.push(q.charCodeAt(m)&255);return d}function qo(q,d){for(var m,B,R,oe=[],fe=0;fe<q.length&&!((d-=2)<0);++fe)m=q.charCodeAt(fe),B=m>>8,R=m%256,oe.push(R),oe.push(B);return oe}function vo(q){return Wb.toByteArray(kr(q))}function It(q,d,m,B){for(var R=0;R<B&&!(R+m>=d.length||R>=q.length);++R)d[R+m]=q[R];return R}function Ye(q,d){return q instanceof d||q!=null&&q.constructor!=null&&q.constructor.name!=null&&q.constructor.name===d.name}function Ht(q){return q!==q}var mt=function(){for(var q="0123456789abcdef",d=new Array(256),m=0;m<16;++m)for(var B=m*16,R=0;R<16;++R)d[B+R]=q[m]+q[R];return d}()}),XU=ge.Buffer,QU=ge.SlowBuffer,$U=ge.INSPECT_MAX_BYTES,eL=ge.kMaxLength,Do=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.ensureBuffer=void 0;function r(n){if(ge.Buffer.isBuffer(n))return n;if(ArrayBuffer.isView(n))return ge.Buffer.from(n.buffer);if(n instanceof ArrayBuffer)return ge.Buffer.from(n);throw new TypeError("Must use either Buffer or TypedArray")}e.ensureBuffer=r});zt(Do);var tL=Do.ensureBuffer,Yb=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.parseUUID=void 0;let r=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function n(i){if(typeof i!="string")throw new TypeError("Invalid type for UUID, expected string but got "+typeof i);if(!r.test(i))throw new TypeError("Invalid format for UUID: "+i);let o,f=new Uint8Array(16);return f[0]=(o=parseInt(i.slice(0,8),16))>>>24,f[1]=o>>>16&255,f[2]=o>>>8&255,f[3]=o&255,f[4]=(o=parseInt(i.slice(9,13),16))>>>8,f[5]=o&255,f[6]=(o=parseInt(i.slice(14,18),16))>>>8,f[7]=o&255,f[8]=(o=parseInt(i.slice(19,23),16))>>>8,f[9]=o&255,f[10]=(o=parseInt(i.slice(24,36),16))/1099511627776&255,f[11]=o/4294967296&255,f[12]=o>>>24&255,f[13]=o>>>16&255,f[14]=o>>>8&255,f[15]=o&255,f}e.parseUUID=n});zt(Yb);var rL=Yb.parseUUID,fn=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Binary=void 0;class r{constructor(i,o){if(i!=null&&typeof i!="string"&&!ArrayBuffer.isView(i)&&!(i instanceof ArrayBuffer)&&!Array.isArray(i))throw new TypeError("Binary can only be constructed from string, Buffer, TypedArray, or Array<number>");this.sub_type=o??r.BSON_BINARY_SUBTYPE_DEFAULT,i==null?(this.buffer=ge.Buffer.alloc(r.BUFFER_SIZE),this.position=0):(typeof i=="string"?this.buffer=ge.Buffer.from(i,"binary"):Array.isArray(i)?this.buffer=ge.Buffer.from(i):this.buffer=Do.ensureBuffer(i),this.position=this.buffer.byteLength)}put(i){if(typeof i=="string"&&i.length!==1)throw new TypeError("only accepts single character String");if(typeof i!="number"&&i.length!==1)throw new TypeError("only accepts single character Uint8Array or Array");let o;if(typeof i=="string"?o=i.charCodeAt(0):typeof i=="number"?o=i:o=i[0],o<0||o>255)throw new TypeError("only accepts number in a valid unsigned byte range 0-255");if(this.buffer.length>this.position)this.buffer[this.position++]=o;else{let f=ge.Buffer.alloc(r.BUFFER_SIZE+this.buffer.length);this.buffer.copy(f,0,0,this.buffer.length),this.buffer=f,this.buffer[this.position++]=o}}write(i,o){if(o=typeof o=="number"?o:this.position,this.buffer.length<o+i.length){let f=ge.Buffer.alloc(this.buffer.length+i.length);this.buffer.copy(f,0,0,this.buffer.length),this.buffer=f}ArrayBuffer.isView(i)?(this.buffer.set(Do.ensureBuffer(i),o),this.position=o+i.byteLength>this.position?o+i.length:this.position):typeof i=="string"&&(this.buffer.write(i,o,i.length,"binary"),this.position=o+i.length>this.position?o+i.length:this.position)}read(i,o){return o=o&&o>0?o:this.position,this.buffer.slice(i,i+o)}value(i){return i=!!i,i&&this.buffer.length===this.position?this.buffer:i?this.buffer.slice(0,this.position):this.buffer.toString("binary",0,this.position)}length(){return this.position}toJSON(){return this.buffer.toString("base64")}toString(i){return this.buffer.toString(i)}toExtendedJSON(i){i=i||{};let o=this.buffer.toString("base64"),f=Number(this.sub_type).toString(16);return i.legacy?{$binary:o,$type:f.length===1?"0"+f:f}:{$binary:{base64:o,subType:f.length===1?"0"+f:f}}}static fromExtendedJSON(i,o){o=o||{};let f,s;if("$binary"in i?o.legacy&&typeof i.$binary=="string"&&"$type"in i?(s=i.$type?parseInt(i.$type,16):0,f=ge.Buffer.from(i.$binary,"base64")):typeof i.$binary!="string"&&(s=i.$binary.subType?parseInt(i.$binary.subType,16):0,f=ge.Buffer.from(i.$binary.base64,"base64")):"$uuid"in i&&(s=4,f=ge.Buffer.from(Yb.parseUUID(i.$uuid))),!f)throw new TypeError(`Unexpected Binary Extended JSON format ${JSON.stringify(i)}`);return new r(f,s)}}e.Binary=r,r.BSON_BINARY_SUBTYPE_DEFAULT=0,r.BUFFER_SIZE=256,r.SUBTYPE_DEFAULT=0,r.SUBTYPE_FUNCTION=1,r.SUBTYPE_BYTE_ARRAY=2,r.SUBTYPE_UUID_OLD=3,r.SUBTYPE_UUID=4,r.SUBTYPE_MD5=5,r.SUBTYPE_USER_DEFINED=128,Object.defineProperty(r.prototype,"_bsontype",{value:"Binary"})});zt(fn);var nL=fn.Binary,Fo=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Code=void 0;class r{constructor(i,o){this.code=i,this.scope=o}toJSON(){return{code:this.code,scope:this.scope}}toExtendedJSON(){return this.scope?{$code:this.code,$scope:this.scope}:{$code:this.code}}static fromExtendedJSON(i){return new r(i.$code,i.$scope)}}e.Code=r,Object.defineProperty(r.prototype,"_bsontype",{value:"Code"})});zt(Fo);var iL=Fo.Code,dO={},Kb;typeof Object.create=="function"?Kb=function(e,r){e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:Kb=function(e,r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e};var mO=Kb,bO=/%[sdj%]/g;function Gb(t){if(!tp(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(Ki(arguments[r]));return e.join(" ")}for(var r=1,n=arguments,i=n.length,o=String(t).replace(bO,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch{return"[Circular]"}default:return s}}),f=n[r];r<i;f=n[++r])ep(f)||!Os(f)?o+=" "+f:o+=" "+Ki(f);return o}function gq(t,e){if(Gi(global.process))return function(){return gq(t,e).apply(this,arguments)};var r=!1;function n(){return r||(console.error(e),r=!0),t.apply(this,arguments)}return n}var Qc={},Jb;function wO(t){if(Gi(Jb)&&(Jb=""),t=t.toUpperCase(),!Qc[t])if(new RegExp("\\b"+t+"\\b","i").test(Jb)){var e=0;Qc[t]=function(){var r=Gb.apply(null,arguments);console.error("%s %d: %s",t,e,r)}}else Qc[t]=function(){};return Qc[t]}function Ki(t,e){var r={seen:[],stylize:gO};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),Qb(e)?r.showHidden=e:e&&_q(r,e),Gi(r.showHidden)&&(r.showHidden=!1),Gi(r.depth)&&(r.depth=2),Gi(r.colors)&&(r.colors=!1),Gi(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=hO),$c(r,t,r.depth)}Ki.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]};Ki.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function hO(t,e){var r=Ki.styles[e];return r?"["+Ki.colors[r][0]+"m"+t+"["+Ki.colors[r][1]+"m":t}function gO(t,e){return t}function yO(t){var e={};return t.forEach(function(r,n){e[r]=!0}),e}function $c(t,e,r){if(t.customInspect&&e&&ip(e.inspect)&&e.inspect!==Ki&&!(e.constructor&&e.constructor.prototype===e)){var n=e.inspect(r,t);return tp(n)||(n=$c(t,n,r)),n}var i=jO(t,e);if(i)return i;var o=Object.keys(e),f=yO(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),np(e)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return Zb(e);if(o.length===0){if(ip(e)){var s=e.name?": "+e.name:"";return t.stylize("[Function"+s+"]","special")}if(rp(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if($b(e))return t.stylize(Date.prototype.toString.call(e),"date");if(np(e))return Zb(e)}var l="",u=!1,c=["{","}"];if(yq(e)&&(u=!0,c=["[","]"]),ip(e)){var _=e.name?": "+e.name:"";l=" [Function"+_+"]"}if(rp(e)&&(l=" "+RegExp.prototype.toString.call(e)),$b(e)&&(l=" "+Date.prototype.toUTCString.call(e)),np(e)&&(l=" "+Zb(e)),o.length===0&&(!u||e.length==0))return c[0]+l+c[1];if(r<0)return rp(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special");t.seen.push(e);var p;return u?p=_O(t,e,r,f,o):p=o.map(function(j){return Xb(t,e,r,f,j,u)}),t.seen.pop(),qO(p,l,c)}function jO(t,e){if(Gi(e))return t.stylize("undefined","undefined");if(tp(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(jq(e))return t.stylize(""+e,"number");if(Qb(e))return t.stylize(""+e,"boolean");if(ep(e))return t.stylize("null","null")}function Zb(t){return"["+Error.prototype.toString.call(t)+"]"}function _O(t,e,r,n,i){for(var o=[],f=0,s=e.length;f<s;++f)qq(e,String(f))?o.push(Xb(t,e,r,n,String(f),!0)):o.push("");return i.forEach(function(l){l.match(/^\d+$/)||o.push(Xb(t,e,r,n,l,!0))}),o}function Xb(t,e,r,n,i,o){var f,s,l;if(l=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]},l.get?l.set?s=t.stylize("[Getter/Setter]","special"):s=t.stylize("[Getter]","special"):l.set&&(s=t.stylize("[Setter]","special")),qq(n,i)||(f="["+i+"]"),s||(t.seen.indexOf(l.value)<0?(ep(r)?s=$c(t,l.value,null):s=$c(t,l.value,r-1),s.indexOf(`
37
- `)>-1&&(o?s=s.split(`
38
- `).map(function(u){return" "+u}).join(`
20
+ #:#ed #(# at #ly #="# of the #. This #,# not #er #al #='#ful #ive #less #est #ize #ous #`,` !! ! , *! &! " ! ) * * - ! # ! #!*! + ,$ ! - % . / # 0 1 . " 2 3!* 4% ! # / 5 6 7 8 0 1 & $ 9 + : ; < ' != > ?! 4 @ 4 2 & A *# ( B C& ) % ) !*# *-% A +! *. D! %' & E *6 F G% ! *A *% H! D I!+! J!+ K +- *4! A L!*4 M N +6 O!*% +.! K *G P +%( ! G *D +D Q +# *K!*G!+D!+# +G +A +4!+% +K!+4!*D!+K!*K`);function q(a,I,k,S,E,G,Z){let se=I,we=G.triplets,ge=G.prefixSuffixStorage,ue=G.prefixSuffixHeads,Ke=3*Z,Ze=we[Ke],Et=we[Ke+1],Kr=we[Ke+2],wn=ue[Ze],rr=ue[Ze+1],$e=ue[Kr],Gr=ue[Kr+1],ji=Et-11,xa=Et-0;for((ji<1||ji>9)&&(ji=0),(xa<1||xa>9)&&(xa=0);wn!=rr;)a[se++]=ge[wn++];ji>E&&(ji=E),S+=ji,E-=ji,E-=xa;let eh=E;for(;eh>0;)a[se++]=k[S++],eh--;if(Et==10||Et==11){let _t=se-E;for(Et==10&&(E=1);E>0;){let Lf=a[_t]&255;Lf<192?(Lf>=97&&Lf<=122&&(a[_t]^=32),_t+=1,E-=1):Lf<224?(a[_t+1]^=32,_t+=2,E-=2):(a[_t+2]^=5,_t+=3,E-=3)}}else if(Et==21||Et==22){let _t=se-E,Lf=G.params[Z],Rr=(Lf&32767)+(16777216-(Lf&32768));for(;E>0;){let rf=1,yi=a[_t]&255;if(yi<128)Rr+=yi,a[_t]=Rr&127;else if(!(yi<192)){if(yi<224)if(E>=2){let nf=a[_t+1];Rr+=nf&63|(yi&31)<<6,a[_t]=192|Rr>>6&31,a[_t+1]=nf&192|Rr&63,rf=2}else rf=E;else if(yi<240)if(E>=3){let nf=a[_t+1],Hs=a[_t+2];Rr+=Hs&63|(nf&63)<<6|(yi&15)<<12,a[_t]=224|Rr>>12&15,a[_t+1]=nf&192|Rr>>6&63,a[_t+2]=Hs&192|Rr&63,rf=3}else rf=E;else if(yi<248)if(E>=4){let nf=a[_t+1],Hs=a[_t+2],th=a[_t+3];Rr+=th&63|(Hs&63)<<6|(nf&63)<<12|(yi&7)<<18,a[_t]=240|Rr>>18&7,a[_t+1]=nf&192|Rr>>12&63,a[_t+2]=Hs&192|Rr>>6&63,a[_t+3]=th&192|Rr&63,rf=4}else rf=E}_t+=rf,E-=rf,Et==21&&(E=0)}}for(;$e!=Gr;)a[se++]=ge[$e++];return se-I}function z(a,I){let k=1<<I-1;for(;(a&k)!=0;)k>>=1;return(a&k-1)+k}function $(a,I,k,S,E){do S-=k,a[I+S]=E;while(S>0)}function ee(a,I,k){let S=1<<I-k;for(;I<15&&(S-=a[I],!(S<=0));)I++,S<<=1;return I-k}function Ye(a,I,k,S,E){let G=a[I],Z,se=new Int32Array(E),we=new Int32Array(16),ge=new Int32Array(16),ue;for(ue=0;ue<E;ue++)we[S[ue]]++;ge[1]=0;for(let $e=1;$e<15;$e++)ge[$e+1]=ge[$e]+we[$e];for(ue=0;ue<E;ue++)S[ue]!=0&&(se[ge[S[ue]]++]=ue);let Ke=k,Ze=1<<Ke,Et=Ze;if(ge[15]==1){for(Z=0;Z<Et;Z++)a[G+Z]=se[0];return Et}Z=0,ue=0;for(let $e=1,Gr=2;$e<=k;$e++,Gr<<=1)for(;we[$e]>0;we[$e]--)$(a,G+Z,Gr,Ze,$e<<16|se[ue++]),Z=z(Z,$e);let Kr=Et-1,wn=-1,rr=G;for(let $e=k+1,Gr=2;$e<=15;$e++,Gr<<=1)for(;we[$e]>0;we[$e]--)(Z&Kr)!=wn&&(rr+=Ze,Ke=ee(we,$e,k),Ze=1<<Ke,Et+=Ze,wn=Z&Kr,a[G+wn]=Ke+k<<16|rr-G-wn),$(a,rr+(Z>>k),Gr,Ze,$e-k<<16|se[ue++]),Z=z(Z,$e);return Et}function Re(a){if(a.endOfStreamReached!=0){if(ye(a)>=-2)return;throw"No more input"}let I=a.halfOffset<<1,k=4096-I;for(a.byteBuffer.copyWithin(0,I,4096),a.halfOffset=0;k<4096;){let S=4096-k,E=$w(a.input,a.byteBuffer,k,S);if(E<=0){a.endOfStreamReached=1,a.tailBytes=k,k+=1;break}k+=E}ke(a,k)}function mt(a,I){if(a.endOfStreamReached==0)return;let k=(a.halfOffset<<1)+(a.bitOffset+7>>3)-4;if(k>a.tailBytes)throw"Read after end";if(I!=0&&k!=a.tailBytes)throw"Unused bytes after end"}function tr(a){if(a.bitOffset>32)throw"Accumulator underloaded: "+a.bitOffset}function ce(a,I){let k=a.accumulator32>>>a.bitOffset&(1<<I)-1;return a.bitOffset+=I,k}function Hn(a,I){let k=ce(a,16);return a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,k|ce(a,I-16)<<16}function _(a){a.byteBuffer=new Int8Array(4160),a.accumulator32=0,a.shortBuffer=new Int16Array(2080),a.bitOffset=32,a.halfOffset=2048,a.endOfStreamReached=0,B(a)}function B(a){a.halfOffset>2030&&Re(a),mt(a,0),a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16}function D(a){a.bitOffset==32&&B(a)}function X(a){let I=32-a.bitOffset&7;if(I!=0&&ce(a,I)!=0)throw"Corrupted padding bits"}function ye(a){let I=2048;return a.endOfStreamReached!=0&&(I=a.tailBytes+1>>1),I-a.halfOffset}function Pe(a,I,k,S){if((a.bitOffset&7)!=0)throw"Unaligned copyBytes";for(;a.bitOffset!=32&&S!=0;)I[k++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,S--;if(S==0)return;let E=tf(ye(a),S>>1);if(E>0){let G=a.halfOffset<<1,Z=E<<1;I.set(a.byteBuffer.subarray(G,G+Z),k),k+=Z,S-=Z,a.halfOffset+=E}if(S!=0){if(ye(a)>0){for(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);S!=0;)I[k++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,S--;mt(a,0);return}for(;S>0;){let G=$w(a.input,I,k,S);if(G==-1)throw"Unexpected end of input";k+=G,S-=G}}}function ke(a,I){let k=a.byteBuffer,S=I>>1,E=a.shortBuffer;for(let G=0;G<S;++G)E[G]=k[G*2]&255|(k[G*2+1]&255)<<8}let gt=new Int32Array(2048);function at(a,I,k){for(let E=0;E<256;++E)a[E]=E&63,a[512+E]=E>>2,a[1792+E]=2+(E>>6);for(let E=0;E<128;++E)a[1024+E]=4*(I.charCodeAt(E)-32);for(let E=0;E<64;++E)a[1152+E]=E&1,a[1216+E]=2+(E&1);let S=1280;for(let E=0;E<19;++E){let G=E&3,Z=k.charCodeAt(E)-32;for(let se=0;se<Z;++se)a[S++]=G}for(let E=0;E<16;++E)a[1792+E]=1,a[2032+E]=6;a[1792]=0,a[2047]=7;for(let E=0;E<256;++E)a[1536+E]=a[1792+E]<<3}at(gt,` !! ! "#$##%#$&'##(#)#++++++++++((&*'##,---,---,-----,-----,-----&#'###.///.///./////./////./////&#'# `,"A/* ': & : $ \x81 @");function jt(){this.ringBuffer=new Int8Array(0),this.contextModes=new Int8Array(0),this.contextMap=new Int8Array(0),this.distContextMap=new Int8Array(0),this.distExtraBits=new Int8Array(0),this.output=new Int8Array(0),this.byteBuffer=new Int8Array(0),this.shortBuffer=new Int16Array(0),this.intBuffer=new Int32Array(0),this.rings=new Int32Array(0),this.blockTrees=new Int32Array(0),this.literalTreeGroup=new Int32Array(0),this.commandTreeGroup=new Int32Array(0),this.distanceTreeGroup=new Int32Array(0),this.distOffset=new Int32Array(0),this.runningState=0,this.nextRunningState=0,this.accumulator32=0,this.bitOffset=0,this.halfOffset=0,this.tailBytes=0,this.endOfStreamReached=0,this.metaBlockLength=0,this.inputEnd=0,this.isUncompressed=0,this.isMetadata=0,this.literalBlockLength=0,this.numLiteralBlockTypes=0,this.commandBlockLength=0,this.numCommandBlockTypes=0,this.distanceBlockLength=0,this.numDistanceBlockTypes=0,this.pos=0,this.maxDistance=0,this.distRbIdx=0,this.trivialLiteralContext=0,this.literalTreeIdx=0,this.commandTreeIdx=0,this.j=0,this.insertLength=0,this.contextMapSlice=0,this.distContextMapSlice=0,this.contextLookupOffset1=0,this.contextLookupOffset2=0,this.distanceCode=0,this.numDirectDistanceCodes=0,this.distancePostfixBits=0,this.distance=0,this.copyLength=0,this.maxBackwardDistance=0,this.maxRingBufferSize=0,this.ringBufferSize=0,this.expectedTotalSize=0,this.outputOffset=0,this.outputLength=0,this.outputUsed=0,this.ringBufferBytesWritten=0,this.ringBufferBytesReady=0,this.isEager=0,this.isLargeWindow=0,this.cdNumChunks=0,this.cdTotalSize=0,this.cdBrIndex=0,this.cdBrOffset=0,this.cdBrLength=0,this.cdBrCopied=0,this.cdChunks=new Array(0),this.cdChunkOffsets=new Int32Array(0),this.cdBlockBits=0,this.cdBlockMap=new Int8Array(0),this.input=null,this.ringBuffer=new Int8Array(0),this.rings=new Int32Array(10),this.rings[0]=16,this.rings[1]=15,this.rings[2]=11,this.rings[3]=4}let yt=null,Vt=new Int32Array(32),ef=new Int32Array(32);function B_(a,I){if(O_(a)==0||A_(a)==0)throw"newData must be a direct read-only byte buffer";if(I.length>31)throw"sizeBits length must be at most "+31;for(let Z=0;Z<4;++Z)if(I[Z]!=0)throw"first "+4+" must be 0";let k=Vt,S=ef;S.set(I.subarray(0,0+I.length),0);let E=0,G=a.length;for(let Z=0;Z<I.length;++Z){k[Z]=E;let se=S[Z];if(se!=0){if(se>=31)throw"newSizeBits values must be less than 31";if(E+=Z<<se,E<=0||E>G)throw"newSizeBits is inconsistent: overflow"}}for(let Z=I.length;Z<32;++Z)k[Z]=E;if(E!=G)throw"newSizeBits is inconsistent: underflow";yt=a}function I_(a,I,k,S,E,G){let Z=H_(I+k);if(Z.length!=a.length)throw"Corrupted brotli dictionary";let se=0,we=S.length;for(let ge=0;ge<we;ge+=2){let ue=S.charCodeAt(ge)-36,Ke=S.charCodeAt(ge+1)-36;for(let Ze=0;Ze<ue;++Ze)Z[se]^=3,se++;for(let Ze=0;Ze<Ke;++Ze)Z[se]^=236,se++}for(let ge=0;ge<G.length;++ge)E[ge]=G.charCodeAt(ge)-65;a.set(Z)}{let a=new Int8Array(122784),I=new Int32Array(25);I_(a,'wjnfgltmojefofewab`h`lgfgbwbpkltlmozpjwf`jwzlsfmivpwojhfeqfftlqhwf{wzfbqlufqalgzolufelqnallhsobzojufojmfkfosklnfpjgfnlqftlqgolmdwkfnujftejmgsbdfgbzpevookfbgwfqnfb`kbqfbeqlnwqvfnbqhbaofvslmkjdkgbwfobmgmftpfufmmf{w`bpfalwkslpwvpfgnbgfkbmgkfqftkbwmbnfOjmhaoldpjyfabpfkfognbhfnbjmvpfq$*#(klogfmgptjwkMftpqfbgtfqfpjdmwbhfkbufdbnfpffm`boosbwktfoosovpnfmvejonsbqwiljmwkjpojpwdllgmffgtbzptfpwilapnjmgboploldlqj`kvpfpobpwwfbnbqnzellghjmdtjoofbpwtbqgafpwejqfSbdfhmltbtbz-smdnlufwkbmolbgdjufpfoemlwfnv`keffgnbmzql`hj`lmlm`follhkjgfgjfgKlnfqvofklpwbib{jmel`ovaobtpofppkboeplnfpv`kylmf233&lmfp`bqfWjnfqb`faovfelvqtffheb`fklsfdbufkbqgolpwtkfmsbqhhfswsbpppkjsqllnKWNOsobmWzsfglmfpbufhffseobdojmhplogejufwllhqbwfwltmivnswkvpgbqh`bqgejofefbqpwbzhjoowkbweboobvwlfufq-`lnwbohpklsulwfgffsnlgfqfpwwvqmalqmabmgefooqlpfvqo+phjmqlof`lnfb`wpbdfpnffwdlog-isdjwfnubqzefowwkfmpfmggqlsUjft`lsz2-3!?,b=pwlsfopfojfpwlvqsb`h-djesbpw`pp<dqbznfbm%dw8qjgfpklwobwfpbjgqlbgubq#effoilkmqj`hslqwebpw$VB.gfbg?,a=sllqajoowzsfV-P-tllgnvpw1s{8JmelqbmhtjgftbmwtbooofbgX3^8sbvotbufpvqf\'+$ tbjwnbppbqnpdlfpdbjmobmdsbjg"..#ol`hvmjwqllwtbohejqntjef{no!plmdwfpw13s{hjmgqltpwlloelmwnbjopbefpwbqnbsp`lqfqbjmeoltabazpsbmpbzp7s{85s{8bqwpellwqfbotjhjkfbwpwfswqjslqd,obhftfbhwlogElqn`bpwebmpabmhufqzqvmpivozwbph2s{8dlbodqftpoltfgdfjg>!pfwp6s{8-ip<73s{je#+pllmpfbwmlmfwvafyfqlpfmwqffgeb`wjmwldjewkbqn2;s{`bnfkjooalogyllnuljgfbpzqjmdejoosfbhjmjw`lpw0s{8ib`hwbdpajwpqloofgjwhmftmfbq?"..dqltIPLMgvwzMbnfpbofzlv#olwpsbjmibyy`logfzfpejpkttt-qjphwbapsqfu23s{qjpf16s{Aovfgjmd033/abooelqgfbqmtjogal{-ebjqob`hufqpsbjqivmfwf`kje+"sj`hfujo\'+! tbqnolqgglfpsvoo/333jgfbgqbtkvdfpslwevmgavqmkqfe`foohfzpwj`hklvqolppevfo21s{pvjwgfboQPP!bdfgdqfzDFW!fbpfbjnpdjqobjgp;s{8mbuzdqjgwjsp :::tbqpobgz`bqp*8#~sks<kfoowbootklnyk9 ), #233kboo- B4s{8svpk`kbw3s{8`qft),?,kbpk46s{eobwqbqf#%%#wfoo`bnslmwlobjgnjppphjswfmwejmfnbofdfwpsolw733/  `lloeffw-sks?aq=fqj`nlpwdvjgafoogfp`kbjqnbwkbwln,jnd% ;1ov`h`fmw3338wjmzdlmfkwnopfoogqvdEQFFmlgfmj`h<jg>olpfmvooubpwtjmgQPP#tfbqqfozaffmpbnfgvhfmbpb`bsftjpkdvoeW109kjwppolwdbwfhj`haovqwkfz26s{$$*8*8!=npjftjmpajqgplqwafwbpffhW2;9lqgpwqffnboo53s{ebqnlupalzpX3^-$*8!SLPWafbqhjgp*8~~nbqzwfmg+VH*rvbgyk9\n.pjy....sqls$*8ojewW2:9uj`fbmgzgfaw=QPPsllomf`haoltW259gllqfuboW249ofwpebjolqbosloomlub`lopdfmf#lxplewqlnfwjooqlpp?k0=slvqebgfsjmh?wq=njmj*\x7F"+njmfyk9abqpkfbq33*8njoh#..=jqlmeqfggjphtfmwpljosvwp,ip,klozW119JPAMW139bgbnpffp?k1=iplm$/#$`lmwW129#QPPollsbpjbnllm?,s=plvoOJMFelqw`bqwW279?k2=;3s{"..?:s{8W379njhf975Ymj`fjm`kZlqhqj`fyk9\b$**8svqfnbdfsbqbwlmfalmg904Y\\le\\$^*8333/yk9\vwbmhzbqgaltoavpk965YIbub03s{ \x7F~ &@0&907YifeeF[SJ`bpkujpbdloepmltyk9rvfq-`pppj`hnfbwnjm-ajmggfookjqfsj`pqfmw905YKWWS.132elwltloeFMG#{al{967YALGZgj`h8 ~ f{jw906Yubqpafbw$~*8gjfw:::8bmmf~~?,Xj^-Obmdhn.^tjqfwlzpbggppfbobof{8 \n~f`klmjmf-lqd336*wlmziftppbmgofdpqlle333*#133tjmfdfbqgldpallwdbqz`vwpwzofwfnswjlm-{no`l`hdbmd\'+$-63s{Sk-Gnjp`bobmolbmgfphnjofqzbmvmj{gjp`*8~ gvpw`ojs*- 43s{.133GUGp4^=?wbsfgfnlj((*tbdffvqlskjolswpklofEBRpbpjm.15WobapsfwpVQO#avoh`llh8~ KFBGX3^*baaqivbm+2:;ofpkwtjm?,j=plmzdvzpev`hsjsf\x7F. "331*mgltX2^8X^8 Old#pbow \n\nabmdwqjnabwk*x 33s{ ~*8hl9\0effpbg=p9,,#X^8wloosovd+*x x #-ip$133sgvboalbw-ISD*8 ~rvlw*8 $*8  ~1327132613251324132;132:13131312131113101317131613151314131;131:130313021301130013071306130513041320132113221323133:133;133413351336133713301331133213332:::2::;2::42::52::62::72::02::12::22::32:;:2:;;2:;42:;52:;62:;72:;02:;12:;22:;32:4:2:4;2:442:452:462:472:402:412:422:432:5:2:5;2:542:552:562:572:502:512:522:532:6:2:6;2:642:652:662:672:602:612:622:632333231720:73333::::`lnln/Mpfpwffpwbsfqlwlglkb`f`bgbb/]lajfmg/Abbp/Aujgb`bpllwqlelqlplollwqb`vbogjilpjgldqbmwjslwfnbgfafbodlrv/Efpwlmbgbwqfpsl`l`bpbabilwlgbpjmlbdvbsvfpvmlpbmwfgj`fovjpfoobnbzlylmbbnlqsjpllaqb`oj`foolgjlpklqb`bpj<[<\\<Q<\\<R<P=l<\\=l=o=n<\\<Q<Y<S<R<R=n<T<[<Q<R<X<R=n<R<Z<Y<R<Q<T=i<q<\\<Y<Y<]=g<P=g<~=g=m<R<^=g<^<R<q<R<R<]<s<R<W<T<Q<T<L<H<q<Y<p=g=n=g<r<Q<T<P<X<\\<{<\\<x<\\<q=o<r<]=n<Y<t<[<Y<U<Q=o<P<P<N=g=o<Z5m5f4O5j5i4K5i4U5o5h4O5d4]4C5f4K5m5e5k5d5h5i5h5o4K5d5h5k4D4_4K5h4I5j5k5f4O5f5n4C5k5h4G5i4D5k5h5d5h5f4D5h4K5f4D5o4X5f4K5i4O5i5j4F4D5f5h5j4A4D5k5i5i4X5d4Xejqpwujgflojdkwtlqognfgjbtkjwf`olpfaob`hqjdkwpnbooallhpsob`fnvpj`ejfoglqgfqsljmwubovfofufowbaofalbqgklvpfdqlvstlqhpzfbqppwbwfwlgbztbwfqpwbqwpwzofgfbwksltfqsklmfmjdkwfqqlqjmsvwbalvwwfqnpwjwofwllopfufmwol`bowjnfpobqdftlqgpdbnfppklqwpsb`fel`vp`ofbqnlgfoaol`hdvjgfqbgjlpkbqftlnfmbdbjmnlmfzjnbdfmbnfpzlvmdojmfpobwfq`lolqdqffmeqlmw%bns8tbw`kelq`fsqj`fqvofpafdjmbewfqujpjwjppvfbqfbpafoltjmgf{wlwboklvqpobafosqjmwsqfppavjowojmhppsffgpwvgzwqbgfelvmgpfmpfvmgfqpkltmelqnpqbmdfbggfgpwjoonlufgwbhfmbalufeobpkej{fglewfmlwkfqujftp`kf`hofdboqjufqjwfnprvj`hpkbsfkvnbmf{jpwdljmdnlujfwkjqgabpj`sfb`fpwbdftjgwkoldjmjgfbptqlwfsbdfpvpfqpgqjufpwlqfaqfbhplvwkulj`fpjwfpnlmwktkfqfavjogtkj`kfbqwkelqvnwkqffpslqwsbqwz@oj`holtfqojufp`obppobzfqfmwqzpwlqzvpbdfplvmg`lvqwzlvq#ajqwkslsvswzsfpbssozJnbdfafjmdvssfqmlwfpfufqzpkltpnfbmpf{wqbnbw`kwqb`hhmltmfbqozafdbmpvsfqsbsfqmlqwkofbqmdjufmmbnfgfmgfgWfqnpsbqwpDqlvsaqbmgvpjmdtlnbmebopfqfbgzbvgjlwbhfptkjof-`ln,ojufg`bpfpgbjoz`kjogdqfbwivgdfwklpfvmjwpmfufqaqlbg`lbpw`lufqbssofejofp`z`ofp`fmfsobmp`oj`htqjwfrvffmsjf`ffnbjoeqbnflogfqsklwlojnjw`b`kf`jujop`boffmwfqwkfnfwkfqfwlv`kalvmgqlzbobphfgtklofpjm`fpwl`h#mbnfebjwkkfbqwfnswzleefqp`lsfltmfgnjdkwboavnwkjmhaollgbqqbznbilqwqvpw`bmlmvmjlm`lvmwubojgpwlmfPwzofOldjmkbsszl``vqofew9eqfpkrvjwfejonpdqbgfmffgpvqabmejdkwabpjpklufqbvwl8qlvwf-kwnonj{fgejmboZlvq#pojgfwlsj`aqltmbolmfgqbtmpsojwqfb`kQjdkwgbwfpnbq`krvlwfdllgpOjmhpglvawbpzm`wkvnaboolt`kjfezlvwkmlufo23s{8pfqufvmwjokbmgp@kf`hPsb`frvfqzibnfpfrvbowtj`f3/333Pwbqwsbmfoplmdpqlvmgfjdkwpkjewtlqwkslpwpofbgptffhpbuljgwkfpfnjofpsobmfpnbqwboskbsobmwnbqhpqbwfpsobzp`objnpbofpwf{wppwbqptqlmd?,k0=wkjmd-lqd,nvowjkfbqgSltfqpwbmgwlhfmplojg+wkjpaqjmdpkjsppwbeewqjfg`boopevoozeb`wpbdfmwWkjp#,,..=bgnjmfdzswFufmw26s{8Fnbjowqvf!`qlpppsfmwaoldpal{!=mlwfgofbuf`kjmbpjyfpdvfpw?,k7=qlalwkfbuzwqvf/pfufmdqbmg`qjnfpjdmpbtbqfgbm`fskbpf=?"..fm\\VP% 0:8133s{\\mbnfobwjmfmilzbib{-bwjlmpnjwkV-P-#klogpsfwfqjmgjbmbu!=`kbjmp`lqf`lnfpgljmdsqjlqPkbqf2::3pqlnbmojpwpibsbmeboopwqjboltmfqbdqff?,k1=bavpfbofqwlsfqb!.,,T`bqgpkjoopwfbnpSklwlwqvwk`ofbm-sks<pbjmwnfwboolvjpnfbmwsqlleaqjfeqlt!=dfmqfwqv`hollhpUbovfEqbnf-mfw,..= ?wqz#x ubq#nbhfp`lpwpsobjmbgvowrvfpwwqbjmobalqkfosp`bvpfnbdj`nlwlqwkfjq163s{ofbpwpwfsp@lvmw`lvogdobpppjgfpevmgpklwfobtbqgnlvwknlufpsbqjpdjufpgvw`kwf{bpeqvjwmvoo/\x7F\x7FX^8wls!= ?"..SLPW!l`fbm?aq,=eollqpsfbhgfswk#pjyfabmhp`bw`k`kbqw13s{8bojdmgfboptlvog63s{8vqo>!sbqhpnlvpfNlpw#---?,bnlmdaqbjmalgz#mlmf8abpfg`bqqzgqbewqfefqsbdf\\klnf-nfwfqgfobzgqfbnsqlufiljmw?,wq=gqvdp?"..#bsqjojgfboboofmf{b`welqwk`lgfpoldj`Ujft#pffnpaobmhslqwp#+133pbufg\\ojmhdlbopdqbmwdqffhklnfpqjmdpqbwfg03s{8tklpfsbqpf+*8!#Aol`hojmv{ilmfpsj{fo$*8!=*8je+.ofewgbujgklqpfEl`vpqbjpfal{fpWqb`hfnfmw?,fn=abq!=-pq`>wltfqbow>!`baofkfmqz17s{8pfwvsjwbozpkbqsnjmlqwbpwftbmwpwkjp-qfpfwtkffodjqop,`pp,233&8`ovappwveeajaofulwfp#2333hlqfb~*8 abmgprvfvf>#x~8;3s{8`hjmdx \n\nbkfbg`ol`hjqjpkojhf#qbwjlpwbwpElqn!zbkll*X3^8Balvwejmgp?,k2=gfavdwbphpVQO#>`foop~*+*821s{8sqjnfwfoopwvqmp3{533-isd!psbjmafb`kwb{fpnj`qlbmdfo..=?,djewppwfuf.ojmhalgz-~*8 \nnlvmw#+2::EBR?,qldfqeqbmh@obpp1;s{8effgp?k2=?p`lwwwfpwp11s{8gqjmh*#\x7F\x7F#oftjppkboo 30:8#elq#olufgtbpwf33s{8ib9npjnlm?elmwqfsoznffwpvmwfq`kfbswjdkwAqbmg*#">#gqfpp`ojspqllnplmhfznlajonbjm-Mbnf#sobwfevmmzwqffp`ln,!2-isdtnlgfsbqbnPWBQWofew#jggfm/#132*8 ~ elqn-ujqvp`kbjqwqbmptlqpwSbdfpjwjlmsbw`k?".. l.`b`ejqnpwlvqp/333#bpjbmj((*xbglaf$*X3^jg>23alwk8nfmv#-1-nj-smd!hfujm`lb`k@kjogaqv`f1-isdVQO*(-isd\x7Fpvjwfpoj`fkbqqz213!#ptffwwq= mbnf>gjfdlsbdf#ptjpp..= eee8!=Old-`ln!wqfbwpkffw*#%%#27s{8poffsmwfmwejofgib9ojg>!`Mbnf!tlqpfpklwp.al{.gfowb %ow8afbqp97;Y?gbwb.qvqbo?,b=#psfmgabhfqpklsp>#!!8sks!=`wjlm20s{8aqjbmkfoolpjyf>l>&1E#iljmnbzaf?jnd#jnd!=/#eipjnd!#!*X3^NWlsAWzsf!mftozGbmph`yf`kwqbjohmltp?,k6=ebr!=yk.`m23*8 .2!*8wzsf>aovfpwqvozgbujp-ip$8= ?"pwffo#zlv#k1= elqn#ifpvp233&#nfmv- \n tbofpqjphpvnfmwggjmda.ojhwfb`kdje!#ufdbpgbmphffpwjpkrjspvlnjplaqfgfpgffmwqfwlglpsvfgfb/]lpfpw/Mwjfmfkbpwblwqlpsbqwfglmgfmvfulkb`fqelqnbnjpnlnfilqnvmglbrv/Ag/Abpp/_olbzvgbef`kbwlgbpwbmwlnfmlpgbwlplwqbppjwjlnv`klbklqbovdbqnbzlqfpwlpklqbpwfmfqbmwfpelwlpfpwbpsb/Apmvfubpbovgelqlpnfgjlrvjfmnfpfpslgfq`kjofpfq/Muf`fpgf`jqilp/Efpwbqufmwbdqvslkf`klfoolpwfmdlbnjdl`lpbpmjufodfmwfnjpnbbjqfpivojlwfnbpkb`jbebulqivmjlojaqfsvmwlavfmlbvwlqbaqjoavfmbwf{wlnbqylpbafqojpwbovfdl`/_nlfmfqlivfdlsfq/Vkbafqfpwlzmvm`bnvifqubolqevfqbojaqldvpwbjdvboulwlp`bplpdv/Absvfglplnlpbujplvpwfggfafmml`kfavp`bebowbfvqlppfqjfgj`kl`vqpl`obuf`bpbpof/_msobylobqdllaqbpujpwbbslzlivmwlwqbwbujpwl`qfbq`bnslkfnlp`jm`l`bqdlsjplplqgfmkb`fm/Mqfbgjp`lsfgql`fq`bsvfgbsbsfonfmlq/Vwjo`obqlilqdf`boofslmfqwbqgfmbgjfnbq`bpjdvffoobppjdol`l`kfnlwlpnbgqf`obpfqfpwlmj/]lrvfgbsbpbqabm`lkjilpujbifsbaol/Epwfujfmfqfjmlgfibqelmgl`bmbomlqwfofwqb`bvpbwlnbqnbmlpovmfpbvwlpujoobufmglsfpbqwjslpwfmdbnbq`loofubsbgqfvmjglubnlpylmbpbnalpabmgbnbqjbbavplnv`kbpvajqqjlibujujqdqbgl`kj`bboo/Ailufmgj`kbfpwbmwbofppbojqpvfolsfplpejmfpoobnbavp`l/Epwboofdbmfdqlsobybkvnlqsbdbqivmwbglaofjpobpalopbab/]lkbaobov`kb/mqfbgj`fmivdbqmlwbpuboofboo/M`bqdbglolqbabilfpw/Edvpwlnfmwfnbqjlejqnb`lpwlej`kbsobwbkldbqbqwfpofzfpbrvfonvpflabpfpsl`lpnjwbg`jfol`kj`lnjfgldbmbqpbmwlfwbsbgfafpsobzbqfgfppjfwf`lqwf`lqfbgvgbpgfpflujfilgfpfbbdvbp%rvlw8glnbjm`lnnlmpwbwvpfufmwpnbpwfqpzpwfnb`wjlmabmmfqqfnlufp`qloovsgbwfdolabonfgjvnejowfqmvnafq`kbmdfqfpvowsvaoj`p`qffm`kllpfmlqnbowqbufojppvfpplvq`fwbqdfwpsqjmdnlgvofnlajofptjw`ksklwlpalqgfqqfdjlmjwpfoepl`jbob`wjuf`lovnmqf`lqgelooltwjwof=fjwkfqofmdwkebnjozeqjfmgobzlvwbvwklq`qfbwfqfujftpvnnfqpfqufqsobzfgsobzfqf{sbmgsloj`zelqnbwglvaofsljmwppfqjfpsfqplmojujmdgfpjdmnlmwkpelq`fpvmjrvftfjdkwsflsoffmfqdzmbwvqfpfbq`kejdvqfkbujmd`vpwlnleepfwofwwfqtjmgltpvanjwqfmgfqdqlvspvsolbgkfbowknfwklgujgflpp`klloevwvqfpkbgltgfabwfubovfpLaif`wlwkfqpqjdkwpofbdvf`kqlnfpjnsofmlwj`fpkbqfgfmgjmdpfbplmqfslqwlmojmfprvbqfavwwlmjnbdfpfmbaofnlujmdobwfpwtjmwfqEqbm`fsfqjlgpwqlmdqfsfbwOlmglmgfwbjoelqnfggfnbmgpf`vqfsbppfgwlddofsob`fpgfuj`fpwbwj``jwjfppwqfbnzfooltbwwb`hpwqffweojdkwkjggfmjmel!=lsfmfgvpfevouboofz`bvpfpofbgfqpf`qfwpf`lmggbnbdfpslqwpf{`fswqbwjmdpjdmfgwkjmdpfeef`wejfogppwbwfpleej`fujpvbofgjwlqulovnfQfslqwnvpfvnnlujfpsbqfmwb``fppnlpwoznlwkfq!#jg>!nbqhfwdqlvmg`kbm`fpvqufzafelqfpznalonlnfmwpsff`knlwjlmjmpjgfnbwwfq@fmwfqlaif`wf{jpwpnjggofFvqlsfdqltwkofdb`znbmmfqfmlvdk`bqffqbmptfqlqjdjmslqwbo`ojfmwpfof`wqbmgln`olpfgwlsj`p`lnjmdebwkfqlswjlmpjnsozqbjpfgfp`bsf`klpfm`kvq`kgfejmfqfbplm`lqmfqlvwsvwnfnlqzjeqbnfsloj`fnlgfopMvnafqgvqjmdleefqppwzofphjoofgojpwfg`boofgpjoufqnbqdjmgfofwfafwwfqaqltpfojnjwpDolabopjmdoftjgdfw`fmwfqavgdfwmltqbs`qfgjw`objnpfmdjmfpbefwz`klj`fpsjqjw.pwzofpsqfbgnbhjmdmffgfgqvppjbsofbpff{wfmwP`qjswaqlhfmbooltp`kbqdfgjujgfeb`wlqnfnafq.abpfgwkflqz`lmejdbqlvmgtlqhfgkfosfg@kvq`kjnsb`wpklvogbotbzpoldl!#alwwlnojpw!=*xubq#sqfej{lqbmdfKfbgfq-svpk+`lvsofdbqgfmaqjgdfobvm`kQfujftwbhjmdujpjlmojwwofgbwjmdAvwwlmafbvwzwkfnfpelqdlwPfbq`kbm`klqbonlpwolbgfg@kbmdfqfwvqmpwqjmdqfolbgNlajofjm`lnfpvssozPlvq`flqgfqpujftfg%maps8`lvqpfBalvw#jpobmg?kwno#`llhjfmbnf>!bnbylmnlgfqmbguj`fjm?,b=9#Wkf#gjboldklvpfpAFDJM#Nf{j`lpwbqwp`fmwqfkfjdkwbggjmdJpobmgbppfwpFnsjqfP`kllofeelqwgjqf`wmfbqoznbmvboPfof`w- Lmfiljmfgnfmv!=SkjojsbtbqgpkbmgofjnslqwLeej`fqfdbqgphjoopmbwjlmPslqwpgfdqfftffhoz#+f-d-afkjmggl`wlqolddfgvmjwfg?,a=?,afdjmpsobmwpbppjpwbqwjpwjppvfg033s{\x7F`bmbgbbdfm`zp`kfnfqfnbjmAqbyjopbnsofoldl!=afzlmg.p`bofb``fswpfqufgnbqjmfEllwfq`bnfqb?,k2= \\elqn!ofbufppwqfpp!#,= -dje!#lmolbgolbgfqL{elqgpjpwfqpvqujuojpwfmefnbofGfpjdmpjyf>!bssfbowf{w!=ofufopwkbmhpkjdkfqelq`fgbmjnbobmzlmfBeqj`bbdqffgqf`fmwSflsof?aq#,=tlmgfqsqj`fpwvqmfg\x7F\x7F#x~8nbjm!=jmojmfpvmgbztqbs!=ebjofg`fmpvpnjmvwfafb`lmrvlwfp263s{\x7Ffpwbwfqfnlwffnbjo!ojmhfgqjdkw8pjdmboelqnbo2-kwnopjdmvssqjm`feolbw9-smd!#elqvn-B``fppsbsfqpplvmgpf{wfmgKfjdkwpojgfqVWE.;!%bns8#Afelqf-#TjwkpwvgjlltmfqpnbmbdfsqlejwiRvfqzbmmvbosbqbnpalvdkwebnlvpdlldofolmdfqj((*#xjpqbfopbzjmdgf`jgfklnf!=kfbgfqfmpvqfaqbm`ksjf`fpaol`h8pwbwfgwls!=?qb`jmdqfpjyf..%dw8sb`jwzpf{vboavqfbv-isd!#23/333lawbjmwjwofpbnlvmw/#Jm`-`lnfgznfmv!#ozqj`pwlgbz-jmgffg`lvmwz\\oldl-EbnjozollhfgNbqhfwopf#jeSobzfqwvqhfz*8ubq#elqfpwdjujmdfqqlqpGlnbjm~fopfxjmpfqwAold?,ellwfqoldjm-ebpwfqbdfmwp?algz#23s{#3sqbdnbeqjgbzivmjlqgloobqsob`fg`lufqpsovdjm6/333#sbdf!=alpwlm-wfpw+bubwbqwfpwfg\\`lvmwelqvnpp`kfnbjmgf{/ejoofgpkbqfpqfbgfqbofqw+bssfbqPvanjwojmf!=algz!= )#WkfWklvdkpffjmdifqpfzMftp?,ufqjezf{sfqwjmivqztjgwk>@llhjfPWBQW#b`qlpp\\jnbdfwkqfbgmbwjufsl`hfwal{!= Pzpwfn#Gbujg`bm`fqwbaofpsqlufgBsqjo#qfboozgqjufqjwfn!=nlqf!=albqgp`lolqp`bnsvpejqpw#\x7F\x7F#X^8nfgjb-dvjwbqejmjpktjgwk9pkltfgLwkfq#-sks!#bppvnfobzfqptjoplmpwlqfpqfojfeptfgfm@vpwlnfbpjoz#zlvq#Pwqjmd Tkjowbzolq`ofbq9qfplqweqfm`kwklvdk!*#(#!?algz=avzjmdaqbmgpNfnafqmbnf!=lssjmdpf`wlq6s{8!=upsb`fslpwfqnbilq#`leeffnbqwjmnbwvqfkbssfm?,mbu=hbmpbpojmh!=Jnbdfp>ebopftkjof#kpsb`f3%bns8# Jm##sltfqSlophj.`lolqilqgbmAlwwlnPwbqw#.`lvmw1-kwnomftp!=32-isdLmojmf.qjdkwnjoofqpfmjlqJPAM#33/333#dvjgfpubovf*f`wjlmqfsbjq-{no!##qjdkwp-kwno.aol`hqfdF{s9klufqtjwkjmujqdjmsklmfp?,wq=vpjmd# \nubq#=$*8 \n?,wg= ?,wq= abkbpbaqbpjodbofdlnbdzbqslophjpqsphj4]4C5d\bTA\nzk\vBl\bQ\x7F\vUmGx\bSM\nmC\bTA wQ\nd}\bW@\bTl\bTF i@ cT\vBM\v|jBV qw cC\bWI\npa fM\n{Z{X\bTF\bVV\bVK \x7FmkF []\bPm\bTv\nsI\vpg [I\bQpmx\v_W\n^M\npe\vQ}\vGu\nel\npeChBV\bTA So\nzk\vGL\vxD\nd[JzMY\bQpli\nfl\npC{BNt\vwT i_\bTgQQ\n|p\vXN\bQS\vxDQC\bWZ pD\vVS\bTWNtYh\nzuKjN} wr Ha\n_D j`\vQ}\vWp\nxZ{c ji BU\nbDa| Tn pV\nZd\nmC\vEV{X c} To\bWl\bUd IQ cg\vxs\nXW wR\vek c} ]y Jn\nrp\neg\npV\nz\\{W\npl\nz\\\nzU Pc `{\bV@\nc|\bRw i_\bVb\nwX HvSu\bTF\v_W\vWs\vsIm\x7F\nTT\ndc US }f iZ\bWz c}MD Be iD\v@@\bTl\bPv }tSwM`\vnU kW\ved\nqo\vxY A|\bTz\vy`BRBM iaXU\nyun^ fL iI\nXW fD\bWz\bW@ yj \x7Fm av BN\vb\\ pD\bTf\nY[ Jn\bQy [^\vWc\vyuDlCJ\vWj\vHR `V\vuW Qy\np@\vGuplJm\bW[\nLP\nxC\n`m wQui\x7FR\nbI wQ BZ WVBR\npg cgtiCW\n_y Rg\bQa\vQB\vWc\nYble\ngESu\nL[ Q\x7F ea dj\v]W\nb~M` wL\bTV\bVH\nt\x7F\npl |bs_\bU|\bTaoQlvSkM`\bTv\vK}\nfl cCoQBR Hk |d\bQp HK BZ\vHR\bPv\vLx\vEZ\bT\x7F\bTv iDoDMU\vwBSuk`St\ntC Pl Kg\noi jY\vxYh}\nzk\bWZ \x7Fm\ve` TB fE\nzk `zYh\nV| HK AJ AJ\bUL p\\ ql\nYcKd\nfyYh [I\vDgJm\n]n\nlb\bUd\n{Z lu fsoQ\bTWJm\vwB eaYhBC sb Tn\nzU\n_y\vxY Q]\ngwmt O\\\ntb\bWW\bQy mI V[\ny\\\naB\vRb wQ\n]QQJ\bWg\vWa\bQj\ntC\bVH\nYm\vxs\bVK\nel\bWI\vxYCq\ntR\vHV\bTl\bVw ay\bQa\bVV }t dj\nr| p\\ wR\n{i\nTT [I i[ AJ\vxs\v_W d{\vQ} cg Tz A| Cj\vLmN}m\x7F\nbK dZ p\\ `V sV\np@ iD wQ\vQ}\bTfkaJm\v@@\bV` zp\n@NSw iI cg\noiSu\bVwloCy c}\vb\\ sUBA\bWI\bTf\nxS Vp\nd|\bTV\vbC NoJu\nTC |`\n{Z D]\bU| c}lm\bTl Bv Pl c}\bQp \x7Fm\nLk kj\n@NSbKO j_ p\\\nzU\bTl\bTg\bWI cfXO\bWW\ndzli BN\nd[\bWOMD\vKC dj I_\bVV\ny\\\vLmxl xB kV\vb\\\vJW\vVS Vx\vxD d{MD\bTa |`\vPzR}\vWsBM\nsICN\bTaJm\npe i_\npV\nrh Rd Hv\n~A\nxR\vWh\vWk\nxS\vAz\vwX\nbIoQ fw\nqI\nV|\nunz\x7F\vpg d\\\voA{D i_xB\bT\x7F `Vqr TTg]CA\vuR VJ T`\npw\vRb I_\nCxRo\vsICjKh Bv WVBBoD{D\nhcKm\v^R QE\n{I\np@\nc|Gt c}Dl\nzUqN sVk} Hh\v|j\nqou| Q]\vek\x7FZM`St\npe dj\bVG\veE \x7Fm\vWc|I\n[W fL\bT\x7F BZSu\vKaCqNtY[\nqI\bTv fM i@ }fB\\ Qy\vBl\bWgXDkc\vx[\bVV Q] \x7Fa Py\vxD\nfI }foD dj SGls ~DCN\n{Z \\v\n_D\nhc\vx_C[ AJ\nLM VxCI bj c^ cF\ntCSx wrXA\bU\\ |a\vK\\\bTV\bVj\nd| fsCX\ntb\bRw Vx AE A|\bT\x7FNt\vDg Vc\bTld@\npo \x7FM cF\npe iZ Bo\bSq\nfHl`\bTx\bWf HE\vF{ cO fD\nlm\vfZ\nlm\veU dGBH\bTV SiMW\nwX\nz\\ \\cCX\nd} l}\bQp\bTV F~\bQ\x7F `i\ng@nO\bUd\bTl\nL[ wQ ji\ntC |J\nLU\naB\vxYKj AJuN i[\npeSk\vDg\vx]\bVb\bVV\nea kV\nqI\bTaSk\nAO pD\ntb\nts\nyi\bVg i_\v_W\nLkNt yj fMR\x7F iI\bTl\vwX sV\vMl\nyu AJ\bVjKO WV\vA}\vW\x7F\nrp iD\v|olv\vsIBM d~ CU\bVbeV\npC\vwT j` c}\vxs\vps\vvh WV\vGg\vAe\vVK\v]W rg\vWcF` Br\vb\\ dZ\bQp\nqIkF\nLk\vAR\bWI\bTg bs dw\n{L\n_y iZ\bTA lg\bVV\bTl dk\n`k a{ i_{Awj wN\v@@\bTe i_\n_D wL\nAH\viK\vek\n[] p_ yj\bTv US [r\n{I\npsGt\vVK\nplS}\vWP |dMD\vHV\bT\x7FR}M`\bTV\bVHlvCh\bW[Ke R{\v^R ab BZ VA B`\nd|\nhsKe BeOi R{ d\\nB\bWZ dZ VJOs \x7FmuQ\vhZQ@QQ\nfI\bW[B\\li\nzU\nMdM`\nxS\bVV\n\\}\vxD \x7Fm\bTpIS\nc| kVi~ V{\vhZ |b\bWt\n@R\voA\vnU\bWI ea B` iD c} TzBR\vQBNj CP [I\bTv `WuN\vpg\vpg\vWc iT bs wL U_ c\\ |h\vKa Nr fL\nq|\nzu\nz\\ Nr\bUg |bm`\bTv\nyd\nrp\bWf UXBV\nzk\nd} wQ }fCe\ved\bTW\bSB\nxU cn\bTb\ne\x7F a\\ SG\bU|\npV\nN\\Kn\vnU At pD\v^R\vIrb[ R{ dE\vxD\vWK\vWA\bQL\bW@Su\bUd\nDM PcCADloQ Hswiub\n\x7Fa\bQpOb\nLP\bTlY[\vK} AJ\bQ\x7Fn^\vsA\bSM\nqM\bWZ\n^W\vz{S| fD\bVK\bTv\bPvBB CPdF id\vxsmx\vws cC\ntC ycM`\vW\x7F\nrh\bQp\vxD\\o\nsI_k\nzukF fDXsXO jp\bTvBS{B Br\nzQ\nbI c{BDBVnO\bTF caJd fL PV I_\nlK`o wX\npa gu\bP}{^\bWf\n{I BN\npaKl\vpg cn fL\vvhCq\bTl\vnU\bSqCm wR\bUJ\npe\nyd\nYgCy\vKW fD\neaoQ j_ BvnM\vID\bTa\nzApl\n]n\bTa R{ fr\n_y\bUg{Xkk\vxD|Ixl\nfyCe\vwB\nLk\vd]\noi\n}h Q]\npe\bVwHkOQ\nzk AJ\npV\bPv\ny\\ A{Oi\bSBXA\veE jp\nq} iDqN\v^R \x7Fm iZ Br\bVg\noi\n\\X U_\nc|\vHV\bTf Tn\\N\\N\nuBlv\nyu Td\bTf\bPL\v]W dG\nA`\nw^\ngI\npe dw\nz\\ia\bWZ cFJm\n{Z\bWO_kDfRR d\\\bVV\vxsBNtilm Td ]y\vHV So\v|jXX A|\vZ^\vGu\bTWM`kF\vhZ\vVK dG\vBl ay\nxUqEnO\bVw\nqICX\ne\x7F Pl\bWO\vLm dLuHCm dTfn\vwBka\vnU\n@M\nyT Hv \\}Kh d~Yhk}\neR d\\\bWI |b HK iD\bTWMY\npl\bQ_ wr\vAx HE\bTg\bSqvp\vb\\\bWO\nOl\nsI\nfy\vID \\c\n{Z\n^~\npe\nAO TT\vxvk_\bWO\v|j\vwB Qy i@ Pl Ha dZk}ra UT\vJc\ved\np@ QN\nd| kj HkM`\noi wr d\\\nlq\no_\nlb\nL[ acBBBHCm\npl IQ\bVK\vxs\n`e\viK\npaOi US\bTp fD\nPGkkXA\nz\\\neg\vWh wRqN\nqS cnlo\nxS\n^W BU\nt\x7F HE p\\ fF fw\bVV\bW@ ak\vVKls VJ\bVV\veE\\o\nyX\nYmM`lL\nd|\nzk A{sE wQXT\nt\x7F Pl ]y\vwT{pMD\vb\\ Q]Kj Jn\nAH\vRb BU HK \\c\nfIm\x7F\nqM\n@R So\noiBT Hv\n_yKh BZ ]i\bUJ V{Sr\nbI\vGg a_\bTR\nfI\nfl [K IIS|\vuW iI\bWI\nqI\v|jBV\bVg\bWZkF\vx]\bTA ab fr i@ Jd Jd\vps\nAO\bTaxu iD\nzk |d |`\bW[ lP dG\bVV\vw}\vqO i[\bQ\x7F\bTz\vVF wNts dw\bTv\neS\ngi NryS\npe\bVV\bSq\n`m yj BZ\vWX\bSB c\\\nUR [J c_nM\bWQ\vAx\nMd Brui\vxY\bSM\vWc\v|j\vxs }Q BO\bPL\bWW fM\nAO Pc\veUe^\bTg\nqI ac\bPv cFoQ Q\x7F\vhZka\nz\\ iK BU\n`k CPS|M`\n{I S{_O BZZiSk ps p\\\nYu\n]s\nxC\bWt\nbD kV\vGuyS\nqA [r\neKM` dZlL\bUg\bTl\nbD US\vb\\ pV\nccS\\ ct `z\bPL\vWs\nA`\neg\bSquECR\vDg `W\vz{\vWcSkSk bW\bUg ea\nxZ iI UX VJ\nqn S{\vRb\bTQ\nplGt\vuWuj\npF\nqI fL [I iaXO\nyu\vDg\ved q{VG\bQ\x7Fka Vj kV xB\nd|\np@ QN Pc ps]j kV oU\bTp\nzUnB\vB] a{\bV@\n]nm` cz R{m`\bQa\vwT\bSMMYqN dj~s\vQ}MY\vMB Bv wR\bRg\vQ} ql\vKC\nrmxuCC\vwB\vvh BqXq\npV i_ObuE\nbd\nqo\v{i\nC~ BL\veEuH\bVjEyGz\vzR\v{i cf\n{Z\n]nXA\vGu\vnU hS\vGI\nCc HE\bTA HBBHCj\nCc\bTF HE\nXI A{\bQ\x7F c\\\vmO\vWX\nfH\np@MY\bTF\nlK Bt\nzU TTKm\vwT\npV\ndt\vyI Vx Q\x7F Rg Td\nzU\bRS\nLM wAnM Tn\ndS ]g\nLc\vwB }t [I CPkX\vFm\vhZm\x7F i[\np@\vQ}\vW\x7F |d\nMO\nMd f_ fD cJ Hz\vRb io PyY[\nxU ct\v@@ ww\bPvBMFF\ntbv|\vKm Bq BqKh`o\nZdXU i] |` StB\\\bQ\x7F\v_W TJ\nqI |a A{\vuPMD Pl\nxR fL\vws c{ d\\\bV`\neg HKkc\nd|\bVV\ny\\kc i]\bVG `V ss I_ AE bs du\nel pD\vW\x7F\nqslv\bSMZi\vVKia\vQB Q\x7F\n{Z\bPt\vKl\nlK\nhs\ndS\bVKmf\nd^ kV cO\nc|\bVH \\]\bTv\bSq mI\vDg VJ cn\ny\\\bVg\bTv\nyX\bTF ]]\bTp\noi\nhs\veU\nBf djMr\n|p \\g ]r\bVb{D\nd[XN fM O\\s_ cf iZXN\vWc qv\n`m U^oD\nd|\vGg dE\vwflou}\nd|oQ `iOi\vxD\ndZ\nCxYw\nzk\ntb\ngw yj B`\nyX\vps\ntC\vpP\vqw\bPu\bPX Dm\npwNj ss aG\vxs\bPt\noLGz Ok i@ i]eC IQ ii dj\v@J |duh\bWZ\veU\vnU\bTa cCg]\nzkYh\bVK\nLU\np@\ntb\ntR Cj\vNP i@\bP{\n\\}\n{c\nwX fL\bVG c{ |` AJ |C fDln |d bs\nqI{B\vAx\np@\nzk\vRbOs\vWSe^\vD_ Bv\vWd\bVb\vxs\veE\bRw\n]n\n|p\vg| fwkc\bTIka\n\\TSp ju\vps\npeu|\vGr\bVe CU]MXU\vxD\bTa IQ\vWq CU am dj\bSoSw\vnUCh Q]s_\bPt fS\bTa \\}\n@OYc UZ\bTx\npe\vnU\nzU |} iD\nz\\\bSM\vxDBR\nzQ QN]MYh\nLP\vFm\vLXvc\vqlka HK\bVb\ntC\nCy\bTv\nuVoQ `z [I B`\vRb yj sb\vWs\bTl kV\ved\ne\x7FlL\vxN \x7Fm\nJn jY\vxD\bVb\bSq\vyu wL\vXL\bTA pg At nDXX wR\npl\nhwyS\nps cO\bW[\v|jXN sV p\\ Be\nb~\nAJ\n]ek`qN dw WV HE\vEVJz id B` zhE] fD\bTgqN\bTa jaCv\bSM\nhc\bUet_ ieg] wQ\nPn\bVB jw\bVg\vbE BZ\vRH\bP{ jp\n\\} a_ cC |a\vD] BZ i[ fD\vxW\no_ d\\\n_D\ntb \\c AJ\nlKoQlo\vLx\vM@\bWZKn\vpg\nTi\nIv\n|r\v@}JzLmWhk}ln\vxD\n]sgc\vps Br\bTW\vBMtZ\nBYDW jf\vSWC}\nqo dE mv IQ\bPP\bUblvBC\nzQ [I\vgl\nig\bUsBT\vbC\bSq sU iW\nJn SY HK rg\npV\vID\v|jKO `S |a`vbmglfmujbqnbgqjgavp`bqjmj`jlwjfnslslqrvf`vfmwbfpwbglsvfgfmivfdlp`lmwqbfpw/Mmmlnaqfwjfmfmsfqejonbmfqbbnjdlp`jvgbg`fmwqlbvmrvfsvfgfpgfmwqlsqjnfqsqf`jlpfd/Vmavfmlpuloufqsvmwlppfnbmbkba/Abbdlpwlmvfulpvmjglp`bqolpfrvjslmj/]lpnv`klpbodvmb`lqqfljnbdfmsbqwjqbqqjabnbq/Abklnaqffnsoflufqgbg`bnajlnv`kbpevfqlmsbpbglo/Amfbsbqf`fmvfubp`vqplpfpwbabrvjfqlojaqlp`vbmwlb``fplnjdvfoubqjlp`vbwqlwjfmfpdqvslppfq/Mmfvqlsbnfgjlpeqfmwfb`fq`bgfn/Mplefqwb`l`kfpnlgfoljwbojbofwqbpbod/Vm`lnsqb`vbofpf{jpwf`vfqslpjfmglsqfmpboofdbqujbifpgjmfqlnvq`jbslgq/Msvfpwlgjbqjlsvfaolrvjfqfnbmvfosqlsjl`qjpjp`jfqwlpfdvqlnvfqwfevfmwf`fqqbqdqbmgffef`wlsbqwfpnfgjgbsqlsjbleqf`fwjfqqbf.nbjoubqjbpelqnbpevwvqllaifwlpfdvjqqjfpdlmlqnbpnjpnlp/Vmj`l`bnjmlpjwjlpqby/_mgfajglsqvfabwlofglwfm/Abifp/Vpfpsfql`l`jmblqjdfmwjfmgb`jfmwl`/Mgjykbaobqpfq/Abobwjmbevfqybfpwjoldvfqqbfmwqbq/E{jwlo/_sfybdfmgbu/Agflfujwbqsbdjmbnfwqlpibujfqsbgqfpe/M`jo`bafyb/Mqfbppbojgbfmu/Alibs/_mbavplpajfmfpwf{wlpoofubqsvfgbmevfqwf`ln/Vm`obpfpkvnbmlwfmjglajoablvmjgbgfpw/Mpfgjwbq`qfbgl<X<W=c=k=n<R<V<\\<V<T<W<T=a=n<R<^=m<Y<Y<_<R<S=l<T=n<\\<V<Y=e<Y=o<Z<Y<v<\\<V<]<Y<[<]=g<W<R<Q<T<~=m<Y<S<R<X<A=n<R=n<R<P=k<Y<P<Q<Y=n<W<Y=n=l<\\<[<R<Q<\\<_<X<Y<P<Q<Y<x<W=c<s=l<T<Q<\\=m<Q<T=i=n<Y<P<V=n<R<_<R<X<^<R=n=n<\\<P<M<D<|<P<\\=c<K=n<R<^<\\=m<^<\\<P<Y<P=o<N<\\<V<X<^<\\<Q<\\<P=a=n<T=a=n=o<~<\\<P=n<Y=i<S=l<R=n=o=n<Q<\\<X<X<Q=c<~<R=n=n=l<T<Q<Y<U<~<\\=m<Q<T<P=m<\\<P=n<R=n=l=o<]<r<Q<T<P<T=l<Q<Y<Y<r<r<r<W<T=j=a=n<\\<r<Q<\\<Q<Y<P<X<R<P<P<R<U<X<^<Y<R<Q<R=m=o<X\fHy\fIk\fHU\fId\fHy\fIl\fHT\fIk\fHy\fHR\fHy\fIg\fHx\fH\\\fHF\fH\\\fHD\fIk\fHc\fHy\fHy\fHS\fHA\fIl\fHk\fHT\fHy\fH\\\fHH\fIg\fHU\fIg\fHj\fHF\fHU\fIl\fHC\fHU\fHC\fHR\fHH\fHy\fHI\fHRibdqbm\fHj\fHp\fHp\fIg\fHi\fH@\fHJ\fIg\fH{\fHd\fHp\fHR\fH{\fHc\fHU\fHB\fHk\fHD\fHY\fHU\fHC\fIk\fHI\fIk\fHI\fIl\fHt\fH\\\fHp\fH@\fHJ\fIl\fHy\fHd\fHp\fIl\fHY\fIk\fHD\fHd\fHD\fHc\fHU\fH\\\fHe\fHT\fHB\fIk\fHy\fHB\fHY\fIg\fH^\fIk\fHT\fH@\fHB\fHd\fHJ\fIk\fH\x7F\fH\\\fHj\fHB\fH@\fHT\fHA\fH\\\fH@\fHD\fHv\fH^\fHB\fHD\fHj\fH{\fHT\fIl\fH^\fIl4U5h5e4I5h5e5k4\\4K4N4B4]4U4C4C4K5h5e5k4\\5k4Y5d4]4V5f4]5o4K5j5d5h4K4D5f5j4U4]4Z4\\5h5o5k5j4K5f5d5i5n4K5h4U5h5f4K5j4K5h5o5j4A4F5e5n4D5h5d4A4E4K4B4]5m5n4[4U4D4C4]5o5j4I4\\4K5o5i4K4K4A4C4I5h4K5m5f5k4D4U4Z5o5f5m4D4A4G5d5i5j5d5k5d4O5j4K4@4C4K5h5k4K4_5h5i4U5j4C5h5f4_4U4D4]4Y5h5e5i5j4\\4D5k4K4O5j5k5i4G5h5o5j4F4K5h4K4A5f4G5i4Y4]4X4]4A4A5d5h5d5m5f4K4\\4K5h5o5h5i4]4E4K5j4F4K5h5m4O4D5d4B4K4Y4O5j4F4K5j5k4K5h5f4U4Z5d5d5n4C4K4D5j4B5f4]4D5j4F5h5o5i4X4K4M5d5k5f4K4D5d5n4Y4Y5d5i4K4]5n5i4O4A4C5j4A5j4U4C5i4]4O5f4K4A4E5o4F4D4C5d5j5f4@4D5i5j5k4F4A4F4@5k4E4_5j4E5f4F5i5o4]4E4V4^4E5j5m4_4D5f4F5h5h5k5h5j4K4F5h5o5n5h4D5h5i4K4U5j5k4O5d5h4X5f4M5j5d4]4O5i4K5m5f5o4D5o5h4\\4K4F4]4F4D4D4O5j5k5i4_4K5j5o4D5f4U5m5n4C4A4_5j5h5k5i4X4U4]4O5k5h4X5k4]5n4[4]4[5h4Dsqlejofpfquj`fgfebvowkjnpfoegfwbjop`lmwfmwpvsslqwpwbqwfgnfppbdfpv``fppebpkjlm?wjwof=`lvmwqzb``lvmw`qfbwfgpwlqjfpqfpvowpqvmmjmdsql`fpptqjwjmdlaif`wpujpjaoftfo`lnfbqwj`ofvmhmltmmfwtlqh`lnsbmzgzmbnj`aqltpfqsqjub`zsqlaofnPfquj`fqfpsf`wgjpsobzqfrvfpwqfpfquftfapjwfkjpwlqzeqjfmgplswjlmptlqhjmdufqpjlmnjoojlm`kbmmfotjmglt-bggqfppujpjwfgtfbwkfq`lqqf`wsqlgv`wfgjqf`welqtbqgzlv#`bmqfnlufgpvaif`w`lmwqlobq`kjuf`vqqfmwqfbgjmdojaqbqzojnjwfgnbmbdfqevqwkfqpvnnbqznb`kjmfnjmvwfpsqjubwf`lmwf{wsqldqbnpl`jfwzmvnafqptqjwwfmfmbaofgwqjddfqplvq`fpolbgjmdfofnfmwsbqwmfqejmboozsfqef`wnfbmjmdpzpwfnphffsjmd`vowvqf%rvlw8/ilvqmbosqlif`wpvqeb`fp%rvlw8f{sjqfpqfujftpabobm`fFmdojpk@lmwfmwwkqlvdkSofbpf#lsjmjlm`lmwb`wbufqbdfsqjnbqzujoobdfPsbmjpkdboofqzgf`ojmfnffwjmdnjppjlmslsvobqrvbojwznfbpvqfdfmfqbopsf`jfppfppjlmpf`wjlmtqjwfqp`lvmwfqjmjwjboqfslqwpejdvqfpnfnafqpklogjmdgjpsvwffbqojfqf{sqfppgjdjwbosj`wvqfBmlwkfqnbqqjfgwqbeej`ofbgjmd`kbmdfg`fmwqbouj`wlqzjnbdfp,qfbplmppwvgjfpefbwvqfojpwjmdnvpw#afp`kllopUfqpjlmvpvboozfsjplgfsobzjmddqltjmdlaujlvplufqobzsqfpfmwb`wjlmp?,vo= tqbssfqboqfbgz`fqwbjmqfbojwzpwlqbdfbmlwkfqgfphwlsleefqfgsbwwfqmvmvpvboGjdjwbo`bsjwboTfapjwfebjovqf`lmmf`wqfgv`fgBmgqljggf`bgfpqfdvobq#%bns8#bmjnbopqfofbpfBvwlnbwdfwwjmdnfwklgpmlwkjmdSlsvobq`bswjlmofwwfqp`bswvqfp`jfm`foj`fmpf`kbmdfpFmdobmg>2%bns8Kjpwlqz#>#mft#@fmwqbovsgbwfgPsf`jboMfwtlqhqfrvjqf`lnnfmwtbqmjmd@loofdfwlloabqqfnbjmpaf`bvpffof`wfgGfvwp`kejmbm`ftlqhfqprvj`hozafwtffmf{b`wozpfwwjmdgjpfbpfPl`jfwztfbslmpf{kjajw%ow8"..@lmwqlo`obppfp`lufqfglvwojmfbwwb`hpgfuj`fp+tjmgltsvqslpfwjwof>!Nlajof#hjoojmdpkltjmdJwbojbmgqlssfgkfbujozfeef`wp.2$^*8 `lmejqn@vqqfmwbgubm`fpkbqjmdlsfmjmdgqbtjmdajoojlmlqgfqfgDfqnbmzqfobwfg?,elqn=jm`ovgftkfwkfqgfejmfgP`jfm`f`bwboldBqwj`ofavwwlmpobqdfpwvmjelqnilvqmfzpjgfabq@kj`bdlklojgbzDfmfqbosbppbdf/%rvlw8bmjnbwfeffojmdbqqjufgsbppjmdmbwvqboqlvdkoz- Wkf#avw#mlwgfmpjwzAqjwbjm@kjmfpfob`h#lewqjavwfJqfobmg!#gbwb.eb`wlqpqf`fjufwkbw#jpOjaqbqzkvpabmgjm#eb`wbeebjqp@kbqofpqbgj`boaqlvdkwejmgjmdobmgjmd9obmd>!qfwvqm#ofbgfqpsobmmfgsqfnjvnsb`hbdfBnfqj`bFgjwjlm^%rvlw8Nfppbdfmffg#wlubovf>!`lnsof{ollhjmdpwbwjlmafojfufpnboofq.nlajofqf`lqgptbmw#wlhjmg#leEjqfel{zlv#bqfpjnjobqpwvgjfgnb{jnvnkfbgjmdqbsjgoz`ojnbwfhjmdglnfnfqdfgbnlvmwpelvmgfgsjlmffqelqnvobgzmbpwzklt#wl#Pvsslqwqfufmvff`lmlnzQfpvowpaqlwkfqplogjfqobqdfoz`boojmd-%rvlw8B``lvmwFgtbqg#pfdnfmwQlafqw#feelqwpSb`jej`ofbqmfgvs#tjwkkfjdkw9tf#kbufBmdfofpmbwjlmp\\pfbq`kbssojfgb`rvjqfnbppjufdqbmwfg9#ebopfwqfbwfgajddfpwafmfejwgqjujmdPwvgjfpnjmjnvnsfqkbspnlqmjmdpfoojmdjp#vpfgqfufqpfubqjbmw#qlof>!njppjmdb`kjfufsqlnlwfpwvgfmwplnflmff{wqfnfqfpwlqfalwwln9fuloufgboo#wkfpjwfnbsfmdojpktbz#wl##Bvdvpwpznalop@lnsbmznbwwfqpnvpj`bobdbjmpwpfqujmd~*+*8 sbznfmwwqlvaof`lm`fsw`lnsbqfsbqfmwpsobzfqpqfdjlmpnlmjwlq#$$Wkf#tjmmjmdf{solqfbgbswfgDboofqzsqlgv`fbajojwzfmkbm`f`bqffqp*-#Wkf#`loof`wPfbq`k#bm`jfmwf{jpwfgellwfq#kbmgofqsqjmwfg`lmplofFbpwfqmf{slqwptjmgltp@kbmmfojoofdbomfvwqbopvddfpw\\kfbgfqpjdmjmd-kwno!=pfwwofgtfpwfqm`bvpjmd.tfahjw`objnfgIvpwj`f`kbswfquj`wjnpWklnbp#nlyjoobsqlnjpfsbqwjfpfgjwjlmlvwpjgf9ebopf/kvmgqfgLoznsj`\\avwwlmbvwklqpqfb`kfg`kqlmj`gfnbmgppf`lmgpsqlwf`wbglswfgsqfsbqfmfjwkfqdqfbwozdqfbwfqlufqboojnsqluf`lnnbmgpsf`jbopfbq`k-tlqpkjsevmgjmdwklvdkwkjdkfpwjmpwfbgvwjojwzrvbqwfq@vowvqfwfpwjmd`ofbqozf{slpfgAqltpfqojafqbo~#`bw`kSqlif`wf{bnsofkjgf+*8EolqjgbbmptfqpbooltfgFnsfqlqgfefmpfpfqjlvpeqffglnPfufqbo.avwwlmEvqwkfqlvw#le#">#mvoowqbjmfgGfmnbqhuljg+3*,boo-ipsqfufmwQfrvfpwPwfskfm Tkfm#lapfquf?,k1= Nlgfqm#sqlujgf!#bow>!alqgfqp- Elq# Nbmz#bqwjpwpsltfqfgsfqelqnej`wjlmwzsf#lenfgj`bowj`hfwplsslpfg@lvm`jotjwmfppivpwj`fDflqdf#Afodjvn---?,b=wtjwwfqmlwbaoztbjwjmdtbqebqf#Lwkfq#qbmhjmdskqbpfpnfmwjlmpvqujufp`klobq?,s= #@lvmwqzjdmlqfgolpp#leivpw#bpDflqdjbpwqbmdf?kfbg=?pwlssfg2$^*8 jpobmgpmlwbaofalqgfq9ojpw#le`bqqjfg233/333?,k0= #pfufqboaf`lnfppfof`w#tfggjmd33-kwnonlmbq`klee#wkfwfb`kfqkjdkoz#ajloldzojef#lelq#fufmqjpf#le%qbrvl8sovplmfkvmwjmd+wklvdkGlvdobpiljmjmd`jq`ofpElq#wkfBm`jfmwUjfwmbnufkj`ofpv`k#bp`qzpwboubovf#>Tjmgltpfmilzfgb#pnboobppvnfg?b#jg>!elqfjdm#Boo#qjklt#wkfGjpsobzqfwjqfgkltfufqkjggfm8abwwofppffhjmd`bajmfwtbp#mlwollh#bw`lmgv`wdfw#wkfIbmvbqzkbssfmpwvqmjmdb9klufqLmojmf#Eqfm`k#ob`hjmdwzsj`bof{wqb`wfmfnjfpfufm#jedfmfqbwgf`jgfgbqf#mlw,pfbq`kafojfep.jnbdf9ol`bwfgpwbwj`-oldjm!=`lmufqwujlofmwfmwfqfgejqpw!=`jq`vjwEjmobmg`kfnjpwpkf#tbp23s{8!=bp#pv`kgjujgfg?,psbm=tjoo#afojmf#leb#dqfbwnzpwfqz,jmgf{-eboojmdgvf#wl#qbjotbz`loofdfnlmpwfqgfp`fmwjw#tjwkmv`ofbqIftjpk#sqlwfpwAqjwjpkeoltfqpsqfgj`wqfelqnpavwwlm#tkl#tbpof`wvqfjmpwbmwpvj`jgfdfmfqj`sfqjlgpnbqhfwpPl`jbo#ejpkjmd`lnajmfdqbskj`tjmmfqp?aq#,=?az#wkf#MbwvqboSqjub`z`llhjfplvw`lnfqfploufPtfgjpkaqjfeozSfqpjbmpl#nv`k@fmwvqzgfsj`wp`lovnmpklvpjmdp`qjswpmf{w#wlafbqjmdnbssjmdqfujpfgiRvfqz+.tjgwk9wjwof!=wllowjsPf`wjlmgfpjdmpWvqhjpkzlvmdfq-nbw`k+~*+*8 avqmjmdlsfqbwfgfdqffpplvq`f>Qj`kbqg`olpfozsobpwj`fmwqjfp?,wq= `lolq9 vo#jg>!slppfppqloojmdskzpj`pebjojmdf{f`vwf`lmwfpwojmh#wlGfebvow?aq#,= 9#wqvf/`kbqwfqwlvqjpn`obppj`sql`ffgf{sobjm?,k2= lmojmf-<{no#ufkfosjmdgjbnlmgvpf#wkfbjqojmffmg#..=*-bwwq+qfbgfqpklpwjmd eeeeeeqfbojyfUjm`fmwpjdmbop#pq`>!,Sqlgv`wgfpsjwfgjufqpfwfoojmdSvaoj`#kfog#jmIlpfsk#wkfbwqfbeef`wp?pwzof=b#obqdfglfpm$wobwfq/#Fofnfmwebuj`lm`qfbwlqKvmdbqzBjqslqwpff#wkfpl#wkbwNj`kbfoPzpwfnpSqldqbnp/#bmg##tjgwk>f%rvlw8wqbgjmdofew!= sfqplmpDlogfm#Beebjqpdqbnnbqelqnjmdgfpwqlzjgfb#le`bpf#lelogfpw#wkjp#jp-pq`#>#`bqwllmqfdjpwq@lnnlmpNvpojnpTkbw#jpjm#nbmznbqhjmdqfufbopJmgffg/frvbooz,pklt\\blvwgllqfp`bsf+Bvpwqjbdfmfwj`pzpwfn/Jm#wkf#pjwwjmdKf#boplJpobmgpB`bgfnz \n\n?"..Gbmjfo#ajmgjmdaol`h!=jnslpfgvwjojyfBaqbkbn+f{`fswxtjgwk9svwwjmd*-kwno+\x7F\x7F#X^8 GBWBX#)hjw`kfmnlvmwfgb`wvbo#gjbof`wnbjmoz#\\aobmh$jmpwboof{sfqwpje+wzsfJw#bopl%`lsz8#!=Wfqnpalqm#jmLswjlmpfbpwfqmwbohjmd`lm`fqmdbjmfg#lmdljmdivpwjez`qjwj`peb`wlqzjwp#ltmbppbvowjmujwfgobpwjmdkjp#ltmkqfe>!,!#qfo>!gfufols`lm`fqwgjbdqbngloobqp`ovpwfqsks<jg>bo`lklo*8~*+*8vpjmd#b=?psbm=ufppfopqfujuboBggqfppbnbwfvqbmgqljgboofdfgjoomfpptbohjmd`fmwfqprvbojeznbw`kfpvmjejfgf{wjm`wGfefmpfgjfg#jm \n?"..#`vpwlnpojmhjmdOjwwof#Allh#lefufmjmdnjm-ip<bqf#wkfhlmwbhwwlgbz$p-kwno!#wbqdfw>tfbqjmdBoo#Qjd8 ~*+*8qbjpjmd#Bopl/#`qv`jbobalvw!=gf`obqf..= ?p`ejqfel{bp#nv`kbssojfpjmgf{/#p/#avw#wzsf#>#  ?"..wltbqgpQf`lqgpSqjubwfElqfjdmSqfnjfq`klj`fpUjqwvboqfwvqmp@lnnfmwSltfqfgjmojmf8slufqwz`kbnafqOjujmd#ulovnfpBmwklmzoldjm!#QfobwfgF`lmlnzqfb`kfp`vwwjmddqbujwzojef#jm@kbswfq.pkbgltMlwbaof?,wg= #qfwvqmpwbgjvntjgdfwpubqzjmdwqbufopkfog#aztkl#bqftlqh#jmeb`vowzbmdvobqtkl#kbgbjqslqwwltm#le Plnf#$`oj`h$`kbqdfphfztlqgjw#tjoo`jwz#le+wkjp*8Bmgqft#vmjrvf#`kf`hfglq#nlqf033s{8#qfwvqm8qpjlm>!sovdjmptjwkjm#kfqpfoePwbwjlmEfgfqboufmwvqfsvaojpkpfmw#wlwfmpjlmb`wqfpp`lnf#wlejmdfqpGvhf#lesflsof/f{soljwtkbw#jpkbqnlmzb#nbilq!9!kwwsjm#kjp#nfmv!= nlmwkozleej`fq`lvm`jodbjmjmdfufm#jmPvnnbqzgbwf#leolzbowzejwmfppbmg#tbpfnsfqlqpvsqfnfPf`lmg#kfbqjmdQvppjbmolmdfpwBoafqwbobwfqbopfw#le#pnboo!=-bssfmggl#tjwkefgfqboabmh#leafmfbwkGfpsjwf@bsjwbodqlvmgp*/#bmg#sfq`fmwjw#eqln`olpjmd`lmwbjmJmpwfbgejewffmbp#tfoo-zbkll-qfpslmgejdkwfqlap`vqfqfeof`wlqdbmj`>#Nbwk-fgjwjmdlmojmf#sbggjmdb#tkloflmfqqlqzfbq#lefmg#le#abqqjfqtkfm#jwkfbgfq#klnf#leqfpvnfgqfmbnfgpwqlmd=kfbwjmdqfwbjmp`olvgeqtbz#le#Nbq`k#2hmltjmdjm#sbqwAfwtffmofpplmp`olpfpwujqwvboojmhp!=`qlppfgFMG#..=ebnlvp#btbqgfgOj`fmpfKfbowk#ebjqoz#tfbowkznjmjnboBeqj`bm`lnsfwfobafo!=pjmdjmdebqnfqpAqbpjo*gjp`vppqfsob`fDqfdlqzelmw#`lsvqpvfgbssfbqpnbhf#vsqlvmgfgalwk#leaol`hfgpbt#wkfleej`fp`lolvqpje+gl`vtkfm#kffmelq`fsvpk+evBvdvpw#VWE.;!=Ebmwbpzjm#nlpwjmivqfgVpvboozebqnjmd`olpvqflaif`w#gfefm`fvpf#le#Nfgj`bo?algz= fujgfmwaf#vpfghfz@lgfpj{wffmJpobnj` 333333fmwjqf#tjgfoz#b`wjuf#+wzsflelmf#`bm`lolq#>psfbhfqf{wfmgpSkzpj`pwfqqbjm?walgz=evmfqboujftjmdnjggof#`qj`hfwsqlskfwpkjewfggl`wlqpQvppfoo#wbqdfw`lnsb`wbodfaqbpl`jbo.avoh#lenbm#bmg?,wg= #kf#ofew*-ubo+*ebopf*8oldj`boabmhjmdklnf#wlmbnjmd#Bqjylmb`qfgjwp*8 ~*8 elvmgfqjm#wvqm@loojmpafelqf#Avw#wkf`kbqdfgWjwof!=@bswbjmpsfoofgdlggfppWbd#..=Bggjmd9avw#tbpQf`fmw#sbwjfmwab`h#jm>ebopf%Ojm`lomtf#hmlt@lvmwfqIvgbjpnp`qjsw#bowfqfg$^*8 ##kbp#wkfvm`ofbqFufmw$/alwk#jmmlw#boo ?"..#sob`jmdkbqg#wl#`fmwfqplqw#le`ojfmwppwqffwpAfqmbqgbppfqwpwfmg#wlebmwbpzgltm#jmkbqalvqEqffglniftfoqz,balvw--pfbq`kofdfmgpjp#nbgfnlgfqm#lmoz#lmlmoz#wljnbdf!#ojmfbq#sbjmwfqbmg#mlwqbqfoz#b`qlmzngfojufqpklqwfq33%bns8bp#nbmztjgwk>!,)#?"X@wjwof#>le#wkf#oltfpw#sj`hfg#fp`bsfgvpfp#lesflsofp#Svaoj`Nbwwkftwb`wj`pgbnbdfgtbz#elqobtp#lefbpz#wl#tjmgltpwqlmd##pjnsof~`bw`k+pfufmwkjmelal{tfmw#wlsbjmwfg`jwjyfmJ#glm$wqfwqfbw-#Plnf#tt-!*8 alnajmdnbjowl9nbgf#jm-#Nbmz#`bqqjfp\x7F\x7Fx~8tjtlqh#lepzmlmzngfefbwpebulqfglswj`bosbdfWqbvmofpp#pfmgjmdofew!=?`lnP`lqBoo#wkfiRvfqz-wlvqjpw@obppj`ebopf!#Tjokfonpvavqapdfmvjmfajpklsp-psojw+dolabo#elooltpalgz#lemlnjmbo@lmwb`wpf`vobqofew#wl`kjfeoz.kjggfm.abmmfq?,oj= -#Tkfm#jm#alwkgjpnjppF{solqfbotbzp#ujb#wkfpsb/]lotfoebqfqvojmd#bqqbmdf`bswbjmkjp#plmqvof#lekf#wllhjwpfoe/>3%bns8+`boofgpbnsofpwl#nbhf`ln,sbdNbqwjm#Hfmmfgzb``fswpevoo#lekbmgofgAfpjgfp,,..=?,baof#wlwbqdfwpfppfm`fkjn#wl#jwp#az#`lnnlm-njmfqbowl#wbhftbzp#wlp-lqd,obgujpfgsfmbowzpjnsof9je#wkfzOfwwfqpb#pklqwKfqafqwpwqjhfp#dqlvsp-ofmdwkeojdkwplufqobspoltoz#ofppfq#pl`jbo#?,s= \n\njw#jmwlqbmhfg#qbwf#levo= ##bwwfnswsbjq#lenbhf#jwHlmwbhwBmwlmjlkbujmd#qbwjmdp#b`wjufpwqfbnpwqbssfg!*-`pp+klpwjofofbg#wlojwwof#dqlvsp/Sj`wvqf..=  #qltp>!#laif`wjmufqpf?ellwfq@vpwlnU=?_,p`qploujmd@kbnafqpobufqztlvmgfgtkfqfbp">#$vmgelq#boosbqwoz#.qjdkw9Bqbajbmab`hfg#`fmwvqzvmjw#lenlajof.Fvqlsf/jp#klnfqjph#legfpjqfg@ojmwlm`lpw#lebdf#le#af`lnf#mlmf#les%rvlw8Njggof#fbg$*X3@qjwj`ppwvgjlp=%`lsz8dqlvs!=bppfnaonbhjmd#sqfppfgtjgdfw-sp9!#<#qfavjowaz#plnfElqnfq#fgjwlqpgfobzfg@bmlmj`kbg#wkfsvpkjmd`obpp>!avw#bqfsbqwjboAbazolmalwwln#`bqqjfq@lnnbmgjwp#vpfBp#tjwk`lvqpfpb#wkjqggfmlwfpbopl#jmKlvpwlm13s{8!=b``vpfgglvaof#dlbo#leEbnlvp#*-ajmg+sqjfpwp#Lmojmfjm#Ivozpw#(#!d`lmpvowgf`jnbokfosevoqfujufgjp#ufqzq$($jswolpjmd#efnbofpjp#boplpwqjmdpgbzp#lebqqjuboevwvqf#?laif`welq`jmdPwqjmd+!#,= \n\nkfqf#jpfm`lgfg-##Wkf#aboollmglmf#az,`lnnlmad`lolqobt#le#Jmgjbmbbuljgfgavw#wkf1s{#0s{irvfqz-bewfq#bsloj`z-nfm#bmgellwfq.>#wqvf8elq#vpfp`qffm-Jmgjbm#jnbdf#>ebnjoz/kwws9,,#%maps8gqjufqpfwfqmbopbnf#bpmlwj`fgujftfqp~*+*8 #jp#nlqfpfbplmpelqnfq#wkf#mftjp#ivpw`lmpfmw#Pfbq`ktbp#wkftkz#wkfpkjssfgaq=?aq=tjgwk9#kfjdkw>nbgf#le`vjpjmfjp#wkbwb#ufqz#Bgnjqbo#ej{fg8mlqnbo#NjppjlmSqfpp/#lmwbqjl`kbqpfwwqz#wl#jmubgfg>!wqvf!psb`jmdjp#nlpwb#nlqf#wlwboozeboo#le~*8 ##jnnfmpfwjnf#jmpfw#lvwpbwjpezwl#ejmggltm#wlolw#le#Sobzfqpjm#Ivmfrvbmwvnmlw#wkfwjnf#wlgjpwbmwEjmmjpkpq`#>#+pjmdof#kfos#leDfqnbm#obt#bmgobafofgelqfpwp`llhjmdpsb`f!=kfbgfq.tfoo#bpPwbmofzaqjgdfp,dolabo@qlbwjb#Balvw#X3^8 ##jw/#bmgdqlvsfgafjmd#b*xwkqltkf#nbgfojdkwfqfwkj`boEEEEEE!alwwln!ojhf#b#fnsolzpojuf#jmbp#pffmsqjmwfqnlpw#leva.ojmhqfif`wpbmg#vpfjnbdf!=pv``ffgeffgjmdMv`ofbqjmelqnbwl#kfosTlnfm$pMfjwkfqNf{j`bmsqlwfjm?wbaof#az#nbmzkfbowkzobtpvjwgfujpfg-svpk+xpfoofqppjnsoz#Wkqlvdk-`llhjf#Jnbdf+logfq!=vp-ip!=#Pjm`f#vmjufqpobqdfq#lsfm#wl"..#fmgojfp#jm$^*8 ##nbqhfwtkl#jp#+!GLN@lnbmbdfglmf#elqwzsfle#Hjmdglnsqlejwpsqlslpfwl#pklt`fmwfq8nbgf#jwgqfppfgtfqf#jmnj{wvqfsqf`jpfbqjpjmdpq`#>#$nbhf#b#pf`vqfgAbswjpwulwjmd# \n\nubq#Nbq`k#1dqft#vs@ojnbwf-qfnlufphjoofgtbz#wkf?,kfbg=eb`f#leb`wjmd#qjdkw!=wl#tlqhqfgv`fpkbp#kbgfqf`wfgpklt+*8b`wjlm>allh#lebm#bqfb>>#!kww?kfbgfq ?kwno=`lmelqneb`jmd#`llhjf-qfoz#lmklpwfg#-`vpwlnkf#tfmwavw#elqpsqfbg#Ebnjoz#b#nfbmplvw#wkfelqvnp-ellwbdf!=Nlajo@ofnfmwp!#jg>!bp#kjdkjmwfmpf..=?"..efnbof#jp#pffmjnsojfgpfw#wkfb#pwbwfbmg#kjpebpwfpwafpjgfpavwwlm\\alvmgfg!=?jnd#Jmelal{fufmwp/b#zlvmdbmg#bqfMbwjuf#`kfbsfqWjnflvwbmg#kbpfmdjmfptlm#wkf+nlpwozqjdkw9#ejmg#b#.alwwlnSqjm`f#bqfb#lenlqf#lepfbq`k\\mbwvqf/ofdboozsfqjlg/obmg#lelq#tjwkjmgv`fgsqlujmdnjppjofol`boozBdbjmpwwkf#tbzh%rvlw8s{8!= svpkfg#babmglmmvnfqbo@fqwbjmJm#wkjpnlqf#jmlq#plnfmbnf#jpbmg/#jm`qltmfgJPAM#3.`qfbwfpL`wlafqnbz#mlw`fmwfq#obwf#jmGfefm`ffmb`wfgtjpk#wlaqlbgoz`llojmdlmolbg>jw-#Wkfqf`lufqNfnafqpkfjdkw#bppvnfp?kwno= sflsof-jm#lmf#>tjmgltellwfq\\b#dllg#qfhobnblwkfqp/wl#wkjp\\`llhjfsbmfo!=Olmglm/gfejmfp`qvpkfgabswjpn`lbpwbopwbwvp#wjwof!#nluf#wlolpw#jmafwwfq#jnsojfpqjuboqzpfqufqp#PzpwfnSfqkbspfp#bmg#`lmwfmgeoltjmdobpwfg#qjpf#jmDfmfpjpujft#leqjpjmd#pffn#wlavw#jm#ab`hjmdkf#tjoodjufm#bdjujmd#`jwjfp-eolt#le#Obwfq#boo#avwKjdktbzlmoz#azpjdm#lekf#glfpgjeefqpabwwfqz%bns8obpjmdofpwkqfbwpjmwfdfqwbhf#lmqfevpfg`boofg#>VP%bnsPff#wkfmbwjufpaz#wkjppzpwfn-kfbg#le9klufq/ofpajbmpvqmbnfbmg#boo`lnnlm,kfbgfq\\\\sbqbnpKbqubqg,sj{fo-qfnlubopl#olmdqlof#leiljmwozphzp`qbVmj`lgfaq#,= Bwobmwbmv`ofvp@lvmwz/svqfoz#`lvmw!=fbpjoz#avjog#blm`oj`hb#djufmsljmwfqk%rvlw8fufmwp#fopf#x gjwjlmpmlt#wkf/#tjwk#nbm#tkllqd,Tfalmf#bmg`buboqzKf#gjfgpfbwwof33/333#xtjmgltkbuf#wlje+tjmgbmg#jwpplofoz#n%rvlw8qfmftfgGfwqljwbnlmdpwfjwkfq#wkfn#jmPfmbwlqVp?,b=?Hjmd#leEqbm`jp.sqlgv`kf#vpfgbqw#bmgkjn#bmgvpfg#azp`lqjmdbw#klnfwl#kbufqfobwfpjajojwzeb`wjlmAveebolojmh!=?tkbw#kfeqff#wl@jwz#le`lnf#jmpf`wlqp`lvmwfglmf#gbzmfqulvpprvbqf#~8je+dljm#tkbwjnd!#bojp#lmozpfbq`k,wvfpgbzollpfozPlolnlmpf{vbo#.#?b#kqnfgjvn!GL#MLW#Eqbm`f/tjwk#b#tbq#bmgpf`lmg#wbhf#b#=   nbqhfw-kjdktbzglmf#jm`wjujwz!obpw!=laojdfgqjpf#wl!vmgfejnbgf#wl#Fbqoz#sqbjpfgjm#jwp#elq#kjpbwkofwfIvsjwfqZbkll"#wfqnfg#pl#nbmzqfbooz#p-#Wkf#b#tlnbm<ubovf>gjqf`w#qjdkw!#aj`z`ofb`jmd>!gbz#bmgpwbwjmdQbwkfq/kjdkfq#Leej`f#bqf#mltwjnfp/#tkfm#b#sbz#elqlm#wkjp.ojmh!=8alqgfqbqlvmg#bmmvbo#wkf#Mftsvw#wkf-`ln!#wbhjm#wlb#aqjfe+jm#wkfdqlvsp-8#tjgwkfmyznfppjnsof#jm#obwfxqfwvqmwkfqbszb#sljmwabmmjmdjmhp!= +*8!#qfb#sob`f_v330@bbalvw#bwq= \n\n``lvmw#djufp#b?P@QJSWQbjotbzwkfnfp,wlloal{AzJg+!{kvnbmp/tbw`kfpjm#plnf#je#+tj`lnjmd#elqnbwp#Vmgfq#avw#kbpkbmgfg#nbgf#azwkbm#jmefbq#legfmlwfg,jeqbnfofew#jmulowbdfjm#fb`kb%rvlw8abpf#leJm#nbmzvmgfqdlqfdjnfpb`wjlm#?,s= ?vpwlnUb8%dw8?,jnslqwplq#wkbwnlpwoz#%bns8qf#pjyf>!?,b=?,kb#`obppsbppjufKlpw#>#TkfwkfqefqwjofUbqjlvp>X^8+ev`bnfqbp,=?,wg=b`wp#bpJm#plnf=  ?"lqdbmjp#?aq#,=Afjijmd`bwbo/Lgfvwp`kfvqlsfvfvphbqbdbfjodfpufmphbfpsb/]bnfmpbifvpvbqjlwqbabiln/E{j`ls/Mdjmbpjfnsqfpjpwfnbl`wvaqfgvqbmwfb/]bgjqfnsqfpbnlnfmwlmvfpwqlsqjnfqbwqbu/Epdqb`jbpmvfpwqbsql`fplfpwbglp`bojgbgsfqplmbm/Vnfqlb`vfqgln/Vpj`bnjfnaqllefqwbpbodvmlpsb/Apfpfifnsolgfqf`klbgfn/Mpsqjubglbdqfdbqfmob`fpslpjaofklwfofppfujoobsqjnfql/Vowjnlfufmwlpbq`kjul`vowvqbnvifqfpfmwqbgbbmvm`jlfnabqdlnfq`bgldqbmgfpfpwvgjlnfilqfpefaqfqlgjpf/]lwvqjpnl`/_gjdlslqwbgbfpsb`jlebnjojbbmwlmjlsfqnjwfdvbqgbqbodvmbpsqf`jlpbodvjfmpfmwjglujpjwbpw/Awvol`lml`fqpfdvmgl`lmpfileqbm`jbnjmvwlppfdvmgbwfmfnlpfef`wlpn/Mobdbpfpj/_mqfujpwbdqbmbgb`lnsqbqjmdqfpldbq`/Abb``j/_mf`vbglqrvjfmfpjm`ovplgfafq/Mnbwfqjbklnaqfpnvfpwqbslgq/Abnb/]bmb/Vowjnbfpwbnlplej`jbowbnajfmmjmd/Vmpbovglpslgfnlpnfilqbqslpjwjlmavpjmfppklnfsbdfpf`vqjwzobmdvbdfpwbmgbqg`bnsbjdmefbwvqfp`bwfdlqzf{wfqmbo`kjogqfmqfpfqufgqfpfbq`kf{`kbmdfebulqjwfwfnsobwfnjojwbqzjmgvpwqzpfquj`fpnbwfqjbosqlgv`wpy.jmgf{9`lnnfmwpplewtbqf`lnsofwf`bofmgbqsobwelqnbqwj`ofpqfrvjqfgnlufnfmwrvfpwjlmavjogjmdslojwj`pslppjaofqfojdjlmskzpj`boeffgab`hqfdjpwfqsj`wvqfpgjpbaofgsqlwl`lobvgjfm`fpfwwjmdpb`wjujwzfofnfmwpofbqmjmdbmzwkjmdbapwqb`wsqldqfpplufqujftnbdbyjmff`lmlnj`wqbjmjmdsqfppvqfubqjlvp#?pwqlmd=sqlsfqwzpklssjmdwldfwkfqbgubm`fgafkbujlqgltmolbgefbwvqfgellwaboopfof`wfgObmdvbdfgjpwbm`fqfnfnafqwqb`hjmdsbpptlqgnlgjejfgpwvgfmwpgjqf`wozejdkwjmdmlqwkfqmgbwbabpfefpwjuboaqfbhjmdol`bwjlmjmwfqmfwgqlsgltmsqb`wj`ffujgfm`fevm`wjlmnbqqjbdfqfpslmpfsqlaofnpmfdbwjufsqldqbnpbmbozpjpqfofbpfgabmmfq!=svq`kbpfsloj`jfpqfdjlmbo`qfbwjufbqdvnfmwallhnbqhqfefqqfq`kfnj`bogjujpjlm`booab`hpfsbqbwfsqlif`wp`lmeoj`wkbqgtbqfjmwfqfpwgfojufqznlvmwbjmlawbjmfg>#ebopf8elq+ubq#b``fswfg`bsb`jwz`lnsvwfqjgfmwjwzbjq`qbewfnsolzfgsqlslpfgglnfpwj`jm`ovgfpsqlujgfgklpsjwboufqwj`bo`loobspfbssqlb`ksbqwmfqpoldl!=?bgbvdkwfqbvwklq!#`vowvqboebnjojfp,jnbdfp,bppfnaozsltfqevowfb`kjmdejmjpkfggjpwqj`w`qjwj`bo`dj.ajm,svqslpfpqfrvjqfpfof`wjlmaf`lnjmdsqlujgfpb`bgfnj`f{fq`jpfb`wvbooznfgj`jmf`lmpwbmwb``jgfmwNbdbyjmfgl`vnfmwpwbqwjmdalwwln!=lapfqufg9#%rvlw8f{wfmgfgsqfujlvpPlewtbqf`vpwlnfqgf`jpjlmpwqfmdwkgfwbjofgpojdkwozsobmmjmdwf{wbqfb`vqqfm`zfufqzlmfpwqbjdkwwqbmpefqslpjwjufsqlgv`fgkfqjwbdfpkjssjmdbaplovwfqf`fjufgqfofubmwavwwlm!#ujlofm`fbmztkfqfafmfejwpobvm`kfgqf`fmwozboojbm`felooltfgnvowjsofavoofwjmjm`ovgfgl``vqqfgjmwfqmbo\'+wkjp*-qfsvaoj`=?wq=?wg`lmdqfppqf`lqgfgvowjnbwfplovwjlm?vo#jg>!gjp`lufqKlnf?,b=tfapjwfpmfwtlqhpbowklvdkfmwjqfoznfnlqjbonfppbdfp`lmwjmvfb`wjuf!=plnftkbwuj`wlqjbTfpwfqm##wjwof>!Ol`bwjlm`lmwqb`wujpjwlqpGltmolbgtjwklvw#qjdkw!= nfbpvqfptjgwk#>#ubqjbaofjmuloufgujqdjmjbmlqnboozkbssfmfgb``lvmwppwbmgjmdmbwjlmboQfdjpwfqsqfsbqfg`lmwqlopb``vqbwfajqwkgbzpwqbwfdzleej`jbodqbskj`p`qjnjmboslppjaoz`lmpvnfqSfqplmbopsfbhjmdubojgbwfb`kjfufg-isd!#,=nb`kjmfp?,k1= ##hfztlqgpeqjfmgozaqlwkfqp`lnajmfglqjdjmbo`lnslpfgf{sf`wfgbgfrvbwfsbhjpwbmeloolt!#ubovbaof?,obafo=qfobwjufaqjmdjmdjm`qfbpfdlufqmlqsovdjmp,Ojpw#le#Kfbgfq!=!#mbnf>!#+%rvlw8dqbgvbwf?,kfbg= `lnnfq`fnbobzpjbgjqf`wlqnbjmwbjm8kfjdkw9p`kfgvof`kbmdjmdab`h#wl#`bwkloj`sbwwfqmp`lolq9# dqfbwfpwpvssojfpqfojbaof?,vo= \n\n?pfof`w#`jwjyfmp`olwkjmdtbw`kjmd?oj#jg>!psf`jej``bqqzjmdpfmwfm`f?`fmwfq=`lmwqbpwwkjmhjmd`bw`k+f*plvwkfqmNj`kbfo#nfq`kbmw`bqlvpfosbggjmd9jmwfqjlq-psojw+!ojybwjlmL`wlafq#*xqfwvqmjnsqlufg..%dw8 `lufqbdf`kbjqnbm-smd!#,=pvaif`wpQj`kbqg#tkbwfufqsqlabaozqf`lufqzabpfabooivgdnfmw`lmmf`w--`pp!#,=#tfapjwfqfslqwfggfebvow!,=?,b= fof`wqj`p`lwobmg`qfbwjlmrvbmwjwz-#JPAM#3gjg#mlw#jmpwbm`f.pfbq`k.!#obmd>!psfbhfqp@lnsvwfq`lmwbjmpbq`kjufpnjmjpwfqqfb`wjlmgjp`lvmwJwbojbml`qjwfqjbpwqlmdoz9#$kwws9$p`qjsw$`lufqjmdleefqjmdbssfbqfgAqjwjpk#jgfmwjezEb`fallhmvnfqlvpufkj`ofp`lm`fqmpBnfqj`bmkbmgojmdgju#jg>!Tjoojbn#sqlujgfq\\`lmwfmwb``vqb`zpf`wjlm#bmgfqplmeof{jaof@bwfdlqzobtqfm`f?p`qjsw=obzlvw>!bssqlufg#nb{jnvnkfbgfq!=?,wbaof=Pfquj`fpkbnjowlm`vqqfmw#`bmbgjbm`kbmmfop,wkfnfp,,bqwj`oflswjlmboslqwvdboubovf>!!jmwfqubotjqfofppfmwjwofgbdfm`jfpPfbq`k!#nfbpvqfgwklvpbmgpsfmgjmd%kfoojs8mft#Gbwf!#pjyf>!sbdfMbnfnjggof!#!#,=?,b=kjggfm!=pfrvfm`fsfqplmbolufqeoltlsjmjlmpjoojmljpojmhp!= \n?wjwof=ufqpjlmppbwvqgbzwfqnjmbojwfnsqlsfmdjmffqpf`wjlmpgfpjdmfqsqlslpbo>!ebopf!Fpsb/]loqfofbpfppvanjw!#fq%rvlw8bggjwjlmpznswlnplqjfmwfgqfplvq`fqjdkw!=?sofbpvqfpwbwjlmpkjpwlqz-ofbujmd##alqgfq>`lmwfmwp`fmwfq!=- Plnf#gjqf`wfgpvjwbaofavodbqjb-pklt+*8gfpjdmfgDfmfqbo#`lm`fswpF{bnsofptjoojbnpLqjdjmbo!=?psbm=pfbq`k!=lsfqbwlqqfrvfpwpb#%rvlw8booltjmdGl`vnfmwqfujpjlm-# Wkf#zlvqpfoe@lmwb`w#nj`kjdbmFmdojpk#`lovnajbsqjlqjwzsqjmwjmdgqjmhjmdeb`jojwzqfwvqmfg@lmwfmw#leej`fqpQvppjbm#dfmfqbwf.;;6:.2!jmgj`bwfebnjojbq#rvbojwznbqdjm93#`lmwfmwujftslqw`lmwb`wp.wjwof!=slqwbaof-ofmdwk#fojdjaofjmuloufpbwobmwj`lmolbg>!gfebvow-pvssojfgsbznfmwpdolppbqz Bewfq#dvjgbm`f?,wg=?wgfm`lgjmdnjggof!=`bnf#wl#gjpsobzpp`lwwjpkilmbwkbmnbilqjwztjgdfwp-`ojmj`bowkbjobmgwfb`kfqp?kfbg= \nbeef`wfgpvsslqwpsljmwfq8wlPwqjmd?,pnboo=lhobklnbtjoo#af#jmufpwlq3!#bow>!klojgbzpQfplvq`foj`fmpfg#+tkj`k#-#Bewfq#`lmpjgfqujpjwjmdf{solqfqsqjnbqz#pfbq`k!#bmgqljg!rvj`hoz#nffwjmdpfpwjnbwf8qfwvqm#8`lolq9 #kfjdkw>bssqlubo/#%rvlw8#`kf`hfg-njm-ip!nbdmfwj`=?,b=?,kelqf`bpw-#Tkjof#wkvqpgbzgufqwjpf%fb`vwf8kbp@obppfubovbwflqgfqjmdf{jpwjmdsbwjfmwp#Lmojmf#`lolqbglLswjlmp!`bnsafoo?"..#fmg?,psbm=??aq#,= \\slsvsp\x7Fp`jfm`fp/%rvlw8#rvbojwz#Tjmgltp#bppjdmfgkfjdkw9#?a#`obppof%rvlw8#ubovf>!#@lnsbmzf{bnsofp?jeqbnf#afojfufpsqfpfmwpnbqpkboosbqw#le#sqlsfqoz*- Wkf#wb{lmlnznv`k#le#?,psbm= !#gbwb.pqwvdv/Fpp`qlooWl#sqlif`w?kfbg= bwwlqmfzfnskbpjppslmplqpebm`zal{tlqog$p#tjogojef`kf`hfg>pfppjlmpsqldqbnns{8elmw.#Sqlif`wilvqmbopafojfufgub`bwjlmwklnsplmojdkwjmdbmg#wkf#psf`jbo#alqgfq>3`kf`hjmd?,walgz=?avwwlm#@lnsofwf`ofbqej{ ?kfbg= bqwj`of#?pf`wjlmejmgjmdpqlof#jm#slsvobq##L`wlafqtfapjwf#f{slpvqfvpfg#wl##`kbmdfplsfqbwfg`oj`hjmdfmwfqjmd`lnnbmgpjmelqnfg#mvnafqp##?,gju=`qfbwjmdlmPvanjwnbqzobmg`loofdfpbmbozwj`ojpwjmdp`lmwb`w-olddfgJmbgujplqzpjaojmdp`lmwfmw!p%rvlw8*p-#Wkjp#sb`hbdfp`kf`hal{pvddfpwpsqfdmbmwwlnlqqltpsb`jmd>j`lm-smdibsbmfpf`lgfabpfavwwlm!=dbnaojmdpv`k#bp#/#tkjof#?,psbm=#njpplvqjpslqwjmdwls92s{#-?,psbm=wfmpjlmptjgwk>!1obyzolbgmlufnafqvpfg#jm#kfjdkw>!`qjsw!= %maps8?,?wq=?wg#kfjdkw91,sqlgv`w`lvmwqz#jm`ovgf#ellwfq!#%ow8"..#wjwof!=?,irvfqz-?,elqn= +\vBl\bQ\x7F*+\vUmGx*kqubwphjjwbojbmlqln/Nm(ow/Pqh/Kf4K4]4C5dwbnaj/Emmlwj`jbpnfmpbifpsfqplmbpgfqf`klpmb`jlmbopfquj`jl`lmwb`wlvpvbqjlpsqldqbnbdlajfqmlfnsqfpbpbmvm`jlpubofm`jb`lolnajbgfpsv/Epgfslqwfpsqlzf`wlsqlgv`wls/Vaoj`lmlplwqlpkjpwlqjbsqfpfmwfnjoolmfpnfgjbmwfsqfdvmwbbmwfqjlqqf`vqplpsqlaofnbpbmwjbdlmvfpwqlplsjmj/_mjnsqjnjqnjfmwqbpbn/Eqj`bufmgfglqpl`jfgbgqfpsf`wlqfbojybqqfdjpwqlsbobaqbpjmwfq/Epfmwlm`fpfpsf`jbonjfnaqlpqfbojgbg`/_qglabybqbdlybs/Mdjmbppl`jbofpaolrvfbqdfpwj/_mborvjofqpjpwfnbp`jfm`jbp`lnsofwlufqpj/_m`lnsofwbfpwvgjlps/Vaoj`blaifwjulboj`bmwfavp`bglq`bmwjgbgfmwqbgbpb``jlmfpbq`kjulppvsfqjlqnbzlq/Abbofnbmjbevm`j/_m/Vowjnlpkb`jfmglbrvfoolpfgj`j/_mefqmbmglbnajfmwfeb`fallhmvfpwqbp`ojfmwfpsql`fplpabpwbmwfsqfpfmwbqfslqwbq`lmdqfplsvaoj`bq`lnfq`jl`lmwqbwli/_ufmfpgjpwqjwlw/E`mj`b`lmivmwlfmfqd/Abwqbabibqbpwvqjbpqf`jfmwfvwjojybqalofw/Ampboubglq`lqqf`wbwqbabilpsqjnfqlpmfdl`jlpojafqwbggfwboofpsbmwboobsq/_{jnlbonfq/Abbmjnbofprvj/Emfp`lqby/_mpf``j/_mavp`bmglls`jlmfpf{wfqjlq`lm`fswlwlgbu/Abdbofq/Abfp`qjajqnfgj`jmboj`fm`jb`lmpvowbbpsf`wlp`q/Awj`bg/_obqfpivpwj`jbgfafq/Mmsfq/Alglmf`fpjwbnbmwfmfqsfrvf/]lqf`jajgbwqjavmbowfmfqjef`bm`j/_m`bmbqjbpgfp`bqdbgjufqplpnboolq`bqfrvjfqfw/E`mj`lgfafq/Abujujfmgbejmbmybpbgfobmwfevm`jlmb`lmpfilpgje/A`jo`jvgbgfpbmwjdvbpbubmybgbw/Eqnjmlvmjgbgfpp/Mm`kfy`bnsb/]bplewlmj`qfujpwbp`lmwjfmfpf`wlqfpnlnfmwlpeb`vowbg`q/Egjwlgjufqpbppvsvfpwleb`wlqfppfdvmglpsfrvf/]b<_<R<X<\\<Y=m<W<T<Y=m=n=`<]=g<W<R<]=g=n=`=a=n<R<P<y=m<W<T=n<R<_<R<P<Y<Q=c<^=m<Y=i=a=n<R<U<X<\\<Z<Y<]=g<W<T<_<R<X=o<X<Y<Q=`=a=n<R=n<]=g<W<\\=m<Y<]=c<R<X<T<Q=m<Y<]<Y<Q<\\<X<R=m<\\<U=n=h<R=n<R<Q<Y<_<R=m<^<R<T=m<^<R<U<T<_=l=g=n<R<Z<Y<^=m<Y<P=m<^<R=b<W<T=d=`=a=n<T=i<S<R<V<\\<X<Q<Y<U<X<R<P<\\<P<T=l<\\<W<T<]<R=n<Y<P=o=i<R=n=c<X<^=o=i=m<Y=n<T<W=b<X<T<X<Y<W<R<P<T=l<Y=n<Y<]=c=m<^<R<Y<^<T<X<Y=k<Y<_<R=a=n<T<P=m=k<Y=n=n<Y<P=g=j<Y<Q=g=m=n<\\<W<^<Y<X=`=n<Y<P<Y<^<R<X=g=n<Y<]<Y<^=g=d<Y<Q<\\<P<T=n<T<S<\\=n<R<P=o<S=l<\\<^<W<T=j<\\<R<X<Q<\\<_<R<X=g<[<Q<\\=b<P<R<_=o<X=l=o<_<^=m<Y<U<T<X<Y=n<V<T<Q<R<R<X<Q<R<X<Y<W<\\<X<Y<W<Y=m=l<R<V<T=b<Q=c<^<Y=m=`<y=m=n=`=l<\\<[<\\<Q<\\=d<T4K5h5h5k4K5h4F5f4@5i5f4U4B4K4Y4E4K5h4\\5f4U5h5f5k4@4C5f4C4K5h4N5j4K5h4]4C4F4A5o5i4Y5m4A4E5o4K5j4F4K5h5h5f5f5o5d5j4X4D5o4E5m5f5k4K4D5j4K4F4A5d4K4M4O5o4G4]4B5h4K5h4K5h4A4D4C5h5f5h4C4]5d4_4K4Z4V4[4F5o5d5j5k5j4K5o4_4K4A4E5j4K4C5f4K5h4[4D4U5h5f5o4X5o4]4K5f5i5o5j5i5j5k4K4X4]5o4E4]4J5f4_5j4X5f4[5i4K4\\4K4K5h5m5j4X4D4K4D4F4U4D4]4]4A5i4E5o4K5m4E5f5n5d5h5i4]5o4^5o5h5i4E4O4A5i4C5n5h4D5f5f4U5j5f4Y5d4]4E4[4]5f5n4X4K4]5o4@5d4K5h4O4B4]5e5i4U5j4K4K4D4A4G4U4]5d4Z4D4X5o5h5i4_4@5h4D5j4K5j4B4K5h4C5o4F4K4D5o5h5f4E4D4C5d5j4O5f4Z4K5f5d4@4C5m4]5f5n5o4F4D4F4O5m4Z5h5i4[4D4B4K5o4G4]4D4K4]5o4K5m4Z5h4K4A5h5e5j5m4_5k4O5f4K5i4]4C5d4C4O5j5k4K4C5f5j4K4K5h4K5j5i4U4]4Z4F4U5h5i4C4K4B5h5i5i5o5j\x07\x07\x07\x07\0\x07\x07\0\v\n \b\r\f\f\r\b \n\v\0\v\v\v\v\0\x07qfplvq`fp`lvmwqjfprvfpwjlmpfrvjsnfmw`lnnvmjwzbubjobaofkjdkojdkwGWG,{kwnonbqhfwjmdhmltofgdfplnfwkjmd`lmwbjmfqgjqf`wjlmpvap`qjafbgufqwjpf`kbqb`wfq!#ubovf>!?,pfof`w=Bvpwqbojb!#`obpp>!pjwvbwjlmbvwklqjwzelooltjmdsqjnbqjozlsfqbwjlm`kboofmdfgfufolsfgbmlmznlvpevm`wjlm#evm`wjlmp`lnsbmjfppwqv`wvqfbdqffnfmw!#wjwof>!slwfmwjbofgv`bwjlmbqdvnfmwppf`lmgbqz`lszqjdkwobmdvbdfpf{`ovpjuf`lmgjwjlm?,elqn= pwbwfnfmwbwwfmwjlmAjldqbskz~#fopf#x plovwjlmptkfm#wkf#Bmbozwj`pwfnsobwfpgbmdfqlvppbwfoojwfgl`vnfmwpsvaojpkfqjnslqwbmwsqlwlwzsfjmeovfm`f%qbrvl8?,feef`wjufdfmfqboozwqbmpelqnafbvwjevowqbmpslqwlqdbmjyfgsvaojpkfgsqlnjmfmwvmwjo#wkfwkvnambjoMbwjlmbo#-el`vp+*8lufq#wkf#njdqbwjlmbmmlvm`fgellwfq!= f{`fswjlmofpp#wkbmf{sfmpjufelqnbwjlmeqbnftlqhwfqqjwlqzmgj`bwjlm`vqqfmwoz`obppMbnf`qjwj`jpnwqbgjwjlmfopftkfqfBof{bmgfqbssljmwfgnbwfqjbopaqlbg`bpwnfmwjlmfgbeejojbwf?,lswjlm=wqfbwnfmwgjeefqfmw,gfebvow-Sqfpjgfmwlm`oj`h>!ajldqbskzlwkfqtjpfsfqnbmfmwEqbm/KbjpKlooztllgf{sbmpjlmpwbmgbqgp?,pwzof= qfgv`wjlmGf`fnafq#sqfefqqfg@bnaqjgdflsslmfmwpAvpjmfpp#`lmevpjlm= ?wjwof=sqfpfmwfgf{sobjmfgglfp#mlw#tlqogtjgfjmwfqeb`fslpjwjlmpmftpsbsfq?,wbaof= nlvmwbjmpojhf#wkf#fppfmwjboejmbm`jbopfof`wjlmb`wjlm>!,babmglmfgFgv`bwjlmsbqpfJmw+pwbajojwzvmbaof#wl?,wjwof= qfobwjlmpMlwf#wkbwfeej`jfmwsfqelqnfgwtl#zfbqpPjm`f#wkfwkfqfelqftqbssfq!=bowfqmbwfjm`qfbpfgAbwwof#lesfq`fjufgwqzjmd#wlmf`fppbqzslqwqbzfgfof`wjlmpFojybafwk?,jeqbnf=gjp`lufqzjmpvqbm`fp-ofmdwk8ofdfmgbqzDfldqbskz`bmgjgbwf`lqslqbwfplnfwjnfppfquj`fp-jmkfqjwfg?,pwqlmd=@lnnvmjwzqfojdjlvpol`bwjlmp@lnnjwwffavjogjmdpwkf#tlqogml#olmdfqafdjmmjmdqfefqfm`f`bmmlw#afeqfrvfm`zwzsj`boozjmwl#wkf#qfobwjuf8qf`lqgjmdsqfpjgfmwjmjwjboozwf`kmjrvfwkf#lwkfqjw#`bm#aff{jpwfm`fvmgfqojmfwkjp#wjnfwfofsklmfjwfnp`lsfsqb`wj`fpbgubmwbdf*8qfwvqm#Elq#lwkfqsqlujgjmdgfnl`qb`zalwk#wkf#f{wfmpjufpveefqjmdpvsslqwfg`lnsvwfqp#evm`wjlmsqb`wj`bopbjg#wkbwjw#nbz#afFmdojpk?,eqln#wkf#p`kfgvofggltmolbgp?,obafo= pvpsf`wfgnbqdjm9#3psjqjwvbo?,kfbg= nj`qlplewdqbgvboozgjp`vppfgkf#af`bnff{f`vwjufirvfqz-ipklvpfklog`lmejqnfgsvq`kbpfgojwfqboozgfpwqlzfgvs#wl#wkfubqjbwjlmqfnbjmjmdjw#jp#mlw`fmwvqjfpIbsbmfpf#bnlmd#wkf`lnsofwfgbodlqjwknjmwfqfpwpqfafoojlmvmgfejmfgfm`lvqbdfqfpjybaofjmuloujmdpfmpjwjufvmjufqpbosqlujpjlm+bowklvdkefbwvqjmd`lmgv`wfg*/#tkj`k#`lmwjmvfg.kfbgfq!=Efaqvbqz#mvnfqlvp#lufqeolt9`lnslmfmweqbdnfmwpf{`foofmw`lopsbm>!wf`kmj`bomfbq#wkf#Bgubm`fg#plvq`f#lef{sqfppfgKlmd#Hlmd#Eb`fallhnvowjsof#nf`kbmjpnfofubwjlmleefmpjuf?,elqn= \npslmplqfggl`vnfmw-lq#%rvlw8wkfqf#bqfwklpf#tklnlufnfmwpsql`fppfpgjeej`vowpvanjwwfgqf`lnnfmg`lmujm`fgsqlnlwjmd!#tjgwk>!-qfsob`f+`obppj`bo`lbojwjlmkjp#ejqpwgf`jpjlmpbppjpwbmwjmgj`bwfgfulovwjlm.tqbssfq!fmlvdk#wlbolmd#wkfgfojufqfg..= ?"..Bnfqj`bm#sqlwf`wfgMlufnafq#?,pwzof=?evqmjwvqfJmwfqmfw##lmaovq>!pvpsfmgfgqf`jsjfmwabpfg#lm#Nlqflufq/balojpkfg`loof`wfgtfqf#nbgffnlwjlmbofnfqdfm`zmbqqbwjufbgul`bwfps{8alqgfq`lnnjwwfggjq>!owq!fnsolzffpqfpfbq`k-#pfof`wfgpv``fpplq`vpwlnfqpgjpsobzfgPfswfnafqbgg@obpp+Eb`fallh#pvddfpwfgbmg#obwfqlsfqbwjmdfobalqbwfPlnfwjnfpJmpwjwvwf`fqwbjmozjmpwboofgelooltfqpIfqvpbofnwkfz#kbuf`lnsvwjmddfmfqbwfgsqlujm`fpdvbqbmwffbqajwqbqzqf`ldmjyftbmwfg#wls{8tjgwk9wkflqz#leafkbujlvqTkjof#wkffpwjnbwfgafdbm#wl#jw#af`bnfnbdmjwvgfnvpw#kbufnlqf#wkbmGjqf`wlqzf{wfmpjlmpf`qfwbqzmbwvqboozl``vqqjmdubqjbaofpdjufm#wkfsobwelqn-?,obafo=?ebjofg#wl`lnslvmgphjmgp#le#pl`jfwjfpbolmdpjgf#..%dw8 plvwktfpwwkf#qjdkwqbgjbwjlmnbz#kbuf#vmfp`bsf+pslhfm#jm!#kqfe>!,sqldqbnnflmoz#wkf#`lnf#eqlngjqf`wlqzavqjfg#jmb#pjnjobqwkfz#tfqf?,elmw=?,Mlqtfdjbmpsf`jejfgsqlgv`jmdsbppfmdfq+mft#Gbwfwfnslqbqzej`wjlmboBewfq#wkffrvbwjlmpgltmolbg-qfdvobqozgfufolsfqbaluf#wkfojmhfg#wlskfmlnfmbsfqjlg#lewllowjs!=pvapwbm`fbvwlnbwj`bpsf`w#leBnlmd#wkf`lmmf`wfgfpwjnbwfpBjq#Elq`fpzpwfn#lelaif`wjufjnnfgjbwfnbhjmd#jwsbjmwjmdp`lmrvfqfgbqf#pwjoosql`fgvqfdqltwk#lekfbgfg#azFvqlsfbm#gjujpjlmpnlof`vofpeqbm`kjpfjmwfmwjlmbwwqb`wfg`kjogkllgbopl#vpfggfgj`bwfgpjmdbslqfgfdqff#leebwkfq#le`lmeoj`wp?,b=?,s= `bnf#eqlntfqf#vpfgmlwf#wkbwqf`fjujmdF{f`vwjuffufm#nlqfb``fpp#wl`lnnbmgfqSlojwj`bonvpj`jbmpgfoj`jlvpsqjplmfqpbgufmw#leVWE.;!#,=?"X@GBWBX!=@lmwb`wPlvwkfqm#ad`lolq>!pfqjfp#le-#Jw#tbp#jm#Fvqlsfsfqnjwwfgubojgbwf-bssfbqjmdleej`jboppfqjlvpoz.obmdvbdfjmjwjbwfgf{wfmgjmdolmd.wfqnjmeobwjlmpv`k#wkbwdfw@llhjfnbqhfg#az?,avwwlm=jnsofnfmwavw#jw#jpjm`qfbpfpgltm#wkf#qfrvjqjmdgfsfmgfmw..= ?"..#jmwfqujftTjwk#wkf#`lsjfp#le`lmpfmpvptbp#avjowUfmfyvfob+elqnfqozwkf#pwbwfsfqplmmfopwqbwfdj`ebulvq#lejmufmwjlmTjhjsfgjb`lmwjmfmwujqwvbooztkj`k#tbpsqjm`jsof@lnsofwf#jgfmwj`bopklt#wkbwsqjnjwjufbtbz#eqlnnlof`vobqsqf`jpfozgjpploufgVmgfq#wkfufqpjlm>!=%maps8?,Jw#jp#wkf#Wkjp#jp#tjoo#kbuflqdbmjpnpplnf#wjnfEqjfgqj`ktbp#ejqpwwkf#lmoz#eb`w#wkbwelqn#jg>!sqf`fgjmdWf`kmj`boskzpj`jpwl``vqp#jmmbujdbwlqpf`wjlm!=psbm#jg>!plvdkw#wlafolt#wkfpvqujujmd~?,pwzof=kjp#gfbwkbp#jm#wkf`bvpfg#azsbqwjboozf{jpwjmd#vpjmd#wkftbp#djufmb#ojpw#leofufop#lemlwjlm#leLeej`jbo#gjpnjppfgp`jfmwjpwqfpfnaofpgvsoj`bwff{solpjufqf`lufqfgboo#lwkfqdboofqjfpxsbggjmd9sflsof#leqfdjlm#lebggqfppfpbppl`jbwfjnd#bow>!jm#nlgfqmpklvog#afnfwklg#leqfslqwjmdwjnfpwbnsmffgfg#wlwkf#Dqfbwqfdbqgjmdpffnfg#wlujftfg#bpjnsb`w#lmjgfb#wkbwwkf#Tlqogkfjdkw#lef{sbmgjmdWkfpf#bqf`vqqfmw!=`bqfevooznbjmwbjmp`kbqdf#le@obppj`bobggqfppfgsqfgj`wfgltmfqpkjs?gju#jg>!qjdkw!= qfpjgfm`fofbuf#wkf`lmwfmw!=bqf#lewfm##~*+*8 sqlabaoz#Sqlefpplq.avwwlm!#qfpslmgfgpbzp#wkbwkbg#wl#afsob`fg#jmKvmdbqjbmpwbwvp#lepfqufp#bpVmjufqpbof{f`vwjlmbddqfdbwfelq#tkj`kjmef`wjlmbdqffg#wlkltfufq/#slsvobq!=sob`fg#lm`lmpwqv`wfof`wlqbopznalo#lejm`ovgjmdqfwvqm#wlbq`kjwf`w@kqjpwjbmsqfujlvp#ojujmd#jmfbpjfq#wlsqlefpplq %ow8"..#feef`w#lebmbozwj`ptbp#wbhfmtkfqf#wkfwllh#lufqafojfe#jmBeqjhbbmpbp#ebq#bpsqfufmwfgtlqh#tjwkb#psf`jbo?ejfogpfw@kqjpwnbpQfwqjfufg Jm#wkf#ab`h#jmwlmlqwkfbpwnbdbyjmfp=?pwqlmd=`lnnjwwffdlufqmjmddqlvsp#lepwlqfg#jmfpwbaojpkb#dfmfqbojwp#ejqpwwkfjq#ltmslsvobwfgbm#laif`w@bqjaafbmboolt#wkfgjpwqj`wptjp`lmpjmol`bwjlm-8#tjgwk9#jmkbajwfgPl`jbojpwIbmvbqz#2?,ellwfq=pjnjobqoz`klj`f#lewkf#pbnf#psf`jej`#avpjmfpp#Wkf#ejqpw-ofmdwk8#gfpjqf#wlgfbo#tjwkpjm`f#wkfvpfqBdfmw`lm`fjufgjmgf{-sksbp#%rvlw8fmdbdf#jmqf`fmwoz/eft#zfbqptfqf#bopl ?kfbg= ?fgjwfg#azbqf#hmltm`jwjfp#jmb``fpphfz`lmgfnmfgbopl#kbufpfquj`fp/ebnjoz#leP`kllo#le`lmufqwfgmbwvqf#le#obmdvbdfnjmjpwfqp?,laif`w=wkfqf#jp#b#slsvobqpfrvfm`fpbgul`bwfgWkfz#tfqfbmz#lwkfqol`bwjlm>fmwfq#wkfnv`k#nlqfqfeof`wfgtbp#mbnfglqjdjmbo#b#wzsj`botkfm#wkfzfmdjmffqp`lvog#mlwqfpjgfmwptfgmfpgbzwkf#wkjqg#sqlgv`wpIbmvbqz#1tkbw#wkfzb#`fqwbjmqfb`wjlmpsql`fpplqbewfq#kjpwkf#obpw#`lmwbjmfg!=?,gju= ?,b=?,wg=gfsfmg#lmpfbq`k!= sjf`fp#le`lnsfwjmdQfefqfm`fwfmmfppfftkj`k#kbp#ufqpjlm>?,psbm=#??,kfbgfq=djufp#wkfkjpwlqjbmubovf>!!=sbggjmd93ujft#wkbwwldfwkfq/wkf#nlpw#tbp#elvmgpvapfw#lebwwb`h#lm`kjogqfm/sljmwp#lesfqplmbo#slpjwjlm9boofdfgoz@ofufobmgtbp#obwfqbmg#bewfqbqf#djufmtbp#pwjoop`qloojmdgfpjdm#lenbhfp#wkfnv`k#ofppBnfqj`bmp- Bewfq#/#avw#wkfNvpfvn#leolvjpjbmb+eqln#wkfnjmmfplwbsbqwj`ofpb#sql`fppGlnjmj`bmulovnf#leqfwvqmjmdgfefmpjuf33s{\x7Fqjdknbgf#eqlnnlvpflufq!#pwzof>!pwbwfp#le+tkj`k#jp`lmwjmvfpEqbm`jp`lavjogjmd#tjwklvw#btjwk#plnftkl#tlvogb#elqn#leb#sbqw#leafelqf#jwhmltm#bp##Pfquj`fpol`bwjlm#bmg#lewfmnfbpvqjmdbmg#jw#jpsbsfqab`hubovfp#le ?wjwof=>#tjmglt-gfwfqnjmffq%rvlw8#sobzfg#azbmg#fbqoz?,`fmwfq=eqln#wkjpwkf#wkqffsltfq#bmgle#%rvlw8jmmfqKWNO?b#kqfe>!z9jmojmf8@kvq`k#lewkf#fufmwufqz#kjdkleej`jbo#.kfjdkw9#`lmwfmw>!,`dj.ajm,wl#`qfbwfbeqjhbbmpfpsfqbmwleqbm/Kbjpobwujf)Mvojfwvuj)_(`f)Mwjmb(af)Mwjmb\fUh\fT{\fTN\n{I\np@Fr\vBl\bQ\x7F A{\vUmGx A{ypYA\0zX\bTV\bWl\bUdBM\vB{\npV\v@xB\\\np@DbGz al\npa fM uD\bV~mx\vQ}\ndS p\\\bVK\bS]\bU|oD kV\ved\vHR\nb~M`\nJpoD|Q\nLPSw\bTl\nAI\nxC\bWt BqF`Cm\vLm Kx }t\bPv\ny\\\naB V\x7F\nZdXUli fr i@ BHBDBV `V\n[] p_ Tn\n~A\nxR uD `{\bV@ Tn HK AJ\vxsZf\nqIZf\vBM\v|j }t\bSM\nmC\vQ}pfquj`jlpbqw/A`volbqdfmwjmbabq`folmb`vborvjfqsvaoj`bglsqlgv`wlpslo/Awj`bqfpsvfpwbtjhjsfgjbpjdvjfmwfa/Vprvfgb`lnvmjgbgpfdvqjgbgsqjm`jsbosqfdvmwbp`lmwfmjglqfpslmgfqufmfyvfobsqlaofnbpgj`jfnaqfqfob`j/_mmlujfnaqfpjnjobqfpsqlzf`wlpsqldqbnbpjmpwjwvwlb`wjujgbgfm`vfmwqbf`lmln/Abjn/Mdfmfp`lmwb`wbqgfp`bqdbqmf`fpbqjlbwfm`j/_mwfo/Eelml`lnjpj/_m`bm`jlmfp`bsb`jgbgfm`lmwqbqbm/Mojpjpebulqjwlpw/Eqnjmlpsqlujm`jbfwjrvfwbpfofnfmwlpevm`jlmfpqfpvowbgl`bq/M`wfqsqlsjfgbgsqjm`jsjlmf`fpjgbgnvmj`jsbo`qfb`j/_mgfp`bqdbpsqfpfm`jb`lnfq`jbolsjmjlmfpfifq`j`jlfgjwlqjbopbobnbm`bdlmy/Mofygl`vnfmwlsfo/A`vobqf`jfmwfpdfmfqbofpwbqqbdlmbsq/M`wj`bmlufgbgfpsqlsvfpwbsb`jfmwfpw/E`mj`bplaifwjulp`lmwb`wlp\fHB\fIk\fHn\fH^\fHS\fHc\fHU\fId\fHn\fH{\fHC\fHR\fHT\fHR\fHI\fHc\fHY\fHn\fH\\\fHU\fIk\fHy\fIg\fHd\fHy\fIm\fHw\fH\\\fHU\fHR\fH@\fHR\fHJ\fHy\fHU\fHR\fHT\fHA\fIl\fHU\fIm\fHc\fH\\\fHU\fIl\fHB\fId\fHn\fHJ\fHS\fHD\fH@\fHR\fHHgjsolgl`p\fHT\fHB\fHC\fH\\\fIn\fHF\fHD\fHR\fHB\fHF\fHH\fHR\fHG\fHS\fH\\\fHx\fHT\fHH\fHH\fH\\\fHU\fH^\fIg\fH{\fHU\fIm\fHj\fH@\fHR\fH\\\fHJ\fIk\fHZ\fHU\fIm\fHd\fHz\fIk\fH^\fHC\fHJ\fHS\fHy\fHR\fHB\fHY\fIk\fH@\fHH\fIl\fHD\fH@\fIl\fHv\fHB\fI`\fHH\fHT\fHR\fH^\fH^\fIk\fHz\fHp\fIe\fH@\fHB\fHJ\fHJ\fHH\fHI\fHR\fHD\fHU\fIl\fHZ\fHU\fH\\\fHi\fH^\fH{\fHy\fHA\fIl\fHD\fH{\fH\\\fHF\fHR\fHT\fH\\\fHR\fHH\fHy\fHS\fHc\fHe\fHT\fIk\fH{\fHC\fIl\fHU\fIn\fHm\fHj\fH{\fIk\fHs\fIl\fHB\fHz\fIg\fHp\fHy\fHR\fH\\\fHi\fHA\fIl\fH{\fHC\fIk\fHH\fIm\fHB\fHY\fIg\fHs\fHJ\fIk\fHn\fHi\fH{\fH\\\fH|\fHT\fIk\fHB\fIk\fH^\fH^\fH{\fHR\fHU\fHR\fH^\fHf\fHF\fH\\\fHv\fHR\fH\\\fH|\fHT\fHR\fHJ\fIk\fH\\\fHp\fHS\fHT\fHJ\fHS\fH^\fH@\fHn\fHJ\fH@\fHD\fHR\fHU\fIn\fHn\fH^\fHR\fHz\fHp\fIl\fHH\fH@\fHs\fHD\fHB\fHS\fH^\fHk\fHT\fIk\fHj\fHD\fIk\fHD\fHC\fHR\fHy\fIm\fH^\fH^\fIe\fH{\fHA\fHR\fH{\fH\\\fIk\fH^\fHp\fH{\fHU\fH\\\fHR\fHB\fH^\fH{\fIk\fHF\fIk\fHp\fHU\fHR\fHI\fHk\fHT\fIl\fHT\fHU\fIl\fHy\fH^\fHR\fHL\fIl\fHy\fHU\fHR\fHm\fHJ\fIn\fH\\\fHH\fHU\fHH\fHT\fHR\fHH\fHC\fHR\fHJ\fHj\fHC\fHR\fHF\fHR\fHy\fHy\fI`\fHD\fHZ\fHR\fHB\fHJ\fIk\fHz\fHC\fHU\fIl\fH\\\fHR\fHC\fHz\fIm\fHJ\fH^\fH{\fIl`bwfdlqjfpf{sfqjfm`f?,wjwof= @lszqjdkw#ibubp`qjsw`lmgjwjlmpfufqzwkjmd?s#`obpp>!wf`kmloldzab`hdqlvmg?b#`obpp>!nbmbdfnfmw%`lsz8#132ibubP`qjsw`kbqb`wfqpaqfbg`qvnawkfnpfoufpklqjylmwbodlufqmnfmw@bojelqmjbb`wjujwjfpgjp`lufqfgMbujdbwjlmwqbmpjwjlm`lmmf`wjlmmbujdbwjlmbssfbqbm`f?,wjwof=?n`kf`hal{!#wf`kmjrvfpsqlwf`wjlmbssbqfmwozbp#tfoo#bpvmw$/#$VB.qfplovwjlmlsfqbwjlmpwfofujpjlmwqbmpobwfgTbpkjmdwlmmbujdbwlq-#>#tjmglt-jnsqfppjlm%ow8aq%dw8ojwfqbwvqfslsvobwjlmad`lolq>! fpsf`jbooz#`lmwfmw>!sqlgv`wjlmmftpofwwfqsqlsfqwjfpgfejmjwjlmofbgfqpkjsWf`kmloldzSbqojbnfmw`lnsbqjplmvo#`obpp>!-jmgf{Le+!`lm`ovpjlmgjp`vppjlm`lnslmfmwpajloldj`boQfulovwjlm\\`lmwbjmfqvmgfqpwllgmlp`qjsw=?sfqnjppjlmfb`k#lwkfqbwnlpskfqf#lmel`vp>!?elqn#jg>!sql`fppjmdwkjp-ubovfdfmfqbwjlm@lmefqfm`fpvapfrvfmwtfoo.hmltmubqjbwjlmpqfsvwbwjlmskfmlnfmlmgjp`jsojmfoldl-smd!#+gl`vnfmw/alvmgbqjfpf{sqfppjlmpfwwofnfmwAb`hdqlvmglvw#le#wkffmwfqsqjpf+!kwwsp9!#vmfp`bsf+!sbpptlqg!#gfnl`qbwj`?b#kqfe>!,tqbssfq!= nfnafqpkjsojmdvjpwj`s{8sbggjmdskjolplskzbppjpwbm`fvmjufqpjwzeb`jojwjfpqf`ldmjyfgsqfefqfm`fje#+wzsflenbjmwbjmfgul`bavobqzkzslwkfpjp-pvanjw+*8%bns8maps8bmmlwbwjlmafkjmg#wkfElvmgbwjlmsvaojpkfq!bppvnswjlmjmwqlgv`fg`lqqvswjlmp`jfmwjpwpf{soj`jwozjmpwfbg#legjnfmpjlmp#lm@oj`h>!`lmpjgfqfggfsbqwnfmwl``vsbwjlmpllm#bewfqjmufpwnfmwsqlmlvm`fgjgfmwjejfgf{sfqjnfmwNbmbdfnfmwdfldqbskj`!#kfjdkw>!ojmh#qfo>!-qfsob`f+,gfsqfppjlm`lmefqfm`fsvmjpknfmwfojnjmbwfgqfpjpwbm`fbgbswbwjlmlsslpjwjlmtfoo#hmltmpvssofnfmwgfwfqnjmfgk2#`obpp>!3s{8nbqdjmnf`kbmj`bopwbwjpwj`p`fofaqbwfgDlufqmnfmw Gvqjmd#wgfufolsfqpbqwjej`jbofrvjubofmwlqjdjmbwfg@lnnjppjlmbwwb`knfmw?psbm#jg>!wkfqf#tfqfMfgfqobmgpafzlmg#wkfqfdjpwfqfgilvqmbojpweqfrvfmwozboo#le#wkfobmd>!fm!#?,pwzof= baplovwf8#pvsslqwjmdf{wqfnfoz#nbjmpwqfbn?,pwqlmd=#slsvobqjwzfnsolznfmw?,wbaof= #`lopsbm>!?,elqn= ##`lmufqpjlmbalvw#wkf#?,s=?,gju=jmwfdqbwfg!#obmd>!fmSlqwvdvfpfpvapwjwvwfjmgjujgvbojnslppjaofnvowjnfgjbbonlpw#boos{#plojg# bsbqw#eqlnpvaif`w#wljm#Fmdojpk`qjwj`jyfgf{`fsw#elqdvjgfojmfplqjdjmboozqfnbqhbaofwkf#pf`lmgk1#`obpp>!?b#wjwof>!+jm`ovgjmdsbqbnfwfqpsqlkjajwfg>#!kwws9,,gj`wjlmbqzsfq`fswjlmqfulovwjlmelvmgbwjlms{8kfjdkw9pv``fppevopvsslqwfqpnjoofmmjvnkjp#ebwkfqwkf#%rvlw8ml.qfsfbw8`lnnfq`jbojmgvpwqjbofm`lvqbdfgbnlvmw#le#vmleej`jbofeej`jfm`zQfefqfm`fp`llqgjmbwfgjp`objnfqf{sfgjwjlmgfufolsjmd`bo`vobwfgpjnsojejfgofdjwjnbwfpvapwqjmd+3!#`obpp>!`lnsofwfozjoovpwqbwfejuf#zfbqpjmpwqvnfmwSvaojpkjmd2!#`obpp>!spz`kloldz`lmejgfm`fmvnafq#le#bapfm`f#leel`vpfg#lmiljmfg#wkfpwqv`wvqfpsqfujlvpoz=?,jeqbnf=lm`f#bdbjmavw#qbwkfqjnnjdqbmwple#`lvqpf/b#dqlvs#leOjwfqbwvqfVmojhf#wkf?,b=%maps8 evm`wjlm#jw#tbp#wkf@lmufmwjlmbvwlnlajofSqlwfpwbmwbddqfppjufbewfq#wkf#Pjnjobqoz/!#,=?,gju=`loof`wjlm evm`wjlmujpjajojwzwkf#vpf#leulovmwffqpbwwqb`wjlmvmgfq#wkf#wkqfbwfmfg)?"X@GBWBXjnslqwbm`fjm#dfmfqbowkf#obwwfq?,elqn= ?,-jmgf{Le+$j#>#38#j#?gjeefqfm`fgfulwfg#wlwqbgjwjlmppfbq`k#elqvowjnbwfozwlvqmbnfmwbwwqjavwfppl.`boofg#~ ?,pwzof=fubovbwjlmfnskbpjyfgb``fppjaof?,pf`wjlm=pv``fppjlmbolmd#tjwkNfbmtkjof/jmgvpwqjfp?,b=?aq#,=kbp#af`lnfbpsf`wp#leWfofujpjlmpveej`jfmwabphfwabooalwk#pjgfp`lmwjmvjmdbm#bqwj`of?jnd#bow>!bgufmwvqfpkjp#nlwkfqnbm`kfpwfqsqjm`jsofpsbqwj`vobq`lnnfmwbqzfeef`wp#legf`jgfg#wl!=?pwqlmd=svaojpkfqpIlvqmbo#legjeej`vowzeb`jojwbwfb``fswbaofpwzof-`pp!\nevm`wjlm#jmmlubwjlm=@lszqjdkwpjwvbwjlmptlvog#kbufavpjmfppfpGj`wjlmbqzpwbwfnfmwplewfm#vpfgsfqpjpwfmwjm#Ibmvbqz`lnsqjpjmd?,wjwof= \ngjsolnbwj``lmwbjmjmdsfqelqnjmdf{wfmpjlmpnbz#mlw#af`lm`fsw#le#lm`oj`h>!Jw#jp#boplejmbm`jbo#nbhjmd#wkfOv{fnalvqdbggjwjlmbobqf#`boofgfmdbdfg#jm!p`qjsw!*8avw#jw#tbpfof`wqlmj`lmpvanjw>! ?"..#Fmg#fof`wqj`boleej`jboozpvddfpwjlmwls#le#wkfvmojhf#wkfBvpwqbojbmLqjdjmboozqfefqfm`fp ?,kfbg= qf`ldmjpfgjmjwjbojyfojnjwfg#wlBof{bmgqjbqfwjqfnfmwBgufmwvqfpelvq#zfbqp %ow8"..#jm`qfbpjmdgf`lqbwjlmk0#`obpp>!lqjdjmp#lelaojdbwjlmqfdvobwjlm`obppjejfg+evm`wjlm+bgubmwbdfpafjmd#wkf#kjpwlqjbmp?abpf#kqfeqfsfbwfgoztjoojmd#wl`lnsbqbaofgfpjdmbwfgmlnjmbwjlmevm`wjlmbojmpjgf#wkfqfufobwjlmfmg#le#wkfp#elq#wkf#bvwklqjyfgqfevpfg#wlwbhf#sob`fbvwlmlnlvp`lnsqlnjpfslojwj`bo#qfpwbvqbmwwtl#le#wkfEfaqvbqz#1rvbojwz#leptelaif`w-vmgfqpwbmgmfbqoz#bootqjwwfm#azjmwfqujftp!#tjgwk>!2tjwkgqbtboeolbw9ofewjp#vpvbooz`bmgjgbwfpmftpsbsfqpnzpwfqjlvpGfsbqwnfmwafpw#hmltmsbqojbnfmwpvssqfppfg`lmufmjfmwqfnfnafqfggjeefqfmw#pzpwfnbwj`kbp#ofg#wlsqlsbdbmgb`lmwqloofgjmeovfm`fp`fqfnlmjbosql`objnfgSqlwf`wjlmoj#`obpp>!P`jfmwjej``obpp>!ml.wqbgfnbqhpnlqf#wkbm#tjgfpsqfbgOjafqbwjlmwllh#sob`fgbz#le#wkfbp#olmd#bpjnsqjplmfgBggjwjlmbo ?kfbg= ?nObalqbwlqzMlufnafq#1f{`fswjlmpJmgvpwqjboubqjfwz#leeolbw9#ofeGvqjmd#wkfbppfppnfmwkbuf#affm#gfbop#tjwkPwbwjpwj`pl``vqqfm`f,vo=?,gju=`ofbqej{!=wkf#svaoj`nbmz#zfbqptkj`k#tfqflufq#wjnf/pzmlmznlvp`lmwfmw!= sqfpvnbaozkjp#ebnjozvpfqBdfmw-vmf{sf`wfgjm`ovgjmd#`kboofmdfgb#njmlqjwzvmgfejmfg!afolmdp#wlwbhfm#eqlnjm#L`wlafqslpjwjlm9#pbjg#wl#afqfojdjlvp#Efgfqbwjlm#qltpsbm>!lmoz#b#eftnfbmw#wkbwofg#wl#wkf..= ?gju#?ejfogpfw=Bq`kajpkls#`obpp>!mlafjmd#vpfgbssqlb`kfpsqjujofdfpmlp`qjsw= qfpvowp#jmnbz#af#wkfFbpwfq#fddnf`kbmjpnpqfbplmbaofSlsvobwjlm@loof`wjlmpfof`wfg!=mlp`qjsw=,jmgf{-sksbqqjubo#le.ippgh$**8nbmbdfg#wljm`lnsofwf`bpvbowjfp`lnsofwjlm@kqjpwjbmpPfswfnafq#bqjwknfwj`sql`fgvqfpnjdkw#kbufSqlgv`wjlmjw#bssfbqpSkjolplskzeqjfmgpkjsofbgjmd#wldjujmd#wkfwltbqg#wkfdvbqbmwffggl`vnfmwfg`lolq9 333ujgfl#dbnf`lnnjppjlmqfeof`wjmd`kbmdf#wkfbppl`jbwfgpbmp.pfqjelmhfzsqfpp8#sbggjmd9Kf#tbp#wkfvmgfqozjmdwzsj`booz#/#bmg#wkf#pq`Fofnfmwpv``fppjufpjm`f#wkf#pklvog#af#mfwtlqhjmdb``lvmwjmdvpf#le#wkfoltfq#wkbmpkltp#wkbw?,psbm= \n\n`lnsobjmwp`lmwjmvlvprvbmwjwjfpbpwqlmlnfqkf#gjg#mlwgvf#wl#jwpbssojfg#wlbm#bufqbdffeelqwp#wlwkf#evwvqfbwwfnsw#wlWkfqfelqf/`bsbajojwzQfsvaoj`bmtbp#elqnfgFof`wqlmj`hjolnfwfqp`kboofmdfpsvaojpkjmdwkf#elqnfqjmgjdfmlvpgjqf`wjlmppvapjgjbqz`lmpsjqb`zgfwbjop#lebmg#jm#wkfbeelqgbaofpvapwbm`fpqfbplm#elq`lmufmwjlmjwfnwzsf>!baplovwfozpvsslpfgozqfnbjmfg#bbwwqb`wjufwqbufoojmdpfsbqbwfozel`vpfp#lmfofnfmwbqzbssoj`baofelvmg#wkbwpwzofpkffwnbmvp`qjswpwbmgp#elq#ml.qfsfbw+plnfwjnfp@lnnfq`jbojm#Bnfqj`bvmgfqwbhfmrvbqwfq#lebm#f{bnsofsfqplmboozjmgf{-sks<?,avwwlm= sfq`fmwbdfafpw.hmltm`qfbwjmd#b!#gjq>!owqOjfvwfmbmw ?gju#jg>!wkfz#tlvogbajojwz#lenbgf#vs#lemlwfg#wkbw`ofbq#wkbwbqdvf#wkbwwl#bmlwkfq`kjogqfm$psvqslpf#leelqnvobwfgabpfg#vslmwkf#qfdjlmpvaif`w#lesbppfmdfqpslppfppjlm- Jm#wkf#Afelqf#wkfbewfqtbqgp`vqqfmwoz#b`qlpp#wkfp`jfmwjej``lnnvmjwz-`bsjwbojpnjm#Dfqnbmzqjdkw.tjmdwkf#pzpwfnPl`jfwz#leslojwj`jbmgjqf`wjlm9tfmw#lm#wlqfnlubo#le#Mft#Zlqh#bsbqwnfmwpjmgj`bwjlmgvqjmd#wkfvmofpp#wkfkjpwlqj`bokbg#affm#bgfejmjwjufjmdqfgjfmwbwwfmgbm`f@fmwfq#elqsqlnjmfm`fqfbgzPwbwfpwqbwfdjfpavw#jm#wkfbp#sbqw#le`lmpwjwvwf`objn#wkbwobalqbwlqz`lnsbwjaofebjovqf#le/#pv`k#bp#afdbm#tjwkvpjmd#wkf#wl#sqlujgfefbwvqf#leeqln#tkj`k,!#`obpp>!dfloldj`bopfufqbo#legfojafqbwfjnslqwbmw#klogp#wkbwjmd%rvlw8#ubojdm>wlswkf#Dfqnbmlvwpjgf#lemfdlwjbwfgkjp#`bqffqpfsbqbwjlmjg>!pfbq`ktbp#`boofgwkf#elvqwkqf`qfbwjlmlwkfq#wkbmsqfufmwjlmtkjof#wkf#fgv`bwjlm/`lmmf`wjmdb``vqbwfoztfqf#avjowtbp#hjoofgbdqffnfmwpnv`k#nlqf#Gvf#wl#wkftjgwk9#233plnf#lwkfqHjmdgln#lewkf#fmwjqfebnlvp#elqwl#`lmmf`wlaif`wjufpwkf#Eqfm`ksflsof#bmgefbwvqfg!=jp#pbjg#wlpwqv`wvqboqfefqfmgvnnlpw#lewfmb#pfsbqbwf.= ?gju#jg#Leej`jbo#tlqogtjgf-bqjb.obafowkf#sobmfwbmg#jw#tbpg!#ubovf>!ollhjmd#bwafmfej`jbobqf#jm#wkfnlmjwlqjmdqfslqwfgozwkf#nlgfqmtlqhjmd#lmbooltfg#wltkfqf#wkf#jmmlubwjuf?,b=?,gju=plvmgwqb`hpfbq`kElqnwfmg#wl#afjmsvw#jg>!lsfmjmd#leqfpwqj`wfgbglswfg#azbggqfppjmdwkfloldjbmnfwklgp#leubqjbmw#le@kqjpwjbm#ufqz#obqdfbvwlnlwjufaz#ebq#wkfqbmdf#eqlnsvqpvjw#leeloolt#wkfaqlvdkw#wljm#Fmdobmgbdqff#wkbwb``vpfg#le`lnfp#eqlnsqfufmwjmdgju#pwzof>kjp#lq#kfqwqfnfmglvpeqffgln#le`lm`fqmjmd3#2fn#2fn8Abphfwaboo,pwzof-`ppbm#fbqojfqfufm#bewfq,!#wjwof>!-`ln,jmgf{wbhjmd#wkfsjwwpavqdk`lmwfmw!=?p`qjsw=+ewvqmfg#lvwkbujmd#wkf?,psbm= #l``bpjlmboaf`bvpf#jwpwbqwfg#wlskzpj`booz=?,gju= ##`qfbwfg#az@vqqfmwoz/#ad`lolq>!wbajmgf{>!gjpbpwqlvpBmbozwj`p#bopl#kbp#b=?gju#jg>!?,pwzof= ?`boofg#elqpjmdfq#bmg-pq`#>#!,,ujlobwjlmpwkjp#sljmw`lmpwbmwozjp#ol`bwfgqf`lqgjmdpg#eqln#wkfmfgfqobmgpslqwvdv/Fp;N;};D;u;F5m4K4]4_7`gfpbqqlool`lnfmwbqjlfgv`b`j/_mpfswjfnaqfqfdjpwqbglgjqf``j/_mvaj`b`j/_msvaoj`jgbgqfpsvfpwbpqfpvowbglpjnslqwbmwfqfpfqubglpbqw/A`volpgjefqfmwfppjdvjfmwfpqfs/Vaoj`bpjwvb`j/_mnjmjpwfqjlsqjub`jgbggjqf`wlqjlelqnb`j/_mslaob`j/_msqfpjgfmwf`lmw','fmjglpb``fplqjlpwf`kmlqbwjsfqplmbofp`bwfdlq/Abfpsf`jbofpgjpslmjaofb`wvbojgbgqfefqfm`jbuboobglojgajaojlwf`bqfob`jlmfp`bofmgbqjlslo/Awj`bpbmwfqjlqfpgl`vnfmwlpmbwvqbofybnbwfqjbofpgjefqfm`jbf`lm/_nj`bwqbmpslqwfqlgq/Advfysbqwj`jsbqfm`vfmwqbmgjp`vpj/_mfpwqv`wvqbevmgb`j/_meqf`vfmwfpsfqnbmfmwfwlwbonfmwf<P<R<Z<Q<R<]=o<X<Y=n<P<R<Z<Y=n<^=l<Y<P=c=n<\\<V<Z<Y=k=n<R<]=g<]<R<W<Y<Y<R=k<Y<Q=`=a=n<R<_<R<V<R<_<X<\\<S<R=m<W<Y<^=m<Y<_<R=m<\\<U=n<Y=k<Y=l<Y<[<P<R<_=o=n=m<\\<U=n<\\<Z<T<[<Q<T<P<Y<Z<X=o<]=o<X=o=n<s<R<T=m<V<[<X<Y=m=`<^<T<X<Y<R=m<^=c<[<T<Q=o<Z<Q<R=m<^<R<Y<U<W=b<X<Y<U<S<R=l<Q<R<P<Q<R<_<R<X<Y=n<Y<U=m<^<R<T=i<S=l<\\<^<\\=n<\\<V<R<U<P<Y=m=n<R<T<P<Y<Y=n<Z<T<[<Q=`<R<X<Q<R<U<W=o=k=d<Y<S<Y=l<Y<X=k<\\=m=n<T=k<\\=m=n=`=l<\\<]<R=n<Q<R<^=g=i<S=l<\\<^<R=m<R<]<R<U<S<R=n<R<P<P<Y<Q<Y<Y=k<T=m<W<Y<Q<R<^=g<Y=o=m<W=o<_<R<V<R<W<R<Q<\\<[<\\<X=n<\\<V<R<Y=n<R<_<X<\\<S<R=k=n<T<s<R=m<W<Y=n<\\<V<T<Y<Q<R<^=g<U=m=n<R<T=n=n<\\<V<T=i=m=l<\\<[=o<M<\\<Q<V=n=h<R=l=o<P<v<R<_<X<\\<V<Q<T<_<T=m<W<R<^<\\<Q<\\=d<Y<U<Q<\\<U=n<T=m<^<R<T<P=m<^=c<[=`<W=b<]<R<U=k<\\=m=n<R=m=l<Y<X<T<v=l<R<P<Y<H<R=l=o<P=l=g<Q<V<Y=m=n<\\<W<T<S<R<T=m<V=n=g=m=c=k<P<Y=m=c=j=j<Y<Q=n=l=n=l=o<X<\\=m<\\<P=g=i=l=g<Q<V<\\<q<R<^=g<U=k<\\=m<R<^<P<Y=m=n<\\=h<T<W=`<P<P<\\=l=n<\\=m=n=l<\\<Q<P<Y=m=n<Y=n<Y<V=m=n<Q<\\=d<T=i<P<T<Q=o=n<T<P<Y<Q<T<T<P<Y=b=n<Q<R<P<Y=l<_<R=l<R<X=m<\\<P<R<P=a=n<R<P=o<V<R<Q=j<Y=m<^<R<Y<P<V<\\<V<R<U<|=l=i<T<^5i5j4F4C5e4I4]4_4K5h4]4_4K5h4E4K5h4U4K5i5o4F4D5k4K4D4]4K5i4@4K5h5f5d5i4K5h4Y5d4]4@4C5f4C4E4K5h4U4Z5d4I4Z4K5m4E4K5h5n4_5i4K5h4U4K4D4F4A5i5f5h5i5h5m4K4F5i5h4F5n5e4F4U4C5f5h4K5h4X4U4]4O4B4D4K4]4F4[5d5f4]4U5h5f5o5i4I4]5m4K5n4[5h4D4K4F4K5h5h4V4E4F4]4F5f4D4K5h5j4K4_4K5h4X5f4B5i5j4F4C5f4K5h4U4]4D4K5h5n4Y4Y4K5m5h4K5i4U5h5f5k4K4F4A4C5f4G4K5h5h5k5i4K5h4U5i5h5i5o4F4D4E5f5i5o5j5o4K5h4[5m5h5m5f4C5f5d4I4C4K4]4E4F4K4]5f4B4K5h4Y4A4E4F4_4@5f5h4K5h5d5n4F4U5j4C5i4K5i4C5f5j4E4F4Y5i5f5i4O4]4X5f5m4K5h4\\5f5j4U4]4D5f4E4D5d4K4D4E4O5h4U4K4D4K5h4_5m4]5i4X4K5o5h4F4U4K5h5e4K5h4O5d5h4K5h4_5j4E4@4K5i4U4E4K5h4Y4A5m4K5h4C5f5j5o5h5i4K4F4K5h4B4K4Y4K5h5i5h5m4O4U4Z4K4M5o4F4K4D4E4K5h4B5f4]4]4_4K4J5h4K5h5n5h4D4K5h4O4C4D5i5n4K4[4U5i4]4K4_5h5i5j4[5n4E4K5h5o4F4D4K5h4]4@5h4K4X4F4]5o4K5h5n4C5i5f4U4[5f5opAzWbdMbnf+-isd!#bow>!2s{#plojg# -dje!#bow>!wqbmpsbqfmwjmelqnbwjlmbssoj`bwjlm!#lm`oj`h>!fpwbaojpkfgbgufqwjpjmd-smd!#bow>!fmujqlmnfmwsfqelqnbm`fbssqlsqjbwf%bns8ngbpk8jnnfgjbwfoz?,pwqlmd=?,qbwkfq#wkbmwfnsfqbwvqfgfufolsnfmw`lnsfwjwjlmsob`fklogfqujpjajojwz9`lszqjdkw!=3!#kfjdkw>!fufm#wklvdkqfsob`fnfmwgfpwjmbwjlm@lqslqbwjlm?vo#`obpp>!Bppl`jbwjlmjmgjujgvbopsfqpsf`wjufpfwWjnflvw+vqo+kwws9,,nbwkfnbwj`pnbqdjm.wls9fufmwvbooz#gfp`qjswjlm*#ml.qfsfbw`loof`wjlmp-ISD\x7Fwkvna\x7Fsbqwj`jsbwf,kfbg=?algzeolbw9ofew8?oj#`obpp>!kvmgqfgp#le Kltfufq/#`lnslpjwjlm`ofbq9alwk8`llsfqbwjlmtjwkjm#wkf#obafo#elq>!alqgfq.wls9Mft#Yfbobmgqf`lnnfmgfgsklwldqbskzjmwfqfpwjmd%ow8pvs%dw8`lmwqlufqpzMfwkfqobmgpbowfqmbwjufnb{ofmdwk>!ptjwyfqobmgGfufolsnfmwfppfmwjbooz Bowklvdk#?,wf{wbqfb=wkvmgfqajqgqfsqfpfmwfg%bns8mgbpk8psf`vobwjlm`lnnvmjwjfpofdjpobwjlmfof`wqlmj`p \n?gju#jg>!joovpwqbwfgfmdjmffqjmdwfqqjwlqjfpbvwklqjwjfpgjpwqjavwfg5!#kfjdkw>!pbmp.pfqje8`bsbaof#le#gjpbssfbqfgjmwfqb`wjufollhjmd#elqjw#tlvog#afBedkbmjpwbmtbp#`qfbwfgNbwk-eollq+pvqqlvmgjmd`bm#bopl#aflapfqubwjlmnbjmwfmbm`ffm`lvmwfqfg?k1#`obpp>!nlqf#qf`fmwjw#kbp#affmjmubpjlm#le*-dfwWjnf+*evmgbnfmwboGfpsjwf#wkf!=?gju#jg>!jmpsjqbwjlmf{bnjmbwjlmsqfsbqbwjlmf{sobmbwjlm?jmsvw#jg>!?,b=?,psbm=ufqpjlmp#lejmpwqvnfmwpafelqf#wkf##>#$kwws9,,Gfp`qjswjlmqfobwjufoz#-pvapwqjmd+fb`k#le#wkff{sfqjnfmwpjmeovfmwjbojmwfdqbwjlmnbmz#sflsofgvf#wl#wkf#`lnajmbwjlmgl#mlw#kbufNjggof#Fbpw?mlp`qjsw=?`lszqjdkw!#sfqkbsp#wkfjmpwjwvwjlmjm#Gf`fnafqbqqbmdfnfmwnlpw#ebnlvpsfqplmbojwz`qfbwjlm#leojnjwbwjlmpf{`ovpjufozplufqfjdmwz.`lmwfmw!= ?wg#`obpp>!vmgfqdqlvmgsbqboofo#wlgl`wqjmf#lel``vsjfg#azwfqnjmloldzQfmbjppbm`fb#mvnafq#lepvsslqw#elqf{solqbwjlmqf`ldmjwjlmsqfgf`fpplq?jnd#pq`>!,?k2#`obpp>!svaoj`bwjlmnbz#bopl#afpsf`jbojyfg?,ejfogpfw=sqldqfppjufnjoojlmp#lepwbwfp#wkbwfmelq`fnfmwbqlvmg#wkf#lmf#bmlwkfq-sbqfmwMlgfbdqj`vowvqfBowfqmbwjufqfpfbq`kfqpwltbqgp#wkfNlpw#le#wkfnbmz#lwkfq#+fpsf`jbooz?wg#tjgwk>!8tjgwk9233&jmgfsfmgfmw?k0#`obpp>!#lm`kbmdf>!*-bgg@obpp+jmwfqb`wjlmLmf#le#wkf#gbvdkwfq#leb``fpplqjfpaqbm`kfp#le ?gju#jg>!wkf#obqdfpwgf`obqbwjlmqfdvobwjlmpJmelqnbwjlmwqbmpobwjlmgl`vnfmwbqzjm#lqgfq#wl!= ?kfbg= ?!#kfjdkw>!2b`qlpp#wkf#lqjfmwbwjlm*8?,p`qjsw=jnsofnfmwfg`bm#af#pffmwkfqf#tbp#bgfnlmpwqbwf`lmwbjmfq!=`lmmf`wjlmpwkf#Aqjwjpktbp#tqjwwfm"jnslqwbmw8s{8#nbqdjm.elooltfg#azbajojwz#wl#`lnsoj`bwfggvqjmd#wkf#jnnjdqbwjlmbopl#`boofg?k7#`obpp>!gjpwjm`wjlmqfsob`fg#azdlufqmnfmwpol`bwjlm#lejm#Mlufnafqtkfwkfq#wkf?,s= ?,gju=b`rvjpjwjlm`boofg#wkf#sfqpf`vwjlmgfpjdmbwjlmxelmw.pjyf9bssfbqfg#jmjmufpwjdbwff{sfqjfm`fgnlpw#ojhfoztjgfoz#vpfggjp`vppjlmpsqfpfm`f#le#+gl`vnfmw-f{wfmpjufozJw#kbp#affmjw#glfp#mlw`lmwqbqz#wljmkbajwbmwpjnsqlufnfmwp`klobqpkjs`lmpvnswjlmjmpwqv`wjlmelq#f{bnsoflmf#lq#nlqfs{8#sbggjmdwkf#`vqqfmwb#pfqjfp#lebqf#vpvboozqlof#jm#wkfsqfujlvpoz#gfqjubwjufpfujgfm`f#lef{sfqjfm`fp`lolqp`kfnfpwbwfg#wkbw`fqwjej`bwf?,b=?,gju= #pfof`wfg>!kjdk#p`klloqfpslmpf#wl`lnelqwbaofbglswjlm#lewkqff#zfbqpwkf#`lvmwqzjm#Efaqvbqzpl#wkbw#wkfsflsof#tkl#sqlujgfg#az?sbqbn#mbnfbeef`wfg#azjm#wfqnp#lebssljmwnfmwJPL.;;6:.2!tbp#alqm#jmkjpwlqj`bo#qfdbqgfg#bpnfbpvqfnfmwjp#abpfg#lm#bmg#lwkfq#9#evm`wjlm+pjdmjej`bmw`fofaqbwjlmwqbmpnjwwfg,ip,irvfqz-jp#hmltm#bpwkflqfwj`bo#wbajmgf{>!jw#`lvog#af?mlp`qjsw= kbujmd#affm ?kfbg= ?#%rvlw8Wkf#`lnsjobwjlmkf#kbg#affmsqlgv`fg#azskjolplskfq`lmpwqv`wfgjmwfmgfg#wlbnlmd#lwkfq`lnsbqfg#wlwl#pbz#wkbwFmdjmffqjmdb#gjeefqfmwqfefqqfg#wlgjeefqfm`fpafojfe#wkbwsklwldqbskpjgfmwjezjmdKjpwlqz#le#Qfsvaoj`#lemf`fppbqjozsqlabajojwzwf`kmj`boozofbujmd#wkfpsf`wb`vobqeqb`wjlm#lefof`wqj`jwzkfbg#le#wkfqfpwbvqbmwpsbqwmfqpkjsfnskbpjp#lmnlpw#qf`fmwpkbqf#tjwk#pbzjmd#wkbwejoofg#tjwkgfpjdmfg#wljw#jp#lewfm!=?,jeqbnf=bp#elooltp9nfqdfg#tjwkwkqlvdk#wkf`lnnfq`jbo#sljmwfg#lvwlsslqwvmjwzujft#le#wkfqfrvjqfnfmwgjujpjlm#lesqldqbnnjmdkf#qf`fjufgpfwJmwfqubo!=?,psbm=?,jm#Mft#Zlqhbggjwjlmbo#`lnsqfppjlm ?gju#jg>!jm`lqslqbwf8?,p`qjsw=?bwwb`kFufmwaf`bnf#wkf#!#wbqdfw>!\\`bqqjfg#lvwPlnf#le#wkfp`jfm`f#bmgwkf#wjnf#le@lmwbjmfq!=nbjmwbjmjmd@kqjpwlskfqNv`k#le#wkftqjwjmdp#le!#kfjdkw>!1pjyf#le#wkfufqpjlm#le#nj{wvqf#le#afwtffm#wkfF{bnsofp#lefgv`bwjlmbo`lnsfwjwjuf#lmpvanjw>!gjqf`wlq#legjpwjm`wjuf,GWG#[KWNO#qfobwjmd#wlwfmgfm`z#wlsqlujm`f#letkj`k#tlvoggfpsjwf#wkfp`jfmwjej`#ofdjpobwvqf-jmmfqKWNO#boofdbwjlmpBdqj`vowvqftbp#vpfg#jmbssqlb`k#wljmwfoojdfmwzfbqp#obwfq/pbmp.pfqjegfwfqnjmjmdSfqelqnbm`fbssfbqbm`fp/#tkj`k#jp#elvmgbwjlmpbaaqfujbwfgkjdkfq#wkbmp#eqln#wkf#jmgjujgvbo#`lnslpfg#lepvsslpfg#wl`objnp#wkbwbwwqjavwjlmelmw.pjyf92fofnfmwp#leKjpwlqj`bo#kjp#aqlwkfqbw#wkf#wjnfbmmjufqpbqzdlufqmfg#azqfobwfg#wl#vowjnbwfoz#jmmlubwjlmpjw#jp#pwjoo`bm#lmoz#afgfejmjwjlmpwlDNWPwqjmdB#mvnafq#lejnd#`obpp>!Fufmwvbooz/tbp#`kbmdfgl``vqqfg#jmmfjdkalqjmdgjpwjmdvjpktkfm#kf#tbpjmwqlgv`jmdwfqqfpwqjboNbmz#le#wkfbqdvfp#wkbwbm#Bnfqj`bm`lmrvfpw#letjgfpsqfbg#tfqf#hjoofgp`qffm#bmg#Jm#lqgfq#wlf{sf`wfg#wlgfp`fmgbmwpbqf#ol`bwfgofdjpobwjufdfmfqbwjlmp#ab`hdqlvmgnlpw#sflsofzfbqp#bewfqwkfqf#jp#mlwkf#kjdkfpweqfrvfmwoz#wkfz#gl#mlwbqdvfg#wkbwpkltfg#wkbwsqfglnjmbmwwkfloldj`boaz#wkf#wjnf`lmpjgfqjmdpklqw.ojufg?,psbm=?,b=`bm#af#vpfgufqz#ojwwoflmf#le#wkf#kbg#boqfbgzjmwfqsqfwfg`lnnvmj`bwfefbwvqfp#ledlufqmnfmw/?,mlp`qjsw=fmwfqfg#wkf!#kfjdkw>!0Jmgfsfmgfmwslsvobwjlmpobqdf.p`bof-#Bowklvdk#vpfg#jm#wkfgfpwqv`wjlmslppjajojwzpwbqwjmd#jmwtl#lq#nlqff{sqfppjlmppvalqgjmbwfobqdfq#wkbmkjpwlqz#bmg?,lswjlm= @lmwjmfmwbofojnjmbwjmdtjoo#mlw#afsqb`wj`f#lejm#eqlmw#lepjwf#le#wkffmpvqf#wkbwwl#`qfbwf#bnjppjppjssjslwfmwjboozlvwpwbmgjmdafwwfq#wkbmtkbw#jp#mltpjwvbwfg#jmnfwb#mbnf>!WqbgjwjlmbopvddfpwjlmpWqbmpobwjlmwkf#elqn#lebwnlpskfqj`jgfloldj`bofmwfqsqjpfp`bo`vobwjmdfbpw#le#wkfqfnmbmwp#lesovdjmpsbdf,jmgf{-sks<qfnbjmfg#jmwqbmpelqnfgKf#tbp#bopltbp#boqfbgzpwbwjpwj`bojm#ebulq#leNjmjpwqz#lenlufnfmw#leelqnvobwjlmjp#qfrvjqfg?ojmh#qfo>!Wkjp#jp#wkf#?b#kqfe>!,slsvobqjyfgjmuloufg#jmbqf#vpfg#wlbmg#pfufqbonbgf#az#wkfpffnp#wl#afojhfoz#wkbwSbofpwjmjbmmbnfg#bewfqjw#kbg#affmnlpw#`lnnlmwl#qfefq#wlavw#wkjp#jp`lmpf`vwjufwfnslqbqjozJm#dfmfqbo/`lmufmwjlmpwbhfp#sob`fpvagjujpjlmwfqqjwlqjbolsfqbwjlmbosfqnbmfmwoztbp#obqdfozlvwaqfbh#lejm#wkf#sbpwelooltjmd#b#{nomp9ld>!=?b#`obpp>!`obpp>!wf{w@lmufqpjlm#nbz#af#vpfgnbmveb`wvqfbewfq#afjmd`ofbqej{!= rvfpwjlm#letbp#fof`wfgwl#af`lnf#baf`bvpf#le#plnf#sflsofjmpsjqfg#azpv``fppevo#b#wjnf#tkfmnlqf#`lnnlmbnlmdpw#wkfbm#leej`jbotjgwk9233&8wf`kmloldz/tbp#bglswfgwl#hffs#wkfpfwwofnfmwpojuf#ajqwkpjmgf{-kwno!@lmmf`wj`vwbppjdmfg#wl%bns8wjnfp8b``lvmw#elqbojdm>qjdkwwkf#`lnsbmzbotbzp#affmqfwvqmfg#wljmuloufnfmwAf`bvpf#wkfwkjp#sfqjlg!#mbnf>!r!#`lmejmfg#wlb#qfpvow#leubovf>!!#,=jp#b`wvboozFmujqlmnfmw ?,kfbg= @lmufqpfoz/= ?gju#jg>!3!#tjgwk>!2jp#sqlabaozkbuf#af`lnf`lmwqloojmdwkf#sqlaofn`jwjyfmp#leslojwj`jbmpqfb`kfg#wkfbp#fbqoz#bp9mlmf8#lufq?wbaof#`fooubojgjwz#legjqf`woz#wllmnlvpfgltmtkfqf#jw#jptkfm#jw#tbpnfnafqp#le#qfobwjlm#wlb``lnnlgbwfbolmd#tjwk#Jm#wkf#obwfwkf#Fmdojpkgfoj`jlvp!=wkjp#jp#mlwwkf#sqfpfmwje#wkfz#bqfbmg#ejmboozb#nbwwfq#le \n?,gju=  ?,p`qjsw=ebpwfq#wkbmnbilqjwz#lebewfq#tkj`k`lnsbqbwjufwl#nbjmwbjmjnsqluf#wkfbtbqgfg#wkffq!#`obpp>!eqbnfalqgfqqfpwlqbwjlmjm#wkf#pbnfbmbozpjp#lewkfjq#ejqpwGvqjmd#wkf#`lmwjmfmwbopfrvfm`f#leevm`wjlm+*xelmw.pjyf9#tlqh#lm#wkf?,p`qjsw= ?afdjmp#tjwkibubp`qjsw9`lmpwjwvfmwtbp#elvmgfgfrvjojaqjvnbppvnf#wkbwjp#djufm#azmffgp#wl#af`llqgjmbwfpwkf#ubqjlvpbqf#sbqw#lelmoz#jm#wkfpf`wjlmp#lejp#b#`lnnlmwkflqjfp#legjp`lufqjfpbppl`jbwjlmfgdf#le#wkfpwqfmdwk#leslpjwjlm#jmsqfpfmw.gbzvmjufqpboozwl#elqn#wkfavw#jmpwfbg`lqslqbwjlmbwwb`kfg#wljp#`lnnlmozqfbplmp#elq#%rvlw8wkf#`bm#af#nbgftbp#baof#wltkj`k#nfbmpavw#gjg#mlwlmNlvpfLufqbp#slppjaoflsfqbwfg#az`lnjmd#eqlnwkf#sqjnbqzbggjwjlm#leelq#pfufqbowqbmpefqqfgb#sfqjlg#lebqf#baof#wlkltfufq/#jwpklvog#kbufnv`k#obqdfq \n?,p`qjsw=bglswfg#wkfsqlsfqwz#legjqf`wfg#azfeef`wjufoztbp#aqlvdkw`kjogqfm#leSqldqbnnjmdolmdfq#wkbmnbmvp`qjswptbq#bdbjmpwaz#nfbmp#lebmg#nlpw#lepjnjobq#wl#sqlsqjfwbqzlqjdjmbwjmdsqfpwjdjlvpdqbnnbwj`bof{sfqjfm`f-wl#nbhf#wkfJw#tbp#bopljp#elvmg#jm`lnsfwjwlqpjm#wkf#V-P-qfsob`f#wkfaqlvdkw#wkf`bo`vobwjlmeboo#le#wkfwkf#dfmfqbosqb`wj`boozjm#klmlq#leqfofbpfg#jmqfpjgfmwjbobmg#plnf#lehjmd#le#wkfqfb`wjlm#wl2pw#Fbqo#le`vowvqf#bmgsqjm`jsbooz?,wjwof= ##wkfz#`bm#afab`h#wl#wkfplnf#le#kjpf{slpvqf#wlbqf#pjnjobqelqn#le#wkfbggEbulqjwf`jwjyfmpkjssbqw#jm#wkfsflsof#tjwkjm#sqb`wj`fwl#`lmwjmvf%bns8njmvp8bssqlufg#az#wkf#ejqpw#booltfg#wkfbmg#elq#wkfevm`wjlmjmdsobzjmd#wkfplovwjlm#wlkfjdkw>!3!#jm#kjp#allhnlqf#wkbm#belooltp#wkf`qfbwfg#wkfsqfpfm`f#jm%maps8?,wg=mbwjlmbojpwwkf#jgfb#leb#`kbqb`wfqtfqf#elq`fg#`obpp>!awmgbzp#le#wkfefbwvqfg#jmpkltjmd#wkfjmwfqfpw#jmjm#sob`f#lewvqm#le#wkfwkf#kfbg#leOlqg#le#wkfslojwj`boozkbp#jwp#ltmFgv`bwjlmbobssqlubo#leplnf#le#wkffb`k#lwkfq/afkbujlq#lebmg#af`bvpfbmg#bmlwkfqbssfbqfg#lmqf`lqgfg#jmaob`h%rvlw8nbz#jm`ovgfwkf#tlqog$p`bm#ofbg#wlqfefqp#wl#balqgfq>!3!#dlufqmnfmw#tjmmjmd#wkfqfpvowfg#jm#tkjof#wkf#Tbpkjmdwlm/wkf#pvaif`w`jwz#jm#wkf=?,gju= \n\nqfeof`w#wkfwl#`lnsofwfaf`bnf#nlqfqbgjlb`wjufqfif`wfg#aztjwklvw#bmzkjp#ebwkfq/tkj`k#`lvog`lsz#le#wkfwl#jmgj`bwfb#slojwj`bob``lvmwp#le`lmpwjwvwfptlqhfg#tjwkfq?,b=?,oj=le#kjp#ojefb``lnsbmjfg`ojfmwTjgwksqfufmw#wkfOfdjpobwjufgjeefqfmwozwldfwkfq#jmkbp#pfufqboelq#bmlwkfqwf{w#le#wkfelvmgfg#wkff#tjwk#wkf#jp#vpfg#elq`kbmdfg#wkfvpvbooz#wkfsob`f#tkfqftkfqfbp#wkf=#?b#kqfe>!!=?b#kqfe>!wkfnpfoufp/bowklvdk#kfwkbw#`bm#afwqbgjwjlmboqlof#le#wkfbp#b#qfpvowqfnluf@kjoggfpjdmfg#aztfpw#le#wkfPlnf#sflsofsqlgv`wjlm/pjgf#le#wkfmftpofwwfqpvpfg#az#wkfgltm#wl#wkfb``fswfg#azojuf#jm#wkfbwwfnswp#wllvwpjgf#wkfeqfrvfm`jfpKltfufq/#jmsqldqbnnfqpbw#ofbpw#jmbssql{jnbwfbowklvdk#jwtbp#sbqw#lebmg#ubqjlvpDlufqmlq#lewkf#bqwj`ofwvqmfg#jmwl=?b#kqfe>!,wkf#f`lmlnzjp#wkf#nlpwnlpw#tjgfoztlvog#obwfqbmg#sfqkbspqjpf#wl#wkfl``vqp#tkfmvmgfq#tkj`k`lmgjwjlmp-wkf#tfpwfqmwkflqz#wkbwjp#sqlgv`fgwkf#`jwz#lejm#tkj`k#kfpffm#jm#wkfwkf#`fmwqboavjogjmd#lenbmz#le#kjpbqfb#le#wkfjp#wkf#lmoznlpw#le#wkfnbmz#le#wkfwkf#TfpwfqmWkfqf#jp#mlf{wfmgfg#wlPwbwjpwj`bo`lopsbm>1#\x7Fpklqw#pwlqzslppjaof#wlwlsloldj`bo`qjwj`bo#leqfslqwfg#wlb#@kqjpwjbmgf`jpjlm#wljp#frvbo#wlsqlaofnp#leWkjp#`bm#afnfq`kbmgjpfelq#nlpw#leml#fujgfm`ffgjwjlmp#lefofnfmwp#jm%rvlw8-#Wkf`ln,jnbdfp,tkj`k#nbhfpwkf#sql`fppqfnbjmp#wkfojwfqbwvqf/jp#b#nfnafqwkf#slsvobqwkf#bm`jfmwsqlaofnp#jmwjnf#le#wkfgfefbwfg#azalgz#le#wkfb#eft#zfbqpnv`k#le#wkfwkf#tlqh#le@bojelqmjb/pfqufg#bp#bdlufqmnfmw-`lm`fswp#lenlufnfmw#jm\n\n?gju#jg>!jw!#ubovf>!obmdvbdf#lebp#wkfz#bqfsqlgv`fg#jmjp#wkbw#wkff{sobjm#wkfgju=?,gju= Kltfufq#wkfofbg#wl#wkf\n?b#kqfe>!,tbp#dqbmwfgsflsof#kbuf`lmwjmvbooztbp#pffm#bpbmg#qfobwfgwkf#qlof#lesqlslpfg#azle#wkf#afpwfb`k#lwkfq-@lmpwbmwjmfsflsof#eqlngjbof`wp#lewl#qfujpjlmtbp#qfmbnfgb#plvq`f#lewkf#jmjwjboobvm`kfg#jmsqlujgf#wkfwl#wkf#tfpwtkfqf#wkfqfbmg#pjnjobqafwtffm#wtljp#bopl#wkfFmdojpk#bmg`lmgjwjlmp/wkbw#jw#tbpfmwjwofg#wlwkfnpfoufp-rvbmwjwz#leqbmpsbqfm`zwkf#pbnf#bpwl#iljm#wkf`lvmwqz#bmgwkjp#jp#wkfWkjp#ofg#wlb#pwbwfnfmw`lmwqbpw#wlobpwJmgf{Lewkqlvdk#kjpjp#gfpjdmfgwkf#wfqn#jpjp#sqlujgfgsqlwf`w#wkfmd?,b=?,oj=Wkf#`vqqfmwwkf#pjwf#lepvapwbmwjbof{sfqjfm`f/jm#wkf#Tfpwwkfz#pklvogpolufm(ajmb`lnfmwbqjlpvmjufqpjgbg`lmgj`jlmfpb`wjujgbgfpf{sfqjfm`jbwf`mlold/Absqlgv``j/_msvmwvb`j/_mbsoj`b`j/_m`lmwqbpf/]b`bwfdlq/Abpqfdjpwqbqpfsqlefpjlmbowqbwbnjfmwlqfd/Apwqbwfpf`qfwbq/Absqjm`jsbofpsqlwf``j/_mjnslqwbmwfpjnslqwbm`jbslpjajojgbgjmwfqfpbmwf`qf`jnjfmwlmf`fpjgbgfppvp`qjajqpfbpl`jb`j/_mgjpslmjaofpfubovb`j/_mfpwvgjbmwfpqfpslmpbaofqfplov`j/_mdvbgbobibqbqfdjpwqbglplslqwvmjgbg`lnfq`jbofpelwldqbe/Abbvwlqjgbgfpjmdfmjfq/Abwfofujpj/_m`lnsfwfm`jblsfqb`jlmfpfpwbaof`jglpjnsofnfmwfb`wvbonfmwfmbufdb`j/_m`lmelqnjgbgojmf.kfjdkw9elmw.ebnjoz9!#9#!kwws9,,bssoj`bwjlmpojmh!#kqfe>!psf`jej`booz,,?"X@GBWBX Lqdbmjybwjlmgjpwqjavwjlm3s{8#kfjdkw9qfobwjlmpkjsgfuj`f.tjgwk?gju#`obpp>!?obafo#elq>!qfdjpwqbwjlm?,mlp`qjsw= ,jmgf{-kwno!tjmglt-lsfm+#"jnslqwbmw8bssoj`bwjlm,jmgfsfmgfm`f,,ttt-dlldoflqdbmjybwjlmbvwl`lnsofwfqfrvjqfnfmwp`lmpfqubwjuf?elqn#mbnf>!jmwfoof`wvbonbqdjm.ofew92;wk#`fmwvqzbm#jnslqwbmwjmpwjwvwjlmpbaaqfujbwjlm?jnd#`obpp>!lqdbmjpbwjlm`jujojybwjlm2:wk#`fmwvqzbq`kjwf`wvqfjm`lqslqbwfg13wk#`fmwvqz.`lmwbjmfq!=nlpw#mlwbaoz,=?,b=?,gju=mlwjej`bwjlm$vmgfejmfg$*Evqwkfqnlqf/afojfuf#wkbwjmmfqKWNO#>#sqjlq#wl#wkfgqbnbwj`boozqfefqqjmd#wlmfdlwjbwjlmpkfbgrvbqwfqpPlvwk#Beqj`bvmpv``fppevoSfmmpzoubmjbBp#b#qfpvow/?kwno#obmd>!%ow8,pvs%dw8gfbojmd#tjwkskjobgfoskjbkjpwlqj`booz*8?,p`qjsw= sbggjmd.wls9f{sfqjnfmwbodfwBwwqjavwfjmpwqv`wjlmpwf`kmloldjfpsbqw#le#wkf#>evm`wjlm+*xpvap`qjswjlmo-gwg!= ?kwdfldqbskj`bo@lmpwjwvwjlm$/#evm`wjlm+pvsslqwfg#azbdqj`vowvqbo`lmpwqv`wjlmsvaoj`bwjlmpelmw.pjyf9#2b#ubqjfwz#le?gju#pwzof>!Fm`z`olsfgjbjeqbnf#pq`>!gfnlmpwqbwfgb``lnsojpkfgvmjufqpjwjfpGfnldqbskj`p*8?,p`qjsw=?gfgj`bwfg#wlhmltofgdf#lepbwjpeb`wjlmsbqwj`vobqoz?,gju=?,gju=Fmdojpk#+VP*bssfmg@kjog+wqbmpnjppjlmp-#Kltfufq/#jmwfoojdfm`f!#wbajmgf{>!eolbw9qjdkw8@lnnlmtfbowkqbmdjmd#eqlnjm#tkj`k#wkfbw#ofbpw#lmfqfsqlgv`wjlmfm`z`olsfgjb8elmw.pjyf92ivqjpgj`wjlmbw#wkbw#wjnf!=?b#`obpp>!Jm#bggjwjlm/gfp`qjswjlm(`lmufqpbwjlm`lmwb`w#tjwkjp#dfmfqboozq!#`lmwfmw>!qfsqfpfmwjmd%ow8nbwk%dw8sqfpfmwbwjlml``bpjlmbooz?jnd#tjgwk>!mbujdbwjlm!=`lnsfmpbwjlm`kbnsjlmpkjsnfgjb>!boo!#ujlobwjlm#leqfefqfm`f#wlqfwvqm#wqvf8Pwqj`w,,FM!#wqbmpb`wjlmpjmwfqufmwjlmufqjej`bwjlmJmelqnbwjlm#gjeej`vowjfp@kbnsjlmpkjs`bsbajojwjfp?"Xfmgje^..=~ ?,p`qjsw= @kqjpwjbmjwzelq#f{bnsof/Sqlefppjlmboqfpwqj`wjlmppvddfpw#wkbwtbp#qfofbpfg+pv`k#bp#wkfqfnluf@obpp+vmfnsolznfmwwkf#Bnfqj`bmpwqv`wvqf#le,jmgf{-kwno#svaojpkfg#jmpsbm#`obpp>!!=?b#kqfe>!,jmwqlgv`wjlmafolmdjmd#wl`objnfg#wkbw`lmpfrvfm`fp?nfwb#mbnf>!Dvjgf#wl#wkflufqtkfonjmdbdbjmpw#wkf#`lm`fmwqbwfg/ -mlmwlv`k#lapfqubwjlmp?,b= ?,gju= e#+gl`vnfmw-alqgfq9#2s{#xelmw.pjyf92wqfbwnfmw#le3!#kfjdkw>!2nlgjej`bwjlmJmgfsfmgfm`fgjujgfg#jmwldqfbwfq#wkbmb`kjfufnfmwpfpwbaojpkjmdIbubP`qjsw!#mfufqwkfofpppjdmjej`bm`fAqlbg`bpwjmd=%maps8?,wg=`lmwbjmfq!= pv`k#bp#wkf#jmeovfm`f#leb#sbqwj`vobqpq`>$kwws9,,mbujdbwjlm!#kboe#le#wkf#pvapwbmwjbo#%maps8?,gju=bgubmwbdf#legjp`lufqz#leevmgbnfmwbo#nfwqlslojwbmwkf#lsslpjwf!#{no9obmd>!gfojafqbwfozbojdm>`fmwfqfulovwjlm#lesqfpfqubwjlmjnsqlufnfmwpafdjmmjmd#jmIfpvp#@kqjpwSvaoj`bwjlmpgjpbdqffnfmwwf{w.bojdm9q/#evm`wjlm+*pjnjobqjwjfpalgz=?,kwno=jp#`vqqfmwozboskbafwj`bojp#plnfwjnfpwzsf>!jnbdf,nbmz#le#wkf#eolt9kjggfm8bubjobaof#jmgfp`qjaf#wkff{jpwfm`f#leboo#lufq#wkfwkf#Jmwfqmfw\n?vo#`obpp>!jmpwboobwjlmmfjdkalqkllgbqnfg#elq`fpqfgv`jmd#wkf`lmwjmvfp#wlMlmfwkfofpp/wfnsfqbwvqfp \n\n?b#kqfe>!`olpf#wl#wkff{bnsofp#le#jp#balvw#wkf+pff#afolt*-!#jg>!pfbq`ksqlefppjlmbojp#bubjobaofwkf#leej`jbo\n\n?,p`qjsw= \n\n?gju#jg>!b``fofqbwjlmwkqlvdk#wkf#Kboo#le#Ebnfgfp`qjswjlmpwqbmpobwjlmpjmwfqefqfm`f#wzsf>$wf{w,qf`fmw#zfbqpjm#wkf#tlqogufqz#slsvobqxab`hdqlvmg9wqbgjwjlmbo#plnf#le#wkf#`lmmf`wfg#wlf{soljwbwjlmfnfqdfm`f#le`lmpwjwvwjlmB#Kjpwlqz#lepjdmjej`bmw#nbmveb`wvqfgf{sf`wbwjlmp=?mlp`qjsw=?`bm#af#elvmgaf`bvpf#wkf#kbp#mlw#affmmfjdkalvqjmdtjwklvw#wkf#bggfg#wl#wkf\n?oj#`obpp>!jmpwqvnfmwboPlujfw#Vmjlmb`hmltofgdfgtkj`k#`bm#afmbnf#elq#wkfbwwfmwjlm#wlbwwfnswp#wl#gfufolsnfmwpJm#eb`w/#wkf?oj#`obpp>!bjnsoj`bwjlmppvjwbaof#elqnv`k#le#wkf#`lolmjybwjlmsqfpjgfmwjbo`bm`foAvaaof#Jmelqnbwjlmnlpw#le#wkf#jp#gfp`qjafgqfpw#le#wkf#nlqf#lq#ofppjm#PfswfnafqJmwfoojdfm`fpq`>!kwws9,,s{8#kfjdkw9#bubjobaof#wlnbmveb`wvqfqkvnbm#qjdkwpojmh#kqfe>!,bubjobajojwzsqlslqwjlmbolvwpjgf#wkf#bpwqlmlnj`bokvnbm#afjmdpmbnf#le#wkf#bqf#elvmg#jmbqf#abpfg#lmpnboofq#wkbmb#sfqplm#tklf{sbmpjlm#lebqdvjmd#wkbwmlt#hmltm#bpJm#wkf#fbqozjmwfqnfgjbwfgfqjufg#eqlnP`bmgjmbujbm?,b=?,gju= `lmpjgfq#wkfbm#fpwjnbwfgwkf#Mbwjlmbo?gju#jg>!sbdqfpvowjmd#jm`lnnjppjlmfgbmboldlvp#wlbqf#qfrvjqfg,vo= ?,gju= tbp#abpfg#lmbmg#af`bnf#b%maps8%maps8w!#ubovf>!!#tbp#`bswvqfgml#nlqf#wkbmqfpsf`wjufoz`lmwjmvf#wl#= ?kfbg= ?tfqf#`qfbwfgnlqf#dfmfqbojmelqnbwjlm#vpfg#elq#wkfjmgfsfmgfmw#wkf#Jnsfqjbo`lnslmfmw#lewl#wkf#mlqwkjm`ovgf#wkf#@lmpwqv`wjlmpjgf#le#wkf#tlvog#mlw#afelq#jmpwbm`fjmufmwjlm#lenlqf#`lnsof{`loof`wjufozab`hdqlvmg9#wf{w.bojdm9#jwp#lqjdjmbojmwl#b``lvmwwkjp#sql`fppbm#f{wfmpjufkltfufq/#wkfwkfz#bqf#mlwqfif`wfg#wkf`qjwj`jpn#legvqjmd#tkj`ksqlabaoz#wkfwkjp#bqwj`of+evm`wjlm+*xJw#pklvog#afbm#bdqffnfmwb``jgfmwboozgjeefqp#eqlnBq`kjwf`wvqfafwwfq#hmltmbqqbmdfnfmwpjmeovfm`f#lmbwwfmgfg#wkfjgfmwj`bo#wlplvwk#le#wkfsbpp#wkqlvdk{no!#wjwof>!tfjdkw9alog8`qfbwjmd#wkfgjpsobz9mlmfqfsob`fg#wkf?jnd#pq`>!,jkwwsp9,,ttt-Tlqog#Tbq#JJwfpwjnlmjbopelvmg#jm#wkfqfrvjqfg#wl#bmg#wkbw#wkfafwtffm#wkf#tbp#gfpjdmfg`lmpjpwp#le#`lmpjgfqbaozsvaojpkfg#azwkf#obmdvbdf@lmpfqubwjlm`lmpjpwfg#leqfefq#wl#wkfab`h#wl#wkf#`pp!#nfgjb>!Sflsof#eqln#bubjobaof#lmsqlufg#wl#afpvddfpwjlmp!tbp#hmltm#bpubqjfwjfp#leojhfoz#wl#af`lnsqjpfg#lepvsslqw#wkf#kbmgp#le#wkf`lvsofg#tjwk`lmmf`w#bmg#alqgfq9mlmf8sfqelqnbm`fpafelqf#afjmdobwfq#af`bnf`bo`vobwjlmplewfm#`boofgqfpjgfmwp#lenfbmjmd#wkbw=?oj#`obpp>!fujgfm`f#elqf{sobmbwjlmpfmujqlmnfmwp!=?,b=?,gju=tkj`k#booltpJmwqlgv`wjlmgfufolsfg#azb#tjgf#qbmdflm#afkboe#leubojdm>!wls!sqjm`jsof#lebw#wkf#wjnf/?,mlp`qjsw=pbjg#wl#kbufjm#wkf#ejqpwtkjof#lwkfqpkzslwkfwj`boskjolplskfqpsltfq#le#wkf`lmwbjmfg#jmsfqelqnfg#azjmbajojwz#wltfqf#tqjwwfmpsbm#pwzof>!jmsvw#mbnf>!wkf#rvfpwjlmjmwfmgfg#elqqfif`wjlm#lejnsojfp#wkbwjmufmwfg#wkfwkf#pwbmgbqgtbp#sqlabaozojmh#afwtffmsqlefpplq#lejmwfqb`wjlmp`kbmdjmd#wkfJmgjbm#L`fbm#`obpp>!obpwtlqhjmd#tjwk$kwws9,,ttt-zfbqp#afelqfWkjp#tbp#wkfqf`qfbwjlmbofmwfqjmd#wkfnfbpvqfnfmwpbm#f{wqfnfozubovf#le#wkfpwbqw#le#wkf ?,p`qjsw= bm#feelqw#wljm`qfbpf#wkfwl#wkf#plvwkpsb`jmd>!3!=pveej`jfmwozwkf#Fvqlsfbm`lmufqwfg#wl`ofbqWjnflvwgjg#mlw#kbuf`lmpfrvfmwozelq#wkf#mf{wf{wfmpjlm#lef`lmlnj`#bmgbowklvdk#wkfbqf#sqlgv`fgbmg#tjwk#wkfjmpveej`jfmwdjufm#az#wkfpwbwjmd#wkbwf{sfmgjwvqfp?,psbm=?,b= wklvdkw#wkbwlm#wkf#abpjp`foosbggjmd>jnbdf#le#wkfqfwvqmjmd#wljmelqnbwjlm/pfsbqbwfg#azbppbppjmbwfgp!#`lmwfmw>!bvwklqjwz#lemlqwktfpwfqm?,gju= ?gju#!=?,gju= ##`lmpvowbwjlm`lnnvmjwz#lewkf#mbwjlmbojw#pklvog#afsbqwj`jsbmwp#bojdm>!ofewwkf#dqfbwfpwpfof`wjlm#lepvsfqmbwvqbogfsfmgfmw#lmjp#nfmwjlmfgbooltjmd#wkftbp#jmufmwfgb``lnsbmzjmdkjp#sfqplmbobubjobaof#bwpwvgz#le#wkflm#wkf#lwkfqf{f`vwjlm#leKvnbm#Qjdkwpwfqnp#le#wkfbppl`jbwjlmpqfpfbq`k#bmgpv``ffgfg#azgfefbwfg#wkfbmg#eqln#wkfavw#wkfz#bqf`lnnbmgfq#lepwbwf#le#wkfzfbqp#le#bdfwkf#pwvgz#le?vo#`obpp>!psob`f#jm#wkftkfqf#kf#tbp?oj#`obpp>!ewkfqf#bqf#mltkj`k#af`bnfkf#svaojpkfgf{sqfppfg#jmwl#tkj`k#wkf`lnnjppjlmfqelmw.tfjdkw9wfqqjwlqz#lef{wfmpjlmp!=Qlnbm#Fnsjqffrvbo#wl#wkfJm#`lmwqbpw/kltfufq/#bmgjp#wzsj`boozbmg#kjp#tjef+bopl#`boofg=?vo#`obpp>!feef`wjufoz#fuloufg#jmwlpffn#wl#kbuftkj`k#jp#wkfwkfqf#tbp#mlbm#f{`foofmwboo#le#wkfpfgfp`qjafg#azJm#sqb`wj`f/aqlbg`bpwjmd`kbqdfg#tjwkqfeof`wfg#jmpvaif`wfg#wlnjojwbqz#bmgwl#wkf#sljmwf`lmlnj`boozpfwWbqdfwjmdbqf#b`wvboozuj`wlqz#lufq+*8?,p`qjsw=`lmwjmvlvpozqfrvjqfg#elqfulovwjlmbqzbm#feef`wjufmlqwk#le#wkf/#tkj`k#tbp#eqlmw#le#wkflq#lwkfqtjpfplnf#elqn#lekbg#mlw#affmdfmfqbwfg#azjmelqnbwjlm-sfqnjwwfg#wljm`ovgfp#wkfgfufolsnfmw/fmwfqfg#jmwlwkf#sqfujlvp`lmpjpwfmwozbqf#hmltm#bpwkf#ejfog#lewkjp#wzsf#ledjufm#wl#wkfwkf#wjwof#le`lmwbjmp#wkfjmpwbm`fp#lejm#wkf#mlqwkgvf#wl#wkfjqbqf#gfpjdmfg`lqslqbwjlmptbp#wkbw#wkflmf#le#wkfpfnlqf#slsvobqpv``ffgfg#jmpvsslqw#eqlnjm#gjeefqfmwglnjmbwfg#azgfpjdmfg#elqltmfqpkjs#lebmg#slppjaozpwbmgbqgjyfgqfpslmpfWf{wtbp#jmwfmgfgqf`fjufg#wkfbppvnfg#wkbwbqfbp#le#wkfsqjnbqjoz#jmwkf#abpjp#lejm#wkf#pfmpfb``lvmwp#elqgfpwqlzfg#azbw#ofbpw#wtltbp#gf`obqfg`lvog#mlw#afPf`qfwbqz#lebssfbq#wl#afnbqdjm.wls92,]_p(\x7F_p(\',df*xwkqlt#f~8wkf#pwbqw#lewtl#pfsbqbwfobmdvbdf#bmgtkl#kbg#affmlsfqbwjlm#legfbwk#le#wkfqfbo#mvnafqp\n?ojmh#qfo>!sqlujgfg#wkfwkf#pwlqz#le`lnsfwjwjlmpfmdojpk#+VH*fmdojpk#+VP*<p<R<Q<_<R<W<M=l<S=m<V<T=m=l<S=m<V<T=m=l<S=m<V<R5h4U4]4D5f4E\nAOGx\bTA\nzk\vBl\bQ\x7F\bTA\nzk\vUm\bQ\x7F\bTA\nzk\npeu| i@ cT\bVV\n\\}\nxS VptSk` [X [X\vHR\bPv\bTW\bUe\n\x7Fa\bQp\v_W\vWs\nxS\vAz\n_yKhjmelqnb`j/_mkfqqbnjfmwbpfof`wq/_mj`lgfp`qjs`j/_m`obpjej`bglp`lml`jnjfmwlsvaoj`b`j/_mqfob`jlmbgbpjmelqn/Mwj`bqfob`jlmbglpgfsbqwbnfmwlwqbabibglqfpgjqf`wbnfmwfbzvmwbnjfmwlnfq`bglOjaqf`lmw/M`wfmlpkbajwb`jlmfp`vnsojnjfmwlqfpwbvqbmwfpgjpslpj`j/_m`lmpf`vfm`jbfof`wq/_mj`bbsoj`b`jlmfpgfp`lmf`wbgljmpwbob`j/_mqfbojyb`j/_mvwjojyb`j/_mfm`j`olsfgjbfmefqnfgbgfpjmpwqvnfmwlpf{sfqjfm`jbpjmpwjwv`j/_msbqwj`vobqfppva`bwfdlqjb=n<R<W=`<V<R<L<R=m=m<T<T=l<\\<]<R=n=g<]<R<W=`=d<Y<S=l<R=m=n<R<P<R<Z<Y=n<Y<X=l=o<_<T=i=m<W=o=k<\\<Y=m<Y<U=k<\\=m<^=m<Y<_<X<\\<L<R=m=m<T=c<p<R=m<V<^<Y<X=l=o<_<T<Y<_<R=l<R<X<\\<^<R<S=l<R=m<X<\\<Q<Q=g=i<X<R<W<Z<Q=g<T<P<Y<Q<Q<R<p<R=m<V<^=g=l=o<]<W<Y<U<p<R=m<V<^<\\=m=n=l<\\<Q=g<Q<T=k<Y<_<R=l<\\<]<R=n<Y<X<R<W<Z<Y<Q=o=m<W=o<_<T=n<Y<S<Y=l=`<r<X<Q<\\<V<R<S<R=n<R<P=o=l<\\<]<R=n=o<\\<S=l<Y<W=c<^<R<R<]=e<Y<R<X<Q<R<_<R=m<^<R<Y<_<R=m=n<\\=n=`<T<X=l=o<_<R<U=h<R=l=o<P<Y=i<R=l<R=d<R<S=l<R=n<T<^=m=m=g<W<V<\\<V<\\<Z<X=g<U<^<W<\\=m=n<T<_=l=o<S<S=g<^<P<Y=m=n<Y=l<\\<]<R=n<\\=m<V<\\<[<\\<W<S<Y=l<^=g<U<X<Y<W<\\=n=`<X<Y<Q=`<_<T<S<Y=l<T<R<X<]<T<[<Q<Y=m<R=m<Q<R<^<Y<P<R<P<Y<Q=n<V=o<S<T=n=`<X<R<W<Z<Q<\\=l<\\<P<V<\\=i<Q<\\=k<\\<W<R<L<\\<]<R=n<\\<N<R<W=`<V<R=m<R<^=m<Y<P<^=n<R=l<R<U<Q<\\=k<\\<W<\\=m<S<T=m<R<V=m<W=o<Z<]=g=m<T=m=n<Y<P<S<Y=k<\\=n<T<Q<R<^<R<_<R<S<R<P<R=e<T=m<\\<U=n<R<^<S<R=k<Y<P=o<S<R<P<R=e=`<X<R<W<Z<Q<R=m=m=g<W<V<T<]=g=m=n=l<R<X<\\<Q<Q=g<Y<P<Q<R<_<T<Y<S=l<R<Y<V=n<M<Y<U=k<\\=m<P<R<X<Y<W<T=n<\\<V<R<_<R<R<Q<W<\\<U<Q<_<R=l<R<X<Y<^<Y=l=m<T=c=m=n=l<\\<Q<Y=h<T<W=`<P=g=o=l<R<^<Q=c=l<\\<[<Q=g=i<T=m<V<\\=n=`<Q<Y<X<Y<W=b=c<Q<^<\\=l=c<P<Y<Q=`=d<Y<P<Q<R<_<T=i<X<\\<Q<Q<R<U<[<Q<\\=k<T=n<Q<Y<W=`<[=c=h<R=l=o<P<\\<N<Y<S<Y=l=`<P<Y=m=c=j<\\<[<\\=e<T=n=g<w=o=k=d<T<Y\fHD\fHU\fIl\fHn\fHy\fH\\\fHD\fIk\fHi\fHF\fHD\fIk\fHy\fHS\fHC\fHR\fHy\fH\\\fIk\fHn\fHi\fHD\fIa\fHC\fHy\fIa\fHC\fHR\fH{\fHR\fHk\fHM\fH@\fHR\fH\\\fIk\fHy\fHS\fHT\fIl\fHJ\fHS\fHC\fHR\fHF\fHU\fH^\fIk\fHT\fHS\fHn\fHU\fHA\fHR\fH\\\fHH\fHi\fHF\fHD\fIl\fHY\fHR\fH^\fIk\fHT\fIk\fHY\fHR\fHy\fH\\\fHH\fIk\fHB\fIk\fH\\\fIk\fHU\fIg\fHD\fIk\fHT\fHy\fHH\fIk\fH@\fHU\fIm\fHH\fHT\fHR\fHk\fHs\fHU\fIg\fH{\fHR\fHp\fHR\fHD\fIk\fHB\fHS\fHD\fHs\fHy\fH\\\fHH\fHR\fHy\fH\\\fHD\fHR\fHe\fHD\fHy\fIk\fHC\fHU\fHR\fHm\fHT\fH@\fHT\fIk\fHA\fHR\fH[\fHR\fHj\fHF\fHy\fIk\fH^\fHS\fHC\fIk\fHZ\fIm\fH\\\fIn\fHk\fHT\fHy\fIk\fHt\fHn\fHs\fIk\fHB\fIk\fH\\\fIl\fHT\fHy\fHH\fHR\fHB\fIk\fH\\\fHR\fH^\fIk\fHy\fH\\\fHi\fHK\fHS\fHy\fHi\fHF\fHD\fHR\fHT\fHB\fHR\fHp\fHB\fIm\fHq\fIk\fHy\fHR\fH\\\fHO\fHU\fIg\fHH\fHR\fHy\fHM\fHP\fIl\fHC\fHU\fHR\fHn\fHU\fIg\fHs\fH^\fHZ\fH@\fIa\fHJ\fH^\fHS\fHC\fHR\fHp\fIl\fHY\fHD\fHp\fHR\fHH\fHR\fHy\fId\fHT\fIk\fHj\fHF\fHy\fHR\fHY\fHR\fH^\fIl\fHJ\fIk\fHD\fIk\fHF\fIn\fH\\\fIl\fHF\fHR\fHD\fIl\fHe\fHT\fHy\fIk\fHU\fIg\fH{\fIl\fH@\fId\fHL\fHy\fHj\fHF\fHy\fIl\fHY\fH\\\fIa\fH[\fH{\fHR\fHn\fHY\fHj\fHF\fHy\fIg\fHp\fHS\fH^\fHR\fHp\fHR\fHD\fHR\fHT\fHU\fHB\fHH\fHU\fHB\fIk\fHn\fHe\fHD\fHy\fIl\fHC\fHR\fHU\fIn\fHJ\fH\\\fIa\fHp\fHT\fIn\fHv\fIl\fHF\fHT\fHn\fHJ\fHT\fHY\fHR\fH^\fHU\fIg\fHD\fHR\fHU\fIg\fHH\fIl\fHp\fId\fHT\fIk\fHY\fHR\fHF\fHT\fHp\fHD\fHH\fHR\fHD\fIk\fHH\fHR\fHp\fHR\fH\\\fIl\fHt\fHR\fHC\fH^\fHp\fHS\fH^\fIk\fHD\fIl\fHv\fIk\fHp\fHR\fHn\fHv\fHF\fHH\fIa\fH\\\fH{\fIn\fH{\fH^\fHp\fHR\fHH\fIk\fH@\fHR\fHU\fH\\\fHj\fHF\fHD\fIk\fHY\fHR\fHU\fHD\fHk\fHT\fHy\fHR\fHT\fIm\fH@\fHU\fH\\\fHU\fHD\fIk\fHk\fHT\fHT\fIk\fHT\fHU\fHS\fHH\fH@\fHM\fHP\fIk\fHt\fHs\fHD\fHR\fHH\fH^\fHR\fHZ\fHF\fHR\fHn\fHv\fHZ\fIa\fH\\\fIl\fH@\fHM\fHP\fIl\fHU\fIg\fHH\fIk\fHT\fHR\fHd\fHs\fHZ\fHR\fHC\fHJ\fHT\fHy\fHH\fIl\fHp\fHR\fHH\fIl\fHY\fHR\fH^\fHR\fHU\fHp\fHR\fH\\\fHF\fHs\fHD\fHR\fH\\\fHz\fHD\fIk\fHT\fHM\fHP\fHy\fHB\fHS\fH^\fHR\fHe\fHT\fHy\fIl\fHy\fIk\fHY\fH^\fH^\fH{\fHH\fHR\fHz\fHR\fHD\fHR\fHi\fH\\\fIa\fHI\fHp\fHU\fHR\fHn\fHJ\fIk\fHz\fHR\fHF\fHU\fH^\fIl\fHD\fHS\fHC\fHB\fH@\fHS\fHD\fHR\fH@\fId\fHn\fHy\fHy\fHU\fIl\fHn\fHy\fHU\fHD\fHR\fHJ\fIk\fHH\fHR\fHU\fHB\fH^\fIk\fHy\fHR\fHG\fIl\fHp\fH@\fHy\fHS\fHH\fIm\fH\\\fHH\fHB\fHR\fHn\fH{\fHY\fHU\fIl\fHn\fH\\\fIg\fHp\fHP\fHB\fHS\fH^\fIl\fHj\fH\\\fIg\fHF\fHT\fIk\fHD\fHR\fHC\fHR\fHJ\fHY\fH^\fIk\fHD\fIk\fHz\fHR\fHH\fHR\fHy\fH\\\fIl\fH@\fHe\fHD\fHy\fHR\fHp\fHY\fHR\fH@\fHF\fIn\fH\\\fHR\fH@\fHM\fHP\fHR\fHT\fI`\fHJ\fHR\fHZ\fIk\fHC\fH\\\fHy\fHS\fHC\fIk\fHy\fHU\fHR\fHn\fHi\fHy\fHT\fH\\\fH@\fHD\fHR\fHc\fHY\fHU\fHR\fHn\fHT\fIa\fHI\fH^\fHB\fHS\fH^\fIk\fH^\fIk\fHz\fHy\fHY\fHS\fH[\fHC\fHy\fIa\fH\\\fHn\fHT\fHB\fIn\fHU\fHI\fHR\fHD\fHR4F4_4F4[5f4U5i4X4K4]5o4E4D5d4K4_4[4E4K5h4Y5m4A4E5i5d4K4Z5f4U4K5h4B4K4Y4E4K5h5i4^5f4C4K5h4U4K5i4E4K5h5o4K4F4D4K5h4]4C5d4C4D4]5j4K5i4@4K5h4C5d5h4E4K5h4U4K5h5i4K5h5i5d5n4U4K5h4U4]4D5f4K5h4_4]5f4U4K5h4@5d4K5h4K5h4\\5k4K4D4K5h4A5f4K4E4K5h4A5n5d5n4K5h5o4]5f5i4K5h4U4]4K5n5i4A5m5d4T4E4K5h4G4K5j5f5i4X4K5k4C4E4K5h5i4]4O4E4K5h5n4]4N5j4K5h4X4D4K4D4K5h4A5d4K4]4K5h4@4C5f4C4K5h4O4_4]4E4K5h4U5h5d5i5i4@5i5d4U4E4K5h4]4A5i5j4K5h5j5n4K4[5m5h4_4[5f5j4K5h5o5d5f4F4K5h4C5j5f4K4D4]5o4K4F5k4K5h4]5f4K4Z4F4A5f4K4F5f4D4F5d5n5f4F4K5h4O5d5h5e4K5h4D4]5f4C4K5h5o5h4K5i4K5h4]4K4D4[4K5h4X4B4Y5f4_5f4K4]4K4F4K5h4G4K5h4G4K5h4Y5h4K4E4K5h4A4C5f4G4K5h4^5d4K4]4K5h4B5h5f4@4K5h4@5i5f4U4K5h4U4K5i5k4K5h4@5i4K5h4K5h4_4K4U4E5i4X4K5k4C5k4K5h4]4J5f4_4K5h4C4B5d5h4K5h5m5j5f4E4K5h5o4F4K4D4K5h4C5d4]5f4K5h4C4]5d4_4K4_4F4V4]5n4F4Y4K5i5f5i4K5h4D5j4K4F4K5h4U4T5f5ifmwfqwbjmnfmwvmgfqpwbmgjmd#>#evm`wjlm+*-isd!#tjgwk>!`lmejdvqbwjlm-smd!#tjgwk>!?algz#`obpp>!Nbwk-qbmgln+*`lmwfnslqbqz#Vmjwfg#Pwbwfp`jq`vnpwbm`fp-bssfmg@kjog+lqdbmjybwjlmp?psbm#`obpp>!!=?jnd#pq`>!,gjpwjmdvjpkfgwklvpbmgp#le#`lnnvmj`bwjlm`ofbq!=?,gju=jmufpwjdbwjlmebuj`lm-j`l!#nbqdjm.qjdkw9abpfg#lm#wkf#Nbppb`kvpfwwpwbaof#alqgfq>jmwfqmbwjlmbobopl#hmltm#bpsqlmvm`jbwjlmab`hdqlvmg9 esbggjmd.ofew9Elq#f{bnsof/#njp`foobmflvp%ow8,nbwk%dw8spz`kloldj`bojm#sbqwj`vobqfbq`k!#wzsf>!elqn#nfwklg>!bp#lsslpfg#wlPvsqfnf#@lvqwl``bpjlmbooz#Bggjwjlmbooz/Mlqwk#Bnfqj`bs{8ab`hdqlvmglsslqwvmjwjfpFmwfqwbjmnfmw-wlOltfq@bpf+nbmveb`wvqjmdsqlefppjlmbo#`lnajmfg#tjwkElq#jmpwbm`f/`lmpjpwjmd#le!#nb{ofmdwk>!qfwvqm#ebopf8`lmp`jlvpmfppNfgjwfqqbmfbmf{wqblqgjmbqzbppbppjmbwjlmpvapfrvfmwoz#avwwlm#wzsf>!wkf#mvnafq#lewkf#lqjdjmbo#`lnsqfkfmpjufqfefqp#wl#wkf?,vo= ?,gju= skjolplskj`bool`bwjlm-kqfetbp#svaojpkfgPbm#Eqbm`jp`l+evm`wjlm+*x ?gju#jg>!nbjmplskjpwj`bwfgnbwkfnbwj`bo#,kfbg= ?algzpvddfpwp#wkbwgl`vnfmwbwjlm`lm`fmwqbwjlmqfobwjlmpkjspnbz#kbuf#affm+elq#f{bnsof/Wkjp#bqwj`of#jm#plnf#`bpfpsbqwp#le#wkf#gfejmjwjlm#leDqfbw#Aqjwbjm#`foosbggjmd>frvjubofmw#wlsob`fklogfq>!8#elmw.pjyf9#ivpwjej`bwjlmafojfufg#wkbwpveefqfg#eqlnbwwfnswfg#wl#ofbgfq#le#wkf`qjsw!#pq`>!,+evm`wjlm+*#xbqf#bubjobaof \n?ojmh#qfo>!#pq`>$kwws9,,jmwfqfpwfg#jm`lmufmwjlmbo#!#bow>!!#,=?,bqf#dfmfqboozkbp#bopl#affmnlpw#slsvobq#`lqqfpslmgjmd`qfgjwfg#tjwkwzof>!alqgfq9?,b=?,psbm=?,-dje!#tjgwk>!?jeqbnf#pq`>!wbaof#`obpp>!jmojmf.aol`h8b``lqgjmd#wl#wldfwkfq#tjwkbssql{jnbwfozsbqojbnfmwbqznlqf#bmg#nlqfgjpsobz9mlmf8wqbgjwjlmboozsqfglnjmbmwoz%maps8\x7F%maps8%maps8?,psbm=#`foopsb`jmd>?jmsvw#mbnf>!lq!#`lmwfmw>!`lmwqlufqpjbosqlsfqwz>!ld9,{.pkl`htbuf.gfnlmpwqbwjlmpvqqlvmgfg#azMfufqwkfofpp/tbp#wkf#ejqpw`lmpjgfqbaof#Bowklvdk#wkf#`loobalqbwjlmpklvog#mlw#afsqlslqwjlm#le?psbm#pwzof>!hmltm#bp#wkf#pklqwoz#bewfqelq#jmpwbm`f/gfp`qjafg#bp#,kfbg= ?algz#pwbqwjmd#tjwkjm`qfbpjmdoz#wkf#eb`w#wkbwgjp`vppjlm#lenjggof#le#wkfbm#jmgjujgvbogjeej`vow#wl#sljmw#le#ujftklnlpf{vbojwzb``fswbm`f#le?,psbm=?,gju=nbmveb`wvqfqplqjdjm#le#wkf`lnnlmoz#vpfgjnslqwbm`f#legfmlnjmbwjlmpab`hdqlvmg9# ofmdwk#le#wkfgfwfqnjmbwjlmb#pjdmjej`bmw!#alqgfq>!3!=qfulovwjlmbqzsqjm`jsofp#lejp#`lmpjgfqfgtbp#gfufolsfgJmgl.Fvqlsfbmuvomfqbaof#wlsqlslmfmwp#lebqf#plnfwjnfp`olpfq#wl#wkfMft#Zlqh#@jwz#mbnf>!pfbq`kbwwqjavwfg#wl`lvqpf#le#wkfnbwkfnbwj`jbmaz#wkf#fmg#lebw#wkf#fmg#le!#alqgfq>!3!#wf`kmloldj`bo-qfnluf@obpp+aqbm`k#le#wkffujgfm`f#wkbw"Xfmgje^..= Jmpwjwvwf#le#jmwl#b#pjmdofqfpsf`wjufoz-bmg#wkfqfelqfsqlsfqwjfp#lejp#ol`bwfg#jmplnf#le#tkj`kWkfqf#jp#bopl`lmwjmvfg#wl#bssfbqbm`f#le#%bns8mgbpk8#gfp`qjafp#wkf`lmpjgfqbwjlmbvwklq#le#wkfjmgfsfmgfmwozfrvjssfg#tjwkglfp#mlw#kbuf?,b=?b#kqfe>!`lmevpfg#tjwk?ojmh#kqfe>!,bw#wkf#bdf#lebssfbq#jm#wkfWkfpf#jm`ovgfqfdbqgofpp#le`lvog#af#vpfg#pwzof>%rvlw8pfufqbo#wjnfpqfsqfpfmw#wkfalgz= ?,kwno=wklvdkw#wl#afslsvobwjlm#leslppjajojwjfpsfq`fmwbdf#leb``fpp#wl#wkfbm#bwwfnsw#wlsqlgv`wjlm#leirvfqz,irvfqzwtl#gjeefqfmwafolmd#wl#wkffpwbaojpknfmwqfsob`jmd#wkfgfp`qjswjlm!#gfwfqnjmf#wkfbubjobaof#elqB``lqgjmd#wl#tjgf#qbmdf#le\n?gju#`obpp>!nlqf#`lnnlmozlqdbmjpbwjlmpevm`wjlmbojwztbp#`lnsofwfg#%bns8ngbpk8#sbqwj`jsbwjlmwkf#`kbqb`wfqbm#bggjwjlmbobssfbqp#wl#afeb`w#wkbw#wkfbm#f{bnsof#lepjdmjej`bmwozlmnlvpflufq>!af`bvpf#wkfz#bpzm`#>#wqvf8sqlaofnp#tjwkpffnp#wl#kbufwkf#qfpvow#le#pq`>!kwws9,,ebnjojbq#tjwkslppfppjlm#leevm`wjlm#+*#xwllh#sob`f#jmbmg#plnfwjnfppvapwbmwjbooz?psbm=?,psbm=jp#lewfm#vpfgjm#bm#bwwfnswdqfbw#gfbo#leFmujqlmnfmwbopv``fppevooz#ujqwvbooz#boo13wk#`fmwvqz/sqlefppjlmbopmf`fppbqz#wl#gfwfqnjmfg#az`lnsbwjajojwzaf`bvpf#jw#jpGj`wjlmbqz#lenlgjej`bwjlmpWkf#elooltjmdnbz#qfefq#wl9@lmpfrvfmwoz/Jmwfqmbwjlmbobowklvdk#plnfwkbw#tlvog#aftlqog$p#ejqpw`obppjejfg#bpalwwln#le#wkf+sbqwj`vobqozbojdm>!ofew!#nlpw#`lnnlmozabpjp#elq#wkfelvmgbwjlm#le`lmwqjavwjlmpslsvobqjwz#le`fmwfq#le#wkfwl#qfgv`f#wkfivqjpgj`wjlmpbssql{jnbwjlm#lmnlvpflvw>!Mft#Wfpwbnfmw`loof`wjlm#le?,psbm=?,b=?,jm#wkf#Vmjwfgejon#gjqf`wlq.pwqj`w-gwg!=kbp#affm#vpfgqfwvqm#wl#wkfbowklvdk#wkjp`kbmdf#jm#wkfpfufqbo#lwkfqavw#wkfqf#bqfvmsqf`fgfmwfgjp#pjnjobq#wlfpsf`jbooz#jmtfjdkw9#alog8jp#`boofg#wkf`lnsvwbwjlmbojmgj`bwf#wkbwqfpwqj`wfg#wl\n?nfwb#mbnf>!bqf#wzsj`booz`lmeoj`w#tjwkKltfufq/#wkf#Bm#f{bnsof#le`lnsbqfg#tjwkrvbmwjwjfp#leqbwkfq#wkbm#b`lmpwfoobwjlmmf`fppbqz#elqqfslqwfg#wkbwpsf`jej`bwjlmslojwj`bo#bmg%maps8%maps8?qfefqfm`fp#wlwkf#pbnf#zfbqDlufqmnfmw#ledfmfqbwjlm#lekbuf#mlw#affmpfufqbo#zfbqp`lnnjwnfmw#wl\n\n?vo#`obpp>!ujpvbojybwjlm2:wk#`fmwvqz/sqb`wjwjlmfqpwkbw#kf#tlvogbmg#`lmwjmvfgl``vsbwjlm#lejp#gfejmfg#bp`fmwqf#le#wkfwkf#bnlvmw#le=?gju#pwzof>!frvjubofmw#legjeefqfmwjbwfaqlvdkw#balvwnbqdjm.ofew9#bvwlnbwj`boozwklvdkw#le#bpPlnf#le#wkfpf ?gju#`obpp>!jmsvw#`obpp>!qfsob`fg#tjwkjp#lmf#le#wkffgv`bwjlm#bmgjmeovfm`fg#azqfsvwbwjlm#bp ?nfwb#mbnf>!b``lnnlgbwjlm?,gju= ?,gju=obqdf#sbqw#leJmpwjwvwf#elqwkf#pl.`boofg#bdbjmpw#wkf#Jm#wkjp#`bpf/tbp#bssljmwfg`objnfg#wl#afKltfufq/#wkjpGfsbqwnfmw#lewkf#qfnbjmjmdfeef`w#lm#wkfsbqwj`vobqoz#gfbo#tjwk#wkf ?gju#pwzof>!bonlpw#botbzpbqf#`vqqfmwozf{sqfppjlm#leskjolplskz#leelq#nlqf#wkbm`jujojybwjlmplm#wkf#jpobmgpfof`wfgJmgf{`bm#qfpvow#jm!#ubovf>!!#,=wkf#pwqv`wvqf#,=?,b=?,gju=Nbmz#le#wkfpf`bvpfg#az#wkfle#wkf#Vmjwfgpsbm#`obpp>!n`bm#af#wqb`fgjp#qfobwfg#wlaf`bnf#lmf#lejp#eqfrvfmwozojujmd#jm#wkfwkflqfwj`boozElooltjmd#wkfQfulovwjlmbqzdlufqmnfmw#jmjp#gfwfqnjmfgwkf#slojwj`bojmwqlgv`fg#jmpveej`jfmw#wlgfp`qjswjlm!=pklqw#pwlqjfppfsbqbwjlm#lebp#wl#tkfwkfqhmltm#elq#jwptbp#jmjwjboozgjpsobz9aol`hjp#bm#f{bnsofwkf#sqjm`jsbo`lmpjpwp#le#bqf`ldmjyfg#bp,algz=?,kwno=b#pvapwbmwjboqf`lmpwqv`wfgkfbg#le#pwbwfqfpjpwbm`f#wlvmgfqdqbgvbwfWkfqf#bqf#wtldqbujwbwjlmbobqf#gfp`qjafgjmwfmwjlmboozpfqufg#bp#wkf`obpp>!kfbgfqlsslpjwjlm#wlevmgbnfmwboozglnjmbwfg#wkfbmg#wkf#lwkfqboojbm`f#tjwktbp#elq`fg#wlqfpsf`wjufoz/bmg#slojwj`bojm#pvsslqw#lesflsof#jm#wkf13wk#`fmwvqz-bmg#svaojpkfgolbg@kbqwafbwwl#vmgfqpwbmgnfnafq#pwbwfpfmujqlmnfmwboejqpw#kboe#le`lvmwqjfp#bmgbq`kjwf`wvqboaf#`lmpjgfqfg`kbqb`wfqjyfg`ofbqJmwfqubobvwklqjwbwjufEfgfqbwjlm#letbp#pv``ffgfgbmg#wkfqf#bqfb#`lmpfrvfm`fwkf#Sqfpjgfmwbopl#jm`ovgfgeqff#plewtbqfpv``fppjlm#legfufolsfg#wkftbp#gfpwqlzfgbtbz#eqln#wkf8 ?,p`qjsw= ?bowklvdk#wkfzelooltfg#az#bnlqf#sltfqevoqfpvowfg#jm#bVmjufqpjwz#leKltfufq/#nbmzwkf#sqfpjgfmwKltfufq/#plnfjp#wklvdkw#wlvmwjo#wkf#fmgtbp#bmmlvm`fgbqf#jnslqwbmwbopl#jm`ovgfp=?jmsvw#wzsf>wkf#`fmwfq#le#GL#MLW#BOWFQvpfg#wl#qfefqwkfnfp,<plqw>wkbw#kbg#affmwkf#abpjp#elqkbp#gfufolsfgjm#wkf#pvnnfq`lnsbqbwjufozgfp`qjafg#wkfpv`k#bp#wklpfwkf#qfpvowjmdjp#jnslppjaofubqjlvp#lwkfqPlvwk#Beqj`bmkbuf#wkf#pbnffeef`wjufmfppjm#tkj`k#`bpf8#wf{w.bojdm9pwqv`wvqf#bmg8#ab`hdqlvmg9qfdbqgjmd#wkfpvsslqwfg#wkfjp#bopl#hmltmpwzof>!nbqdjmjm`ovgjmd#wkfabkbpb#Nfobzvmlqph#alhn/Iomlqph#mzmlqphpolufm)M(ajmbjmwfqmb`jlmbo`bojej`b`j/_m`lnvmj`b`j/_m`lmpwqv``j/_m!=?gju#`obpp>!gjpbnajdvbwjlmGlnbjmMbnf$/#$bgnjmjpwqbwjlmpjnvowbmflvpozwqbmpslqwbwjlmJmwfqmbwjlmbo#nbqdjm.alwwln9qfpslmpjajojwz?"Xfmgje^..= ?,=?nfwb#mbnf>!jnsofnfmwbwjlmjmeqbpwqv`wvqfqfsqfpfmwbwjlmalqgfq.alwwln9?,kfbg= ?algz=>kwws&0B&1E&1E?elqn#nfwklg>!nfwklg>!slpw!#,ebuj`lm-j`l!#~*8 ?,p`qjsw= -pfwBwwqjavwf+Bgnjmjpwqbwjlm>#mft#Bqqbz+*8?"Xfmgje^..= gjpsobz9aol`h8Vmelqwvmbwfoz/!=%maps8?,gju=,ebuj`lm-j`l!=>$pwzofpkffw$#jgfmwjej`bwjlm/#elq#f{bnsof/?oj=?b#kqfe>!,bm#bowfqmbwjufbp#b#qfpvow#lesw!=?,p`qjsw= wzsf>!pvanjw!# +evm`wjlm+*#xqf`lnnfmgbwjlmelqn#b`wjlm>!,wqbmpelqnbwjlmqf`lmpwqv`wjlm-pwzof-gjpsobz#B``lqgjmd#wl#kjggfm!#mbnf>!bolmd#tjwk#wkfgl`vnfmw-algz-bssql{jnbwfoz#@lnnvmj`bwjlmpslpw!#b`wjlm>!nfbmjmd#%rvlw8..?"Xfmgje^..=Sqjnf#Njmjpwfq`kbqb`wfqjpwj`?,b=#?b#`obpp>wkf#kjpwlqz#le#lmnlvpflufq>!wkf#dlufqmnfmwkqfe>!kwwsp9,,tbp#lqjdjmbooztbp#jmwqlgv`fg`obppjej`bwjlmqfsqfpfmwbwjufbqf#`lmpjgfqfg?"Xfmgje^..= gfsfmgp#lm#wkfVmjufqpjwz#le#jm#`lmwqbpw#wl#sob`fklogfq>!jm#wkf#`bpf#lejmwfqmbwjlmbo#`lmpwjwvwjlmbopwzof>!alqgfq.9#evm`wjlm+*#xAf`bvpf#le#wkf.pwqj`w-gwg!= ?wbaof#`obpp>!b``lnsbmjfg#azb``lvmw#le#wkf?p`qjsw#pq`>!,mbwvqf#le#wkf#wkf#sflsof#jm#jm#bggjwjlm#wlp*8#ip-jg#>#jg!#tjgwk>!233&!qfdbqgjmd#wkf#Qlnbm#@bwkloj`bm#jmgfsfmgfmwelooltjmd#wkf#-dje!#tjgwk>!2wkf#elooltjmd#gjp`qjnjmbwjlmbq`kbfloldj`bosqjnf#njmjpwfq-ip!=?,p`qjsw=`lnajmbwjlm#le#nbqdjmtjgwk>!`qfbwfFofnfmw+t-bwwb`kFufmw+?,b=?,wg=?,wq=pq`>!kwwsp9,,bJm#sbqwj`vobq/#bojdm>!ofew!#@yf`k#Qfsvaoj`Vmjwfg#Hjmdgln`lqqfpslmgfm`f`lm`ovgfg#wkbw-kwno!#wjwof>!+evm`wjlm#+*#x`lnfp#eqln#wkfbssoj`bwjlm#le?psbm#`obpp>!pafojfufg#wl#affnfmw+$p`qjsw$?,b= ?,oj= ?ojufqz#gjeefqfmw=?psbm#`obpp>!lswjlm#ubovf>!+bopl#hmltm#bp\n?oj=?b#kqfe>!=?jmsvw#mbnf>!pfsbqbwfg#eqlnqfefqqfg#wl#bp#ubojdm>!wls!=elvmgfq#le#wkfbwwfnswjmd#wl#`bqalm#gjl{jgf ?gju#`obpp>!`obpp>!pfbq`k.,algz= ?,kwno=lsslqwvmjwz#wl`lnnvmj`bwjlmp?,kfbg= ?algz#pwzof>!tjgwk9Wj\rVSmd#Uj\rWkw`kbmdfp#jm#wkfalqgfq.`lolq9 3!#alqgfq>!3!#?,psbm=?,gju=?tbp#gjp`lufqfg!#wzsf>!wf{w!#*8 ?,p`qjsw= Gfsbqwnfmw#le#f``ofpjbpwj`bowkfqf#kbp#affmqfpvowjmd#eqln?,algz=?,kwno=kbp#mfufq#affmwkf#ejqpw#wjnfjm#qfpslmpf#wlbvwlnbwj`booz#?,gju= ?gju#jtbp#`lmpjgfqfgsfq`fmw#le#wkf!#,=?,b=?,gju=`loof`wjlm#le#gfp`fmgfg#eqlnpf`wjlm#le#wkfb``fsw.`kbqpfwwl#af#`lmevpfgnfnafq#le#wkf#sbggjmd.qjdkw9wqbmpobwjlm#lejmwfqsqfwbwjlm#kqfe>$kwws9,,tkfwkfq#lq#mlwWkfqf#bqf#boplwkfqf#bqf#nbmzb#pnboo#mvnafqlwkfq#sbqwp#lejnslppjaof#wl##`obpp>!avwwlmol`bwfg#jm#wkf-#Kltfufq/#wkfbmg#fufmwvboozBw#wkf#fmg#le#af`bvpf#le#jwpqfsqfpfmwp#wkf?elqn#b`wjlm>!#nfwklg>!slpw!jw#jp#slppjaofnlqf#ojhfoz#wlbm#jm`qfbpf#jmkbuf#bopl#affm`lqqfpslmgp#wlbmmlvm`fg#wkbwbojdm>!qjdkw!=nbmz#`lvmwqjfpelq#nbmz#zfbqpfbqojfpw#hmltmaf`bvpf#jw#tbpsw!=?,p`qjsw=#ubojdm>!wls!#jmkbajwbmwp#leelooltjmd#zfbq ?gju#`obpp>!njoojlm#sflsof`lmwqlufqpjbo#`lm`fqmjmd#wkfbqdvf#wkbw#wkfdlufqmnfmw#bmgb#qfefqfm`f#wlwqbmpefqqfg#wlgfp`qjajmd#wkf#pwzof>!`lolq9bowklvdk#wkfqfafpw#hmltm#elqpvanjw!#mbnf>!nvowjsoj`bwjlmnlqf#wkbm#lmf#qf`ldmjwjlm#le@lvm`jo#le#wkffgjwjlm#le#wkf##?nfwb#mbnf>!Fmwfqwbjmnfmw#btbz#eqln#wkf#8nbqdjm.qjdkw9bw#wkf#wjnf#lejmufpwjdbwjlmp`lmmf`wfg#tjwkbmg#nbmz#lwkfqbowklvdk#jw#jpafdjmmjmd#tjwk#?psbm#`obpp>!gfp`fmgbmwp#le?psbm#`obpp>!j#bojdm>!qjdkw!?,kfbg= ?algz#bpsf`wp#le#wkfkbp#pjm`f#affmFvqlsfbm#Vmjlmqfnjmjp`fmw#lenlqf#gjeej`vowUj`f#Sqfpjgfmw`lnslpjwjlm#lesbppfg#wkqlvdknlqf#jnslqwbmwelmw.pjyf922s{f{sobmbwjlm#lewkf#`lm`fsw#letqjwwfm#jm#wkf\n?psbm#`obpp>!jp#lmf#le#wkf#qfpfnaobm`f#wllm#wkf#dqlvmgptkj`k#`lmwbjmpjm`ovgjmd#wkf#gfejmfg#az#wkfsvaoj`bwjlm#lenfbmp#wkbw#wkflvwpjgf#le#wkfpvsslqw#le#wkf?jmsvw#`obpp>!?psbm#`obpp>!w+Nbwk-qbmgln+*nlpw#sqlnjmfmwgfp`qjswjlm#le@lmpwbmwjmlsoftfqf#svaojpkfg?gju#`obpp>!pfbssfbqp#jm#wkf2!#kfjdkw>!2!#nlpw#jnslqwbmwtkj`k#jm`ovgfptkj`k#kbg#affmgfpwqv`wjlm#lewkf#slsvobwjlm \n?gju#`obpp>!slppjajojwz#leplnfwjnfp#vpfgbssfbq#wl#kbufpv``fpp#le#wkfjmwfmgfg#wl#afsqfpfmw#jm#wkfpwzof>!`ofbq9a ?,p`qjsw= ?tbp#elvmgfg#jmjmwfqujft#tjwk\\jg!#`lmwfmw>!`bsjwbo#le#wkf ?ojmh#qfo>!pqfofbpf#le#wkfsljmw#lvw#wkbw{NOKwwsQfrvfpwbmg#pvapfrvfmwpf`lmg#obqdfpwufqz#jnslqwbmwpsf`jej`bwjlmppvqeb`f#le#wkfbssojfg#wl#wkfelqfjdm#sloj`z\\pfwGlnbjmMbnffpwbaojpkfg#jmjp#afojfufg#wlJm#bggjwjlm#wlnfbmjmd#le#wkfjp#mbnfg#bewfqwl#sqlwf`w#wkfjp#qfsqfpfmwfgGf`obqbwjlm#lenlqf#feej`jfmw@obppjej`bwjlmlwkfq#elqnp#lekf#qfwvqmfg#wl?psbm#`obpp>!`sfqelqnbm`f#le+evm`wjlm+*#xje#bmg#lmoz#jeqfdjlmp#le#wkfofbgjmd#wl#wkfqfobwjlmp#tjwkVmjwfg#Mbwjlmppwzof>!kfjdkw9lwkfq#wkbm#wkfzsf!#`lmwfmw>!Bppl`jbwjlm#le ?,kfbg= ?algzol`bwfg#lm#wkfjp#qfefqqfg#wl+jm`ovgjmd#wkf`lm`fmwqbwjlmpwkf#jmgjujgvbobnlmd#wkf#nlpwwkbm#bmz#lwkfq,= ?ojmh#qfo>!#qfwvqm#ebopf8wkf#svqslpf#lewkf#bajojwz#wl8`lolq9 eee~ - ?psbm#`obpp>!wkf#pvaif`w#legfejmjwjlmp#le= ?ojmh#qfo>!`objn#wkbw#wkfkbuf#gfufolsfg?wbaof#tjgwk>!`fofaqbwjlm#leElooltjmd#wkf#wl#gjpwjmdvjpk?psbm#`obpp>!awbhfp#sob`f#jmvmgfq#wkf#mbnfmlwfg#wkbw#wkf=?"Xfmgje^..= pwzof>!nbqdjm.jmpwfbg#le#wkfjmwqlgv`fg#wkfwkf#sql`fpp#lejm`qfbpjmd#wkfgjeefqfm`fp#jmfpwjnbwfg#wkbwfpsf`jbooz#wkf,gju=?gju#jg>!tbp#fufmwvboozwkqlvdklvw#kjpwkf#gjeefqfm`fplnfwkjmd#wkbwpsbm=?,psbm=?,pjdmjej`bmwoz#=?,p`qjsw=  fmujqlmnfmwbo#wl#sqfufmw#wkfkbuf#affm#vpfgfpsf`jbooz#elqvmgfqpwbmg#wkfjp#fppfmwjbooztfqf#wkf#ejqpwjp#wkf#obqdfpwkbuf#affm#nbgf!#pq`>!kwws9,,jmwfqsqfwfg#bppf`lmg#kboe#le`qloojmd>!ml!#jp#`lnslpfg#leJJ/#Kloz#Qlnbmjp#f{sf`wfg#wlkbuf#wkfjq#ltmgfejmfg#bp#wkfwqbgjwjlmbooz#kbuf#gjeefqfmwbqf#lewfm#vpfgwl#fmpvqf#wkbwbdqffnfmw#tjwk`lmwbjmjmd#wkfbqf#eqfrvfmwozjmelqnbwjlm#lmf{bnsof#jp#wkfqfpvowjmd#jm#b?,b=?,oj=?,vo=#`obpp>!ellwfqbmg#fpsf`jboozwzsf>!avwwlm!#?,psbm=?,psbm=tkj`k#jm`ovgfg= ?nfwb#mbnf>!`lmpjgfqfg#wkf`bqqjfg#lvw#azKltfufq/#jw#jpaf`bnf#sbqw#lejm#qfobwjlm#wlslsvobq#jm#wkfwkf#`bsjwbo#letbp#leej`jbooztkj`k#kbp#affmwkf#Kjpwlqz#lebowfqmbwjuf#wlgjeefqfmw#eqlnwl#pvsslqw#wkfpvddfpwfg#wkbwjm#wkf#sql`fpp##?gju#`obpp>!wkf#elvmgbwjlmaf`bvpf#le#kjp`lm`fqmfg#tjwkwkf#vmjufqpjwzlsslpfg#wl#wkfwkf#`lmwf{w#le?psbm#`obpp>!swf{w!#mbnf>!r!\n\n?gju#`obpp>!wkf#p`jfmwjej`qfsqfpfmwfg#aznbwkfnbwj`jbmpfof`wfg#az#wkfwkbw#kbuf#affm=?gju#`obpp>!`gju#jg>!kfbgfqjm#sbqwj`vobq/`lmufqwfg#jmwl*8 ?,p`qjsw= ?skjolplskj`bo#pqsphlkqubwphjwj\rVSmd#Uj\rWkw<L=o=m=m<V<T<U=l=o=m=m<V<T<Ujmufpwjdb`j/_msbqwj`jsb`j/_m<V<R=n<R=l=g<Y<R<]<W<\\=m=n<T<V<R=n<R=l=g<U=k<Y<W<R<^<Y<V=m<T=m=n<Y<P=g<q<R<^<R=m=n<T<V<R=n<R=l=g=i<R<]<W<\\=m=n=`<^=l<Y<P<Y<Q<T<V<R=n<R=l<\\=c=m<Y<_<R<X<Q=c=m<V<\\=k<\\=n=`<Q<R<^<R=m=n<T<O<V=l<\\<T<Q=g<^<R<S=l<R=m=g<V<R=n<R=l<R<U=m<X<Y<W<\\=n=`<S<R<P<R=e=`=b=m=l<Y<X=m=n<^<R<]=l<\\<[<R<P=m=n<R=l<R<Q=g=o=k<\\=m=n<T<Y=n<Y=k<Y<Q<T<Y<\x7F<W<\\<^<Q<\\=c<T=m=n<R=l<T<T=m<T=m=n<Y<P<\\=l<Y=d<Y<Q<T=c<M<V<\\=k<\\=n=`<S<R=a=n<R<P=o=m<W<Y<X=o<Y=n=m<V<\\<[<\\=n=`=n<R<^<\\=l<R<^<V<R<Q<Y=k<Q<R=l<Y=d<Y<Q<T<Y<V<R=n<R=l<R<Y<R=l<_<\\<Q<R<^<V<R=n<R=l<R<P<L<Y<V<W<\\<P<\\4K5h5i5j4F4C5e5i5j4F4C5f4K4F4K5h5i5d4Z5d4U4K5h4D4]4K5i4@4K5h5i5d4K5n4U4K5h4]4_4K4J5h5i4X4K4]5o4K4F4K5h4O4U4Z4K4M4K5h4]5f4K4Z4E4K5h4F4Y5i5f5i4K5h4K4U4Z4K4M4K5h5j4F4K4J4@4K5h4O5h4U4K4D4K5h4F4_4@5f5h4K5h4O5n4_4K5i4K5h4Z4V4[4K4F4K5h5m5f4C5f5d4K5h4F4]4A5f4D4K5h4@4C5f4C4E4K5h4F4U5h5f5i4K5h4O4B4D4K4]4K5h4K5m5h4K5i4K5h4O5m5h4K5i4K5h4F4K4]5f4B4K5h4F5n5j5f4E4K5h4K5h4U4K4D4K5h4B5d4K4[4]4K5h5i4@4F5i4U4K5h4C5f5o5d4]4K5h4_5f4K4A4E4U4D4C4K5h5h5k4K5h4F4]4D5f4E4K5h4]5d4K4D4[4K5h4O4C4D5f4E4K5h4K4B4D4K4]4K5h5i4F4A4C4E4K5h4K4V4K5j5f`vqplq9sljmwfq8?,wjwof= ?nfwb#!#kqfe>!kwws9,,!=?psbm#`obpp>!nfnafqp#le#wkf#tjmglt-ol`bwjlmufqwj`bo.bojdm9,b=#\x7F#?b#kqfe>!?"gl`wzsf#kwno=nfgjb>!p`qffm!#?lswjlm#ubovf>!ebuj`lm-j`l!#,= \n\n?gju#`obpp>!`kbqb`wfqjpwj`p!#nfwklg>!dfw!#,algz= ?,kwno= pklqw`vw#j`lm!#gl`vnfmw-tqjwf+sbggjmd.alwwln9qfsqfpfmwbwjufppvanjw!#ubovf>!bojdm>!`fmwfq!#wkqlvdklvw#wkf#p`jfm`f#ej`wjlm ##?gju#`obpp>!pvanjw!#`obpp>!lmf#le#wkf#nlpw#ubojdm>!wls!=?tbp#fpwbaojpkfg*8 ?,p`qjsw= qfwvqm#ebopf8!=*-pwzof-gjpsobzaf`bvpf#le#wkf#gl`vnfmw-`llhjf?elqn#b`wjlm>!,~algzxnbqdjm938Fm`z`olsfgjb#leufqpjlm#le#wkf#-`qfbwfFofnfmw+mbnf!#`lmwfmw>!?,gju= ?,gju= bgnjmjpwqbwjuf#?,algz= ?,kwno=kjpwlqz#le#wkf#!=?jmsvw#wzsf>!slqwjlm#le#wkf#bp#sbqw#le#wkf#%maps8?b#kqfe>!lwkfq#`lvmwqjfp!= ?gju#`obpp>!?,psbm=?,psbm=?Jm#lwkfq#tlqgp/gjpsobz9#aol`h8`lmwqlo#le#wkf#jmwqlgv`wjlm#le,= ?nfwb#mbnf>!bp#tfoo#bp#wkf#jm#qf`fmw#zfbqp \n?gju#`obpp>!?,gju= \n?,gju= jmpsjqfg#az#wkfwkf#fmg#le#wkf#`lnsbwjaof#tjwkaf`bnf#hmltm#bp#pwzof>!nbqdjm9-ip!=?,p`qjsw=?#Jmwfqmbwjlmbo#wkfqf#kbuf#affmDfqnbm#obmdvbdf#pwzof>!`lolq9 @lnnvmjpw#Sbqwz`lmpjpwfmw#tjwkalqgfq>!3!#`foo#nbqdjmkfjdkw>!wkf#nbilqjwz#le!#bojdm>!`fmwfqqfobwfg#wl#wkf#nbmz#gjeefqfmw#Lqwklgl{#@kvq`kpjnjobq#wl#wkf#,= ?ojmh#qfo>!ptbp#lmf#le#wkf#vmwjo#kjp#gfbwk~*+*8 ?,p`qjsw=lwkfq#obmdvbdfp`lnsbqfg#wl#wkfslqwjlmp#le#wkfwkf#Mfwkfqobmgpwkf#nlpw#`lnnlmab`hdqlvmg9vqo+bqdvfg#wkbw#wkfp`qloojmd>!ml!#jm`ovgfg#jm#wkfMlqwk#Bnfqj`bm#wkf#mbnf#le#wkfjmwfqsqfwbwjlmpwkf#wqbgjwjlmbogfufolsnfmw#le#eqfrvfmwoz#vpfgb#`loof`wjlm#leufqz#pjnjobq#wlpvqqlvmgjmd#wkff{bnsof#le#wkjpbojdm>!`fmwfq!=tlvog#kbuf#affmjnbdf\\`bswjlm#>bwwb`kfg#wl#wkfpvddfpwjmd#wkbwjm#wkf#elqn#le#jmuloufg#jm#wkfjp#gfqjufg#eqlnmbnfg#bewfq#wkfJmwqlgv`wjlm#wlqfpwqj`wjlmp#lm#pwzof>!tjgwk9#`bm#af#vpfg#wl#wkf#`qfbwjlm#lenlpw#jnslqwbmw#jmelqnbwjlm#bmgqfpvowfg#jm#wkf`loobspf#le#wkfWkjp#nfbmp#wkbwfofnfmwp#le#wkftbp#qfsob`fg#azbmbozpjp#le#wkfjmpsjqbwjlm#elqqfdbqgfg#bp#wkfnlpw#pv``fppevohmltm#bp#%rvlw8b#`lnsqfkfmpjufKjpwlqz#le#wkf#tfqf#`lmpjgfqfgqfwvqmfg#wl#wkfbqf#qfefqqfg#wlVmplvq`fg#jnbdf= \n?gju#`obpp>!`lmpjpwp#le#wkfpwlsSqlsbdbwjlmjmwfqfpw#jm#wkfbubjobajojwz#lebssfbqp#wl#kbuffof`wqlnbdmfwj`fmbaofPfquj`fp+evm`wjlm#le#wkfJw#jp#jnslqwbmw?,p`qjsw=?,gju=evm`wjlm+*xubq#qfobwjuf#wl#wkfbp#b#qfpvow#le#wkf#slpjwjlm#leElq#f{bnsof/#jm#nfwklg>!slpw!#tbp#elooltfg#az%bns8ngbpk8#wkfwkf#bssoj`bwjlmip!=?,p`qjsw= vo=?,gju=?,gju=bewfq#wkf#gfbwktjwk#qfpsf`w#wlpwzof>!sbggjmd9jp#sbqwj`vobqozgjpsobz9jmojmf8#wzsf>!pvanjw!#jp#gjujgfg#jmwl\bTA\nzk#+\vBl\bQ\x7F*qfpslmpbajojgbgbgnjmjpwqb`j/_mjmwfqmb`jlmbofp`lqqfpslmgjfmwf\fHe\fHF\fHC\fIg\fH{\fHF\fIn\fH\\\fIa\fHY\fHU\fHB\fHR\fH\\\fIk\fH^\fIg\fH{\fIg\fHn\fHv\fIm\fHD\fHR\fHY\fH^\fIk\fHy\fHS\fHD\fHT\fH\\\fHy\fHR\fH\\\fHF\fIm\fH^\fHS\fHT\fHz\fIg\fHp\fIk\fHn\fHv\fHR\fHU\fHS\fHc\fHA\fIk\fHp\fIk\fHn\fHZ\fHR\fHB\fHS\fH^\fHU\fHB\fHR\fH\\\fIl\fHp\fHR\fH{\fH\\\fHO\fH@\fHD\fHR\fHD\fIk\fHy\fIm\fHB\fHR\fH\\\fH@\fIa\fH^\fIe\fH{\fHB\fHR\fH^\fHS\fHy\fHB\fHU\fHS\fH^\fHR\fHF\fIo\fH[\fIa\fHL\fH@\fHN\fHP\fHH\fIk\fHA\fHR\fHp\fHF\fHR\fHy\fIa\fH^\fHS\fHy\fHs\fIa\fH\\\fIk\fHD\fHz\fHS\fH^\fHR\fHG\fHJ\fI`\fH\\\fHR\fHD\fHB\fHR\fHB\fH^\fIk\fHB\fHH\fHJ\fHR\fHD\fH@\fHR\fHp\fHR\fH\\\fHY\fHS\fHy\fHR\fHT\fHy\fIa\fHC\fIg\fHn\fHv\fHR\fHU\fHH\fIk\fHF\fHU\fIm\fHm\fHv\fH@\fHH\fHR\fHC\fHR\fHT\fHn\fHY\fHR\fHJ\fHJ\fIk\fHz\fHD\fIk\fHF\fHS\fHw\fH^\fIk\fHY\fHS\fHZ\fIk\fH[\fH\\\fHR\fHp\fIa\fHC\fHe\fHH\fIa\fHH\fH\\\fHB\fIm\fHn\fH@\fHd\fHJ\fIg\fHD\fIg\fHn\fHe\fHF\fHy\fH\\\fHO\fHF\fHN\fHP\fIk\fHn\fHT\fIa\fHI\fHS\fHH\fHG\fHS\fH^\fIa\fHB\fHB\fIm\fHz\fIa\fHC\fHi\fHv\fIa\fHw\fHR\fHw\fIn\fHs\fHH\fIl\fHT\fHn\fH{\fIl\fHH\fHp\fHR\fHc\fH{\fHR\fHY\fHS\fHA\fHR\fH{\fHt\fHO\fIa\fHs\fIk\fHJ\fIn\fHT\fH\\\fIk\fHJ\fHS\fHD\fIg\fHn\fHU\fHH\fIa\fHC\fHR\fHT\fIk\fHy\fIa\fHT\fH{\fHR\fHn\fHK\fIl\fHY\fHS\fHZ\fIa\fHY\fH\\\fHR\fHH\fIk\fHn\fHJ\fId\fHs\fIa\fHT\fHD\fHy\fIa\fHZ\fHR\fHT\fHR\fHB\fHD\fIk\fHi\fHJ\fHR\fH^\fHH\fH@\fHS\fHp\fH^\fIl\fHF\fIm\fH\\\fIn\fH[\fHU\fHS\fHn\fHJ\fIl\fHB\fHS\fHH\fIa\fH\\\fHy\fHY\fHS\fHH\fHR\fH\\\fIm\fHF\fHC\fIk\fHT\fIa\fHI\fHR\fHD\fHy\fH\\\fIg\fHM\fHP\fHB\fIm\fHy\fIa\fHH\fHC\fIg\fHp\fHD\fHR\fHy\fIo\fHF\fHC\fHR\fHF\fIg\fHT\fIa\fHs\fHt\fH\\\fIk\fH^\fIn\fHy\fHR\fH\\\fIa\fHC\fHY\fHS\fHv\fHR\fH\\\fHT\fIn\fHv\fHD\fHR\fHB\fIn\fH^\fIa\fHC\fHJ\fIk\fHz\fIk\fHn\fHU\fHB\fIk\fHZ\fHR\fHT\fIa\fHy\fIn\fH^\fHB\fId\fHn\fHD\fIk\fHH\fId\fHC\fHR\fH\\\fHp\fHS\fHT\fHy\fIkqpp({no!#wjwof>!.wzsf!#`lmwfmw>!wjwof!#`lmwfmw>!bw#wkf#pbnf#wjnf-ip!=?,p`qjsw= ?!#nfwklg>!slpw!#?,psbm=?,b=?,oj=ufqwj`bo.bojdm9w,irvfqz-njm-ip!=-`oj`h+evm`wjlm+#pwzof>!sbggjmd.~*+*8 ?,p`qjsw= ?,psbm=?b#kqfe>!?b#kqfe>!kwws9,,*8#qfwvqm#ebopf8wf{w.gf`lqbwjlm9#p`qloojmd>!ml!#alqgfq.`loobspf9bppl`jbwfg#tjwk#Abkbpb#JmglmfpjbFmdojpk#obmdvbdf?wf{w#{no9psb`f>-dje!#alqgfq>!3!?,algz= ?,kwno= lufqeolt9kjggfm8jnd#pq`>!kwws9,,bggFufmwOjpwfmfqqfpslmpjaof#elq#p-ip!=?,p`qjsw= ,ebuj`lm-j`l!#,=lsfqbwjmd#pzpwfn!#pwzof>!tjgwk92wbqdfw>!\\aobmh!=Pwbwf#Vmjufqpjwzwf{w.bojdm9ofew8 gl`vnfmw-tqjwf+/#jm`ovgjmd#wkf#bqlvmg#wkf#tlqog*8 ?,p`qjsw= ?!#pwzof>!kfjdkw98lufqeolt9kjggfmnlqf#jmelqnbwjlmbm#jmwfqmbwjlmbob#nfnafq#le#wkf#lmf#le#wkf#ejqpw`bm#af#elvmg#jm#?,gju= \n\n?,gju= gjpsobz9#mlmf8!=!#,= ?ojmh#qfo>! ##+evm`wjlm+*#xwkf#26wk#`fmwvqz-sqfufmwGfebvow+obqdf#mvnafq#le#Azybmwjmf#Fnsjqf-isd\x7Fwkvna\x7Fofew\x7Fubpw#nbilqjwz#lenbilqjwz#le#wkf##bojdm>!`fmwfq!=Vmjufqpjwz#Sqfppglnjmbwfg#az#wkfPf`lmg#Tlqog#Tbqgjpwqjavwjlm#le#pwzof>!slpjwjlm9wkf#qfpw#le#wkf#`kbqb`wfqjyfg#az#qfo>!mleloolt!=gfqjufp#eqln#wkfqbwkfq#wkbm#wkf#b#`lnajmbwjlm#lepwzof>!tjgwk9233Fmdojpk.psfbhjmd`lnsvwfq#p`jfm`falqgfq>!3!#bow>!wkf#f{jpwfm`f#leGfnl`qbwj`#Sbqwz!#pwzof>!nbqdjm.Elq#wkjp#qfbplm/-ip!=?,p`qjsw= \npAzWbdMbnf+p*X3^ip!=?,p`qjsw= ?-ip!=?,p`qjsw= ojmh#qfo>!j`lm!#$#bow>$$#`obpp>$elqnbwjlm#le#wkfufqpjlmp#le#wkf#?,b=?,gju=?,gju=,sbdf= ##?sbdf= ?gju#`obpp>!`lmwaf`bnf#wkf#ejqpwabkbpb#Jmglmfpjbfmdojpk#+pjnsof*"y"W"W"["Q"U"V"@=i=l<^<\\=n=m<V<T<V<R<P<S<\\<Q<T<T=c<^<W=c<Y=n=m=c<x<R<]<\\<^<T=n=`=k<Y<W<R<^<Y<V<\\=l<\\<[<^<T=n<T=c<t<Q=n<Y=l<Q<Y=n<r=n<^<Y=n<T=n=`<Q<\\<S=l<T<P<Y=l<T<Q=n<Y=l<Q<Y=n<V<R=n<R=l<R<_<R=m=n=l<\\<Q<T=j=g<V<\\=k<Y=m=n<^<Y=o=m<W<R<^<T=c=i<S=l<R<]<W<Y<P=g<S<R<W=o=k<T=n=`=c<^<W=c=b=n=m=c<Q<\\<T<]<R<W<Y<Y<V<R<P<S<\\<Q<T=c<^<Q<T<P<\\<Q<T<Y=m=l<Y<X=m=n<^<\\4K5h5i5d4K4Z5f4U4K5h4]4J5f4_5f4E4K5h4K5j4F5n4K5h5i4X4K4]5o4K4F5o4K5h4_5f4K4]4K4F4K5h5i5o4F5d4D4E4K5h4_4U5d4C5f4E4K4A4Y4K4J5f4K4F4K5h4U4K5h5i5f4E4K5h4Y5d4F5f4K4F4K5h4K5j4F4]5j4F4K5h4F4Y4K5i5f5i4K5h4I4_5h4K5i5f4K5h5i4X4K4]5o4E4K5h5i4]4J5f4K4Fqlalwp!#`lmwfmw>!?gju#jg>!ellwfq!=wkf#Vmjwfg#Pwbwfp?jnd#pq`>!kwws9,,-isd\x7Fqjdkw\x7Fwkvna\x7F-ip!=?,p`qjsw= ?ol`bwjlm-sqlwl`loeqbnfalqgfq>!3!#p!#,= ?nfwb#mbnf>!?,b=?,gju=?,gju=?elmw.tfjdkw9alog8%rvlw8#bmg#%rvlw8gfsfmgjmd#lm#wkf#nbqdjm938sbggjmd9!#qfo>!mleloolt!#Sqfpjgfmw#le#wkf#wtfmwjfwk#`fmwvqzfujpjlm= ##?,sbdfJmwfqmfw#F{solqfqb-bpzm`#>#wqvf8 jmelqnbwjlm#balvw?gju#jg>!kfbgfq!=!#b`wjlm>!kwws9,,?b#kqfe>!kwwsp9,,?gju#jg>!`lmwfmw!?,gju= ?,gju= ?gfqjufg#eqln#wkf#?jnd#pq`>$kwws9,,b``lqgjmd#wl#wkf# ?,algz= ?,kwno= pwzof>!elmw.pjyf9p`qjsw#obmdvbdf>!Bqjbo/#Kfoufwj`b/?,b=?psbm#`obpp>!?,p`qjsw=?p`qjsw#slojwj`bo#sbqwjfpwg=?,wq=?,wbaof=?kqfe>!kwws9,,ttt-jmwfqsqfwbwjlm#leqfo>!pwzofpkffw!#gl`vnfmw-tqjwf+$?`kbqpfw>!vwe.;!= afdjmmjmd#le#wkf#qfufbofg#wkbw#wkfwfofujpjlm#pfqjfp!#qfo>!mleloolt!=#wbqdfw>!\\aobmh!=`objnjmd#wkbw#wkfkwws&0B&1E&1Ettt-nbmjefpwbwjlmp#leSqjnf#Njmjpwfq#lejmeovfm`fg#az#wkf`obpp>!`ofbqej{!=,gju= ?,gju=  wkqff.gjnfmpjlmbo@kvq`k#le#Fmdobmgle#Mlqwk#@bqlojmbprvbqf#hjolnfwqfp-bggFufmwOjpwfmfqgjpwjm`w#eqln#wkf`lnnlmoz#hmltm#bpSklmfwj`#Boskbafwgf`obqfg#wkbw#wkf`lmwqloofg#az#wkfAfmibnjm#Eqbmhojmqlof.sobzjmd#dbnfwkf#Vmjufqpjwz#lejm#Tfpwfqm#Fvqlsfsfqplmbo#`lnsvwfqSqlif`w#Dvwfmafqdqfdbqgofpp#le#wkfkbp#affm#sqlslpfgwldfwkfq#tjwk#wkf=?,oj=?oj#`obpp>!jm#plnf#`lvmwqjfpnjm-ip!=?,p`qjsw=le#wkf#slsvobwjlmleej`jbo#obmdvbdf?jnd#pq`>!jnbdfp,jgfmwjejfg#az#wkfmbwvqbo#qfplvq`fp`obppjej`bwjlm#le`bm#af#`lmpjgfqfgrvbmwvn#nf`kbmj`pMfufqwkfofpp/#wkfnjoojlm#zfbqp#bdl?,algz= ?,kwno="y"W"W"["Q"U"V"@ wbhf#bgubmwbdf#lebmg/#b``lqgjmd#wlbwwqjavwfg#wl#wkfNj`qlplew#Tjmgltpwkf#ejqpw#`fmwvqzvmgfq#wkf#`lmwqlogju#`obpp>!kfbgfqpklqwoz#bewfq#wkfmlwbaof#f{`fswjlmwfmp#le#wklvpbmgppfufqbo#gjeefqfmwbqlvmg#wkf#tlqog-qfb`kjmd#njojwbqzjplobwfg#eqln#wkflsslpjwjlm#wl#wkfwkf#Log#WfpwbnfmwBeqj`bm#Bnfqj`bmpjmpfqwfg#jmwl#wkfpfsbqbwf#eqln#wkfnfwqlslojwbm#bqfbnbhfp#jw#slppjaofb`hmltofgdfg#wkbwbqdvbaoz#wkf#nlpwwzsf>!wf{w,`pp!= wkf#JmwfqmbwjlmboB``lqgjmd#wl#wkf#sf>!wf{w,`pp!#,= `ljm`jgf#tjwk#wkfwtl.wkjqgp#le#wkfGvqjmd#wkjp#wjnf/gvqjmd#wkf#sfqjlgbmmlvm`fg#wkbw#kfwkf#jmwfqmbwjlmbobmg#nlqf#qf`fmwozafojfufg#wkbw#wkf`lmp`jlvpmfpp#bmgelqnfqoz#hmltm#bppvqqlvmgfg#az#wkfejqpw#bssfbqfg#jml``bpjlmbooz#vpfgslpjwjlm9baplovwf8!#wbqdfw>!\\aobmh!#slpjwjlm9qfobwjuf8wf{w.bojdm9`fmwfq8ib{,ojap,irvfqz,2-ab`hdqlvmg.`lolq9 wzsf>!bssoj`bwjlm,bmdvbdf!#`lmwfmw>!?nfwb#kwws.frvju>!Sqjub`z#Sloj`z?,b=f+!&0@p`qjsw#pq`>$!#wbqdfw>!\\aobmh!=Lm#wkf#lwkfq#kbmg/-isd\x7Fwkvna\x7Fqjdkw\x7F1?,gju=?gju#`obpp>!?gju#pwzof>!eolbw9mjmfwffmwk#`fmwvqz?,algz= ?,kwno= ?jnd#pq`>!kwws9,,p8wf{w.bojdm9`fmwfqelmw.tfjdkw9#alog8#B``lqgjmd#wl#wkf#gjeefqfm`f#afwtffm!#eqbnfalqgfq>!3!#!#pwzof>!slpjwjlm9ojmh#kqfe>!kwws9,,kwno7,ollpf-gwg!= gvqjmd#wkjp#sfqjlg?,wg=?,wq=?,wbaof=`olpfoz#qfobwfg#wlelq#wkf#ejqpw#wjnf8elmw.tfjdkw9alog8jmsvw#wzsf>!wf{w!#?psbm#pwzof>!elmw.lmqfbgzpwbwf`kbmdf\n?gju#`obpp>!`ofbqgl`vnfmw-ol`bwjlm-#Elq#f{bnsof/#wkf#b#tjgf#ubqjfwz#le#?"GL@WZSF#kwno= ?%maps8%maps8%maps8!=?b#kqfe>!kwws9,,pwzof>!eolbw9ofew8`lm`fqmfg#tjwk#wkf>kwws&0B&1E&1Ettt-jm#slsvobq#`vowvqfwzsf>!wf{w,`pp!#,=jw#jp#slppjaof#wl#Kbqubqg#Vmjufqpjwzwzofpkffw!#kqfe>!,wkf#nbjm#`kbqb`wfqL{elqg#Vmjufqpjwz##mbnf>!hfztlqgp!#`pwzof>!wf{w.bojdm9wkf#Vmjwfg#Hjmdglnefgfqbo#dlufqmnfmw?gju#pwzof>!nbqdjm#gfsfmgjmd#lm#wkf#gfp`qjswjlm#le#wkf?gju#`obpp>!kfbgfq-njm-ip!=?,p`qjsw=gfpwqv`wjlm#le#wkfpojdkwoz#gjeefqfmwjm#b``lqgbm`f#tjwkwfof`lnnvmj`bwjlmpjmgj`bwfp#wkbw#wkfpklqwoz#wkfqfbewfqfpsf`jbooz#jm#wkf#Fvqlsfbm#`lvmwqjfpKltfufq/#wkfqf#bqfpq`>!kwws9,,pwbwj`pvddfpwfg#wkbw#wkf!#pq`>!kwws9,,ttt-b#obqdf#mvnafq#le#Wfof`lnnvmj`bwjlmp!#qfo>!mleloolt!#wKloz#Qlnbm#Fnsfqlqbonlpw#f{`ovpjufoz!#alqgfq>!3!#bow>!Pf`qfwbqz#le#Pwbwf`vonjmbwjmd#jm#wkf@JB#Tlqog#Eb`wallhwkf#nlpw#jnslqwbmwbmmjufqpbqz#le#wkfpwzof>!ab`hdqlvmg.?oj=?fn=?b#kqfe>!,wkf#Bwobmwj`#L`fbmpwqj`woz#psfbhjmd/pklqwoz#afelqf#wkfgjeefqfmw#wzsfp#lewkf#Lwwlnbm#Fnsjqf=?jnd#pq`>!kwws9,,Bm#Jmwqlgv`wjlm#wl`lmpfrvfm`f#le#wkfgfsbqwvqf#eqln#wkf@lmefgfqbwf#Pwbwfpjmgjdfmlvp#sflsofpSql`ffgjmdp#le#wkfjmelqnbwjlm#lm#wkfwkflqjfp#kbuf#affmjmuloufnfmw#jm#wkfgjujgfg#jmwl#wkqffbgib`fmw#`lvmwqjfpjp#qfpslmpjaof#elqgjpplovwjlm#le#wkf`loobalqbwjlm#tjwktjgfoz#qfdbqgfg#bpkjp#`lmwfnslqbqjfpelvmgjmd#nfnafq#leGlnjmj`bm#Qfsvaoj`dfmfqbooz#b``fswfgwkf#slppjajojwz#lebqf#bopl#bubjobaofvmgfq#`lmpwqv`wjlmqfpwlqbwjlm#le#wkfwkf#dfmfqbo#svaoj`jp#bonlpw#fmwjqfozsbppfp#wkqlvdk#wkfkbp#affm#pvddfpwfg`lnsvwfq#bmg#ujgflDfqnbmj`#obmdvbdfp#b``lqgjmd#wl#wkf#gjeefqfmw#eqln#wkfpklqwoz#bewfqtbqgpkqfe>!kwwsp9,,ttt-qf`fmw#gfufolsnfmwAlbqg#le#Gjqf`wlqp?gju#`obpp>!pfbq`k\x7F#?b#kqfe>!kwws9,,Jm#sbqwj`vobq/#wkfNvowjsof#ellwmlwfplq#lwkfq#pvapwbm`fwklvpbmgp#le#zfbqpwqbmpobwjlm#le#wkf?,gju= ?,gju=  ?b#kqfe>!jmgf{-skstbp#fpwbaojpkfg#jmnjm-ip!=?,p`qjsw= sbqwj`jsbwf#jm#wkfb#pwqlmd#jmeovfm`fpwzof>!nbqdjm.wls9qfsqfpfmwfg#az#wkfdqbgvbwfg#eqln#wkfWqbgjwjlmbooz/#wkfFofnfmw+!p`qjsw!*8Kltfufq/#pjm`f#wkf,gju= ?,gju= ?gju#ofew8#nbqdjm.ofew9sqlwf`wjlm#bdbjmpw38#ufqwj`bo.bojdm9Vmelqwvmbwfoz/#wkfwzsf>!jnbdf,{.j`lm,gju= ?gju#`obpp>!#`obpp>!`ofbqej{!=?gju#`obpp>!ellwfq\n\n?,gju= \n\n?,gju= wkf#nlwjlm#sj`wvqf<}=f<W<_<\\=l=m<V<T<]=f<W<_<\\=l=m<V<T<H<Y<X<Y=l<\\=j<T<T<Q<Y=m<V<R<W=`<V<R=m<R<R<]=e<Y<Q<T<Y=m<R<R<]=e<Y<Q<T=c<S=l<R<_=l<\\<P<P=g<r=n<S=l<\\<^<T=n=`<]<Y=m<S<W<\\=n<Q<R<P<\\=n<Y=l<T<\\<W=g<S<R<[<^<R<W=c<Y=n<S<R=m<W<Y<X<Q<T<Y=l<\\<[<W<T=k<Q=g=i<S=l<R<X=o<V=j<T<T<S=l<R<_=l<\\<P<P<\\<S<R<W<Q<R=m=n=`=b<Q<\\=i<R<X<T=n=m=c<T<[<]=l<\\<Q<Q<R<Y<Q<\\=m<Y<W<Y<Q<T=c<T<[<P<Y<Q<Y<Q<T=c<V<\\=n<Y<_<R=l<T<T<|<W<Y<V=m<\\<Q<X=l\fHJ\fIa\fHY\fHR\fH\\\fHR\fHB\fId\fHD\fIm\fHi\fH^\fHF\fIa\fH\\\fHJ\fHR\fHD\fHA\fHR\fH\\\fHH\fIl\fHC\fHi\fHD\fIm\fHJ\fIk\fHZ\fHU\fHS\fHD\fIa\fHJ\fIl\fHk\fHn\fHM\fHS\fHC\fHR\fHJ\fHS\fH^\fIa\fH^\fIl\fHi\fHK\fHS\fHy\fHR\fH\\\fHY\fIl\fHM\fHS\fHC\fIg\fHv\fHS\fHs\fIa\fHL\fIk\fHT\fHB\fHR\fHv\fHR\fH\\\fHp\fHn\fHy\fIa\fHZ\fHD\fHJ\fIm\fHD\fHS\fHC\fHR\fHF\fIa\fH\\\fHC\fIg\fH{\fHi\fHD\fIm\fHT\fHR\fH\\\fH}\fHD\fH^\fHR\fHk\fHD\fHF\fHR\fH\\\fIa\fHs\fIl\fHZ\fH\\\fIa\fHH\fIg\fHn\fH^\fIg\fHy\fHT\fHA\fHR\fHG\fHP\fIa\fH^\fId\fHZ\fHZ\fH\\\fIa\fHH\fIk\fHn\fHF\fIa\fH\\\fHJ\fIk\fHZ\fHF\fIa\fH^\fIk\fHC\fH\\\fHy\fIk\fHn\fHJ\fIa\fH\\\fHT\fIa\fHI\fHS\fHH\fHS\fHe\fHH\fIa\fHF\fHR\fHJ\fHe\fHD\fIa\fHU\fIk\fHn\fHv\fHS\fHs\fIa\fHL\fHR\fHC\fHR\fHH\fIa\fH\\\fHR\fHp\fIa\fHC\fHR\fHJ\fHR\fHF\fIm\fH\\\fHR\fHD\fIk\fHp\fIg\fHM\fHP\fIk\fHn\fHi\fHD\fIm\fHY\fHR\fHJ\fHZ\fIa\fH\\\fIk\fHO\fIl\fHZ\fHS\fHy\fIa\fH[\fHR\fHT\fH\\\fHy\fHR\fH\\\fIl\fHT\fHn\fH{\fIa\fH\\\fHU\fHF\fH\\\fHS\fHO\fHR\fHB\fH@\fIa\fH\\\fHR\fHn\fHM\fH@\fHv\fIa\fHv\fIg\fHn\fHe\fHF\fH^\fH@\fIa\fHK\fHB\fHn\fHH\fIa\fH\\\fIl\fHT\fHn\fHF\fH\\\fIa\fHy\fHe\fHB\fIa\fHB\fIl\fHJ\fHB\fHR\fHK\fIa\fHC\fHB\fHT\fHU\fHR\fHC\fHH\fHR\fHZ\fH@\fIa\fHJ\fIg\fHn\fHB\fIl\fHM\fHS\fHC\fHR\fHj\fHd\fHF\fIl\fHc\fH^\fHB\fIg\fH@\fHR\fHk\fH^\fHT\fHn\fHz\fIa\fHC\fHR\fHj\fHF\fH\\\fIk\fHZ\fHD\fHi\fHD\fIm\fH@\fHn\fHK\fH@\fHR\fHp\fHP\fHR\fH\\\fHD\fHY\fIl\fHD\fHH\fHB\fHF\fIa\fH\\\fHB\fIm\fHz\fHF\fIa\fH\\\fHZ\fIa\fHD\fHF\fH\\\fHS\fHY\fHR\fH\\\fHD\fIm\fHy\fHT\fHR\fHD\fHT\fHB\fH\\\fIa\fHI\fHD\fHj\fHC\fIg\fHp\fHS\fHH\fHT\fIg\fHB\fHY\fHR\fH\\4K5h5i4X4K4]5o4K4F4K5h5i5j4F4C5f4K4F4K5h5o5i4D5f5d4F4]4K5h5i4X4K5k4C4K4F4U4C4C4K5h4^5d4K4]4U4C4C4K5h4]4C5d4C4K5h4I4_5h4K5i5f4E4K5h5m5d4F5d4X5d4D4K5h5i4_4K4D5n4K4F4K5h5i4U5h5d5i4K4F4K5h5i4_5h4_5h4K4F4K5h4@4]4K5m5f5o4_4K5h4K4_5h4K5i5f4E4K5h4K4F4Y4K5h4K4Fhfztlqgp!#`lmwfmw>!t0-lqd,2:::,{kwno!=?b#wbqdfw>!\\aobmh!#wf{w,kwno8#`kbqpfw>!#wbqdfw>!\\aobmh!=?wbaof#`foosbggjmd>!bvwl`lnsofwf>!lee!#wf{w.bojdm9#`fmwfq8wl#obpw#ufqpjlm#az#ab`hdqlvmg.`lolq9# !#kqfe>!kwws9,,ttt-,gju=?,gju=?gju#jg>?b#kqfe>! !#`obpp>!!=?jnd#pq`>!kwws9,,`qjsw!#pq`>!kwws9,, ?p`qjsw#obmdvbdf>!,,FM!#!kwws9,,ttt-tfm`lgfVQJ@lnslmfmw+!#kqfe>!ibubp`qjsw9?gju#`obpp>!`lmwfmwgl`vnfmw-tqjwf+$?p`slpjwjlm9#baplovwf8p`qjsw#pq`>!kwws9,,#pwzof>!nbqdjm.wls9-njm-ip!=?,p`qjsw= ?,gju= ?gju#`obpp>!t0-lqd,2:::,{kwno!#  ?,algz= ?,kwno=gjpwjm`wjlm#afwtffm,!#wbqdfw>!\\aobmh!=?ojmh#kqfe>!kwws9,,fm`lgjmd>!vwe.;!<= t-bggFufmwOjpwfmfq<b`wjlm>!kwws9,,ttt-j`lm!#kqfe>!kwws9,,#pwzof>!ab`hdqlvmg9wzsf>!wf{w,`pp!#,= nfwb#sqlsfqwz>!ld9w?jmsvw#wzsf>!wf{w!##pwzof>!wf{w.bojdm9wkf#gfufolsnfmw#le#wzofpkffw!#wzsf>!wfkwno8#`kbqpfw>vwe.;jp#`lmpjgfqfg#wl#afwbaof#tjgwk>!233&!#Jm#bggjwjlm#wl#wkf#`lmwqjavwfg#wl#wkf#gjeefqfm`fp#afwtffmgfufolsnfmw#le#wkf#Jw#jp#jnslqwbmw#wl#?,p`qjsw= ?p`qjsw##pwzof>!elmw.pjyf92=?,psbm=?psbm#jg>daOjaqbqz#le#@lmdqfpp?jnd#pq`>!kwws9,,jnFmdojpk#wqbmpobwjlmB`bgfnz#le#P`jfm`fpgju#pwzof>!gjpsobz9`lmpwqv`wjlm#le#wkf-dfwFofnfmwAzJg+jg*jm#`lmivm`wjlm#tjwkFofnfmw+$p`qjsw$*8#?nfwb#sqlsfqwz>!ld9<}=f<W<_<\\=l=m<V<T #wzsf>!wf{w!#mbnf>!=Sqjub`z#Sloj`z?,b=bgnjmjpwfqfg#az#wkffmbaofPjmdofQfrvfpwpwzof>%rvlw8nbqdjm9?,gju=?,gju=?,gju=?=?jnd#pq`>!kwws9,,j#pwzof>%rvlw8eolbw9qfefqqfg#wl#bp#wkf#wlwbo#slsvobwjlm#lejm#Tbpkjmdwlm/#G-@-#pwzof>!ab`hdqlvmg.bnlmd#lwkfq#wkjmdp/lqdbmjybwjlm#le#wkfsbqwj`jsbwfg#jm#wkfwkf#jmwqlgv`wjlm#lejgfmwjejfg#tjwk#wkfej`wjlmbo#`kbqb`wfq#L{elqg#Vmjufqpjwz#njpvmgfqpwbmgjmd#leWkfqf#bqf/#kltfufq/pwzofpkffw!#kqfe>!,@lovnajb#Vmjufqpjwzf{sbmgfg#wl#jm`ovgfvpvbooz#qfefqqfg#wljmgj`bwjmd#wkbw#wkfkbuf#pvddfpwfg#wkbwbeejojbwfg#tjwk#wkf`lqqfobwjlm#afwtffmmvnafq#le#gjeefqfmw=?,wg=?,wq=?,wbaof=Qfsvaoj`#le#Jqfobmg ?,p`qjsw= ?p`qjsw#vmgfq#wkf#jmeovfm`f`lmwqjavwjlm#wl#wkfLeej`jbo#tfapjwf#lekfbgrvbqwfqp#le#wkf`fmwfqfg#bqlvmg#wkfjnsoj`bwjlmp#le#wkfkbuf#affm#gfufolsfgEfgfqbo#Qfsvaoj`#leaf`bnf#jm`qfbpjmdoz`lmwjmvbwjlm#le#wkfMlwf/#kltfufq/#wkbwpjnjobq#wl#wkbw#le#`bsbajojwjfp#le#wkfb``lqgbm`f#tjwk#wkfsbqwj`jsbmwp#jm#wkfevqwkfq#gfufolsnfmwvmgfq#wkf#gjqf`wjlmjp#lewfm#`lmpjgfqfgkjp#zlvmdfq#aqlwkfq?,wg=?,wq=?,wbaof=?b#kwws.frvju>![.VB.skzpj`bo#sqlsfqwjfple#Aqjwjpk#@lovnajbkbp#affm#`qjwj`jyfg+tjwk#wkf#f{`fswjlmrvfpwjlmp#balvw#wkfsbppjmd#wkqlvdk#wkf3!#`foosbggjmd>!3!#wklvpbmgp#le#sflsofqfgjqf`wp#kfqf-#Elqkbuf#`kjogqfm#vmgfq&0F&0@,p`qjsw&0F!**8?b#kqfe>!kwws9,,ttt-?oj=?b#kqfe>!kwws9,,pjwf\\mbnf!#`lmwfmw>!wf{w.gf`lqbwjlm9mlmfpwzof>!gjpsobz9#mlmf?nfwb#kwws.frvju>![.mft#Gbwf+*-dfwWjnf+*#wzsf>!jnbdf,{.j`lm!?,psbm=?psbm#`obpp>!obmdvbdf>!ibubp`qjswtjmglt-ol`bwjlm-kqfe?b#kqfe>!ibubp`qjsw9..= ?p`qjsw#wzsf>!w?b#kqfe>$kwws9,,ttt-klqw`vw#j`lm!#kqfe>!?,gju= ?gju#`obpp>!?p`qjsw#pq`>!kwws9,,!#qfo>!pwzofpkffw!#w?,gju= ?p`qjsw#wzsf>,b=#?b#kqfe>!kwws9,,#booltWqbmpsbqfm`z>![.VB.@lnsbwjaof!#`lmqfobwjlmpkjs#afwtffm ?,p`qjsw= ?p`qjsw#?,b=?,oj=?,vo=?,gju=bppl`jbwfg#tjwk#wkf#sqldqbnnjmd#obmdvbdf?,b=?b#kqfe>!kwws9,,?,b=?,oj=?oj#`obpp>!elqn#b`wjlm>!kwws9,,?gju#pwzof>!gjpsobz9wzsf>!wf{w!#mbnf>!r!?wbaof#tjgwk>!233&!#ab`hdqlvmg.slpjwjlm9!#alqgfq>!3!#tjgwk>!qfo>!pklqw`vw#j`lm!#k5=?vo=?oj=?b#kqfe>!##?nfwb#kwws.frvju>!`pp!#nfgjb>!p`qffm!#qfpslmpjaof#elq#wkf#!#wzsf>!bssoj`bwjlm,!#pwzof>!ab`hdqlvmg.kwno8#`kbqpfw>vwe.;!#booltwqbmpsbqfm`z>!pwzofpkffw!#wzsf>!wf ?nfwb#kwws.frvju>!=?,psbm=?psbm#`obpp>!3!#`foopsb`jmd>!3!=8 ?,p`qjsw= ?p`qjsw#plnfwjnfp#`boofg#wkfglfp#mlw#mf`fppbqjozElq#nlqf#jmelqnbwjlmbw#wkf#afdjmmjmd#le#?"GL@WZSF#kwno=?kwnosbqwj`vobqoz#jm#wkf#wzsf>!kjggfm!#mbnf>!ibubp`qjsw9uljg+3*8!feef`wjufmfpp#le#wkf#bvwl`lnsofwf>!lee!#dfmfqbooz#`lmpjgfqfg=?jmsvw#wzsf>!wf{w!#!=?,p`qjsw= ?p`qjswwkqlvdklvw#wkf#tlqog`lnnlm#njp`lm`fswjlmbppl`jbwjlm#tjwk#wkf?,gju= ?,gju= ?gju#`gvqjmd#kjp#ojefwjnf/`lqqfpslmgjmd#wl#wkfwzsf>!jnbdf,{.j`lm!#bm#jm`qfbpjmd#mvnafqgjsolnbwj`#qfobwjlmpbqf#lewfm#`lmpjgfqfgnfwb#`kbqpfw>!vwe.;!#?jmsvw#wzsf>!wf{w!#f{bnsofp#jm`ovgf#wkf!=?jnd#pq`>!kwws9,,jsbqwj`jsbwjlm#jm#wkfwkf#fpwbaojpknfmw#le ?,gju= ?gju#`obpp>!%bns8maps8%bns8maps8wl#gfwfqnjmf#tkfwkfqrvjwf#gjeefqfmw#eqlnnbqhfg#wkf#afdjmmjmdgjpwbm`f#afwtffm#wkf`lmwqjavwjlmp#wl#wkf`lmeoj`w#afwtffm#wkftjgfoz#`lmpjgfqfg#wltbp#lmf#le#wkf#ejqpwtjwk#ubqzjmd#gfdqffpkbuf#psf`vobwfg#wkbw+gl`vnfmw-dfwFofnfmwsbqwj`jsbwjmd#jm#wkflqjdjmbooz#gfufolsfgfwb#`kbqpfw>!vwe.;!=#wzsf>!wf{w,`pp!#,= jmwfq`kbmdfbaoz#tjwknlqf#`olpfoz#qfobwfgpl`jbo#bmg#slojwj`bowkbw#tlvog#lwkfqtjpfsfqsfmgj`vobq#wl#wkfpwzof#wzsf>!wf{w,`ppwzsf>!pvanjw!#mbnf>!ebnjojfp#qfpjgjmd#jmgfufolsjmd#`lvmwqjfp`lnsvwfq#sqldqbnnjmdf`lmlnj`#gfufolsnfmwgfwfqnjmbwjlm#le#wkfelq#nlqf#jmelqnbwjlmlm#pfufqbo#l``bpjlmpslqwvdv/Fp#+Fvqlsfv*<O<V=l<\\={<Q=m=`<V<\\=o<V=l<\\={<Q=m=`<V<\\<L<R=m=m<T<U=m<V<R<U<P<\\=n<Y=l<T<\\<W<R<^<T<Q=h<R=l<P<\\=j<T<T=o<S=l<\\<^<W<Y<Q<T=c<Q<Y<R<]=i<R<X<T<P<R<T<Q=h<R=l<P<\\=j<T=c<t<Q=h<R=l<P<\\=j<T=c<L<Y=m<S=o<]<W<T<V<T<V<R<W<T=k<Y=m=n<^<R<T<Q=h<R=l<P<\\=j<T=b=n<Y=l=l<T=n<R=l<T<T<X<R=m=n<\\=n<R=k<Q<R4K5h5i4F5d4K4@4C5d5j4K5h4K4X4F4]4K5o4K4F4K5h4K5n4F4]4K4A4K4Fkwno8#`kbqpfw>VWE.;!#pfwWjnflvw+evm`wjlm+*gjpsobz9jmojmf.aol`h8?jmsvw#wzsf>!pvanjw!#wzsf#>#$wf{w,ibubp`qj?jnd#pq`>!kwws9,,ttt-!#!kwws9,,ttt-t0-lqd,pklqw`vw#j`lm!#kqfe>!!#bvwl`lnsofwf>!lee!#?,b=?,gju=?gju#`obpp>?,b=?,oj= ?oj#`obpp>!`pp!#wzsf>!wf{w,`pp!#?elqn#b`wjlm>!kwws9,,{w,`pp!#kqfe>!kwws9,,ojmh#qfo>!bowfqmbwf!# ?p`qjsw#wzsf>!wf{w,#lm`oj`h>!ibubp`qjsw9+mft#Gbwf*-dfwWjnf+*~kfjdkw>!2!#tjgwk>!2!#Sflsof$p#Qfsvaoj`#le##?b#kqfe>!kwws9,,ttt-wf{w.gf`lqbwjlm9vmgfqwkf#afdjmmjmd#le#wkf#?,gju= ?,gju= ?,gju= fpwbaojpknfmw#le#wkf#?,gju=?,gju=?,gju=?,g ujftslqwxnjm.kfjdkw9 ?p`qjsw#pq`>!kwws9,,lswjlm=?lswjlm#ubovf>lewfm#qfefqqfg#wl#bp#,lswjlm= ?lswjlm#ubov?"GL@WZSF#kwno= ?"..XJmwfqmbwjlmbo#Bjqslqw= ?b#kqfe>!kwws9,,ttt?,b=?b#kqfe>!kwws9,,t\fTL\fT^\fTE\fT^\fUh\fT{\fTN\roI\ro|\roL\ro{\roO\rov\rot\nAOGx\bTA\nzk#+\vUmGx*\fHD\fHS\fH\\\fIa\fHJ\fIk\fHZ\fHM\fHR\fHe\fHD\fH^\fIg\fHM\fHy\fIa\fH[\fIk\fHH\fIa\fH\\\fHp\fHR\fHD\fHy\fHR\fH\\\fIl\fHT\fHn\fH@\fHn\fHK\fHS\fHH\fHT\fIa\fHI\fHR\fHF\fHD\fHR\fHT\fIa\fHY\fIl\fHy\fHR\fH\\\fHT\fHn\fHT\fIa\fHy\fH\\\fHO\fHT\fHR\fHB\fH{\fIa\fH\\\fIl\fHv\fHS\fHs\fIa\fHL\fIg\fHn\fHY\fHS\fHp\fIa\fHr\fHR\fHD\fHi\fHB\fIk\fH\\\fHS\fHy\fHR\fHY\fHS\fHA\fHS\fHD\fIa\fHD\fH{\fHR\fHM\fHS\fHC\fHR\fHm\fHy\fIa\fHC\fIg\fHn\fHy\fHS\fHT\fIm\fH\\\fHy\fIa\fH[\fHR\fHF\fHU\fIm\fHm\fHv\fHH\fIl\fHF\fIa\fH\\\fH@\fHn\fHK\fHD\fHs\fHS\fHF\fIa\fHF\fHO\fIl\fHy\fIa\fH\\\fHS\fHy\fIk\fHs\fHF\fIa\fH\\\fHR\fH\\\fHn\fHA\fHF\fIa\fH\\\fHR\fHF\fIa\fHH\fHB\fHR\fH^\fHS\fHy\fIg\fHn\fH\\\fHG\fHP\fIa\fHH\fHR\fH\\\fHD\fHS\fH\\\fIa\fHB\fHR\fHO\fH^\fHS\fHB\fHS\fHs\fIk\fHMgfp`qjswjlm!#`lmwfmw>!gl`vnfmw-ol`bwjlm-sqlw-dfwFofnfmwpAzWbdMbnf+?"GL@WZSF#kwno= ?kwno#?nfwb#`kbqpfw>!vwe.;!=9vqo!#`lmwfmw>!kwws9,,-`pp!#qfo>!pwzofpkffw!pwzof#wzsf>!wf{w,`pp!=wzsf>!wf{w,`pp!#kqfe>!t0-lqd,2:::,{kwno!#{nowzsf>!wf{w,ibubp`qjsw!#nfwklg>!dfw!#b`wjlm>!ojmh#qfo>!pwzofpkffw!##>#gl`vnfmw-dfwFofnfmwwzsf>!jnbdf,{.j`lm!#,=`foosbggjmd>!3!#`foops-`pp!#wzsf>!wf{w,`pp!#?,b=?,oj=?oj=?b#kqfe>!!#tjgwk>!2!#kfjdkw>!2!!=?b#kqfe>!kwws9,,ttt-pwzof>!gjpsobz9mlmf8!=bowfqmbwf!#wzsf>!bssoj.,,T0@,,GWG#[KWNO#2-3#foopsb`jmd>!3!#`foosbg#wzsf>!kjggfm!#ubovf>!,b=%maps8?psbm#qlof>!p ?jmsvw#wzsf>!kjggfm!#obmdvbdf>!IbubP`qjsw!##gl`vnfmw-dfwFofnfmwpAd>!3!#`foopsb`jmd>!3!#zsf>!wf{w,`pp!#nfgjb>!wzsf>$wf{w,ibubp`qjsw$tjwk#wkf#f{`fswjlm#le#zsf>!wf{w,`pp!#qfo>!pw#kfjdkw>!2!#tjgwk>!2!#>$(fm`lgfVQJ@lnslmfmw+?ojmh#qfo>!bowfqmbwf!# algz/#wq/#jmsvw/#wf{wnfwb#mbnf>!qlalwp!#`lmnfwklg>!slpw!#b`wjlm>!= ?b#kqfe>!kwws9,,ttt-`pp!#qfo>!pwzofpkffw!#?,gju=?,gju=?gju#`obppobmdvbdf>!ibubp`qjsw!=bqjb.kjggfm>!wqvf!=.[?qjsw!#wzsf>!wf{w,ibubpo>38~*+*8 +evm`wjlm+*xab`hdqlvmg.jnbdf9#vqo+,b=?,oj=?oj=?b#kqfe>!k\n\n?oj=?b#kqfe>!kwws9,,bwlq!#bqjb.kjggfm>!wqv=#?b#kqfe>!kwws9,,ttt-obmdvbdf>!ibubp`qjsw!#,lswjlm= ?lswjlm#ubovf,gju=?,gju=?gju#`obpp>qbwlq!#bqjb.kjggfm>!wqf>+mft#Gbwf*-dfwWjnf+*slqwvdv/Fp#+gl#Aqbpjo*<R=l<_<\\<Q<T<[<\\=j<T<T<^<R<[<P<R<Z<Q<R=m=n=`<R<]=l<\\<[<R<^<\\<Q<T=c=l<Y<_<T=m=n=l<\\=j<T<T<^<R<[<P<R<Z<Q<R=m=n<T<R<]=c<[<\\=n<Y<W=`<Q<\\?"GL@WZSF#kwno#SVAOJ@#!mw.Wzsf!#`lmwfmw>!wf{w,?nfwb#kwws.frvju>!@lmwfqbmpjwjlmbo,,FM!#!kwws9?kwno#{nomp>!kwws9,,ttt.,,T0@,,GWG#[KWNO#2-3#WGWG,{kwno2.wqbmpjwjlmbo,,ttt-t0-lqd,WQ,{kwno2,sf#>#$wf{w,ibubp`qjsw$8?nfwb#mbnf>!gfp`qjswjlmsbqfmwMlgf-jmpfqwAfelqf?jmsvw#wzsf>!kjggfm!#mbip!#wzsf>!wf{w,ibubp`qj+gl`vnfmw*-qfbgz+evm`wjp`qjsw#wzsf>!wf{w,ibubpjnbdf!#`lmwfmw>!kwws9,,VB.@lnsbwjaof!#`lmwfmw>wno8#`kbqpfw>vwe.;!#,= ojmh#qfo>!pklqw`vw#j`lm?ojmh#qfo>!pwzofpkffw!#?,p`qjsw= ?p`qjsw#wzsf>>#gl`vnfmw-`qfbwfFofnfm?b#wbqdfw>!\\aobmh!#kqfe>#gl`vnfmw-dfwFofnfmwpAjmsvw#wzsf>!wf{w!#mbnf>b-wzsf#>#$wf{w,ibubp`qjmsvw#wzsf>!kjggfm!#mbnfkwno8#`kbqpfw>vwe.;!#,=gwg!= ?kwno#{nomp>!kwws.,,T0@,,GWG#KWNO#7-32#WfmwpAzWbdMbnf+$p`qjsw$*jmsvw#wzsf>!kjggfm!#mbn?p`qjsw#wzsf>!wf{w,ibubp!#pwzof>!gjpsobz9mlmf8!=gl`vnfmw-dfwFofnfmwAzJg+>gl`vnfmw-`qfbwfFofnfmw+$#wzsf>$wf{w,ibubp`qjsw$jmsvw#wzsf>!wf{w!#mbnf>!g-dfwFofnfmwpAzWbdMbnf+pmj`bo!#kqfe>!kwws9,,ttt-@,,GWG#KWNO#7-32#Wqbmpjw?pwzof#wzsf>!wf{w,`pp!= ?pwzof#wzsf>!wf{w,`pp!=jlmbo-gwg!= ?kwno#{nomp>kwws.frvju>!@lmwfmw.Wzsfgjmd>!3!#`foopsb`jmd>!3!kwno8#`kbqpfw>vwe.;!#,= #pwzof>!gjpsobz9mlmf8!=??oj=?b#kqfe>!kwws9,,ttt-#wzsf>$wf{w,ibubp`qjsw$=<X<Y=c=n<Y<W=`<Q<R=m=n<T=m<R<R=n<^<Y=n=m=n<^<T<T<S=l<R<T<[<^<R<X=m=n<^<\\<]<Y<[<R<S<\\=m<Q<R=m=n<T\fHF\fIm\fHT\fIa\fHH\fHS\fHy\fHR\fHy\fHR\fHn\fH{\fIa\fH\\\fIk\fHT\fHe\fHD\fIa\fHU\fIg\fHn\fHD\fIk\fHY\fHS\fHK\fHR\fHD\fHT\fHA\fHR\fHG\fHS\fHy\fIa\fHT\fHS\fHn\fH{\fHT\fIm\fH\\\fHy\fIa\fH[\fHS\fHH\fHy\fIe\fHF\fIl\fH\\\fHR\fHk\fHs\fHY\fHS\fHp\fIa\fHr\fHR\fHF\fHD\fHy\fHR\fH\\\fIa\fH\\\fHY\fHR\fHd\fHT\fHy\fIa\fH\\\fHS\fHC\fHH\fHR',"\u06F7%\u018C'T%\x85'W%\xD7%O%g%\xA6&\u0193%\u01E5&>&*&'&^&\x88\u0178\u0C3E&\u01AD&\u0192&)&^&%&'&\x82&P&1&\xB1&3&]&m&u&E&t&C&\xCF&V&V&/&>&6&\u0F76\u177Co&p&@&E&M&P&x&@&F&e&\xCC&7&:&(&D&0&C&)&.&F&-&1&(&L&F&1\u025E*\u03EA\u21F3&\u1372&K&;&)&E&H&P&0&?&9&V&\x81&-&v&a&,&E&)&?&=&'&'&B&\u0D2E&\u0503&\u0316*&*8&%&%&&&%,)&\x9A&>&\x86&7&]&F&2&>&J&6&n&2&%&?&\x8E&2&6&J&g&-&0&,&*&J&*&O&)&6&(&<&B&N&.&P&@&2&.&W&M&%\u053C\x84(,(<&,&\u03DA&\u18C7&-&,(%&(&%&(\u013B0&X&D&\x81&j&'&J&(&.&B&3&Z&R&h&3&E&E&<\xC6-\u0360\u1EF3&%8?&@&,&Z&@&0&J&,&^&x&_&6&C&6&C\u072C\u2A25&f&-&-&-&-&,&J&2&8&z&8&C&Y&8&-&d&\u1E78\xCC-&7&1&F&7&t&W&7&I&.&.&^&=\u0F9C\u19D3&8(>&/&/&\u077B')'\u1065')'%@/&0&%\u043E\u09C0*&*@&C\u053D\u05D4\u0274\u05EB4\u0DD7\u071A\u04D16\u0D84&/\u0178\u0303Z&*%\u0246\u03FF&\u0134&1\xA8\u04B4\u0174",I,"AAAAKKLLKKKKKJJIHHIHHGGFF"),N_(a),B_(E_(a),I)}function tf(a,I){return a<=I?a:I}function S_(a,I,k,S,E){a.set(k.slice(S,E),I)}function $w(a,I,k,S){if(a==null)return-1;let E=tf(a.offset+S,a.data.length),G=E-a.offset;return I.set(a.data.subarray(a.offset,E),k),a.offset+=G,G}function x_(a){return 0}function E_(a){return a}function A_(a){return 1}function O_(a){return 1}function N_(a){}function H_(a){let I=a.length,k=new Int8Array(I);for(let S=0;S<I;++S)k[S]=a.charCodeAt(S);return k}function R_(a,I){let k=new jt;if(Y(k,new t(a)),I){let se=I.customDictionary;se&&R(k,se)}let S=0,E=[];for(;;){let se=new Int8Array(16384);if(E.push(se),k.output=se,k.outputOffset=0,k.outputLength=16384,k.outputUsed=0,it(k),S+=k.outputUsed,k.outputUsed<16384)break}re(k);let G=new Int8Array(S),Z=0;for(let se=0;se<E.length;++se){let we=E[se],ue=tf(S,Z+16384)-Z;ue<16384?G.set(we.subarray(0,ue),Z):G.set(we,Z),Z+=ue}return G}return R_},dg=qT();var rl=Te(om());var wg={brotli:{mode:0,quality:8,lgwin:22}},$f,ep=class extends Zr{constructor(e){super(e);this.name="brotli";this.extensions=["br"];this.contentEncodings=["br"];this.isSupported=!0;this.options=e}async preload(){$f=$f||this.options?.modules?.brotli,$f||console.warn(`${this.name} library not installed`)}async compress(e){if(!Rn&&this.options.brotli?.useZlib){let r=await vi(rl.default.brotliCompress)(e);return Jr(r)}return this.compressSync(e)}compressSync(e){if(!Rn&&this.options.brotli?.useZlib){let f=rl.default.brotliCompressSync(e);return Jr(f)}let r={...wg.brotli,...this.options?.brotli},n=new Uint8Array(e);if(!$f)throw new Error("brotli compression: brotli module not installed");return $f.compress(n,r).buffer}async decompress(e){if(!Rn&&this.options.brotli?.useZlib){let r=await vi(rl.default.brotliDecompress)(e);return Jr(r)}return this.decompressSync(e)}decompressSync(e){if(!Rn&&this.options.brotli?.useZlib){let f=rl.default.brotliDecompressSync(e);return Jr(f)}let r={...wg.brotli,...this.options?.brotli},n=new Uint8Array(e);return $f?$f.decompress(n,r).buffer:dg(n,void 0).buffer}};var np=Te(Bg()),ip=class extends Zr{constructor(e){super(e);this.name="snappy";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return(0,np.compress)(e)}decompressSync(e){return(0,np.uncompress)(e)}};var zT=407708164,fl,ol=class extends Zr{constructor(e){super(e);this.name="lz4";this.extensions=["lz4"];this.contentEncodings=["x-lz4"];this.isSupported=!0;if(this.options=e,fl=fl||this.options?.modules?.lz4js,!fl)throw new Error(this.name)}compressSync(e){let r=new Uint8Array(e);return fl.compress(r).buffer}decompressSync(e,r){try{let n=this.checkMagicNumber(e),i=new Uint8Array(e);if(n)return fl.decompress(i,r).buffer;if(!r){let s=new Error("Need to provide maxSize");throw this.improveError(s)}let f=new Uint8Array(r),o=this.decodeBlock(i,f);return f=f.slice(0,o),Jr(f)}catch(n){throw this.improveError(n)}}decodeBlock(e,r,n,i){n=n||0,i=i||e.length-n;let f=0;for(let o=n;o<i;){let s=e[o++],l=s>>4;if(l>0){let T=l+240;for(;T===255;)T=e[o++],l+=T;let y=o+l;for(;o<y;)r[f++]=e[o++];if(o===i)return f}let p=e[o++]|e[o++]<<8;if(p===0||p>f)return-(o-2);let u=s&15,b=u+240;for(;b===255;)b=e[o++],u+=b;let c=f-p,h=f+u+4;for(;f<h;)r[f++]=r[c++]}return f}checkMagicNumber(e){return new Uint32Array(e.slice(0,4))[0]===zT}};var fp,op,sp=class extends Zr{constructor(e){super(e);this.name="zstd";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e,fp=this.options?.modules?.["zstd-codec"],fp||console.warn(`${this.name} library not installed`)}async preload(){!op&&fp&&(op=await new Promise(e=>fp.run(r=>e(r))))}compressSync(e){let r=new op.Simple,n=new Uint8Array(e);return r.compress(n).buffer}decompressSync(e){let r=new op.Simple,n=new Uint8Array(e);return r.decompress(n).buffer}};var Ug=Te(Mg());function JT(t){return Buffer.from(t)}function ZT(t){return Buffer.isBuffer(t)?new Uint8Array(t.buffer,t.byteOffset,t.length).slice().buffer:t}var dp={lz4js:Ug.default},vm={UNCOMPRESSED:new Da,GZIP:new $a,SNAPPY:new ip,BROTLI:new ep({modules:dp}),LZ4:new ol({modules:dp}),LZ4_RAW:new ol({modules:dp}),ZSTD:new sp({modules:dp})};async function wp(t,e,r){let n=vm[t];if(!n)throw new Error(`parquet: invalid compression method: ${t}`);let i=ZT(e),f=await n.decompress(i,r);return JT(f)}var hp=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function At(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}function qt(t,e){return e={exports:{}},t(e,e.exports),e.exports}var XT=tB,QT=nB,$T=oB,ii=[],vn=[],eB=typeof Uint8Array!="undefined"?Uint8Array:Array,_m="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(ro=0,Lg=_m.length;ro<Lg;++ro)ii[ro]=_m[ro],vn[_m.charCodeAt(ro)]=ro;var ro,Lg;vn["-".charCodeAt(0)]=62;vn["_".charCodeAt(0)]=63;function Cg(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");r===-1&&(r=e);var n=r===e?0:4-r%4;return[r,n]}function tB(t){var e=Cg(t),r=e[0],n=e[1];return(r+n)*3/4-n}function rB(t,e,r){return(e+r)*3/4-r}function nB(t){var e,r=Cg(t),n=r[0],i=r[1],f=new eB(rB(t,n,i)),o=0,s=i>0?n-4:n,l;for(l=0;l<s;l+=4)e=vn[t.charCodeAt(l)]<<18|vn[t.charCodeAt(l+1)]<<12|vn[t.charCodeAt(l+2)]<<6|vn[t.charCodeAt(l+3)],f[o++]=e>>16&255,f[o++]=e>>8&255,f[o++]=e&255;return i===2&&(e=vn[t.charCodeAt(l)]<<2|vn[t.charCodeAt(l+1)]>>4,f[o++]=e&255),i===1&&(e=vn[t.charCodeAt(l)]<<10|vn[t.charCodeAt(l+1)]<<4|vn[t.charCodeAt(l+2)]>>2,f[o++]=e>>8&255,f[o++]=e&255),f}function iB(t){return ii[t>>18&63]+ii[t>>12&63]+ii[t>>6&63]+ii[t&63]}function fB(t,e,r){for(var n,i=[],f=e;f<r;f+=3)n=(t[f]<<16&16711680)+(t[f+1]<<8&65280)+(t[f+2]&255),i.push(iB(n));return i.join("")}function oB(t){for(var e,r=t.length,n=r%3,i=[],f=16383,o=0,s=r-n;o<s;o+=f)i.push(fB(t,o,o+f>s?s:o+f));return n===1?(e=t[r-1],i.push(ii[e>>2]+ii[e<<4&63]+"==")):n===2&&(e=(t[r-2]<<8)+t[r-1],i.push(ii[e>>10]+ii[e>>4&63]+ii[e<<2&63]+"=")),i.join("")}var qm={byteLength:XT,toByteArray:QT,fromByteArray:$T},sB=function(e,r,n,i,f){var o,s,l=f*8-i-1,p=(1<<l)-1,u=p>>1,b=-7,c=n?f-1:0,h=n?-1:1,T=e[r+c];for(c+=h,o=T&(1<<-b)-1,T>>=-b,b+=l;b>0;o=o*256+e[r+c],c+=h,b-=8);for(s=o&(1<<-b)-1,o>>=-b,b+=i;b>0;s=s*256+e[r+c],c+=h,b-=8);if(o===0)o=1-u;else{if(o===p)return s?NaN:(T?-1:1)*(1/0);s=s+Math.pow(2,i),o=o-u}return(T?-1:1)*s*Math.pow(2,o-i)},lB=function(e,r,n,i,f,o){var s,l,p,u=o*8-f-1,b=(1<<u)-1,c=b>>1,h=f===23?Math.pow(2,-24)-Math.pow(2,-77):0,T=i?0:o-1,y=i?1:-1,N=r<0||r===0&&1/r<0?1:0;for(r=Math.abs(r),isNaN(r)||r===1/0?(l=isNaN(r)?1:0,s=b):(s=Math.floor(Math.log(r)/Math.LN2),r*(p=Math.pow(2,-s))<1&&(s--,p*=2),s+c>=1?r+=h/p:r+=h*Math.pow(2,1-c),r*p>=2&&(s++,p/=2),s+c>=b?(l=0,s=b):s+c>=1?(l=(r*p-1)*Math.pow(2,f),s=s+c):(l=r*Math.pow(2,c-1)*Math.pow(2,f),s=0));f>=8;e[n+T]=l&255,T+=y,l/=256,f-=8);for(s=s<<f|l,u+=f;u>0;e[n+T]=s&255,T+=y,s/=256,u-=8);e[n+T-y]|=N*128},zo={read:sB,write:lB},le=qt(function(t,e){var r=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=o,e.SlowBuffer=N,e.INSPECT_MAX_BYTES=50;var n=2147483647;e.kMaxLength=n,o.TYPED_ARRAY_SUPPORT=i(),!o.TYPED_ARRAY_SUPPORT&&typeof console!="undefined"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function i(){try{var v=new Uint8Array(1),m={foo:function(){return 42}};return Object.setPrototypeOf(m,Uint8Array.prototype),Object.setPrototypeOf(v,m),v.foo()===42}catch{return!1}}Object.defineProperty(o.prototype,"parent",{enumerable:!0,get:function(){if(!!o.isBuffer(this))return this.buffer}}),Object.defineProperty(o.prototype,"offset",{enumerable:!0,get:function(){if(!!o.isBuffer(this))return this.byteOffset}});function f(v){if(v>n)throw new RangeError('The value "'+v+'" is invalid for option "size"');var m=new Uint8Array(v);return Object.setPrototypeOf(m,o.prototype),m}function o(v,m,d){if(typeof v=="number"){if(typeof m=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return u(v)}return s(v,m,d)}o.poolSize=8192;function s(v,m,d){if(typeof v=="string")return b(v,m);if(ArrayBuffer.isView(v))return c(v);if(v==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+babelHelpers.typeof(v));if(xe(v,ArrayBuffer)||v&&xe(v.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(xe(v,SharedArrayBuffer)||v&&xe(v.buffer,SharedArrayBuffer)))return h(v,m,d);if(typeof v=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var q=v.valueOf&&v.valueOf();if(q!=null&&q!==v)return o.from(q,m,d);var z=T(v);if(z)return z;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof v[Symbol.toPrimitive]=="function")return o.from(v[Symbol.toPrimitive]("string"),m,d);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+babelHelpers.typeof(v))}o.from=function(v,m,d){return s(v,m,d)},Object.setPrototypeOf(o.prototype,Uint8Array.prototype),Object.setPrototypeOf(o,Uint8Array);function l(v){if(typeof v!="number")throw new TypeError('"size" argument must be of type number');if(v<0)throw new RangeError('The value "'+v+'" is invalid for option "size"')}function p(v,m,d){return l(v),v<=0?f(v):m!==void 0?typeof d=="string"?f(v).fill(m,d):f(v).fill(m):f(v)}o.alloc=function(v,m,d){return p(v,m,d)};function u(v){return l(v),f(v<0?0:y(v)|0)}o.allocUnsafe=function(v){return u(v)},o.allocUnsafeSlow=function(v){return u(v)};function b(v,m){if((typeof m!="string"||m==="")&&(m="utf8"),!o.isEncoding(m))throw new TypeError("Unknown encoding: "+m);var d=P(v,m)|0,q=f(d),z=q.write(v,m);return z!==d&&(q=q.slice(0,z)),q}function c(v){for(var m=v.length<0?0:y(v.length)|0,d=f(m),q=0;q<m;q+=1)d[q]=v[q]&255;return d}function h(v,m,d){if(m<0||v.byteLength<m)throw new RangeError('"offset" is outside of buffer bounds');if(v.byteLength<m+(d||0))throw new RangeError('"length" is outside of buffer bounds');var q;return m===void 0&&d===void 0?q=new Uint8Array(v):d===void 0?q=new Uint8Array(v,m):q=new Uint8Array(v,m,d),Object.setPrototypeOf(q,o.prototype),q}function T(v){if(o.isBuffer(v)){var m=y(v.length)|0,d=f(m);return d.length===0||v.copy(d,0,0,m),d}if(v.length!==void 0)return typeof v.length!="number"||xt(v.length)?f(0):c(v);if(v.type==="Buffer"&&Array.isArray(v.data))return c(v.data)}function y(v){if(v>=n)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+n.toString(16)+" bytes");return v|0}function N(v){return+v!=v&&(v=0),o.alloc(+v)}o.isBuffer=function(m){return m!=null&&m._isBuffer===!0&&m!==o.prototype},o.compare=function(m,d){if(xe(m,Uint8Array)&&(m=o.from(m,m.offset,m.byteLength)),xe(d,Uint8Array)&&(d=o.from(d,d.offset,d.byteLength)),!o.isBuffer(m)||!o.isBuffer(d))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(m===d)return 0;for(var q=m.length,z=d.length,$=0,ee=Math.min(q,z);$<ee;++$)if(m[$]!==d[$]){q=m[$],z=d[$];break}return q<z?-1:z<q?1:0},o.isEncoding=function(m){switch(String(m).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},o.concat=function(m,d){if(!Array.isArray(m))throw new TypeError('"list" argument must be an Array of Buffers');if(m.length===0)return o.alloc(0);var q;if(d===void 0)for(d=0,q=0;q<m.length;++q)d+=m[q].length;var z=o.allocUnsafe(d),$=0;for(q=0;q<m.length;++q){var ee=m[q];if(xe(ee,Uint8Array)&&(ee=o.from(ee)),!o.isBuffer(ee))throw new TypeError('"list" argument must be an Array of Buffers');ee.copy(z,$),$+=ee.length}return z};function P(v,m){if(o.isBuffer(v))return v.length;if(ArrayBuffer.isView(v)||xe(v,ArrayBuffer))return v.byteLength;if(typeof v!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+babelHelpers.typeof(v));var d=v.length,q=arguments.length>2&&arguments[2]===!0;if(!q&&d===0)return 0;for(var z=!1;;)switch(m){case"ascii":case"latin1":case"binary":return d;case"utf8":case"utf-8":return ae(v).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return d*2;case"hex":return d>>>1;case"base64":return $i(v).length;default:if(z)return q?-1:ae(v).length;m=(""+m).toLowerCase(),z=!0}}o.byteLength=P;function R(v,m,d){var q=!1;if((m===void 0||m<0)&&(m=0),m>this.length||((d===void 0||d>this.length)&&(d=this.length),d<=0)||(d>>>=0,m>>>=0,d<=m))return"";for(v||(v="utf8");;)switch(v){case"hex":return x(this,m,d);case"utf8":case"utf-8":return w(this,m,d);case"ascii":return M(this,m,d);case"latin1":case"binary":return Q(this,m,d);case"base64":return A(this,m,d);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Se(this,m,d);default:if(q)throw new TypeError("Unknown encoding: "+v);v=(v+"").toLowerCase(),q=!0}}o.prototype._isBuffer=!0;function Y(v,m,d){var q=v[m];v[m]=v[d],v[d]=q}o.prototype.swap16=function(){var m=this.length;if(m%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var d=0;d<m;d+=2)Y(this,d,d+1);return this},o.prototype.swap32=function(){var m=this.length;if(m%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var d=0;d<m;d+=4)Y(this,d,d+3),Y(this,d+1,d+2);return this},o.prototype.swap64=function(){var m=this.length;if(m%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var d=0;d<m;d+=8)Y(this,d,d+7),Y(this,d+1,d+6),Y(this,d+2,d+5),Y(this,d+3,d+4);return this},o.prototype.toString=function(){var m=this.length;return m===0?"":arguments.length===0?w(this,0,m):R.apply(this,arguments)},o.prototype.toLocaleString=o.prototype.toString,o.prototype.equals=function(m){if(!o.isBuffer(m))throw new TypeError("Argument must be a Buffer");return this===m?!0:o.compare(this,m)===0},o.prototype.inspect=function(){var m="",d=e.INSPECT_MAX_BYTES;return m=this.toString("hex",0,d).replace(/(.{2})/g,"$1 ").trim(),this.length>d&&(m+=" ... "),"<Buffer "+m+">"},r&&(o.prototype[r]=o.prototype.inspect),o.prototype.compare=function(m,d,q,z,$){if(xe(m,Uint8Array)&&(m=o.from(m,m.offset,m.byteLength)),!o.isBuffer(m))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+babelHelpers.typeof(m));if(d===void 0&&(d=0),q===void 0&&(q=m?m.length:0),z===void 0&&(z=0),$===void 0&&($=this.length),d<0||q>m.length||z<0||$>this.length)throw new RangeError("out of range index");if(z>=$&&d>=q)return 0;if(z>=$)return-1;if(d>=q)return 1;if(d>>>=0,q>>>=0,z>>>=0,$>>>=0,this===m)return 0;for(var ee=$-z,Ye=q-d,Re=Math.min(ee,Ye),mt=this.slice(z,$),tr=m.slice(d,q),ce=0;ce<Re;++ce)if(mt[ce]!==tr[ce]){ee=mt[ce],Ye=tr[ce];break}return ee<Ye?-1:Ye<ee?1:0};function re(v,m,d,q,z){if(v.length===0)return-1;if(typeof d=="string"?(q=d,d=0):d>2147483647?d=2147483647:d<-2147483648&&(d=-2147483648),d=+d,xt(d)&&(d=z?0:v.length-1),d<0&&(d=v.length+d),d>=v.length){if(z)return-1;d=v.length-1}else if(d<0)if(z)d=0;else return-1;if(typeof m=="string"&&(m=o.from(m,q)),o.isBuffer(m))return m.length===0?-1:W(v,m,d,q,z);if(typeof m=="number")return m=m&255,typeof Uint8Array.prototype.indexOf=="function"?z?Uint8Array.prototype.indexOf.call(v,m,d):Uint8Array.prototype.lastIndexOf.call(v,m,d):W(v,[m],d,q,z);throw new TypeError("val must be string, number or Buffer")}function W(v,m,d,q,z){var $=1,ee=v.length,Ye=m.length;if(q!==void 0&&(q=String(q).toLowerCase(),q==="ucs2"||q==="ucs-2"||q==="utf16le"||q==="utf-16le")){if(v.length<2||m.length<2)return-1;$=2,ee/=2,Ye/=2,d/=2}function Re(_,B){return $===1?_[B]:_.readUInt16BE(B*$)}var mt;if(z){var tr=-1;for(mt=d;mt<ee;mt++)if(Re(v,mt)===Re(m,tr===-1?0:mt-tr)){if(tr===-1&&(tr=mt),mt-tr+1===Ye)return tr*$}else tr!==-1&&(mt-=mt-tr),tr=-1}else for(d+Ye>ee&&(d=ee-Ye),mt=d;mt>=0;mt--){for(var ce=!0,Hn=0;Hn<Ye;Hn++)if(Re(v,mt+Hn)!==Re(m,Hn)){ce=!1;break}if(ce)return mt}return-1}o.prototype.includes=function(m,d,q){return this.indexOf(m,d,q)!==-1},o.prototype.indexOf=function(m,d,q){return re(this,m,d,q,!0)},o.prototype.lastIndexOf=function(m,d,q){return re(this,m,d,q,!1)};function O(v,m,d,q){d=Number(d)||0;var z=v.length-d;q?(q=Number(q),q>z&&(q=z)):q=z;var $=m.length;q>$/2&&(q=$/2);for(var ee=0;ee<q;++ee){var Ye=parseInt(m.substr(ee*2,2),16);if(xt(Ye))return ee;v[d+ee]=Ye}return ee}function te(v,m,d,q){return bt(ae(m,v.length-d),v,d,q)}function L(v,m,d,q){return bt(St(m),v,d,q)}function ne(v,m,d,q){return L(v,m,d,q)}function j(v,m,d,q){return bt($i(m),v,d,q)}function g(v,m,d,q){return bt(Qi(m,v.length-d),v,d,q)}o.prototype.write=function(m,d,q,z){if(d===void 0)z="utf8",q=this.length,d=0;else if(q===void 0&&typeof d=="string")z=d,q=this.length,d=0;else if(isFinite(d))d=d>>>0,isFinite(q)?(q=q>>>0,z===void 0&&(z="utf8")):(z=q,q=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var $=this.length-d;if((q===void 0||q>$)&&(q=$),m.length>0&&(q<0||d<0)||d>this.length)throw new RangeError("Attempt to write outside buffer bounds");z||(z="utf8");for(var ee=!1;;)switch(z){case"hex":return O(this,m,d,q);case"utf8":case"utf-8":return te(this,m,d,q);case"ascii":return L(this,m,d,q);case"latin1":case"binary":return ne(this,m,d,q);case"base64":return j(this,m,d,q);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return g(this,m,d,q);default:if(ee)throw new TypeError("Unknown encoding: "+z);z=(""+z).toLowerCase(),ee=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function A(v,m,d){return m===0&&d===v.length?qm.fromByteArray(v):qm.fromByteArray(v.slice(m,d))}function w(v,m,d){d=Math.min(v.length,d);for(var q=[],z=m;z<d;){var $=v[z],ee=null,Ye=$>239?4:$>223?3:$>191?2:1;if(z+Ye<=d){var Re,mt,tr,ce;switch(Ye){case 1:$<128&&(ee=$);break;case 2:Re=v[z+1],(Re&192)==128&&(ce=($&31)<<6|Re&63,ce>127&&(ee=ce));break;case 3:Re=v[z+1],mt=v[z+2],(Re&192)==128&&(mt&192)==128&&(ce=($&15)<<12|(Re&63)<<6|mt&63,ce>2047&&(ce<55296||ce>57343)&&(ee=ce));break;case 4:Re=v[z+1],mt=v[z+2],tr=v[z+3],(Re&192)==128&&(mt&192)==128&&(tr&192)==128&&(ce=($&15)<<18|(Re&63)<<12|(mt&63)<<6|tr&63,ce>65535&&ce<1114112&&(ee=ce))}}ee===null?(ee=65533,Ye=1):ee>65535&&(ee-=65536,q.push(ee>>>10&1023|55296),ee=56320|ee&1023),q.push(ee),z+=Ye}return C(q)}var F=4096;function C(v){var m=v.length;if(m<=F)return String.fromCharCode.apply(String,v);for(var d="",q=0;q<m;)d+=String.fromCharCode.apply(String,v.slice(q,q+=F));return d}function M(v,m,d){var q="";d=Math.min(v.length,d);for(var z=m;z<d;++z)q+=String.fromCharCode(v[z]&127);return q}function Q(v,m,d){var q="";d=Math.min(v.length,d);for(var z=m;z<d;++z)q+=String.fromCharCode(v[z]);return q}function x(v,m,d){var q=v.length;(!m||m<0)&&(m=0),(!d||d<0||d>q)&&(d=q);for(var z="",$=m;$<d;++$)z+=it[v[$]];return z}function Se(v,m,d){for(var q=v.slice(m,d),z="",$=0;$<q.length;$+=2)z+=String.fromCharCode(q[$]+q[$+1]*256);return z}o.prototype.slice=function(m,d){var q=this.length;m=~~m,d=d===void 0?q:~~d,m<0?(m+=q,m<0&&(m=0)):m>q&&(m=q),d<0?(d+=q,d<0&&(d=0)):d>q&&(d=q),d<m&&(d=m);var z=this.subarray(m,d);return Object.setPrototypeOf(z,o.prototype),z};function ie(v,m,d){if(v%1!=0||v<0)throw new RangeError("offset is not uint");if(v+m>d)throw new RangeError("Trying to access beyond buffer length")}o.prototype.readUIntLE=function(m,d,q){m=m>>>0,d=d>>>0,q||ie(m,d,this.length);for(var z=this[m],$=1,ee=0;++ee<d&&($*=256);)z+=this[m+ee]*$;return z},o.prototype.readUIntBE=function(m,d,q){m=m>>>0,d=d>>>0,q||ie(m,d,this.length);for(var z=this[m+--d],$=1;d>0&&($*=256);)z+=this[m+--d]*$;return z},o.prototype.readUInt8=function(m,d){return m=m>>>0,d||ie(m,1,this.length),this[m]},o.prototype.readUInt16LE=function(m,d){return m=m>>>0,d||ie(m,2,this.length),this[m]|this[m+1]<<8},o.prototype.readUInt16BE=function(m,d){return m=m>>>0,d||ie(m,2,this.length),this[m]<<8|this[m+1]},o.prototype.readUInt32LE=function(m,d){return m=m>>>0,d||ie(m,4,this.length),(this[m]|this[m+1]<<8|this[m+2]<<16)+this[m+3]*16777216},o.prototype.readUInt32BE=function(m,d){return m=m>>>0,d||ie(m,4,this.length),this[m]*16777216+(this[m+1]<<16|this[m+2]<<8|this[m+3])},o.prototype.readIntLE=function(m,d,q){m=m>>>0,d=d>>>0,q||ie(m,d,this.length);for(var z=this[m],$=1,ee=0;++ee<d&&($*=256);)z+=this[m+ee]*$;return $*=128,z>=$&&(z-=Math.pow(2,8*d)),z},o.prototype.readIntBE=function(m,d,q){m=m>>>0,d=d>>>0,q||ie(m,d,this.length);for(var z=d,$=1,ee=this[m+--z];z>0&&($*=256);)ee+=this[m+--z]*$;return $*=128,ee>=$&&(ee-=Math.pow(2,8*d)),ee},o.prototype.readInt8=function(m,d){return m=m>>>0,d||ie(m,1,this.length),this[m]&128?(255-this[m]+1)*-1:this[m]},o.prototype.readInt16LE=function(m,d){m=m>>>0,d||ie(m,2,this.length);var q=this[m]|this[m+1]<<8;return q&32768?q|4294901760:q},o.prototype.readInt16BE=function(m,d){m=m>>>0,d||ie(m,2,this.length);var q=this[m+1]|this[m]<<8;return q&32768?q|4294901760:q},o.prototype.readInt32LE=function(m,d){return m=m>>>0,d||ie(m,4,this.length),this[m]|this[m+1]<<8|this[m+2]<<16|this[m+3]<<24},o.prototype.readInt32BE=function(m,d){return m=m>>>0,d||ie(m,4,this.length),this[m]<<24|this[m+1]<<16|this[m+2]<<8|this[m+3]},o.prototype.readFloatLE=function(m,d){return m=m>>>0,d||ie(m,4,this.length),zo.read(this,m,!0,23,4)},o.prototype.readFloatBE=function(m,d){return m=m>>>0,d||ie(m,4,this.length),zo.read(this,m,!1,23,4)},o.prototype.readDoubleLE=function(m,d){return m=m>>>0,d||ie(m,8,this.length),zo.read(this,m,!0,52,8)},o.prototype.readDoubleBE=function(m,d){return m=m>>>0,d||ie(m,8,this.length),zo.read(this,m,!1,52,8)};function U(v,m,d,q,z,$){if(!o.isBuffer(v))throw new TypeError('"buffer" argument must be a Buffer instance');if(m>z||m<$)throw new RangeError('"value" argument is out of bounds');if(d+q>v.length)throw new RangeError("Index out of range")}o.prototype.writeUIntLE=function(m,d,q,z){if(m=+m,d=d>>>0,q=q>>>0,!z){var $=Math.pow(2,8*q)-1;U(this,m,d,q,$,0)}var ee=1,Ye=0;for(this[d]=m&255;++Ye<q&&(ee*=256);)this[d+Ye]=m/ee&255;return d+q},o.prototype.writeUIntBE=function(m,d,q,z){if(m=+m,d=d>>>0,q=q>>>0,!z){var $=Math.pow(2,8*q)-1;U(this,m,d,q,$,0)}var ee=q-1,Ye=1;for(this[d+ee]=m&255;--ee>=0&&(Ye*=256);)this[d+ee]=m/Ye&255;return d+q},o.prototype.writeUInt8=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,1,255,0),this[d]=m&255,d+1},o.prototype.writeUInt16LE=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,2,65535,0),this[d]=m&255,this[d+1]=m>>>8,d+2},o.prototype.writeUInt16BE=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,2,65535,0),this[d]=m>>>8,this[d+1]=m&255,d+2},o.prototype.writeUInt32LE=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,4,4294967295,0),this[d+3]=m>>>24,this[d+2]=m>>>16,this[d+1]=m>>>8,this[d]=m&255,d+4},o.prototype.writeUInt32BE=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,4,4294967295,0),this[d]=m>>>24,this[d+1]=m>>>16,this[d+2]=m>>>8,this[d+3]=m&255,d+4},o.prototype.writeIntLE=function(m,d,q,z){if(m=+m,d=d>>>0,!z){var $=Math.pow(2,8*q-1);U(this,m,d,q,$-1,-$)}var ee=0,Ye=1,Re=0;for(this[d]=m&255;++ee<q&&(Ye*=256);)m<0&&Re===0&&this[d+ee-1]!==0&&(Re=1),this[d+ee]=(m/Ye>>0)-Re&255;return d+q},o.prototype.writeIntBE=function(m,d,q,z){if(m=+m,d=d>>>0,!z){var $=Math.pow(2,8*q-1);U(this,m,d,q,$-1,-$)}var ee=q-1,Ye=1,Re=0;for(this[d+ee]=m&255;--ee>=0&&(Ye*=256);)m<0&&Re===0&&this[d+ee+1]!==0&&(Re=1),this[d+ee]=(m/Ye>>0)-Re&255;return d+q},o.prototype.writeInt8=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,1,127,-128),m<0&&(m=255+m+1),this[d]=m&255,d+1},o.prototype.writeInt16LE=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,2,32767,-32768),this[d]=m&255,this[d+1]=m>>>8,d+2},o.prototype.writeInt16BE=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,2,32767,-32768),this[d]=m>>>8,this[d+1]=m&255,d+2},o.prototype.writeInt32LE=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,4,2147483647,-2147483648),this[d]=m&255,this[d+1]=m>>>8,this[d+2]=m>>>16,this[d+3]=m>>>24,d+4},o.prototype.writeInt32BE=function(m,d,q){return m=+m,d=d>>>0,q||U(this,m,d,4,2147483647,-2147483648),m<0&&(m=4294967295+m+1),this[d]=m>>>24,this[d+1]=m>>>16,this[d+2]=m>>>8,this[d+3]=m&255,d+4};function K(v,m,d,q,z,$){if(d+q>v.length)throw new RangeError("Index out of range");if(d<0)throw new RangeError("Index out of range")}function Ie(v,m,d,q,z){return m=+m,d=d>>>0,z||K(v,m,d,4),zo.write(v,m,d,q,23,4),d+4}o.prototype.writeFloatLE=function(m,d,q){return Ie(this,m,d,!0,q)},o.prototype.writeFloatBE=function(m,d,q){return Ie(this,m,d,!1,q)};function oe(v,m,d,q,z){return m=+m,d=d>>>0,z||K(v,m,d,8),zo.write(v,m,d,q,52,8),d+8}o.prototype.writeDoubleLE=function(m,d,q){return oe(this,m,d,!0,q)},o.prototype.writeDoubleBE=function(m,d,q){return oe(this,m,d,!1,q)},o.prototype.copy=function(m,d,q,z){if(!o.isBuffer(m))throw new TypeError("argument should be a Buffer");if(q||(q=0),!z&&z!==0&&(z=this.length),d>=m.length&&(d=m.length),d||(d=0),z>0&&z<q&&(z=q),z===q||m.length===0||this.length===0)return 0;if(d<0)throw new RangeError("targetStart out of bounds");if(q<0||q>=this.length)throw new RangeError("Index out of range");if(z<0)throw new RangeError("sourceEnd out of bounds");z>this.length&&(z=this.length),m.length-d<z-q&&(z=m.length-d+q);var $=z-q;if(this===m&&typeof Uint8Array.prototype.copyWithin=="function")this.copyWithin(d,q,z);else if(this===m&&q<d&&d<z)for(var ee=$-1;ee>=0;--ee)m[ee+d]=this[ee+q];else Uint8Array.prototype.set.call(m,this.subarray(q,z),d);return $},o.prototype.fill=function(m,d,q,z){if(typeof m=="string"){if(typeof d=="string"?(z=d,d=0,q=this.length):typeof q=="string"&&(z=q,q=this.length),z!==void 0&&typeof z!="string")throw new TypeError("encoding must be a string");if(typeof z=="string"&&!o.isEncoding(z))throw new TypeError("Unknown encoding: "+z);if(m.length===1){var $=m.charCodeAt(0);(z==="utf8"&&$<128||z==="latin1")&&(m=$)}}else typeof m=="number"?m=m&255:typeof m=="boolean"&&(m=Number(m));if(d<0||this.length<d||this.length<q)throw new RangeError("Out of range index");if(q<=d)return this;d=d>>>0,q=q===void 0?this.length:q>>>0,m||(m=0);var ee;if(typeof m=="number")for(ee=d;ee<q;++ee)this[ee]=m;else{var Ye=o.isBuffer(m)?m:o.from(m,z),Re=Ye.length;if(Re===0)throw new TypeError('The value "'+m+'" is invalid for argument "value"');for(ee=0;ee<q-d;++ee)this[ee+d]=Ye[ee%Re]}return this};var We=/[^+/0-9A-Za-z-_]/g;function pr(v){if(v=v.split("=")[0],v=v.trim().replace(We,""),v.length<2)return"";for(;v.length%4!=0;)v=v+"=";return v}function ae(v,m){m=m||1/0;for(var d,q=v.length,z=null,$=[],ee=0;ee<q;++ee){if(d=v.charCodeAt(ee),d>55295&&d<57344){if(!z){if(d>56319){(m-=3)>-1&&$.push(239,191,189);continue}else if(ee+1===q){(m-=3)>-1&&$.push(239,191,189);continue}z=d;continue}if(d<56320){(m-=3)>-1&&$.push(239,191,189),z=d;continue}d=(z-55296<<10|d-56320)+65536}else z&&(m-=3)>-1&&$.push(239,191,189);if(z=null,d<128){if((m-=1)<0)break;$.push(d)}else if(d<2048){if((m-=2)<0)break;$.push(d>>6|192,d&63|128)}else if(d<65536){if((m-=3)<0)break;$.push(d>>12|224,d>>6&63|128,d&63|128)}else if(d<1114112){if((m-=4)<0)break;$.push(d>>18|240,d>>12&63|128,d>>6&63|128,d&63|128)}else throw new Error("Invalid code point")}return $}function St(v){for(var m=[],d=0;d<v.length;++d)m.push(v.charCodeAt(d)&255);return m}function Qi(v,m){for(var d,q,z,$=[],ee=0;ee<v.length&&!((m-=2)<0);++ee)d=v.charCodeAt(ee),q=d>>8,z=d%256,$.push(z),$.push(q);return $}function $i(v){return qm.toByteArray(pr(v))}function bt(v,m,d,q){for(var z=0;z<q&&!(z+d>=m.length||z>=v.length);++z)m[z+d]=v[z];return z}function xe(v,m){return v instanceof m||v!=null&&v.constructor!=null&&v.constructor.name!=null&&v.constructor.name===m.name}function xt(v){return v!==v}var it=function(){for(var v="0123456789abcdef",m=new Array(256),d=0;d<16;++d)for(var q=d*16,z=0;z<16;++z)m[q+z]=v[d]+v[z];return m}()}),B4=le.Buffer,I4=le.SlowBuffer,S4=le.INSPECT_MAX_BYTES,x4=le.kMaxLength,uf=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.ensureBuffer=void 0;function r(n){if(le.Buffer.isBuffer(n))return n;if(ArrayBuffer.isView(n))return le.Buffer.from(n.buffer);if(n instanceof ArrayBuffer)return le.Buffer.from(n);throw new TypeError("Must use either Buffer or TypedArray")}e.ensureBuffer=r});At(uf);var E4=uf.ensureBuffer,km=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.parseUUID=void 0;let r=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function n(i){if(typeof i!="string")throw new TypeError("Invalid type for UUID, expected string but got "+typeof i);if(!r.test(i))throw new TypeError("Invalid format for UUID: "+i);let f,o=new Uint8Array(16);return o[0]=(f=parseInt(i.slice(0,8),16))>>>24,o[1]=f>>>16&255,o[2]=f>>>8&255,o[3]=f&255,o[4]=(f=parseInt(i.slice(9,13),16))>>>8,o[5]=f&255,o[6]=(f=parseInt(i.slice(14,18),16))>>>8,o[7]=f&255,o[8]=(f=parseInt(i.slice(19,23),16))>>>8,o[9]=f&255,o[10]=(f=parseInt(i.slice(24,36),16))/1099511627776&255,o[11]=f/4294967296&255,o[12]=f>>>24&255,o[13]=f>>>16&255,o[14]=f>>>8&255,o[15]=f&255,o}e.parseUUID=n});At(km);var A4=km.parseUUID,Qr=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Binary=void 0;class r{constructor(i,f){if(i!=null&&typeof i!="string"&&!ArrayBuffer.isView(i)&&!(i instanceof ArrayBuffer)&&!Array.isArray(i))throw new TypeError("Binary can only be constructed from string, Buffer, TypedArray, or Array<number>");this.sub_type=f??r.BSON_BINARY_SUBTYPE_DEFAULT,i==null?(this.buffer=le.Buffer.alloc(r.BUFFER_SIZE),this.position=0):(typeof i=="string"?this.buffer=le.Buffer.from(i,"binary"):Array.isArray(i)?this.buffer=le.Buffer.from(i):this.buffer=uf.ensureBuffer(i),this.position=this.buffer.byteLength)}put(i){if(typeof i=="string"&&i.length!==1)throw new TypeError("only accepts single character String");if(typeof i!="number"&&i.length!==1)throw new TypeError("only accepts single character Uint8Array or Array");let f;if(typeof i=="string"?f=i.charCodeAt(0):typeof i=="number"?f=i:f=i[0],f<0||f>255)throw new TypeError("only accepts number in a valid unsigned byte range 0-255");if(this.buffer.length>this.position)this.buffer[this.position++]=f;else{let o=le.Buffer.alloc(r.BUFFER_SIZE+this.buffer.length);this.buffer.copy(o,0,0,this.buffer.length),this.buffer=o,this.buffer[this.position++]=f}}write(i,f){if(f=typeof f=="number"?f:this.position,this.buffer.length<f+i.length){let o=le.Buffer.alloc(this.buffer.length+i.length);this.buffer.copy(o,0,0,this.buffer.length),this.buffer=o}ArrayBuffer.isView(i)?(this.buffer.set(uf.ensureBuffer(i),f),this.position=f+i.byteLength>this.position?f+i.length:this.position):typeof i=="string"&&(this.buffer.write(i,f,i.length,"binary"),this.position=f+i.length>this.position?f+i.length:this.position)}read(i,f){return f=f&&f>0?f:this.position,this.buffer.slice(i,i+f)}value(i){return i=!!i,i&&this.buffer.length===this.position?this.buffer:i?this.buffer.slice(0,this.position):this.buffer.toString("binary",0,this.position)}length(){return this.position}toJSON(){return this.buffer.toString("base64")}toString(i){return this.buffer.toString(i)}toExtendedJSON(i){i=i||{};let f=this.buffer.toString("base64"),o=Number(this.sub_type).toString(16);return i.legacy?{$binary:f,$type:o.length===1?"0"+o:o}:{$binary:{base64:f,subType:o.length===1?"0"+o:o}}}static fromExtendedJSON(i,f){f=f||{};let o,s;if("$binary"in i?f.legacy&&typeof i.$binary=="string"&&"$type"in i?(s=i.$type?parseInt(i.$type,16):0,o=le.Buffer.from(i.$binary,"base64")):typeof i.$binary!="string"&&(s=i.$binary.subType?parseInt(i.$binary.subType,16):0,o=le.Buffer.from(i.$binary.base64,"base64")):"$uuid"in i&&(s=4,o=le.Buffer.from(km.parseUUID(i.$uuid))),!o)throw new TypeError(`Unexpected Binary Extended JSON format ${JSON.stringify(i)}`);return new r(o,s)}}e.Binary=r,r.BSON_BINARY_SUBTYPE_DEFAULT=0,r.BUFFER_SIZE=256,r.SUBTYPE_DEFAULT=0,r.SUBTYPE_FUNCTION=1,r.SUBTYPE_BYTE_ARRAY=2,r.SUBTYPE_UUID_OLD=3,r.SUBTYPE_UUID=4,r.SUBTYPE_MD5=5,r.SUBTYPE_USER_DEFINED=128,Object.defineProperty(r.prototype,"_bsontype",{value:"Binary"})});At(Qr);var O4=Qr.Binary,cf=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Code=void 0;class r{constructor(i,f){this.code=i,this.scope=f}toJSON(){return{code:this.code,scope:this.scope}}toExtendedJSON(){return this.scope?{$code:this.code,$scope:this.scope}:{$code:this.code}}static fromExtendedJSON(i){return new r(i.$code,i.$scope)}}e.Code=r,Object.defineProperty(r.prototype,"_bsontype",{value:"Code"})});At(cf);var N4=cf.Code,aB={},Tm;typeof Object.create=="function"?Tm=function(e,r){e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:Tm=function(e,r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e};var pB=Tm,uB=/%[sdj%]/g;function Bm(t){if(!yp(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(Si(arguments[r]));return e.join(" ")}for(var r=1,n=arguments,i=n.length,f=String(t).replace(uB,function(s){if(s==="%%")return"%";if(r>=i)return s;switch(s){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch{return"[Circular]"}default:return s}}),o=n[r];r<i;o=n[++r])jp(o)||!Fo(o)?f+=" "+o:f+=" "+Si(o);return f}function Vg(t,e){if(xi(global.process))return function(){return Vg(t,e).apply(this,arguments)};var r=!1;function n(){return r||(console.error(e),r=!0),t.apply(this,arguments)}return n}var bp={},Im;function cB(t){if(xi(Im)&&(Im=""),t=t.toUpperCase(),!bp[t])if(new RegExp("\\b"+t+"\\b","i").test(Im)){var e=0;bp[t]=function(){var r=Bm.apply(null,arguments);console.error("%s %d: %s",t,e,r)}}else bp[t]=function(){};return bp[t]}function Si(t,e){var r={seen:[],stylize:dB};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),Em(e)?r.showHidden=e:e&&Kg(r,e),xi(r.showHidden)&&(r.showHidden=!1),xi(r.depth)&&(r.depth=2),xi(r.colors)&&(r.colors=!1),xi(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=mB),gp(r,t,r.depth)}Si.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]};Si.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function mB(t,e){var r=Si.styles[e];return r?"["+Si.colors[r][0]+"m"+t+"["+Si.colors[r][1]+"m":t}function dB(t,e){return t}function wB(t){var e={};return t.forEach(function(r,n){e[r]=!0}),e}function gp(t,e,r){if(t.customInspect&&e&&qp(e.inspect)&&e.inspect!==Si&&!(e.constructor&&e.constructor.prototype===e)){var n=e.inspect(r,t);return yp(n)||(n=gp(t,n,r)),n}var i=hB(t,e);if(i)return i;var f=Object.keys(e),o=wB(f);if(t.showHidden&&(f=Object.getOwnPropertyNames(e)),_p(e)&&(f.indexOf("message")>=0||f.indexOf("description")>=0))return Sm(e);if(f.length===0){if(qp(e)){var s=e.name?": "+e.name:"";return t.stylize("[Function"+s+"]","special")}if(vp(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(Am(e))return t.stylize(Date.prototype.toString.call(e),"date");if(_p(e))return Sm(e)}var l="",p=!1,u=["{","}"];if(Wg(e)&&(p=!0,u=["[","]"]),qp(e)){var b=e.name?": "+e.name:"";l=" [Function"+b+"]"}if(vp(e)&&(l=" "+RegExp.prototype.toString.call(e)),Am(e)&&(l=" "+Date.prototype.toUTCString.call(e)),_p(e)&&(l=" "+Sm(e)),f.length===0&&(!p||e.length==0))return u[0]+l+u[1];if(r<0)return vp(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special");t.seen.push(e);var c;return p?c=bB(t,e,r,o,f):c=f.map(function(h){return xm(t,e,r,o,h,p)}),t.seen.pop(),gB(c,l,u)}function hB(t,e){if(xi(e))return t.stylize("undefined","undefined");if(yp(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(Yg(e))return t.stylize(""+e,"number");if(Em(e))return t.stylize(""+e,"boolean");if(jp(e))return t.stylize("null","null")}function Sm(t){return"["+Error.prototype.toString.call(t)+"]"}function bB(t,e,r,n,i){for(var f=[],o=0,s=e.length;o<s;++o)Gg(e,String(o))?f.push(xm(t,e,r,n,String(o),!0)):f.push("");return i.forEach(function(l){l.match(/^\d+$/)||f.push(xm(t,e,r,n,l,!0))}),f}function xm(t,e,r,n,i,f){var o,s,l;if(l=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]},l.get?l.set?s=t.stylize("[Getter/Setter]","special"):s=t.stylize("[Getter]","special"):l.set&&(s=t.stylize("[Setter]","special")),Gg(n,i)||(o="["+i+"]"),s||(t.seen.indexOf(l.value)<0?(jp(r)?s=gp(t,l.value,null):s=gp(t,l.value,r-1),s.indexOf(`
21
+ `)>-1&&(f?s=s.split(`
22
+ `).map(function(p){return" "+p}).join(`
39
23
  `).substr(2):s=`
40
24
  `+s.split(`
41
- `).map(function(u){return" "+u}).join(`
42
- `))):s=t.stylize("[Circular]","special")),Gi(f)){if(o&&i.match(/^\d+$/))return s;f=JSON.stringify(""+i),f.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(f=f.substr(1,f.length-2),f=t.stylize(f,"name")):(f=f.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),f=t.stylize(f,"string"))}return f+": "+s}function qO(t,e,r){var n=t.reduce(function(i,o){return o.indexOf(`
43
- `)>=0,i+o.replace(/\u001b\[\d\d?m/g,"").length+1},0);return n>60?r[0]+(e===""?"":e+`
25
+ `).map(function(p){return" "+p}).join(`
26
+ `))):s=t.stylize("[Circular]","special")),xi(o)){if(f&&i.match(/^\d+$/))return s;o=JSON.stringify(""+i),o.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(o=o.substr(1,o.length-2),o=t.stylize(o,"name")):(o=o.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),o=t.stylize(o,"string"))}return o+": "+s}function gB(t,e,r){var n=t.reduce(function(i,f){return f.indexOf(`
27
+ `)>=0,i+f.replace(/\u001b\[\d\d?m/g,"").length+1},0);return n>60?r[0]+(e===""?"":e+`
44
28
  `)+" "+t.join(`,
45
- `)+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}function yq(t){return Array.isArray(t)}function Qb(t){return typeof t=="boolean"}function ep(t){return t===null}function vO(t){return t==null}function jq(t){return typeof t=="number"}function tp(t){return typeof t=="string"}function TO(t){return babelHelpers.typeof(t)==="symbol"}function Gi(t){return t===void 0}function rp(t){return Os(t)&&ew(t)==="[object RegExp]"}function Os(t){return babelHelpers.typeof(t)==="object"&&t!==null}function $b(t){return Os(t)&&ew(t)==="[object Date]"}function np(t){return Os(t)&&(ew(t)==="[object Error]"||t instanceof Error)}function ip(t){return typeof t=="function"}function BO(t){return t===null||typeof t=="boolean"||typeof t=="number"||typeof t=="string"||babelHelpers.typeof(t)==="symbol"||typeof t=="undefined"}function kO(t){return Buffer.isBuffer(t)}function ew(t){return Object.prototype.toString.call(t)}function tw(t){return t<10?"0"+t.toString(10):t.toString(10)}var IO=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function SO(){var t=new Date,e=[tw(t.getHours()),tw(t.getMinutes()),tw(t.getSeconds())].join(":");return[t.getDate(),IO[t.getMonth()],e].join(" ")}function xO(){console.log("%s - %s",SO(),Gb.apply(null,arguments))}function _q(t,e){if(!e||!Os(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}function qq(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var AO={inherits:mO,_extend:_q,log:xO,isBuffer:kO,isPrimitive:BO,isFunction:ip,isError:np,isDate:$b,isObject:Os,isRegExp:rp,isUndefined:Gi,isSymbol:TO,isString:tp,isNumber:jq,isNullOrUndefined:vO,isNull:ep,isBoolean:Qb,isArray:yq,inspect:Ki,deprecate:gq,format:Gb,debuglog:wO},jt=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.deprecate=e.isObjectLike=e.isDate=e.isBuffer=e.haveBuffer=e.isBigUInt64Array=e.isBigInt64Array=e.isUint8Array=e.randomBytes=e.normalizedFunctionString=void 0;function r(p){return p.toString().replace("function(","function (")}e.normalizedFunctionString=r;function n(p){let j=ge.Buffer.alloc(p);for(let S=0;S<p;++S)j[S]=Math.floor(Math.random()*256);return j}if(e.randomBytes=n,typeof window!="undefined"&&window.crypto&&window.crypto.getRandomValues)e.randomBytes=p=>window.crypto.getRandomValues(ge.Buffer.alloc(p));else{try{e.randomBytes=dO.randomBytes}catch{}e.randomBytes==null&&(e.randomBytes=n)}function i(p){return Object.prototype.toString.call(p)==="[object Uint8Array]"}e.isUint8Array=i;function o(p){return Object.prototype.toString.call(p)==="[object BigInt64Array]"}e.isBigInt64Array=o;function f(p){return Object.prototype.toString.call(p)==="[object BigUint64Array]"}e.isBigUInt64Array=f;function s(){return typeof Xc!="undefined"&&typeof Xc.Buffer!="undefined"}e.haveBuffer=s;function l(p){return s()&&ge.Buffer.isBuffer(p)}e.isBuffer=l;function u(p){return c(p)&&Object.prototype.toString.call(p)==="[object Date]"}e.isDate=u;function c(p){return typeof p=="object"&&p!==null}e.isObjectLike=c;function _(p,j){if(typeof window=="undefined"||typeof self=="undefined")return AO.deprecate(p,j);let S=!1;function T(...U){return S||(console.warn(j),S=!0),p.apply(this,...U)}return T}e.deprecate=_});zt(jt);var oL=jt.deprecate,fL=jt.isObjectLike,sL=jt.isDate,aL=jt.isBuffer,lL=jt.haveBuffer,uL=jt.isBigUInt64Array,cL=jt.isBigInt64Array,pL=jt.isUint8Array,dL=jt.randomBytes,mL=jt.normalizedFunctionString,Yn=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.DBRef=e.isDBRefLike=void 0;function r(i){return jt.isObjectLike(i)&&i.$id!=null&&i.$ref!=null}e.isDBRefLike=r;class n{constructor(o,f,s,l){let u=o.split(".");u.length===2&&(s=u.shift(),o=u.shift()),this.collection=o,this.oid=f,this.db=s,this.fields=l||{}}get namespace(){return this.collection}set namespace(o){this.collection=o}toJSON(){let o=Object.assign({$ref:this.collection,$id:this.oid},this.fields);return this.db!=null&&(o.$db=this.db),o}toExtendedJSON(o){o=o||{};let f={$ref:this.collection,$id:this.oid};return o.legacy||(this.db&&(f.$db=this.db),f=Object.assign(f,this.fields)),f}static fromExtendedJSON(o){let f=Object.assign({},o);return delete f.$ref,delete f.$id,delete f.$db,new n(o.$ref,o.$id,o.$db,f)}}e.DBRef=n,Object.defineProperty(n.prototype,"_bsontype",{value:"DBRef"})});zt(Yn);var bL=Yn.DBRef,wL=Yn.isDBRefLike,Ie=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Long=void 0;let r;try{r=new WebAssembly.Instance(new WebAssembly.Module(new Uint8Array([0,97,115,109,1,0,0,0,1,13,2,96,0,1,127,96,4,127,127,127,127,1,127,3,7,6,0,1,1,1,1,1,6,6,1,127,1,65,0,11,7,50,6,3,109,117,108,0,1,5,100,105,118,95,115,0,2,5,100,105,118,95,117,0,3,5,114,101,109,95,115,0,4,5,114,101,109,95,117,0,5,8,103,101,116,95,104,105,103,104,0,0,10,191,1,6,4,0,35,0,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,126,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,127,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,128,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,129,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,130,34,4,66,32,135,167,36,0,32,4,167,11])),{}).exports}catch{}let n=1<<16,i=1<<24,o=n*n,f=o*o,s=f/2,l={},u={};class c{constructor(p=0,j=0,S){this.comp=c.prototype.compare,this.div=c.prototype.divide,this.eq=c.prototype.equals,this.gt=c.prototype.greaterThan,this.gte=c.prototype.greaterThanOrEqual,this.ge=c.prototype.greaterThanOrEqual,this.lt=c.prototype.lessThan,this.lte=c.prototype.lessThanOrEqual,this.mod=c.prototype.modulo,this.rem=c.prototype.modulo,this.mul=c.prototype.multiply,this.neg=c.prototype.negate,this.neq=c.prototype.notEquals,this.ne=c.prototype.notEquals,this.shl=c.prototype.shiftLeft,this.shr=c.prototype.shiftRight,this.shr_u=c.prototype.shiftRightUnsigned,this.shru=c.prototype.shiftRightUnsigned,this.sub=c.prototype.subtract,this.eqz=c.prototype.isZero,this.le=c.prototype.lessThanOrEqual,this.low=p|0,this.high=j|0,this.unsigned=!!S,Object.defineProperty(this,"__isLong__",{value:!0,configurable:!1,writable:!1,enumerable:!1})}static fromBits(p,j,S){return new c(p,j,S)}static fromInt(p,j){let S,T,U;return j?(p>>>=0,(U=0<=p&&p<256)&&(T=u[p],T)?T:(S=c.fromBits(p,(p|0)<0?-1:0,!0),U&&(u[p]=S),S)):(p|=0,(U=-128<=p&&p<128)&&(T=l[p],T)?T:(S=c.fromBits(p,p<0?-1:0,!1),U&&(l[p]=S),S))}static fromNumber(p,j){if(isNaN(p))return j?c.UZERO:c.ZERO;if(j){if(p<0)return c.UZERO;if(p>=f)return c.MAX_UNSIGNED_VALUE}else{if(p<=-s)return c.MIN_VALUE;if(p+1>=s)return c.MAX_VALUE}return p<0?c.fromNumber(-p,j).neg():c.fromBits(p%o|0,p/o|0,j)}static fromBigInt(p,j){return c.fromString(p.toString(),j)}static fromString(p,j,S){if(p.length===0)throw Error("empty string");if(p==="NaN"||p==="Infinity"||p==="+Infinity"||p==="-Infinity")return c.ZERO;if(typeof j=="number"?(S=j,j=!1):j=!!j,S=S||10,S<2||36<S)throw RangeError("radix");let T;if((T=p.indexOf("-"))>0)throw Error("interior hyphen");if(T===0)return c.fromString(p.substring(1),j,S).neg();let U=c.fromNumber(Math.pow(S,8)),W=c.ZERO;for(let L=0;L<p.length;L+=8){let te=Math.min(8,p.length-L),ce=parseInt(p.substring(L,L+te),S);if(te<8){let J=c.fromNumber(Math.pow(S,te));W=W.mul(J).add(c.fromNumber(ce))}else W=W.mul(U),W=W.add(c.fromNumber(ce))}return W.unsigned=j,W}static fromBytes(p,j,S){return S?c.fromBytesLE(p,j):c.fromBytesBE(p,j)}static fromBytesLE(p,j){return new c(p[0]|p[1]<<8|p[2]<<16|p[3]<<24,p[4]|p[5]<<8|p[6]<<16|p[7]<<24,j)}static fromBytesBE(p,j){return new c(p[4]<<24|p[5]<<16|p[6]<<8|p[7],p[0]<<24|p[1]<<16|p[2]<<8|p[3],j)}static isLong(p){return jt.isObjectLike(p)&&p.__isLong__===!0}static fromValue(p,j){return typeof p=="number"?c.fromNumber(p,j):typeof p=="string"?c.fromString(p,j):c.fromBits(p.low,p.high,typeof j=="boolean"?j:p.unsigned)}add(p){c.isLong(p)||(p=c.fromValue(p));let j=this.high>>>16,S=this.high&65535,T=this.low>>>16,U=this.low&65535,W=p.high>>>16,L=p.high&65535,te=p.low>>>16,ce=p.low&65535,J=0,D=0,ae=0,Y=0;return Y+=U+ce,ae+=Y>>>16,Y&=65535,ae+=T+te,D+=ae>>>16,ae&=65535,D+=S+L,J+=D>>>16,D&=65535,J+=j+W,J&=65535,c.fromBits(ae<<16|Y,J<<16|D,this.unsigned)}and(p){return c.isLong(p)||(p=c.fromValue(p)),c.fromBits(this.low&p.low,this.high&p.high,this.unsigned)}compare(p){if(c.isLong(p)||(p=c.fromValue(p)),this.eq(p))return 0;let j=this.isNegative(),S=p.isNegative();return j&&!S?-1:!j&&S?1:this.unsigned?p.high>>>0>this.high>>>0||p.high===this.high&&p.low>>>0>this.low>>>0?-1:1:this.sub(p).isNegative()?-1:1}divide(p){if(c.isLong(p)||(p=c.fromValue(p)),p.isZero())throw Error("division by zero");if(r){if(!this.unsigned&&this.high===-2147483648&&p.low===-1&&p.high===-1)return this;let U=(this.unsigned?r.div_u:r.div_s)(this.low,this.high,p.low,p.high);return c.fromBits(U,r.get_high(),this.unsigned)}if(this.isZero())return this.unsigned?c.UZERO:c.ZERO;let j,S,T;if(this.unsigned){if(p.unsigned||(p=p.toUnsigned()),p.gt(this))return c.UZERO;if(p.gt(this.shru(1)))return c.UONE;T=c.UZERO}else{if(this.eq(c.MIN_VALUE))return p.eq(c.ONE)||p.eq(c.NEG_ONE)?c.MIN_VALUE:p.eq(c.MIN_VALUE)?c.ONE:(j=this.shr(1).div(p).shl(1),j.eq(c.ZERO)?p.isNegative()?c.ONE:c.NEG_ONE:(S=this.sub(p.mul(j)),T=j.add(S.div(p)),T));if(p.eq(c.MIN_VALUE))return this.unsigned?c.UZERO:c.ZERO;if(this.isNegative())return p.isNegative()?this.neg().div(p.neg()):this.neg().div(p).neg();if(p.isNegative())return this.div(p.neg()).neg();T=c.ZERO}for(S=this;S.gte(p);){j=Math.max(1,Math.floor(S.toNumber()/p.toNumber()));let U=Math.ceil(Math.log(j)/Math.LN2),W=U<=48?1:Math.pow(2,U-48),L=c.fromNumber(j),te=L.mul(p);for(;te.isNegative()||te.gt(S);)j-=W,L=c.fromNumber(j,this.unsigned),te=L.mul(p);L.isZero()&&(L=c.ONE),T=T.add(L),S=S.sub(te)}return T}equals(p){return c.isLong(p)||(p=c.fromValue(p)),this.unsigned!==p.unsigned&&this.high>>>31==1&&p.high>>>31==1?!1:this.high===p.high&&this.low===p.low}getHighBits(){return this.high}getHighBitsUnsigned(){return this.high>>>0}getLowBits(){return this.low}getLowBitsUnsigned(){return this.low>>>0}getNumBitsAbs(){if(this.isNegative())return this.eq(c.MIN_VALUE)?64:this.neg().getNumBitsAbs();let p=this.high!==0?this.high:this.low,j;for(j=31;j>0&&(p&1<<j)==0;j--);return this.high!==0?j+33:j+1}greaterThan(p){return this.comp(p)>0}greaterThanOrEqual(p){return this.comp(p)>=0}isEven(){return(this.low&1)==0}isNegative(){return!this.unsigned&&this.high<0}isOdd(){return(this.low&1)==1}isPositive(){return this.unsigned||this.high>=0}isZero(){return this.high===0&&this.low===0}lessThan(p){return this.comp(p)<0}lessThanOrEqual(p){return this.comp(p)<=0}modulo(p){if(c.isLong(p)||(p=c.fromValue(p)),r){let j=(this.unsigned?r.rem_u:r.rem_s)(this.low,this.high,p.low,p.high);return c.fromBits(j,r.get_high(),this.unsigned)}return this.sub(this.div(p).mul(p))}multiply(p){if(this.isZero())return c.ZERO;if(c.isLong(p)||(p=c.fromValue(p)),r){let pe=r.mul(this.low,this.high,p.low,p.high);return c.fromBits(pe,r.get_high(),this.unsigned)}if(p.isZero())return c.ZERO;if(this.eq(c.MIN_VALUE))return p.isOdd()?c.MIN_VALUE:c.ZERO;if(p.eq(c.MIN_VALUE))return this.isOdd()?c.MIN_VALUE:c.ZERO;if(this.isNegative())return p.isNegative()?this.neg().mul(p.neg()):this.neg().mul(p).neg();if(p.isNegative())return this.mul(p.neg()).neg();if(this.lt(c.TWO_PWR_24)&&p.lt(c.TWO_PWR_24))return c.fromNumber(this.toNumber()*p.toNumber(),this.unsigned);let j=this.high>>>16,S=this.high&65535,T=this.low>>>16,U=this.low&65535,W=p.high>>>16,L=p.high&65535,te=p.low>>>16,ce=p.low&65535,J=0,D=0,ae=0,Y=0;return Y+=U*ce,ae+=Y>>>16,Y&=65535,ae+=T*ce,D+=ae>>>16,ae&=65535,ae+=U*te,D+=ae>>>16,ae&=65535,D+=S*ce,J+=D>>>16,D&=65535,D+=T*te,J+=D>>>16,D&=65535,D+=U*L,J+=D>>>16,D&=65535,J+=j*ce+S*te+T*L+U*W,J&=65535,c.fromBits(ae<<16|Y,J<<16|D,this.unsigned)}negate(){return!this.unsigned&&this.eq(c.MIN_VALUE)?c.MIN_VALUE:this.not().add(c.ONE)}not(){return c.fromBits(~this.low,~this.high,this.unsigned)}notEquals(p){return!this.equals(p)}or(p){return c.isLong(p)||(p=c.fromValue(p)),c.fromBits(this.low|p.low,this.high|p.high,this.unsigned)}shiftLeft(p){return c.isLong(p)&&(p=p.toInt()),(p&=63)==0?this:p<32?c.fromBits(this.low<<p,this.high<<p|this.low>>>32-p,this.unsigned):c.fromBits(0,this.low<<p-32,this.unsigned)}shiftRight(p){return c.isLong(p)&&(p=p.toInt()),(p&=63)==0?this:p<32?c.fromBits(this.low>>>p|this.high<<32-p,this.high>>p,this.unsigned):c.fromBits(this.high>>p-32,this.high>=0?0:-1,this.unsigned)}shiftRightUnsigned(p){if(c.isLong(p)&&(p=p.toInt()),p&=63,p===0)return this;{let j=this.high;if(p<32){let S=this.low;return c.fromBits(S>>>p|j<<32-p,j>>>p,this.unsigned)}else return p===32?c.fromBits(j,0,this.unsigned):c.fromBits(j>>>p-32,0,this.unsigned)}}subtract(p){return c.isLong(p)||(p=c.fromValue(p)),this.add(p.neg())}toInt(){return this.unsigned?this.low>>>0:this.low}toNumber(){return this.unsigned?(this.high>>>0)*o+(this.low>>>0):this.high*o+(this.low>>>0)}toBigInt(){return BigInt(this.toString())}toBytes(p){return p?this.toBytesLE():this.toBytesBE()}toBytesLE(){let p=this.high,j=this.low;return[j&255,j>>>8&255,j>>>16&255,j>>>24,p&255,p>>>8&255,p>>>16&255,p>>>24]}toBytesBE(){let p=this.high,j=this.low;return[p>>>24,p>>>16&255,p>>>8&255,p&255,j>>>24,j>>>16&255,j>>>8&255,j&255]}toSigned(){return this.unsigned?c.fromBits(this.low,this.high,!1):this}toString(p){if(p=p||10,p<2||36<p)throw RangeError("radix");if(this.isZero())return"0";if(this.isNegative())if(this.eq(c.MIN_VALUE)){let U=c.fromNumber(p),W=this.div(U),L=W.mul(U).sub(this);return W.toString(p)+L.toInt().toString(p)}else return"-"+this.neg().toString(p);let j=c.fromNumber(Math.pow(p,6),this.unsigned),S=this,T="";for(;;){let U=S.div(j),L=(S.sub(U.mul(j)).toInt()>>>0).toString(p);if(S=U,S.isZero())return L+T;for(;L.length<6;)L="0"+L;T=""+L+T}}toUnsigned(){return this.unsigned?this:c.fromBits(this.low,this.high,!0)}xor(p){return c.isLong(p)||(p=c.fromValue(p)),c.fromBits(this.low^p.low,this.high^p.high,this.unsigned)}toExtendedJSON(p){return p&&p.relaxed?this.toNumber():{$numberLong:this.toString()}}static fromExtendedJSON(p,j){let S=c.fromString(p.$numberLong);return j&&j.relaxed?S.toNumber():S}}e.Long=c,c.TWO_PWR_24=c.fromInt(i),c.MAX_UNSIGNED_VALUE=c.fromBits(4294967295|0,4294967295|0,!0),c.ZERO=c.fromInt(0),c.UZERO=c.fromInt(0,!0),c.ONE=c.fromInt(1),c.UONE=c.fromInt(1,!0),c.NEG_ONE=c.fromInt(-1),c.MAX_VALUE=c.fromBits(4294967295|0,2147483647|0,!1),c.MIN_VALUE=c.fromBits(0,2147483648|0,!1),Object.defineProperty(c.prototype,"__isLong__",{value:!0}),Object.defineProperty(c.prototype,"_bsontype",{value:"Long"})});zt(Ie);var hL=Ie.Long,Ns=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Decimal128=void 0;let r=/^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/,n=/^(\+|-)?(Infinity|inf)$/i,i=/^(\+|-)?NaN$/i,o=6111,f=-6176,s=6176,l=34,u=[124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),c=[248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),_=[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),p=/^([-+])?(\d+)?$/,j=31,S=16383,T=30,U=31;function W(ae){return!isNaN(parseInt(ae,10))}function L(ae){let Y=Ie.Long.fromNumber(1e3*1e3*1e3),pe=Ie.Long.fromNumber(0);if(!ae.parts[0]&&!ae.parts[1]&&!ae.parts[2]&&!ae.parts[3])return{quotient:ae,rem:pe};for(let y=0;y<=3;y++)pe=pe.shiftLeft(32),pe=pe.add(new Ie.Long(ae.parts[y],0)),ae.parts[y]=pe.div(Y).low,pe=pe.modulo(Y);return{quotient:ae,rem:pe}}function te(ae,Y){if(!ae&&!Y)return{high:Ie.Long.fromNumber(0),low:Ie.Long.fromNumber(0)};let pe=ae.shiftRightUnsigned(32),y=new Ie.Long(ae.getLowBits(),0),g=Y.shiftRightUnsigned(32),N=new Ie.Long(Y.getLowBits(),0),b=pe.multiply(g),H=pe.multiply(N),K=y.multiply(g),M=y.multiply(N);return b=b.add(H.shiftRightUnsigned(32)),H=new Ie.Long(H.getLowBits(),0).add(K).add(M.shiftRightUnsigned(32)),b=b.add(H.shiftRightUnsigned(32)),M=H.shiftLeft(32).add(new Ie.Long(M.getLowBits(),0)),{high:b,low:M}}function ce(ae,Y){let pe=ae.high>>>0,y=Y.high>>>0;if(pe<y)return!0;if(pe===y){let g=ae.low>>>0,N=Y.low>>>0;if(g<N)return!0}return!1}function J(ae,Y){throw new TypeError(`"${ae}" is not a valid Decimal128 string - ${Y}`)}class D{constructor(Y){this.bytes=Y}static fromString(Y){let pe=!1,y=!1,g=!1,N=0,b=0,H=0,K=0,M=0,ie=[0],E=0,We=0,de=0,C=0,X=0,He=0,we=new Ie.Long(0,0),tt=new Ie.Long(0,0),kr=0,je=0;if(Y.length>=7e3)throw new TypeError(""+Y+" not a valid Decimal128 string");let $=Y.match(r),qo=Y.match(n),vo=Y.match(i);if(!$&&!qo&&!vo||Y.length===0)throw new TypeError(""+Y+" not a valid Decimal128 string");if($){let mt=$[2],q=$[4],d=$[5],m=$[6];q&&m===void 0&&J(Y,"missing exponent power"),q&&mt===void 0&&J(Y,"missing exponent base"),q===void 0&&(d||m)&&J(Y,"missing e before exponent")}if((Y[je]==="+"||Y[je]==="-")&&(pe=Y[je++]==="-"),!W(Y[je])&&Y[je]!=="."){if(Y[je]==="i"||Y[je]==="I")return new D(ge.Buffer.from(pe?c:_));if(Y[je]==="N")return new D(ge.Buffer.from(u))}for(;W(Y[je])||Y[je]===".";){if(Y[je]==="."){y&&J(Y,"contains multiple periods"),y=!0,je=je+1;continue}E<34&&(Y[je]!=="0"||g)&&(g||(M=b),g=!0,ie[We++]=parseInt(Y[je],10),E=E+1),g&&(H=H+1),y&&(K=K+1),b=b+1,je=je+1}if(y&&!b)throw new TypeError(""+Y+" not a valid Decimal128 string");if(Y[je]==="e"||Y[je]==="E"){let mt=Y.substr(++je).match(p);if(!mt||!mt[2])return new D(ge.Buffer.from(u));X=parseInt(mt[0],10),je=je+mt[0].length}if(Y[je])return new D(ge.Buffer.from(u));if(de=0,!E)de=0,C=0,ie[0]=0,H=1,E=1,N=0;else if(C=E-1,N=H,N!==1)for(;Y[M+N-1]==="0";)N=N-1;for(X<=K&&K-X>1<<14?X=f:X=X-K;X>o;){if(C=C+1,C-de>l){if(ie.join("").match(/^0+$/)){X=o;break}J(Y,"overflow")}X=X-1}for(;X<f||E<H;){if(C===0&&N<E){X=f,N=0;break}if(E<H?H=H-1:C=C-1,X<o)X=X+1;else{if(ie.join("").match(/^0+$/)){X=o;break}J(Y,"overflow")}}if(C-de+1<N){let mt=b;y&&(M=M+1,mt=mt+1),pe&&(M=M+1,mt=mt+1);let q=parseInt(Y[M+C+1],10),d=0;if(q>=5&&(d=1,q===5)){for(d=ie[C]%2==1?1:0,He=M+C+2;He<mt;He++)if(parseInt(Y[He],10)){d=1;break}}if(d){let m=C;for(;m>=0;m--)if(++ie[m]>9&&(ie[m]=0,m===0))if(X<o)X=X+1,ie[m]=1;else return new D(ge.Buffer.from(pe?c:_))}}if(we=Ie.Long.fromNumber(0),tt=Ie.Long.fromNumber(0),N===0)we=Ie.Long.fromNumber(0),tt=Ie.Long.fromNumber(0);else if(C-de<17){let mt=de;for(tt=Ie.Long.fromNumber(ie[mt++]),we=new Ie.Long(0,0);mt<=C;mt++)tt=tt.multiply(Ie.Long.fromNumber(10)),tt=tt.add(Ie.Long.fromNumber(ie[mt]))}else{let mt=de;for(we=Ie.Long.fromNumber(ie[mt++]);mt<=C-17;mt++)we=we.multiply(Ie.Long.fromNumber(10)),we=we.add(Ie.Long.fromNumber(ie[mt]));for(tt=Ie.Long.fromNumber(ie[mt++]);mt<=C;mt++)tt=tt.multiply(Ie.Long.fromNumber(10)),tt=tt.add(Ie.Long.fromNumber(ie[mt]))}let It=te(we,Ie.Long.fromString("100000000000000000"));It.low=It.low.add(tt),ce(It.low,tt)&&(It.high=It.high.add(Ie.Long.fromNumber(1))),kr=X+s;let Ye={low:Ie.Long.fromNumber(0),high:Ie.Long.fromNumber(0)};It.high.shiftRightUnsigned(49).and(Ie.Long.fromNumber(1)).equals(Ie.Long.fromNumber(1))?(Ye.high=Ye.high.or(Ie.Long.fromNumber(3).shiftLeft(61)),Ye.high=Ye.high.or(Ie.Long.fromNumber(kr).and(Ie.Long.fromNumber(16383).shiftLeft(47))),Ye.high=Ye.high.or(It.high.and(Ie.Long.fromNumber(140737488355327)))):(Ye.high=Ye.high.or(Ie.Long.fromNumber(kr&16383).shiftLeft(49)),Ye.high=Ye.high.or(It.high.and(Ie.Long.fromNumber(562949953421311)))),Ye.low=It.low,pe&&(Ye.high=Ye.high.or(Ie.Long.fromString("9223372036854775808")));let Ht=ge.Buffer.alloc(16);return je=0,Ht[je++]=Ye.low.low&255,Ht[je++]=Ye.low.low>>8&255,Ht[je++]=Ye.low.low>>16&255,Ht[je++]=Ye.low.low>>24&255,Ht[je++]=Ye.low.high&255,Ht[je++]=Ye.low.high>>8&255,Ht[je++]=Ye.low.high>>16&255,Ht[je++]=Ye.low.high>>24&255,Ht[je++]=Ye.high.low&255,Ht[je++]=Ye.high.low>>8&255,Ht[je++]=Ye.high.low>>16&255,Ht[je++]=Ye.high.low>>24&255,Ht[je++]=Ye.high.high&255,Ht[je++]=Ye.high.high>>8&255,Ht[je++]=Ye.high.high>>16&255,Ht[je++]=Ye.high.high>>24&255,new D(Ht)}toString(){let Y,pe=0,y=new Array(36);for(let je=0;je<y.length;je++)y[je]=0;let g=0,N=!1,b,H={parts:[0,0,0,0]},K,M,ie=[];g=0;let E=this.bytes,We=E[g++]|E[g++]<<8|E[g++]<<16|E[g++]<<24,de=E[g++]|E[g++]<<8|E[g++]<<16|E[g++]<<24,C=E[g++]|E[g++]<<8|E[g++]<<16|E[g++]<<24,X=E[g++]|E[g++]<<8|E[g++]<<16|E[g++]<<24;g=0,{low:new Ie.Long(We,de),high:new Ie.Long(C,X)}.high.lessThan(Ie.Long.ZERO)&&ie.push("-");let we=X>>26&j;if(we>>3==3){if(we===T)return ie.join("")+"Infinity";if(we===U)return"NaN";Y=X>>15&S,b=8+(X>>14&1)}else b=X>>14&7,Y=X>>17&S;let tt=Y-s;if(H.parts[0]=(X&16383)+((b&15)<<14),H.parts[1]=C,H.parts[2]=de,H.parts[3]=We,H.parts[0]===0&&H.parts[1]===0&&H.parts[2]===0&&H.parts[3]===0)N=!0;else for(M=3;M>=0;M--){let je=0,$=L(H);if(H=$.quotient,je=$.rem.low,!!je)for(K=8;K>=0;K--)y[M*9+K]=je%10,je=Math.floor(je/10)}if(N)pe=1,y[g]=0;else for(pe=36;!y[g];)pe=pe-1,g=g+1;let kr=pe-1+tt;if(kr>=34||kr<=-7||tt>0){if(pe>34)return ie.push(`${0}`),tt>0?ie.push("E+"+tt):tt<0&&ie.push("E"+tt),ie.join("");ie.push(`${y[g++]}`),pe=pe-1,pe&&ie.push(".");for(let je=0;je<pe;je++)ie.push(`${y[g++]}`);ie.push("E"),kr>0?ie.push("+"+kr):ie.push(`${kr}`)}else if(tt>=0)for(let je=0;je<pe;je++)ie.push(`${y[g++]}`);else{let je=pe+tt;if(je>0)for(let $=0;$<je;$++)ie.push(`${y[g++]}`);else ie.push("0");for(ie.push(".");je++<0;)ie.push("0");for(let $=0;$<pe-Math.max(je-1,0);$++)ie.push(`${y[g++]}`)}return ie.join("")}toJSON(){return{$numberDecimal:this.toString()}}toExtendedJSON(){return{$numberDecimal:this.toString()}}static fromExtendedJSON(Y){return D.fromString(Y.$numberDecimal)}}e.Decimal128=D,Object.defineProperty(D.prototype,"_bsontype",{value:"Decimal128"})});zt(Ns);var gL=Ns.Decimal128,Mf=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Double=void 0;class r{constructor(i){i instanceof Number&&(i=i.valueOf()),this.value=+i}valueOf(){return this.value}toJSON(){return this.value}toExtendedJSON(i){if(i&&(i.legacy||i.relaxed&&isFinite(this.value)))return this.value;if(Object.is(Math.sign(this.value),-0))return{$numberDouble:`-${this.value.toFixed(1)}`};let o;return Number.isInteger(this.value)?(o=this.value.toFixed(1),o.length>=13&&(o=this.value.toExponential(13).toUpperCase())):o=this.value.toString(),{$numberDouble:o}}static fromExtendedJSON(i,o){let f=parseFloat(i.$numberDouble);return o&&o.relaxed?f:new r(f)}}e.Double=r,Object.defineProperty(r.prototype,"_bsontype",{value:"Double"})});zt(Mf);var yL=Mf.Double,zf=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Int32=void 0;class r{constructor(i){i instanceof Number&&(i=i.valueOf()),this.value=+i}valueOf(){return this.value}toJSON(){return this.value}toExtendedJSON(i){return i&&(i.relaxed||i.legacy)?this.value:{$numberInt:this.value.toString()}}static fromExtendedJSON(i,o){return o&&o.relaxed?parseInt(i.$numberInt,10):new r(i.$numberInt)}}e.Int32=r,Object.defineProperty(r.prototype,"_bsontype",{value:"Int32"})});zt(zf);var jL=zf.Int32,op=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Map=void 0;let r;e.Map=r;let n=function(f){return f&&f.Math==Math&&f};function i(){return n(typeof globalThis=="object"&&globalThis)||n(typeof window=="object"&&window)||n(typeof self=="object"&&self)||n(typeof Xc=="object"&&Xc)||Function("return this")()}let o=i();Object.prototype.hasOwnProperty.call(o,"Map")?e.Map=r=o.Map:e.Map=r=class{constructor(s=[]){this._keys=[],this._values={};for(let l=0;l<s.length;l++){if(s[l]==null)continue;let u=s[l],c=u[0],_=u[1];this._keys.push(c),this._values[c]={v:_,i:this._keys.length-1}}}clear(){this._keys=[],this._values={}}delete(s){let l=this._values[s];return l==null?!1:(delete this._values[s],this._keys.splice(l.i,1),!0)}entries(){let s=0;return{next:()=>{let l=this._keys[s++];return{value:l!==void 0?[l,this._values[l].v]:void 0,done:l===void 0}}}}forEach(s,l){l=l||this;for(let u=0;u<this._keys.length;u++){let c=this._keys[u];s.call(l,this._values[c].v,c,l)}}get(s){return this._values[s]?this._values[s].v:void 0}has(s){return this._values[s]!=null}keys(){let s=0;return{next:()=>{let l=this._keys[s++];return{value:l!==void 0?l:void 0,done:l===void 0}}}}set(s,l){return this._values[s]?(this._values[s].v=l,this):(this._keys.push(s),this._values[s]={v:l,i:this._keys.length-1},this)}values(){let s=0;return{next:()=>{let l=this._keys[s++];return{value:l!==void 0?this._values[l].v:void 0,done:l===void 0}}}}get size(){return this._keys.length}}});zt(op);var qL=op.Map,Ds=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.MaxKey=void 0;class r{toExtendedJSON(){return{$maxKey:1}}static fromExtendedJSON(){return new r}}e.MaxKey=r,Object.defineProperty(r.prototype,"_bsontype",{value:"MaxKey"})});zt(Ds);var vL=Ds.MaxKey,Fs=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.MinKey=void 0;class r{toExtendedJSON(){return{$minKey:1}}static fromExtendedJSON(){return new r}}e.MinKey=r,Object.defineProperty(r.prototype,"_bsontype",{value:"MinKey"})});zt(Fs);var TL=Fs.MinKey,Ji=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.ObjectId=void 0;let r=jt.randomBytes(5),n=new RegExp("^[0-9a-fA-F]{24}$"),i=[];for(let c=0;c<256;c++)i[c]=(c<=15?"0":"")+c.toString(16);let o=[],f=0;for(;f<10;)o[48+f]=f++;for(;f<16;)o[65-10+f]=o[97-10+f]=f++;let s=Symbol("id");class l{constructor(_){if(_ instanceof l&&(this[s]=_.id,this.__id=_.__id),typeof _=="object"&&_&&"id"in _&&("toHexString"in _&&typeof _.toHexString=="function"?this[s]=ge.Buffer.from(_.toHexString(),"hex"):this[s]=typeof _.id=="string"?ge.Buffer.from(_.id):_.id),(_==null||typeof _=="number")&&(this[s]=l.generate(typeof _=="number"?_:void 0),l.cacheHexString&&(this.__id=this.id.toString("hex"))),ArrayBuffer.isView(_)&&_.byteLength===12&&(this[s]=Do.ensureBuffer(_)),typeof _=="string")if(_.length===12){let p=ge.Buffer.from(_);p.byteLength===12&&(this[s]=p)}else if(_.length===24&&n.test(_))this[s]=ge.Buffer.from(_,"hex");else throw new TypeError("Argument passed in must be a Buffer or string of 12 bytes or a string of 24 hex characters");l.cacheHexString&&(this.__id=this.id.toString("hex"))}get id(){return this[s]}set id(_){this[s]=_,l.cacheHexString&&(this.__id=_.toString("hex"))}get generationTime(){return this.id.readInt32BE(0)}set generationTime(_){this.id.writeUInt32BE(_,0)}toHexString(){if(l.cacheHexString&&this.__id)return this.__id;let _=this.id.toString("hex");return l.cacheHexString&&!this.__id&&(this.__id=_),_}static getInc(){return l.index=(l.index+1)%16777215}static generate(_){typeof _!="number"&&(_=~~(Date.now()/1e3));let p=l.getInc(),j=ge.Buffer.alloc(12);return j.writeUInt32BE(_,0),j[4]=r[0],j[5]=r[1],j[6]=r[2],j[7]=r[3],j[8]=r[4],j[11]=p&255,j[10]=p>>8&255,j[9]=p>>16&255,j}toString(_){return _?this.id.toString(_):this.toHexString()}toJSON(){return this.toHexString()}equals(_){return _==null?!1:_ instanceof l?this.toString()===_.toString():typeof _=="string"&&l.isValid(_)&&_.length===12&&this.id instanceof ge.Buffer?_===this.id.toString("binary"):typeof _=="string"&&l.isValid(_)&&_.length===24?_.toLowerCase()===this.toHexString():typeof _=="string"&&l.isValid(_)&&_.length===12?ge.Buffer.from(_).equals(this.id):typeof _=="object"&&"toHexString"in _&&typeof _.toHexString=="function"?_.toHexString()===this.toHexString():!1}getTimestamp(){let _=new Date,p=this.id.readUInt32BE(0);return _.setTime(Math.floor(p)*1e3),_}static createPk(){return new l}static createFromTime(_){let p=ge.Buffer.from([0,0,0,0,0,0,0,0,0,0,0,0]);return p.writeUInt32BE(_,0),new l(p)}static createFromHexString(_){if(typeof _=="undefined"||_!=null&&_.length!==24)throw new TypeError("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");return new l(ge.Buffer.from(_,"hex"))}static isValid(_){return _==null?!1:typeof _=="number"?!0:typeof _=="string"?_.length===12||_.length===24&&n.test(_):_ instanceof l||_ instanceof ge.Buffer&&_.length===12?!0:typeof _=="object"&&"toHexString"in _&&typeof _.toHexString=="function"?typeof _.id=="string"?_.id.length===12:_.toHexString().length===24&&n.test(_.id.toString("hex")):!1}toExtendedJSON(){return this.toHexString?{$oid:this.toHexString()}:{$oid:this.toString("hex")}}static fromExtendedJSON(_){return new l(_.$oid)}}e.ObjectId=l,l.index=~~(Math.random()*16777215),Object.defineProperty(l.prototype,"generate",{value:jt.deprecate(c=>l.generate(c),"Please use the static `ObjectId.generate(time)` instead")}),Object.defineProperty(l.prototype,"getInc",{value:jt.deprecate(()=>l.getInc(),"Please use the static `ObjectId.getInc()` instead")}),Object.defineProperty(l.prototype,"get_inc",{value:jt.deprecate(()=>l.getInc(),"Please use the static `ObjectId.getInc()` instead")}),Object.defineProperty(l,"get_inc",{value:jt.deprecate(()=>l.getInc(),"Please use the static `ObjectId.getInc()` instead")});let u=Symbol.for("nodejs.util.inspect.custom");Object.defineProperty(l.prototype,u,l.prototype.toString),Object.defineProperty(l.prototype,"inspect",l.prototype.toString),Object.defineProperty(l.prototype,"_bsontype",{value:"ObjectID"})});zt(Ji);var BL=Ji.ObjectId,G=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.BSON_BINARY_SUBTYPE_USER_DEFINED=e.BSON_BINARY_SUBTYPE_MD5=e.BSON_BINARY_SUBTYPE_UUID_NEW=e.BSON_BINARY_SUBTYPE_UUID=e.BSON_BINARY_SUBTYPE_BYTE_ARRAY=e.BSON_BINARY_SUBTYPE_FUNCTION=e.BSON_BINARY_SUBTYPE_DEFAULT=e.BSON_DATA_MAX_KEY=e.BSON_DATA_MIN_KEY=e.BSON_DATA_DECIMAL128=e.BSON_DATA_LONG=e.BSON_DATA_TIMESTAMP=e.BSON_DATA_INT=e.BSON_DATA_CODE_W_SCOPE=e.BSON_DATA_SYMBOL=e.BSON_DATA_CODE=e.BSON_DATA_DBPOINTER=e.BSON_DATA_REGEXP=e.BSON_DATA_NULL=e.BSON_DATA_DATE=e.BSON_DATA_BOOLEAN=e.BSON_DATA_OID=e.BSON_DATA_UNDEFINED=e.BSON_DATA_BINARY=e.BSON_DATA_ARRAY=e.BSON_DATA_OBJECT=e.BSON_DATA_STRING=e.BSON_DATA_NUMBER=e.JS_INT_MIN=e.JS_INT_MAX=e.BSON_INT64_MIN=e.BSON_INT64_MAX=e.BSON_INT32_MIN=e.BSON_INT32_MAX=void 0,e.BSON_INT32_MAX=2147483647,e.BSON_INT32_MIN=-2147483648,e.BSON_INT64_MAX=Math.pow(2,63)-1,e.BSON_INT64_MIN=-Math.pow(2,63),e.JS_INT_MAX=Math.pow(2,53),e.JS_INT_MIN=-Math.pow(2,53),e.BSON_DATA_NUMBER=1,e.BSON_DATA_STRING=2,e.BSON_DATA_OBJECT=3,e.BSON_DATA_ARRAY=4,e.BSON_DATA_BINARY=5,e.BSON_DATA_UNDEFINED=6,e.BSON_DATA_OID=7,e.BSON_DATA_BOOLEAN=8,e.BSON_DATA_DATE=9,e.BSON_DATA_NULL=10,e.BSON_DATA_REGEXP=11,e.BSON_DATA_DBPOINTER=12,e.BSON_DATA_CODE=13,e.BSON_DATA_SYMBOL=14,e.BSON_DATA_CODE_W_SCOPE=15,e.BSON_DATA_INT=16,e.BSON_DATA_TIMESTAMP=17,e.BSON_DATA_LONG=18,e.BSON_DATA_DECIMAL128=19,e.BSON_DATA_MIN_KEY=255,e.BSON_DATA_MAX_KEY=127,e.BSON_BINARY_SUBTYPE_DEFAULT=0,e.BSON_BINARY_SUBTYPE_FUNCTION=1,e.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2,e.BSON_BINARY_SUBTYPE_UUID=3,e.BSON_BINARY_SUBTYPE_UUID_NEW=4,e.BSON_BINARY_SUBTYPE_MD5=5,e.BSON_BINARY_SUBTYPE_USER_DEFINED=128});zt(G);var kL=G.BSON_BINARY_SUBTYPE_USER_DEFINED,IL=G.BSON_BINARY_SUBTYPE_MD5,SL=G.BSON_BINARY_SUBTYPE_UUID_NEW,xL=G.BSON_BINARY_SUBTYPE_UUID,AL=G.BSON_BINARY_SUBTYPE_BYTE_ARRAY,EL=G.BSON_BINARY_SUBTYPE_FUNCTION,OL=G.BSON_BINARY_SUBTYPE_DEFAULT,NL=G.BSON_DATA_MAX_KEY,DL=G.BSON_DATA_MIN_KEY,FL=G.BSON_DATA_DECIMAL128,PL=G.BSON_DATA_LONG,RL=G.BSON_DATA_TIMESTAMP,HL=G.BSON_DATA_INT,ML=G.BSON_DATA_CODE_W_SCOPE,zL=G.BSON_DATA_SYMBOL,UL=G.BSON_DATA_CODE,LL=G.BSON_DATA_DBPOINTER,VL=G.BSON_DATA_REGEXP,CL=G.BSON_DATA_NULL,WL=G.BSON_DATA_DATE,YL=G.BSON_DATA_BOOLEAN,KL=G.BSON_DATA_OID,GL=G.BSON_DATA_UNDEFINED,JL=G.BSON_DATA_BINARY,ZL=G.BSON_DATA_ARRAY,XL=G.BSON_DATA_OBJECT,QL=G.BSON_DATA_STRING,$L=G.BSON_DATA_NUMBER,e8=G.JS_INT_MIN,t8=G.JS_INT_MAX,r8=G.BSON_INT64_MIN,n8=G.BSON_INT64_MAX,i8=G.BSON_INT32_MIN,o8=G.BSON_INT32_MAX,rw=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.calculateObjectSize=void 0;function r(i,o,f){let s=4+1;if(Array.isArray(i))for(let l=0;l<i.length;l++)s+=n(l.toString(),i[l],o,!0,f);else{i.toBSON&&(i=i.toBSON());for(let l in i)s+=n(l,i[l],o,!1,f)}return s}e.calculateObjectSize=r;function n(i,o,f=!1,s=!1,l=!1){switch(o&&o.toBSON&&(o=o.toBSON()),typeof o){case"string":return 1+ge.Buffer.byteLength(i,"utf8")+1+4+ge.Buffer.byteLength(o,"utf8")+1;case"number":return Math.floor(o)===o&&o>=G.JS_INT_MIN&&o<=G.JS_INT_MAX&&o>=G.BSON_INT32_MIN&&o<=G.BSON_INT32_MAX?(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(4+1):(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(8+1);case"undefined":return s||!l?(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1:0;case"boolean":return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(1+1);case"object":if(o==null||o._bsontype==="MinKey"||o._bsontype==="MaxKey")return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1;if(o._bsontype==="ObjectId"||o._bsontype==="ObjectID")return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(12+1);if(o instanceof Date||jt.isDate(o))return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(8+1);if(ArrayBuffer.isView(o)||o instanceof ArrayBuffer)return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(1+4+1)+o.byteLength;if(o._bsontype==="Long"||o._bsontype==="Double"||o._bsontype==="Timestamp")return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(8+1);if(o._bsontype==="Decimal128")return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(16+1);if(o._bsontype==="Code")return o.scope!=null&&Object.keys(o.scope).length>0?(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1+4+4+ge.Buffer.byteLength(o.code.toString(),"utf8")+1+r(o.scope,f,l):(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1+4+ge.Buffer.byteLength(o.code.toString(),"utf8")+1;if(o._bsontype==="Binary")return o.sub_type===fn.Binary.SUBTYPE_BYTE_ARRAY?(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(o.position+1+4+1+4):(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+(o.position+1+4+1);if(o._bsontype==="Symbol")return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+ge.Buffer.byteLength(o.value,"utf8")+4+1+1;if(o._bsontype==="DBRef"){let u=Object.assign({$ref:o.collection,$id:o.oid},o.fields);return o.db!=null&&(u.$db=o.db),(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1+r(u,f,l)}else return o instanceof RegExp||Object.prototype.toString.call(o)==="[object RegExp]"?(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1+ge.Buffer.byteLength(o.source,"utf8")+1+(o.global?1:0)+(o.ignoreCase?1:0)+(o.multiline?1:0)+1:o._bsontype==="BSONRegExp"?(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1+ge.Buffer.byteLength(o.pattern,"utf8")+1+ge.Buffer.byteLength(o.options,"utf8")+1:(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+r(o,f,l)+1;case"function":if(o instanceof RegExp||Object.prototype.toString.call(o)==="[object RegExp]"||String.call(o)==="[object RegExp]")return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1+ge.Buffer.byteLength(o.source,"utf8")+1+(o.global?1:0)+(o.ignoreCase?1:0)+(o.multiline?1:0)+1;if(f&&o.scope!=null&&Object.keys(o.scope).length>0)return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1+4+4+ge.Buffer.byteLength(jt.normalizedFunctionString(o),"utf8")+1+r(o.scope,f,l);if(f)return(i!=null?ge.Buffer.byteLength(i,"utf8")+1:0)+1+4+ge.Buffer.byteLength(jt.normalizedFunctionString(o),"utf8")+1}return 0}});zt(rw);var f8=rw.calculateObjectSize,Po=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.BSONRegExp=void 0;function r(i){return i.split("").sort().join("")}class n{constructor(o,f){this.pattern=o,this.options=f??"",r(this.options);for(let s=0;s<this.options.length;s++)if(!(this.options[s]==="i"||this.options[s]==="m"||this.options[s]==="x"||this.options[s]==="l"||this.options[s]==="s"||this.options[s]==="u"))throw new Error(`The regular expression option [${this.options[s]}] is not supported`)}static parseOptions(o){return o?o.split("").sort().join(""):""}toExtendedJSON(o){return o=o||{},o.legacy?{$regex:this.pattern,$options:this.options}:{$regularExpression:{pattern:this.pattern,options:this.options}}}static fromExtendedJSON(o){if("$regex"in o)if(typeof o.$regex!="string"){if(o.$regex._bsontype==="BSONRegExp")return o}else return new n(o.$regex,n.parseOptions(o.$options));if("$regularExpression"in o)return new n(o.$regularExpression.pattern,n.parseOptions(o.$regularExpression.options));throw new TypeError(`Unexpected BSONRegExp EJSON object form: ${JSON.stringify(o)}`)}}e.BSONRegExp=n,Object.defineProperty(n.prototype,"_bsontype",{value:"BSONRegExp"})});zt(Po);var s8=Po.BSONRegExp,Ps=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.BSONSymbol=void 0;class r{constructor(i){this.value=i}valueOf(){return this.value}toString(){return this.value}inspect(){return this.value}toJSON(){return this.value}toExtendedJSON(){return{$symbol:this.value}}static fromExtendedJSON(i){return new r(i.$symbol)}}e.BSONSymbol=r,Object.defineProperty(r.prototype,"_bsontype",{value:"Symbol"})});zt(Ps);var a8=Ps.BSONSymbol,Ro=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Timestamp=e.LongWithoutOverridesClass=void 0,e.LongWithoutOverridesClass=Ie.Long;class r extends e.LongWithoutOverridesClass{constructor(i,o){Ie.Long.isLong(i)?super(i.low,i.high,!0):super(i,o,!0),Object.defineProperty(this,"_bsontype",{value:"Timestamp",writable:!1,configurable:!1,enumerable:!1})}toJSON(){return{$timestamp:this.toString()}}static fromInt(i){return new r(Ie.Long.fromInt(i,!0))}static fromNumber(i){return new r(Ie.Long.fromNumber(i,!0))}static fromBits(i,o){return new r(i,o)}static fromString(i,o){return new r(Ie.Long.fromString(i,!0,o))}toExtendedJSON(){return{$timestamp:{t:this.high>>>0,i:this.low>>>0}}}static fromExtendedJSON(i){return new r(i.$timestamp.i,i.$timestamp.t)}}e.Timestamp=r,r.MAX_VALUE=Ie.Long.MAX_UNSIGNED_VALUE});zt(Ro);var l8=Ro.Timestamp,u8=Ro.LongWithoutOverridesClass,fp=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.validateUtf8=void 0;let r=128,n=192,i=224,o=240,f=248,s=192,l=224,u=240,c=128;function _(p,j,S){let T=0;for(let U=j;U<S;U+=1){let W=p[U];if(T){if((W&n)!==c)return!1;T-=1}else if(W&r)if((W&i)===s)T=1;else if((W&o)===l)T=2;else if((W&f)===u)T=3;else return!1}return!T}e.validateUtf8=_});zt(fp);var c8=fp.validateUtf8,sp=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.deserialize=void 0;let r=Ie.Long.fromNumber(G.JS_INT_MAX),n=Ie.Long.fromNumber(G.JS_INT_MIN),i={};function o(l,u,c){u=u??{};let _=u&&u.index?u.index:0,p=l[_]|l[_+1]<<8|l[_+2]<<16|l[_+3]<<24;if(p<5)throw new Error(`bson size must be >= 5, is ${p}`);if(u.allowObjectSmallerThanBufferSize&&l.length<p)throw new Error(`buffer length ${l.length} must be >= bson size ${p}`);if(!u.allowObjectSmallerThanBufferSize&&l.length!==p)throw new Error(`buffer length ${l.length} must === bson size ${p}`);if(p+_>l.byteLength)throw new Error(`(bson size ${p} + options.index ${_} must be <= buffer length ${l.byteLength})`);if(l[_+p-1]!==0)throw new Error("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00");return f(l,_,u,c)}e.deserialize=o;function f(l,u,c,_=!1){let p=c.evalFunctions==null?!1:c.evalFunctions,j=c.cacheFunctions==null?!1:c.cacheFunctions,S=c.fieldsAsRaw==null?null:c.fieldsAsRaw,T=c.raw==null?!1:c.raw,U=typeof c.bsonRegExp=="boolean"?c.bsonRegExp:!1,W=c.promoteBuffers==null?!1:c.promoteBuffers,L=c.promoteLongs==null?!0:c.promoteLongs,te=c.promoteValues==null?!0:c.promoteValues,ce=u;if(l.length<5)throw new Error("corrupt bson message < 5 bytes long");let J=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;if(J<5||J>l.length)throw new Error("corrupt bson message");let D=_?[]:{},ae=0,Y=!1;for(;!Y;){let g=l[u++];if(g===0)break;let N=u;for(;l[N]!==0&&N<l.length;)N++;if(N>=l.byteLength)throw new Error("Bad BSON Document: illegal CString");let b=_?ae++:l.toString("utf8",u,N);if(u=N+1,g===G.BSON_DATA_STRING){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;if(H<=0||H>l.length-u||l[u+H-1]!==0)throw new Error("bad string length in bson");if(!fp.validateUtf8(l,u,u+H-1))throw new Error("Invalid UTF-8 string in BSON document");let K=l.toString("utf8",u,u+H-1);D[b]=K,u=u+H}else if(g===G.BSON_DATA_OID){let H=ge.Buffer.alloc(12);l.copy(H,0,u,u+12),D[b]=new Ji.ObjectId(H),u=u+12}else if(g===G.BSON_DATA_INT&&te===!1)D[b]=new zf.Int32(l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24);else if(g===G.BSON_DATA_INT)D[b]=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;else if(g===G.BSON_DATA_NUMBER&&te===!1)D[b]=new Mf.Double(l.readDoubleLE(u)),u=u+8;else if(g===G.BSON_DATA_NUMBER)D[b]=l.readDoubleLE(u),u=u+8;else if(g===G.BSON_DATA_DATE){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24,K=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;D[b]=new Date(new Ie.Long(H,K).toNumber())}else if(g===G.BSON_DATA_BOOLEAN){if(l[u]!==0&&l[u]!==1)throw new Error("illegal boolean type value");D[b]=l[u++]===1}else if(g===G.BSON_DATA_OBJECT){let H=u,K=l[u]|l[u+1]<<8|l[u+2]<<16|l[u+3]<<24;if(K<=0||K>l.length-u)throw new Error("bad embedded document length in bson");T?D[b]=l.slice(u,u+K):D[b]=f(l,H,c,!1),u=u+K}else if(g===G.BSON_DATA_ARRAY){let H=u,K=l[u]|l[u+1]<<8|l[u+2]<<16|l[u+3]<<24,M=c,ie=u+K;if(S&&S[b]){M={};for(let E in c)M[E]=c[E];M.raw=!0}if(D[b]=f(l,H,M,!0),u=u+K,l[u-1]!==0)throw new Error("invalid array terminator byte");if(u!==ie)throw new Error("corrupted array bson")}else if(g===G.BSON_DATA_UNDEFINED)D[b]=void 0;else if(g===G.BSON_DATA_NULL)D[b]=null;else if(g===G.BSON_DATA_LONG){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24,K=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24,M=new Ie.Long(H,K);L&&te===!0?D[b]=M.lessThanOrEqual(r)&&M.greaterThanOrEqual(n)?M.toNumber():M:D[b]=M}else if(g===G.BSON_DATA_DECIMAL128){let H=ge.Buffer.alloc(16);l.copy(H,0,u,u+16),u=u+16;let K=new Ns.Decimal128(H);"toObject"in K&&typeof K.toObject=="function"?D[b]=K.toObject():D[b]=K}else if(g===G.BSON_DATA_BINARY){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24,K=H,M=l[u++];if(H<0)throw new Error("Negative binary type element size found");if(H>l.byteLength)throw new Error("Binary type size larger than document size");if(l.slice!=null){if(M===fn.Binary.SUBTYPE_BYTE_ARRAY){if(H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24,H<0)throw new Error("Negative binary type element size found for subtype 0x02");if(H>K-4)throw new Error("Binary type with subtype 0x02 contains too long binary size");if(H<K-4)throw new Error("Binary type with subtype 0x02 contains too short binary size")}W&&te?D[b]=l.slice(u,u+H):D[b]=new fn.Binary(l.slice(u,u+H),M)}else{let ie=ge.Buffer.alloc(H);if(M===fn.Binary.SUBTYPE_BYTE_ARRAY){if(H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24,H<0)throw new Error("Negative binary type element size found for subtype 0x02");if(H>K-4)throw new Error("Binary type with subtype 0x02 contains too long binary size");if(H<K-4)throw new Error("Binary type with subtype 0x02 contains too short binary size")}for(N=0;N<H;N++)ie[N]=l[u+N];W&&te?D[b]=ie:D[b]=new fn.Binary(ie,M)}u=u+H}else if(g===G.BSON_DATA_REGEXP&&U===!1){for(N=u;l[N]!==0&&N<l.length;)N++;if(N>=l.length)throw new Error("Bad BSON Document: illegal CString");let H=l.toString("utf8",u,N);for(u=N+1,N=u;l[N]!==0&&N<l.length;)N++;if(N>=l.length)throw new Error("Bad BSON Document: illegal CString");let K=l.toString("utf8",u,N);u=N+1;let M=new Array(K.length);for(N=0;N<K.length;N++)switch(K[N]){case"m":M[N]="m";break;case"s":M[N]="g";break;case"i":M[N]="i";break}D[b]=new RegExp(H,M.join(""))}else if(g===G.BSON_DATA_REGEXP&&U===!0){for(N=u;l[N]!==0&&N<l.length;)N++;if(N>=l.length)throw new Error("Bad BSON Document: illegal CString");let H=l.toString("utf8",u,N);for(u=N+1,N=u;l[N]!==0&&N<l.length;)N++;if(N>=l.length)throw new Error("Bad BSON Document: illegal CString");let K=l.toString("utf8",u,N);u=N+1,D[b]=new Po.BSONRegExp(H,K)}else if(g===G.BSON_DATA_SYMBOL){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;if(H<=0||H>l.length-u||l[u+H-1]!==0)throw new Error("bad string length in bson");let K=l.toString("utf8",u,u+H-1);D[b]=te?K:new Ps.BSONSymbol(K),u=u+H}else if(g===G.BSON_DATA_TIMESTAMP){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24,K=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;D[b]=new Ro.Timestamp(H,K)}else if(g===G.BSON_DATA_MIN_KEY)D[b]=new Fs.MinKey;else if(g===G.BSON_DATA_MAX_KEY)D[b]=new Ds.MaxKey;else if(g===G.BSON_DATA_CODE){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;if(H<=0||H>l.length-u||l[u+H-1]!==0)throw new Error("bad string length in bson");let K=l.toString("utf8",u,u+H-1);p?j?D[b]=s(K,i,D):D[b]=s(K):D[b]=new Fo.Code(K),u=u+H}else if(g===G.BSON_DATA_CODE_W_SCOPE){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;if(H<4+4+4+1)throw new Error("code_w_scope total size shorter minimum expected length");let K=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;if(K<=0||K>l.length-u||l[u+K-1]!==0)throw new Error("bad string length in bson");let M=l.toString("utf8",u,u+K-1);u=u+K;let ie=u,E=l[u]|l[u+1]<<8|l[u+2]<<16|l[u+3]<<24,We=f(l,ie,c,!1);if(u=u+E,H<4+4+E+K)throw new Error("code_w_scope total size is too short, truncating scope");if(H>4+4+E+K)throw new Error("code_w_scope total size is too long, clips outer document");p?(j?D[b]=s(M,i,D):D[b]=s(M),D[b].scope=We):D[b]=new Fo.Code(M,We)}else if(g===G.BSON_DATA_DBPOINTER){let H=l[u++]|l[u++]<<8|l[u++]<<16|l[u++]<<24;if(H<=0||H>l.length-u||l[u+H-1]!==0)throw new Error("bad string length in bson");if(!fp.validateUtf8(l,u,u+H-1))throw new Error("Invalid UTF-8 string in BSON document");let K=l.toString("utf8",u,u+H-1);u=u+H;let M=ge.Buffer.alloc(12);l.copy(M,0,u,u+12);let ie=new Ji.ObjectId(M);u=u+12,D[b]=new Yn.DBRef(K,ie)}else throw new Error("Detected unknown BSON type "+g.toString(16)+' for fieldname "'+b+'"')}if(J!==u-ce)throw _?new Error("corrupt array bson"):new Error("corrupt object bson");let pe=Object.keys(D).filter(g=>g.startsWith("$")),y=!0;if(pe.forEach(g=>{["$ref","$id","$db"].indexOf(g)===-1&&(y=!1)}),!y)return D;if(Yn.isDBRefLike(D)){let g=Object.assign({},D);return delete g.$ref,delete g.$id,delete g.$db,new Yn.DBRef(D.$ref,D.$id,D.$db,g)}return D}function s(l,u,c){return u?(u[l]==null&&(u[l]=new Function(l)),u[l].bind(c)):new Function(l)}});zt(sp);var p8=sp.deserialize,Il=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.EJSON=e.isBSONType=void 0;function r(T){return jt.isObjectLike(T)&&Reflect.has(T,"_bsontype")&&typeof T._bsontype=="string"}e.isBSONType=r;let n=2147483647,i=-2147483648,o=9223372036854776e3,f=-9223372036854776e3,s={$oid:Ji.ObjectId,$binary:fn.Binary,$uuid:fn.Binary,$symbol:Ps.BSONSymbol,$numberInt:zf.Int32,$numberDecimal:Ns.Decimal128,$numberDouble:Mf.Double,$numberLong:Ie.Long,$minKey:Fs.MinKey,$maxKey:Ds.MaxKey,$regex:Po.BSONRegExp,$regularExpression:Po.BSONRegExp,$timestamp:Ro.Timestamp};function l(T,U={}){if(typeof T=="number"){if(U.relaxed||U.legacy)return T;if(Math.floor(T)===T){if(T>=i&&T<=n)return new zf.Int32(T);if(T>=f&&T<=o)return Ie.Long.fromNumber(T)}return new Mf.Double(T)}if(T==null||typeof T!="object")return T;if(T.$undefined)return null;let W=Object.keys(T).filter(L=>L.startsWith("$")&&T[L]!=null);for(let L=0;L<W.length;L++){let te=s[W[L]];if(te)return te.fromExtendedJSON(T,U)}if(T.$date!=null){let L=T.$date,te=new Date;return U.legacy?typeof L=="number"?te.setTime(L):typeof L=="string"&&te.setTime(Date.parse(L)):typeof L=="string"?te.setTime(Date.parse(L)):Ie.Long.isLong(L)?te.setTime(L.toNumber()):typeof L=="number"&&U.relaxed&&te.setTime(L),te}if(T.$code!=null){let L=Object.assign({},T);return T.$scope&&(L.$scope=l(T.$scope)),Fo.Code.fromExtendedJSON(T)}if(T.$ref!=null||T.$dbPointer!=null){let L=T.$ref?T:T.$dbPointer;if(L instanceof Yn.DBRef)return L;let te=Object.keys(L).filter(J=>J.startsWith("$")),ce=!0;if(te.forEach(J=>{["$ref","$id","$db"].indexOf(J)===-1&&(ce=!1)}),ce)return Yn.DBRef.fromExtendedJSON(L)}return T}function u(T,U){return T.map(W=>_(W,U))}function c(T){let U=T.toISOString();return T.getUTCMilliseconds()!==0?U:U.slice(0,-5)+"Z"}function _(T,U){if(Array.isArray(T))return u(T,U);if(T===void 0)return null;if(T instanceof Date){let W=T.getTime(),L=W>-1&&W<2534023188e5;return U.legacy?U.relaxed&&L?{$date:T.getTime()}:{$date:c(T)}:U.relaxed&&L?{$date:c(T)}:{$date:{$numberLong:T.getTime().toString()}}}if(typeof T=="number"&&!U.relaxed){if(Math.floor(T)===T){let W=T>=i&&T<=n,L=T>=f&&T<=o;if(W)return{$numberInt:T.toString()};if(L)return{$numberLong:T.toString()}}return{$numberDouble:T.toString()}}if(T instanceof RegExp){let W=T.flags;if(W===void 0){let te=T.toString().match(/[gimuy]*$/);te&&(W=te[0])}return new Po.BSONRegExp(T.source,W).toExtendedJSON(U)}return T!=null&&typeof T=="object"?j(T,U):T}let p={Binary:T=>new fn.Binary(T.value(),T.sub_type),Code:T=>new Fo.Code(T.code,T.scope),DBRef:T=>new Yn.DBRef(T.collection||T.namespace,T.oid,T.db,T.fields),Decimal128:T=>new Ns.Decimal128(T.bytes),Double:T=>new Mf.Double(T.value),Int32:T=>new zf.Int32(T.value),Long:T=>Ie.Long.fromBits(T.low!=null?T.low:T.low_,T.low!=null?T.high:T.high_,T.low!=null?T.unsigned:T.unsigned_),MaxKey:()=>new Ds.MaxKey,MinKey:()=>new Fs.MinKey,ObjectID:T=>new Ji.ObjectId(T),ObjectId:T=>new Ji.ObjectId(T),BSONRegExp:T=>new Po.BSONRegExp(T.pattern,T.options),Symbol:T=>new Ps.BSONSymbol(T.value),Timestamp:T=>Ro.Timestamp.fromBits(T.low,T.high)};function j(T,U){if(T==null||typeof T!="object")throw new Error("not an object instance");let W=T._bsontype;if(typeof W=="undefined"){let L={};for(let te in T)L[te]=_(T[te],U);return L}else if(r(T)){let L=T;if(typeof L.toExtendedJSON!="function"){let te=p[T._bsontype];if(!te)throw new TypeError("Unrecognized or invalid _bsontype: "+T._bsontype);L=te(L)}return W==="Code"&&L.scope?L=new Fo.Code(L.code,_(L.scope,U)):W==="DBRef"&&L.oid&&(L=new Yn.DBRef(L.collection,_(L.oid,U),L.db,L.fields)),L.toExtendedJSON(U)}else throw new Error("_bsontype must be a string, but was: "+typeof W)}var S;(function(T){function U(ce,J){let D=Object.assign({},{relaxed:!0,legacy:!1},J);return typeof D.relaxed=="boolean"&&(D.strict=!D.relaxed),typeof D.strict=="boolean"&&(D.relaxed=!D.strict),JSON.parse(ce,(ae,Y)=>l(Y,D))}T.parse=U;function W(ce,J,D,ae){D!=null&&typeof D=="object"&&(ae=D,D=0),J!=null&&typeof J=="object"&&!Array.isArray(J)&&(ae=J,J=void 0,D=0),ae=Object.assign({},{relaxed:!0,legacy:!1},ae);let Y=_(ce,ae);return JSON.stringify(Y,J,D)}T.stringify=W;function L(ce,J){return J=J||{},JSON.parse(W(ce,J))}T.serialize=L;function te(ce,J){return J=J||{},U(JSON.stringify(ce),J)}T.deserialize=te})(S=e.EJSON||(e.EJSON={}))});zt(Il);var d8=Il.EJSON,m8=Il.isBSONType,Sl=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.writeIEEE754=e.readIEEE754=void 0;function r(i,o,f,s,l){let u,c,_=f==="big",p=l*8-s-1,j=(1<<p)-1,S=j>>1,T=-7,U=_?0:l-1,W=_?1:-1,L=i[o+U];for(U+=W,u=L&(1<<-T)-1,L>>=-T,T+=p;T>0;u=u*256+i[o+U],U+=W,T-=8);for(c=u&(1<<-T)-1,u>>=-T,T+=s;T>0;c=c*256+i[o+U],U+=W,T-=8);if(u===0)u=1-S;else{if(u===j)return c?NaN:(L?-1:1)*(1/0);c=c+Math.pow(2,s),u=u-S}return(L?-1:1)*c*Math.pow(2,u-s)}e.readIEEE754=r;function n(i,o,f,s,l,u){let c,_,p,j=s==="big",S=u*8-l-1,T=(1<<S)-1,U=T>>1,W=l===23?Math.pow(2,-24)-Math.pow(2,-77):0,L=j?u-1:0,te=j?-1:1,ce=o<0||o===0&&1/o<0?1:0;for(o=Math.abs(o),isNaN(o)||o===1/0?(_=isNaN(o)?1:0,c=T):(c=Math.floor(Math.log(o)/Math.LN2),o*(p=Math.pow(2,-c))<1&&(c--,p*=2),c+U>=1?o+=W/p:o+=W*Math.pow(2,1-U),o*p>=2&&(c++,p/=2),c+U>=T?(_=0,c=T):c+U>=1?(_=(o*p-1)*Math.pow(2,l),c=c+U):(_=o*Math.pow(2,U-1)*Math.pow(2,l),c=0)),isNaN(o)&&(_=0);l>=8;)i[f+L]=_&255,L+=te,_/=256,l-=8;for(c=c<<l|_,isNaN(o)&&(c+=8),S+=l;S>0;)i[f+L]=c&255,L+=te,c/=256,S-=8;i[f+L-te]|=ce*128}e.writeIEEE754=n});zt(Sl);var b8=Sl.writeIEEE754,w8=Sl.readIEEE754,ap=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.serializeInto=void 0;let r=/\x00/,n=new Set(["$db","$ref","$id","$clusterTime"]);function i(y){return Object.prototype.toString.call(y)==="[object RegExp]"}function o(y,g,N,b,H){y[b++]=G.BSON_DATA_STRING;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+K+1,y[b-1]=0;let M=y.write(N,b+4,void 0,"utf8");return y[b+3]=M+1>>24&255,y[b+2]=M+1>>16&255,y[b+1]=M+1>>8&255,y[b]=M+1&255,b=b+4+M,y[b++]=0,b}function f(y,g,N,b,H){if(Number.isInteger(N)&&N>=G.BSON_INT32_MIN&&N<=G.BSON_INT32_MAX){y[b++]=G.BSON_DATA_INT;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+K,y[b++]=0,y[b++]=N&255,y[b++]=N>>8&255,y[b++]=N>>16&255,y[b++]=N>>24&255}else{y[b++]=G.BSON_DATA_NUMBER;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+K,y[b++]=0,Sl.writeIEEE754(y,N,b,"little",52,8),b=b+8}return b}function s(y,g,N,b,H){y[b++]=G.BSON_DATA_NULL;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");return b=b+K,y[b++]=0,b}function l(y,g,N,b,H){y[b++]=G.BSON_DATA_BOOLEAN;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");return b=b+K,y[b++]=0,y[b++]=N?1:0,b}function u(y,g,N,b,H){y[b++]=G.BSON_DATA_DATE;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+K,y[b++]=0;let M=Ie.Long.fromNumber(N.getTime()),ie=M.getLowBits(),E=M.getHighBits();return y[b++]=ie&255,y[b++]=ie>>8&255,y[b++]=ie>>16&255,y[b++]=ie>>24&255,y[b++]=E&255,y[b++]=E>>8&255,y[b++]=E>>16&255,y[b++]=E>>24&255,b}function c(y,g,N,b,H){y[b++]=G.BSON_DATA_REGEXP;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");if(b=b+K,y[b++]=0,N.source&&N.source.match(r)!=null)throw Error("value "+N.source+" must not contain null bytes");return b=b+y.write(N.source,b,void 0,"utf8"),y[b++]=0,N.ignoreCase&&(y[b++]=105),N.global&&(y[b++]=115),N.multiline&&(y[b++]=109),y[b++]=0,b}function _(y,g,N,b,H){y[b++]=G.BSON_DATA_REGEXP;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");if(b=b+K,y[b++]=0,N.pattern.match(r)!=null)throw Error("pattern "+N.pattern+" must not contain null bytes");return b=b+y.write(N.pattern,b,void 0,"utf8"),y[b++]=0,b=b+y.write(N.options.split("").sort().join(""),b,void 0,"utf8"),y[b++]=0,b}function p(y,g,N,b,H){N===null?y[b++]=G.BSON_DATA_NULL:N._bsontype==="MinKey"?y[b++]=G.BSON_DATA_MIN_KEY:y[b++]=G.BSON_DATA_MAX_KEY;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");return b=b+K,y[b++]=0,b}function j(y,g,N,b,H){y[b++]=G.BSON_DATA_OID;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");if(b=b+K,y[b++]=0,typeof N.id=="string")y.write(N.id,b,void 0,"binary");else if(N.id&&N.id.copy)N.id.copy(y,b,0,12);else throw new TypeError("object ["+JSON.stringify(N)+"] is not a valid ObjectId");return b+12}function S(y,g,N,b,H){y[b++]=G.BSON_DATA_BINARY;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+K,y[b++]=0;let M=N.length;return y[b++]=M&255,y[b++]=M>>8&255,y[b++]=M>>16&255,y[b++]=M>>24&255,y[b++]=G.BSON_BINARY_SUBTYPE_DEFAULT,y.set(Do.ensureBuffer(N),b),b=b+M,b}function T(y,g,N,b,H=!1,K=0,M=!1,ie=!0,E=!1,We=[]){for(let X=0;X<We.length;X++)if(We[X]===N)throw new Error("cyclic dependency detected");We.push(N),y[b++]=Array.isArray(N)?G.BSON_DATA_ARRAY:G.BSON_DATA_OBJECT;let de=E?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+de,y[b++]=0;let C=pe(y,N,H,b,K+1,M,ie,We);return We.pop(),C}function U(y,g,N,b,H){y[b++]=G.BSON_DATA_DECIMAL128;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");return b=b+K,y[b++]=0,N.bytes.copy(y,b,0,16),b+16}function W(y,g,N,b,H){y[b++]=N._bsontype==="Long"?G.BSON_DATA_LONG:G.BSON_DATA_TIMESTAMP;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+K,y[b++]=0;let M=N.getLowBits(),ie=N.getHighBits();return y[b++]=M&255,y[b++]=M>>8&255,y[b++]=M>>16&255,y[b++]=M>>24&255,y[b++]=ie&255,y[b++]=ie>>8&255,y[b++]=ie>>16&255,y[b++]=ie>>24&255,b}function L(y,g,N,b,H){N=N.valueOf(),y[b++]=G.BSON_DATA_INT;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");return b=b+K,y[b++]=0,y[b++]=N&255,y[b++]=N>>8&255,y[b++]=N>>16&255,y[b++]=N>>24&255,b}function te(y,g,N,b,H){y[b++]=G.BSON_DATA_NUMBER;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");return b=b+K,y[b++]=0,Sl.writeIEEE754(y,N.value,b,"little",52,8),b=b+8,b}function ce(y,g,N,b,H=!1,K=0,M){y[b++]=G.BSON_DATA_CODE;let ie=M?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+ie,y[b++]=0;let E=jt.normalizedFunctionString(N),We=y.write(E,b+4,void 0,"utf8")+1;return y[b]=We&255,y[b+1]=We>>8&255,y[b+2]=We>>16&255,y[b+3]=We>>24&255,b=b+4+We-1,y[b++]=0,b}function J(y,g,N,b,H=!1,K=0,M=!1,ie=!0,E=!1){if(N.scope&&typeof N.scope=="object"){y[b++]=G.BSON_DATA_CODE_W_SCOPE;let We=E?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+We,y[b++]=0;let de=b,C=typeof N.code=="string"?N.code:N.code.toString();b=b+4;let X=y.write(C,b+4,void 0,"utf8")+1;y[b]=X&255,y[b+1]=X>>8&255,y[b+2]=X>>16&255,y[b+3]=X>>24&255,y[b+4+X-1]=0,b=b+X+4;let He=pe(y,N.scope,H,b,K+1,M,ie);b=He-1;let we=He-de;y[de++]=we&255,y[de++]=we>>8&255,y[de++]=we>>16&255,y[de++]=we>>24&255,y[b++]=0}else{y[b++]=G.BSON_DATA_CODE;let We=E?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+We,y[b++]=0;let de=N.code.toString(),C=y.write(de,b+4,void 0,"utf8")+1;y[b]=C&255,y[b+1]=C>>8&255,y[b+2]=C>>16&255,y[b+3]=C>>24&255,b=b+4+C-1,y[b++]=0}return b}function D(y,g,N,b,H){y[b++]=G.BSON_DATA_BINARY;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+K,y[b++]=0;let M=N.value(!0),ie=N.position;return N.sub_type===fn.Binary.SUBTYPE_BYTE_ARRAY&&(ie=ie+4),y[b++]=ie&255,y[b++]=ie>>8&255,y[b++]=ie>>16&255,y[b++]=ie>>24&255,y[b++]=N.sub_type,N.sub_type===fn.Binary.SUBTYPE_BYTE_ARRAY&&(ie=ie-4,y[b++]=ie&255,y[b++]=ie>>8&255,y[b++]=ie>>16&255,y[b++]=ie>>24&255),y.set(M,b),b=b+N.position,b}function ae(y,g,N,b,H){y[b++]=G.BSON_DATA_SYMBOL;let K=H?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+K,y[b++]=0;let M=y.write(N.value,b+4,void 0,"utf8")+1;return y[b]=M&255,y[b+1]=M>>8&255,y[b+2]=M>>16&255,y[b+3]=M>>24&255,b=b+4+M-1,y[b++]=0,b}function Y(y,g,N,b,H,K,M){y[b++]=G.BSON_DATA_OBJECT;let ie=M?y.write(g,b,void 0,"ascii"):y.write(g,b,void 0,"utf8");b=b+ie,y[b++]=0;let E=b,We={$ref:N.collection||N.namespace,$id:N.oid};N.db!=null&&(We.$db=N.db),We=Object.assign(We,N.fields);let de=pe(y,We,!1,b,H+1,K),C=de-E;return y[E++]=C&255,y[E++]=C>>8&255,y[E++]=C>>16&255,y[E++]=C>>24&255,de}function pe(y,g,N=!1,b=0,H=0,K=!1,M=!0,ie=[]){b=b||0,ie=ie||[],ie.push(g);let E=b+4;if(Array.isArray(g))for(let de=0;de<g.length;de++){let C=""+de,X=g[de];if(X&&X.toBSON){if(typeof X.toBSON!="function")throw new TypeError("toBSON is not a function");X=X.toBSON()}if(typeof X=="string")E=o(y,C,X,E,!0);else if(typeof X=="number")E=f(y,C,X,E,!0);else{if(typeof X=="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(typeof X=="boolean")E=l(y,C,X,E,!0);else if(X instanceof Date||jt.isDate(X))E=u(y,C,X,E,!0);else if(X===void 0)E=s(y,C,X,E,!0);else if(X===null)E=s(y,C,X,E,!0);else if(X._bsontype==="ObjectId"||X._bsontype==="ObjectID")E=j(y,C,X,E,!0);else if(ge.Buffer.isBuffer(X)||jt.isUint8Array(X))E=S(y,C,X,E,!0);else if(X instanceof RegExp||i(X))E=c(y,C,X,E,!0);else if(typeof X=="object"&&X._bsontype==null)E=T(y,C,X,E,N,H,K,M,!0,ie);else if(typeof X=="object"&&Il.isBSONType(X)&&X._bsontype==="Decimal128")E=U(y,C,X,E,!0);else if(X._bsontype==="Long"||X._bsontype==="Timestamp")E=W(y,C,X,E,!0);else if(X._bsontype==="Double")E=te(y,C,X,E,!0);else if(typeof X=="function"&&K)E=ce(y,C,X,E,N,H,!0);else if(X._bsontype==="Code")E=J(y,C,X,E,N,H,K,M,!0);else if(X._bsontype==="Binary")E=D(y,C,X,E,!0);else if(X._bsontype==="Symbol")E=ae(y,C,X,E,!0);else if(X._bsontype==="DBRef")E=Y(y,C,X,E,H,K,!0);else if(X._bsontype==="BSONRegExp")E=_(y,C,X,E,!0);else if(X._bsontype==="Int32")E=L(y,C,X,E,!0);else if(X._bsontype==="MinKey"||X._bsontype==="MaxKey")E=p(y,C,X,E,!0);else if(typeof X._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+X._bsontype)}}else if(g instanceof op.Map){let de=g.entries(),C=!1;for(;!C;){let X=de.next();if(C=!!X.done,C)continue;let He=X.value[0],we=X.value[1],tt=typeof we;if(typeof He=="string"&&!n.has(He)){if(He.match(r)!=null)throw Error("key "+He+" must not contain null bytes");if(N){if(He[0]==="$")throw Error("key "+He+" must not start with '$'");if(~He.indexOf("."))throw Error("key "+He+" must not contain '.'")}}if(tt==="string")E=o(y,He,we,E);else if(tt==="number")E=f(y,He,we,E);else{if(tt==="bigint"||jt.isBigInt64Array(we)||jt.isBigUInt64Array(we))throw new TypeError("Unsupported type BigInt, please use Decimal128");if(tt==="boolean")E=l(y,He,we,E);else if(we instanceof Date||jt.isDate(we))E=u(y,He,we,E);else if(we===null||we===void 0&&M===!1)E=s(y,He,we,E);else if(we._bsontype==="ObjectId"||we._bsontype==="ObjectID")E=j(y,He,we,E);else if(ge.Buffer.isBuffer(we)||jt.isUint8Array(we))E=S(y,He,we,E);else if(we instanceof RegExp||i(we))E=c(y,He,we,E);else if(tt==="object"&&we._bsontype==null)E=T(y,He,we,E,N,H,K,M,!1,ie);else if(tt==="object"&&we._bsontype==="Decimal128")E=U(y,He,we,E);else if(we._bsontype==="Long"||we._bsontype==="Timestamp")E=W(y,He,we,E);else if(we._bsontype==="Double")E=te(y,He,we,E);else if(we._bsontype==="Code")E=J(y,He,we,E,N,H,K,M);else if(typeof we=="function"&&K)E=ce(y,He,we,E,N,H,K);else if(we._bsontype==="Binary")E=D(y,He,we,E);else if(we._bsontype==="Symbol")E=ae(y,He,we,E);else if(we._bsontype==="DBRef")E=Y(y,He,we,E,H,K);else if(we._bsontype==="BSONRegExp")E=_(y,He,we,E);else if(we._bsontype==="Int32")E=L(y,He,we,E);else if(we._bsontype==="MinKey"||we._bsontype==="MaxKey")E=p(y,He,we,E);else if(typeof we._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+we._bsontype)}}}else{if(g.toBSON){if(typeof g.toBSON!="function")throw new TypeError("toBSON is not a function");if(g=g.toBSON(),g!=null&&typeof g!="object")throw new TypeError("toBSON function did not return an object")}for(let de in g){let C=g[de];if(C&&C.toBSON){if(typeof C.toBSON!="function")throw new TypeError("toBSON is not a function");C=C.toBSON()}let X=typeof C;if(typeof de=="string"&&!n.has(de)){if(de.match(r)!=null)throw Error("key "+de+" must not contain null bytes");if(N){if(de[0]==="$")throw Error("key "+de+" must not start with '$'");if(~de.indexOf("."))throw Error("key "+de+" must not contain '.'")}}if(X==="string")E=o(y,de,C,E);else if(X==="number")E=f(y,de,C,E);else{if(X==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(X==="boolean")E=l(y,de,C,E);else if(C instanceof Date||jt.isDate(C))E=u(y,de,C,E);else if(C===void 0)M===!1&&(E=s(y,de,C,E));else if(C===null)E=s(y,de,C,E);else if(C._bsontype==="ObjectId"||C._bsontype==="ObjectID")E=j(y,de,C,E);else if(ge.Buffer.isBuffer(C)||jt.isUint8Array(C))E=S(y,de,C,E);else if(C instanceof RegExp||i(C))E=c(y,de,C,E);else if(X==="object"&&C._bsontype==null)E=T(y,de,C,E,N,H,K,M,!1,ie);else if(X==="object"&&C._bsontype==="Decimal128")E=U(y,de,C,E);else if(C._bsontype==="Long"||C._bsontype==="Timestamp")E=W(y,de,C,E);else if(C._bsontype==="Double")E=te(y,de,C,E);else if(C._bsontype==="Code")E=J(y,de,C,E,N,H,K,M);else if(typeof C=="function"&&K)E=ce(y,de,C,E,N,H,K);else if(C._bsontype==="Binary")E=D(y,de,C,E);else if(C._bsontype==="Symbol")E=ae(y,de,C,E);else if(C._bsontype==="DBRef")E=Y(y,de,C,E,H,K);else if(C._bsontype==="BSONRegExp")E=_(y,de,C,E);else if(C._bsontype==="Int32")E=L(y,de,C,E);else if(C._bsontype==="MinKey"||C._bsontype==="MaxKey")E=p(y,de,C,E);else if(typeof C._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+C._bsontype)}}}ie.pop(),y[E++]=0;let We=E-b;return y[b++]=We&255,y[b++]=We>>8&255,y[b++]=We>>16&255,y[b++]=We>>24&255,E}e.serializeInto=pe});zt(ap);var h8=ap.serializeInto,Se=Dt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.deserializeStream=e.calculateObjectSize=e.deserialize=e.serializeWithBufferAndIndex=e.serialize=e.setInternalBufferSize=e.ObjectID=e.Decimal128=e.BSONRegExp=e.MaxKey=e.MinKey=e.Int32=e.Double=e.Timestamp=e.Long=e.ObjectId=e.Binary=e.DBRef=e.BSONSymbol=e.Map=e.Code=e.LongWithoutOverridesClass=e.EJSON=e.JS_INT_MIN=e.JS_INT_MAX=e.BSON_INT64_MIN=e.BSON_INT64_MAX=e.BSON_INT32_MIN=e.BSON_INT32_MAX=e.BSON_DATA_UNDEFINED=e.BSON_DATA_TIMESTAMP=e.BSON_DATA_SYMBOL=e.BSON_DATA_STRING=e.BSON_DATA_REGEXP=e.BSON_DATA_OID=e.BSON_DATA_OBJECT=e.BSON_DATA_NUMBER=e.BSON_DATA_NULL=e.BSON_DATA_MIN_KEY=e.BSON_DATA_MAX_KEY=e.BSON_DATA_LONG=e.BSON_DATA_INT=e.BSON_DATA_DECIMAL128=e.BSON_DATA_DBPOINTER=e.BSON_DATA_DATE=e.BSON_DATA_CODE_W_SCOPE=e.BSON_DATA_CODE=e.BSON_DATA_BOOLEAN=e.BSON_DATA_BINARY=e.BSON_DATA_ARRAY=e.BSON_BINARY_SUBTYPE_UUID_NEW=e.BSON_BINARY_SUBTYPE_UUID=e.BSON_BINARY_SUBTYPE_USER_DEFINED=e.BSON_BINARY_SUBTYPE_MD5=e.BSON_BINARY_SUBTYPE_FUNCTION=e.BSON_BINARY_SUBTYPE_DEFAULT=e.BSON_BINARY_SUBTYPE_BYTE_ARRAY=void 0,Object.defineProperty(e,"Binary",{enumerable:!0,get:function(){return fn.Binary}}),Object.defineProperty(e,"Code",{enumerable:!0,get:function(){return Fo.Code}}),Object.defineProperty(e,"DBRef",{enumerable:!0,get:function(){return Yn.DBRef}}),Object.defineProperty(e,"Decimal128",{enumerable:!0,get:function(){return Ns.Decimal128}}),Object.defineProperty(e,"Double",{enumerable:!0,get:function(){return Mf.Double}}),Object.defineProperty(e,"Int32",{enumerable:!0,get:function(){return zf.Int32}}),Object.defineProperty(e,"Long",{enumerable:!0,get:function(){return Ie.Long}}),Object.defineProperty(e,"Map",{enumerable:!0,get:function(){return op.Map}}),Object.defineProperty(e,"MaxKey",{enumerable:!0,get:function(){return Ds.MaxKey}}),Object.defineProperty(e,"MinKey",{enumerable:!0,get:function(){return Fs.MinKey}}),Object.defineProperty(e,"ObjectId",{enumerable:!0,get:function(){return Ji.ObjectId}}),Object.defineProperty(e,"ObjectID",{enumerable:!0,get:function(){return Ji.ObjectId}}),Object.defineProperty(e,"BSONRegExp",{enumerable:!0,get:function(){return Po.BSONRegExp}}),Object.defineProperty(e,"BSONSymbol",{enumerable:!0,get:function(){return Ps.BSONSymbol}}),Object.defineProperty(e,"Timestamp",{enumerable:!0,get:function(){return Ro.Timestamp}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_BYTE_ARRAY",{enumerable:!0,get:function(){return G.BSON_BINARY_SUBTYPE_BYTE_ARRAY}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_DEFAULT",{enumerable:!0,get:function(){return G.BSON_BINARY_SUBTYPE_DEFAULT}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_FUNCTION",{enumerable:!0,get:function(){return G.BSON_BINARY_SUBTYPE_FUNCTION}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_MD5",{enumerable:!0,get:function(){return G.BSON_BINARY_SUBTYPE_MD5}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_USER_DEFINED",{enumerable:!0,get:function(){return G.BSON_BINARY_SUBTYPE_USER_DEFINED}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_UUID",{enumerable:!0,get:function(){return G.BSON_BINARY_SUBTYPE_UUID}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_UUID_NEW",{enumerable:!0,get:function(){return G.BSON_BINARY_SUBTYPE_UUID_NEW}}),Object.defineProperty(e,"BSON_DATA_ARRAY",{enumerable:!0,get:function(){return G.BSON_DATA_ARRAY}}),Object.defineProperty(e,"BSON_DATA_BINARY",{enumerable:!0,get:function(){return G.BSON_DATA_BINARY}}),Object.defineProperty(e,"BSON_DATA_BOOLEAN",{enumerable:!0,get:function(){return G.BSON_DATA_BOOLEAN}}),Object.defineProperty(e,"BSON_DATA_CODE",{enumerable:!0,get:function(){return G.BSON_DATA_CODE}}),Object.defineProperty(e,"BSON_DATA_CODE_W_SCOPE",{enumerable:!0,get:function(){return G.BSON_DATA_CODE_W_SCOPE}}),Object.defineProperty(e,"BSON_DATA_DATE",{enumerable:!0,get:function(){return G.BSON_DATA_DATE}}),Object.defineProperty(e,"BSON_DATA_DBPOINTER",{enumerable:!0,get:function(){return G.BSON_DATA_DBPOINTER}}),Object.defineProperty(e,"BSON_DATA_DECIMAL128",{enumerable:!0,get:function(){return G.BSON_DATA_DECIMAL128}}),Object.defineProperty(e,"BSON_DATA_INT",{enumerable:!0,get:function(){return G.BSON_DATA_INT}}),Object.defineProperty(e,"BSON_DATA_LONG",{enumerable:!0,get:function(){return G.BSON_DATA_LONG}}),Object.defineProperty(e,"BSON_DATA_MAX_KEY",{enumerable:!0,get:function(){return G.BSON_DATA_MAX_KEY}}),Object.defineProperty(e,"BSON_DATA_MIN_KEY",{enumerable:!0,get:function(){return G.BSON_DATA_MIN_KEY}}),Object.defineProperty(e,"BSON_DATA_NULL",{enumerable:!0,get:function(){return G.BSON_DATA_NULL}}),Object.defineProperty(e,"BSON_DATA_NUMBER",{enumerable:!0,get:function(){return G.BSON_DATA_NUMBER}}),Object.defineProperty(e,"BSON_DATA_OBJECT",{enumerable:!0,get:function(){return G.BSON_DATA_OBJECT}}),Object.defineProperty(e,"BSON_DATA_OID",{enumerable:!0,get:function(){return G.BSON_DATA_OID}}),Object.defineProperty(e,"BSON_DATA_REGEXP",{enumerable:!0,get:function(){return G.BSON_DATA_REGEXP}}),Object.defineProperty(e,"BSON_DATA_STRING",{enumerable:!0,get:function(){return G.BSON_DATA_STRING}}),Object.defineProperty(e,"BSON_DATA_SYMBOL",{enumerable:!0,get:function(){return G.BSON_DATA_SYMBOL}}),Object.defineProperty(e,"BSON_DATA_TIMESTAMP",{enumerable:!0,get:function(){return G.BSON_DATA_TIMESTAMP}}),Object.defineProperty(e,"BSON_DATA_UNDEFINED",{enumerable:!0,get:function(){return G.BSON_DATA_UNDEFINED}}),Object.defineProperty(e,"BSON_INT32_MAX",{enumerable:!0,get:function(){return G.BSON_INT32_MAX}}),Object.defineProperty(e,"BSON_INT32_MIN",{enumerable:!0,get:function(){return G.BSON_INT32_MIN}}),Object.defineProperty(e,"BSON_INT64_MAX",{enumerable:!0,get:function(){return G.BSON_INT64_MAX}}),Object.defineProperty(e,"BSON_INT64_MIN",{enumerable:!0,get:function(){return G.BSON_INT64_MIN}}),Object.defineProperty(e,"JS_INT_MAX",{enumerable:!0,get:function(){return G.JS_INT_MAX}}),Object.defineProperty(e,"JS_INT_MIN",{enumerable:!0,get:function(){return G.JS_INT_MIN}}),Object.defineProperty(e,"EJSON",{enumerable:!0,get:function(){return Il.EJSON}});var r=Ro;Object.defineProperty(e,"LongWithoutOverridesClass",{enumerable:!0,get:function(){return r.LongWithoutOverridesClass}});let n=1024*1024*17,i=ge.Buffer.alloc(n);function o(_){i.length<_&&(i=ge.Buffer.alloc(_))}e.setInternalBufferSize=o;function f(_,p={}){let j=typeof p.checkKeys=="boolean"?p.checkKeys:!1,S=typeof p.serializeFunctions=="boolean"?p.serializeFunctions:!1,T=typeof p.ignoreUndefined=="boolean"?p.ignoreUndefined:!0,U=typeof p.minInternalBufferSize=="number"?p.minInternalBufferSize:n;i.length<U&&(i=ge.Buffer.alloc(U));let W=ap.serializeInto(i,_,j,0,0,S,T,[]),L=ge.Buffer.alloc(W);return i.copy(L,0,0,L.length),L}e.serialize=f;function s(_,p,j={}){let S=typeof j.checkKeys=="boolean"?j.checkKeys:!1,T=typeof j.serializeFunctions=="boolean"?j.serializeFunctions:!1,U=typeof j.ignoreUndefined=="boolean"?j.ignoreUndefined:!0,W=typeof j.index=="number"?j.index:0,L=ap.serializeInto(i,_,S,0,0,T,U);return i.copy(p,W,0,L),W+L-1}e.serializeWithBufferAndIndex=s;function l(_,p={}){return sp.deserialize(Do.ensureBuffer(_),p)}e.deserialize=l;function u(_,p={}){p=p||{};let j=typeof p.serializeFunctions=="boolean"?p.serializeFunctions:!1,S=typeof p.ignoreUndefined=="boolean"?p.ignoreUndefined:!0;return rw.calculateObjectSize(_,j,S)}e.calculateObjectSize=u;function c(_,p,j,S,T,U){let W=Object.assign({allowObjectSmallerThanBufferSize:!0,index:0},U),L=Do.ensureBuffer(_),te=p;for(let ce=0;ce<j;ce++){let J=L[te]|L[te+1]<<8|L[te+2]<<16|L[te+3]<<24;W.index=te,S[T+ce]=sp.deserialize(L,W),te=te+J}return te}e.deserializeStream=c}),g8=zt(Se),y8=Se.deserializeStream,j8=Se.calculateObjectSize,vq=Se.deserialize,_8=Se.serializeWithBufferAndIndex,Tq=Se.serialize,q8=Se.setInternalBufferSize,v8=Se.ObjectID,T8=Se.Decimal128,B8=Se.BSONRegExp,k8=Se.MaxKey,I8=Se.MinKey,S8=Se.Int32,x8=Se.Double,A8=Se.Timestamp,E8=Se.Long,O8=Se.ObjectId,N8=Se.Binary,D8=Se.DBRef,F8=Se.BSONSymbol,P8=Se.Map,R8=Se.Code,H8=Se.LongWithoutOverridesClass,M8=Se.EJSON,z8=Se.JS_INT_MIN,U8=Se.JS_INT_MAX,L8=Se.BSON_INT64_MIN,V8=Se.BSON_INT64_MAX,C8=Se.BSON_INT32_MIN,W8=Se.BSON_INT32_MAX,Y8=Se.BSON_DATA_UNDEFINED,K8=Se.BSON_DATA_TIMESTAMP,G8=Se.BSON_DATA_SYMBOL,J8=Se.BSON_DATA_STRING,Z8=Se.BSON_DATA_REGEXP,X8=Se.BSON_DATA_OID,Q8=Se.BSON_DATA_OBJECT,$8=Se.BSON_DATA_NUMBER,e6=Se.BSON_DATA_NULL,t6=Se.BSON_DATA_MIN_KEY,r6=Se.BSON_DATA_MAX_KEY,n6=Se.BSON_DATA_LONG,i6=Se.BSON_DATA_INT,o6=Se.BSON_DATA_DECIMAL128,f6=Se.BSON_DATA_DBPOINTER,s6=Se.BSON_DATA_DATE,a6=Se.BSON_DATA_CODE_W_SCOPE,l6=Se.BSON_DATA_CODE,u6=Se.BSON_DATA_BOOLEAN,c6=Se.BSON_DATA_BINARY,p6=Se.BSON_DATA_ARRAY,d6=Se.BSON_BINARY_SUBTYPE_UUID_NEW,m6=Se.BSON_BINARY_SUBTYPE_UUID,b6=Se.BSON_BINARY_SUBTYPE_USER_DEFINED,w6=Se.BSON_BINARY_SUBTYPE_MD5,h6=Se.BSON_BINARY_SUBTYPE_FUNCTION,g6=Se.BSON_BINARY_SUBTYPE_DEFAULT,y6=Se.BSON_BINARY_SUBTYPE_BYTE_ARRAY;function nw(t,e){return vq(new Uint8Array(t),e)}var EO="3.4.6",iw={bson:{}},ow={name:"BSON",id:"bson",module:"bson",version:EO,extensions:["bson"],mimeTypes:["application/bson"],category:"json",binary:!0,parse:OO,parseSync:NO,options:iw};async function OO(t,e){let r={...iw.bson,...e==null?void 0:e.bson};return nw(t,r)}function NO(t,e){let r={...iw.bson,...e==null?void 0:e.bson};return nw(t,r)}function fw(t,e){return Tq(t).buffer}var DO="3.4.6",sw={name:"BSON",id:"bson",module:"bson",version:DO,extensions:["bson"],options:{image:{mimeType:"application/bson"}},async encode(t,e){return fw(t,{})},encodeSync(t,e){return fw(t,{})}};var Uf={BOOLEAN:{primitiveType:"BOOLEAN",toPrimitive:FO,fromPrimitive:PO},INT32:{primitiveType:"INT32",toPrimitive:Iq},INT64:{primitiveType:"INT64",toPrimitive:Sq},INT96:{primitiveType:"INT96",toPrimitive:KO},FLOAT:{primitiveType:"FLOAT",toPrimitive:RO},DOUBLE:{primitiveType:"DOUBLE",toPrimitive:HO},BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",toPrimitive:xq},FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",toPrimitive:xq},UTF8:{primitiveType:"BYTE_ARRAY",originalType:"UTF8",toPrimitive:GO,fromPrimitive:JO},TIME_MILLIS:{primitiveType:"INT32",originalType:"TIME_MILLIS",toPrimitive:e4},TIME_MICROS:{primitiveType:"INT64",originalType:"TIME_MICROS",toPrimitive:t4},DATE:{primitiveType:"INT32",originalType:"DATE",toPrimitive:r4,fromPrimitive:n4},TIMESTAMP_MILLIS:{primitiveType:"INT64",originalType:"TIMESTAMP_MILLIS",toPrimitive:i4,fromPrimitive:o4},TIMESTAMP_MICROS:{primitiveType:"INT64",originalType:"TIMESTAMP_MICROS",toPrimitive:f4,fromPrimitive:s4},UINT_8:{primitiveType:"INT32",originalType:"UINT_8",toPrimitive:zO},UINT_16:{primitiveType:"INT32",originalType:"UINT_16",toPrimitive:LO},UINT_32:{primitiveType:"INT32",originalType:"UINT_32",toPrimitive:CO},UINT_64:{primitiveType:"INT64",originalType:"UINT_64",toPrimitive:YO},INT_8:{primitiveType:"INT32",originalType:"INT_8",toPrimitive:MO},INT_16:{primitiveType:"INT32",originalType:"INT_16",toPrimitive:UO},INT_32:{primitiveType:"INT32",originalType:"INT_32",toPrimitive:Iq},INT_64:{primitiveType:"INT64",originalType:"INT_64",toPrimitive:Sq},JSON:{primitiveType:"BYTE_ARRAY",originalType:"JSON",toPrimitive:ZO,fromPrimitive:XO},BSON:{primitiveType:"BYTE_ARRAY",originalType:"BSON",toPrimitive:QO,fromPrimitive:$O},INTERVAL:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"INTERVAL",typeLength:12,toPrimitive:a4,fromPrimitive:l4},DECIMAL_INT32:{primitiveType:"INT32",originalType:"DECIMAL_INT32",toPrimitive:VO,fromPrimitive:Oq},DECIMAL_INT64:{primitiveType:"INT64",originalType:"DECIMAL_INT64",toPrimitive:WO,fromPrimitive:Oq},DECIMAL_BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",originalType:"DECIMAL_BYTE_ARRAY",toPrimitive:Aq,fromPrimitive:Nq},DECIMAL_FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"DECIMAL_FIXED_LEN_BYTE_ARRAY",toPrimitive:Aq,fromPrimitive:Nq}};function Bq(t,e,r){if(!(t in Uf))throw new Error(`invalid type: ${t}`);return Uf[t].toPrimitive(e,r)}function kq(t,e,r){if(!(t in Uf))throw new Error(`invalid type: ${t}`);return"fromPrimitive"in Uf[t]?Uf[t].fromPrimitive?.(e,r):e}function FO(t){return Boolean(t)}function PO(t){return Boolean(t)}function RO(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for FLOAT: ${t}`);return e}function HO(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for DOUBLE: ${t}`);return e}function MO(t){let e=parseInt(t,10);if(e<-128||e>127||isNaN(e))throw new Error(`invalid value for INT8: ${t}`);return e}function zO(t){let e=parseInt(t,10);if(e<0||e>255||isNaN(e))throw new Error(`invalid value for UINT8: ${t}`);return e}function UO(t){let e=parseInt(t,10);if(e<-32768||e>32767||isNaN(e))throw new Error(`invalid value for INT16: ${t}`);return e}function LO(t){let e=parseInt(t,10);if(e<0||e>65535||isNaN(e))throw new Error(`invalid value for UINT16: ${t}`);return e}function Iq(t){let e=parseInt(t,10);if(e<-2147483648||e>2147483647||isNaN(e))throw new Error(`invalid value for INT32: ${t}`);return e}function VO(t,e){let r=t*10**(e.scale||0),n=Math.round(r*10**-e.presision%1*10**e.presision);if(n<-2147483648||n>2147483647||isNaN(n))throw new Error(`invalid value for INT32: ${t}`);return n}function CO(t){let e=parseInt(t,10);if(e<0||e>281474976710655||isNaN(e))throw new Error(`invalid value for UINT32: ${t}`);return e}function Sq(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT64: ${t}`);return e}function WO(t,e){let r=t*10**(e.scale||0),n=Math.round(r*10**-e.presision%1*10**e.presision);if(isNaN(n))throw new Error(`invalid value for INT64: ${t}`);return n}function YO(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for UINT64: ${t}`);return e}function KO(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT96: ${t}`);return e}function xq(t){return Buffer.from(t)}function Aq(t){return Buffer.from(t)}function GO(t){return Buffer.from(t,"utf8")}function JO(t){return t.toString()}function ZO(t){return Buffer.from(JSON.stringify(t))}function XO(t){return JSON.parse(t)}function QO(t){let e=sw.encodeSync?.(t);return Buffer.from(e)}function $O(t){return ow.parseSync?.(t)}function e4(t){let e=parseInt(t,10);if(e<0||e>18446744073709552e3||isNaN(e))throw new Error(`invalid value for TIME_MILLIS: ${t}`);return e}function t4(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIME_MICROS: ${t}`);return e}var Eq=864e5;function r4(t){if(t instanceof Date)return t.getTime()/Eq;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for DATE: ${t}`);return e}}function n4(t){return new Date(t*Eq)}function i4(t){if(t instanceof Date)return t.getTime();{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIMESTAMP_MILLIS: ${t}`);return e}}function o4(t){return new Date(t)}function f4(t){if(t instanceof Date)return t.getTime()*1e3;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIMESTAMP_MICROS: ${t}`);return e}}function s4(t){return new Date(t/1e3)}function a4(t){if(!t.months||!t.days||!t.milliseconds)throw new Error("value for INTERVAL must be object { months: ..., days: ..., milliseconds: ... }");let e=Buffer.alloc(12);return e.writeUInt32LE(t.months,0),e.writeUInt32LE(t.days,4),e.writeUInt32LE(t.milliseconds,8),e}function l4(t){let e=Buffer.from(t),r=e.readUInt32LE(0),n=e.readUInt32LE(4),i=e.readUInt32LE(8);return{months:r,days:n,milliseconds:i}}function Oq(t,e){return Math.round(t*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}function Nq(t,e){let r=0;if(t.length<=4)for(let i=0;i<t.length;i++)r+=t[i]<<8*(t.length-i-1);else for(let i=0;i<t.length;i++)r+=t[i]*2**(8*(t.length-1-i));return Math.round(r*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}function aw(t){let e={};for(let r of t.fieldList)e[r.key]={dlevels:[],rlevels:[],values:[],pageHeaders:[],count:0};return{rowCount:0,columnData:e}}function Dq(t,e,r){let n=aw(t).columnData;if(lw(t.fields,e,n,0,0),r.rowCount===0){r.rowCount=1,r.columnData=n;return}r.rowCount+=1;for(let i of t.fieldList)Array.prototype.push.apply(r.columnData[i.key].rlevels,n[i.key].rlevels),Array.prototype.push.apply(r.columnData[i.key].dlevels,n[i.key].dlevels),Array.prototype.push.apply(r.columnData[i.key].values,n[i.key].values),r.columnData[i.key].count+=n[i.key].count}function lw(t,e,r,n,i){for(let o in t){let f=t[o],s=[];if(e&&f.name in e&&e[f.name]!==void 0&&e[f.name]!==null&&(e[f.name].constructor===Array?s=e[f.name]:s.push(e[f.name])),s.length===0&&Boolean(e)&&f.repetitionType==="REQUIRED")throw new Error(`missing required field: ${f.name}`);if(s.length>1&&f.repetitionType!=="REPEATED")throw new Error(`too many values for field: ${f.name}`);if(s.length===0){f.isNested?lw(f.fields,null,r,n,i):(r[f.key].count+=1,r[f.key].rlevels.push(n),r[f.key].dlevels.push(i));continue}for(let l=0;l<s.length;l++){let u=l===0?n:f.rLevelMax;f.isNested?lw(f.fields,s[l],r,u,f.dLevelMax):(r[f.key].count+=1,r[f.key].rlevels.push(u),r[f.key].dlevels.push(f.dLevelMax),r[f.key].values.push(Bq(f.originalType||f.primitiveType,s[l])))}}}function lp(t,e){let r=[];for(let n=0;n<e.rowCount;n++)r.push({});for(let n in e.columnData){let i=e.columnData[n];i.count&&u4(t,i,n,r)}return r}function u4(t,e,r,n){let i=t.findField(r),o=t.findFieldBranch(r),f=new Array(i.rLevelMax+1).fill(0),s=0;for(let l=0;l<e.count;l++){let u=e.dlevels[l],c=e.rlevels[l];f[c]++,f.fill(0,c+1);let _=0,p=n[f[_++]-1];for(let j of o){if(j===i||u<j.dLevelMax)break;switch(j.repetitionType){case"REPEATED":j.name in p||(p[j.name]=[]);let S=f[_++];for(;p[j.name].length<=S;)p[j.name].push({});p=p[j.name][S];break;default:p[j.name]=p[j.name]||{},p=p[j.name]}}if(u===i.dLevelMax){let j=kq(i.originalType||i.primitiveType,e.values[s],i);switch(s++,i.repetitionType){case"REPEATED":i.name in p||(p[i.name]=[]);let S=f[_];for(;p[i.name].length<=S;)p[i.name].push(null);p[i.name][S]=j;break;default:p[i.name]=j}}}}var uw=class{constructor(e){this.schema=e,this.fields=Fq(e,0,0,[]),this.fieldList=Pq(this.fields)}findField(e){typeof e=="string"?e=e.split(","):e=e.slice(0);let r=this.fields;for(;e.length>1;e.shift())r=r[e[0]].fields;return r[e[0]]}findFieldBranch(e){typeof e=="string"&&(e=e.split(","));let r=[],n=this.fields;for(;e.length>0;e.shift())r.push(n[e[0]]),e.length>1&&(n=n[e[0]].fields);return r}shredRecord(e,r){Dq(this,e,r)}materializeRecords(e){return lp(this,e)}compress(e){return cw(this.schema,e),cw(this.fields,e),this}buffer(){return aw(this)}};function cw(t,e){for(let r in t){let n=t[r];n.fields?cw(n.fields,e):n.compression=e}}function Fq(t,e,r,n){let i={};for(let o in t){let f=t[o],s=!f.optional,l=Boolean(f.repeated),u=e,c=r,_="REQUIRED";if(s||(_="OPTIONAL",c++),l&&(_="REPEATED",u++,s&&c++),f.fields){let S=n.concat([o]);i[o]={name:o,path:S,key:S.join(),repetitionType:_,rLevelMax:u,dLevelMax:c,isNested:!0,fieldCount:Object.keys(f.fields).length,fields:Fq(f.fields,u,c,S)};continue}let p=Uf[f.type];if(!p)throw new Error(`invalid parquet type: ${f.type}`);if(f.encoding=f.encoding||"PLAIN",!(f.encoding in rl))throw new Error(`unsupported parquet encoding: ${f.encoding}`);if(f.compression=f.compression||"UNCOMPRESSED",!(f.compression in Vb))throw new Error(`unsupported compression method: ${f.compression}`);let j=n.concat([o]);i[o]={name:o,primitiveType:p.primitiveType,originalType:p.originalType,path:j,key:j.join(),repetitionType:_,encoding:f.encoding,compression:f.compression,typeLength:f.typeLength||p.typeLength,presision:f.presision,scale:f.scale,rLevelMax:u,dLevelMax:c}}return i}function Pq(t){let e=[];for(let r in t)e.push(t[r]),t[r].isNested&&(e=e.concat(Pq(t[r].fields)));return e}var Rs;(function(l){l[l.BOOLEAN=0]="BOOLEAN",l[l.INT32=1]="INT32",l[l.INT64=2]="INT64",l[l.INT96=3]="INT96",l[l.FLOAT=4]="FLOAT",l[l.DOUBLE=5]="DOUBLE",l[l.BYTE_ARRAY=6]="BYTE_ARRAY",l[l.FIXED_LEN_BYTE_ARRAY=7]="FIXED_LEN_BYTE_ARRAY"})(Rs||(Rs={}));var up;(function(D){D[D.UTF8=0]="UTF8",D[D.MAP=1]="MAP",D[D.MAP_KEY_VALUE=2]="MAP_KEY_VALUE",D[D.LIST=3]="LIST",D[D.ENUM=4]="ENUM",D[D.DECIMAL=5]="DECIMAL",D[D.DATE=6]="DATE",D[D.TIME_MILLIS=7]="TIME_MILLIS",D[D.TIME_MICROS=8]="TIME_MICROS",D[D.TIMESTAMP_MILLIS=9]="TIMESTAMP_MILLIS",D[D.TIMESTAMP_MICROS=10]="TIMESTAMP_MICROS",D[D.UINT_8=11]="UINT_8",D[D.UINT_16=12]="UINT_16",D[D.UINT_32=13]="UINT_32",D[D.UINT_64=14]="UINT_64",D[D.INT_8=15]="INT_8",D[D.INT_16=16]="INT_16",D[D.INT_32=17]="INT_32",D[D.INT_64=18]="INT_64",D[D.JSON=19]="JSON",D[D.BSON=20]="BSON",D[D.INTERVAL=21]="INTERVAL"})(up||(up={}));var cp;(function(n){n[n.REQUIRED=0]="REQUIRED",n[n.OPTIONAL=1]="OPTIONAL",n[n.REPEATED=2]="REPEATED"})(cp||(cp={}));var Lf;(function(l){l[l.PLAIN=0]="PLAIN",l[l.PLAIN_DICTIONARY=2]="PLAIN_DICTIONARY",l[l.RLE=3]="RLE",l[l.BIT_PACKED=4]="BIT_PACKED",l[l.DELTA_BINARY_PACKED=5]="DELTA_BINARY_PACKED",l[l.DELTA_LENGTH_BYTE_ARRAY=6]="DELTA_LENGTH_BYTE_ARRAY",l[l.DELTA_BYTE_ARRAY=7]="DELTA_BYTE_ARRAY",l[l.RLE_DICTIONARY=8]="RLE_DICTIONARY"})(Lf||(Lf={}));var pp;(function(l){l[l.UNCOMPRESSED=0]="UNCOMPRESSED",l[l.SNAPPY=1]="SNAPPY",l[l.GZIP=2]="GZIP",l[l.LZO=3]="LZO",l[l.BROTLI=4]="BROTLI",l[l.LZ4=5]="LZ4",l[l.ZSTD=6]="ZSTD",l[l.LZ4_RAW=7]="LZ4_RAW"})(pp||(pp={}));var dp;(function(i){i[i.DATA_PAGE=0]="DATA_PAGE",i[i.INDEX_PAGE=1]="INDEX_PAGE",i[i.DICTIONARY_PAGE=2]="DICTIONARY_PAGE",i[i.DATA_PAGE_V2=3]="DATA_PAGE_V2"})(dp||(dp={}));var Ww=Pe(hn()),Gr=Pe(ct()),to=class{constructor(e){e!=null&&e.max!=null&&(this.max=e.max),e!=null&&e.min!=null&&(this.min=e.min),e!=null&&e.null_count!=null&&(typeof e.null_count=="number"?this.null_count=new Ww.default(e.null_count):this.null_count=e.null_count),e!=null&&e.distinct_count!=null&&(typeof e.distinct_count=="number"?this.distinct_count=new Ww.default(e.distinct_count):this.distinct_count=e.distinct_count),e!=null&&e.max_value!=null&&(this.max_value=e.max_value),e!=null&&e.min_value!=null&&(this.min_value=e.min_value)}write(e){e.writeStructBegin("Statistics"),this.max!=null&&(e.writeFieldBegin("max",Gr.Thrift.Type.STRING,1),e.writeBinary(this.max),e.writeFieldEnd()),this.min!=null&&(e.writeFieldBegin("min",Gr.Thrift.Type.STRING,2),e.writeBinary(this.min),e.writeFieldEnd()),this.null_count!=null&&(e.writeFieldBegin("null_count",Gr.Thrift.Type.I64,3),e.writeI64(this.null_count),e.writeFieldEnd()),this.distinct_count!=null&&(e.writeFieldBegin("distinct_count",Gr.Thrift.Type.I64,4),e.writeI64(this.distinct_count),e.writeFieldEnd()),this.max_value!=null&&(e.writeFieldBegin("max_value",Gr.Thrift.Type.STRING,5),e.writeBinary(this.max_value),e.writeFieldEnd()),this.min_value!=null&&(e.writeFieldBegin("min_value",Gr.Thrift.Type.STRING,6),e.writeBinary(this.min_value),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Gr.Thrift.Type.STOP)break;switch(o){case 1:if(i===Gr.Thrift.Type.STRING){let f=e.readBinary();r.max=f}else e.skip(i);break;case 2:if(i===Gr.Thrift.Type.STRING){let f=e.readBinary();r.min=f}else e.skip(i);break;case 3:if(i===Gr.Thrift.Type.I64){let f=e.readI64();r.null_count=f}else e.skip(i);break;case 4:if(i===Gr.Thrift.Type.I64){let f=e.readI64();r.distinct_count=f}else e.skip(i);break;case 5:if(i===Gr.Thrift.Type.STRING){let f=e.readBinary();r.max_value=f}else e.skip(i);break;case 6:if(i===Gr.Thrift.Type.STRING){let f=e.readBinary();r.min_value=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}return e.readStructEnd(),new to(r)}};var Qv=Pe(ct()),Fl=class{constructor(){}write(e){e.writeStructBegin("StringType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Qv.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Fl}};var $v=Pe(ct()),Pl=class{constructor(){}write(e){e.writeStructBegin("UUIDType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===$v.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Pl}};var eT=Pe(ct()),Rl=class{constructor(){}write(e){e.writeStructBegin("MapType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===eT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Rl}};var tT=Pe(ct()),Hl=class{constructor(){}write(e){e.writeStructBegin("ListType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===tT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Hl}};var rT=Pe(ct()),Ml=class{constructor(){}write(e){e.writeStructBegin("EnumType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===rT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ml}};var nT=Pe(ct()),zl=class{constructor(){}write(e){e.writeStructBegin("DateType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===nT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new zl}};var iT=Pe(ct()),Ul=class{constructor(){}write(e){e.writeStructBegin("NullType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===iT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ul}};var gn=Pe(ct()),Ll=class{constructor(e){if(e!=null&&e.scale!=null)this.scale=e.scale;else throw new gn.Thrift.TProtocolException(gn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[scale] is unset!");if(e!=null&&e.precision!=null)this.precision=e.precision;else throw new gn.Thrift.TProtocolException(gn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[precision] is unset!")}write(e){e.writeStructBegin("DecimalType"),this.scale!=null&&(e.writeFieldBegin("scale",gn.Thrift.Type.I32,1),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",gn.Thrift.Type.I32,2),e.writeI32(this.precision),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===gn.Thrift.Type.STOP)break;switch(o){case 1:if(i===gn.Thrift.Type.I32){let f=e.readI32();r.scale=f}else e.skip(i);break;case 2:if(i===gn.Thrift.Type.I32){let f=e.readI32();r.precision=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.scale!==void 0&&r.precision!==void 0)return new Ll(r);throw new gn.Thrift.TProtocolException(gn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DecimalType from input")}};var oT=Pe(ct()),Vl=class{constructor(){}write(e){e.writeStructBegin("MilliSeconds"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===oT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Vl}};var fT=Pe(ct()),Cl=class{constructor(){}write(e){e.writeStructBegin("MicroSeconds"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===fT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Cl}};var yn=Pe(ct());var Or=Pe(ct());var di=class{constructor(e){let r=0;if(e!=null){if(e.MILLIS!=null&&(r++,this.MILLIS=e.MILLIS),e.MICROS!=null&&(r++,this.MICROS=e.MICROS),r>1)throw new Or.Thrift.TProtocolException(Or.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Or.Thrift.TProtocolException(Or.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromMILLIS(e){return new di({MILLIS:e})}static fromMICROS(e){return new di({MICROS:e})}write(e){e.writeStructBegin("TimeUnit"),this.MILLIS!=null&&(e.writeFieldBegin("MILLIS",Or.Thrift.Type.STRUCT,1),this.MILLIS.write(e),e.writeFieldEnd()),this.MICROS!=null&&(e.writeFieldBegin("MICROS",Or.Thrift.Type.STRUCT,2),this.MICROS.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===Or.Thrift.Type.STOP)break;switch(f){case 1:if(o===Or.Thrift.Type.STRUCT){r++;let s=Vl.read(e);n=di.fromMILLIS(s)}else e.skip(o);break;case 2:if(o===Or.Thrift.Type.STRUCT){r++;let s=Cl.read(e);n=di.fromMICROS(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Or.Thrift.TProtocolException(Or.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Or.Thrift.TProtocolException(Or.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Or.Thrift.TProtocolException(Or.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var Wl=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new yn.Thrift.TProtocolException(yn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new yn.Thrift.TProtocolException(yn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimestampType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",yn.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",yn.Thrift.Type.STRUCT,2),this.unit.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===yn.Thrift.Type.STOP)break;switch(o){case 1:if(i===yn.Thrift.Type.BOOL){let f=e.readBool();r.isAdjustedToUTC=f}else e.skip(i);break;case 2:if(i===yn.Thrift.Type.STRUCT){let f=di.read(e);r.unit=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.isAdjustedToUTC!==void 0&&r.unit!==void 0)return new Wl(r);throw new yn.Thrift.TProtocolException(yn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimestampType from input")}};var jn=Pe(ct());var Yl=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new jn.Thrift.TProtocolException(jn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new jn.Thrift.TProtocolException(jn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimeType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",jn.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",jn.Thrift.Type.STRUCT,2),this.unit.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===jn.Thrift.Type.STOP)break;switch(o){case 1:if(i===jn.Thrift.Type.BOOL){let f=e.readBool();r.isAdjustedToUTC=f}else e.skip(i);break;case 2:if(i===jn.Thrift.Type.STRUCT){let f=di.read(e);r.unit=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.isAdjustedToUTC!==void 0&&r.unit!==void 0)return new Yl(r);throw new jn.Thrift.TProtocolException(jn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimeType from input")}};var _n=Pe(ct()),Kl=class{constructor(e){if(e!=null&&e.bitWidth!=null)this.bitWidth=e.bitWidth;else throw new _n.Thrift.TProtocolException(_n.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[bitWidth] is unset!");if(e!=null&&e.isSigned!=null)this.isSigned=e.isSigned;else throw new _n.Thrift.TProtocolException(_n.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isSigned] is unset!")}write(e){e.writeStructBegin("IntType"),this.bitWidth!=null&&(e.writeFieldBegin("bitWidth",_n.Thrift.Type.BYTE,1),e.writeByte(this.bitWidth),e.writeFieldEnd()),this.isSigned!=null&&(e.writeFieldBegin("isSigned",_n.Thrift.Type.BOOL,2),e.writeBool(this.isSigned),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===_n.Thrift.Type.STOP)break;switch(o){case 1:if(i===_n.Thrift.Type.BYTE){let f=e.readByte();r.bitWidth=f}else e.skip(i);break;case 2:if(i===_n.Thrift.Type.BOOL){let f=e.readBool();r.isSigned=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.bitWidth!==void 0&&r.isSigned!==void 0)return new Kl(r);throw new _n.Thrift.TProtocolException(_n.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read IntType from input")}};var sT=Pe(ct()),Gl=class{constructor(){}write(e){e.writeStructBegin("JsonType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===sT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Gl}};var aT=Pe(ct()),Jl=class{constructor(){}write(e){e.writeStructBegin("BsonType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===aT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Jl}};var Ft=Pe(ct());var ft=Pe(ct());var Tt=class{constructor(e){let r=0;if(e!=null){if(e.STRING!=null&&(r++,this.STRING=e.STRING),e.MAP!=null&&(r++,this.MAP=e.MAP),e.LIST!=null&&(r++,this.LIST=e.LIST),e.ENUM!=null&&(r++,this.ENUM=e.ENUM),e.DECIMAL!=null&&(r++,this.DECIMAL=e.DECIMAL),e.DATE!=null&&(r++,this.DATE=e.DATE),e.TIME!=null&&(r++,this.TIME=e.TIME),e.TIMESTAMP!=null&&(r++,this.TIMESTAMP=e.TIMESTAMP),e.INTEGER!=null&&(r++,this.INTEGER=e.INTEGER),e.UNKNOWN!=null&&(r++,this.UNKNOWN=e.UNKNOWN),e.JSON!=null&&(r++,this.JSON=e.JSON),e.BSON!=null&&(r++,this.BSON=e.BSON),e.UUID!=null&&(r++,this.UUID=e.UUID),r>1)throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromSTRING(e){return new Tt({STRING:e})}static fromMAP(e){return new Tt({MAP:e})}static fromLIST(e){return new Tt({LIST:e})}static fromENUM(e){return new Tt({ENUM:e})}static fromDECIMAL(e){return new Tt({DECIMAL:e})}static fromDATE(e){return new Tt({DATE:e})}static fromTIME(e){return new Tt({TIME:e})}static fromTIMESTAMP(e){return new Tt({TIMESTAMP:e})}static fromINTEGER(e){return new Tt({INTEGER:e})}static fromUNKNOWN(e){return new Tt({UNKNOWN:e})}static fromJSON(e){return new Tt({JSON:e})}static fromBSON(e){return new Tt({BSON:e})}static fromUUID(e){return new Tt({UUID:e})}write(e){e.writeStructBegin("LogicalType"),this.STRING!=null&&(e.writeFieldBegin("STRING",ft.Thrift.Type.STRUCT,1),this.STRING.write(e),e.writeFieldEnd()),this.MAP!=null&&(e.writeFieldBegin("MAP",ft.Thrift.Type.STRUCT,2),this.MAP.write(e),e.writeFieldEnd()),this.LIST!=null&&(e.writeFieldBegin("LIST",ft.Thrift.Type.STRUCT,3),this.LIST.write(e),e.writeFieldEnd()),this.ENUM!=null&&(e.writeFieldBegin("ENUM",ft.Thrift.Type.STRUCT,4),this.ENUM.write(e),e.writeFieldEnd()),this.DECIMAL!=null&&(e.writeFieldBegin("DECIMAL",ft.Thrift.Type.STRUCT,5),this.DECIMAL.write(e),e.writeFieldEnd()),this.DATE!=null&&(e.writeFieldBegin("DATE",ft.Thrift.Type.STRUCT,6),this.DATE.write(e),e.writeFieldEnd()),this.TIME!=null&&(e.writeFieldBegin("TIME",ft.Thrift.Type.STRUCT,7),this.TIME.write(e),e.writeFieldEnd()),this.TIMESTAMP!=null&&(e.writeFieldBegin("TIMESTAMP",ft.Thrift.Type.STRUCT,8),this.TIMESTAMP.write(e),e.writeFieldEnd()),this.INTEGER!=null&&(e.writeFieldBegin("INTEGER",ft.Thrift.Type.STRUCT,10),this.INTEGER.write(e),e.writeFieldEnd()),this.UNKNOWN!=null&&(e.writeFieldBegin("UNKNOWN",ft.Thrift.Type.STRUCT,11),this.UNKNOWN.write(e),e.writeFieldEnd()),this.JSON!=null&&(e.writeFieldBegin("JSON",ft.Thrift.Type.STRUCT,12),this.JSON.write(e),e.writeFieldEnd()),this.BSON!=null&&(e.writeFieldBegin("BSON",ft.Thrift.Type.STRUCT,13),this.BSON.write(e),e.writeFieldEnd()),this.UUID!=null&&(e.writeFieldBegin("UUID",ft.Thrift.Type.STRUCT,14),this.UUID.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===ft.Thrift.Type.STOP)break;switch(f){case 1:if(o===ft.Thrift.Type.STRUCT){r++;let s=Fl.read(e);n=Tt.fromSTRING(s)}else e.skip(o);break;case 2:if(o===ft.Thrift.Type.STRUCT){r++;let s=Rl.read(e);n=Tt.fromMAP(s)}else e.skip(o);break;case 3:if(o===ft.Thrift.Type.STRUCT){r++;let s=Hl.read(e);n=Tt.fromLIST(s)}else e.skip(o);break;case 4:if(o===ft.Thrift.Type.STRUCT){r++;let s=Ml.read(e);n=Tt.fromENUM(s)}else e.skip(o);break;case 5:if(o===ft.Thrift.Type.STRUCT){r++;let s=Ll.read(e);n=Tt.fromDECIMAL(s)}else e.skip(o);break;case 6:if(o===ft.Thrift.Type.STRUCT){r++;let s=zl.read(e);n=Tt.fromDATE(s)}else e.skip(o);break;case 7:if(o===ft.Thrift.Type.STRUCT){r++;let s=Yl.read(e);n=Tt.fromTIME(s)}else e.skip(o);break;case 8:if(o===ft.Thrift.Type.STRUCT){r++;let s=Wl.read(e);n=Tt.fromTIMESTAMP(s)}else e.skip(o);break;case 10:if(o===ft.Thrift.Type.STRUCT){r++;let s=Kl.read(e);n=Tt.fromINTEGER(s)}else e.skip(o);break;case 11:if(o===ft.Thrift.Type.STRUCT){r++;let s=Ul.read(e);n=Tt.fromUNKNOWN(s)}else e.skip(o);break;case 12:if(o===ft.Thrift.Type.STRUCT){r++;let s=Gl.read(e);n=Tt.fromJSON(s)}else e.skip(o);break;case 13:if(o===ft.Thrift.Type.STRUCT){r++;let s=Jl.read(e);n=Tt.fromBSON(s)}else e.skip(o);break;case 14:if(o===ft.Thrift.Type.STRUCT){r++;let s=Pl.read(e);n=Tt.fromUUID(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new ft.Thrift.TProtocolException(ft.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var Zl=class{constructor(e){if(e!=null&&e.type!=null&&(this.type=e.type),e!=null&&e.type_length!=null&&(this.type_length=e.type_length),e!=null&&e.repetition_type!=null&&(this.repetition_type=e.repetition_type),e!=null&&e.name!=null)this.name=e.name;else throw new Ft.Thrift.TProtocolException(Ft.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[name] is unset!");e!=null&&e.num_children!=null&&(this.num_children=e.num_children),e!=null&&e.converted_type!=null&&(this.converted_type=e.converted_type),e!=null&&e.scale!=null&&(this.scale=e.scale),e!=null&&e.precision!=null&&(this.precision=e.precision),e!=null&&e.field_id!=null&&(this.field_id=e.field_id),e!=null&&e.logicalType!=null&&(this.logicalType=e.logicalType)}write(e){e.writeStructBegin("SchemaElement"),this.type!=null&&(e.writeFieldBegin("type",Ft.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.type_length!=null&&(e.writeFieldBegin("type_length",Ft.Thrift.Type.I32,2),e.writeI32(this.type_length),e.writeFieldEnd()),this.repetition_type!=null&&(e.writeFieldBegin("repetition_type",Ft.Thrift.Type.I32,3),e.writeI32(this.repetition_type),e.writeFieldEnd()),this.name!=null&&(e.writeFieldBegin("name",Ft.Thrift.Type.STRING,4),e.writeString(this.name),e.writeFieldEnd()),this.num_children!=null&&(e.writeFieldBegin("num_children",Ft.Thrift.Type.I32,5),e.writeI32(this.num_children),e.writeFieldEnd()),this.converted_type!=null&&(e.writeFieldBegin("converted_type",Ft.Thrift.Type.I32,6),e.writeI32(this.converted_type),e.writeFieldEnd()),this.scale!=null&&(e.writeFieldBegin("scale",Ft.Thrift.Type.I32,7),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",Ft.Thrift.Type.I32,8),e.writeI32(this.precision),e.writeFieldEnd()),this.field_id!=null&&(e.writeFieldBegin("field_id",Ft.Thrift.Type.I32,9),e.writeI32(this.field_id),e.writeFieldEnd()),this.logicalType!=null&&(e.writeFieldBegin("logicalType",Ft.Thrift.Type.STRUCT,10),this.logicalType.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Ft.Thrift.Type.STOP)break;switch(o){case 1:if(i===Ft.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===Ft.Thrift.Type.I32){let f=e.readI32();r.type_length=f}else e.skip(i);break;case 3:if(i===Ft.Thrift.Type.I32){let f=e.readI32();r.repetition_type=f}else e.skip(i);break;case 4:if(i===Ft.Thrift.Type.STRING){let f=e.readString();r.name=f}else e.skip(i);break;case 5:if(i===Ft.Thrift.Type.I32){let f=e.readI32();r.num_children=f}else e.skip(i);break;case 6:if(i===Ft.Thrift.Type.I32){let f=e.readI32();r.converted_type=f}else e.skip(i);break;case 7:if(i===Ft.Thrift.Type.I32){let f=e.readI32();r.scale=f}else e.skip(i);break;case 8:if(i===Ft.Thrift.Type.I32){let f=e.readI32();r.precision=f}else e.skip(i);break;case 9:if(i===Ft.Thrift.Type.I32){let f=e.readI32();r.field_id=f}else e.skip(i);break;case 10:if(i===Ft.Thrift.Type.STRUCT){let f=Tt.read(e);r.logicalType=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.name!==void 0)return new Zl(r);throw new Ft.Thrift.TProtocolException(Ft.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SchemaElement from input")}};var Gt=Pe(ct());var Xl=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Gt.Thrift.TProtocolException(Gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Gt.Thrift.TProtocolException(Gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.definition_level_encoding!=null)this.definition_level_encoding=e.definition_level_encoding;else throw new Gt.Thrift.TProtocolException(Gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[definition_level_encoding] is unset!");if(e!=null&&e.repetition_level_encoding!=null)this.repetition_level_encoding=e.repetition_level_encoding;else throw new Gt.Thrift.TProtocolException(Gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[repetition_level_encoding] is unset!");e!=null&&e.statistics!=null&&(this.statistics=e.statistics)}write(e){e.writeStructBegin("DataPageHeader"),this.num_values!=null&&(e.writeFieldBegin("num_values",Gt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Gt.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_level_encoding!=null&&(e.writeFieldBegin("definition_level_encoding",Gt.Thrift.Type.I32,3),e.writeI32(this.definition_level_encoding),e.writeFieldEnd()),this.repetition_level_encoding!=null&&(e.writeFieldBegin("repetition_level_encoding",Gt.Thrift.Type.I32,4),e.writeI32(this.repetition_level_encoding),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",Gt.Thrift.Type.STRUCT,5),this.statistics.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Gt.Thrift.Type.STOP)break;switch(o){case 1:if(i===Gt.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===Gt.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===Gt.Thrift.Type.I32){let f=e.readI32();r.definition_level_encoding=f}else e.skip(i);break;case 4:if(i===Gt.Thrift.Type.I32){let f=e.readI32();r.repetition_level_encoding=f}else e.skip(i);break;case 5:if(i===Gt.Thrift.Type.STRUCT){let f=to.read(e);r.statistics=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.encoding!==void 0&&r.definition_level_encoding!==void 0&&r.repetition_level_encoding!==void 0)return new Xl(r);throw new Gt.Thrift.TProtocolException(Gt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeader from input")}};var lT=Pe(ct()),Ql=class{constructor(){}write(e){e.writeStructBegin("IndexPageHeader"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===lT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ql}};var Jr=Pe(ct()),$l=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Jr.Thrift.TProtocolException(Jr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Jr.Thrift.TProtocolException(Jr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");e!=null&&e.is_sorted!=null&&(this.is_sorted=e.is_sorted)}write(e){e.writeStructBegin("DictionaryPageHeader"),this.num_values!=null&&(e.writeFieldBegin("num_values",Jr.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Jr.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.is_sorted!=null&&(e.writeFieldBegin("is_sorted",Jr.Thrift.Type.BOOL,3),e.writeBool(this.is_sorted),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Jr.Thrift.Type.STOP)break;switch(o){case 1:if(i===Jr.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===Jr.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===Jr.Thrift.Type.BOOL){let f=e.readBool();r.is_sorted=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.encoding!==void 0)return new $l(r);throw new Jr.Thrift.TProtocolException(Jr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DictionaryPageHeader from input")}};var gt=Pe(ct());var eu=class{constructor(e){this.is_compressed=!0;if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new gt.Thrift.TProtocolException(gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.num_nulls!=null)this.num_nulls=e.num_nulls;else throw new gt.Thrift.TProtocolException(gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_nulls] is unset!");if(e!=null&&e.num_rows!=null)this.num_rows=e.num_rows;else throw new gt.Thrift.TProtocolException(gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new gt.Thrift.TProtocolException(gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.definition_levels_byte_length!=null)this.definition_levels_byte_length=e.definition_levels_byte_length;else throw new gt.Thrift.TProtocolException(gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[definition_levels_byte_length] is unset!");if(e!=null&&e.repetition_levels_byte_length!=null)this.repetition_levels_byte_length=e.repetition_levels_byte_length;else throw new gt.Thrift.TProtocolException(gt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[repetition_levels_byte_length] is unset!");e!=null&&e.is_compressed!=null&&(this.is_compressed=e.is_compressed),e!=null&&e.statistics!=null&&(this.statistics=e.statistics)}write(e){e.writeStructBegin("DataPageHeaderV2"),this.num_values!=null&&(e.writeFieldBegin("num_values",gt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.num_nulls!=null&&(e.writeFieldBegin("num_nulls",gt.Thrift.Type.I32,2),e.writeI32(this.num_nulls),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",gt.Thrift.Type.I32,3),e.writeI32(this.num_rows),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",gt.Thrift.Type.I32,4),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_levels_byte_length!=null&&(e.writeFieldBegin("definition_levels_byte_length",gt.Thrift.Type.I32,5),e.writeI32(this.definition_levels_byte_length),e.writeFieldEnd()),this.repetition_levels_byte_length!=null&&(e.writeFieldBegin("repetition_levels_byte_length",gt.Thrift.Type.I32,6),e.writeI32(this.repetition_levels_byte_length),e.writeFieldEnd()),this.is_compressed!=null&&(e.writeFieldBegin("is_compressed",gt.Thrift.Type.BOOL,7),e.writeBool(this.is_compressed),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",gt.Thrift.Type.STRUCT,8),this.statistics.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===gt.Thrift.Type.STOP)break;switch(o){case 1:if(i===gt.Thrift.Type.I32){let f=e.readI32();r.num_values=f}else e.skip(i);break;case 2:if(i===gt.Thrift.Type.I32){let f=e.readI32();r.num_nulls=f}else e.skip(i);break;case 3:if(i===gt.Thrift.Type.I32){let f=e.readI32();r.num_rows=f}else e.skip(i);break;case 4:if(i===gt.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 5:if(i===gt.Thrift.Type.I32){let f=e.readI32();r.definition_levels_byte_length=f}else e.skip(i);break;case 6:if(i===gt.Thrift.Type.I32){let f=e.readI32();r.repetition_levels_byte_length=f}else e.skip(i);break;case 7:if(i===gt.Thrift.Type.BOOL){let f=e.readBool();r.is_compressed=f}else e.skip(i);break;case 8:if(i===gt.Thrift.Type.STRUCT){let f=to.read(e);r.statistics=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.num_nulls!==void 0&&r.num_rows!==void 0&&r.encoding!==void 0&&r.definition_levels_byte_length!==void 0&&r.repetition_levels_byte_length!==void 0)return new eu(r);throw new gt.Thrift.TProtocolException(gt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeaderV2 from input")}};var Pt=Pe(ct());var tu=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new Pt.Thrift.TProtocolException(Pt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.uncompressed_page_size!=null)this.uncompressed_page_size=e.uncompressed_page_size;else throw new Pt.Thrift.TProtocolException(Pt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[uncompressed_page_size] is unset!");if(e!=null&&e.compressed_page_size!=null)this.compressed_page_size=e.compressed_page_size;else throw new Pt.Thrift.TProtocolException(Pt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[compressed_page_size] is unset!");e!=null&&e.crc!=null&&(this.crc=e.crc),e!=null&&e.data_page_header!=null&&(this.data_page_header=e.data_page_header),e!=null&&e.index_page_header!=null&&(this.index_page_header=e.index_page_header),e!=null&&e.dictionary_page_header!=null&&(this.dictionary_page_header=e.dictionary_page_header),e!=null&&e.data_page_header_v2!=null&&(this.data_page_header_v2=e.data_page_header_v2)}write(e){e.writeStructBegin("PageHeader"),this.type!=null&&(e.writeFieldBegin("type",Pt.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.uncompressed_page_size!=null&&(e.writeFieldBegin("uncompressed_page_size",Pt.Thrift.Type.I32,2),e.writeI32(this.uncompressed_page_size),e.writeFieldEnd()),this.compressed_page_size!=null&&(e.writeFieldBegin("compressed_page_size",Pt.Thrift.Type.I32,3),e.writeI32(this.compressed_page_size),e.writeFieldEnd()),this.crc!=null&&(e.writeFieldBegin("crc",Pt.Thrift.Type.I32,4),e.writeI32(this.crc),e.writeFieldEnd()),this.data_page_header!=null&&(e.writeFieldBegin("data_page_header",Pt.Thrift.Type.STRUCT,5),this.data_page_header.write(e),e.writeFieldEnd()),this.index_page_header!=null&&(e.writeFieldBegin("index_page_header",Pt.Thrift.Type.STRUCT,6),this.index_page_header.write(e),e.writeFieldEnd()),this.dictionary_page_header!=null&&(e.writeFieldBegin("dictionary_page_header",Pt.Thrift.Type.STRUCT,7),this.dictionary_page_header.write(e),e.writeFieldEnd()),this.data_page_header_v2!=null&&(e.writeFieldBegin("data_page_header_v2",Pt.Thrift.Type.STRUCT,8),this.data_page_header_v2.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Pt.Thrift.Type.STOP)break;switch(o){case 1:if(i===Pt.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===Pt.Thrift.Type.I32){let f=e.readI32();r.uncompressed_page_size=f}else e.skip(i);break;case 3:if(i===Pt.Thrift.Type.I32){let f=e.readI32();r.compressed_page_size=f}else e.skip(i);break;case 4:if(i===Pt.Thrift.Type.I32){let f=e.readI32();r.crc=f}else e.skip(i);break;case 5:if(i===Pt.Thrift.Type.STRUCT){let f=Xl.read(e);r.data_page_header=f}else e.skip(i);break;case 6:if(i===Pt.Thrift.Type.STRUCT){let f=Ql.read(e);r.index_page_header=f}else e.skip(i);break;case 7:if(i===Pt.Thrift.Type.STRUCT){let f=$l.read(e);r.dictionary_page_header=f}else e.skip(i);break;case 8:if(i===Pt.Thrift.Type.STRUCT){let f=eu.read(e);r.data_page_header_v2=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.type!==void 0&&r.uncompressed_page_size!==void 0&&r.compressed_page_size!==void 0)return new tu(r);throw new Pt.Thrift.TProtocolException(Pt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageHeader from input")}};var mi=Pe(ct()),Wf=class{constructor(e){if(e!=null&&e.key!=null)this.key=e.key;else throw new mi.Thrift.TProtocolException(mi.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[key] is unset!");e!=null&&e.value!=null&&(this.value=e.value)}write(e){e.writeStructBegin("KeyValue"),this.key!=null&&(e.writeFieldBegin("key",mi.Thrift.Type.STRING,1),e.writeString(this.key),e.writeFieldEnd()),this.value!=null&&(e.writeFieldBegin("value",mi.Thrift.Type.STRING,2),e.writeString(this.value),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===mi.Thrift.Type.STOP)break;switch(o){case 1:if(i===mi.Thrift.Type.STRING){let f=e.readString();r.key=f}else e.skip(i);break;case 2:if(i===mi.Thrift.Type.STRING){let f=e.readString();r.value=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.key!==void 0)return new Wf(r);throw new mi.Thrift.TProtocolException(mi.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read KeyValue from input")}};var Nr=Pe(ct()),ru=class{constructor(e){if(e!=null&&e.column_idx!=null)this.column_idx=e.column_idx;else throw new Nr.Thrift.TProtocolException(Nr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[column_idx] is unset!");if(e!=null&&e.descending!=null)this.descending=e.descending;else throw new Nr.Thrift.TProtocolException(Nr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[descending] is unset!");if(e!=null&&e.nulls_first!=null)this.nulls_first=e.nulls_first;else throw new Nr.Thrift.TProtocolException(Nr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[nulls_first] is unset!")}write(e){e.writeStructBegin("SortingColumn"),this.column_idx!=null&&(e.writeFieldBegin("column_idx",Nr.Thrift.Type.I32,1),e.writeI32(this.column_idx),e.writeFieldEnd()),this.descending!=null&&(e.writeFieldBegin("descending",Nr.Thrift.Type.BOOL,2),e.writeBool(this.descending),e.writeFieldEnd()),this.nulls_first!=null&&(e.writeFieldBegin("nulls_first",Nr.Thrift.Type.BOOL,3),e.writeBool(this.nulls_first),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Nr.Thrift.Type.STOP)break;switch(o){case 1:if(i===Nr.Thrift.Type.I32){let f=e.readI32();r.column_idx=f}else e.skip(i);break;case 2:if(i===Nr.Thrift.Type.BOOL){let f=e.readBool();r.descending=f}else e.skip(i);break;case 3:if(i===Nr.Thrift.Type.BOOL){let f=e.readBool();r.nulls_first=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.column_idx!==void 0&&r.descending!==void 0&&r.nulls_first!==void 0)return new ru(r);throw new Nr.Thrift.TProtocolException(Nr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SortingColumn from input")}};var Dr=Pe(ct()),nu=class{constructor(e){if(e!=null&&e.page_type!=null)this.page_type=e.page_type;else throw new Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[page_type] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.count!=null)this.count=e.count;else throw new Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[count] is unset!")}write(e){e.writeStructBegin("PageEncodingStats"),this.page_type!=null&&(e.writeFieldBegin("page_type",Dr.Thrift.Type.I32,1),e.writeI32(this.page_type),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Dr.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.count!=null&&(e.writeFieldBegin("count",Dr.Thrift.Type.I32,3),e.writeI32(this.count),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Dr.Thrift.Type.STOP)break;switch(o){case 1:if(i===Dr.Thrift.Type.I32){let f=e.readI32();r.page_type=f}else e.skip(i);break;case 2:if(i===Dr.Thrift.Type.I32){let f=e.readI32();r.encoding=f}else e.skip(i);break;case 3:if(i===Dr.Thrift.Type.I32){let f=e.readI32();r.count=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.page_type!==void 0&&r.encoding!==void 0&&r.count!==void 0)return new nu(r);throw new Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageEncodingStats from input")}};var Yf=Pe(hn()),Ne=Pe(ct());var iu=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.encodings!=null)this.encodings=e.encodings;else throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encodings] is unset!");if(e!=null&&e.path_in_schema!=null)this.path_in_schema=e.path_in_schema;else throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[path_in_schema] is unset!");if(e!=null&&e.codec!=null)this.codec=e.codec;else throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[codec] is unset!");if(e!=null&&e.num_values!=null)typeof e.num_values=="number"?this.num_values=new Yf.default(e.num_values):this.num_values=e.num_values;else throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.total_uncompressed_size!=null)typeof e.total_uncompressed_size=="number"?this.total_uncompressed_size=new Yf.default(e.total_uncompressed_size):this.total_uncompressed_size=e.total_uncompressed_size;else throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_uncompressed_size] is unset!");if(e!=null&&e.total_compressed_size!=null)typeof e.total_compressed_size=="number"?this.total_compressed_size=new Yf.default(e.total_compressed_size):this.total_compressed_size=e.total_compressed_size;else throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_compressed_size] is unset!");if(e!=null&&e.key_value_metadata!=null&&(this.key_value_metadata=e.key_value_metadata),e!=null&&e.data_page_offset!=null)typeof e.data_page_offset=="number"?this.data_page_offset=new Yf.default(e.data_page_offset):this.data_page_offset=e.data_page_offset;else throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[data_page_offset] is unset!");e!=null&&e.index_page_offset!=null&&(typeof e.index_page_offset=="number"?this.index_page_offset=new Yf.default(e.index_page_offset):this.index_page_offset=e.index_page_offset),e!=null&&e.dictionary_page_offset!=null&&(typeof e.dictionary_page_offset=="number"?this.dictionary_page_offset=new Yf.default(e.dictionary_page_offset):this.dictionary_page_offset=e.dictionary_page_offset),e!=null&&e.statistics!=null&&(this.statistics=e.statistics),e!=null&&e.encoding_stats!=null&&(this.encoding_stats=e.encoding_stats)}write(e){e.writeStructBegin("ColumnMetaData"),this.type!=null&&(e.writeFieldBegin("type",Ne.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.encodings!=null&&(e.writeFieldBegin("encodings",Ne.Thrift.Type.LIST,2),e.writeListBegin(Ne.Thrift.Type.I32,this.encodings.length),this.encodings.forEach(r=>{e.writeI32(r)}),e.writeListEnd(),e.writeFieldEnd()),this.path_in_schema!=null&&(e.writeFieldBegin("path_in_schema",Ne.Thrift.Type.LIST,3),e.writeListBegin(Ne.Thrift.Type.STRING,this.path_in_schema.length),this.path_in_schema.forEach(r=>{e.writeString(r)}),e.writeListEnd(),e.writeFieldEnd()),this.codec!=null&&(e.writeFieldBegin("codec",Ne.Thrift.Type.I32,4),e.writeI32(this.codec),e.writeFieldEnd()),this.num_values!=null&&(e.writeFieldBegin("num_values",Ne.Thrift.Type.I64,5),e.writeI64(this.num_values),e.writeFieldEnd()),this.total_uncompressed_size!=null&&(e.writeFieldBegin("total_uncompressed_size",Ne.Thrift.Type.I64,6),e.writeI64(this.total_uncompressed_size),e.writeFieldEnd()),this.total_compressed_size!=null&&(e.writeFieldBegin("total_compressed_size",Ne.Thrift.Type.I64,7),e.writeI64(this.total_compressed_size),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",Ne.Thrift.Type.LIST,8),e.writeListBegin(Ne.Thrift.Type.STRUCT,this.key_value_metadata.length),this.key_value_metadata.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.data_page_offset!=null&&(e.writeFieldBegin("data_page_offset",Ne.Thrift.Type.I64,9),e.writeI64(this.data_page_offset),e.writeFieldEnd()),this.index_page_offset!=null&&(e.writeFieldBegin("index_page_offset",Ne.Thrift.Type.I64,10),e.writeI64(this.index_page_offset),e.writeFieldEnd()),this.dictionary_page_offset!=null&&(e.writeFieldBegin("dictionary_page_offset",Ne.Thrift.Type.I64,11),e.writeI64(this.dictionary_page_offset),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",Ne.Thrift.Type.STRUCT,12),this.statistics.write(e),e.writeFieldEnd()),this.encoding_stats!=null&&(e.writeFieldBegin("encoding_stats",Ne.Thrift.Type.LIST,13),e.writeListBegin(Ne.Thrift.Type.STRUCT,this.encoding_stats.length),this.encoding_stats.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Ne.Thrift.Type.STOP)break;switch(o){case 1:if(i===Ne.Thrift.Type.I32){let f=e.readI32();r.type=f}else e.skip(i);break;case 2:if(i===Ne.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=e.readI32();f.push(c)}e.readListEnd(),r.encodings=f}else e.skip(i);break;case 3:if(i===Ne.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=e.readString();f.push(c)}e.readListEnd(),r.path_in_schema=f}else e.skip(i);break;case 4:if(i===Ne.Thrift.Type.I32){let f=e.readI32();r.codec=f}else e.skip(i);break;case 5:if(i===Ne.Thrift.Type.I64){let f=e.readI64();r.num_values=f}else e.skip(i);break;case 6:if(i===Ne.Thrift.Type.I64){let f=e.readI64();r.total_uncompressed_size=f}else e.skip(i);break;case 7:if(i===Ne.Thrift.Type.I64){let f=e.readI64();r.total_compressed_size=f}else e.skip(i);break;case 8:if(i===Ne.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=Wf.read(e);f.push(c)}e.readListEnd(),r.key_value_metadata=f}else e.skip(i);break;case 9:if(i===Ne.Thrift.Type.I64){let f=e.readI64();r.data_page_offset=f}else e.skip(i);break;case 10:if(i===Ne.Thrift.Type.I64){let f=e.readI64();r.index_page_offset=f}else e.skip(i);break;case 11:if(i===Ne.Thrift.Type.I64){let f=e.readI64();r.dictionary_page_offset=f}else e.skip(i);break;case 12:if(i===Ne.Thrift.Type.STRUCT){let f=to.read(e);r.statistics=f}else e.skip(i);break;case 13:if(i===Ne.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=nu.read(e);f.push(c)}e.readListEnd(),r.encoding_stats=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.type!==void 0&&r.encodings!==void 0&&r.path_in_schema!==void 0&&r.codec!==void 0&&r.num_values!==void 0&&r.total_uncompressed_size!==void 0&&r.total_compressed_size!==void 0&&r.data_page_offset!==void 0)return new iu(r);throw new Ne.Thrift.TProtocolException(Ne.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnMetaData from input")}};var Fp=Pe(hn()),lr=Pe(ct());var ou=class{constructor(e){if(e!=null&&e.file_path!=null&&(this.file_path=e.file_path),e!=null&&e.file_offset!=null)typeof e.file_offset=="number"?this.file_offset=new Fp.default(e.file_offset):this.file_offset=e.file_offset;else throw new lr.Thrift.TProtocolException(lr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[file_offset] is unset!");e!=null&&e.meta_data!=null&&(this.meta_data=e.meta_data),e!=null&&e.offset_index_offset!=null&&(typeof e.offset_index_offset=="number"?this.offset_index_offset=new Fp.default(e.offset_index_offset):this.offset_index_offset=e.offset_index_offset),e!=null&&e.offset_index_length!=null&&(this.offset_index_length=e.offset_index_length),e!=null&&e.column_index_offset!=null&&(typeof e.column_index_offset=="number"?this.column_index_offset=new Fp.default(e.column_index_offset):this.column_index_offset=e.column_index_offset),e!=null&&e.column_index_length!=null&&(this.column_index_length=e.column_index_length)}write(e){e.writeStructBegin("ColumnChunk"),this.file_path!=null&&(e.writeFieldBegin("file_path",lr.Thrift.Type.STRING,1),e.writeString(this.file_path),e.writeFieldEnd()),this.file_offset!=null&&(e.writeFieldBegin("file_offset",lr.Thrift.Type.I64,2),e.writeI64(this.file_offset),e.writeFieldEnd()),this.meta_data!=null&&(e.writeFieldBegin("meta_data",lr.Thrift.Type.STRUCT,3),this.meta_data.write(e),e.writeFieldEnd()),this.offset_index_offset!=null&&(e.writeFieldBegin("offset_index_offset",lr.Thrift.Type.I64,4),e.writeI64(this.offset_index_offset),e.writeFieldEnd()),this.offset_index_length!=null&&(e.writeFieldBegin("offset_index_length",lr.Thrift.Type.I32,5),e.writeI32(this.offset_index_length),e.writeFieldEnd()),this.column_index_offset!=null&&(e.writeFieldBegin("column_index_offset",lr.Thrift.Type.I64,6),e.writeI64(this.column_index_offset),e.writeFieldEnd()),this.column_index_length!=null&&(e.writeFieldBegin("column_index_length",lr.Thrift.Type.I32,7),e.writeI32(this.column_index_length),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===lr.Thrift.Type.STOP)break;switch(o){case 1:if(i===lr.Thrift.Type.STRING){let f=e.readString();r.file_path=f}else e.skip(i);break;case 2:if(i===lr.Thrift.Type.I64){let f=e.readI64();r.file_offset=f}else e.skip(i);break;case 3:if(i===lr.Thrift.Type.STRUCT){let f=iu.read(e);r.meta_data=f}else e.skip(i);break;case 4:if(i===lr.Thrift.Type.I64){let f=e.readI64();r.offset_index_offset=f}else e.skip(i);break;case 5:if(i===lr.Thrift.Type.I32){let f=e.readI32();r.offset_index_length=f}else e.skip(i);break;case 6:if(i===lr.Thrift.Type.I64){let f=e.readI64();r.column_index_offset=f}else e.skip(i);break;case 7:if(i===lr.Thrift.Type.I32){let f=e.readI32();r.column_index_length=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.file_offset!==void 0)return new ou(r);throw new lr.Thrift.TProtocolException(lr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnChunk from input")}};var Yw=Pe(hn()),ur=Pe(ct());var fu=class{constructor(e){if(e!=null&&e.columns!=null)this.columns=e.columns;else throw new ur.Thrift.TProtocolException(ur.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[columns] is unset!");if(e!=null&&e.total_byte_size!=null)typeof e.total_byte_size=="number"?this.total_byte_size=new Yw.default(e.total_byte_size):this.total_byte_size=e.total_byte_size;else throw new ur.Thrift.TProtocolException(ur.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_byte_size] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new Yw.default(e.num_rows):this.num_rows=e.num_rows;else throw new ur.Thrift.TProtocolException(ur.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");e!=null&&e.sorting_columns!=null&&(this.sorting_columns=e.sorting_columns)}write(e){e.writeStructBegin("RowGroup"),this.columns!=null&&(e.writeFieldBegin("columns",ur.Thrift.Type.LIST,1),e.writeListBegin(ur.Thrift.Type.STRUCT,this.columns.length),this.columns.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.total_byte_size!=null&&(e.writeFieldBegin("total_byte_size",ur.Thrift.Type.I64,2),e.writeI64(this.total_byte_size),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",ur.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.sorting_columns!=null&&(e.writeFieldBegin("sorting_columns",ur.Thrift.Type.LIST,4),e.writeListBegin(ur.Thrift.Type.STRUCT,this.sorting_columns.length),this.sorting_columns.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===ur.Thrift.Type.STOP)break;switch(o){case 1:if(i===ur.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=ou.read(e);f.push(c)}e.readListEnd(),r.columns=f}else e.skip(i);break;case 2:if(i===ur.Thrift.Type.I64){let f=e.readI64();r.total_byte_size=f}else e.skip(i);break;case 3:if(i===ur.Thrift.Type.I64){let f=e.readI64();r.num_rows=f}else e.skip(i);break;case 4:if(i===ur.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=ru.read(e);f.push(c)}e.readListEnd(),r.sorting_columns=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.columns!==void 0&&r.total_byte_size!==void 0&&r.num_rows!==void 0)return new fu(r);throw new ur.Thrift.TProtocolException(ur.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read RowGroup from input")}};var uT=Pe(ct()),su=class{constructor(){}write(e){e.writeStructBegin("TypeDefinedOrder"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===uT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new su}};var cT=Pe(hn()),Bt=Pe(ct());var Zr=Pe(ct());var Ws=class{constructor(e){let r=0;if(e!=null){if(e.TYPE_ORDER!=null&&(r++,this.TYPE_ORDER=e.TYPE_ORDER),r>1)throw new Zr.Thrift.TProtocolException(Zr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Zr.Thrift.TProtocolException(Zr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromTYPE_ORDER(e){return new Ws({TYPE_ORDER:e})}write(e){e.writeStructBegin("ColumnOrder"),this.TYPE_ORDER!=null&&(e.writeFieldBegin("TYPE_ORDER",Zr.Thrift.Type.STRUCT,1),this.TYPE_ORDER.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),o=i.ftype,f=i.fid;if(o===Zr.Thrift.Type.STOP)break;switch(f){case 1:if(o===Zr.Thrift.Type.STRUCT){r++;let s=su.read(e);n=Ws.fromTYPE_ORDER(s)}else e.skip(o);break;default:e.skip(o)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Zr.Thrift.TProtocolException(Zr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Zr.Thrift.TProtocolException(Zr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Zr.Thrift.TProtocolException(Zr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var au=class{constructor(e=null){if(e!=null&&e.version!=null)this.version=e.version;else throw new Bt.Thrift.TProtocolException(Bt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[version] is unset!");if(e!=null&&e.schema!=null)this.schema=e.schema;else throw new Bt.Thrift.TProtocolException(Bt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[schema] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new cT.default(e.num_rows):this.num_rows=e.num_rows;else throw new Bt.Thrift.TProtocolException(Bt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.row_groups!=null)this.row_groups=e.row_groups;else throw new Bt.Thrift.TProtocolException(Bt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[row_groups] is unset!");e!=null&&e.key_value_metadata!=null&&(this.key_value_metadata=e.key_value_metadata),e!=null&&e.created_by!=null&&(this.created_by=e.created_by),e!=null&&e.column_orders!=null&&(this.column_orders=e.column_orders)}write(e){e.writeStructBegin("FileMetaData"),this.version!=null&&(e.writeFieldBegin("version",Bt.Thrift.Type.I32,1),e.writeI32(this.version),e.writeFieldEnd()),this.schema!=null&&(e.writeFieldBegin("schema",Bt.Thrift.Type.LIST,2),e.writeListBegin(Bt.Thrift.Type.STRUCT,this.schema.length),this.schema.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",Bt.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.row_groups!=null&&(e.writeFieldBegin("row_groups",Bt.Thrift.Type.LIST,4),e.writeListBegin(Bt.Thrift.Type.STRUCT,this.row_groups.length),this.row_groups.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",Bt.Thrift.Type.LIST,5),e.writeListBegin(Bt.Thrift.Type.STRUCT,this.key_value_metadata.length),this.key_value_metadata.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.created_by!=null&&(e.writeFieldBegin("created_by",Bt.Thrift.Type.STRING,6),e.writeString(this.created_by),e.writeFieldEnd()),this.column_orders!=null&&(e.writeFieldBegin("column_orders",Bt.Thrift.Type.LIST,7),e.writeListBegin(Bt.Thrift.Type.STRUCT,this.column_orders.length),this.column_orders.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,o=n.fid;if(i===Bt.Thrift.Type.STOP)break;switch(o){case 1:if(i===Bt.Thrift.Type.I32){let f=e.readI32();r.version=f}else e.skip(i);break;case 2:if(i===Bt.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=Zl.read(e);f.push(c)}e.readListEnd(),r.schema=f}else e.skip(i);break;case 3:if(i===Bt.Thrift.Type.I64){let f=e.readI64();r.num_rows=f}else e.skip(i);break;case 4:if(i===Bt.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=fu.read(e);f.push(c)}e.readListEnd(),r.row_groups=f}else e.skip(i);break;case 5:if(i===Bt.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=Wf.read(e);f.push(c)}e.readListEnd(),r.key_value_metadata=f}else e.skip(i);break;case 6:if(i===Bt.Thrift.Type.STRING){let f=e.readString();r.created_by=f}else e.skip(i);break;case 7:if(i===Bt.Thrift.Type.LIST){let f=new Array,l=e.readListBegin().size;for(let u=0;u<l;u++){let c=Ws.read(e);f.push(c)}e.readListEnd(),r.column_orders=f}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.version!==void 0&&r.schema!==void 0&&r.num_rows!==void 0&&r.row_groups!==void 0)return new au(r);throw new Bt.Thrift.TProtocolException(Bt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read FileMetaData from input")}};var Ys="PAR1",pT="PARE";var lu="INT32",Kw="RLE";var Ks=Pe(ct());var Gw=class extends Ks.TFramedTransport{constructor(){super(...arguments);this.readPos=0}};function qn(t,e){for(let r in t)if(t[r]===e)return r;throw new Error("Invalid ENUM value")}function dT(t,e){e||(e=0);let r=new Gw(t);r.readPos=e;let n=new Ks.TCompactProtocol(r),i=au.read(n);return{length:r.readPos-e,metadata:i}}function mT(t,e){e||(e=0);let r=new Gw(t);r.readPos=e;let n=new Ks.TCompactProtocol(r),i=tu.read(n);return{length:r.readPos-e,pageHeader:i}}function uu(t){return t===0?0:Math.ceil(Math.log2(t+1))}function bT(t,e){for(let r=0;r<t.length;r++){if(t[r].length>e.length)continue;let n=!0;for(let i=0;i<e.length;i++)if(!(t[r][i]===e[i]||t[r][i]==="+"||t[r][i]==="#")&&!(i>=t[r].length&&t[r][t[r].length-1]==="#")){n=!1;break}if(n)return r}return-1}async function wT(t,e){let r={buffer:t,offset:0,size:t.length},n={rlevels:[],dlevels:[],values:[],pageHeaders:[],count:0},i=e.dictionary||[];for(;r.offset<r.size&&(!e.numValues||n.dlevels.length<Number(e.numValues));){let o=await Jw(r,e);if(o.dictionary){i=o.dictionary;continue}i.length&&(o.values=o.values.map(f=>i[f]));for(let f=0;f<o.rlevels.length;f++){n.rlevels.push(o.rlevels[f]),n.dlevels.push(o.dlevels[f]);let s=o.values[f];s!==void 0&&n.values.push(s)}n.count+=o.count,n.pageHeaders.push(o.pageHeader)}return n}async function Jw(t,e){let r,{pageHeader:n,length:i}=mT(t.buffer,t.offset);t.offset+=i;let o=qn(dp,n.type);switch(o){case"DATA_PAGE":r=await N2(t,n,e);break;case"DATA_PAGE_V2":r=await D2(t,n,e);break;case"DICTIONARY_PAGE":r={dictionary:await F2(t,n,e),pageHeader:n};break;default:throw new Error(`invalid page type: ${o}`)}return r}function Zw(t,e,r){let n={},i=e;for(let o=0;o<r;o++){let f=t[i],s=i>0?qn(cp,f.repetition_type):"ROOT",l=!1,u=!1;switch(s){case"REQUIRED":break;case"OPTIONAL":l=!0;break;case"REPEATED":u=!0;break;default:throw new Error("parquet: unknown repetition type")}if(f.num_children>0){let c=Zw(t,i+1,f.num_children);i=c.next,n[f.name]={optional:l,repeated:u,fields:c.schema}}else{let c=qn(Rs,f.type),_=c;switch(f.converted_type&&(_=qn(up,f.converted_type)),_){case"DECIMAL":_=`${_}_${c}`;break;default:}n[f.name]={type:_,typeLength:f.type_length,presision:f.precision,scale:f.scale,optional:l,repeated:u},i++}}return{schema:n,offset:e,next:i}}function Kf(t,e,r,n,i){if(!(e in rl))throw new Error(`invalid encoding: ${e}`);return rl[e].decodeValues(t,r,n,i)}async function N2(t,e,r){let n=t.offset+e.compressed_page_size,i=e.data_page_header?.num_values,o=t;if(r.compression!=="UNCOMPRESSED"){let S=await Zc(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);o={buffer:S,offset:0,size:S.length},t.offset=n}let f=qn(Lf,e.data_page_header?.repetition_level_encoding),s=new Array(i);r.column.rLevelMax>0?s=Kf(lu,f,o,i,{bitWidth:uu(r.column.rLevelMax),disableEnvelope:!1}):s.fill(0);let l=qn(Lf,e.data_page_header?.definition_level_encoding),u=new Array(i);r.column.dLevelMax>0?u=Kf(lu,l,o,i,{bitWidth:uu(r.column.dLevelMax),disableEnvelope:!1}):u.fill(0);let c=0;for(let S of u)S===r.column.dLevelMax&&c++;let _=qn(Lf,e.data_page_header?.encoding),p={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},j=Kf(r.column.primitiveType,_,o,c,p);return{dlevels:u,rlevels:s,values:j,count:i,pageHeader:e}}async function D2(t,e,r){let n=t.offset+e.compressed_page_size,i=e.data_page_header_v2?.num_values,o=i-e.data_page_header_v2?.num_nulls,f=qn(Lf,e.data_page_header_v2?.encoding),s=new Array(i);r.column.rLevelMax>0?s=Kf(lu,Kw,t,i,{bitWidth:uu(r.column.rLevelMax),disableEnvelope:!0}):s.fill(0);let l=new Array(i);r.column.dLevelMax>0?l=Kf(lu,Kw,t,i,{bitWidth:uu(r.column.dLevelMax),disableEnvelope:!0}):l.fill(0);let u=t;if(e.data_page_header_v2?.is_compressed){let p=await Zc(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);u={buffer:p,offset:0,size:p.length},t.offset=n}let c={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},_=Kf(r.column.primitiveType,f,u,o,c);return{dlevels:l,rlevels:s,values:_,count:i,pageHeader:e}}async function F2(t,e,r){let n=t.offset+e.compressed_page_size,i={offset:0,buffer:t.buffer.slice(t.offset,n),size:n-t.offset};if(t.offset=n,r.compression!=="UNCOMPRESSED"){let f=await Zc(r.compression,i.buffer.slice(i.offset,n),e.uncompressed_page_size);i={buffer:f,offset:0,size:f.length},t.offset=n}let o=e?.dictionary_page_header?.num_values||0;return Kf(r.column.primitiveType,r.column.encoding,i,o,r).map(f=>f.toString())}var P2={defaultDictionarySize:1e6},cu=class{constructor(e,r){this.metadata=null;this.file=e,this.props={...P2,...r}}close(){this.file.close()}async*rowIterator(e){for await(let r of this.rowBatchIterator(e))for(let n of r)yield n}async*rowBatchIterator(e){let r=await this.getSchema();for await(let n of this.rowGroupIterator(e))yield lp(r,n)}async*rowGroupIterator(e){let r=(e?.columnList||[]).map(f=>Array.isArray(f)?f:[f]),n=await this.getFileMetadata(),i=await this.getSchema(),o=n?.row_groups.length||0;for(let f=0;f<o;f++)yield await this.readRowGroup(i,n.row_groups[f],r)}async getRowCount(){let e=await this.getFileMetadata();return Number(e.num_rows)}async getSchema(){let e=await this.getFileMetadata(),r=e.schema[0],{schema:n}=Zw(e.schema,1,r.num_children);return new uw(n)}async getSchemaMetadata(){let e=await this.getFileMetadata(),r={};for(let n of e.key_value_metadata)r[n.key]=n.value;return r}async getFileMetadata(){return this.metadata||(await this.readHeader(),this.metadata=this.readFooter()),this.metadata}async readHeader(){let r=(await this.file.read(0,Ys.length)).toString();switch(r){case Ys:break;case pT:throw new Error("Encrypted parquet file not supported");default:throw new Error(`Invalid parquet file (magic=${r})`)}}async readFooter(){let e=Ys.length+4,r=await this.file.read(this.file.size-e,e),n=r.slice(4).toString();if(n!==Ys)throw new Error(`Not a valid parquet file (magic="${n})`);let i=r.readUInt32LE(0),o=this.file.size-i-e;if(o<Ys.length)throw new Error(`Invalid metadata size ${o}`);let f=await this.file.read(o,i),{metadata:s}=dT(f);return s}async readRowGroup(e,r,n){let i={rowCount:Number(r.num_rows),columnData:{}};for(let o of r.columns){let s=o.meta_data?.path_in_schema;n.length>0&&bT(n,s)<0||(i.columnData[s.join()]=await this.readColumnChunk(e,o))}return i}async readColumnChunk(e,r){if(r.file_path!==void 0&&r.file_path!==null)throw new Error("external references are not supported");let n=e.findField(r.meta_data?.path_in_schema),i=qn(Rs,r.meta_data?.type);if(i!==n.primitiveType)throw new Error(`chunk type not matching schema: ${i}`);let o=qn(pp,r.meta_data?.codec),f=Number(r.meta_data?.data_page_offset),s=Number(r.meta_data?.total_compressed_size);r.file_path||(s=Math.min(this.file.size-f,Number(r.meta_data?.total_compressed_size)));let l={type:i,rLevelMax:n.rLevelMax,dLevelMax:n.dLevelMax,compression:o,column:n,numValues:r.meta_data?.num_values,dictionary:[]},u,c=r?.meta_data?.dictionary_page_offset;if(c){let p=Number(c);u=await this.getDictionary(p,l,f)}u=l.dictionary?.length?l.dictionary:u;let _=await this.file.read(f,s);return await wT(_,{...l,dictionary:u})}async getDictionary(e,r,n){if(e===0)return[];let i=Math.min(this.file.size-e,this.props.defaultDictionarySize),o=await this.file.read(e,i),f={buffer:o,offset:0,size:o.length};return(await Jw(f,r)).dictionary}};async function hT(t,e){let r=new Blob([t]);for await(let n of Xw(r,e))return n;return null}async function*Xw(t,e){let r=$a(t),i=new cu(r).rowBatchIterator(e?.parquet);for await(let o of i)yield o}function gT(t,e){if(!t)throw new Error(e||"loader assertion failed.")}var Kn=class{constructor(e,r){gT(Array.isArray(e)),R2(e),this.fields=e,this.metadata=r||new Map}compareTo(e){if(this.metadata!==e.metadata||this.fields.length!==e.fields.length)return!1;for(let r=0;r<this.fields.length;++r)if(!this.fields[r].compareTo(e.fields[r]))return!1;return!0}select(...e){let r=Object.create(null);for(let i of e)r[i]=!0;let n=this.fields.filter(i=>r[i.name]);return new Kn(n,this.metadata)}selectAt(...e){let r=e.map(n=>this.fields[n]).filter(Boolean);return new Kn(r,this.metadata)}assign(e){let r,n=this.metadata;if(e instanceof Kn){let f=e;r=f.fields,n=yT(yT(new Map,this.metadata),f.metadata)}else r=e;let i=Object.create(null);for(let f of this.fields)i[f.name]=f;for(let f of r)i[f.name]=f;let o=Object.values(i);return new Kn(o,n)}};function R2(t){let e={};for(let r of t)e[r.name]&&console.warn("Schema: duplicated field name",r.name,r),e[r.name]=!0}function yT(t,e){return new Map([...t||new Map,...e||new Map])}var ro=class{constructor(e,r,n=!1,i=new Map){this.name=e,this.type=r,this.nullable=n,this.metadata=i}get typeId(){return this.type&&this.type.typeId}clone(){return new ro(this.name,this.type,this.nullable,this.metadata)}compareTo(e){return this.name===e.name&&this.type===e.type&&this.nullable===e.nullable&&this.metadata===e.metadata}toString(){return`${this.type}${this.nullable?", nullable":""}${this.metadata?`, metadata: ${this.metadata}`:""}`}};var bt;(function($){$[$.NONE=0]="NONE",$[$.Null=1]="Null",$[$.Int=2]="Int",$[$.Float=3]="Float",$[$.Binary=4]="Binary",$[$.Utf8=5]="Utf8",$[$.Bool=6]="Bool",$[$.Decimal=7]="Decimal",$[$.Date=8]="Date",$[$.Time=9]="Time",$[$.Timestamp=10]="Timestamp",$[$.Interval=11]="Interval",$[$.List=12]="List",$[$.Struct=13]="Struct",$[$.Union=14]="Union",$[$.FixedSizeBinary=15]="FixedSizeBinary",$[$.FixedSizeList=16]="FixedSizeList",$[$.Map=17]="Map",$[$.Dictionary=-1]="Dictionary",$[$.Int8=-2]="Int8",$[$.Int16=-3]="Int16",$[$.Int32=-4]="Int32",$[$.Int64=-5]="Int64",$[$.Uint8=-6]="Uint8",$[$.Uint16=-7]="Uint16",$[$.Uint32=-8]="Uint32",$[$.Uint64=-9]="Uint64",$[$.Float16=-10]="Float16",$[$.Float32=-11]="Float32",$[$.Float64=-12]="Float64",$[$.DateDay=-13]="DateDay",$[$.DateMillisecond=-14]="DateMillisecond",$[$.TimestampSecond=-15]="TimestampSecond",$[$.TimestampMillisecond=-16]="TimestampMillisecond",$[$.TimestampMicrosecond=-17]="TimestampMicrosecond",$[$.TimestampNanosecond=-18]="TimestampNanosecond",$[$.TimeSecond=-19]="TimeSecond",$[$.TimeMillisecond=-20]="TimeMillisecond",$[$.TimeMicrosecond=-21]="TimeMicrosecond",$[$.TimeNanosecond=-22]="TimeNanosecond",$[$.DenseUnion=-23]="DenseUnion",$[$.SparseUnion=-24]="SparseUnion",$[$.IntervalDayTime=-25]="IntervalDayTime",$[$.IntervalYearMonth=-26]="IntervalYearMonth"})(bt||(bt={}));var Ur=class{static isNull(e){return e&&e.typeId===bt.Null}static isInt(e){return e&&e.typeId===bt.Int}static isFloat(e){return e&&e.typeId===bt.Float}static isBinary(e){return e&&e.typeId===bt.Binary}static isUtf8(e){return e&&e.typeId===bt.Utf8}static isBool(e){return e&&e.typeId===bt.Bool}static isDecimal(e){return e&&e.typeId===bt.Decimal}static isDate(e){return e&&e.typeId===bt.Date}static isTime(e){return e&&e.typeId===bt.Time}static isTimestamp(e){return e&&e.typeId===bt.Timestamp}static isInterval(e){return e&&e.typeId===bt.Interval}static isList(e){return e&&e.typeId===bt.List}static isStruct(e){return e&&e.typeId===bt.Struct}static isUnion(e){return e&&e.typeId===bt.Union}static isFixedSizeBinary(e){return e&&e.typeId===bt.FixedSizeBinary}static isFixedSizeList(e){return e&&e.typeId===bt.FixedSizeList}static isMap(e){return e&&e.typeId===bt.Map}static isDictionary(e){return e&&e.typeId===bt.Dictionary}get typeId(){return bt.NONE}compareTo(e){return this===e}},Qw=class extends Ur{get typeId(){return bt.Null}get[Symbol.toStringTag](){return"Null"}toString(){return"Null"}},pu=class extends Ur{get typeId(){return bt.Bool}get[Symbol.toStringTag](){return"Bool"}toString(){return"Bool"}},bi=class extends Ur{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return bt.Int}get[Symbol.toStringTag](){return"Int"}toString(){return`${this.isSigned?"I":"Ui"}nt${this.bitWidth}`}},du=class extends bi{constructor(){super(!0,8)}},mu=class extends bi{constructor(){super(!0,16)}},Lo=class extends bi{constructor(){super(!0,32)}},no=class extends bi{constructor(){super(!0,64)}};var bu=class extends bi{constructor(){super(!1,16)}},wu=class extends bi{constructor(){super(!1,32)}},hu=class extends bi{constructor(){super(!1,64)}},jT={HALF:16,SINGLE:32,DOUBLE:64},gu=class extends Ur{constructor(e){super();this.precision=e}get typeId(){return bt.Float}get[Symbol.toStringTag](){return"Float"}toString(){return`Float${this.precision}`}};var Gs=class extends gu{constructor(){super(jT.SINGLE)}},wi=class extends gu{constructor(){super(jT.DOUBLE)}},io=class extends Ur{constructor(){super()}get typeId(){return bt.Binary}toString(){return"Binary"}get[Symbol.toStringTag](){return"Binary"}},yu=class extends Ur{get typeId(){return bt.Utf8}get[Symbol.toStringTag](){return"Utf8"}toString(){return"Utf8"}},H2={DAY:0,MILLISECOND:1},$w=class extends Ur{constructor(e){super();this.unit=e}get typeId(){return bt.Date}get[Symbol.toStringTag](){return"Date"}toString(){return`Date${(this.unit+1)*32}<${H2[this.unit]}>`}};var _T={SECOND:1,MILLISECOND:1e3,MICROSECOND:1e6,NANOSECOND:1e9},eh=class extends Ur{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return bt.Time}toString(){return`Time${this.bitWidth}<${_T[this.unit]}>`}get[Symbol.toStringTag](){return"Time"}};var th=class extends Ur{constructor(e,r=null){super();this.unit=e,this.timezone=r}get typeId(){return bt.Timestamp}get[Symbol.toStringTag](){return"Timestamp"}toString(){return`Timestamp<${_T[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}};var M2={DAY_TIME:0,YEAR_MONTH:1},rh=class extends Ur{constructor(e){super();this.unit=e}get typeId(){return bt.Interval}get[Symbol.toStringTag](){return"Interval"}toString(){return`Interval<${M2[this.unit]}>`}};var nh=class extends Ur{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return bt.FixedSizeList}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get[Symbol.toStringTag](){return"FixedSizeList"}toString(){return`FixedSizeList[${this.listSize}]<${this.valueType}>`}},ju=class extends Ur{constructor(e){super();this.children=e}get typeId(){return bt.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}get[Symbol.toStringTag](){return"Struct"}};var Q2={BOOLEAN:pu,INT32:Lo,INT64:wi,INT96:wi,FLOAT:Gs,DOUBLE:wi,BYTE_ARRAY:io,FIXED_LEN_BYTE_ARRAY:io,UTF8:yu,DATE:Lo,TIME_MILLIS:no,TIME_MICROS:no,TIMESTAMP_MILLIS:no,TIMESTAMP_MICROS:no,UINT_8:Lo,UINT_16:bu,UINT_32:wu,UINT_64:hu,INT_8:du,INT_16:mu,INT_32:Lo,INT_64:no,JSON:io,BSON:io,INTERVAL:io,DECIMAL_INT32:Gs,DECIMAL_INT64:wi,DECIMAL_BYTE_ARRAY:wi,DECIMAL_FIXED_LEN_BYTE_ARRAY:wi};function qT(t,e){let r=vT(t.schema),n=e&&eN(e);return new Kn(r,n)}function vT(t){let e=[];for(let r in t){let n=t[r];if(n.fields){let i=vT(n.fields),o=new ro(r,new ju(i),n.optional);e.push(o)}else{let i=Q2[n.type],o=$2(n),f=new ro(r,new i,n.optional,o);e.push(f)}}return e}function $2(t){let e=new Map;for(let r in t)if(r!=="name"){let n=t[r]||"";n=typeof t[r]!="string"?JSON.stringify(t[r]):t[r],e.set(r,n)}return e}function eN(t){let e=new Map,r=t.key_value_metadata||[];for(let{key:n,value:i}of r)typeof i=="string"&&e.set(n,i);return e}function TT(t,e){let r={};for(let[n,i]of Object.entries(e.columnData))r[n]=r[n]||i.values;return r}function tN(t){let e=t.metadata.get("geo");if(!e)return null;try{return JSON.parse(e)}catch{return null}}function BT(t){let e=tN(t);if(!e)return;let{version:r,primary_column:n,columns:i}=e;r&&t.metadata.set("geo.version",r),n&&t.metadata.set("geo.primary_column",n),t.metadata.set("geo.columns",Object.keys(i||{}).join(""));for(let[o,f]of Object.entries(i||{})){let s=t.fields.find(l=>l.name===o);s&&(s.name===n&&s.metadata.set("geo.primary_field","true"),rN(s,f))}}function rN(t,e){for(let[r,n]of Object.entries(e||{}))switch(r){case"geometry_type":t.metadata.set(`geo.${r}`,n.join(","));break;case"bbox":case"crs":case"edges":default:t.metadata.set(`geo.${r}`,typeof n=="string"?n:JSON.stringify(n))}}async function kT(t,e){let r=new Blob([t]);for await(let n of ih(r,e))return n;return null}async function*ih(t,e){let r=$a(t),n=new cu(r),i=await n.getSchema(),o=await n.getFileMetadata(),f=qT(i,o);BT(f);let s=n.rowGroupIterator(e?.parquet);for await(let l of s)yield nN(f,l)}function nN(t,e){let r=TT(t,e);return{shape:"columnar-table",batchType:"data",schema:t,data:r,length:e.rowCount}}var Mm=Pe(g1());var Hm={};L1(Hm,{Compression:()=>QM,Encoding:()=>$M,WriterProperties:()=>Xa,WriterPropertiesBuilder:()=>ar,WriterVersion:()=>ez,default:()=>v1,readParquet:()=>JM,writeParquet:()=>XM});var Re,y1=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0});y1.decode();var Fm=null;function sc(){return(Fm===null||Fm.buffer!==Re.memory.buffer)&&(Fm=new Uint8Array(Re.memory.buffer)),Fm}function j1(t,e){return y1.decode(sc().subarray(t,t+e))}var _o=new Array(32).fill(void 0);_o.push(void 0,null,!0,!1);var ac=_o.length;function lc(t){ac===_o.length&&_o.push(_o.length+1);let e=ac;return ac=_o[e],_o[e]=t,e}function Ga(t){return _o[t]}function KM(t){t<36||(_o[t]=ac,ac=t)}function uc(t){let e=Ga(t);return KM(t),e}var ni=0,Pm=new TextEncoder("utf-8"),GM=typeof Pm.encodeInto=="function"?function(t,e){return Pm.encodeInto(t,e)}:function(t,e){let r=Pm.encode(t);return e.set(r),{read:t.length,written:r.length}};function Ja(t,e,r){if(r===void 0){let s=Pm.encode(t),l=e(s.length);return sc().subarray(l,l+s.length).set(s),ni=s.length,l}let n=t.length,i=e(n),o=sc(),f=0;for(;f<n;f++){let s=t.charCodeAt(f);if(s>127)break;o[i+f]=s}if(f!==n){f!==0&&(t=t.slice(f)),i=r(i,n,n=f+t.length*3);let s=sc().subarray(i+f,i+n);f+=GM(t,s).written}return ni=f,i}function _1(t,e){let r=e(t.length*1);return sc().set(t,r/1),ni=t.length,r}var Rm=null;function Za(){return(Rm===null||Rm.buffer!==Re.memory.buffer)&&(Rm=new Int32Array(Re.memory.buffer)),Rm}function JM(t){try{let i=Re.__wbindgen_add_to_stack_pointer(-16),o=_1(t,Re.__wbindgen_malloc),f=ni;Re.readParquet(i,o,f);var e=Za()[i/4+0],r=Za()[i/4+1],n=Za()[i/4+2];if(n)throw uc(r);return uc(e)}finally{Re.__wbindgen_add_to_stack_pointer(16)}}function ZM(t,e){if(!(t instanceof e))throw new Error(`expected instance of ${e.name}`);return t.ptr}function XM(t,e){try{let f=Re.__wbindgen_add_to_stack_pointer(-16),s=_1(t,Re.__wbindgen_malloc),l=ni;ZM(e,Xa);var r=e.ptr;e.ptr=0,Re.writeParquet(f,s,l,r);var n=Za()[f/4+0],i=Za()[f/4+1],o=Za()[f/4+2];if(o)throw uc(i);return uc(n)}finally{Re.__wbindgen_add_to_stack_pointer(16)}}var QM=Object.freeze({UNCOMPRESSED:0,"0":"UNCOMPRESSED",SNAPPY:1,"1":"SNAPPY",GZIP:2,"2":"GZIP",BROTLI:3,"3":"BROTLI",LZ4:4,"4":"LZ4",ZSTD:5,"5":"ZSTD"}),$M=Object.freeze({PLAIN:0,"0":"PLAIN",PLAIN_DICTIONARY:1,"1":"PLAIN_DICTIONARY",RLE:2,"2":"RLE",BIT_PACKED:3,"3":"BIT_PACKED",DELTA_BINARY_PACKED:4,"4":"DELTA_BINARY_PACKED",DELTA_LENGTH_BYTE_ARRAY:5,"5":"DELTA_LENGTH_BYTE_ARRAY",DELTA_BYTE_ARRAY:6,"6":"DELTA_BYTE_ARRAY",RLE_DICTIONARY:7,"7":"RLE_DICTIONARY",BYTE_STREAM_SPLIT:8,"8":"BYTE_STREAM_SPLIT"}),ez=Object.freeze({V1:0,"0":"V1",V2:1,"1":"V2"}),Xa=class{static __wrap(e){let r=Object.create(Xa.prototype);return r.ptr=e,r}__destroy_into_raw(){let e=this.ptr;return this.ptr=0,e}free(){let e=this.__destroy_into_raw();Re.__wbg_writerproperties_free(e)}},ar=class{static __wrap(e){let r=Object.create(ar.prototype);return r.ptr=e,r}__destroy_into_raw(){let e=this.ptr;return this.ptr=0,e}free(){let e=this.__destroy_into_raw();Re.__wbg_writerpropertiesbuilder_free(e)}constructor(){let e=Re.writerpropertiesbuilder_new();return ar.__wrap(e)}build(){let e=this.__destroy_into_raw(),r=Re.writerpropertiesbuilder_build(e);return Xa.__wrap(r)}setWriterVersion(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setWriterVersion(r,e);return ar.__wrap(n)}setDataPagesizeLimit(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setDataPagesizeLimit(r,e);return ar.__wrap(n)}setDictionaryPagesizeLimit(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setDictionaryPagesizeLimit(r,e);return ar.__wrap(n)}setWriteBatchSize(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setWriteBatchSize(r,e);return ar.__wrap(n)}setMaxRowGroupSize(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setMaxRowGroupSize(r,e);return ar.__wrap(n)}setCreatedBy(e){let r=this.__destroy_into_raw(),n=Ja(e,Re.__wbindgen_malloc,Re.__wbindgen_realloc),i=ni,o=Re.writerpropertiesbuilder_setCreatedBy(r,n,i);return ar.__wrap(o)}setEncoding(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setEncoding(r,e);return ar.__wrap(n)}setCompression(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setCompression(r,e);return ar.__wrap(n)}setDictionaryEnabled(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setDictionaryEnabled(r,e);return ar.__wrap(n)}setStatisticsEnabled(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setStatisticsEnabled(r,e);return ar.__wrap(n)}setMaxStatisticsSize(e){let r=this.__destroy_into_raw(),n=Re.writerpropertiesbuilder_setMaxStatisticsSize(r,e);return ar.__wrap(n)}setColumnEncoding(e,r){let n=this.__destroy_into_raw(),i=Ja(e,Re.__wbindgen_malloc,Re.__wbindgen_realloc),o=ni,f=Re.writerpropertiesbuilder_setColumnEncoding(n,i,o,r);return ar.__wrap(f)}setColumnCompression(e,r){let n=this.__destroy_into_raw(),i=Ja(e,Re.__wbindgen_malloc,Re.__wbindgen_realloc),o=ni,f=Re.writerpropertiesbuilder_setColumnCompression(n,i,o,r);return ar.__wrap(f)}setColumnDictionaryEnabled(e,r){let n=this.__destroy_into_raw(),i=Ja(e,Re.__wbindgen_malloc,Re.__wbindgen_realloc),o=ni,f=Re.writerpropertiesbuilder_setColumnDictionaryEnabled(n,i,o,r);return ar.__wrap(f)}setColumnStatisticsEnabled(e,r){let n=this.__destroy_into_raw(),i=Ja(e,Re.__wbindgen_malloc,Re.__wbindgen_realloc),o=ni,f=Re.writerpropertiesbuilder_setColumnStatisticsEnabled(n,i,o,r);return ar.__wrap(f)}setColumnMaxStatisticsSize(e,r){let n=this.__destroy_into_raw(),i=Ja(e,Re.__wbindgen_malloc,Re.__wbindgen_realloc),o=ni,f=Re.writerpropertiesbuilder_setColumnMaxStatisticsSize(n,i,o,r);return ar.__wrap(f)}};async function tz(t,e){if(typeof Response=="function"&&t instanceof Response){if(typeof WebAssembly.instantiateStreaming=="function")try{return await WebAssembly.instantiateStreaming(t,e)}catch(n){if(t.headers.get("Content-Type")!="application/wasm")console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n",n);else throw n}let r=await t.arrayBuffer();return await WebAssembly.instantiate(r,e)}else{let r=await WebAssembly.instantiate(t,e);return r instanceof WebAssembly.Instance?{instance:r,module:t}:r}}async function q1(t){let e={};e.wbg={},e.wbg.__wbindgen_string_new=function(i,o){let f=j1(i,o);return lc(f)},e.wbg.__wbindgen_object_drop_ref=function(i){uc(i)},e.wbg.__wbg_buffer_7af23f65f6c64548=function(i){let o=Ga(i).buffer;return lc(o)},e.wbg.__wbg_newwithbyteoffsetandlength_ce1e75f0ce5f7974=function(i,o,f){let s=new Uint8Array(Ga(i),o>>>0,f>>>0);return lc(s)},e.wbg.__wbg_set_f25e869e4565d2a2=function(i,o,f){Ga(i).set(Ga(o),f>>>0)},e.wbg.__wbg_length_0acb1cf9bbaf8519=function(i){return Ga(i).length},e.wbg.__wbg_newwithlength_8f0657faca9f1422=function(i){let o=new Uint8Array(i>>>0);return lc(o)},e.wbg.__wbindgen_throw=function(i,o){throw new Error(j1(i,o))},e.wbg.__wbindgen_memory=function(){let i=Re.memory;return lc(i)},(typeof t=="string"||typeof Request=="function"&&t instanceof Request||typeof URL=="function"&&t instanceof URL)&&(t=fetch(t));let{instance:r,module:n}=await tz(await t,e);return Re=r.exports,q1.__wbindgen_wasm_module=n,Re}var v1=q1;var Bj=null;async function T1(t){return Bj!==null?Bj:(await v1(t),Bj=Hm,Hm)}async function B1(t,e){let r=e?.parquet?.wasmUrl,n=await T1(r),i=new Uint8Array(t),o=n.readParquet(i),f=o.buffer.slice(o.byteOffset,o.byteLength+o.byteOffset);return rz(f)}function rz(t){let e=Mm.RecordBatchStreamReader.from(t),r=[];for(let n of e)r.push(n);return new Mm.Table(r)}var k1={...Cm,parse:hT,parseFileInBatches:Xw},FY={...Cm,parse:kT,parseFileInBatches:ih},PY={...Fj,parse:B1};Lm(k1);})();
29
+ `)+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}function Wg(t){return Array.isArray(t)}function Em(t){return typeof t=="boolean"}function jp(t){return t===null}function jB(t){return t==null}function Yg(t){return typeof t=="number"}function yp(t){return typeof t=="string"}function yB(t){return babelHelpers.typeof(t)==="symbol"}function xi(t){return t===void 0}function vp(t){return Fo(t)&&Om(t)==="[object RegExp]"}function Fo(t){return babelHelpers.typeof(t)==="object"&&t!==null}function Am(t){return Fo(t)&&Om(t)==="[object Date]"}function _p(t){return Fo(t)&&(Om(t)==="[object Error]"||t instanceof Error)}function qp(t){return typeof t=="function"}function vB(t){return t===null||typeof t=="boolean"||typeof t=="number"||typeof t=="string"||babelHelpers.typeof(t)==="symbol"||typeof t=="undefined"}function _B(t){return Buffer.isBuffer(t)}function Om(t){return Object.prototype.toString.call(t)}function Nm(t){return t<10?"0"+t.toString(10):t.toString(10)}var qB=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function kB(){var t=new Date,e=[Nm(t.getHours()),Nm(t.getMinutes()),Nm(t.getSeconds())].join(":");return[t.getDate(),qB[t.getMonth()],e].join(" ")}function TB(){console.log("%s - %s",kB(),Bm.apply(null,arguments))}function Kg(t,e){if(!e||!Fo(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}function Gg(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var BB={inherits:pB,_extend:Kg,log:TB,isBuffer:_B,isPrimitive:vB,isFunction:qp,isError:_p,isDate:Am,isObject:Fo,isRegExp:vp,isUndefined:xi,isSymbol:yB,isString:yp,isNumber:Yg,isNullOrUndefined:jB,isNull:jp,isBoolean:Em,isArray:Wg,inspect:Si,deprecate:Vg,format:Bm,debuglog:cB},pt=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.deprecate=e.isObjectLike=e.isDate=e.isBuffer=e.haveBuffer=e.isBigUInt64Array=e.isBigInt64Array=e.isUint8Array=e.randomBytes=e.normalizedFunctionString=void 0;function r(c){return c.toString().replace("function(","function (")}e.normalizedFunctionString=r;function n(c){let h=le.Buffer.alloc(c);for(let T=0;T<c;++T)h[T]=Math.floor(Math.random()*256);return h}if(e.randomBytes=n,typeof window!="undefined"&&window.crypto&&window.crypto.getRandomValues)e.randomBytes=c=>window.crypto.getRandomValues(le.Buffer.alloc(c));else{try{e.randomBytes=aB.randomBytes}catch{}e.randomBytes==null&&(e.randomBytes=n)}function i(c){return Object.prototype.toString.call(c)==="[object Uint8Array]"}e.isUint8Array=i;function f(c){return Object.prototype.toString.call(c)==="[object BigInt64Array]"}e.isBigInt64Array=f;function o(c){return Object.prototype.toString.call(c)==="[object BigUint64Array]"}e.isBigUInt64Array=o;function s(){return typeof hp!="undefined"&&typeof hp.Buffer!="undefined"}e.haveBuffer=s;function l(c){return s()&&le.Buffer.isBuffer(c)}e.isBuffer=l;function p(c){return u(c)&&Object.prototype.toString.call(c)==="[object Date]"}e.isDate=p;function u(c){return typeof c=="object"&&c!==null}e.isObjectLike=u;function b(c,h){if(typeof window=="undefined"||typeof self=="undefined")return BB.deprecate(c,h);let T=!1;function y(...N){return T||(console.warn(h),T=!0),c.apply(this,...N)}return y}e.deprecate=b});At(pt);var H4=pt.deprecate,R4=pt.isObjectLike,D4=pt.isDate,z4=pt.isBuffer,F4=pt.haveBuffer,P4=pt.isBigUInt64Array,M4=pt.isBigInt64Array,U4=pt.isUint8Array,L4=pt.randomBytes,C4=pt.normalizedFunctionString,Fn=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.DBRef=e.isDBRefLike=void 0;function r(i){return pt.isObjectLike(i)&&i.$id!=null&&i.$ref!=null}e.isDBRefLike=r;class n{constructor(f,o,s,l){let p=f.split(".");p.length===2&&(s=p.shift(),f=p.shift()),this.collection=f,this.oid=o,this.db=s,this.fields=l||{}}get namespace(){return this.collection}set namespace(f){this.collection=f}toJSON(){let f=Object.assign({$ref:this.collection,$id:this.oid},this.fields);return this.db!=null&&(f.$db=this.db),f}toExtendedJSON(f){f=f||{};let o={$ref:this.collection,$id:this.oid};return f.legacy||(this.db&&(o.$db=this.db),o=Object.assign(o,this.fields)),o}static fromExtendedJSON(f){let o=Object.assign({},f);return delete o.$ref,delete o.$id,delete o.$db,new n(f.$ref,f.$id,f.$db,o)}}e.DBRef=n,Object.defineProperty(n.prototype,"_bsontype",{value:"DBRef"})});At(Fn);var V4=Fn.DBRef,W4=Fn.isDBRefLike,me=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Long=void 0;let r;try{r=new WebAssembly.Instance(new WebAssembly.Module(new Uint8Array([0,97,115,109,1,0,0,0,1,13,2,96,0,1,127,96,4,127,127,127,127,1,127,3,7,6,0,1,1,1,1,1,6,6,1,127,1,65,0,11,7,50,6,3,109,117,108,0,1,5,100,105,118,95,115,0,2,5,100,105,118,95,117,0,3,5,114,101,109,95,115,0,4,5,114,101,109,95,117,0,5,8,103,101,116,95,104,105,103,104,0,0,10,191,1,6,4,0,35,0,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,126,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,127,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,128,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,129,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,130,34,4,66,32,135,167,36,0,32,4,167,11])),{}).exports}catch{}let n=1<<16,i=1<<24,f=n*n,o=f*f,s=o/2,l={},p={};class u{constructor(c=0,h=0,T){this.comp=u.prototype.compare,this.div=u.prototype.divide,this.eq=u.prototype.equals,this.gt=u.prototype.greaterThan,this.gte=u.prototype.greaterThanOrEqual,this.ge=u.prototype.greaterThanOrEqual,this.lt=u.prototype.lessThan,this.lte=u.prototype.lessThanOrEqual,this.mod=u.prototype.modulo,this.rem=u.prototype.modulo,this.mul=u.prototype.multiply,this.neg=u.prototype.negate,this.neq=u.prototype.notEquals,this.ne=u.prototype.notEquals,this.shl=u.prototype.shiftLeft,this.shr=u.prototype.shiftRight,this.shr_u=u.prototype.shiftRightUnsigned,this.shru=u.prototype.shiftRightUnsigned,this.sub=u.prototype.subtract,this.eqz=u.prototype.isZero,this.le=u.prototype.lessThanOrEqual,this.low=c|0,this.high=h|0,this.unsigned=!!T,Object.defineProperty(this,"__isLong__",{value:!0,configurable:!1,writable:!1,enumerable:!1})}static fromBits(c,h,T){return new u(c,h,T)}static fromInt(c,h){let T,y,N;return h?(c>>>=0,(N=0<=c&&c<256)&&(y=p[c],y)?y:(T=u.fromBits(c,(c|0)<0?-1:0,!0),N&&(p[c]=T),T)):(c|=0,(N=-128<=c&&c<128)&&(y=l[c],y)?y:(T=u.fromBits(c,c<0?-1:0,!1),N&&(l[c]=T),T))}static fromNumber(c,h){if(isNaN(c))return h?u.UZERO:u.ZERO;if(h){if(c<0)return u.UZERO;if(c>=o)return u.MAX_UNSIGNED_VALUE}else{if(c<=-s)return u.MIN_VALUE;if(c+1>=s)return u.MAX_VALUE}return c<0?u.fromNumber(-c,h).neg():u.fromBits(c%f|0,c/f|0,h)}static fromBigInt(c,h){return u.fromString(c.toString(),h)}static fromString(c,h,T){if(c.length===0)throw Error("empty string");if(c==="NaN"||c==="Infinity"||c==="+Infinity"||c==="-Infinity")return u.ZERO;if(typeof h=="number"?(T=h,h=!1):h=!!h,T=T||10,T<2||36<T)throw RangeError("radix");let y;if((y=c.indexOf("-"))>0)throw Error("interior hyphen");if(y===0)return u.fromString(c.substring(1),h,T).neg();let N=u.fromNumber(Math.pow(T,8)),P=u.ZERO;for(let R=0;R<c.length;R+=8){let Y=Math.min(8,c.length-R),re=parseInt(c.substring(R,R+Y),T);if(Y<8){let W=u.fromNumber(Math.pow(T,Y));P=P.mul(W).add(u.fromNumber(re))}else P=P.mul(N),P=P.add(u.fromNumber(re))}return P.unsigned=h,P}static fromBytes(c,h,T){return T?u.fromBytesLE(c,h):u.fromBytesBE(c,h)}static fromBytesLE(c,h){return new u(c[0]|c[1]<<8|c[2]<<16|c[3]<<24,c[4]|c[5]<<8|c[6]<<16|c[7]<<24,h)}static fromBytesBE(c,h){return new u(c[4]<<24|c[5]<<16|c[6]<<8|c[7],c[0]<<24|c[1]<<16|c[2]<<8|c[3],h)}static isLong(c){return pt.isObjectLike(c)&&c.__isLong__===!0}static fromValue(c,h){return typeof c=="number"?u.fromNumber(c,h):typeof c=="string"?u.fromString(c,h):u.fromBits(c.low,c.high,typeof h=="boolean"?h:c.unsigned)}add(c){u.isLong(c)||(c=u.fromValue(c));let h=this.high>>>16,T=this.high&65535,y=this.low>>>16,N=this.low&65535,P=c.high>>>16,R=c.high&65535,Y=c.low>>>16,re=c.low&65535,W=0,O=0,te=0,L=0;return L+=N+re,te+=L>>>16,L&=65535,te+=y+Y,O+=te>>>16,te&=65535,O+=T+R,W+=O>>>16,O&=65535,W+=h+P,W&=65535,u.fromBits(te<<16|L,W<<16|O,this.unsigned)}and(c){return u.isLong(c)||(c=u.fromValue(c)),u.fromBits(this.low&c.low,this.high&c.high,this.unsigned)}compare(c){if(u.isLong(c)||(c=u.fromValue(c)),this.eq(c))return 0;let h=this.isNegative(),T=c.isNegative();return h&&!T?-1:!h&&T?1:this.unsigned?c.high>>>0>this.high>>>0||c.high===this.high&&c.low>>>0>this.low>>>0?-1:1:this.sub(c).isNegative()?-1:1}divide(c){if(u.isLong(c)||(c=u.fromValue(c)),c.isZero())throw Error("division by zero");if(r){if(!this.unsigned&&this.high===-2147483648&&c.low===-1&&c.high===-1)return this;let N=(this.unsigned?r.div_u:r.div_s)(this.low,this.high,c.low,c.high);return u.fromBits(N,r.get_high(),this.unsigned)}if(this.isZero())return this.unsigned?u.UZERO:u.ZERO;let h,T,y;if(this.unsigned){if(c.unsigned||(c=c.toUnsigned()),c.gt(this))return u.UZERO;if(c.gt(this.shru(1)))return u.UONE;y=u.UZERO}else{if(this.eq(u.MIN_VALUE))return c.eq(u.ONE)||c.eq(u.NEG_ONE)?u.MIN_VALUE:c.eq(u.MIN_VALUE)?u.ONE:(h=this.shr(1).div(c).shl(1),h.eq(u.ZERO)?c.isNegative()?u.ONE:u.NEG_ONE:(T=this.sub(c.mul(h)),y=h.add(T.div(c)),y));if(c.eq(u.MIN_VALUE))return this.unsigned?u.UZERO:u.ZERO;if(this.isNegative())return c.isNegative()?this.neg().div(c.neg()):this.neg().div(c).neg();if(c.isNegative())return this.div(c.neg()).neg();y=u.ZERO}for(T=this;T.gte(c);){h=Math.max(1,Math.floor(T.toNumber()/c.toNumber()));let N=Math.ceil(Math.log(h)/Math.LN2),P=N<=48?1:Math.pow(2,N-48),R=u.fromNumber(h),Y=R.mul(c);for(;Y.isNegative()||Y.gt(T);)h-=P,R=u.fromNumber(h,this.unsigned),Y=R.mul(c);R.isZero()&&(R=u.ONE),y=y.add(R),T=T.sub(Y)}return y}equals(c){return u.isLong(c)||(c=u.fromValue(c)),this.unsigned!==c.unsigned&&this.high>>>31==1&&c.high>>>31==1?!1:this.high===c.high&&this.low===c.low}getHighBits(){return this.high}getHighBitsUnsigned(){return this.high>>>0}getLowBits(){return this.low}getLowBitsUnsigned(){return this.low>>>0}getNumBitsAbs(){if(this.isNegative())return this.eq(u.MIN_VALUE)?64:this.neg().getNumBitsAbs();let c=this.high!==0?this.high:this.low,h;for(h=31;h>0&&(c&1<<h)==0;h--);return this.high!==0?h+33:h+1}greaterThan(c){return this.comp(c)>0}greaterThanOrEqual(c){return this.comp(c)>=0}isEven(){return(this.low&1)==0}isNegative(){return!this.unsigned&&this.high<0}isOdd(){return(this.low&1)==1}isPositive(){return this.unsigned||this.high>=0}isZero(){return this.high===0&&this.low===0}lessThan(c){return this.comp(c)<0}lessThanOrEqual(c){return this.comp(c)<=0}modulo(c){if(u.isLong(c)||(c=u.fromValue(c)),r){let h=(this.unsigned?r.rem_u:r.rem_s)(this.low,this.high,c.low,c.high);return u.fromBits(h,r.get_high(),this.unsigned)}return this.sub(this.div(c).mul(c))}multiply(c){if(this.isZero())return u.ZERO;if(u.isLong(c)||(c=u.fromValue(c)),r){let ne=r.mul(this.low,this.high,c.low,c.high);return u.fromBits(ne,r.get_high(),this.unsigned)}if(c.isZero())return u.ZERO;if(this.eq(u.MIN_VALUE))return c.isOdd()?u.MIN_VALUE:u.ZERO;if(c.eq(u.MIN_VALUE))return this.isOdd()?u.MIN_VALUE:u.ZERO;if(this.isNegative())return c.isNegative()?this.neg().mul(c.neg()):this.neg().mul(c).neg();if(c.isNegative())return this.mul(c.neg()).neg();if(this.lt(u.TWO_PWR_24)&&c.lt(u.TWO_PWR_24))return u.fromNumber(this.toNumber()*c.toNumber(),this.unsigned);let h=this.high>>>16,T=this.high&65535,y=this.low>>>16,N=this.low&65535,P=c.high>>>16,R=c.high&65535,Y=c.low>>>16,re=c.low&65535,W=0,O=0,te=0,L=0;return L+=N*re,te+=L>>>16,L&=65535,te+=y*re,O+=te>>>16,te&=65535,te+=N*Y,O+=te>>>16,te&=65535,O+=T*re,W+=O>>>16,O&=65535,O+=y*Y,W+=O>>>16,O&=65535,O+=N*R,W+=O>>>16,O&=65535,W+=h*re+T*Y+y*R+N*P,W&=65535,u.fromBits(te<<16|L,W<<16|O,this.unsigned)}negate(){return!this.unsigned&&this.eq(u.MIN_VALUE)?u.MIN_VALUE:this.not().add(u.ONE)}not(){return u.fromBits(~this.low,~this.high,this.unsigned)}notEquals(c){return!this.equals(c)}or(c){return u.isLong(c)||(c=u.fromValue(c)),u.fromBits(this.low|c.low,this.high|c.high,this.unsigned)}shiftLeft(c){return u.isLong(c)&&(c=c.toInt()),(c&=63)==0?this:c<32?u.fromBits(this.low<<c,this.high<<c|this.low>>>32-c,this.unsigned):u.fromBits(0,this.low<<c-32,this.unsigned)}shiftRight(c){return u.isLong(c)&&(c=c.toInt()),(c&=63)==0?this:c<32?u.fromBits(this.low>>>c|this.high<<32-c,this.high>>c,this.unsigned):u.fromBits(this.high>>c-32,this.high>=0?0:-1,this.unsigned)}shiftRightUnsigned(c){if(u.isLong(c)&&(c=c.toInt()),c&=63,c===0)return this;{let h=this.high;if(c<32){let T=this.low;return u.fromBits(T>>>c|h<<32-c,h>>>c,this.unsigned)}else return c===32?u.fromBits(h,0,this.unsigned):u.fromBits(h>>>c-32,0,this.unsigned)}}subtract(c){return u.isLong(c)||(c=u.fromValue(c)),this.add(c.neg())}toInt(){return this.unsigned?this.low>>>0:this.low}toNumber(){return this.unsigned?(this.high>>>0)*f+(this.low>>>0):this.high*f+(this.low>>>0)}toBigInt(){return BigInt(this.toString())}toBytes(c){return c?this.toBytesLE():this.toBytesBE()}toBytesLE(){let c=this.high,h=this.low;return[h&255,h>>>8&255,h>>>16&255,h>>>24,c&255,c>>>8&255,c>>>16&255,c>>>24]}toBytesBE(){let c=this.high,h=this.low;return[c>>>24,c>>>16&255,c>>>8&255,c&255,h>>>24,h>>>16&255,h>>>8&255,h&255]}toSigned(){return this.unsigned?u.fromBits(this.low,this.high,!1):this}toString(c){if(c=c||10,c<2||36<c)throw RangeError("radix");if(this.isZero())return"0";if(this.isNegative())if(this.eq(u.MIN_VALUE)){let N=u.fromNumber(c),P=this.div(N),R=P.mul(N).sub(this);return P.toString(c)+R.toInt().toString(c)}else return"-"+this.neg().toString(c);let h=u.fromNumber(Math.pow(c,6),this.unsigned),T=this,y="";for(;;){let N=T.div(h),R=(T.sub(N.mul(h)).toInt()>>>0).toString(c);if(T=N,T.isZero())return R+y;for(;R.length<6;)R="0"+R;y=""+R+y}}toUnsigned(){return this.unsigned?this:u.fromBits(this.low,this.high,!0)}xor(c){return u.isLong(c)||(c=u.fromValue(c)),u.fromBits(this.low^c.low,this.high^c.high,this.unsigned)}toExtendedJSON(c){return c&&c.relaxed?this.toNumber():{$numberLong:this.toString()}}static fromExtendedJSON(c,h){let T=u.fromString(c.$numberLong);return h&&h.relaxed?T.toNumber():T}}e.Long=u,u.TWO_PWR_24=u.fromInt(i),u.MAX_UNSIGNED_VALUE=u.fromBits(4294967295|0,4294967295|0,!0),u.ZERO=u.fromInt(0),u.UZERO=u.fromInt(0,!0),u.ONE=u.fromInt(1),u.UONE=u.fromInt(1,!0),u.NEG_ONE=u.fromInt(-1),u.MAX_VALUE=u.fromBits(4294967295|0,2147483647|0,!1),u.MIN_VALUE=u.fromBits(0,2147483648|0,!1),Object.defineProperty(u.prototype,"__isLong__",{value:!0}),Object.defineProperty(u.prototype,"_bsontype",{value:"Long"})});At(me);var Y4=me.Long,Po=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Decimal128=void 0;let r=/^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/,n=/^(\+|-)?(Infinity|inf)$/i,i=/^(\+|-)?NaN$/i,f=6111,o=-6176,s=6176,l=34,p=[124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),u=[248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),b=[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),c=/^([-+])?(\d+)?$/,h=31,T=16383,y=30,N=31;function P(te){return!isNaN(parseInt(te,10))}function R(te){let L=me.Long.fromNumber(1e3*1e3*1e3),ne=me.Long.fromNumber(0);if(!te.parts[0]&&!te.parts[1]&&!te.parts[2]&&!te.parts[3])return{quotient:te,rem:ne};for(let j=0;j<=3;j++)ne=ne.shiftLeft(32),ne=ne.add(new me.Long(te.parts[j],0)),te.parts[j]=ne.div(L).low,ne=ne.modulo(L);return{quotient:te,rem:ne}}function Y(te,L){if(!te&&!L)return{high:me.Long.fromNumber(0),low:me.Long.fromNumber(0)};let ne=te.shiftRightUnsigned(32),j=new me.Long(te.getLowBits(),0),g=L.shiftRightUnsigned(32),A=new me.Long(L.getLowBits(),0),w=ne.multiply(g),F=ne.multiply(A),C=j.multiply(g),M=j.multiply(A);return w=w.add(F.shiftRightUnsigned(32)),F=new me.Long(F.getLowBits(),0).add(C).add(M.shiftRightUnsigned(32)),w=w.add(F.shiftRightUnsigned(32)),M=F.shiftLeft(32).add(new me.Long(M.getLowBits(),0)),{high:w,low:M}}function re(te,L){let ne=te.high>>>0,j=L.high>>>0;if(ne<j)return!0;if(ne===j){let g=te.low>>>0,A=L.low>>>0;if(g<A)return!0}return!1}function W(te,L){throw new TypeError(`"${te}" is not a valid Decimal128 string - ${L}`)}class O{constructor(L){this.bytes=L}static fromString(L){let ne=!1,j=!1,g=!1,A=0,w=0,F=0,C=0,M=0,Q=[0],x=0,Se=0,ie=0,U=0,K=0,Ie=0,oe=new me.Long(0,0),We=new me.Long(0,0),pr=0,ae=0;if(L.length>=7e3)throw new TypeError(""+L+" not a valid Decimal128 string");let St=L.match(r),Qi=L.match(n),$i=L.match(i);if(!St&&!Qi&&!$i||L.length===0)throw new TypeError(""+L+" not a valid Decimal128 string");if(St){let it=St[2],v=St[4],m=St[5],d=St[6];v&&d===void 0&&W(L,"missing exponent power"),v&&it===void 0&&W(L,"missing exponent base"),v===void 0&&(m||d)&&W(L,"missing e before exponent")}if((L[ae]==="+"||L[ae]==="-")&&(ne=L[ae++]==="-"),!P(L[ae])&&L[ae]!=="."){if(L[ae]==="i"||L[ae]==="I")return new O(le.Buffer.from(ne?u:b));if(L[ae]==="N")return new O(le.Buffer.from(p))}for(;P(L[ae])||L[ae]===".";){if(L[ae]==="."){j&&W(L,"contains multiple periods"),j=!0,ae=ae+1;continue}x<34&&(L[ae]!=="0"||g)&&(g||(M=w),g=!0,Q[Se++]=parseInt(L[ae],10),x=x+1),g&&(F=F+1),j&&(C=C+1),w=w+1,ae=ae+1}if(j&&!w)throw new TypeError(""+L+" not a valid Decimal128 string");if(L[ae]==="e"||L[ae]==="E"){let it=L.substr(++ae).match(c);if(!it||!it[2])return new O(le.Buffer.from(p));K=parseInt(it[0],10),ae=ae+it[0].length}if(L[ae])return new O(le.Buffer.from(p));if(ie=0,!x)ie=0,U=0,Q[0]=0,F=1,x=1,A=0;else if(U=x-1,A=F,A!==1)for(;L[M+A-1]==="0";)A=A-1;for(K<=C&&C-K>1<<14?K=o:K=K-C;K>f;){if(U=U+1,U-ie>l){if(Q.join("").match(/^0+$/)){K=f;break}W(L,"overflow")}K=K-1}for(;K<o||x<F;){if(U===0&&A<x){K=o,A=0;break}if(x<F?F=F-1:U=U-1,K<f)K=K+1;else{if(Q.join("").match(/^0+$/)){K=f;break}W(L,"overflow")}}if(U-ie+1<A){let it=w;j&&(M=M+1,it=it+1),ne&&(M=M+1,it=it+1);let v=parseInt(L[M+U+1],10),m=0;if(v>=5&&(m=1,v===5)){for(m=Q[U]%2==1?1:0,Ie=M+U+2;Ie<it;Ie++)if(parseInt(L[Ie],10)){m=1;break}}if(m){let d=U;for(;d>=0;d--)if(++Q[d]>9&&(Q[d]=0,d===0))if(K<f)K=K+1,Q[d]=1;else return new O(le.Buffer.from(ne?u:b))}}if(oe=me.Long.fromNumber(0),We=me.Long.fromNumber(0),A===0)oe=me.Long.fromNumber(0),We=me.Long.fromNumber(0);else if(U-ie<17){let it=ie;for(We=me.Long.fromNumber(Q[it++]),oe=new me.Long(0,0);it<=U;it++)We=We.multiply(me.Long.fromNumber(10)),We=We.add(me.Long.fromNumber(Q[it]))}else{let it=ie;for(oe=me.Long.fromNumber(Q[it++]);it<=U-17;it++)oe=oe.multiply(me.Long.fromNumber(10)),oe=oe.add(me.Long.fromNumber(Q[it]));for(We=me.Long.fromNumber(Q[it++]);it<=U;it++)We=We.multiply(me.Long.fromNumber(10)),We=We.add(me.Long.fromNumber(Q[it]))}let bt=Y(oe,me.Long.fromString("100000000000000000"));bt.low=bt.low.add(We),re(bt.low,We)&&(bt.high=bt.high.add(me.Long.fromNumber(1))),pr=K+s;let xe={low:me.Long.fromNumber(0),high:me.Long.fromNumber(0)};bt.high.shiftRightUnsigned(49).and(me.Long.fromNumber(1)).equals(me.Long.fromNumber(1))?(xe.high=xe.high.or(me.Long.fromNumber(3).shiftLeft(61)),xe.high=xe.high.or(me.Long.fromNumber(pr).and(me.Long.fromNumber(16383).shiftLeft(47))),xe.high=xe.high.or(bt.high.and(me.Long.fromNumber(140737488355327)))):(xe.high=xe.high.or(me.Long.fromNumber(pr&16383).shiftLeft(49)),xe.high=xe.high.or(bt.high.and(me.Long.fromNumber(562949953421311)))),xe.low=bt.low,ne&&(xe.high=xe.high.or(me.Long.fromString("9223372036854775808")));let xt=le.Buffer.alloc(16);return ae=0,xt[ae++]=xe.low.low&255,xt[ae++]=xe.low.low>>8&255,xt[ae++]=xe.low.low>>16&255,xt[ae++]=xe.low.low>>24&255,xt[ae++]=xe.low.high&255,xt[ae++]=xe.low.high>>8&255,xt[ae++]=xe.low.high>>16&255,xt[ae++]=xe.low.high>>24&255,xt[ae++]=xe.high.low&255,xt[ae++]=xe.high.low>>8&255,xt[ae++]=xe.high.low>>16&255,xt[ae++]=xe.high.low>>24&255,xt[ae++]=xe.high.high&255,xt[ae++]=xe.high.high>>8&255,xt[ae++]=xe.high.high>>16&255,xt[ae++]=xe.high.high>>24&255,new O(xt)}toString(){let L,ne=0,j=new Array(36);for(let ae=0;ae<j.length;ae++)j[ae]=0;let g=0,A=!1,w,F={parts:[0,0,0,0]},C,M,Q=[];g=0;let x=this.bytes,Se=x[g++]|x[g++]<<8|x[g++]<<16|x[g++]<<24,ie=x[g++]|x[g++]<<8|x[g++]<<16|x[g++]<<24,U=x[g++]|x[g++]<<8|x[g++]<<16|x[g++]<<24,K=x[g++]|x[g++]<<8|x[g++]<<16|x[g++]<<24;g=0,{low:new me.Long(Se,ie),high:new me.Long(U,K)}.high.lessThan(me.Long.ZERO)&&Q.push("-");let oe=K>>26&h;if(oe>>3==3){if(oe===y)return Q.join("")+"Infinity";if(oe===N)return"NaN";L=K>>15&T,w=8+(K>>14&1)}else w=K>>14&7,L=K>>17&T;let We=L-s;if(F.parts[0]=(K&16383)+((w&15)<<14),F.parts[1]=U,F.parts[2]=ie,F.parts[3]=Se,F.parts[0]===0&&F.parts[1]===0&&F.parts[2]===0&&F.parts[3]===0)A=!0;else for(M=3;M>=0;M--){let ae=0,St=R(F);if(F=St.quotient,ae=St.rem.low,!!ae)for(C=8;C>=0;C--)j[M*9+C]=ae%10,ae=Math.floor(ae/10)}if(A)ne=1,j[g]=0;else for(ne=36;!j[g];)ne=ne-1,g=g+1;let pr=ne-1+We;if(pr>=34||pr<=-7||We>0){if(ne>34)return Q.push(`${0}`),We>0?Q.push("E+"+We):We<0&&Q.push("E"+We),Q.join("");Q.push(`${j[g++]}`),ne=ne-1,ne&&Q.push(".");for(let ae=0;ae<ne;ae++)Q.push(`${j[g++]}`);Q.push("E"),pr>0?Q.push("+"+pr):Q.push(`${pr}`)}else if(We>=0)for(let ae=0;ae<ne;ae++)Q.push(`${j[g++]}`);else{let ae=ne+We;if(ae>0)for(let St=0;St<ae;St++)Q.push(`${j[g++]}`);else Q.push("0");for(Q.push(".");ae++<0;)Q.push("0");for(let St=0;St<ne-Math.max(ae-1,0);St++)Q.push(`${j[g++]}`)}return Q.join("")}toJSON(){return{$numberDecimal:this.toString()}}toExtendedJSON(){return{$numberDecimal:this.toString()}}static fromExtendedJSON(L){return O.fromString(L.$numberDecimal)}}e.Decimal128=O,Object.defineProperty(O.prototype,"_bsontype",{value:"Decimal128"})});At(Po);var K4=Po.Decimal128,no=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Double=void 0;class r{constructor(i){i instanceof Number&&(i=i.valueOf()),this.value=+i}valueOf(){return this.value}toJSON(){return this.value}toExtendedJSON(i){if(i&&(i.legacy||i.relaxed&&isFinite(this.value)))return this.value;if(Object.is(Math.sign(this.value),-0))return{$numberDouble:`-${this.value.toFixed(1)}`};let f;return Number.isInteger(this.value)?(f=this.value.toFixed(1),f.length>=13&&(f=this.value.toExponential(13).toUpperCase())):f=this.value.toString(),{$numberDouble:f}}static fromExtendedJSON(i,f){let o=parseFloat(i.$numberDouble);return f&&f.relaxed?o:new r(o)}}e.Double=r,Object.defineProperty(r.prototype,"_bsontype",{value:"Double"})});At(no);var G4=no.Double,io=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Int32=void 0;class r{constructor(i){i instanceof Number&&(i=i.valueOf()),this.value=+i}valueOf(){return this.value}toJSON(){return this.value}toExtendedJSON(i){return i&&(i.relaxed||i.legacy)?this.value:{$numberInt:this.value.toString()}}static fromExtendedJSON(i,f){return f&&f.relaxed?parseInt(i.$numberInt,10):new r(i.$numberInt)}}e.Int32=r,Object.defineProperty(r.prototype,"_bsontype",{value:"Int32"})});At(io);var J4=io.Int32,kp=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Map=void 0;let r;e.Map=r;let n=function(o){return o&&o.Math==Math&&o};function i(){return n(typeof globalThis=="object"&&globalThis)||n(typeof window=="object"&&window)||n(typeof self=="object"&&self)||n(typeof hp=="object"&&hp)||Function("return this")()}let f=i();Object.prototype.hasOwnProperty.call(f,"Map")?e.Map=r=f.Map:e.Map=r=class{constructor(s=[]){this._keys=[],this._values={};for(let l=0;l<s.length;l++){if(s[l]==null)continue;let p=s[l],u=p[0],b=p[1];this._keys.push(u),this._values[u]={v:b,i:this._keys.length-1}}}clear(){this._keys=[],this._values={}}delete(s){let l=this._values[s];return l==null?!1:(delete this._values[s],this._keys.splice(l.i,1),!0)}entries(){let s=0;return{next:()=>{let l=this._keys[s++];return{value:l!==void 0?[l,this._values[l].v]:void 0,done:l===void 0}}}}forEach(s,l){l=l||this;for(let p=0;p<this._keys.length;p++){let u=this._keys[p];s.call(l,this._values[u].v,u,l)}}get(s){return this._values[s]?this._values[s].v:void 0}has(s){return this._values[s]!=null}keys(){let s=0;return{next:()=>{let l=this._keys[s++];return{value:l!==void 0?l:void 0,done:l===void 0}}}}set(s,l){return this._values[s]?(this._values[s].v=l,this):(this._keys.push(s),this._values[s]={v:l,i:this._keys.length-1},this)}values(){let s=0;return{next:()=>{let l=this._keys[s++];return{value:l!==void 0?this._values[l].v:void 0,done:l===void 0}}}}get size(){return this._keys.length}}});At(kp);var X4=kp.Map,Mo=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.MaxKey=void 0;class r{toExtendedJSON(){return{$maxKey:1}}static fromExtendedJSON(){return new r}}e.MaxKey=r,Object.defineProperty(r.prototype,"_bsontype",{value:"MaxKey"})});At(Mo);var Q4=Mo.MaxKey,Uo=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.MinKey=void 0;class r{toExtendedJSON(){return{$minKey:1}}static fromExtendedJSON(){return new r}}e.MinKey=r,Object.defineProperty(r.prototype,"_bsontype",{value:"MinKey"})});At(Uo);var $4=Uo.MinKey,Ei=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.ObjectId=void 0;let r=pt.randomBytes(5),n=new RegExp("^[0-9a-fA-F]{24}$"),i=[];for(let u=0;u<256;u++)i[u]=(u<=15?"0":"")+u.toString(16);let f=[],o=0;for(;o<10;)f[48+o]=o++;for(;o<16;)f[65-10+o]=f[97-10+o]=o++;let s=Symbol("id");class l{constructor(b){if(b instanceof l&&(this[s]=b.id,this.__id=b.__id),typeof b=="object"&&b&&"id"in b&&("toHexString"in b&&typeof b.toHexString=="function"?this[s]=le.Buffer.from(b.toHexString(),"hex"):this[s]=typeof b.id=="string"?le.Buffer.from(b.id):b.id),(b==null||typeof b=="number")&&(this[s]=l.generate(typeof b=="number"?b:void 0),l.cacheHexString&&(this.__id=this.id.toString("hex"))),ArrayBuffer.isView(b)&&b.byteLength===12&&(this[s]=uf.ensureBuffer(b)),typeof b=="string")if(b.length===12){let c=le.Buffer.from(b);c.byteLength===12&&(this[s]=c)}else if(b.length===24&&n.test(b))this[s]=le.Buffer.from(b,"hex");else throw new TypeError("Argument passed in must be a Buffer or string of 12 bytes or a string of 24 hex characters");l.cacheHexString&&(this.__id=this.id.toString("hex"))}get id(){return this[s]}set id(b){this[s]=b,l.cacheHexString&&(this.__id=b.toString("hex"))}get generationTime(){return this.id.readInt32BE(0)}set generationTime(b){this.id.writeUInt32BE(b,0)}toHexString(){if(l.cacheHexString&&this.__id)return this.__id;let b=this.id.toString("hex");return l.cacheHexString&&!this.__id&&(this.__id=b),b}static getInc(){return l.index=(l.index+1)%16777215}static generate(b){typeof b!="number"&&(b=~~(Date.now()/1e3));let c=l.getInc(),h=le.Buffer.alloc(12);return h.writeUInt32BE(b,0),h[4]=r[0],h[5]=r[1],h[6]=r[2],h[7]=r[3],h[8]=r[4],h[11]=c&255,h[10]=c>>8&255,h[9]=c>>16&255,h}toString(b){return b?this.id.toString(b):this.toHexString()}toJSON(){return this.toHexString()}equals(b){return b==null?!1:b instanceof l?this.toString()===b.toString():typeof b=="string"&&l.isValid(b)&&b.length===12&&this.id instanceof le.Buffer?b===this.id.toString("binary"):typeof b=="string"&&l.isValid(b)&&b.length===24?b.toLowerCase()===this.toHexString():typeof b=="string"&&l.isValid(b)&&b.length===12?le.Buffer.from(b).equals(this.id):typeof b=="object"&&"toHexString"in b&&typeof b.toHexString=="function"?b.toHexString()===this.toHexString():!1}getTimestamp(){let b=new Date,c=this.id.readUInt32BE(0);return b.setTime(Math.floor(c)*1e3),b}static createPk(){return new l}static createFromTime(b){let c=le.Buffer.from([0,0,0,0,0,0,0,0,0,0,0,0]);return c.writeUInt32BE(b,0),new l(c)}static createFromHexString(b){if(typeof b=="undefined"||b!=null&&b.length!==24)throw new TypeError("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");return new l(le.Buffer.from(b,"hex"))}static isValid(b){return b==null?!1:typeof b=="number"?!0:typeof b=="string"?b.length===12||b.length===24&&n.test(b):b instanceof l||b instanceof le.Buffer&&b.length===12?!0:typeof b=="object"&&"toHexString"in b&&typeof b.toHexString=="function"?typeof b.id=="string"?b.id.length===12:b.toHexString().length===24&&n.test(b.id.toString("hex")):!1}toExtendedJSON(){return this.toHexString?{$oid:this.toHexString()}:{$oid:this.toString("hex")}}static fromExtendedJSON(b){return new l(b.$oid)}}e.ObjectId=l,l.index=~~(Math.random()*16777215),Object.defineProperty(l.prototype,"generate",{value:pt.deprecate(u=>l.generate(u),"Please use the static `ObjectId.generate(time)` instead")}),Object.defineProperty(l.prototype,"getInc",{value:pt.deprecate(()=>l.getInc(),"Please use the static `ObjectId.getInc()` instead")}),Object.defineProperty(l.prototype,"get_inc",{value:pt.deprecate(()=>l.getInc(),"Please use the static `ObjectId.getInc()` instead")}),Object.defineProperty(l,"get_inc",{value:pt.deprecate(()=>l.getInc(),"Please use the static `ObjectId.getInc()` instead")});let p=Symbol.for("nodejs.util.inspect.custom");Object.defineProperty(l.prototype,p,l.prototype.toString),Object.defineProperty(l.prototype,"inspect",l.prototype.toString),Object.defineProperty(l.prototype,"_bsontype",{value:"ObjectID"})});At(Ei);var eO=Ei.ObjectId,V=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.BSON_BINARY_SUBTYPE_USER_DEFINED=e.BSON_BINARY_SUBTYPE_MD5=e.BSON_BINARY_SUBTYPE_UUID_NEW=e.BSON_BINARY_SUBTYPE_UUID=e.BSON_BINARY_SUBTYPE_BYTE_ARRAY=e.BSON_BINARY_SUBTYPE_FUNCTION=e.BSON_BINARY_SUBTYPE_DEFAULT=e.BSON_DATA_MAX_KEY=e.BSON_DATA_MIN_KEY=e.BSON_DATA_DECIMAL128=e.BSON_DATA_LONG=e.BSON_DATA_TIMESTAMP=e.BSON_DATA_INT=e.BSON_DATA_CODE_W_SCOPE=e.BSON_DATA_SYMBOL=e.BSON_DATA_CODE=e.BSON_DATA_DBPOINTER=e.BSON_DATA_REGEXP=e.BSON_DATA_NULL=e.BSON_DATA_DATE=e.BSON_DATA_BOOLEAN=e.BSON_DATA_OID=e.BSON_DATA_UNDEFINED=e.BSON_DATA_BINARY=e.BSON_DATA_ARRAY=e.BSON_DATA_OBJECT=e.BSON_DATA_STRING=e.BSON_DATA_NUMBER=e.JS_INT_MIN=e.JS_INT_MAX=e.BSON_INT64_MIN=e.BSON_INT64_MAX=e.BSON_INT32_MIN=e.BSON_INT32_MAX=void 0,e.BSON_INT32_MAX=2147483647,e.BSON_INT32_MIN=-2147483648,e.BSON_INT64_MAX=Math.pow(2,63)-1,e.BSON_INT64_MIN=-Math.pow(2,63),e.JS_INT_MAX=Math.pow(2,53),e.JS_INT_MIN=-Math.pow(2,53),e.BSON_DATA_NUMBER=1,e.BSON_DATA_STRING=2,e.BSON_DATA_OBJECT=3,e.BSON_DATA_ARRAY=4,e.BSON_DATA_BINARY=5,e.BSON_DATA_UNDEFINED=6,e.BSON_DATA_OID=7,e.BSON_DATA_BOOLEAN=8,e.BSON_DATA_DATE=9,e.BSON_DATA_NULL=10,e.BSON_DATA_REGEXP=11,e.BSON_DATA_DBPOINTER=12,e.BSON_DATA_CODE=13,e.BSON_DATA_SYMBOL=14,e.BSON_DATA_CODE_W_SCOPE=15,e.BSON_DATA_INT=16,e.BSON_DATA_TIMESTAMP=17,e.BSON_DATA_LONG=18,e.BSON_DATA_DECIMAL128=19,e.BSON_DATA_MIN_KEY=255,e.BSON_DATA_MAX_KEY=127,e.BSON_BINARY_SUBTYPE_DEFAULT=0,e.BSON_BINARY_SUBTYPE_FUNCTION=1,e.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2,e.BSON_BINARY_SUBTYPE_UUID=3,e.BSON_BINARY_SUBTYPE_UUID_NEW=4,e.BSON_BINARY_SUBTYPE_MD5=5,e.BSON_BINARY_SUBTYPE_USER_DEFINED=128});At(V);var tO=V.BSON_BINARY_SUBTYPE_USER_DEFINED,rO=V.BSON_BINARY_SUBTYPE_MD5,nO=V.BSON_BINARY_SUBTYPE_UUID_NEW,iO=V.BSON_BINARY_SUBTYPE_UUID,fO=V.BSON_BINARY_SUBTYPE_BYTE_ARRAY,oO=V.BSON_BINARY_SUBTYPE_FUNCTION,sO=V.BSON_BINARY_SUBTYPE_DEFAULT,lO=V.BSON_DATA_MAX_KEY,aO=V.BSON_DATA_MIN_KEY,pO=V.BSON_DATA_DECIMAL128,uO=V.BSON_DATA_LONG,cO=V.BSON_DATA_TIMESTAMP,mO=V.BSON_DATA_INT,dO=V.BSON_DATA_CODE_W_SCOPE,wO=V.BSON_DATA_SYMBOL,hO=V.BSON_DATA_CODE,bO=V.BSON_DATA_DBPOINTER,gO=V.BSON_DATA_REGEXP,jO=V.BSON_DATA_NULL,yO=V.BSON_DATA_DATE,vO=V.BSON_DATA_BOOLEAN,_O=V.BSON_DATA_OID,qO=V.BSON_DATA_UNDEFINED,kO=V.BSON_DATA_BINARY,TO=V.BSON_DATA_ARRAY,BO=V.BSON_DATA_OBJECT,IO=V.BSON_DATA_STRING,SO=V.BSON_DATA_NUMBER,xO=V.JS_INT_MIN,EO=V.JS_INT_MAX,AO=V.BSON_INT64_MIN,OO=V.BSON_INT64_MAX,NO=V.BSON_INT32_MIN,HO=V.BSON_INT32_MAX,Hm=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.calculateObjectSize=void 0;function r(i,f,o){let s=4+1;if(Array.isArray(i))for(let l=0;l<i.length;l++)s+=n(l.toString(),i[l],f,!0,o);else{i.toBSON&&(i=i.toBSON());for(let l in i)s+=n(l,i[l],f,!1,o)}return s}e.calculateObjectSize=r;function n(i,f,o=!1,s=!1,l=!1){switch(f&&f.toBSON&&(f=f.toBSON()),typeof f){case"string":return 1+le.Buffer.byteLength(i,"utf8")+1+4+le.Buffer.byteLength(f,"utf8")+1;case"number":return Math.floor(f)===f&&f>=V.JS_INT_MIN&&f<=V.JS_INT_MAX&&f>=V.BSON_INT32_MIN&&f<=V.BSON_INT32_MAX?(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(4+1):(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(8+1);case"undefined":return s||!l?(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1:0;case"boolean":return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(1+1);case"object":if(f==null||f._bsontype==="MinKey"||f._bsontype==="MaxKey")return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1;if(f._bsontype==="ObjectId"||f._bsontype==="ObjectID")return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(12+1);if(f instanceof Date||pt.isDate(f))return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(8+1);if(ArrayBuffer.isView(f)||f instanceof ArrayBuffer)return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(1+4+1)+f.byteLength;if(f._bsontype==="Long"||f._bsontype==="Double"||f._bsontype==="Timestamp")return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(8+1);if(f._bsontype==="Decimal128")return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(16+1);if(f._bsontype==="Code")return f.scope!=null&&Object.keys(f.scope).length>0?(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1+4+4+le.Buffer.byteLength(f.code.toString(),"utf8")+1+r(f.scope,o,l):(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1+4+le.Buffer.byteLength(f.code.toString(),"utf8")+1;if(f._bsontype==="Binary")return f.sub_type===Qr.Binary.SUBTYPE_BYTE_ARRAY?(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(f.position+1+4+1+4):(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+(f.position+1+4+1);if(f._bsontype==="Symbol")return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+le.Buffer.byteLength(f.value,"utf8")+4+1+1;if(f._bsontype==="DBRef"){let p=Object.assign({$ref:f.collection,$id:f.oid},f.fields);return f.db!=null&&(p.$db=f.db),(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1+r(p,o,l)}else return f instanceof RegExp||Object.prototype.toString.call(f)==="[object RegExp]"?(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1+le.Buffer.byteLength(f.source,"utf8")+1+(f.global?1:0)+(f.ignoreCase?1:0)+(f.multiline?1:0)+1:f._bsontype==="BSONRegExp"?(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1+le.Buffer.byteLength(f.pattern,"utf8")+1+le.Buffer.byteLength(f.options,"utf8")+1:(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+r(f,o,l)+1;case"function":if(f instanceof RegExp||Object.prototype.toString.call(f)==="[object RegExp]"||String.call(f)==="[object RegExp]")return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1+le.Buffer.byteLength(f.source,"utf8")+1+(f.global?1:0)+(f.ignoreCase?1:0)+(f.multiline?1:0)+1;if(o&&f.scope!=null&&Object.keys(f.scope).length>0)return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1+4+4+le.Buffer.byteLength(pt.normalizedFunctionString(f),"utf8")+1+r(f.scope,o,l);if(o)return(i!=null?le.Buffer.byteLength(i,"utf8")+1:0)+1+4+le.Buffer.byteLength(pt.normalizedFunctionString(f),"utf8")+1}return 0}});At(Hm);var RO=Hm.calculateObjectSize,mf=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.BSONRegExp=void 0;function r(i){return i.split("").sort().join("")}class n{constructor(f,o){this.pattern=f,this.options=o??"",r(this.options);for(let s=0;s<this.options.length;s++)if(!(this.options[s]==="i"||this.options[s]==="m"||this.options[s]==="x"||this.options[s]==="l"||this.options[s]==="s"||this.options[s]==="u"))throw new Error(`The regular expression option [${this.options[s]}] is not supported`)}static parseOptions(f){return f?f.split("").sort().join(""):""}toExtendedJSON(f){return f=f||{},f.legacy?{$regex:this.pattern,$options:this.options}:{$regularExpression:{pattern:this.pattern,options:this.options}}}static fromExtendedJSON(f){if("$regex"in f)if(typeof f.$regex!="string"){if(f.$regex._bsontype==="BSONRegExp")return f}else return new n(f.$regex,n.parseOptions(f.$options));if("$regularExpression"in f)return new n(f.$regularExpression.pattern,n.parseOptions(f.$regularExpression.options));throw new TypeError(`Unexpected BSONRegExp EJSON object form: ${JSON.stringify(f)}`)}}e.BSONRegExp=n,Object.defineProperty(n.prototype,"_bsontype",{value:"BSONRegExp"})});At(mf);var DO=mf.BSONRegExp,Lo=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.BSONSymbol=void 0;class r{constructor(i){this.value=i}valueOf(){return this.value}toString(){return this.value}inspect(){return this.value}toJSON(){return this.value}toExtendedJSON(){return{$symbol:this.value}}static fromExtendedJSON(i){return new r(i.$symbol)}}e.BSONSymbol=r,Object.defineProperty(r.prototype,"_bsontype",{value:"Symbol"})});At(Lo);var zO=Lo.BSONSymbol,df=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Timestamp=e.LongWithoutOverridesClass=void 0,e.LongWithoutOverridesClass=me.Long;class r extends e.LongWithoutOverridesClass{constructor(i,f){me.Long.isLong(i)?super(i.low,i.high,!0):super(i,f,!0),Object.defineProperty(this,"_bsontype",{value:"Timestamp",writable:!1,configurable:!1,enumerable:!1})}toJSON(){return{$timestamp:this.toString()}}static fromInt(i){return new r(me.Long.fromInt(i,!0))}static fromNumber(i){return new r(me.Long.fromNumber(i,!0))}static fromBits(i,f){return new r(i,f)}static fromString(i,f){return new r(me.Long.fromString(i,!0,f))}toExtendedJSON(){return{$timestamp:{t:this.high>>>0,i:this.low>>>0}}}static fromExtendedJSON(i){return new r(i.$timestamp.i,i.$timestamp.t)}}e.Timestamp=r,r.MAX_VALUE=me.Long.MAX_UNSIGNED_VALUE});At(df);var FO=df.Timestamp,PO=df.LongWithoutOverridesClass,Tp=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.validateUtf8=void 0;let r=128,n=192,i=224,f=240,o=248,s=192,l=224,p=240,u=128;function b(c,h,T){let y=0;for(let N=h;N<T;N+=1){let P=c[N];if(y){if((P&n)!==u)return!1;y-=1}else if(P&r)if((P&i)===s)y=1;else if((P&f)===l)y=2;else if((P&o)===p)y=3;else return!1}return!y}e.validateUtf8=b});At(Tp);var MO=Tp.validateUtf8,Bp=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.deserialize=void 0;let r=me.Long.fromNumber(V.JS_INT_MAX),n=me.Long.fromNumber(V.JS_INT_MIN),i={};function f(l,p,u){p=p??{};let b=p&&p.index?p.index:0,c=l[b]|l[b+1]<<8|l[b+2]<<16|l[b+3]<<24;if(c<5)throw new Error(`bson size must be >= 5, is ${c}`);if(p.allowObjectSmallerThanBufferSize&&l.length<c)throw new Error(`buffer length ${l.length} must be >= bson size ${c}`);if(!p.allowObjectSmallerThanBufferSize&&l.length!==c)throw new Error(`buffer length ${l.length} must === bson size ${c}`);if(c+b>l.byteLength)throw new Error(`(bson size ${c} + options.index ${b} must be <= buffer length ${l.byteLength})`);if(l[b+c-1]!==0)throw new Error("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00");return o(l,b,p,u)}e.deserialize=f;function o(l,p,u,b=!1){let c=u.evalFunctions==null?!1:u.evalFunctions,h=u.cacheFunctions==null?!1:u.cacheFunctions,T=u.fieldsAsRaw==null?null:u.fieldsAsRaw,y=u.raw==null?!1:u.raw,N=typeof u.bsonRegExp=="boolean"?u.bsonRegExp:!1,P=u.promoteBuffers==null?!1:u.promoteBuffers,R=u.promoteLongs==null?!0:u.promoteLongs,Y=u.promoteValues==null?!0:u.promoteValues,re=p;if(l.length<5)throw new Error("corrupt bson message < 5 bytes long");let W=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;if(W<5||W>l.length)throw new Error("corrupt bson message");let O=b?[]:{},te=0,L=!1;for(;!L;){let g=l[p++];if(g===0)break;let A=p;for(;l[A]!==0&&A<l.length;)A++;if(A>=l.byteLength)throw new Error("Bad BSON Document: illegal CString");let w=b?te++:l.toString("utf8",p,A);if(p=A+1,g===V.BSON_DATA_STRING){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;if(F<=0||F>l.length-p||l[p+F-1]!==0)throw new Error("bad string length in bson");if(!Tp.validateUtf8(l,p,p+F-1))throw new Error("Invalid UTF-8 string in BSON document");let C=l.toString("utf8",p,p+F-1);O[w]=C,p=p+F}else if(g===V.BSON_DATA_OID){let F=le.Buffer.alloc(12);l.copy(F,0,p,p+12),O[w]=new Ei.ObjectId(F),p=p+12}else if(g===V.BSON_DATA_INT&&Y===!1)O[w]=new io.Int32(l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24);else if(g===V.BSON_DATA_INT)O[w]=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;else if(g===V.BSON_DATA_NUMBER&&Y===!1)O[w]=new no.Double(l.readDoubleLE(p)),p=p+8;else if(g===V.BSON_DATA_NUMBER)O[w]=l.readDoubleLE(p),p=p+8;else if(g===V.BSON_DATA_DATE){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24,C=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;O[w]=new Date(new me.Long(F,C).toNumber())}else if(g===V.BSON_DATA_BOOLEAN){if(l[p]!==0&&l[p]!==1)throw new Error("illegal boolean type value");O[w]=l[p++]===1}else if(g===V.BSON_DATA_OBJECT){let F=p,C=l[p]|l[p+1]<<8|l[p+2]<<16|l[p+3]<<24;if(C<=0||C>l.length-p)throw new Error("bad embedded document length in bson");y?O[w]=l.slice(p,p+C):O[w]=o(l,F,u,!1),p=p+C}else if(g===V.BSON_DATA_ARRAY){let F=p,C=l[p]|l[p+1]<<8|l[p+2]<<16|l[p+3]<<24,M=u,Q=p+C;if(T&&T[w]){M={};for(let x in u)M[x]=u[x];M.raw=!0}if(O[w]=o(l,F,M,!0),p=p+C,l[p-1]!==0)throw new Error("invalid array terminator byte");if(p!==Q)throw new Error("corrupted array bson")}else if(g===V.BSON_DATA_UNDEFINED)O[w]=void 0;else if(g===V.BSON_DATA_NULL)O[w]=null;else if(g===V.BSON_DATA_LONG){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24,C=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24,M=new me.Long(F,C);R&&Y===!0?O[w]=M.lessThanOrEqual(r)&&M.greaterThanOrEqual(n)?M.toNumber():M:O[w]=M}else if(g===V.BSON_DATA_DECIMAL128){let F=le.Buffer.alloc(16);l.copy(F,0,p,p+16),p=p+16;let C=new Po.Decimal128(F);"toObject"in C&&typeof C.toObject=="function"?O[w]=C.toObject():O[w]=C}else if(g===V.BSON_DATA_BINARY){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24,C=F,M=l[p++];if(F<0)throw new Error("Negative binary type element size found");if(F>l.byteLength)throw new Error("Binary type size larger than document size");if(l.slice!=null){if(M===Qr.Binary.SUBTYPE_BYTE_ARRAY){if(F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24,F<0)throw new Error("Negative binary type element size found for subtype 0x02");if(F>C-4)throw new Error("Binary type with subtype 0x02 contains too long binary size");if(F<C-4)throw new Error("Binary type with subtype 0x02 contains too short binary size")}P&&Y?O[w]=l.slice(p,p+F):O[w]=new Qr.Binary(l.slice(p,p+F),M)}else{let Q=le.Buffer.alloc(F);if(M===Qr.Binary.SUBTYPE_BYTE_ARRAY){if(F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24,F<0)throw new Error("Negative binary type element size found for subtype 0x02");if(F>C-4)throw new Error("Binary type with subtype 0x02 contains too long binary size");if(F<C-4)throw new Error("Binary type with subtype 0x02 contains too short binary size")}for(A=0;A<F;A++)Q[A]=l[p+A];P&&Y?O[w]=Q:O[w]=new Qr.Binary(Q,M)}p=p+F}else if(g===V.BSON_DATA_REGEXP&&N===!1){for(A=p;l[A]!==0&&A<l.length;)A++;if(A>=l.length)throw new Error("Bad BSON Document: illegal CString");let F=l.toString("utf8",p,A);for(p=A+1,A=p;l[A]!==0&&A<l.length;)A++;if(A>=l.length)throw new Error("Bad BSON Document: illegal CString");let C=l.toString("utf8",p,A);p=A+1;let M=new Array(C.length);for(A=0;A<C.length;A++)switch(C[A]){case"m":M[A]="m";break;case"s":M[A]="g";break;case"i":M[A]="i";break}O[w]=new RegExp(F,M.join(""))}else if(g===V.BSON_DATA_REGEXP&&N===!0){for(A=p;l[A]!==0&&A<l.length;)A++;if(A>=l.length)throw new Error("Bad BSON Document: illegal CString");let F=l.toString("utf8",p,A);for(p=A+1,A=p;l[A]!==0&&A<l.length;)A++;if(A>=l.length)throw new Error("Bad BSON Document: illegal CString");let C=l.toString("utf8",p,A);p=A+1,O[w]=new mf.BSONRegExp(F,C)}else if(g===V.BSON_DATA_SYMBOL){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;if(F<=0||F>l.length-p||l[p+F-1]!==0)throw new Error("bad string length in bson");let C=l.toString("utf8",p,p+F-1);O[w]=Y?C:new Lo.BSONSymbol(C),p=p+F}else if(g===V.BSON_DATA_TIMESTAMP){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24,C=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;O[w]=new df.Timestamp(F,C)}else if(g===V.BSON_DATA_MIN_KEY)O[w]=new Uo.MinKey;else if(g===V.BSON_DATA_MAX_KEY)O[w]=new Mo.MaxKey;else if(g===V.BSON_DATA_CODE){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;if(F<=0||F>l.length-p||l[p+F-1]!==0)throw new Error("bad string length in bson");let C=l.toString("utf8",p,p+F-1);c?h?O[w]=s(C,i,O):O[w]=s(C):O[w]=new cf.Code(C),p=p+F}else if(g===V.BSON_DATA_CODE_W_SCOPE){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;if(F<4+4+4+1)throw new Error("code_w_scope total size shorter minimum expected length");let C=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;if(C<=0||C>l.length-p||l[p+C-1]!==0)throw new Error("bad string length in bson");let M=l.toString("utf8",p,p+C-1);p=p+C;let Q=p,x=l[p]|l[p+1]<<8|l[p+2]<<16|l[p+3]<<24,Se=o(l,Q,u,!1);if(p=p+x,F<4+4+x+C)throw new Error("code_w_scope total size is too short, truncating scope");if(F>4+4+x+C)throw new Error("code_w_scope total size is too long, clips outer document");c?(h?O[w]=s(M,i,O):O[w]=s(M),O[w].scope=Se):O[w]=new cf.Code(M,Se)}else if(g===V.BSON_DATA_DBPOINTER){let F=l[p++]|l[p++]<<8|l[p++]<<16|l[p++]<<24;if(F<=0||F>l.length-p||l[p+F-1]!==0)throw new Error("bad string length in bson");if(!Tp.validateUtf8(l,p,p+F-1))throw new Error("Invalid UTF-8 string in BSON document");let C=l.toString("utf8",p,p+F-1);p=p+F;let M=le.Buffer.alloc(12);l.copy(M,0,p,p+12);let Q=new Ei.ObjectId(M);p=p+12,O[w]=new Fn.DBRef(C,Q)}else throw new Error("Detected unknown BSON type "+g.toString(16)+' for fieldname "'+w+'"')}if(W!==p-re)throw b?new Error("corrupt array bson"):new Error("corrupt object bson");let ne=Object.keys(O).filter(g=>g.startsWith("$")),j=!0;if(ne.forEach(g=>{["$ref","$id","$db"].indexOf(g)===-1&&(j=!1)}),!j)return O;if(Fn.isDBRefLike(O)){let g=Object.assign({},O);return delete g.$ref,delete g.$id,delete g.$db,new Fn.DBRef(O.$ref,O.$id,O.$db,g)}return O}function s(l,p,u){return p?(p[l]==null&&(p[l]=new Function(l)),p[l].bind(u)):new Function(l)}});At(Bp);var UO=Bp.deserialize,al=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.EJSON=e.isBSONType=void 0;function r(y){return pt.isObjectLike(y)&&Reflect.has(y,"_bsontype")&&typeof y._bsontype=="string"}e.isBSONType=r;let n=2147483647,i=-2147483648,f=9223372036854776e3,o=-9223372036854776e3,s={$oid:Ei.ObjectId,$binary:Qr.Binary,$uuid:Qr.Binary,$symbol:Lo.BSONSymbol,$numberInt:io.Int32,$numberDecimal:Po.Decimal128,$numberDouble:no.Double,$numberLong:me.Long,$minKey:Uo.MinKey,$maxKey:Mo.MaxKey,$regex:mf.BSONRegExp,$regularExpression:mf.BSONRegExp,$timestamp:df.Timestamp};function l(y,N={}){if(typeof y=="number"){if(N.relaxed||N.legacy)return y;if(Math.floor(y)===y){if(y>=i&&y<=n)return new io.Int32(y);if(y>=o&&y<=f)return me.Long.fromNumber(y)}return new no.Double(y)}if(y==null||typeof y!="object")return y;if(y.$undefined)return null;let P=Object.keys(y).filter(R=>R.startsWith("$")&&y[R]!=null);for(let R=0;R<P.length;R++){let Y=s[P[R]];if(Y)return Y.fromExtendedJSON(y,N)}if(y.$date!=null){let R=y.$date,Y=new Date;return N.legacy?typeof R=="number"?Y.setTime(R):typeof R=="string"&&Y.setTime(Date.parse(R)):typeof R=="string"?Y.setTime(Date.parse(R)):me.Long.isLong(R)?Y.setTime(R.toNumber()):typeof R=="number"&&N.relaxed&&Y.setTime(R),Y}if(y.$code!=null){let R=Object.assign({},y);return y.$scope&&(R.$scope=l(y.$scope)),cf.Code.fromExtendedJSON(y)}if(y.$ref!=null||y.$dbPointer!=null){let R=y.$ref?y:y.$dbPointer;if(R instanceof Fn.DBRef)return R;let Y=Object.keys(R).filter(W=>W.startsWith("$")),re=!0;if(Y.forEach(W=>{["$ref","$id","$db"].indexOf(W)===-1&&(re=!1)}),re)return Fn.DBRef.fromExtendedJSON(R)}return y}function p(y,N){return y.map(P=>b(P,N))}function u(y){let N=y.toISOString();return y.getUTCMilliseconds()!==0?N:N.slice(0,-5)+"Z"}function b(y,N){if(Array.isArray(y))return p(y,N);if(y===void 0)return null;if(y instanceof Date){let P=y.getTime(),R=P>-1&&P<2534023188e5;return N.legacy?N.relaxed&&R?{$date:y.getTime()}:{$date:u(y)}:N.relaxed&&R?{$date:u(y)}:{$date:{$numberLong:y.getTime().toString()}}}if(typeof y=="number"&&!N.relaxed){if(Math.floor(y)===y){let P=y>=i&&y<=n,R=y>=o&&y<=f;if(P)return{$numberInt:y.toString()};if(R)return{$numberLong:y.toString()}}return{$numberDouble:y.toString()}}if(y instanceof RegExp){let P=y.flags;if(P===void 0){let Y=y.toString().match(/[gimuy]*$/);Y&&(P=Y[0])}return new mf.BSONRegExp(y.source,P).toExtendedJSON(N)}return y!=null&&typeof y=="object"?h(y,N):y}let c={Binary:y=>new Qr.Binary(y.value(),y.sub_type),Code:y=>new cf.Code(y.code,y.scope),DBRef:y=>new Fn.DBRef(y.collection||y.namespace,y.oid,y.db,y.fields),Decimal128:y=>new Po.Decimal128(y.bytes),Double:y=>new no.Double(y.value),Int32:y=>new io.Int32(y.value),Long:y=>me.Long.fromBits(y.low!=null?y.low:y.low_,y.low!=null?y.high:y.high_,y.low!=null?y.unsigned:y.unsigned_),MaxKey:()=>new Mo.MaxKey,MinKey:()=>new Uo.MinKey,ObjectID:y=>new Ei.ObjectId(y),ObjectId:y=>new Ei.ObjectId(y),BSONRegExp:y=>new mf.BSONRegExp(y.pattern,y.options),Symbol:y=>new Lo.BSONSymbol(y.value),Timestamp:y=>df.Timestamp.fromBits(y.low,y.high)};function h(y,N){if(y==null||typeof y!="object")throw new Error("not an object instance");let P=y._bsontype;if(typeof P=="undefined"){let R={};for(let Y in y)R[Y]=b(y[Y],N);return R}else if(r(y)){let R=y;if(typeof R.toExtendedJSON!="function"){let Y=c[y._bsontype];if(!Y)throw new TypeError("Unrecognized or invalid _bsontype: "+y._bsontype);R=Y(R)}return P==="Code"&&R.scope?R=new cf.Code(R.code,b(R.scope,N)):P==="DBRef"&&R.oid&&(R=new Fn.DBRef(R.collection,b(R.oid,N),R.db,R.fields)),R.toExtendedJSON(N)}else throw new Error("_bsontype must be a string, but was: "+typeof P)}var T;(function(y){function N(re,W){let O=Object.assign({},{relaxed:!0,legacy:!1},W);return typeof O.relaxed=="boolean"&&(O.strict=!O.relaxed),typeof O.strict=="boolean"&&(O.relaxed=!O.strict),JSON.parse(re,(te,L)=>l(L,O))}y.parse=N;function P(re,W,O,te){O!=null&&typeof O=="object"&&(te=O,O=0),W!=null&&typeof W=="object"&&!Array.isArray(W)&&(te=W,W=void 0,O=0),te=Object.assign({},{relaxed:!0,legacy:!1},te);let L=b(re,te);return JSON.stringify(L,W,O)}y.stringify=P;function R(re,W){return W=W||{},JSON.parse(P(re,W))}y.serialize=R;function Y(re,W){return W=W||{},N(JSON.stringify(re),W)}y.deserialize=Y})(T=e.EJSON||(e.EJSON={}))});At(al);var LO=al.EJSON,CO=al.isBSONType,pl=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.writeIEEE754=e.readIEEE754=void 0;function r(i,f,o,s,l){let p,u,b=o==="big",c=l*8-s-1,h=(1<<c)-1,T=h>>1,y=-7,N=b?0:l-1,P=b?1:-1,R=i[f+N];for(N+=P,p=R&(1<<-y)-1,R>>=-y,y+=c;y>0;p=p*256+i[f+N],N+=P,y-=8);for(u=p&(1<<-y)-1,p>>=-y,y+=s;y>0;u=u*256+i[f+N],N+=P,y-=8);if(p===0)p=1-T;else{if(p===h)return u?NaN:(R?-1:1)*(1/0);u=u+Math.pow(2,s),p=p-T}return(R?-1:1)*u*Math.pow(2,p-s)}e.readIEEE754=r;function n(i,f,o,s,l,p){let u,b,c,h=s==="big",T=p*8-l-1,y=(1<<T)-1,N=y>>1,P=l===23?Math.pow(2,-24)-Math.pow(2,-77):0,R=h?p-1:0,Y=h?-1:1,re=f<0||f===0&&1/f<0?1:0;for(f=Math.abs(f),isNaN(f)||f===1/0?(b=isNaN(f)?1:0,u=y):(u=Math.floor(Math.log(f)/Math.LN2),f*(c=Math.pow(2,-u))<1&&(u--,c*=2),u+N>=1?f+=P/c:f+=P*Math.pow(2,1-N),f*c>=2&&(u++,c/=2),u+N>=y?(b=0,u=y):u+N>=1?(b=(f*c-1)*Math.pow(2,l),u=u+N):(b=f*Math.pow(2,N-1)*Math.pow(2,l),u=0)),isNaN(f)&&(b=0);l>=8;)i[o+R]=b&255,R+=Y,b/=256,l-=8;for(u=u<<l|b,isNaN(f)&&(u+=8),T+=l;T>0;)i[o+R]=u&255,R+=Y,u/=256,T-=8;i[o+R-Y]|=re*128}e.writeIEEE754=n});At(pl);var VO=pl.writeIEEE754,WO=pl.readIEEE754,Ip=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.serializeInto=void 0;let r=/\x00/,n=new Set(["$db","$ref","$id","$clusterTime"]);function i(j){return Object.prototype.toString.call(j)==="[object RegExp]"}function f(j,g,A,w,F){j[w++]=V.BSON_DATA_STRING;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+C+1,j[w-1]=0;let M=j.write(A,w+4,void 0,"utf8");return j[w+3]=M+1>>24&255,j[w+2]=M+1>>16&255,j[w+1]=M+1>>8&255,j[w]=M+1&255,w=w+4+M,j[w++]=0,w}function o(j,g,A,w,F){if(Number.isInteger(A)&&A>=V.BSON_INT32_MIN&&A<=V.BSON_INT32_MAX){j[w++]=V.BSON_DATA_INT;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+C,j[w++]=0,j[w++]=A&255,j[w++]=A>>8&255,j[w++]=A>>16&255,j[w++]=A>>24&255}else{j[w++]=V.BSON_DATA_NUMBER;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+C,j[w++]=0,pl.writeIEEE754(j,A,w,"little",52,8),w=w+8}return w}function s(j,g,A,w,F){j[w++]=V.BSON_DATA_NULL;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");return w=w+C,j[w++]=0,w}function l(j,g,A,w,F){j[w++]=V.BSON_DATA_BOOLEAN;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");return w=w+C,j[w++]=0,j[w++]=A?1:0,w}function p(j,g,A,w,F){j[w++]=V.BSON_DATA_DATE;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+C,j[w++]=0;let M=me.Long.fromNumber(A.getTime()),Q=M.getLowBits(),x=M.getHighBits();return j[w++]=Q&255,j[w++]=Q>>8&255,j[w++]=Q>>16&255,j[w++]=Q>>24&255,j[w++]=x&255,j[w++]=x>>8&255,j[w++]=x>>16&255,j[w++]=x>>24&255,w}function u(j,g,A,w,F){j[w++]=V.BSON_DATA_REGEXP;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");if(w=w+C,j[w++]=0,A.source&&A.source.match(r)!=null)throw Error("value "+A.source+" must not contain null bytes");return w=w+j.write(A.source,w,void 0,"utf8"),j[w++]=0,A.ignoreCase&&(j[w++]=105),A.global&&(j[w++]=115),A.multiline&&(j[w++]=109),j[w++]=0,w}function b(j,g,A,w,F){j[w++]=V.BSON_DATA_REGEXP;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");if(w=w+C,j[w++]=0,A.pattern.match(r)!=null)throw Error("pattern "+A.pattern+" must not contain null bytes");return w=w+j.write(A.pattern,w,void 0,"utf8"),j[w++]=0,w=w+j.write(A.options.split("").sort().join(""),w,void 0,"utf8"),j[w++]=0,w}function c(j,g,A,w,F){A===null?j[w++]=V.BSON_DATA_NULL:A._bsontype==="MinKey"?j[w++]=V.BSON_DATA_MIN_KEY:j[w++]=V.BSON_DATA_MAX_KEY;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");return w=w+C,j[w++]=0,w}function h(j,g,A,w,F){j[w++]=V.BSON_DATA_OID;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");if(w=w+C,j[w++]=0,typeof A.id=="string")j.write(A.id,w,void 0,"binary");else if(A.id&&A.id.copy)A.id.copy(j,w,0,12);else throw new TypeError("object ["+JSON.stringify(A)+"] is not a valid ObjectId");return w+12}function T(j,g,A,w,F){j[w++]=V.BSON_DATA_BINARY;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+C,j[w++]=0;let M=A.length;return j[w++]=M&255,j[w++]=M>>8&255,j[w++]=M>>16&255,j[w++]=M>>24&255,j[w++]=V.BSON_BINARY_SUBTYPE_DEFAULT,j.set(uf.ensureBuffer(A),w),w=w+M,w}function y(j,g,A,w,F=!1,C=0,M=!1,Q=!0,x=!1,Se=[]){for(let K=0;K<Se.length;K++)if(Se[K]===A)throw new Error("cyclic dependency detected");Se.push(A),j[w++]=Array.isArray(A)?V.BSON_DATA_ARRAY:V.BSON_DATA_OBJECT;let ie=x?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+ie,j[w++]=0;let U=ne(j,A,F,w,C+1,M,Q,Se);return Se.pop(),U}function N(j,g,A,w,F){j[w++]=V.BSON_DATA_DECIMAL128;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");return w=w+C,j[w++]=0,A.bytes.copy(j,w,0,16),w+16}function P(j,g,A,w,F){j[w++]=A._bsontype==="Long"?V.BSON_DATA_LONG:V.BSON_DATA_TIMESTAMP;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+C,j[w++]=0;let M=A.getLowBits(),Q=A.getHighBits();return j[w++]=M&255,j[w++]=M>>8&255,j[w++]=M>>16&255,j[w++]=M>>24&255,j[w++]=Q&255,j[w++]=Q>>8&255,j[w++]=Q>>16&255,j[w++]=Q>>24&255,w}function R(j,g,A,w,F){A=A.valueOf(),j[w++]=V.BSON_DATA_INT;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");return w=w+C,j[w++]=0,j[w++]=A&255,j[w++]=A>>8&255,j[w++]=A>>16&255,j[w++]=A>>24&255,w}function Y(j,g,A,w,F){j[w++]=V.BSON_DATA_NUMBER;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");return w=w+C,j[w++]=0,pl.writeIEEE754(j,A.value,w,"little",52,8),w=w+8,w}function re(j,g,A,w,F=!1,C=0,M){j[w++]=V.BSON_DATA_CODE;let Q=M?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+Q,j[w++]=0;let x=pt.normalizedFunctionString(A),Se=j.write(x,w+4,void 0,"utf8")+1;return j[w]=Se&255,j[w+1]=Se>>8&255,j[w+2]=Se>>16&255,j[w+3]=Se>>24&255,w=w+4+Se-1,j[w++]=0,w}function W(j,g,A,w,F=!1,C=0,M=!1,Q=!0,x=!1){if(A.scope&&typeof A.scope=="object"){j[w++]=V.BSON_DATA_CODE_W_SCOPE;let Se=x?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+Se,j[w++]=0;let ie=w,U=typeof A.code=="string"?A.code:A.code.toString();w=w+4;let K=j.write(U,w+4,void 0,"utf8")+1;j[w]=K&255,j[w+1]=K>>8&255,j[w+2]=K>>16&255,j[w+3]=K>>24&255,j[w+4+K-1]=0,w=w+K+4;let Ie=ne(j,A.scope,F,w,C+1,M,Q);w=Ie-1;let oe=Ie-ie;j[ie++]=oe&255,j[ie++]=oe>>8&255,j[ie++]=oe>>16&255,j[ie++]=oe>>24&255,j[w++]=0}else{j[w++]=V.BSON_DATA_CODE;let Se=x?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+Se,j[w++]=0;let ie=A.code.toString(),U=j.write(ie,w+4,void 0,"utf8")+1;j[w]=U&255,j[w+1]=U>>8&255,j[w+2]=U>>16&255,j[w+3]=U>>24&255,w=w+4+U-1,j[w++]=0}return w}function O(j,g,A,w,F){j[w++]=V.BSON_DATA_BINARY;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+C,j[w++]=0;let M=A.value(!0),Q=A.position;return A.sub_type===Qr.Binary.SUBTYPE_BYTE_ARRAY&&(Q=Q+4),j[w++]=Q&255,j[w++]=Q>>8&255,j[w++]=Q>>16&255,j[w++]=Q>>24&255,j[w++]=A.sub_type,A.sub_type===Qr.Binary.SUBTYPE_BYTE_ARRAY&&(Q=Q-4,j[w++]=Q&255,j[w++]=Q>>8&255,j[w++]=Q>>16&255,j[w++]=Q>>24&255),j.set(M,w),w=w+A.position,w}function te(j,g,A,w,F){j[w++]=V.BSON_DATA_SYMBOL;let C=F?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+C,j[w++]=0;let M=j.write(A.value,w+4,void 0,"utf8")+1;return j[w]=M&255,j[w+1]=M>>8&255,j[w+2]=M>>16&255,j[w+3]=M>>24&255,w=w+4+M-1,j[w++]=0,w}function L(j,g,A,w,F,C,M){j[w++]=V.BSON_DATA_OBJECT;let Q=M?j.write(g,w,void 0,"ascii"):j.write(g,w,void 0,"utf8");w=w+Q,j[w++]=0;let x=w,Se={$ref:A.collection||A.namespace,$id:A.oid};A.db!=null&&(Se.$db=A.db),Se=Object.assign(Se,A.fields);let ie=ne(j,Se,!1,w,F+1,C),U=ie-x;return j[x++]=U&255,j[x++]=U>>8&255,j[x++]=U>>16&255,j[x++]=U>>24&255,ie}function ne(j,g,A=!1,w=0,F=0,C=!1,M=!0,Q=[]){w=w||0,Q=Q||[],Q.push(g);let x=w+4;if(Array.isArray(g))for(let ie=0;ie<g.length;ie++){let U=""+ie,K=g[ie];if(K&&K.toBSON){if(typeof K.toBSON!="function")throw new TypeError("toBSON is not a function");K=K.toBSON()}if(typeof K=="string")x=f(j,U,K,x,!0);else if(typeof K=="number")x=o(j,U,K,x,!0);else{if(typeof K=="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(typeof K=="boolean")x=l(j,U,K,x,!0);else if(K instanceof Date||pt.isDate(K))x=p(j,U,K,x,!0);else if(K===void 0)x=s(j,U,K,x,!0);else if(K===null)x=s(j,U,K,x,!0);else if(K._bsontype==="ObjectId"||K._bsontype==="ObjectID")x=h(j,U,K,x,!0);else if(le.Buffer.isBuffer(K)||pt.isUint8Array(K))x=T(j,U,K,x,!0);else if(K instanceof RegExp||i(K))x=u(j,U,K,x,!0);else if(typeof K=="object"&&K._bsontype==null)x=y(j,U,K,x,A,F,C,M,!0,Q);else if(typeof K=="object"&&al.isBSONType(K)&&K._bsontype==="Decimal128")x=N(j,U,K,x,!0);else if(K._bsontype==="Long"||K._bsontype==="Timestamp")x=P(j,U,K,x,!0);else if(K._bsontype==="Double")x=Y(j,U,K,x,!0);else if(typeof K=="function"&&C)x=re(j,U,K,x,A,F,!0);else if(K._bsontype==="Code")x=W(j,U,K,x,A,F,C,M,!0);else if(K._bsontype==="Binary")x=O(j,U,K,x,!0);else if(K._bsontype==="Symbol")x=te(j,U,K,x,!0);else if(K._bsontype==="DBRef")x=L(j,U,K,x,F,C,!0);else if(K._bsontype==="BSONRegExp")x=b(j,U,K,x,!0);else if(K._bsontype==="Int32")x=R(j,U,K,x,!0);else if(K._bsontype==="MinKey"||K._bsontype==="MaxKey")x=c(j,U,K,x,!0);else if(typeof K._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+K._bsontype)}}else if(g instanceof kp.Map){let ie=g.entries(),U=!1;for(;!U;){let K=ie.next();if(U=!!K.done,U)continue;let Ie=K.value[0],oe=K.value[1],We=typeof oe;if(typeof Ie=="string"&&!n.has(Ie)){if(Ie.match(r)!=null)throw Error("key "+Ie+" must not contain null bytes");if(A){if(Ie[0]==="$")throw Error("key "+Ie+" must not start with '$'");if(~Ie.indexOf("."))throw Error("key "+Ie+" must not contain '.'")}}if(We==="string")x=f(j,Ie,oe,x);else if(We==="number")x=o(j,Ie,oe,x);else{if(We==="bigint"||pt.isBigInt64Array(oe)||pt.isBigUInt64Array(oe))throw new TypeError("Unsupported type BigInt, please use Decimal128");if(We==="boolean")x=l(j,Ie,oe,x);else if(oe instanceof Date||pt.isDate(oe))x=p(j,Ie,oe,x);else if(oe===null||oe===void 0&&M===!1)x=s(j,Ie,oe,x);else if(oe._bsontype==="ObjectId"||oe._bsontype==="ObjectID")x=h(j,Ie,oe,x);else if(le.Buffer.isBuffer(oe)||pt.isUint8Array(oe))x=T(j,Ie,oe,x);else if(oe instanceof RegExp||i(oe))x=u(j,Ie,oe,x);else if(We==="object"&&oe._bsontype==null)x=y(j,Ie,oe,x,A,F,C,M,!1,Q);else if(We==="object"&&oe._bsontype==="Decimal128")x=N(j,Ie,oe,x);else if(oe._bsontype==="Long"||oe._bsontype==="Timestamp")x=P(j,Ie,oe,x);else if(oe._bsontype==="Double")x=Y(j,Ie,oe,x);else if(oe._bsontype==="Code")x=W(j,Ie,oe,x,A,F,C,M);else if(typeof oe=="function"&&C)x=re(j,Ie,oe,x,A,F,C);else if(oe._bsontype==="Binary")x=O(j,Ie,oe,x);else if(oe._bsontype==="Symbol")x=te(j,Ie,oe,x);else if(oe._bsontype==="DBRef")x=L(j,Ie,oe,x,F,C);else if(oe._bsontype==="BSONRegExp")x=b(j,Ie,oe,x);else if(oe._bsontype==="Int32")x=R(j,Ie,oe,x);else if(oe._bsontype==="MinKey"||oe._bsontype==="MaxKey")x=c(j,Ie,oe,x);else if(typeof oe._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+oe._bsontype)}}}else{if(g.toBSON){if(typeof g.toBSON!="function")throw new TypeError("toBSON is not a function");if(g=g.toBSON(),g!=null&&typeof g!="object")throw new TypeError("toBSON function did not return an object")}for(let ie in g){let U=g[ie];if(U&&U.toBSON){if(typeof U.toBSON!="function")throw new TypeError("toBSON is not a function");U=U.toBSON()}let K=typeof U;if(typeof ie=="string"&&!n.has(ie)){if(ie.match(r)!=null)throw Error("key "+ie+" must not contain null bytes");if(A){if(ie[0]==="$")throw Error("key "+ie+" must not start with '$'");if(~ie.indexOf("."))throw Error("key "+ie+" must not contain '.'")}}if(K==="string")x=f(j,ie,U,x);else if(K==="number")x=o(j,ie,U,x);else{if(K==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(K==="boolean")x=l(j,ie,U,x);else if(U instanceof Date||pt.isDate(U))x=p(j,ie,U,x);else if(U===void 0)M===!1&&(x=s(j,ie,U,x));else if(U===null)x=s(j,ie,U,x);else if(U._bsontype==="ObjectId"||U._bsontype==="ObjectID")x=h(j,ie,U,x);else if(le.Buffer.isBuffer(U)||pt.isUint8Array(U))x=T(j,ie,U,x);else if(U instanceof RegExp||i(U))x=u(j,ie,U,x);else if(K==="object"&&U._bsontype==null)x=y(j,ie,U,x,A,F,C,M,!1,Q);else if(K==="object"&&U._bsontype==="Decimal128")x=N(j,ie,U,x);else if(U._bsontype==="Long"||U._bsontype==="Timestamp")x=P(j,ie,U,x);else if(U._bsontype==="Double")x=Y(j,ie,U,x);else if(U._bsontype==="Code")x=W(j,ie,U,x,A,F,C,M);else if(typeof U=="function"&&C)x=re(j,ie,U,x,A,F,C);else if(U._bsontype==="Binary")x=O(j,ie,U,x);else if(U._bsontype==="Symbol")x=te(j,ie,U,x);else if(U._bsontype==="DBRef")x=L(j,ie,U,x,F,C);else if(U._bsontype==="BSONRegExp")x=b(j,ie,U,x);else if(U._bsontype==="Int32")x=R(j,ie,U,x);else if(U._bsontype==="MinKey"||U._bsontype==="MaxKey")x=c(j,ie,U,x);else if(typeof U._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+U._bsontype)}}}Q.pop(),j[x++]=0;let Se=x-w;return j[w++]=Se&255,j[w++]=Se>>8&255,j[w++]=Se>>16&255,j[w++]=Se>>24&255,x}e.serializeInto=ne});At(Ip);var YO=Ip.serializeInto,de=qt(function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.deserializeStream=e.calculateObjectSize=e.deserialize=e.serializeWithBufferAndIndex=e.serialize=e.setInternalBufferSize=e.ObjectID=e.Decimal128=e.BSONRegExp=e.MaxKey=e.MinKey=e.Int32=e.Double=e.Timestamp=e.Long=e.ObjectId=e.Binary=e.DBRef=e.BSONSymbol=e.Map=e.Code=e.LongWithoutOverridesClass=e.EJSON=e.JS_INT_MIN=e.JS_INT_MAX=e.BSON_INT64_MIN=e.BSON_INT64_MAX=e.BSON_INT32_MIN=e.BSON_INT32_MAX=e.BSON_DATA_UNDEFINED=e.BSON_DATA_TIMESTAMP=e.BSON_DATA_SYMBOL=e.BSON_DATA_STRING=e.BSON_DATA_REGEXP=e.BSON_DATA_OID=e.BSON_DATA_OBJECT=e.BSON_DATA_NUMBER=e.BSON_DATA_NULL=e.BSON_DATA_MIN_KEY=e.BSON_DATA_MAX_KEY=e.BSON_DATA_LONG=e.BSON_DATA_INT=e.BSON_DATA_DECIMAL128=e.BSON_DATA_DBPOINTER=e.BSON_DATA_DATE=e.BSON_DATA_CODE_W_SCOPE=e.BSON_DATA_CODE=e.BSON_DATA_BOOLEAN=e.BSON_DATA_BINARY=e.BSON_DATA_ARRAY=e.BSON_BINARY_SUBTYPE_UUID_NEW=e.BSON_BINARY_SUBTYPE_UUID=e.BSON_BINARY_SUBTYPE_USER_DEFINED=e.BSON_BINARY_SUBTYPE_MD5=e.BSON_BINARY_SUBTYPE_FUNCTION=e.BSON_BINARY_SUBTYPE_DEFAULT=e.BSON_BINARY_SUBTYPE_BYTE_ARRAY=void 0,Object.defineProperty(e,"Binary",{enumerable:!0,get:function(){return Qr.Binary}}),Object.defineProperty(e,"Code",{enumerable:!0,get:function(){return cf.Code}}),Object.defineProperty(e,"DBRef",{enumerable:!0,get:function(){return Fn.DBRef}}),Object.defineProperty(e,"Decimal128",{enumerable:!0,get:function(){return Po.Decimal128}}),Object.defineProperty(e,"Double",{enumerable:!0,get:function(){return no.Double}}),Object.defineProperty(e,"Int32",{enumerable:!0,get:function(){return io.Int32}}),Object.defineProperty(e,"Long",{enumerable:!0,get:function(){return me.Long}}),Object.defineProperty(e,"Map",{enumerable:!0,get:function(){return kp.Map}}),Object.defineProperty(e,"MaxKey",{enumerable:!0,get:function(){return Mo.MaxKey}}),Object.defineProperty(e,"MinKey",{enumerable:!0,get:function(){return Uo.MinKey}}),Object.defineProperty(e,"ObjectId",{enumerable:!0,get:function(){return Ei.ObjectId}}),Object.defineProperty(e,"ObjectID",{enumerable:!0,get:function(){return Ei.ObjectId}}),Object.defineProperty(e,"BSONRegExp",{enumerable:!0,get:function(){return mf.BSONRegExp}}),Object.defineProperty(e,"BSONSymbol",{enumerable:!0,get:function(){return Lo.BSONSymbol}}),Object.defineProperty(e,"Timestamp",{enumerable:!0,get:function(){return df.Timestamp}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_BYTE_ARRAY",{enumerable:!0,get:function(){return V.BSON_BINARY_SUBTYPE_BYTE_ARRAY}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_DEFAULT",{enumerable:!0,get:function(){return V.BSON_BINARY_SUBTYPE_DEFAULT}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_FUNCTION",{enumerable:!0,get:function(){return V.BSON_BINARY_SUBTYPE_FUNCTION}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_MD5",{enumerable:!0,get:function(){return V.BSON_BINARY_SUBTYPE_MD5}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_USER_DEFINED",{enumerable:!0,get:function(){return V.BSON_BINARY_SUBTYPE_USER_DEFINED}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_UUID",{enumerable:!0,get:function(){return V.BSON_BINARY_SUBTYPE_UUID}}),Object.defineProperty(e,"BSON_BINARY_SUBTYPE_UUID_NEW",{enumerable:!0,get:function(){return V.BSON_BINARY_SUBTYPE_UUID_NEW}}),Object.defineProperty(e,"BSON_DATA_ARRAY",{enumerable:!0,get:function(){return V.BSON_DATA_ARRAY}}),Object.defineProperty(e,"BSON_DATA_BINARY",{enumerable:!0,get:function(){return V.BSON_DATA_BINARY}}),Object.defineProperty(e,"BSON_DATA_BOOLEAN",{enumerable:!0,get:function(){return V.BSON_DATA_BOOLEAN}}),Object.defineProperty(e,"BSON_DATA_CODE",{enumerable:!0,get:function(){return V.BSON_DATA_CODE}}),Object.defineProperty(e,"BSON_DATA_CODE_W_SCOPE",{enumerable:!0,get:function(){return V.BSON_DATA_CODE_W_SCOPE}}),Object.defineProperty(e,"BSON_DATA_DATE",{enumerable:!0,get:function(){return V.BSON_DATA_DATE}}),Object.defineProperty(e,"BSON_DATA_DBPOINTER",{enumerable:!0,get:function(){return V.BSON_DATA_DBPOINTER}}),Object.defineProperty(e,"BSON_DATA_DECIMAL128",{enumerable:!0,get:function(){return V.BSON_DATA_DECIMAL128}}),Object.defineProperty(e,"BSON_DATA_INT",{enumerable:!0,get:function(){return V.BSON_DATA_INT}}),Object.defineProperty(e,"BSON_DATA_LONG",{enumerable:!0,get:function(){return V.BSON_DATA_LONG}}),Object.defineProperty(e,"BSON_DATA_MAX_KEY",{enumerable:!0,get:function(){return V.BSON_DATA_MAX_KEY}}),Object.defineProperty(e,"BSON_DATA_MIN_KEY",{enumerable:!0,get:function(){return V.BSON_DATA_MIN_KEY}}),Object.defineProperty(e,"BSON_DATA_NULL",{enumerable:!0,get:function(){return V.BSON_DATA_NULL}}),Object.defineProperty(e,"BSON_DATA_NUMBER",{enumerable:!0,get:function(){return V.BSON_DATA_NUMBER}}),Object.defineProperty(e,"BSON_DATA_OBJECT",{enumerable:!0,get:function(){return V.BSON_DATA_OBJECT}}),Object.defineProperty(e,"BSON_DATA_OID",{enumerable:!0,get:function(){return V.BSON_DATA_OID}}),Object.defineProperty(e,"BSON_DATA_REGEXP",{enumerable:!0,get:function(){return V.BSON_DATA_REGEXP}}),Object.defineProperty(e,"BSON_DATA_STRING",{enumerable:!0,get:function(){return V.BSON_DATA_STRING}}),Object.defineProperty(e,"BSON_DATA_SYMBOL",{enumerable:!0,get:function(){return V.BSON_DATA_SYMBOL}}),Object.defineProperty(e,"BSON_DATA_TIMESTAMP",{enumerable:!0,get:function(){return V.BSON_DATA_TIMESTAMP}}),Object.defineProperty(e,"BSON_DATA_UNDEFINED",{enumerable:!0,get:function(){return V.BSON_DATA_UNDEFINED}}),Object.defineProperty(e,"BSON_INT32_MAX",{enumerable:!0,get:function(){return V.BSON_INT32_MAX}}),Object.defineProperty(e,"BSON_INT32_MIN",{enumerable:!0,get:function(){return V.BSON_INT32_MIN}}),Object.defineProperty(e,"BSON_INT64_MAX",{enumerable:!0,get:function(){return V.BSON_INT64_MAX}}),Object.defineProperty(e,"BSON_INT64_MIN",{enumerable:!0,get:function(){return V.BSON_INT64_MIN}}),Object.defineProperty(e,"JS_INT_MAX",{enumerable:!0,get:function(){return V.JS_INT_MAX}}),Object.defineProperty(e,"JS_INT_MIN",{enumerable:!0,get:function(){return V.JS_INT_MIN}}),Object.defineProperty(e,"EJSON",{enumerable:!0,get:function(){return al.EJSON}});var r=df;Object.defineProperty(e,"LongWithoutOverridesClass",{enumerable:!0,get:function(){return r.LongWithoutOverridesClass}});let n=1024*1024*17,i=le.Buffer.alloc(n);function f(b){i.length<b&&(i=le.Buffer.alloc(b))}e.setInternalBufferSize=f;function o(b,c={}){let h=typeof c.checkKeys=="boolean"?c.checkKeys:!1,T=typeof c.serializeFunctions=="boolean"?c.serializeFunctions:!1,y=typeof c.ignoreUndefined=="boolean"?c.ignoreUndefined:!0,N=typeof c.minInternalBufferSize=="number"?c.minInternalBufferSize:n;i.length<N&&(i=le.Buffer.alloc(N));let P=Ip.serializeInto(i,b,h,0,0,T,y,[]),R=le.Buffer.alloc(P);return i.copy(R,0,0,R.length),R}e.serialize=o;function s(b,c,h={}){let T=typeof h.checkKeys=="boolean"?h.checkKeys:!1,y=typeof h.serializeFunctions=="boolean"?h.serializeFunctions:!1,N=typeof h.ignoreUndefined=="boolean"?h.ignoreUndefined:!0,P=typeof h.index=="number"?h.index:0,R=Ip.serializeInto(i,b,T,0,0,y,N);return i.copy(c,P,0,R),P+R-1}e.serializeWithBufferAndIndex=s;function l(b,c={}){return Bp.deserialize(uf.ensureBuffer(b),c)}e.deserialize=l;function p(b,c={}){c=c||{};let h=typeof c.serializeFunctions=="boolean"?c.serializeFunctions:!1,T=typeof c.ignoreUndefined=="boolean"?c.ignoreUndefined:!0;return Hm.calculateObjectSize(b,h,T)}e.calculateObjectSize=p;function u(b,c,h,T,y,N){let P=Object.assign({allowObjectSmallerThanBufferSize:!0,index:0},N),R=uf.ensureBuffer(b),Y=c;for(let re=0;re<h;re++){let W=R[Y]|R[Y+1]<<8|R[Y+2]<<16|R[Y+3]<<24;P.index=Y,T[y+re]=Bp.deserialize(R,P),Y=Y+W}return Y}e.deserializeStream=u}),KO=At(de),GO=de.deserializeStream,JO=de.calculateObjectSize,Jg=de.deserialize,ZO=de.serializeWithBufferAndIndex,Zg=de.serialize,XO=de.setInternalBufferSize,QO=de.ObjectID,$O=de.Decimal128,e2=de.BSONRegExp,t2=de.MaxKey,r2=de.MinKey,n2=de.Int32,i2=de.Double,f2=de.Timestamp,o2=de.Long,s2=de.ObjectId,l2=de.Binary,a2=de.DBRef,p2=de.BSONSymbol,u2=de.Map,c2=de.Code,m2=de.LongWithoutOverridesClass,d2=de.EJSON,w2=de.JS_INT_MIN,h2=de.JS_INT_MAX,b2=de.BSON_INT64_MIN,g2=de.BSON_INT64_MAX,j2=de.BSON_INT32_MIN,y2=de.BSON_INT32_MAX,v2=de.BSON_DATA_UNDEFINED,_2=de.BSON_DATA_TIMESTAMP,q2=de.BSON_DATA_SYMBOL,k2=de.BSON_DATA_STRING,T2=de.BSON_DATA_REGEXP,B2=de.BSON_DATA_OID,I2=de.BSON_DATA_OBJECT,S2=de.BSON_DATA_NUMBER,x2=de.BSON_DATA_NULL,E2=de.BSON_DATA_MIN_KEY,A2=de.BSON_DATA_MAX_KEY,O2=de.BSON_DATA_LONG,N2=de.BSON_DATA_INT,H2=de.BSON_DATA_DECIMAL128,R2=de.BSON_DATA_DBPOINTER,D2=de.BSON_DATA_DATE,z2=de.BSON_DATA_CODE_W_SCOPE,F2=de.BSON_DATA_CODE,P2=de.BSON_DATA_BOOLEAN,M2=de.BSON_DATA_BINARY,U2=de.BSON_DATA_ARRAY,L2=de.BSON_BINARY_SUBTYPE_UUID_NEW,C2=de.BSON_BINARY_SUBTYPE_UUID,V2=de.BSON_BINARY_SUBTYPE_USER_DEFINED,W2=de.BSON_BINARY_SUBTYPE_MD5,Y2=de.BSON_BINARY_SUBTYPE_FUNCTION,K2=de.BSON_BINARY_SUBTYPE_DEFAULT,G2=de.BSON_BINARY_SUBTYPE_BYTE_ARRAY;function Rm(t,e){return Jg(new Uint8Array(t),e)}var IB="4.0.0-alpha.10",Dm={bson:{}},zm={name:"BSON",id:"bson",module:"bson",version:IB,extensions:["bson"],mimeTypes:["application/bson"],category:"json",binary:!0,parse:SB,parseSync:xB,options:Dm};async function SB(t,e){let r={...Dm.bson,...e==null?void 0:e.bson};return Rm(t,r)}function xB(t,e){let r={...Dm.bson,...e==null?void 0:e.bson};return Rm(t,r)}function Fm(t,e){return Zg(t).buffer}var EB="4.0.0-alpha.10",Pm={name:"BSON",id:"bson",module:"bson",version:EB,extensions:["bson"],options:{bson:{}},async encode(t,e){return Fm(t,{})},encodeSync(t,e){return Fm(t,{})}};var fo={BOOLEAN:{primitiveType:"BOOLEAN",toPrimitive:AB,fromPrimitive:OB},INT32:{primitiveType:"INT32",toPrimitive:Qg},INT64:{primitiveType:"INT64",toPrimitive:$g},INT96:{primitiveType:"INT96",toPrimitive:CB},FLOAT:{primitiveType:"FLOAT",toPrimitive:NB},DOUBLE:{primitiveType:"DOUBLE",toPrimitive:HB},BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",toPrimitive:ej},FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",toPrimitive:ej},UTF8:{primitiveType:"BYTE_ARRAY",originalType:"UTF8",toPrimitive:VB,fromPrimitive:WB},TIME_MILLIS:{primitiveType:"INT32",originalType:"TIME_MILLIS",toPrimitive:ZB},TIME_MICROS:{primitiveType:"INT64",originalType:"TIME_MICROS",toPrimitive:XB},DATE:{primitiveType:"INT32",originalType:"DATE",toPrimitive:QB,fromPrimitive:$B},TIMESTAMP_MILLIS:{primitiveType:"INT64",originalType:"TIMESTAMP_MILLIS",toPrimitive:eI,fromPrimitive:tI},TIMESTAMP_MICROS:{primitiveType:"INT64",originalType:"TIMESTAMP_MICROS",toPrimitive:rI,fromPrimitive:nI},UINT_8:{primitiveType:"INT32",originalType:"UINT_8",toPrimitive:DB},UINT_16:{primitiveType:"INT32",originalType:"UINT_16",toPrimitive:FB},UINT_32:{primitiveType:"INT32",originalType:"UINT_32",toPrimitive:MB},UINT_64:{primitiveType:"INT64",originalType:"UINT_64",toPrimitive:LB},INT_8:{primitiveType:"INT32",originalType:"INT_8",toPrimitive:RB},INT_16:{primitiveType:"INT32",originalType:"INT_16",toPrimitive:zB},INT_32:{primitiveType:"INT32",originalType:"INT_32",toPrimitive:Qg},INT_64:{primitiveType:"INT64",originalType:"INT_64",toPrimitive:$g},JSON:{primitiveType:"BYTE_ARRAY",originalType:"JSON",toPrimitive:YB,fromPrimitive:KB},BSON:{primitiveType:"BYTE_ARRAY",originalType:"BSON",toPrimitive:GB,fromPrimitive:JB},INTERVAL:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"INTERVAL",typeLength:12,toPrimitive:iI,fromPrimitive:fI},DECIMAL_INT32:{primitiveType:"INT32",originalType:"DECIMAL_INT32",toPrimitive:PB,fromPrimitive:nj},DECIMAL_INT64:{primitiveType:"INT64",originalType:"DECIMAL_INT64",toPrimitive:UB,fromPrimitive:nj},DECIMAL_BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",originalType:"DECIMAL_BYTE_ARRAY",toPrimitive:tj,fromPrimitive:ij},DECIMAL_FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"DECIMAL_FIXED_LEN_BYTE_ARRAY",toPrimitive:tj,fromPrimitive:ij}};function Xg(t,e,r){if(!(t in fo))throw new Error(`invalid type: ${t}`);return fo[t].toPrimitive(e,r)}function Mm(t,e,r){if(!(t in fo))throw new Error(`invalid type: ${t}`);return"fromPrimitive"in fo[t]?fo[t].fromPrimitive?.(e,r):e}function AB(t){return Boolean(t)}function OB(t){return Boolean(t)}function NB(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for FLOAT: ${t}`);return e}function HB(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for DOUBLE: ${t}`);return e}function RB(t){let e=parseInt(t,10);if(e<-128||e>127||isNaN(e))throw new Error(`invalid value for INT8: ${t}`);return e}function DB(t){let e=parseInt(t,10);if(e<0||e>255||isNaN(e))throw new Error(`invalid value for UINT8: ${t}`);return e}function zB(t){let e=parseInt(t,10);if(e<-32768||e>32767||isNaN(e))throw new Error(`invalid value for INT16: ${t}`);return e}function FB(t){let e=parseInt(t,10);if(e<0||e>65535||isNaN(e))throw new Error(`invalid value for UINT16: ${t}`);return e}function Qg(t){let e=parseInt(t,10);if(e<-2147483648||e>2147483647||isNaN(e))throw new Error(`invalid value for INT32: ${t}`);return e}function PB(t,e){let r=t*10**(e.scale||0),n=Math.round(r*10**-e.presision%1*10**e.presision);if(n<-2147483648||n>2147483647||isNaN(n))throw new Error(`invalid value for INT32: ${t}`);return n}function MB(t){let e=parseInt(t,10);if(e<0||e>281474976710655||isNaN(e))throw new Error(`invalid value for UINT32: ${t}`);return e}function $g(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT64: ${t}`);return e}function UB(t,e){let r=t*10**(e.scale||0),n=Math.round(r*10**-e.presision%1*10**e.presision);if(isNaN(n))throw new Error(`invalid value for INT64: ${t}`);return n}function LB(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for UINT64: ${t}`);return e}function CB(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT96: ${t}`);return e}function ej(t){return Buffer.from(t)}function tj(t){return Buffer.from(t)}function VB(t){return Buffer.from(t,"utf8")}function WB(t){return t.toString()}function YB(t){return Buffer.from(JSON.stringify(t))}function KB(t){return JSON.parse(t)}function GB(t){let e=Pm.encodeSync?.(t);return Buffer.from(e)}function JB(t){return zm.parseSync?.(t)}function ZB(t){let e=parseInt(t,10);if(e<0||e>18446744073709552e3||isNaN(e))throw new Error(`invalid value for TIME_MILLIS: ${t}`);return e}function XB(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIME_MICROS: ${t}`);return e}var rj=864e5;function QB(t){if(t instanceof Date)return t.getTime()/rj;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for DATE: ${t}`);return e}}function $B(t){return new Date(t*rj)}function eI(t){if(t instanceof Date)return t.getTime();{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIMESTAMP_MILLIS: ${t}`);return e}}function tI(t){return new Date(t)}function rI(t){if(t instanceof Date)return t.getTime()*1e3;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIMESTAMP_MICROS: ${t}`);return e}}function nI(t){return new Date(t/1e3)}function iI(t){if(!t.months||!t.days||!t.milliseconds)throw new Error("value for INTERVAL must be object { months: ..., days: ..., milliseconds: ... }");let e=Buffer.alloc(12);return e.writeUInt32LE(t.months,0),e.writeUInt32LE(t.days,4),e.writeUInt32LE(t.milliseconds,8),e}function fI(t){let e=Buffer.from(t),r=e.readUInt32LE(0),n=e.readUInt32LE(4),i=e.readUInt32LE(8);return{months:r,days:n,milliseconds:i}}function nj(t,e){return Math.round(t*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}function ij(t,e){let r=0;if(t.length<=4)for(let i=0;i<t.length;i++)r+=t[i]<<8*(t.length-i-1);else for(let i=0;i<t.length;i++)r+=t[i]*2**(8*(t.length-1-i));return Math.round(r*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}function Um(t){let e={};for(let r of t.fieldList)e[r.key]={dlevels:[],rlevels:[],values:[],pageHeaders:[],count:0};return{rowCount:0,columnData:e}}function fj(t,e,r){let n=Um(t).columnData;if(Lm(t.fields,e,n,0,0),r.rowCount===0){r.rowCount=1,r.columnData=n;return}r.rowCount+=1;for(let i of t.fieldList)Array.prototype.push.apply(r.columnData[i.key].rlevels,n[i.key].rlevels),Array.prototype.push.apply(r.columnData[i.key].dlevels,n[i.key].dlevels),Array.prototype.push.apply(r.columnData[i.key].values,n[i.key].values),r.columnData[i.key].count+=n[i.key].count}function Lm(t,e,r,n,i){for(let f in t){let o=t[f],s=[];if(e&&o.name in e&&e[o.name]!==void 0&&e[o.name]!==null&&(e[o.name].constructor===Array?s=e[o.name]:s.push(e[o.name])),s.length===0&&Boolean(e)&&o.repetitionType==="REQUIRED")throw new Error(`missing required field: ${o.name}`);if(s.length>1&&o.repetitionType!=="REPEATED")throw new Error(`too many values for field: ${o.name}`);if(s.length===0){o.isNested?Lm(o.fields,null,r,n,i):(r[o.key].count+=1,r[o.key].rlevels.push(n),r[o.key].dlevels.push(i));continue}for(let l=0;l<s.length;l++){let p=l===0?n:o.rLevelMax;o.isNested?Lm(o.fields,s[l],r,p,o.dLevelMax):(r[o.key].count+=1,r[o.key].rlevels.push(p),r[o.key].dlevels.push(o.dLevelMax),r[o.key].values.push(Xg(o.originalType||o.primitiveType,s[l])))}}}function Sp(t,e){let r=[];for(let n=0;n<e.rowCount;n++)r.push({});for(let n in e.columnData){let i=e.columnData[n];i.count&&oI(t,i,n,r)}return r}function oI(t,e,r,n){let i=t.findField(r),f=t.findFieldBranch(r),o=new Array(i.rLevelMax+1).fill(0),s=0;for(let l=0;l<e.count;l++){let p=e.dlevels[l],u=e.rlevels[l];o[u]++,o.fill(0,u+1);let b=0,c=n[o[b++]-1];for(let h of f){if(h===i||p<h.dLevelMax)break;switch(h.repetitionType){case"REPEATED":h.name in c||(c[h.name]=[]);let T=o[b++];for(;c[h.name].length<=T;)c[h.name].push({});c=c[h.name][T];break;default:c[h.name]=c[h.name]||{},c=c[h.name]}}if(p===i.dLevelMax){let h=Mm(i.originalType||i.primitiveType,e.values[s],i);switch(s++,i.repetitionType){case"REPEATED":i.name in c||(c[i.name]=[]);let T=o[b];for(;c[i.name].length<=T;)c[i.name].push(null);c[i.name][T]=h;break;default:c[i.name]=h}}}}function oj(t,e){let r={};for(let n in e.columnData){let i=e.columnData[n];i.count&&sI(t,i,e.rowCount,n,r)}return r}function sI(t,e,r,n,i){if(e.count<=0)return;let f=t.findField(n),o=t.findFieldBranch(n),s=o[0].name,l,{values:p}=e;if(p.length===r&&o[0].primitiveType&&(l=p),l){i[s]=l;return}l=new Array(r);for(let c=0;c<r;c++)l[c]={};i[s]=l;let u=new Array(f.rLevelMax+1).fill(0),b=0;for(let c=0;c<e.count;c++){let h=e.dlevels[c],T=e.rlevels[c];u[T]++,u.fill(0,T+1);let y=0,N=l[u[y++]-1];for(let P of o){if(P===f||h<P.dLevelMax)break;switch(P.repetitionType){case"REPEATED":P.name in N||(N[P.name]=[]);let R=u[y++];for(;N[P.name].length<=R;)N[P.name].push({});N=N[P.name][R];break;default:N[P.name]=N[P.name]||{},N=N[P.name]}}if(h===f.dLevelMax){let P=Mm(f.originalType||f.primitiveType,e.values[b],f);switch(b++,f.repetitionType){case"REPEATED":f.name in N||(N[f.name]=[]);let R=u[y];for(;N[f.name].length<=R;)N[f.name].push(null);N[f.name][R]=P;break;default:N[f.name]=P}}}for(let c=0;c<r;++c)s in l[c]&&(l[c]=l[c][s])}var Cm=class{constructor(e){this.schema=e,this.fields=sj(e,0,0,[]),this.fieldList=lj(this.fields)}findField(e){typeof e=="string"?e=e.split(","):e=e.slice(0);let r=this.fields;for(;e.length>1;e.shift())r=r[e[0]].fields;return r[e[0]]}findFieldBranch(e){typeof e=="string"&&(e=e.split(","));let r=[],n=this.fields;for(;e.length>0;e.shift())r.push(n[e[0]]),e.length>1&&(n=n[e[0]].fields);return r}shredRecord(e,r){fj(this,e,r)}materializeRows(e){return Sp(this,e)}compress(e){return Vm(this.schema,e),Vm(this.fields,e),this}rowGroup(){return Um(this)}};function Vm(t,e){for(let r in t){let n=t[r];n.fields?Vm(n.fields,e):n.compression=e}}function sj(t,e,r,n){let i={};for(let f in t){let o=t[f],s=!o.optional,l=Boolean(o.repeated),p=e,u=r,b="REQUIRED";if(s||(b="OPTIONAL",u++),l&&(b="REPEATED",p++,s&&u++),o.fields){let T=n.concat([f]);i[f]={name:f,path:T,key:T.join(),repetitionType:b,rLevelMax:p,dLevelMax:u,isNested:!0,fieldCount:Object.keys(o.fields).length,fields:sj(o.fields,p,u,T)};continue}let c=fo[o.type];if(!c)throw new Error(`invalid parquet type: ${o.type}`);if(o.encoding=o.encoding||"PLAIN",!(o.encoding in Fs))throw new Error(`unsupported parquet encoding: ${o.encoding}`);if(o.compression=o.compression||"UNCOMPRESSED",!(o.compression in vm))throw new Error(`unsupported compression method: ${o.compression}`);let h=n.concat([f]);i[f]={name:f,primitiveType:c.primitiveType,originalType:c.originalType,path:h,key:h.join(),repetitionType:b,encoding:o.encoding,compression:o.compression,typeLength:o.typeLength||c.typeLength,presision:o.presision,scale:o.scale,rLevelMax:p,dLevelMax:u}}return i}function lj(t){let e=[];for(let r in t)e.push(t[r]),t[r].isNested&&(e=e.concat(lj(t[r].fields)));return e}var Co;(function(l){l[l.BOOLEAN=0]="BOOLEAN",l[l.INT32=1]="INT32",l[l.INT64=2]="INT64",l[l.INT96=3]="INT96",l[l.FLOAT=4]="FLOAT",l[l.DOUBLE=5]="DOUBLE",l[l.BYTE_ARRAY=6]="BYTE_ARRAY",l[l.FIXED_LEN_BYTE_ARRAY=7]="FIXED_LEN_BYTE_ARRAY"})(Co||(Co={}));var xp;(function(O){O[O.UTF8=0]="UTF8",O[O.MAP=1]="MAP",O[O.MAP_KEY_VALUE=2]="MAP_KEY_VALUE",O[O.LIST=3]="LIST",O[O.ENUM=4]="ENUM",O[O.DECIMAL=5]="DECIMAL",O[O.DATE=6]="DATE",O[O.TIME_MILLIS=7]="TIME_MILLIS",O[O.TIME_MICROS=8]="TIME_MICROS",O[O.TIMESTAMP_MILLIS=9]="TIMESTAMP_MILLIS",O[O.TIMESTAMP_MICROS=10]="TIMESTAMP_MICROS",O[O.UINT_8=11]="UINT_8",O[O.UINT_16=12]="UINT_16",O[O.UINT_32=13]="UINT_32",O[O.UINT_64=14]="UINT_64",O[O.INT_8=15]="INT_8",O[O.INT_16=16]="INT_16",O[O.INT_32=17]="INT_32",O[O.INT_64=18]="INT_64",O[O.JSON=19]="JSON",O[O.BSON=20]="BSON",O[O.INTERVAL=21]="INTERVAL"})(xp||(xp={}));var Ep;(function(n){n[n.REQUIRED=0]="REQUIRED",n[n.OPTIONAL=1]="OPTIONAL",n[n.REPEATED=2]="REPEATED"})(Ep||(Ep={}));var oo;(function(l){l[l.PLAIN=0]="PLAIN",l[l.PLAIN_DICTIONARY=2]="PLAIN_DICTIONARY",l[l.RLE=3]="RLE",l[l.BIT_PACKED=4]="BIT_PACKED",l[l.DELTA_BINARY_PACKED=5]="DELTA_BINARY_PACKED",l[l.DELTA_LENGTH_BYTE_ARRAY=6]="DELTA_LENGTH_BYTE_ARRAY",l[l.DELTA_BYTE_ARRAY=7]="DELTA_BYTE_ARRAY",l[l.RLE_DICTIONARY=8]="RLE_DICTIONARY"})(oo||(oo={}));var Ap;(function(l){l[l.UNCOMPRESSED=0]="UNCOMPRESSED",l[l.SNAPPY=1]="SNAPPY",l[l.GZIP=2]="GZIP",l[l.LZO=3]="LZO",l[l.BROTLI=4]="BROTLI",l[l.LZ4=5]="LZ4",l[l.ZSTD=6]="ZSTD",l[l.LZ4_RAW=7]="LZ4_RAW"})(Ap||(Ap={}));var Op;(function(i){i[i.DATA_PAGE=0]="DATA_PAGE",i[i.INDEX_PAGE=1]="INDEX_PAGE",i[i.DICTIONARY_PAGE=2]="DICTIONARY_PAGE",i[i.DATA_PAGE_V2=3]="DATA_PAGE_V2"})(Op||(Op={}));var kd=Te(_n()),Pr=Te(nt()),Di=class{constructor(e){e!=null&&e.max!=null&&(this.max=e.max),e!=null&&e.min!=null&&(this.min=e.min),e!=null&&e.null_count!=null&&(typeof e.null_count=="number"?this.null_count=new kd.default(e.null_count):this.null_count=e.null_count),e!=null&&e.distinct_count!=null&&(typeof e.distinct_count=="number"?this.distinct_count=new kd.default(e.distinct_count):this.distinct_count=e.distinct_count),e!=null&&e.max_value!=null&&(this.max_value=e.max_value),e!=null&&e.min_value!=null&&(this.min_value=e.min_value)}write(e){e.writeStructBegin("Statistics"),this.max!=null&&(e.writeFieldBegin("max",Pr.Thrift.Type.STRING,1),e.writeBinary(this.max),e.writeFieldEnd()),this.min!=null&&(e.writeFieldBegin("min",Pr.Thrift.Type.STRING,2),e.writeBinary(this.min),e.writeFieldEnd()),this.null_count!=null&&(e.writeFieldBegin("null_count",Pr.Thrift.Type.I64,3),e.writeI64(this.null_count),e.writeFieldEnd()),this.distinct_count!=null&&(e.writeFieldBegin("distinct_count",Pr.Thrift.Type.I64,4),e.writeI64(this.distinct_count),e.writeFieldEnd()),this.max_value!=null&&(e.writeFieldBegin("max_value",Pr.Thrift.Type.STRING,5),e.writeBinary(this.max_value),e.writeFieldEnd()),this.min_value!=null&&(e.writeFieldBegin("min_value",Pr.Thrift.Type.STRING,6),e.writeBinary(this.min_value),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===Pr.Thrift.Type.STOP)break;switch(f){case 1:if(i===Pr.Thrift.Type.STRING){let o=e.readBinary();r.max=o}else e.skip(i);break;case 2:if(i===Pr.Thrift.Type.STRING){let o=e.readBinary();r.min=o}else e.skip(i);break;case 3:if(i===Pr.Thrift.Type.I64){let o=e.readI64();r.null_count=o}else e.skip(i);break;case 4:if(i===Pr.Thrift.Type.I64){let o=e.readI64();r.distinct_count=o}else e.skip(i);break;case 5:if(i===Pr.Thrift.Type.STRING){let o=e.readBinary();r.max_value=o}else e.skip(i);break;case 6:if(i===Pr.Thrift.Type.STRING){let o=e.readBinary();r.min_value=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}return e.readStructEnd(),new Di(r)}};var ky=Te(nt()),bl=class{constructor(){}write(e){e.writeStructBegin("StringType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===ky.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new bl}};var Ty=Te(nt()),gl=class{constructor(){}write(e){e.writeStructBegin("UUIDType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Ty.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new gl}};var By=Te(nt()),jl=class{constructor(){}write(e){e.writeStructBegin("MapType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===By.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new jl}};var Iy=Te(nt()),yl=class{constructor(){}write(e){e.writeStructBegin("ListType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Iy.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new yl}};var Sy=Te(nt()),vl=class{constructor(){}write(e){e.writeStructBegin("EnumType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Sy.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new vl}};var xy=Te(nt()),_l=class{constructor(){}write(e){e.writeStructBegin("DateType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===xy.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new _l}};var Ey=Te(nt()),ql=class{constructor(){}write(e){e.writeStructBegin("NullType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Ey.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new ql}};var qn=Te(nt()),kl=class{constructor(e){if(e!=null&&e.scale!=null)this.scale=e.scale;else throw new qn.Thrift.TProtocolException(qn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[scale] is unset!");if(e!=null&&e.precision!=null)this.precision=e.precision;else throw new qn.Thrift.TProtocolException(qn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[precision] is unset!")}write(e){e.writeStructBegin("DecimalType"),this.scale!=null&&(e.writeFieldBegin("scale",qn.Thrift.Type.I32,1),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",qn.Thrift.Type.I32,2),e.writeI32(this.precision),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===qn.Thrift.Type.STOP)break;switch(f){case 1:if(i===qn.Thrift.Type.I32){let o=e.readI32();r.scale=o}else e.skip(i);break;case 2:if(i===qn.Thrift.Type.I32){let o=e.readI32();r.precision=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.scale!==void 0&&r.precision!==void 0)return new kl(r);throw new qn.Thrift.TProtocolException(qn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DecimalType from input")}};var Ay=Te(nt()),Tl=class{constructor(){}write(e){e.writeStructBegin("MilliSeconds"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Ay.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Tl}};var Oy=Te(nt()),Bl=class{constructor(){}write(e){e.writeStructBegin("MicroSeconds"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Oy.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Bl}};var kn=Te(nt());var yr=Te(nt());var oi=class{constructor(e){let r=0;if(e!=null){if(e.MILLIS!=null&&(r++,this.MILLIS=e.MILLIS),e.MICROS!=null&&(r++,this.MICROS=e.MICROS),r>1)throw new yr.Thrift.TProtocolException(yr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new yr.Thrift.TProtocolException(yr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromMILLIS(e){return new oi({MILLIS:e})}static fromMICROS(e){return new oi({MICROS:e})}write(e){e.writeStructBegin("TimeUnit"),this.MILLIS!=null&&(e.writeFieldBegin("MILLIS",yr.Thrift.Type.STRUCT,1),this.MILLIS.write(e),e.writeFieldEnd()),this.MICROS!=null&&(e.writeFieldBegin("MICROS",yr.Thrift.Type.STRUCT,2),this.MICROS.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),f=i.ftype,o=i.fid;if(f===yr.Thrift.Type.STOP)break;switch(o){case 1:if(f===yr.Thrift.Type.STRUCT){r++;let s=Tl.read(e);n=oi.fromMILLIS(s)}else e.skip(f);break;case 2:if(f===yr.Thrift.Type.STRUCT){r++;let s=Bl.read(e);n=oi.fromMICROS(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new yr.Thrift.TProtocolException(yr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new yr.Thrift.TProtocolException(yr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new yr.Thrift.TProtocolException(yr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var Il=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new kn.Thrift.TProtocolException(kn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new kn.Thrift.TProtocolException(kn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimestampType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",kn.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",kn.Thrift.Type.STRUCT,2),this.unit.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===kn.Thrift.Type.STOP)break;switch(f){case 1:if(i===kn.Thrift.Type.BOOL){let o=e.readBool();r.isAdjustedToUTC=o}else e.skip(i);break;case 2:if(i===kn.Thrift.Type.STRUCT){let o=oi.read(e);r.unit=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.isAdjustedToUTC!==void 0&&r.unit!==void 0)return new Il(r);throw new kn.Thrift.TProtocolException(kn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimestampType from input")}};var Tn=Te(nt());var Sl=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new Tn.Thrift.TProtocolException(Tn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new Tn.Thrift.TProtocolException(Tn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimeType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",Tn.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",Tn.Thrift.Type.STRUCT,2),this.unit.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===Tn.Thrift.Type.STOP)break;switch(f){case 1:if(i===Tn.Thrift.Type.BOOL){let o=e.readBool();r.isAdjustedToUTC=o}else e.skip(i);break;case 2:if(i===Tn.Thrift.Type.STRUCT){let o=oi.read(e);r.unit=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.isAdjustedToUTC!==void 0&&r.unit!==void 0)return new Sl(r);throw new Tn.Thrift.TProtocolException(Tn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimeType from input")}};var Bn=Te(nt()),xl=class{constructor(e){if(e!=null&&e.bitWidth!=null)this.bitWidth=e.bitWidth;else throw new Bn.Thrift.TProtocolException(Bn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[bitWidth] is unset!");if(e!=null&&e.isSigned!=null)this.isSigned=e.isSigned;else throw new Bn.Thrift.TProtocolException(Bn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isSigned] is unset!")}write(e){e.writeStructBegin("IntType"),this.bitWidth!=null&&(e.writeFieldBegin("bitWidth",Bn.Thrift.Type.BYTE,1),e.writeByte(this.bitWidth),e.writeFieldEnd()),this.isSigned!=null&&(e.writeFieldBegin("isSigned",Bn.Thrift.Type.BOOL,2),e.writeBool(this.isSigned),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===Bn.Thrift.Type.STOP)break;switch(f){case 1:if(i===Bn.Thrift.Type.BYTE){let o=e.readByte();r.bitWidth=o}else e.skip(i);break;case 2:if(i===Bn.Thrift.Type.BOOL){let o=e.readBool();r.isSigned=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.bitWidth!==void 0&&r.isSigned!==void 0)return new xl(r);throw new Bn.Thrift.TProtocolException(Bn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read IntType from input")}};var Ny=Te(nt()),El=class{constructor(){}write(e){e.writeStructBegin("JsonType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Ny.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new El}};var Hy=Te(nt()),Al=class{constructor(){}write(e){e.writeStructBegin("BsonType"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Hy.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Al}};var kt=Te(nt());var Xe=Te(nt());var dt=class{constructor(e){let r=0;if(e!=null){if(e.STRING!=null&&(r++,this.STRING=e.STRING),e.MAP!=null&&(r++,this.MAP=e.MAP),e.LIST!=null&&(r++,this.LIST=e.LIST),e.ENUM!=null&&(r++,this.ENUM=e.ENUM),e.DECIMAL!=null&&(r++,this.DECIMAL=e.DECIMAL),e.DATE!=null&&(r++,this.DATE=e.DATE),e.TIME!=null&&(r++,this.TIME=e.TIME),e.TIMESTAMP!=null&&(r++,this.TIMESTAMP=e.TIMESTAMP),e.INTEGER!=null&&(r++,this.INTEGER=e.INTEGER),e.UNKNOWN!=null&&(r++,this.UNKNOWN=e.UNKNOWN),e.JSON!=null&&(r++,this.JSON=e.JSON),e.BSON!=null&&(r++,this.BSON=e.BSON),e.UUID!=null&&(r++,this.UUID=e.UUID),r>1)throw new Xe.Thrift.TProtocolException(Xe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Xe.Thrift.TProtocolException(Xe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromSTRING(e){return new dt({STRING:e})}static fromMAP(e){return new dt({MAP:e})}static fromLIST(e){return new dt({LIST:e})}static fromENUM(e){return new dt({ENUM:e})}static fromDECIMAL(e){return new dt({DECIMAL:e})}static fromDATE(e){return new dt({DATE:e})}static fromTIME(e){return new dt({TIME:e})}static fromTIMESTAMP(e){return new dt({TIMESTAMP:e})}static fromINTEGER(e){return new dt({INTEGER:e})}static fromUNKNOWN(e){return new dt({UNKNOWN:e})}static fromJSON(e){return new dt({JSON:e})}static fromBSON(e){return new dt({BSON:e})}static fromUUID(e){return new dt({UUID:e})}write(e){e.writeStructBegin("LogicalType"),this.STRING!=null&&(e.writeFieldBegin("STRING",Xe.Thrift.Type.STRUCT,1),this.STRING.write(e),e.writeFieldEnd()),this.MAP!=null&&(e.writeFieldBegin("MAP",Xe.Thrift.Type.STRUCT,2),this.MAP.write(e),e.writeFieldEnd()),this.LIST!=null&&(e.writeFieldBegin("LIST",Xe.Thrift.Type.STRUCT,3),this.LIST.write(e),e.writeFieldEnd()),this.ENUM!=null&&(e.writeFieldBegin("ENUM",Xe.Thrift.Type.STRUCT,4),this.ENUM.write(e),e.writeFieldEnd()),this.DECIMAL!=null&&(e.writeFieldBegin("DECIMAL",Xe.Thrift.Type.STRUCT,5),this.DECIMAL.write(e),e.writeFieldEnd()),this.DATE!=null&&(e.writeFieldBegin("DATE",Xe.Thrift.Type.STRUCT,6),this.DATE.write(e),e.writeFieldEnd()),this.TIME!=null&&(e.writeFieldBegin("TIME",Xe.Thrift.Type.STRUCT,7),this.TIME.write(e),e.writeFieldEnd()),this.TIMESTAMP!=null&&(e.writeFieldBegin("TIMESTAMP",Xe.Thrift.Type.STRUCT,8),this.TIMESTAMP.write(e),e.writeFieldEnd()),this.INTEGER!=null&&(e.writeFieldBegin("INTEGER",Xe.Thrift.Type.STRUCT,10),this.INTEGER.write(e),e.writeFieldEnd()),this.UNKNOWN!=null&&(e.writeFieldBegin("UNKNOWN",Xe.Thrift.Type.STRUCT,11),this.UNKNOWN.write(e),e.writeFieldEnd()),this.JSON!=null&&(e.writeFieldBegin("JSON",Xe.Thrift.Type.STRUCT,12),this.JSON.write(e),e.writeFieldEnd()),this.BSON!=null&&(e.writeFieldBegin("BSON",Xe.Thrift.Type.STRUCT,13),this.BSON.write(e),e.writeFieldEnd()),this.UUID!=null&&(e.writeFieldBegin("UUID",Xe.Thrift.Type.STRUCT,14),this.UUID.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),f=i.ftype,o=i.fid;if(f===Xe.Thrift.Type.STOP)break;switch(o){case 1:if(f===Xe.Thrift.Type.STRUCT){r++;let s=bl.read(e);n=dt.fromSTRING(s)}else e.skip(f);break;case 2:if(f===Xe.Thrift.Type.STRUCT){r++;let s=jl.read(e);n=dt.fromMAP(s)}else e.skip(f);break;case 3:if(f===Xe.Thrift.Type.STRUCT){r++;let s=yl.read(e);n=dt.fromLIST(s)}else e.skip(f);break;case 4:if(f===Xe.Thrift.Type.STRUCT){r++;let s=vl.read(e);n=dt.fromENUM(s)}else e.skip(f);break;case 5:if(f===Xe.Thrift.Type.STRUCT){r++;let s=kl.read(e);n=dt.fromDECIMAL(s)}else e.skip(f);break;case 6:if(f===Xe.Thrift.Type.STRUCT){r++;let s=_l.read(e);n=dt.fromDATE(s)}else e.skip(f);break;case 7:if(f===Xe.Thrift.Type.STRUCT){r++;let s=Sl.read(e);n=dt.fromTIME(s)}else e.skip(f);break;case 8:if(f===Xe.Thrift.Type.STRUCT){r++;let s=Il.read(e);n=dt.fromTIMESTAMP(s)}else e.skip(f);break;case 10:if(f===Xe.Thrift.Type.STRUCT){r++;let s=xl.read(e);n=dt.fromINTEGER(s)}else e.skip(f);break;case 11:if(f===Xe.Thrift.Type.STRUCT){r++;let s=ql.read(e);n=dt.fromUNKNOWN(s)}else e.skip(f);break;case 12:if(f===Xe.Thrift.Type.STRUCT){r++;let s=El.read(e);n=dt.fromJSON(s)}else e.skip(f);break;case 13:if(f===Xe.Thrift.Type.STRUCT){r++;let s=Al.read(e);n=dt.fromBSON(s)}else e.skip(f);break;case 14:if(f===Xe.Thrift.Type.STRUCT){r++;let s=gl.read(e);n=dt.fromUUID(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Xe.Thrift.TProtocolException(Xe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Xe.Thrift.TProtocolException(Xe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Xe.Thrift.TProtocolException(Xe.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var Ol=class{constructor(e){if(e!=null&&e.type!=null&&(this.type=e.type),e!=null&&e.type_length!=null&&(this.type_length=e.type_length),e!=null&&e.repetition_type!=null&&(this.repetition_type=e.repetition_type),e!=null&&e.name!=null)this.name=e.name;else throw new kt.Thrift.TProtocolException(kt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[name] is unset!");e!=null&&e.num_children!=null&&(this.num_children=e.num_children),e!=null&&e.converted_type!=null&&(this.converted_type=e.converted_type),e!=null&&e.scale!=null&&(this.scale=e.scale),e!=null&&e.precision!=null&&(this.precision=e.precision),e!=null&&e.field_id!=null&&(this.field_id=e.field_id),e!=null&&e.logicalType!=null&&(this.logicalType=e.logicalType)}write(e){e.writeStructBegin("SchemaElement"),this.type!=null&&(e.writeFieldBegin("type",kt.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.type_length!=null&&(e.writeFieldBegin("type_length",kt.Thrift.Type.I32,2),e.writeI32(this.type_length),e.writeFieldEnd()),this.repetition_type!=null&&(e.writeFieldBegin("repetition_type",kt.Thrift.Type.I32,3),e.writeI32(this.repetition_type),e.writeFieldEnd()),this.name!=null&&(e.writeFieldBegin("name",kt.Thrift.Type.STRING,4),e.writeString(this.name),e.writeFieldEnd()),this.num_children!=null&&(e.writeFieldBegin("num_children",kt.Thrift.Type.I32,5),e.writeI32(this.num_children),e.writeFieldEnd()),this.converted_type!=null&&(e.writeFieldBegin("converted_type",kt.Thrift.Type.I32,6),e.writeI32(this.converted_type),e.writeFieldEnd()),this.scale!=null&&(e.writeFieldBegin("scale",kt.Thrift.Type.I32,7),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",kt.Thrift.Type.I32,8),e.writeI32(this.precision),e.writeFieldEnd()),this.field_id!=null&&(e.writeFieldBegin("field_id",kt.Thrift.Type.I32,9),e.writeI32(this.field_id),e.writeFieldEnd()),this.logicalType!=null&&(e.writeFieldBegin("logicalType",kt.Thrift.Type.STRUCT,10),this.logicalType.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===kt.Thrift.Type.STOP)break;switch(f){case 1:if(i===kt.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===kt.Thrift.Type.I32){let o=e.readI32();r.type_length=o}else e.skip(i);break;case 3:if(i===kt.Thrift.Type.I32){let o=e.readI32();r.repetition_type=o}else e.skip(i);break;case 4:if(i===kt.Thrift.Type.STRING){let o=e.readString();r.name=o}else e.skip(i);break;case 5:if(i===kt.Thrift.Type.I32){let o=e.readI32();r.num_children=o}else e.skip(i);break;case 6:if(i===kt.Thrift.Type.I32){let o=e.readI32();r.converted_type=o}else e.skip(i);break;case 7:if(i===kt.Thrift.Type.I32){let o=e.readI32();r.scale=o}else e.skip(i);break;case 8:if(i===kt.Thrift.Type.I32){let o=e.readI32();r.precision=o}else e.skip(i);break;case 9:if(i===kt.Thrift.Type.I32){let o=e.readI32();r.field_id=o}else e.skip(i);break;case 10:if(i===kt.Thrift.Type.STRUCT){let o=dt.read(e);r.logicalType=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.name!==void 0)return new Ol(r);throw new kt.Thrift.TProtocolException(kt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SchemaElement from input")}};var Mt=Te(nt());var Nl=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Mt.Thrift.TProtocolException(Mt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Mt.Thrift.TProtocolException(Mt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.definition_level_encoding!=null)this.definition_level_encoding=e.definition_level_encoding;else throw new Mt.Thrift.TProtocolException(Mt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[definition_level_encoding] is unset!");if(e!=null&&e.repetition_level_encoding!=null)this.repetition_level_encoding=e.repetition_level_encoding;else throw new Mt.Thrift.TProtocolException(Mt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[repetition_level_encoding] is unset!");e!=null&&e.statistics!=null&&(this.statistics=e.statistics)}write(e){e.writeStructBegin("DataPageHeader"),this.num_values!=null&&(e.writeFieldBegin("num_values",Mt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Mt.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_level_encoding!=null&&(e.writeFieldBegin("definition_level_encoding",Mt.Thrift.Type.I32,3),e.writeI32(this.definition_level_encoding),e.writeFieldEnd()),this.repetition_level_encoding!=null&&(e.writeFieldBegin("repetition_level_encoding",Mt.Thrift.Type.I32,4),e.writeI32(this.repetition_level_encoding),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",Mt.Thrift.Type.STRUCT,5),this.statistics.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===Mt.Thrift.Type.STOP)break;switch(f){case 1:if(i===Mt.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===Mt.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===Mt.Thrift.Type.I32){let o=e.readI32();r.definition_level_encoding=o}else e.skip(i);break;case 4:if(i===Mt.Thrift.Type.I32){let o=e.readI32();r.repetition_level_encoding=o}else e.skip(i);break;case 5:if(i===Mt.Thrift.Type.STRUCT){let o=Di.read(e);r.statistics=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.encoding!==void 0&&r.definition_level_encoding!==void 0&&r.repetition_level_encoding!==void 0)return new Nl(r);throw new Mt.Thrift.TProtocolException(Mt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeader from input")}};var Ry=Te(nt()),Hl=class{constructor(){}write(e){e.writeStructBegin("IndexPageHeader"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Ry.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Hl}};var Mr=Te(nt()),Rl=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Mr.Thrift.TProtocolException(Mr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Mr.Thrift.TProtocolException(Mr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");e!=null&&e.is_sorted!=null&&(this.is_sorted=e.is_sorted)}write(e){e.writeStructBegin("DictionaryPageHeader"),this.num_values!=null&&(e.writeFieldBegin("num_values",Mr.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Mr.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.is_sorted!=null&&(e.writeFieldBegin("is_sorted",Mr.Thrift.Type.BOOL,3),e.writeBool(this.is_sorted),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===Mr.Thrift.Type.STOP)break;switch(f){case 1:if(i===Mr.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===Mr.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===Mr.Thrift.Type.BOOL){let o=e.readBool();r.is_sorted=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.encoding!==void 0)return new Rl(r);throw new Mr.Thrift.TProtocolException(Mr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DictionaryPageHeader from input")}};var lt=Te(nt());var Dl=class{constructor(e){this.is_compressed=!0;if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new lt.Thrift.TProtocolException(lt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.num_nulls!=null)this.num_nulls=e.num_nulls;else throw new lt.Thrift.TProtocolException(lt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_nulls] is unset!");if(e!=null&&e.num_rows!=null)this.num_rows=e.num_rows;else throw new lt.Thrift.TProtocolException(lt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new lt.Thrift.TProtocolException(lt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.definition_levels_byte_length!=null)this.definition_levels_byte_length=e.definition_levels_byte_length;else throw new lt.Thrift.TProtocolException(lt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[definition_levels_byte_length] is unset!");if(e!=null&&e.repetition_levels_byte_length!=null)this.repetition_levels_byte_length=e.repetition_levels_byte_length;else throw new lt.Thrift.TProtocolException(lt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[repetition_levels_byte_length] is unset!");e!=null&&e.is_compressed!=null&&(this.is_compressed=e.is_compressed),e!=null&&e.statistics!=null&&(this.statistics=e.statistics)}write(e){e.writeStructBegin("DataPageHeaderV2"),this.num_values!=null&&(e.writeFieldBegin("num_values",lt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.num_nulls!=null&&(e.writeFieldBegin("num_nulls",lt.Thrift.Type.I32,2),e.writeI32(this.num_nulls),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",lt.Thrift.Type.I32,3),e.writeI32(this.num_rows),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",lt.Thrift.Type.I32,4),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_levels_byte_length!=null&&(e.writeFieldBegin("definition_levels_byte_length",lt.Thrift.Type.I32,5),e.writeI32(this.definition_levels_byte_length),e.writeFieldEnd()),this.repetition_levels_byte_length!=null&&(e.writeFieldBegin("repetition_levels_byte_length",lt.Thrift.Type.I32,6),e.writeI32(this.repetition_levels_byte_length),e.writeFieldEnd()),this.is_compressed!=null&&(e.writeFieldBegin("is_compressed",lt.Thrift.Type.BOOL,7),e.writeBool(this.is_compressed),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",lt.Thrift.Type.STRUCT,8),this.statistics.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===lt.Thrift.Type.STOP)break;switch(f){case 1:if(i===lt.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===lt.Thrift.Type.I32){let o=e.readI32();r.num_nulls=o}else e.skip(i);break;case 3:if(i===lt.Thrift.Type.I32){let o=e.readI32();r.num_rows=o}else e.skip(i);break;case 4:if(i===lt.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 5:if(i===lt.Thrift.Type.I32){let o=e.readI32();r.definition_levels_byte_length=o}else e.skip(i);break;case 6:if(i===lt.Thrift.Type.I32){let o=e.readI32();r.repetition_levels_byte_length=o}else e.skip(i);break;case 7:if(i===lt.Thrift.Type.BOOL){let o=e.readBool();r.is_compressed=o}else e.skip(i);break;case 8:if(i===lt.Thrift.Type.STRUCT){let o=Di.read(e);r.statistics=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.num_values!==void 0&&r.num_nulls!==void 0&&r.num_rows!==void 0&&r.encoding!==void 0&&r.definition_levels_byte_length!==void 0&&r.repetition_levels_byte_length!==void 0)return new Dl(r);throw new lt.Thrift.TProtocolException(lt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeaderV2 from input")}};var Tt=Te(nt());var zl=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new Tt.Thrift.TProtocolException(Tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.uncompressed_page_size!=null)this.uncompressed_page_size=e.uncompressed_page_size;else throw new Tt.Thrift.TProtocolException(Tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[uncompressed_page_size] is unset!");if(e!=null&&e.compressed_page_size!=null)this.compressed_page_size=e.compressed_page_size;else throw new Tt.Thrift.TProtocolException(Tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[compressed_page_size] is unset!");e!=null&&e.crc!=null&&(this.crc=e.crc),e!=null&&e.data_page_header!=null&&(this.data_page_header=e.data_page_header),e!=null&&e.index_page_header!=null&&(this.index_page_header=e.index_page_header),e!=null&&e.dictionary_page_header!=null&&(this.dictionary_page_header=e.dictionary_page_header),e!=null&&e.data_page_header_v2!=null&&(this.data_page_header_v2=e.data_page_header_v2)}write(e){e.writeStructBegin("PageHeader"),this.type!=null&&(e.writeFieldBegin("type",Tt.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.uncompressed_page_size!=null&&(e.writeFieldBegin("uncompressed_page_size",Tt.Thrift.Type.I32,2),e.writeI32(this.uncompressed_page_size),e.writeFieldEnd()),this.compressed_page_size!=null&&(e.writeFieldBegin("compressed_page_size",Tt.Thrift.Type.I32,3),e.writeI32(this.compressed_page_size),e.writeFieldEnd()),this.crc!=null&&(e.writeFieldBegin("crc",Tt.Thrift.Type.I32,4),e.writeI32(this.crc),e.writeFieldEnd()),this.data_page_header!=null&&(e.writeFieldBegin("data_page_header",Tt.Thrift.Type.STRUCT,5),this.data_page_header.write(e),e.writeFieldEnd()),this.index_page_header!=null&&(e.writeFieldBegin("index_page_header",Tt.Thrift.Type.STRUCT,6),this.index_page_header.write(e),e.writeFieldEnd()),this.dictionary_page_header!=null&&(e.writeFieldBegin("dictionary_page_header",Tt.Thrift.Type.STRUCT,7),this.dictionary_page_header.write(e),e.writeFieldEnd()),this.data_page_header_v2!=null&&(e.writeFieldBegin("data_page_header_v2",Tt.Thrift.Type.STRUCT,8),this.data_page_header_v2.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===Tt.Thrift.Type.STOP)break;switch(f){case 1:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.uncompressed_page_size=o}else e.skip(i);break;case 3:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.compressed_page_size=o}else e.skip(i);break;case 4:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.crc=o}else e.skip(i);break;case 5:if(i===Tt.Thrift.Type.STRUCT){let o=Nl.read(e);r.data_page_header=o}else e.skip(i);break;case 6:if(i===Tt.Thrift.Type.STRUCT){let o=Hl.read(e);r.index_page_header=o}else e.skip(i);break;case 7:if(i===Tt.Thrift.Type.STRUCT){let o=Rl.read(e);r.dictionary_page_header=o}else e.skip(i);break;case 8:if(i===Tt.Thrift.Type.STRUCT){let o=Dl.read(e);r.data_page_header_v2=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.type!==void 0&&r.uncompressed_page_size!==void 0&&r.compressed_page_size!==void 0)return new zl(r);throw new Tt.Thrift.TProtocolException(Tt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageHeader from input")}};var si=Te(nt()),ao=class{constructor(e){if(e!=null&&e.key!=null)this.key=e.key;else throw new si.Thrift.TProtocolException(si.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[key] is unset!");e!=null&&e.value!=null&&(this.value=e.value)}write(e){e.writeStructBegin("KeyValue"),this.key!=null&&(e.writeFieldBegin("key",si.Thrift.Type.STRING,1),e.writeString(this.key),e.writeFieldEnd()),this.value!=null&&(e.writeFieldBegin("value",si.Thrift.Type.STRING,2),e.writeString(this.value),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===si.Thrift.Type.STOP)break;switch(f){case 1:if(i===si.Thrift.Type.STRING){let o=e.readString();r.key=o}else e.skip(i);break;case 2:if(i===si.Thrift.Type.STRING){let o=e.readString();r.value=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.key!==void 0)return new ao(r);throw new si.Thrift.TProtocolException(si.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read KeyValue from input")}};var vr=Te(nt()),Fl=class{constructor(e){if(e!=null&&e.column_idx!=null)this.column_idx=e.column_idx;else throw new vr.Thrift.TProtocolException(vr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[column_idx] is unset!");if(e!=null&&e.descending!=null)this.descending=e.descending;else throw new vr.Thrift.TProtocolException(vr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[descending] is unset!");if(e!=null&&e.nulls_first!=null)this.nulls_first=e.nulls_first;else throw new vr.Thrift.TProtocolException(vr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[nulls_first] is unset!")}write(e){e.writeStructBegin("SortingColumn"),this.column_idx!=null&&(e.writeFieldBegin("column_idx",vr.Thrift.Type.I32,1),e.writeI32(this.column_idx),e.writeFieldEnd()),this.descending!=null&&(e.writeFieldBegin("descending",vr.Thrift.Type.BOOL,2),e.writeBool(this.descending),e.writeFieldEnd()),this.nulls_first!=null&&(e.writeFieldBegin("nulls_first",vr.Thrift.Type.BOOL,3),e.writeBool(this.nulls_first),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===vr.Thrift.Type.STOP)break;switch(f){case 1:if(i===vr.Thrift.Type.I32){let o=e.readI32();r.column_idx=o}else e.skip(i);break;case 2:if(i===vr.Thrift.Type.BOOL){let o=e.readBool();r.descending=o}else e.skip(i);break;case 3:if(i===vr.Thrift.Type.BOOL){let o=e.readBool();r.nulls_first=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.column_idx!==void 0&&r.descending!==void 0&&r.nulls_first!==void 0)return new Fl(r);throw new vr.Thrift.TProtocolException(vr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SortingColumn from input")}};var _r=Te(nt()),Pl=class{constructor(e){if(e!=null&&e.page_type!=null)this.page_type=e.page_type;else throw new _r.Thrift.TProtocolException(_r.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[page_type] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new _r.Thrift.TProtocolException(_r.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encoding] is unset!");if(e!=null&&e.count!=null)this.count=e.count;else throw new _r.Thrift.TProtocolException(_r.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[count] is unset!")}write(e){e.writeStructBegin("PageEncodingStats"),this.page_type!=null&&(e.writeFieldBegin("page_type",_r.Thrift.Type.I32,1),e.writeI32(this.page_type),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",_r.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.count!=null&&(e.writeFieldBegin("count",_r.Thrift.Type.I32,3),e.writeI32(this.count),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===_r.Thrift.Type.STOP)break;switch(f){case 1:if(i===_r.Thrift.Type.I32){let o=e.readI32();r.page_type=o}else e.skip(i);break;case 2:if(i===_r.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===_r.Thrift.Type.I32){let o=e.readI32();r.count=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.page_type!==void 0&&r.encoding!==void 0&&r.count!==void 0)return new Pl(r);throw new _r.Thrift.TProtocolException(_r.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageEncodingStats from input")}};var po=Te(_n()),ve=Te(nt());var Ml=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.encodings!=null)this.encodings=e.encodings;else throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[encodings] is unset!");if(e!=null&&e.path_in_schema!=null)this.path_in_schema=e.path_in_schema;else throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[path_in_schema] is unset!");if(e!=null&&e.codec!=null)this.codec=e.codec;else throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[codec] is unset!");if(e!=null&&e.num_values!=null)typeof e.num_values=="number"?this.num_values=new po.default(e.num_values):this.num_values=e.num_values;else throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.total_uncompressed_size!=null)typeof e.total_uncompressed_size=="number"?this.total_uncompressed_size=new po.default(e.total_uncompressed_size):this.total_uncompressed_size=e.total_uncompressed_size;else throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_uncompressed_size] is unset!");if(e!=null&&e.total_compressed_size!=null)typeof e.total_compressed_size=="number"?this.total_compressed_size=new po.default(e.total_compressed_size):this.total_compressed_size=e.total_compressed_size;else throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_compressed_size] is unset!");if(e!=null&&e.key_value_metadata!=null&&(this.key_value_metadata=e.key_value_metadata),e!=null&&e.data_page_offset!=null)typeof e.data_page_offset=="number"?this.data_page_offset=new po.default(e.data_page_offset):this.data_page_offset=e.data_page_offset;else throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[data_page_offset] is unset!");e!=null&&e.index_page_offset!=null&&(typeof e.index_page_offset=="number"?this.index_page_offset=new po.default(e.index_page_offset):this.index_page_offset=e.index_page_offset),e!=null&&e.dictionary_page_offset!=null&&(typeof e.dictionary_page_offset=="number"?this.dictionary_page_offset=new po.default(e.dictionary_page_offset):this.dictionary_page_offset=e.dictionary_page_offset),e!=null&&e.statistics!=null&&(this.statistics=e.statistics),e!=null&&e.encoding_stats!=null&&(this.encoding_stats=e.encoding_stats)}write(e){e.writeStructBegin("ColumnMetaData"),this.type!=null&&(e.writeFieldBegin("type",ve.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.encodings!=null&&(e.writeFieldBegin("encodings",ve.Thrift.Type.LIST,2),e.writeListBegin(ve.Thrift.Type.I32,this.encodings.length),this.encodings.forEach(r=>{e.writeI32(r)}),e.writeListEnd(),e.writeFieldEnd()),this.path_in_schema!=null&&(e.writeFieldBegin("path_in_schema",ve.Thrift.Type.LIST,3),e.writeListBegin(ve.Thrift.Type.STRING,this.path_in_schema.length),this.path_in_schema.forEach(r=>{e.writeString(r)}),e.writeListEnd(),e.writeFieldEnd()),this.codec!=null&&(e.writeFieldBegin("codec",ve.Thrift.Type.I32,4),e.writeI32(this.codec),e.writeFieldEnd()),this.num_values!=null&&(e.writeFieldBegin("num_values",ve.Thrift.Type.I64,5),e.writeI64(this.num_values),e.writeFieldEnd()),this.total_uncompressed_size!=null&&(e.writeFieldBegin("total_uncompressed_size",ve.Thrift.Type.I64,6),e.writeI64(this.total_uncompressed_size),e.writeFieldEnd()),this.total_compressed_size!=null&&(e.writeFieldBegin("total_compressed_size",ve.Thrift.Type.I64,7),e.writeI64(this.total_compressed_size),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",ve.Thrift.Type.LIST,8),e.writeListBegin(ve.Thrift.Type.STRUCT,this.key_value_metadata.length),this.key_value_metadata.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.data_page_offset!=null&&(e.writeFieldBegin("data_page_offset",ve.Thrift.Type.I64,9),e.writeI64(this.data_page_offset),e.writeFieldEnd()),this.index_page_offset!=null&&(e.writeFieldBegin("index_page_offset",ve.Thrift.Type.I64,10),e.writeI64(this.index_page_offset),e.writeFieldEnd()),this.dictionary_page_offset!=null&&(e.writeFieldBegin("dictionary_page_offset",ve.Thrift.Type.I64,11),e.writeI64(this.dictionary_page_offset),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",ve.Thrift.Type.STRUCT,12),this.statistics.write(e),e.writeFieldEnd()),this.encoding_stats!=null&&(e.writeFieldBegin("encoding_stats",ve.Thrift.Type.LIST,13),e.writeListBegin(ve.Thrift.Type.STRUCT,this.encoding_stats.length),this.encoding_stats.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===ve.Thrift.Type.STOP)break;switch(f){case 1:if(i===ve.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===ve.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=e.readI32();o.push(u)}e.readListEnd(),r.encodings=o}else e.skip(i);break;case 3:if(i===ve.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=e.readString();o.push(u)}e.readListEnd(),r.path_in_schema=o}else e.skip(i);break;case 4:if(i===ve.Thrift.Type.I32){let o=e.readI32();r.codec=o}else e.skip(i);break;case 5:if(i===ve.Thrift.Type.I64){let o=e.readI64();r.num_values=o}else e.skip(i);break;case 6:if(i===ve.Thrift.Type.I64){let o=e.readI64();r.total_uncompressed_size=o}else e.skip(i);break;case 7:if(i===ve.Thrift.Type.I64){let o=e.readI64();r.total_compressed_size=o}else e.skip(i);break;case 8:if(i===ve.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=ao.read(e);o.push(u)}e.readListEnd(),r.key_value_metadata=o}else e.skip(i);break;case 9:if(i===ve.Thrift.Type.I64){let o=e.readI64();r.data_page_offset=o}else e.skip(i);break;case 10:if(i===ve.Thrift.Type.I64){let o=e.readI64();r.index_page_offset=o}else e.skip(i);break;case 11:if(i===ve.Thrift.Type.I64){let o=e.readI64();r.dictionary_page_offset=o}else e.skip(i);break;case 12:if(i===ve.Thrift.Type.STRUCT){let o=Di.read(e);r.statistics=o}else e.skip(i);break;case 13:if(i===ve.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=Pl.read(e);o.push(u)}e.readListEnd(),r.encoding_stats=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.type!==void 0&&r.encodings!==void 0&&r.path_in_schema!==void 0&&r.codec!==void 0&&r.num_values!==void 0&&r.total_uncompressed_size!==void 0&&r.total_compressed_size!==void 0&&r.data_page_offset!==void 0)return new Ml(r);throw new ve.Thrift.TProtocolException(ve.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnMetaData from input")}};var eu=Te(_n()),Jt=Te(nt());var Ul=class{constructor(e){if(e!=null&&e.file_path!=null&&(this.file_path=e.file_path),e!=null&&e.file_offset!=null)typeof e.file_offset=="number"?this.file_offset=new eu.default(e.file_offset):this.file_offset=e.file_offset;else throw new Jt.Thrift.TProtocolException(Jt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[file_offset] is unset!");e!=null&&e.meta_data!=null&&(this.meta_data=e.meta_data),e!=null&&e.offset_index_offset!=null&&(typeof e.offset_index_offset=="number"?this.offset_index_offset=new eu.default(e.offset_index_offset):this.offset_index_offset=e.offset_index_offset),e!=null&&e.offset_index_length!=null&&(this.offset_index_length=e.offset_index_length),e!=null&&e.column_index_offset!=null&&(typeof e.column_index_offset=="number"?this.column_index_offset=new eu.default(e.column_index_offset):this.column_index_offset=e.column_index_offset),e!=null&&e.column_index_length!=null&&(this.column_index_length=e.column_index_length)}write(e){e.writeStructBegin("ColumnChunk"),this.file_path!=null&&(e.writeFieldBegin("file_path",Jt.Thrift.Type.STRING,1),e.writeString(this.file_path),e.writeFieldEnd()),this.file_offset!=null&&(e.writeFieldBegin("file_offset",Jt.Thrift.Type.I64,2),e.writeI64(this.file_offset),e.writeFieldEnd()),this.meta_data!=null&&(e.writeFieldBegin("meta_data",Jt.Thrift.Type.STRUCT,3),this.meta_data.write(e),e.writeFieldEnd()),this.offset_index_offset!=null&&(e.writeFieldBegin("offset_index_offset",Jt.Thrift.Type.I64,4),e.writeI64(this.offset_index_offset),e.writeFieldEnd()),this.offset_index_length!=null&&(e.writeFieldBegin("offset_index_length",Jt.Thrift.Type.I32,5),e.writeI32(this.offset_index_length),e.writeFieldEnd()),this.column_index_offset!=null&&(e.writeFieldBegin("column_index_offset",Jt.Thrift.Type.I64,6),e.writeI64(this.column_index_offset),e.writeFieldEnd()),this.column_index_length!=null&&(e.writeFieldBegin("column_index_length",Jt.Thrift.Type.I32,7),e.writeI32(this.column_index_length),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===Jt.Thrift.Type.STOP)break;switch(f){case 1:if(i===Jt.Thrift.Type.STRING){let o=e.readString();r.file_path=o}else e.skip(i);break;case 2:if(i===Jt.Thrift.Type.I64){let o=e.readI64();r.file_offset=o}else e.skip(i);break;case 3:if(i===Jt.Thrift.Type.STRUCT){let o=Ml.read(e);r.meta_data=o}else e.skip(i);break;case 4:if(i===Jt.Thrift.Type.I64){let o=e.readI64();r.offset_index_offset=o}else e.skip(i);break;case 5:if(i===Jt.Thrift.Type.I32){let o=e.readI32();r.offset_index_length=o}else e.skip(i);break;case 6:if(i===Jt.Thrift.Type.I64){let o=e.readI64();r.column_index_offset=o}else e.skip(i);break;case 7:if(i===Jt.Thrift.Type.I32){let o=e.readI32();r.column_index_length=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.file_offset!==void 0)return new Ul(r);throw new Jt.Thrift.TProtocolException(Jt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnChunk from input")}};var Td=Te(_n()),Zt=Te(nt());var Ll=class{constructor(e){if(e!=null&&e.columns!=null)this.columns=e.columns;else throw new Zt.Thrift.TProtocolException(Zt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[columns] is unset!");if(e!=null&&e.total_byte_size!=null)typeof e.total_byte_size=="number"?this.total_byte_size=new Td.default(e.total_byte_size):this.total_byte_size=e.total_byte_size;else throw new Zt.Thrift.TProtocolException(Zt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[total_byte_size] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new Td.default(e.num_rows):this.num_rows=e.num_rows;else throw new Zt.Thrift.TProtocolException(Zt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");e!=null&&e.sorting_columns!=null&&(this.sorting_columns=e.sorting_columns)}write(e){e.writeStructBegin("RowGroup"),this.columns!=null&&(e.writeFieldBegin("columns",Zt.Thrift.Type.LIST,1),e.writeListBegin(Zt.Thrift.Type.STRUCT,this.columns.length),this.columns.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.total_byte_size!=null&&(e.writeFieldBegin("total_byte_size",Zt.Thrift.Type.I64,2),e.writeI64(this.total_byte_size),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",Zt.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.sorting_columns!=null&&(e.writeFieldBegin("sorting_columns",Zt.Thrift.Type.LIST,4),e.writeListBegin(Zt.Thrift.Type.STRUCT,this.sorting_columns.length),this.sorting_columns.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===Zt.Thrift.Type.STOP)break;switch(f){case 1:if(i===Zt.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=Ul.read(e);o.push(u)}e.readListEnd(),r.columns=o}else e.skip(i);break;case 2:if(i===Zt.Thrift.Type.I64){let o=e.readI64();r.total_byte_size=o}else e.skip(i);break;case 3:if(i===Zt.Thrift.Type.I64){let o=e.readI64();r.num_rows=o}else e.skip(i);break;case 4:if(i===Zt.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=Fl.read(e);o.push(u)}e.readListEnd(),r.sorting_columns=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.columns!==void 0&&r.total_byte_size!==void 0&&r.num_rows!==void 0)return new Ll(r);throw new Zt.Thrift.TProtocolException(Zt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read RowGroup from input")}};var Dy=Te(nt()),Cl=class{constructor(){}write(e){e.writeStructBegin("TypeDefinedOrder"),e.writeFieldStop(),e.writeStructEnd()}static read(e){for(e.readStructBegin();;){let r=e.readFieldBegin(),n=r.ftype,i=r.fid;if(n===Dy.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Cl}};var zy=Te(_n()),wt=Te(nt());var Ur=Te(nt());var Xo=class{constructor(e){let r=0;if(e!=null){if(e.TYPE_ORDER!=null&&(r++,this.TYPE_ORDER=e.TYPE_ORDER),r>1)throw new Ur.Thrift.TProtocolException(Ur.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Ur.Thrift.TProtocolException(Ur.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromTYPE_ORDER(e){return new Xo({TYPE_ORDER:e})}write(e){e.writeStructBegin("ColumnOrder"),this.TYPE_ORDER!=null&&(e.writeFieldBegin("TYPE_ORDER",Ur.Thrift.Type.STRUCT,1),this.TYPE_ORDER.write(e),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){let r=0,n=null;for(e.readStructBegin();;){let i=e.readFieldBegin(),f=i.ftype,o=i.fid;if(f===Ur.Thrift.Type.STOP)break;switch(o){case 1:if(f===Ur.Thrift.Type.STRUCT){r++;let s=Cl.read(e);n=Xo.fromTYPE_ORDER(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Ur.Thrift.TProtocolException(Ur.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Ur.Thrift.TProtocolException(Ur.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Ur.Thrift.TProtocolException(Ur.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var Vl=class{constructor(e=null){if(e!=null&&e.version!=null)this.version=e.version;else throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[version] is unset!");if(e!=null&&e.schema!=null)this.schema=e.schema;else throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[schema] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new zy.default(e.num_rows):this.num_rows=e.num_rows;else throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.row_groups!=null)this.row_groups=e.row_groups;else throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[row_groups] is unset!");e!=null&&e.key_value_metadata!=null&&(this.key_value_metadata=e.key_value_metadata),e!=null&&e.created_by!=null&&(this.created_by=e.created_by),e!=null&&e.column_orders!=null&&(this.column_orders=e.column_orders)}write(e){e.writeStructBegin("FileMetaData"),this.version!=null&&(e.writeFieldBegin("version",wt.Thrift.Type.I32,1),e.writeI32(this.version),e.writeFieldEnd()),this.schema!=null&&(e.writeFieldBegin("schema",wt.Thrift.Type.LIST,2),e.writeListBegin(wt.Thrift.Type.STRUCT,this.schema.length),this.schema.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",wt.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.row_groups!=null&&(e.writeFieldBegin("row_groups",wt.Thrift.Type.LIST,4),e.writeListBegin(wt.Thrift.Type.STRUCT,this.row_groups.length),this.row_groups.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",wt.Thrift.Type.LIST,5),e.writeListBegin(wt.Thrift.Type.STRUCT,this.key_value_metadata.length),this.key_value_metadata.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),this.created_by!=null&&(e.writeFieldBegin("created_by",wt.Thrift.Type.STRING,6),e.writeString(this.created_by),e.writeFieldEnd()),this.column_orders!=null&&(e.writeFieldBegin("column_orders",wt.Thrift.Type.LIST,7),e.writeListBegin(wt.Thrift.Type.STRUCT,this.column_orders.length),this.column_orders.forEach(r=>{r.write(e)}),e.writeListEnd(),e.writeFieldEnd()),e.writeFieldStop(),e.writeStructEnd()}static read(e){e.readStructBegin();let r={};for(;;){let n=e.readFieldBegin(),i=n.ftype,f=n.fid;if(i===wt.Thrift.Type.STOP)break;switch(f){case 1:if(i===wt.Thrift.Type.I32){let o=e.readI32();r.version=o}else e.skip(i);break;case 2:if(i===wt.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=Ol.read(e);o.push(u)}e.readListEnd(),r.schema=o}else e.skip(i);break;case 3:if(i===wt.Thrift.Type.I64){let o=e.readI64();r.num_rows=o}else e.skip(i);break;case 4:if(i===wt.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=Ll.read(e);o.push(u)}e.readListEnd(),r.row_groups=o}else e.skip(i);break;case 5:if(i===wt.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=ao.read(e);o.push(u)}e.readListEnd(),r.key_value_metadata=o}else e.skip(i);break;case 6:if(i===wt.Thrift.Type.STRING){let o=e.readString();r.created_by=o}else e.skip(i);break;case 7:if(i===wt.Thrift.Type.LIST){let o=new Array,l=e.readListBegin().size;for(let p=0;p<l;p++){let u=Xo.read(e);o.push(u)}e.readListEnd(),r.column_orders=o}else e.skip(i);break;default:e.skip(i)}e.readFieldEnd()}if(e.readStructEnd(),r.version!==void 0&&r.schema!==void 0&&r.num_rows!==void 0&&r.row_groups!==void 0)return new Vl(r);throw new wt.Thrift.TProtocolException(wt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read FileMetaData from input")}};var Qo="PAR1",Fy="PARE";var Wl="INT32",Bd="RLE";var $o=Te(nt());var Id=class extends $o.TFramedTransport{constructor(){super(...arguments);this.readPos=0}};function In(t,e){for(let r in t)if(t[r]===e)return r;throw new Error("Invalid ENUM value")}function Py(t,e){e||(e=0);let r=new Id(t);r.readPos=e;let n=new $o.TCompactProtocol(r),i=Vl.read(n);return{length:r.readPos-e,metadata:i}}function My(t,e){e||(e=0);let r=new Id(t);r.readPos=e;let n=new $o.TCompactProtocol(r),i=zl.read(n);return{length:r.readPos-e,pageHeader:i}}function Yl(t){return t===0?0:Math.ceil(Math.log2(t+1))}function Uy(t,e){for(let r=0;r<t.length;r++){if(t[r].length>e.length)continue;let n=!0;for(let i=0;i<e.length;i++)if(!(t[r][i]===e[i]||t[r][i]==="+"||t[r][i]==="#")&&!(i>=t[r].length&&t[r][t[r].length-1]==="#")){n=!1;break}if(n)return r}return-1}async function Ly(t,e){let r={buffer:t,offset:0,size:t.length},n={rlevels:[],dlevels:[],values:[],pageHeaders:[],count:0},i=e.dictionary||[];for(;r.offset<r.size&&(!e.numValues||n.dlevels.length<Number(e.numValues));){let f=await Sd(r,e);if(f.dictionary){i=f.dictionary;continue}i.length&&(f.values=f.values.map(o=>i[o]));for(let o=0;o<f.rlevels.length;o++){n.rlevels.push(f.rlevels[o]),n.dlevels.push(f.dlevels[o]);let s=f.values[o];s!==void 0&&n.values.push(s)}n.count+=f.count,n.pageHeaders.push(f.pageHeader)}return n}async function Sd(t,e){let r,{pageHeader:n,length:i}=My(t.buffer,t.offset);t.offset+=i;let f=In(Op,n.type);switch(f){case"DATA_PAGE":r=await ES(t,n,e);break;case"DATA_PAGE_V2":r=await AS(t,n,e);break;case"DICTIONARY_PAGE":r={dictionary:await OS(t,n,e),pageHeader:n};break;default:throw new Error(`invalid page type: ${f}`)}return r}function xd(t,e,r){let n={},i=e;for(let f=0;f<r;f++){let o=t[i],s=i>0?In(Ep,o.repetition_type):"ROOT",l=!1,p=!1;switch(s){case"REQUIRED":break;case"OPTIONAL":l=!0;break;case"REPEATED":p=!0;break;default:throw new Error("parquet: unknown repetition type")}if(o.num_children>0){let u=xd(t,i+1,o.num_children);i=u.next,n[o.name]={optional:l,repeated:p,fields:u.schema}}else{let u=In(Co,o.type),b=u;switch(o.converted_type&&(b=In(xp,o.converted_type)),b){case"DECIMAL":b=`${b}_${u}`;break;default:}n[o.name]={type:b,typeLength:o.type_length,presision:o.precision,scale:o.scale,optional:l,repeated:p},i++}}return{schema:n,offset:e,next:i}}function uo(t,e,r,n,i){if(!(e in Fs))throw new Error(`invalid encoding: ${e}`);return Fs[e].decodeValues(t,r,n,i)}async function ES(t,e,r){let n=t.offset+e.compressed_page_size,i=e.data_page_header?.num_values,f=t;if(r.compression!=="UNCOMPRESSED"){let T=await wp(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);f={buffer:T,offset:0,size:T.length},t.offset=n}let o=In(oo,e.data_page_header?.repetition_level_encoding),s=new Array(i);r.column.rLevelMax>0?s=uo(Wl,o,f,i,{bitWidth:Yl(r.column.rLevelMax),disableEnvelope:!1}):s.fill(0);let l=In(oo,e.data_page_header?.definition_level_encoding),p=new Array(i);r.column.dLevelMax>0?p=uo(Wl,l,f,i,{bitWidth:Yl(r.column.dLevelMax),disableEnvelope:!1}):p.fill(0);let u=0;for(let T of p)T===r.column.dLevelMax&&u++;let b=In(oo,e.data_page_header?.encoding),c={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},h=uo(r.column.primitiveType,b,f,u,c);return{dlevels:p,rlevels:s,values:h,count:i,pageHeader:e}}async function AS(t,e,r){let n=t.offset+e.compressed_page_size,i=e.data_page_header_v2?.num_values,f=i-e.data_page_header_v2?.num_nulls,o=In(oo,e.data_page_header_v2?.encoding),s=new Array(i);r.column.rLevelMax>0?s=uo(Wl,Bd,t,i,{bitWidth:Yl(r.column.rLevelMax),disableEnvelope:!0}):s.fill(0);let l=new Array(i);r.column.dLevelMax>0?l=uo(Wl,Bd,t,i,{bitWidth:Yl(r.column.dLevelMax),disableEnvelope:!0}):l.fill(0);let p=t;if(e.data_page_header_v2?.is_compressed){let c=await wp(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);p={buffer:c,offset:0,size:c.length},t.offset=n}let u={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},b=uo(r.column.primitiveType,o,p,f,u);return{dlevels:l,rlevels:s,values:b,count:i,pageHeader:e}}async function OS(t,e,r){let n=t.offset+e.compressed_page_size,i={offset:0,buffer:t.buffer.slice(t.offset,n),size:n-t.offset};if(t.offset=n,r.compression!=="UNCOMPRESSED"){let o=await wp(r.compression,i.buffer.slice(i.offset,n),e.uncompressed_page_size);i={buffer:o,offset:0,size:o.length},t.offset=n}let f=e?.dictionary_page_header?.num_values||0;return uo(r.column.primitiveType,r.column.encoding,i,f,r).map(o=>o.toString())}var NS={defaultDictionarySize:1e6},Kl=class{constructor(e,r){this.metadata=null;this.file=e,this.props={...NS,...r}}close(){this.file.close()}async*rowIterator(e){for await(let r of this.rowBatchIterator(e))for(let n of r)yield n}async*rowBatchIterator(e){let r=await this.getSchema();for await(let n of this.rowGroupIterator(e))yield Sp(r,n)}async*rowGroupIterator(e){let r=(e?.columnList||[]).map(o=>Array.isArray(o)?o:[o]),n=await this.getFileMetadata(),i=await this.getSchema(),f=n?.row_groups.length||0;for(let o=0;o<f;o++)yield await this.readRowGroup(i,n.row_groups[o],r)}async getRowCount(){let e=await this.getFileMetadata();return Number(e.num_rows)}async getSchema(){let e=await this.getFileMetadata(),r=e.schema[0],{schema:n}=xd(e.schema,1,r.num_children);return new Cm(n)}async getSchemaMetadata(){let e=await this.getFileMetadata(),r={};for(let n of e.key_value_metadata)r[n.key]=n.value;return r}async getFileMetadata(){return this.metadata||(await this.readHeader(),this.metadata=this.readFooter()),this.metadata}async readHeader(){let r=(await this.file.read(0,Qo.length)).toString();switch(r){case Qo:break;case Fy:throw new Error("Encrypted parquet file not supported");default:throw new Error(`Invalid parquet file (magic=${r})`)}}async readFooter(){let e=Qo.length+4,r=await this.file.read(this.file.size-e,e),n=r.slice(4).toString();if(n!==Qo)throw new Error(`Not a valid parquet file (magic="${n})`);let i=r.readUInt32LE(0),f=this.file.size-i-e;if(f<Qo.length)throw new Error(`Invalid metadata size ${f}`);let o=await this.file.read(f,i),{metadata:s}=Py(o);return s}async readRowGroup(e,r,n){let i={rowCount:Number(r.num_rows),columnData:{}};for(let f of r.columns){let s=f.meta_data?.path_in_schema;n.length>0&&Uy(n,s)<0||(i.columnData[s.join()]=await this.readColumnChunk(e,f))}return i}async readColumnChunk(e,r){if(r.file_path!==void 0&&r.file_path!==null)throw new Error("external references are not supported");let n=e.findField(r.meta_data?.path_in_schema),i=In(Co,r.meta_data?.type);if(i!==n.primitiveType)throw new Error(`chunk type not matching schema: ${i}`);let f=In(Ap,r.meta_data?.codec),o=Number(r.meta_data?.data_page_offset),s=Number(r.meta_data?.total_compressed_size);r.file_path||(s=Math.min(this.file.size-o,Number(r.meta_data?.total_compressed_size)));let l={type:i,rLevelMax:n.rLevelMax,dLevelMax:n.dLevelMax,compression:f,column:n,numValues:r.meta_data?.num_values,dictionary:[]},p,u=r?.meta_data?.dictionary_page_offset;if(u){let c=Number(u);p=await this.getDictionary(c,l,o)}p=l.dictionary?.length?l.dictionary:p;let b=await this.file.read(o,s);return await Ly(b,{...l,dictionary:p})}async getDictionary(e,r,n){if(e===0)return[];let i=Math.min(this.file.size-e,this.props.defaultDictionarySize),f=await this.file.read(e,i),o={buffer:f,offset:0,size:f.length};return(await Sd(o,r)).dictionary}};async function Cy(t,e){let r=new Blob([t]),n=[];for await(let i of Ed(r,e))for(let f of i.data)n.push(f);return{shape:"object-row-table",data:n}}async function*Ed(t,e){let r=Rs(t),i=new Kl(r).rowBatchIterator(e?.parquet);for await(let f of i)yield{shape:"object-row-table",data:f,batchType:"data",length:f.length}}var HS={BOOLEAN:"bool",INT32:"int32",INT64:"float64",INT96:"float64",FLOAT:"float32",DOUBLE:"float64",BYTE_ARRAY:"binary",FIXED_LEN_BYTE_ARRAY:"binary",UTF8:"utf8",DATE:"int32",TIME_MILLIS:"int64",TIME_MICROS:"int64",TIMESTAMP_MILLIS:"int64",TIMESTAMP_MICROS:"int64",UINT_8:"int32",UINT_16:"uint16",UINT_32:"uint32",UINT_64:"uint64",INT_8:"int8",INT_16:"int16",INT_32:"int32",INT_64:"int64",JSON:"binary",BSON:"binary",INTERVAL:"binary",DECIMAL_INT32:"float32",DECIMAL_INT64:"float64",DECIMAL_BYTE_ARRAY:"float64",DECIMAL_FIXED_LEN_BYTE_ARRAY:"float64"};function Vy(t,e){let r=Wy(t.schema),n=e&&DS(e);return{fields:r,metadata:n||{}}}function Wy(t){let e=[];for(let r in t){let n=t[r];if(n.fields){let i=Wy(n.fields);e.push({name:r,type:{type:"struct",children:i},nullable:n.optional})}else{let i=HS[n.type],f=RS(n),o={name:r,type:i,nullable:n.optional,metadata:f};e.push(o)}}return e}function RS(t){let e;for(let r in t)if(r!=="name"){let n=t[r]||"";n=typeof t[r]!="string"?JSON.stringify(t[r]):t[r],e=e||{},e[r]=n}return e}function DS(t){let e,r=t.key_value_metadata||[];for(let{key:n,value:i}of r)typeof i=="string"&&(e=e||{},e[n]=i);return e}function zS(t){let e=t.metadata.geo;if(!e)return null;try{return JSON.parse(e)}catch{return null}}function Yy(t){let e=zS(t);if(!e)return;let{version:r,primary_column:n,columns:i}=e;r&&(t.metadata["geo.version"]=r),n&&(t.metadata["geo.primary_column"]=n),t.metadata["geo.columns"]=Object.keys(i||{}).join("");for(let[f,o]of Object.entries(i||{})){let s=t.fields.find(l=>l.name===f);s&&(s.name===n&&Ad(s,"geo.primary_field","true"),FS(s,o))}}function FS(t,e){for(let[r,n]of Object.entries(e||{}))switch(r){case"geometry_type":Ad(t,`geo.${r}`,n.join(","));break;case"bbox":case"crs":case"edges":default:Ad(t,`geo.${r}`,typeof n=="string"?n:JSON.stringify(n))}}function Ad(t,e,r){t.metadata=t.metadata||{},t.metadata[e]=r}async function Ky(t,e){let r=new Blob([t]);for await(let n of Od(r,e))return{shape:"columnar-table",schema:n.schema,data:n.data};throw new Error("empty table")}async function*Od(t,e){let r=Rs(t),n=new Kl(r),i=await n.getSchema(),f=await n.getFileMetadata(),o=Vy(i,f);Yy(o);let s=n.rowGroupIterator(e?.parquet);for await(let l of s)yield PS(i,l,o)}function PS(t,e,r){let n=oj(t,e);return{shape:"columnar-table",batchType:"data",schema:r,data:n,length:e.rowCount}}var y0=Te(j0()),{__extends:YR,__assign:KR,__rest:v0,__decorate:GR,__param:JR,__esDecorate:ZR,__runInitializers:XR,__propKey:QR,__setFunctionName:$R,__metadata:eD,__awaiter:pe,__generator:tD,__exportStar:rD,__createBinding:nD,__values:iD,__read:fD,__spread:oD,__spreadArrays:sD,__spreadArray:lD,__await:Ve,__asyncGenerator:Lr,__asyncDelegator:ts,__asyncValues:Sn,__makeTemplateObject:aD,__importStar:pD,__importDefault:uD,__classPrivateFieldGet:cD,__classPrivateFieldSet:mD,__classPrivateFieldIn:dD}=y0.default;var Pd={};Cf(Pd,{compareArrayLike:()=>Fd,joinUint8Arrays:()=>$r,memcpy:()=>ns,rebaseValueOffsets:()=>Xl,toArrayBufferView:()=>Ge,toArrayBufferViewAsyncIterator:()=>Un,toArrayBufferViewIterator:()=>li,toBigInt64Array:()=>YS,toBigUint64Array:()=>JS,toFloat32Array:()=>ZS,toFloat32ArrayAsyncIterator:()=>cx,toFloat32ArrayIterator:()=>ix,toFloat64Array:()=>XS,toFloat64ArrayAsyncIterator:()=>mx,toFloat64ArrayIterator:()=>fx,toInt16Array:()=>WS,toInt16ArrayAsyncIterator:()=>lx,toInt16ArrayIterator:()=>ex,toInt32Array:()=>co,toInt32ArrayAsyncIterator:()=>ax,toInt32ArrayIterator:()=>tx,toInt8Array:()=>VS,toInt8ArrayAsyncIterator:()=>sx,toInt8ArrayIterator:()=>$S,toUint16Array:()=>KS,toUint16ArrayAsyncIterator:()=>px,toUint16ArrayIterator:()=>rx,toUint32Array:()=>GS,toUint32ArrayAsyncIterator:()=>ux,toUint32ArrayIterator:()=>nx,toUint8Array:()=>Ee,toUint8ArrayAsyncIterator:()=>zd,toUint8ArrayIterator:()=>Dd,toUint8ClampedArray:()=>QS,toUint8ClampedArrayAsyncIterator:()=>dx,toUint8ClampedArrayIterator:()=>ox});var MS=new TextDecoder("utf-8"),Gl=t=>MS.decode(t),US=new TextEncoder,jf=t=>US.encode(t);var[bD,iu]=(()=>{let t=()=>{throw new Error("BigInt is not available in this environment")};function e(){throw t()}return e.asIntN=()=>{throw t()},e.asUintN=()=>{throw t()},typeof BigInt!="undefined"?[BigInt,!0]:[e,!1]})(),[Jl,gD]=(()=>{let t=()=>{throw new Error("BigInt64Array is not available in this environment")};class e{static get BYTES_PER_ELEMENT(){return 8}static of(){throw t()}static from(){throw t()}constructor(){throw t()}}return typeof BigInt64Array!="undefined"?[BigInt64Array,!0]:[e,!1]})(),[rs,jD]=(()=>{let t=()=>{throw new Error("BigUint64Array is not available in this environment")};class e{static get BYTES_PER_ELEMENT(){return 8}static of(){throw t()}static from(){throw t()}constructor(){throw t()}}return typeof BigUint64Array!="undefined"?[BigUint64Array,!0]:[e,!1]})();var LS=t=>typeof t=="number",_0=t=>typeof t=="boolean",ir=t=>typeof t=="function",xr=t=>t!=null&&Object(t)===t,Pn=t=>xr(t)&&ir(t.then);var Mn=t=>xr(t)&&ir(t[Symbol.iterator]),xn=t=>xr(t)&&ir(t[Symbol.asyncIterator]),fu=t=>xr(t)&&xr(t.schema);var ou=t=>xr(t)&&"done"in t&&"value"in t;var su=t=>xr(t)&&ir(t.stat)&&LS(t.fd);var lu=t=>xr(t)&&Zl(t.body),au=t=>"_getDOMStream"in t&&"_getNodeStream"in t,q0=t=>xr(t)&&ir(t.abort)&&ir(t.getWriter)&&!au(t),Zl=t=>xr(t)&&ir(t.cancel)&&ir(t.getReader)&&!au(t),k0=t=>xr(t)&&ir(t.end)&&ir(t.write)&&_0(t.writable)&&!au(t),pu=t=>xr(t)&&ir(t.read)&&ir(t.pipe)&&_0(t.readable)&&!au(t),T0=t=>xr(t)&&ir(t.clear)&&ir(t.bytes)&&ir(t.position)&&ir(t.setPosition)&&ir(t.capacity)&&ir(t.getBufferIdentifier)&&ir(t.createLong);var Hd=typeof SharedArrayBuffer!="undefined"?SharedArrayBuffer:ArrayBuffer;function CS(t){let e=t[0]?[t[0]]:[],r,n,i,f;for(let o,s,l=0,p=0,u=t.length;++l<u;){if(o=e[p],s=t[l],!o||!s||o.buffer!==s.buffer||s.byteOffset<o.byteOffset){s&&(e[++p]=s);continue}if({byteOffset:r,byteLength:i}=o,{byteOffset:n,byteLength:f}=s,r+i<n||n+f<r){s&&(e[++p]=s);continue}e[p]=new Uint8Array(o.buffer,r,n-r+f)}return e}function ns(t,e,r=0,n=e.byteLength){let i=t.byteLength,f=new Uint8Array(t.buffer,t.byteOffset,i),o=new Uint8Array(e.buffer,e.byteOffset,Math.min(n,i));return f.set(o,r),t}function $r(t,e){let r=CS(t),n=r.reduce((u,b)=>u+b.byteLength,0),i,f,o,s=0,l=-1,p=Math.min(e||Number.POSITIVE_INFINITY,n);for(let u=r.length;++l<u;){if(i=r[l],f=i.subarray(0,Math.min(i.length,p-s)),p<=s+f.length){f.length<i.length?r[l]=i.subarray(f.length):f.length===i.length&&l++,o?ns(o,f,s):o=f;break}ns(o||(o=new Uint8Array(p)),f,s),s+=f.length}return[o||new Uint8Array(0),r.slice(l),n-(o?o.byteLength:0)]}function Ge(t,e){let r=ou(e)?e.value:e;return r instanceof t?t===Uint8Array?new t(r.buffer,r.byteOffset,r.byteLength):r:r?(typeof r=="string"&&(r=jf(r)),r instanceof ArrayBuffer?new t(r):r instanceof Hd?new t(r):T0(r)?Ge(t,r.bytes()):ArrayBuffer.isView(r)?r.byteLength<=0?new t(0):new t(r.buffer,r.byteOffset,r.byteLength/t.BYTES_PER_ELEMENT):t.from(r)):new t(0)}var VS=t=>Ge(Int8Array,t),WS=t=>Ge(Int16Array,t),co=t=>Ge(Int32Array,t),YS=t=>Ge(Jl,t),Ee=t=>Ge(Uint8Array,t),KS=t=>Ge(Uint16Array,t),GS=t=>Ge(Uint32Array,t),JS=t=>Ge(rs,t),ZS=t=>Ge(Float32Array,t),XS=t=>Ge(Float64Array,t),QS=t=>Ge(Uint8ClampedArray,t),Rd=t=>(t.next(),t);function*li(t,e){let r=function*(i){yield i},n=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof Hd?r(e):Mn(e)?e:r(e);return yield*Rd(function*(i){let f=null;do f=i.next(yield Ge(t,f));while(!f.done)}(n[Symbol.iterator]())),new t}var $S=t=>li(Int8Array,t),ex=t=>li(Int16Array,t),tx=t=>li(Int32Array,t),Dd=t=>li(Uint8Array,t),rx=t=>li(Uint16Array,t),nx=t=>li(Uint32Array,t),ix=t=>li(Float32Array,t),fx=t=>li(Float64Array,t),ox=t=>li(Uint8ClampedArray,t);function Un(t,e){return Lr(this,arguments,function*(){if(Pn(e))return yield Ve(yield Ve(yield*ts(Sn(Un(t,yield Ve(e))))));let n=function(o){return Lr(this,arguments,function*(){yield yield Ve(yield Ve(o))})},i=function(o){return Lr(this,arguments,function*(){yield Ve(yield*ts(Sn(Rd(function*(s){let l=null;do l=s.next(yield l==null?void 0:l.value);while(!l.done)}(o[Symbol.iterator]())))))})},f=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof Hd?n(e):Mn(e)?i(e):xn(e)?e:n(e);return yield Ve(yield*ts(Sn(Rd(function(o){return Lr(this,arguments,function*(){let s=null;do s=yield Ve(o.next(yield yield Ve(Ge(t,s))));while(!s.done)})}(f[Symbol.asyncIterator]()))))),yield Ve(new t)})}var sx=t=>Un(Int8Array,t),lx=t=>Un(Int16Array,t),ax=t=>Un(Int32Array,t),zd=t=>Un(Uint8Array,t),px=t=>Un(Uint16Array,t),ux=t=>Un(Uint32Array,t),cx=t=>Un(Float32Array,t),mx=t=>Un(Float64Array,t),dx=t=>Un(Uint8ClampedArray,t);function Xl(t,e,r){if(t!==0){r=r.slice(0,e+1);for(let n=-1;++n<=e;)r[n]+=t}return r}function Fd(t,e){let r=0,n=t.length;if(n!==e.length)return!1;if(n>0)do if(t[r]!==e[r])return!1;while(++r<n);return!0}var cr={fromIterable(t){return uu(wx(t))},fromAsyncIterable(t){return uu(hx(t))},fromDOMStream(t){return uu(bx(t))},fromNodeStream(t){return uu(gx(t))},toDOMStream(t,e){throw new Error('"toDOMStream" not available in this environment')},toNodeStream(t,e){throw new Error('"toNodeStream" not available in this environment')}},uu=t=>(t.next(),t);function*wx(t){let e,r=!1,n=[],i,f,o,s=0;function l(){return f==="peek"?$r(n,o)[0]:([i,n,s]=$r(n,o),i)}({cmd:f,size:o}=yield null);let p=Dd(t)[Symbol.iterator]();try{do if({done:e,value:i}=Number.isNaN(o-s)?p.next():p.next(o-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||o<=s)do({cmd:f,size:o}=yield l());while(o<s);while(!e)}catch(u){(r=!0)&&typeof p.throw=="function"&&p.throw(u)}finally{r===!1&&typeof p.return=="function"&&p.return(null)}return null}function hx(t){return Lr(this,arguments,function*(){let r,n=!1,i=[],f,o,s,l=0;function p(){return o==="peek"?$r(i,s)[0]:([f,i,l]=$r(i,s),f)}({cmd:o,size:s}=yield yield Ve(null));let u=zd(t)[Symbol.asyncIterator]();try{do if({done:r,value:f}=Number.isNaN(s-l)?yield Ve(u.next()):yield Ve(u.next(s-l)),!r&&f.byteLength>0&&(i.push(f),l+=f.byteLength),r||s<=l)do({cmd:o,size:s}=yield yield Ve(p()));while(s<l);while(!r)}catch(b){(n=!0)&&typeof u.throw=="function"&&(yield Ve(u.throw(b)))}finally{n===!1&&typeof u.return=="function"&&(yield Ve(u.return(new Uint8Array(0))))}return yield Ve(null)})}function bx(t){return Lr(this,arguments,function*(){let r=!1,n=!1,i=[],f,o,s,l=0;function p(){return o==="peek"?$r(i,s)[0]:([f,i,l]=$r(i,s),f)}({cmd:o,size:s}=yield yield Ve(null));let u=new B0(t);try{do if({done:r,value:f}=Number.isNaN(s-l)?yield Ve(u.read()):yield Ve(u.read(s-l)),!r&&f.byteLength>0&&(i.push(Ee(f)),l+=f.byteLength),r||s<=l)do({cmd:o,size:s}=yield yield Ve(p()));while(s<l);while(!r)}catch(b){(n=!0)&&(yield Ve(u.cancel(b)))}finally{n===!1?yield Ve(u.cancel()):t.locked&&u.releaseLock()}return yield Ve(null)})}var B0=class{constructor(e){this.source=e,this.reader=null,this.reader=this.source.getReader(),this.reader.closed.catch(()=>{})}get closed(){return this.reader?this.reader.closed.catch(()=>{}):Promise.resolve()}releaseLock(){this.reader&&this.reader.releaseLock(),this.reader=null}cancel(e){return pe(this,void 0,void 0,function*(){let{reader:r,source:n}=this;r&&(yield r.cancel(e).catch(()=>{})),n&&n.locked&&this.releaseLock()})}read(e){return pe(this,void 0,void 0,function*(){if(e===0)return{done:this.reader==null,value:new Uint8Array(0)};let r=yield this.reader.read();return!r.done&&(r.value=Ee(r)),r})}},Md=(t,e)=>{let r=i=>n([e,i]),n;return[e,r,new Promise(i=>(n=i)&&t.once(e,r))]};function gx(t){return Lr(this,arguments,function*(){let r=[],n="error",i=!1,f=null,o,s,l=0,p=[],u;function b(){return o==="peek"?$r(p,s)[0]:([u,p,l]=$r(p,s),u)}if({cmd:o,size:s}=yield yield Ve(null),t.isTTY)return yield yield Ve(new Uint8Array(0)),yield Ve(null);try{r[0]=Md(t,"end"),r[1]=Md(t,"error");do{if(r[2]=Md(t,"readable"),[n,f]=yield Ve(Promise.race(r.map(h=>h[2]))),n==="error")break;if((i=n==="end")||(Number.isFinite(s-l)?(u=Ee(t.read(s-l)),u.byteLength<s-l&&(u=Ee(t.read()))):u=Ee(t.read()),u.byteLength>0&&(p.push(u),l+=u.byteLength)),i||s<=l)do({cmd:o,size:s}=yield yield Ve(b()));while(s<l)}while(!i)}finally{yield Ve(c(r,n==="error"?f:null))}return yield Ve(null);function c(h,T){return u=p=null,new Promise((y,N)=>{for(let[P,R]of h)t.off(P,R);try{let P=t.destroy;P&&P.call(t,T),T=void 0}catch(P){T=P||T}finally{T!=null?N(T):y()}})}})}var mr;(function(t){t[t.V1=0]="V1",t[t.V2=1]="V2",t[t.V3=2]="V3",t[t.V4=3]="V4",t[t.V5=4]="V5"})(mr||(mr={}));var Ut;(function(t){t[t.Sparse=0]="Sparse",t[t.Dense=1]="Dense"})(Ut||(Ut={}));var Dt;(function(t){t[t.HALF=0]="HALF",t[t.SINGLE=1]="SINGLE",t[t.DOUBLE=2]="DOUBLE"})(Dt||(Dt={}));var qr;(function(t){t[t.DAY=0]="DAY",t[t.MILLISECOND=1]="MILLISECOND"})(qr||(qr={}));var Qe;(function(t){t[t.SECOND=0]="SECOND",t[t.MILLISECOND=1]="MILLISECOND",t[t.MICROSECOND=2]="MICROSECOND",t[t.NANOSECOND=3]="NANOSECOND"})(Qe||(Qe={}));var Cr;(function(t){t[t.YEAR_MONTH=0]="YEAR_MONTH",t[t.DAY_TIME=1]="DAY_TIME",t[t.MONTH_DAY_NANO=2]="MONTH_DAY_NANO"})(Cr||(Cr={}));var ft;(function(t){t[t.NONE=0]="NONE",t[t.Schema=1]="Schema",t[t.DictionaryBatch=2]="DictionaryBatch",t[t.RecordBatch=3]="RecordBatch",t[t.Tensor=4]="Tensor",t[t.SparseTensor=5]="SparseTensor"})(ft||(ft={}));var H;(function(t){t[t.NONE=0]="NONE",t[t.Null=1]="Null",t[t.Int=2]="Int",t[t.Float=3]="Float",t[t.Binary=4]="Binary",t[t.Utf8=5]="Utf8",t[t.Bool=6]="Bool",t[t.Decimal=7]="Decimal",t[t.Date=8]="Date",t[t.Time=9]="Time",t[t.Timestamp=10]="Timestamp",t[t.Interval=11]="Interval",t[t.List=12]="List",t[t.Struct=13]="Struct",t[t.Union=14]="Union",t[t.FixedSizeBinary=15]="FixedSizeBinary",t[t.FixedSizeList=16]="FixedSizeList",t[t.Map=17]="Map",t[t.Dictionary=-1]="Dictionary",t[t.Int8=-2]="Int8",t[t.Int16=-3]="Int16",t[t.Int32=-4]="Int32",t[t.Int64=-5]="Int64",t[t.Uint8=-6]="Uint8",t[t.Uint16=-7]="Uint16",t[t.Uint32=-8]="Uint32",t[t.Uint64=-9]="Uint64",t[t.Float16=-10]="Float16",t[t.Float32=-11]="Float32",t[t.Float64=-12]="Float64",t[t.DateDay=-13]="DateDay",t[t.DateMillisecond=-14]="DateMillisecond",t[t.TimestampSecond=-15]="TimestampSecond",t[t.TimestampMillisecond=-16]="TimestampMillisecond",t[t.TimestampMicrosecond=-17]="TimestampMicrosecond",t[t.TimestampNanosecond=-18]="TimestampNanosecond",t[t.TimeSecond=-19]="TimeSecond",t[t.TimeMillisecond=-20]="TimeMillisecond",t[t.TimeMicrosecond=-21]="TimeMicrosecond",t[t.TimeNanosecond=-22]="TimeNanosecond",t[t.DenseUnion=-23]="DenseUnion",t[t.SparseUnion=-24]="SparseUnion",t[t.IntervalDayTime=-25]="IntervalDayTime",t[t.IntervalYearMonth=-26]="IntervalYearMonth"})(H||(H={}));var Ln;(function(t){t[t.OFFSET=0]="OFFSET",t[t.DATA=1]="DATA",t[t.VALIDITY=2]="VALIDITY",t[t.TYPE=3]="TYPE"})(Ln||(Ln={}));var aw={};Cf(aw,{clampIndex:()=>a1,clampRange:()=>ea,createElementComparator:()=>Ef});var jx=void 0;function Cn(t){if(t===null)return"null";if(t===jx)return"undefined";switch(typeof t){case"number":return`${t}`;case"bigint":return`${t}`;case"string":return`"${t}"`}return typeof t[Symbol.toPrimitive]=="function"?t[Symbol.toPrimitive]("string"):ArrayBuffer.isView(t)?t instanceof BigInt64Array||t instanceof BigUint64Array?`[${[...t].map(e=>Cn(e))}]`:`[${t}]`:ArrayBuffer.isView(t)?`[${t}]`:JSON.stringify(t,(e,r)=>typeof r=="bigint"?`${r}`:r)}var Ld={};Cf(Ld,{BN:()=>os,bignumToBigInt:()=>cu,bignumToString:()=>yf,isArrowBigNumSymbol:()=>I0});var I0=Symbol.for("isArrowBigNum");function Vn(t,...e){return e.length===0?Object.setPrototypeOf(Ge(this.TypedArray,t),this.constructor.prototype):Object.setPrototypeOf(new this.TypedArray(t,...e),this.constructor.prototype)}Vn.prototype[I0]=!0;Vn.prototype.toJSON=function(){return`"${yf(this)}"`};Vn.prototype.valueOf=function(){return S0(this)};Vn.prototype.toString=function(){return yf(this)};Vn.prototype[Symbol.toPrimitive]=function(t="default"){switch(t){case"number":return S0(this);case"string":return yf(this);case"default":return cu(this)}return yf(this)};function is(...t){return Vn.apply(this,t)}function fs(...t){return Vn.apply(this,t)}function Ql(...t){return Vn.apply(this,t)}Object.setPrototypeOf(is.prototype,Object.create(Int32Array.prototype));Object.setPrototypeOf(fs.prototype,Object.create(Uint32Array.prototype));Object.setPrototypeOf(Ql.prototype,Object.create(Uint32Array.prototype));Object.assign(is.prototype,Vn.prototype,{constructor:is,signed:!0,TypedArray:Int32Array,BigIntArray:Jl});Object.assign(fs.prototype,Vn.prototype,{constructor:fs,signed:!1,TypedArray:Uint32Array,BigIntArray:rs});Object.assign(Ql.prototype,Vn.prototype,{constructor:Ql,signed:!0,TypedArray:Uint32Array,BigIntArray:rs});function S0(t){let{buffer:e,byteOffset:r,length:n,signed:i}=t,f=new rs(e,r,n),o=i&&f[f.length-1]&BigInt(1)<<BigInt(63),s=BigInt(o?1:0),l=BigInt(0);if(o){for(let p of f)s+=~p*(BigInt(1)<<BigInt(32)*l++);s*=BigInt(-1)}else for(let p of f)s+=p*(BigInt(1)<<BigInt(32)*l++);return s}var yf,cu;iu?(cu=t=>t.byteLength===8?new t.BigIntArray(t.buffer,t.byteOffset,1)[0]:Ud(t),yf=t=>t.byteLength===8?`${new t.BigIntArray(t.buffer,t.byteOffset,1)[0]}`:Ud(t)):(yf=Ud,cu=yf);function Ud(t){let e="",r=new Uint32Array(2),n=new Uint16Array(t.buffer,t.byteOffset,t.byteLength/2),i=new Uint32Array((n=new Uint16Array(n).reverse()).buffer),f=-1,o=n.length-1;do{for(r[0]=n[f=0];f<o;)n[f++]=r[1]=r[0]/10,r[0]=(r[0]-r[1]*10<<16)+n[f];n[f]=r[1]=r[0]/10,r[0]=r[0]-r[1]*10,e=`${r[0]}${e}`}while(i[0]||i[1]||i[2]||i[3]);return e||"0"}var os=class{static new(e,r){switch(r){case!0:return new is(e);case!1:return new fs(e)}switch(e.constructor){case Int8Array:case Int16Array:case Int32Array:case Jl:return new is(e)}return e.byteLength===16?new Ql(e):new fs(e)}static signed(e){return new is(e)}static unsigned(e){return new fs(e)}static decimal(e){return new Ql(e)}constructor(e,r){return os.new(e,r)}};var x0,E0,A0,O0,N0,H0,R0,D0,z0,F0,P0,M0,U0,L0,C0,V0,W0,Y0,K0,je=class{static isNull(e){return(e==null?void 0:e.typeId)===H.Null}static isInt(e){return(e==null?void 0:e.typeId)===H.Int}static isFloat(e){return(e==null?void 0:e.typeId)===H.Float}static isBinary(e){return(e==null?void 0:e.typeId)===H.Binary}static isUtf8(e){return(e==null?void 0:e.typeId)===H.Utf8}static isBool(e){return(e==null?void 0:e.typeId)===H.Bool}static isDecimal(e){return(e==null?void 0:e.typeId)===H.Decimal}static isDate(e){return(e==null?void 0:e.typeId)===H.Date}static isTime(e){return(e==null?void 0:e.typeId)===H.Time}static isTimestamp(e){return(e==null?void 0:e.typeId)===H.Timestamp}static isInterval(e){return(e==null?void 0:e.typeId)===H.Interval}static isList(e){return(e==null?void 0:e.typeId)===H.List}static isStruct(e){return(e==null?void 0:e.typeId)===H.Struct}static isUnion(e){return(e==null?void 0:e.typeId)===H.Union}static isFixedSizeBinary(e){return(e==null?void 0:e.typeId)===H.FixedSizeBinary}static isFixedSizeList(e){return(e==null?void 0:e.typeId)===H.FixedSizeList}static isMap(e){return(e==null?void 0:e.typeId)===H.Map}static isDictionary(e){return(e==null?void 0:e.typeId)===H.Dictionary}static isDenseUnion(e){return je.isUnion(e)&&e.mode===Ut.Dense}static isSparseUnion(e){return je.isUnion(e)&&e.mode===Ut.Sparse}get typeId(){return H.NONE}};x0=Symbol.toStringTag;je[x0]=(t=>(t.children=null,t.ArrayType=Array,t[Symbol.toStringTag]="DataType"))(je.prototype);var Vr=class extends je{toString(){return"Null"}get typeId(){return H.Null}};E0=Symbol.toStringTag;Vr[E0]=(t=>t[Symbol.toStringTag]="Null")(Vr.prototype);var Xt=class extends je{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return H.Int}get ArrayType(){switch(this.bitWidth){case 8:return this.isSigned?Int8Array:Uint8Array;case 16:return this.isSigned?Int16Array:Uint16Array;case 32:return this.isSigned?Int32Array:Uint32Array;case 64:return this.isSigned?BigInt64Array:BigUint64Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`${this.isSigned?"I":"Ui"}nt${this.bitWidth}`}};A0=Symbol.toStringTag;Xt[A0]=(t=>(t.isSigned=null,t.bitWidth=null,t[Symbol.toStringTag]="Int"))(Xt.prototype);var Cd=class extends Xt{constructor(){super(!0,8)}get ArrayType(){return Int8Array}},Vd=class extends Xt{constructor(){super(!0,16)}get ArrayType(){return Int16Array}},zi=class extends Xt{constructor(){super(!0,32)}get ArrayType(){return Int32Array}},Wd=class extends Xt{constructor(){super(!0,64)}get ArrayType(){return BigInt64Array}},Yd=class extends Xt{constructor(){super(!1,8)}get ArrayType(){return Uint8Array}},Kd=class extends Xt{constructor(){super(!1,16)}get ArrayType(){return Uint16Array}},Gd=class extends Xt{constructor(){super(!1,32)}get ArrayType(){return Uint32Array}},Jd=class extends Xt{constructor(){super(!1,64)}get ArrayType(){return BigUint64Array}};Object.defineProperty(Cd.prototype,"ArrayType",{value:Int8Array});Object.defineProperty(Vd.prototype,"ArrayType",{value:Int16Array});Object.defineProperty(zi.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(Wd.prototype,"ArrayType",{value:BigInt64Array});Object.defineProperty(Yd.prototype,"ArrayType",{value:Uint8Array});Object.defineProperty(Kd.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Gd.prototype,"ArrayType",{value:Uint32Array});Object.defineProperty(Jd.prototype,"ArrayType",{value:BigUint64Array});var en=class extends je{constructor(e){super();this.precision=e}get typeId(){return H.Float}get ArrayType(){switch(this.precision){case Dt.HALF:return Uint16Array;case Dt.SINGLE:return Float32Array;case Dt.DOUBLE:return Float64Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`Float${this.precision<<5||16}`}};O0=Symbol.toStringTag;en[O0]=(t=>(t.precision=null,t[Symbol.toStringTag]="Float"))(en.prototype);var Zd=class extends en{constructor(){super(Dt.HALF)}},Xd=class extends en{constructor(){super(Dt.SINGLE)}},Qd=class extends en{constructor(){super(Dt.DOUBLE)}};Object.defineProperty(Zd.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Xd.prototype,"ArrayType",{value:Float32Array});Object.defineProperty(Qd.prototype,"ArrayType",{value:Float64Array});var vf=class extends je{constructor(){super()}get typeId(){return H.Binary}toString(){return"Binary"}};N0=Symbol.toStringTag;vf[N0]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Binary"))(vf.prototype);var _f=class extends je{constructor(){super()}get typeId(){return H.Utf8}toString(){return"Utf8"}};H0=Symbol.toStringTag;_f[H0]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Utf8"))(_f.prototype);var qf=class extends je{constructor(){super()}get typeId(){return H.Bool}toString(){return"Bool"}};R0=Symbol.toStringTag;qf[R0]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Bool"))(qf.prototype);var kf=class extends je{constructor(e,r,n=128){super();this.scale=e,this.precision=r,this.bitWidth=n}get typeId(){return H.Decimal}toString(){return`Decimal[${this.precision}e${this.scale>0?"+":""}${this.scale}]`}};D0=Symbol.toStringTag;kf[D0]=(t=>(t.scale=null,t.precision=null,t.ArrayType=Uint32Array,t[Symbol.toStringTag]="Decimal"))(kf.prototype);var Tf=class extends je{constructor(e){super();this.unit=e}get typeId(){return H.Date}toString(){return`Date${(this.unit+1)*32}<${qr[this.unit]}>`}};z0=Symbol.toStringTag;Tf[z0]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Date"))(Tf.prototype);var ai=class extends je{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return H.Time}toString(){return`Time${this.bitWidth}<${Qe[this.unit]}>`}get ArrayType(){switch(this.bitWidth){case 32:return Int32Array;case 64:return BigInt64Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}};F0=Symbol.toStringTag;ai[F0]=(t=>(t.unit=null,t.bitWidth=null,t[Symbol.toStringTag]="Time"))(ai.prototype);var Bf=class extends je{constructor(e,r){super();this.unit=e,this.timezone=r}get typeId(){return H.Timestamp}toString(){return`Timestamp<${Qe[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}};P0=Symbol.toStringTag;Bf[P0]=(t=>(t.unit=null,t.timezone=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Timestamp"))(Bf.prototype);var If=class extends je{constructor(e){super();this.unit=e}get typeId(){return H.Interval}toString(){return`Interval<${Cr[this.unit]}>`}};M0=Symbol.toStringTag;If[M0]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Interval"))(If.prototype);var pi=class extends je{constructor(e){super();this.children=[e]}get typeId(){return H.List}toString(){return`List<${this.valueType}>`}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get ArrayType(){return this.valueType.ArrayType}};U0=Symbol.toStringTag;pi[U0]=(t=>(t.children=null,t[Symbol.toStringTag]="List"))(pi.prototype);var Ot=class extends je{constructor(e){super();this.children=e}get typeId(){return H.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};L0=Symbol.toStringTag;Ot[L0]=(t=>(t.children=null,t[Symbol.toStringTag]="Struct"))(Ot.prototype);var ui=class extends je{constructor(e,r,n){super();this.mode=e,this.children=n,this.typeIds=r=Int32Array.from(r),this.typeIdToChildIndex=r.reduce((i,f,o)=>(i[f]=o)&&i||i,Object.create(null))}get typeId(){return H.Union}toString(){return`${this[Symbol.toStringTag]}<${this.children.map(e=>`${e.type}`).join(" | ")}>`}};C0=Symbol.toStringTag;ui[C0]=(t=>(t.mode=null,t.typeIds=null,t.children=null,t.typeIdToChildIndex=null,t.ArrayType=Int8Array,t[Symbol.toStringTag]="Union"))(ui.prototype);var Sf=class extends je{constructor(e){super();this.byteWidth=e}get typeId(){return H.FixedSizeBinary}toString(){return`FixedSizeBinary[${this.byteWidth}]`}};V0=Symbol.toStringTag;Sf[V0]=(t=>(t.byteWidth=null,t.ArrayType=Uint8Array,t[Symbol.toStringTag]="FixedSizeBinary"))(Sf.prototype);var ci=class extends je{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return H.FixedSizeList}get valueType(){return this.children[0].type}get valueField(){return this.children[0]}get ArrayType(){return this.valueType.ArrayType}toString(){return`FixedSizeList[${this.listSize}]<${this.valueType}>`}};W0=Symbol.toStringTag;ci[W0]=(t=>(t.children=null,t.listSize=null,t[Symbol.toStringTag]="FixedSizeList"))(ci.prototype);var mi=class extends je{constructor(e,r=!1){super();this.children=[e],this.keysSorted=r}get typeId(){return H.Map}get keyType(){return this.children[0].type.children[0].type}get valueType(){return this.children[0].type.children[1].type}get childType(){return this.children[0].type}toString(){return`Map<{${this.children[0].type.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};Y0=Symbol.toStringTag;mi[Y0]=(t=>(t.children=null,t.keysSorted=null,t[Symbol.toStringTag]="Map_"))(mi.prototype);var yx=(t=>()=>++t)(-1),En=class extends je{constructor(e,r,n,i){super();this.indices=r,this.dictionary=e,this.isOrdered=i||!1,this.id=n==null?yx():typeof n=="number"?n:n.low}get typeId(){return H.Dictionary}get children(){return this.dictionary.children}get valueType(){return this.dictionary}get ArrayType(){return this.dictionary.ArrayType}toString(){return`Dictionary<${this.indices}, ${this.dictionary}>`}};K0=Symbol.toStringTag;En[K0]=(t=>(t.id=null,t.indices=null,t.isOrdered=null,t.dictionary=null,t[Symbol.toStringTag]="Dictionary"))(En.prototype);function tn(t){let e=t;switch(t.typeId){case H.Decimal:return t.bitWidth/32;case H.Timestamp:return 2;case H.Date:return 1+e.unit;case H.Interval:return 1+e.unit;case H.FixedSizeList:return e.listSize;case H.FixedSizeBinary:return e.byteWidth;default:return 1}}var qe=class{visitMany(e,...r){return e.map((n,i)=>this.visit(n,...r.map(f=>f[i])))}visit(...e){return this.getVisitFn(e[0],!1).apply(this,e)}getVisitFn(e,r=!0){return vx(this,e,r)}getVisitFnByTypeId(e,r=!0){return ss(this,e,r)}visitNull(e,...r){return null}visitBool(e,...r){return null}visitInt(e,...r){return null}visitFloat(e,...r){return null}visitUtf8(e,...r){return null}visitBinary(e,...r){return null}visitFixedSizeBinary(e,...r){return null}visitDate(e,...r){return null}visitTimestamp(e,...r){return null}visitTime(e,...r){return null}visitDecimal(e,...r){return null}visitList(e,...r){return null}visitStruct(e,...r){return null}visitUnion(e,...r){return null}visitDictionary(e,...r){return null}visitInterval(e,...r){return null}visitFixedSizeList(e,...r){return null}visitMap(e,...r){return null}};function vx(t,e,r=!0){return typeof e=="number"?ss(t,e,r):typeof e=="string"&&e in H?ss(t,H[e],r):e&&e instanceof je?ss(t,G0(e),r):(e==null?void 0:e.type)&&e.type instanceof je?ss(t,G0(e.type),r):ss(t,H.NONE,r)}function ss(t,e,r=!0){let n=null;switch(e){case H.Null:n=t.visitNull;break;case H.Bool:n=t.visitBool;break;case H.Int:n=t.visitInt;break;case H.Int8:n=t.visitInt8||t.visitInt;break;case H.Int16:n=t.visitInt16||t.visitInt;break;case H.Int32:n=t.visitInt32||t.visitInt;break;case H.Int64:n=t.visitInt64||t.visitInt;break;case H.Uint8:n=t.visitUint8||t.visitInt;break;case H.Uint16:n=t.visitUint16||t.visitInt;break;case H.Uint32:n=t.visitUint32||t.visitInt;break;case H.Uint64:n=t.visitUint64||t.visitInt;break;case H.Float:n=t.visitFloat;break;case H.Float16:n=t.visitFloat16||t.visitFloat;break;case H.Float32:n=t.visitFloat32||t.visitFloat;break;case H.Float64:n=t.visitFloat64||t.visitFloat;break;case H.Utf8:n=t.visitUtf8;break;case H.Binary:n=t.visitBinary;break;case H.FixedSizeBinary:n=t.visitFixedSizeBinary;break;case H.Date:n=t.visitDate;break;case H.DateDay:n=t.visitDateDay||t.visitDate;break;case H.DateMillisecond:n=t.visitDateMillisecond||t.visitDate;break;case H.Timestamp:n=t.visitTimestamp;break;case H.TimestampSecond:n=t.visitTimestampSecond||t.visitTimestamp;break;case H.TimestampMillisecond:n=t.visitTimestampMillisecond||t.visitTimestamp;break;case H.TimestampMicrosecond:n=t.visitTimestampMicrosecond||t.visitTimestamp;break;case H.TimestampNanosecond:n=t.visitTimestampNanosecond||t.visitTimestamp;break;case H.Time:n=t.visitTime;break;case H.TimeSecond:n=t.visitTimeSecond||t.visitTime;break;case H.TimeMillisecond:n=t.visitTimeMillisecond||t.visitTime;break;case H.TimeMicrosecond:n=t.visitTimeMicrosecond||t.visitTime;break;case H.TimeNanosecond:n=t.visitTimeNanosecond||t.visitTime;break;case H.Decimal:n=t.visitDecimal;break;case H.List:n=t.visitList;break;case H.Struct:n=t.visitStruct;break;case H.Union:n=t.visitUnion;break;case H.DenseUnion:n=t.visitDenseUnion||t.visitUnion;break;case H.SparseUnion:n=t.visitSparseUnion||t.visitUnion;break;case H.Dictionary:n=t.visitDictionary;break;case H.Interval:n=t.visitInterval;break;case H.IntervalDayTime:n=t.visitIntervalDayTime||t.visitInterval;break;case H.IntervalYearMonth:n=t.visitIntervalYearMonth||t.visitInterval;break;case H.FixedSizeList:n=t.visitFixedSizeList;break;case H.Map:n=t.visitMap;break}if(typeof n=="function")return n;if(!r)return()=>null;throw new Error(`Unrecognized type '${H[e]}'`)}function G0(t){switch(t.typeId){case H.Null:return H.Null;case H.Int:{let{bitWidth:e,isSigned:r}=t;switch(e){case 8:return r?H.Int8:H.Uint8;case 16:return r?H.Int16:H.Uint16;case 32:return r?H.Int32:H.Uint32;case 64:return r?H.Int64:H.Uint64}return H.Int}case H.Float:switch(t.precision){case Dt.HALF:return H.Float16;case Dt.SINGLE:return H.Float32;case Dt.DOUBLE:return H.Float64}return H.Float;case H.Binary:return H.Binary;case H.Utf8:return H.Utf8;case H.Bool:return H.Bool;case H.Decimal:return H.Decimal;case H.Time:switch(t.unit){case Qe.SECOND:return H.TimeSecond;case Qe.MILLISECOND:return H.TimeMillisecond;case Qe.MICROSECOND:return H.TimeMicrosecond;case Qe.NANOSECOND:return H.TimeNanosecond}return H.Time;case H.Timestamp:switch(t.unit){case Qe.SECOND:return H.TimestampSecond;case Qe.MILLISECOND:return H.TimestampMillisecond;case Qe.MICROSECOND:return H.TimestampMicrosecond;case Qe.NANOSECOND:return H.TimestampNanosecond}return H.Timestamp;case H.Date:switch(t.unit){case qr.DAY:return H.DateDay;case qr.MILLISECOND:return H.DateMillisecond}return H.Date;case H.Interval:switch(t.unit){case Cr.DAY_TIME:return H.IntervalDayTime;case Cr.YEAR_MONTH:return H.IntervalYearMonth}return H.Interval;case H.Map:return H.Map;case H.List:return H.List;case H.Struct:return H.Struct;case H.Union:switch(t.mode){case Ut.Dense:return H.DenseUnion;case Ut.Sparse:return H.SparseUnion}return H.Union;case H.FixedSizeBinary:return H.FixedSizeBinary;case H.FixedSizeList:return H.FixedSizeList;case H.Dictionary:return H.Dictionary}throw new Error(`Unrecognized type '${H[t.typeId]}'`)}qe.prototype.visitInt8=null;qe.prototype.visitInt16=null;qe.prototype.visitInt32=null;qe.prototype.visitInt64=null;qe.prototype.visitUint8=null;qe.prototype.visitUint16=null;qe.prototype.visitUint32=null;qe.prototype.visitUint64=null;qe.prototype.visitFloat16=null;qe.prototype.visitFloat32=null;qe.prototype.visitFloat64=null;qe.prototype.visitDateDay=null;qe.prototype.visitDateMillisecond=null;qe.prototype.visitTimestampSecond=null;qe.prototype.visitTimestampMillisecond=null;qe.prototype.visitTimestampMicrosecond=null;qe.prototype.visitTimestampNanosecond=null;qe.prototype.visitTimeSecond=null;qe.prototype.visitTimeMillisecond=null;qe.prototype.visitTimeMicrosecond=null;qe.prototype.visitTimeNanosecond=null;qe.prototype.visitDenseUnion=null;qe.prototype.visitSparseUnion=null;qe.prototype.visitIntervalDayTime=null;qe.prototype.visitIntervalYearMonth=null;var $d={};Cf($d,{float64ToUint16:()=>$l,uint16ToFloat64:()=>mu});var J0=new Float64Array(1),ls=new Uint32Array(J0.buffer);function mu(t){let e=(t&31744)>>10,r=(t&1023)/1024,n=Math.pow(-1,(t&32768)>>15);switch(e){case 31:return n*(r?Number.NaN:1/0);case 0:return n*(r?6103515625e-14*r:0)}return n*Math.pow(2,e-15)*(1+r)}function $l(t){if(t!==t)return 32256;J0[0]=t;let e=(ls[1]&2147483648)>>16&65535,r=ls[1]&2146435072,n=0;return r>=1089470464?ls[0]>0?r=31744:(r=(r&2080374784)>>16,n=(ls[1]&1048575)>>10):r<=1056964608?(n=1048576+(ls[1]&1048575),n=1048576+(n<<(r>>20)-998)>>21,r=0):(r=r-1056964608>>10,n=(ls[1]&1048575)+512>>10),e|r|n&65535}var De=class extends qe{};function Le(t){return(e,r,n)=>{if(e.setValid(r,n!=null))return t(e,r,n)}}var _x=(t,e,r)=>{t[e]=Math.trunc(r/864e5)},ew=(t,e,r)=>{t[e]=Math.trunc(r%4294967296),t[e+1]=Math.trunc(r/4294967296)},qx=(t,e,r)=>{t[e]=Math.trunc(r*1e3%4294967296),t[e+1]=Math.trunc(r*1e3/4294967296)},kx=(t,e,r)=>{t[e]=Math.trunc(r*1e6%4294967296),t[e+1]=Math.trunc(r*1e6/4294967296)},Z0=(t,e,r,n)=>{if(r+1<e.length){let{[r]:i,[r+1]:f}=e;t.set(n.subarray(0,f-i),i)}},Tx=({offset:t,values:e},r,n)=>{let i=t+r;n?e[i>>3]|=1<<i%8:e[i>>3]&=~(1<<i%8)},Fi=({values:t},e,r)=>{t[e]=r},tw=({values:t},e,r)=>{t[e]=r},X0=({values:t},e,r)=>{t[e]=$l(r)},Bx=(t,e,r)=>{switch(t.type.precision){case Dt.HALF:return X0(t,e,r);case Dt.SINGLE:case Dt.DOUBLE:return tw(t,e,r)}},du=({values:t},e,r)=>{_x(t,e,r.valueOf())},wu=({values:t},e,r)=>{ew(t,e*2,r.valueOf())},rw=({stride:t,values:e},r,n)=>{e.set(n.subarray(0,t),t*r)},Ix=({values:t,valueOffsets:e},r,n)=>Z0(t,e,r,n),Sx=({values:t,valueOffsets:e},r,n)=>{Z0(t,e,r,jf(n))},nw=(t,e,r)=>{t.type.unit===qr.DAY?du(t,e,r):wu(t,e,r)},hu=({values:t},e,r)=>ew(t,e*2,r/1e3),bu=({values:t},e,r)=>ew(t,e*2,r),gu=({values:t},e,r)=>qx(t,e*2,r),ju=({values:t},e,r)=>kx(t,e*2,r),iw=(t,e,r)=>{switch(t.type.unit){case Qe.SECOND:return hu(t,e,r);case Qe.MILLISECOND:return bu(t,e,r);case Qe.MICROSECOND:return gu(t,e,r);case Qe.NANOSECOND:return ju(t,e,r)}},yu=({values:t},e,r)=>{t[e]=r},vu=({values:t},e,r)=>{t[e]=r},_u=({values:t},e,r)=>{t[e]=r},qu=({values:t},e,r)=>{t[e]=r},fw=(t,e,r)=>{switch(t.type.unit){case Qe.SECOND:return yu(t,e,r);case Qe.MILLISECOND:return vu(t,e,r);case Qe.MICROSECOND:return _u(t,e,r);case Qe.NANOSECOND:return qu(t,e,r)}},ow=({values:t,stride:e},r,n)=>{t.set(n.subarray(0,e),e*r)},xx=(t,e,r)=>{let n=t.children[0],i=t.valueOffsets,f=dr.getVisitFn(n);if(Array.isArray(r))for(let o=-1,s=i[e],l=i[e+1];s<l;)f(n,s++,r[++o]);else for(let o=-1,s=i[e],l=i[e+1];s<l;)f(n,s++,r.get(++o))},Ex=(t,e,r)=>{let n=t.children[0],{valueOffsets:i}=t,f=dr.getVisitFn(n),{[e]:o,[e+1]:s}=i,l=r instanceof Map?r.entries():Object.entries(r);for(let p of l)if(f(n,o,p),++o>=s)break},Ax=(t,e)=>(r,n,i,f)=>n&&r(n,t,e[f]),Ox=(t,e)=>(r,n,i,f)=>n&&r(n,t,e.get(f)),Nx=(t,e)=>(r,n,i,f)=>n&&r(n,t,e.get(i.name)),Hx=(t,e)=>(r,n,i,f)=>n&&r(n,t,e[i.name]),Rx=(t,e,r)=>{let n=t.type.children.map(f=>dr.getVisitFn(f.type)),i=r instanceof Map?Nx(e,r):r instanceof ze?Ox(e,r):Array.isArray(r)?Ax(e,r):Hx(e,r);t.type.children.forEach((f,o)=>i(n[o],t.children[o],f,o))},Dx=(t,e,r)=>{t.type.mode===Ut.Dense?Q0(t,e,r):$0(t,e,r)},Q0=(t,e,r)=>{let n=t.type.typeIdToChildIndex[t.typeIds[e]],i=t.children[n];dr.visit(i,t.valueOffsets[e],r)},$0=(t,e,r)=>{let n=t.type.typeIdToChildIndex[t.typeIds[e]],i=t.children[n];dr.visit(i,e,r)},zx=(t,e,r)=>{var n;(n=t.dictionary)===null||n===void 0||n.set(t.values[e],r)},sw=(t,e,r)=>{t.type.unit===Cr.DAY_TIME?ku(t,e,r):Tu(t,e,r)},ku=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},Tu=({values:t},e,r)=>{t[e]=r[0]*12+r[1]%12},Fx=(t,e,r)=>{let{stride:n}=t,i=t.children[0],f=dr.getVisitFn(i);if(Array.isArray(r))for(let o=-1,s=e*n;++o<n;)f(i,s+o,r[o]);else for(let o=-1,s=e*n;++o<n;)f(i,s+o,r.get(o))};De.prototype.visitBool=Le(Tx);De.prototype.visitInt=Le(Fi);De.prototype.visitInt8=Le(Fi);De.prototype.visitInt16=Le(Fi);De.prototype.visitInt32=Le(Fi);De.prototype.visitInt64=Le(Fi);De.prototype.visitUint8=Le(Fi);De.prototype.visitUint16=Le(Fi);De.prototype.visitUint32=Le(Fi);De.prototype.visitUint64=Le(Fi);De.prototype.visitFloat=Le(Bx);De.prototype.visitFloat16=Le(X0);De.prototype.visitFloat32=Le(tw);De.prototype.visitFloat64=Le(tw);De.prototype.visitUtf8=Le(Sx);De.prototype.visitBinary=Le(Ix);De.prototype.visitFixedSizeBinary=Le(rw);De.prototype.visitDate=Le(nw);De.prototype.visitDateDay=Le(du);De.prototype.visitDateMillisecond=Le(wu);De.prototype.visitTimestamp=Le(iw);De.prototype.visitTimestampSecond=Le(hu);De.prototype.visitTimestampMillisecond=Le(bu);De.prototype.visitTimestampMicrosecond=Le(gu);De.prototype.visitTimestampNanosecond=Le(ju);De.prototype.visitTime=Le(fw);De.prototype.visitTimeSecond=Le(yu);De.prototype.visitTimeMillisecond=Le(vu);De.prototype.visitTimeMicrosecond=Le(_u);De.prototype.visitTimeNanosecond=Le(qu);De.prototype.visitDecimal=Le(ow);De.prototype.visitList=Le(xx);De.prototype.visitStruct=Le(Rx);De.prototype.visitUnion=Le(Dx);De.prototype.visitDenseUnion=Le(Q0);De.prototype.visitSparseUnion=Le($0);De.prototype.visitDictionary=Le(zx);De.prototype.visitInterval=Le(sw);De.prototype.visitIntervalDayTime=Le(ku);De.prototype.visitIntervalYearMonth=Le(Tu);De.prototype.visitFixedSizeList=Le(Fx);De.prototype.visitMap=Le(Ex);var dr=new De;var Wn=Symbol.for("parent"),as=Symbol.for("rowIndex"),mo=class{constructor(e,r){return this[Wn]=e,this[as]=r,new Proxy(this,new tv)}toArray(){return Object.values(this.toJSON())}toJSON(){let e=this[as],r=this[Wn],n=r.type.children,i={};for(let f=-1,o=n.length;++f<o;)i[n[f].name]=Qt.visit(r.children[f],e);return i}toString(){return`{${[...this].map(([e,r])=>`${Cn(e)}: ${Cn(r)}`).join(", ")}}`}[Symbol.for("nodejs.util.inspect.custom")](){return this.toString()}[Symbol.iterator](){return new ev(this[Wn],this[as])}},ev=class{constructor(e,r){this.childIndex=0,this.children=e.children,this.rowIndex=r,this.childFields=e.type.children,this.numChildren=this.childFields.length}[Symbol.iterator](){return this}next(){let e=this.childIndex;return e<this.numChildren?(this.childIndex=e+1,{done:!1,value:[this.childFields[e].name,Qt.visit(this.children[e],this.rowIndex)]}):{done:!0,value:null}}};Object.defineProperties(mo.prototype,{[Symbol.toStringTag]:{enumerable:!1,configurable:!1,value:"Row"},[Wn]:{writable:!0,enumerable:!1,configurable:!1,value:null},[as]:{writable:!0,enumerable:!1,configurable:!1,value:-1}});var tv=class{isExtensible(){return!1}deleteProperty(){return!1}preventExtensions(){return!0}ownKeys(e){return e[Wn].type.children.map(r=>r.name)}has(e,r){return e[Wn].type.children.findIndex(n=>n.name===r)!==-1}getOwnPropertyDescriptor(e,r){if(e[Wn].type.children.findIndex(n=>n.name===r)!==-1)return{writable:!0,enumerable:!0,configurable:!0}}get(e,r){if(Reflect.has(e,r))return e[r];let n=e[Wn].type.children.findIndex(i=>i.name===r);if(n!==-1){let i=Qt.visit(e[Wn].children[n],e[as]);return Reflect.set(e,r,i),i}}set(e,r,n){let i=e[Wn].type.children.findIndex(f=>f.name===r);return i!==-1?(dr.visit(e[Wn].children[i],e[as],n),Reflect.set(e,r,n)):Reflect.has(e,r)||typeof r=="symbol"?Reflect.set(e,r,n):!1}};var Ae=class extends qe{};function Me(t){return(e,r)=>e.getValid(r)?t(e,r):null}var Px=(t,e)=>864e5*t[e],lw=(t,e)=>4294967296*t[e+1]+(t[e]>>>0),Mx=(t,e)=>4294967296*(t[e+1]/1e3)+(t[e]>>>0)/1e3,Ux=(t,e)=>4294967296*(t[e+1]/1e6)+(t[e]>>>0)/1e6,rv=t=>new Date(t),Lx=(t,e)=>rv(Px(t,e)),Cx=(t,e)=>rv(lw(t,e)),Vx=(t,e)=>null,nv=(t,e,r)=>{if(r+1>=e.length)return null;let n=e[r],i=e[r+1];return t.subarray(n,i)},Wx=({offset:t,values:e},r)=>{let n=t+r;return(e[n>>3]&1<<n%8)!=0},iv=({values:t},e)=>Lx(t,e),fv=({values:t},e)=>Cx(t,e*2),xf=({stride:t,values:e},r)=>e[t*r],Yx=({stride:t,values:e},r)=>mu(e[t*r]),ov=({values:t},e)=>t[e],Kx=({stride:t,values:e},r)=>e.subarray(t*r,t*(r+1)),Gx=({values:t,valueOffsets:e},r)=>nv(t,e,r),Jx=({values:t,valueOffsets:e},r)=>{let n=nv(t,e,r);return n!==null?Gl(n):null},Zx=({values:t},e)=>t[e],Xx=({type:t,values:e},r)=>t.precision!==Dt.HALF?e[r]:mu(e[r]),Qx=(t,e)=>t.type.unit===qr.DAY?iv(t,e):fv(t,e),sv=({values:t},e)=>1e3*lw(t,e*2),lv=({values:t},e)=>lw(t,e*2),av=({values:t},e)=>Mx(t,e*2),pv=({values:t},e)=>Ux(t,e*2),$x=(t,e)=>{switch(t.type.unit){case Qe.SECOND:return sv(t,e);case Qe.MILLISECOND:return lv(t,e);case Qe.MICROSECOND:return av(t,e);case Qe.NANOSECOND:return pv(t,e)}},uv=({values:t},e)=>t[e],cv=({values:t},e)=>t[e],mv=({values:t},e)=>t[e],dv=({values:t},e)=>t[e],e1=(t,e)=>{switch(t.type.unit){case Qe.SECOND:return uv(t,e);case Qe.MILLISECOND:return cv(t,e);case Qe.MICROSECOND:return mv(t,e);case Qe.NANOSECOND:return dv(t,e)}},t1=({values:t,stride:e},r)=>os.decimal(t.subarray(e*r,e*(r+1))),r1=(t,e)=>{let{valueOffsets:r,stride:n,children:i}=t,{[e*n]:f,[e*n+1]:o}=r,l=i[0].slice(f,o-f);return new ze([l])},n1=(t,e)=>{let{valueOffsets:r,children:n}=t,{[e]:i,[e+1]:f}=r,o=n[0];return new Pi(o.slice(i,f-i))},i1=(t,e)=>new mo(t,e),f1=(t,e)=>t.type.mode===Ut.Dense?wv(t,e):hv(t,e),wv=(t,e)=>{let r=t.type.typeIdToChildIndex[t.typeIds[e]],n=t.children[r];return Qt.visit(n,t.valueOffsets[e])},hv=(t,e)=>{let r=t.type.typeIdToChildIndex[t.typeIds[e]],n=t.children[r];return Qt.visit(n,e)},o1=(t,e)=>{var r;return(r=t.dictionary)===null||r===void 0?void 0:r.get(t.values[e])},s1=(t,e)=>t.type.unit===Cr.DAY_TIME?bv(t,e):gv(t,e),bv=({values:t},e)=>t.subarray(2*e,2*(e+1)),gv=({values:t},e)=>{let r=t[e],n=new Int32Array(2);return n[0]=Math.trunc(r/12),n[1]=Math.trunc(r%12),n},l1=(t,e)=>{let{stride:r,children:n}=t,f=n[0].slice(e*r,r);return new ze([f])};Ae.prototype.visitNull=Me(Vx);Ae.prototype.visitBool=Me(Wx);Ae.prototype.visitInt=Me(Zx);Ae.prototype.visitInt8=Me(xf);Ae.prototype.visitInt16=Me(xf);Ae.prototype.visitInt32=Me(xf);Ae.prototype.visitInt64=Me(ov);Ae.prototype.visitUint8=Me(xf);Ae.prototype.visitUint16=Me(xf);Ae.prototype.visitUint32=Me(xf);Ae.prototype.visitUint64=Me(ov);Ae.prototype.visitFloat=Me(Xx);Ae.prototype.visitFloat16=Me(Yx);Ae.prototype.visitFloat32=Me(xf);Ae.prototype.visitFloat64=Me(xf);Ae.prototype.visitUtf8=Me(Jx);Ae.prototype.visitBinary=Me(Gx);Ae.prototype.visitFixedSizeBinary=Me(Kx);Ae.prototype.visitDate=Me(Qx);Ae.prototype.visitDateDay=Me(iv);Ae.prototype.visitDateMillisecond=Me(fv);Ae.prototype.visitTimestamp=Me($x);Ae.prototype.visitTimestampSecond=Me(sv);Ae.prototype.visitTimestampMillisecond=Me(lv);Ae.prototype.visitTimestampMicrosecond=Me(av);Ae.prototype.visitTimestampNanosecond=Me(pv);Ae.prototype.visitTime=Me(e1);Ae.prototype.visitTimeSecond=Me(uv);Ae.prototype.visitTimeMillisecond=Me(cv);Ae.prototype.visitTimeMicrosecond=Me(mv);Ae.prototype.visitTimeNanosecond=Me(dv);Ae.prototype.visitDecimal=Me(t1);Ae.prototype.visitList=Me(r1);Ae.prototype.visitStruct=Me(i1);Ae.prototype.visitUnion=Me(f1);Ae.prototype.visitDenseUnion=Me(wv);Ae.prototype.visitSparseUnion=Me(hv);Ae.prototype.visitDictionary=Me(o1);Ae.prototype.visitInterval=Me(s1);Ae.prototype.visitIntervalDayTime=Me(bv);Ae.prototype.visitIntervalYearMonth=Me(gv);Ae.prototype.visitFixedSizeList=Me(l1);Ae.prototype.visitMap=Me(n1);var Qt=new Ae;var An=Symbol.for("keys"),ps=Symbol.for("vals"),Pi=class{constructor(e){return this[An]=new ze([e.children[0]]).memoize(),this[ps]=e.children[1],new Proxy(this,new yv)}[Symbol.iterator](){return new jv(this[An],this[ps])}get size(){return this[An].length}toArray(){return Object.values(this.toJSON())}toJSON(){let e=this[An],r=this[ps],n={};for(let i=-1,f=e.length;++i<f;)n[e.get(i)]=Qt.visit(r,i);return n}toString(){return`{${[...this].map(([e,r])=>`${Cn(e)}: ${Cn(r)}`).join(", ")}}`}[Symbol.for("nodejs.util.inspect.custom")](){return this.toString()}},jv=class{constructor(e,r){this.keys=e,this.vals=r,this.keyIndex=0,this.numKeys=e.length}[Symbol.iterator](){return this}next(){let e=this.keyIndex;return e===this.numKeys?{done:!0,value:null}:(this.keyIndex++,{done:!1,value:[this.keys.get(e),Qt.visit(this.vals,e)]})}},yv=class{isExtensible(){return!1}deleteProperty(){return!1}preventExtensions(){return!0}ownKeys(e){return e[An].toArray().map(String)}has(e,r){return e[An].includes(r)}getOwnPropertyDescriptor(e,r){if(e[An].indexOf(r)!==-1)return{writable:!0,enumerable:!0,configurable:!0}}get(e,r){if(Reflect.has(e,r))return e[r];let n=e[An].indexOf(r);if(n!==-1){let i=Qt.visit(Reflect.get(e,ps),n);return Reflect.set(e,r,i),i}}set(e,r,n){let i=e[An].indexOf(r);return i!==-1?(dr.visit(Reflect.get(e,ps),i,n),Reflect.set(e,r,n)):Reflect.has(e,r)?Reflect.set(e,r,n):!1}};Object.defineProperties(Pi.prototype,{[Symbol.toStringTag]:{enumerable:!1,configurable:!1,value:"Row"},[An]:{writable:!0,enumerable:!1,configurable:!1,value:null},[ps]:{writable:!0,enumerable:!1,configurable:!1,value:null}});function a1(t,e,r){let n=t.length,i=e>-1?e:n+e%n;return r?r(t,i):i}var vv;function ea(t,e,r,n){let{length:i=0}=t,f=typeof e!="number"?0:e,o=typeof r!="number"?i:r;return f<0&&(f=(f%i+i)%i),o<0&&(o=(o%i+i)%i),o<f&&(vv=f,f=o,o=vv),o>i&&(o=i),n?n(t,f,o):[f,o]}var _v=t=>t!==t;function Ef(t){if(typeof t!=="object"||t===null)return _v(t)?_v:r=>r===t;if(t instanceof Date){let r=t.valueOf();return n=>n instanceof Date?n.valueOf()===r:!1}return ArrayBuffer.isView(t)?r=>r?Fd(t,r):!1:t instanceof Map?u1(t):Array.isArray(t)?p1(t):t instanceof ze?c1(t):m1(t,!0)}function p1(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=Ef(t[r]);return Bu(e)}function u1(t){let e=-1,r=[];for(let n of t.values())r[++e]=Ef(n);return Bu(r)}function c1(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=Ef(t.get(r));return Bu(e)}function m1(t,e=!1){let r=Object.keys(t);if(!e&&r.length===0)return()=>!1;let n=[];for(let i=-1,f=r.length;++i<f;)n[i]=Ef(t[r[i]]);return Bu(n,r)}function Bu(t,e){return r=>{if(!r||typeof r!="object")return!1;switch(r.constructor){case Array:return d1(t,r);case Map:return qv(t,r,r.keys());case Pi:case mo:case Object:case void 0:return qv(t,r,e||Object.keys(r))}return r instanceof ze?w1(t,r):!1}}function d1(t,e){let r=t.length;if(e.length!==r)return!1;for(let n=-1;++n<r;)if(!t[n](e[n]))return!1;return!0}function w1(t,e){let r=t.length;if(e.length!==r)return!1;for(let n=-1;++n<r;)if(!t[n](e.get(n)))return!1;return!0}function qv(t,e,r){let n=r[Symbol.iterator](),i=e instanceof Map?e.keys():Object.keys(e)[Symbol.iterator](),f=e instanceof Map?e.values():Object.values(e)[Symbol.iterator](),o=0,s=t.length,l=f.next(),p=n.next(),u=i.next();for(;o<s&&!p.done&&!u.done&&!l.done&&!(p.value!==u.value||!t[o](l.value));++o,p=n.next(),u=i.next(),l=f.next());return o===s&&p.done&&u.done&&l.done?!0:(n.return&&n.return(),i.return&&i.return(),f.return&&f.return(),!1)}var pw={};Cf(pw,{BitIterator:()=>cs,getBit:()=>kv,getBool:()=>Iu,packBools:()=>wo,popcnt_array:()=>Tv,popcnt_bit_range:()=>ta,popcnt_uint32:()=>Su,setBool:()=>h1,truncateBitmap:()=>us});function Iu(t,e,r,n){return(r&1<<n)!=0}function kv(t,e,r,n){return(r&1<<n)>>n}function h1(t,e,r){return r?!!(t[e>>3]|=1<<e%8)||!0:!(t[e>>3]&=~(1<<e%8))&&!1}function us(t,e,r){let n=r.byteLength+7&~7;if(t>0||r.byteLength<n){let i=new Uint8Array(n);return i.set(t%8==0?r.subarray(t>>3):wo(new cs(r,t,e,null,Iu)).subarray(0,n)),i}return r}function wo(t){let e=[],r=0,n=0,i=0;for(let o of t)o&&(i|=1<<n),++n==8&&(e[r++]=i,i=n=0);(r===0||n>0)&&(e[r++]=i);let f=new Uint8Array(e.length+7&~7);return f.set(e),f}var cs=class{constructor(e,r,n,i,f){this.bytes=e,this.length=n,this.context=i,this.get=f,this.bit=r%8,this.byteIndex=r>>3,this.byte=e[this.byteIndex++],this.index=0}next(){return this.index<this.length?(this.bit===8&&(this.bit=0,this.byte=this.bytes[this.byteIndex++]),{value:this.get(this.context,this.index++,this.byte,this.bit++)}):{done:!0,value:null}}[Symbol.iterator](){return this}};function ta(t,e,r){if(r-e<=0)return 0;if(r-e<8){let f=0;for(let o of new cs(t,e,r-e,t,kv))f+=o;return f}let n=r>>3<<3,i=e+(e%8==0?0:8-e%8);return ta(t,e,i)+ta(t,n,r)+Tv(t,i>>3,n-i>>3)}function Tv(t,e,r){let n=0,i=Math.trunc(e),f=new DataView(t.buffer,t.byteOffset,t.byteLength),o=r===void 0?t.byteLength:i+r;for(;o-i>=4;)n+=Su(f.getUint32(i)),i+=4;for(;o-i>=2;)n+=Su(f.getUint16(i)),i+=2;for(;o-i>=1;)n+=Su(f.getUint8(i)),i+=1;return n}function Su(t){let e=Math.trunc(t);return e=e-(e>>>1&1431655765),e=(e&858993459)+(e>>>2&858993459),(e+(e>>>4)&252645135)*16843009>>>24}var b1=-1,ut=class{constructor(e,r,n,i,f,o=[],s){this.type=e,this.children=o,this.dictionary=s,this.offset=Math.floor(Math.max(r||0,0)),this.length=Math.floor(Math.max(n||0,0)),this._nullCount=Math.floor(Math.max(i||0,-1));let l;f instanceof ut?(this.stride=f.stride,this.values=f.values,this.typeIds=f.typeIds,this.nullBitmap=f.nullBitmap,this.valueOffsets=f.valueOffsets):(this.stride=tn(e),f&&((l=f[0])&&(this.valueOffsets=l),(l=f[1])&&(this.values=l),(l=f[2])&&(this.nullBitmap=l),(l=f[3])&&(this.typeIds=l))),this.nullable=this._nullCount!==0&&this.nullBitmap&&this.nullBitmap.byteLength>0}get typeId(){return this.type.typeId}get ArrayType(){return this.type.ArrayType}get buffers(){return[this.valueOffsets,this.values,this.nullBitmap,this.typeIds]}get byteLength(){let e=0,{valueOffsets:r,values:n,nullBitmap:i,typeIds:f}=this;return r&&(e+=r.byteLength),n&&(e+=n.byteLength),i&&(e+=i.byteLength),f&&(e+=f.byteLength),this.children.reduce((o,s)=>o+s.byteLength,e)}get nullCount(){let e=this._nullCount,r;return e<=b1&&(r=this.nullBitmap)&&(this._nullCount=e=this.length-ta(r,this.offset,this.offset+this.length)),e}getValid(e){if(this.nullable&&this.nullCount>0){let r=this.offset+e;return(this.nullBitmap[r>>3]&1<<r%8)!=0}return!0}setValid(e,r){if(!this.nullable)return r;if(!this.nullBitmap||this.nullBitmap.byteLength<=e>>3){let{nullBitmap:l}=this._changeLengthAndBackfillNullBitmap(this.length);Object.assign(this,{nullBitmap:l,_nullCount:0})}let{nullBitmap:n,offset:i}=this,f=i+e>>3,o=(i+e)%8,s=n[f]>>o&1;return r?s===0&&(n[f]|=1<<o,this._nullCount=this.nullCount+1):s===1&&(n[f]&=~(1<<o),this._nullCount=this.nullCount-1),r}clone(e=this.type,r=this.offset,n=this.length,i=this._nullCount,f=this,o=this.children){return new ut(e,r,n,i,f,o,this.dictionary)}slice(e,r){let{stride:n,typeId:i,children:f}=this,o=+(this._nullCount===0)-1,s=i===16?n:1,l=this._sliceBuffers(e,r,n,i);return this.clone(this.type,this.offset+e,r,o,l,f.length===0||this.valueOffsets?f:this._sliceChildren(f,s*e,s*r))}_changeLengthAndBackfillNullBitmap(e){if(this.typeId===H.Null)return this.clone(this.type,0,e,0);let{length:r,nullCount:n}=this,i=new Uint8Array((e+63&~63)>>3).fill(255,0,r>>3);i[r>>3]=(1<<r-(r&~7))-1,n>0&&i.set(us(this.offset,r,this.nullBitmap),0);let f=this.buffers;return f[Ln.VALIDITY]=i,this.clone(this.type,0,e,n+(e-r),f)}_sliceBuffers(e,r,n,i){let f,{buffers:o}=this;return(f=o[Ln.TYPE])&&(o[Ln.TYPE]=f.subarray(e,e+r)),(f=o[Ln.OFFSET])&&(o[Ln.OFFSET]=f.subarray(e,e+r+1))||(f=o[Ln.DATA])&&(o[Ln.DATA]=i===6?f:f.subarray(n*e,n*(e+r))),o}_sliceChildren(e,r,n){return e.map(i=>i.slice(r,n))}};ut.prototype.children=Object.freeze([]);var ms=class extends qe{visit(e){return this.getVisitFn(e.type).call(this,e)}visitNull(e){let{["type"]:r,["offset"]:n=0,["length"]:i=0}=e;return new ut(r,n,i,0)}visitBool(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length>>3,["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitInt(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length,["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitFloat(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length,["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitUtf8(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.data),f=Ee(e.nullBitmap),o=co(e.valueOffsets),{["length"]:s=o.length-1,["nullCount"]:l=e.nullBitmap?-1:0}=e;return new ut(r,n,s,l,[o,i,f])}visitBinary(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.data),f=Ee(e.nullBitmap),o=co(e.valueOffsets),{["length"]:s=o.length-1,["nullCount"]:l=e.nullBitmap?-1:0}=e;return new ut(r,n,s,l,[o,i,f])}visitFixedSizeBinary(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length/tn(r),["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitDate(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length/tn(r),["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitTimestamp(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length/tn(r),["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitTime(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length/tn(r),["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitDecimal(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length/tn(r),["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitList(e){let{["type"]:r,["offset"]:n=0,["child"]:i}=e,f=Ee(e.nullBitmap),o=co(e.valueOffsets),{["length"]:s=o.length-1,["nullCount"]:l=e.nullBitmap?-1:0}=e;return new ut(r,n,s,l,[o,void 0,f],[i])}visitStruct(e){let{["type"]:r,["offset"]:n=0,["children"]:i=[]}=e,f=Ee(e.nullBitmap),{length:o=i.reduce((l,{length:p})=>Math.max(l,p),0),nullCount:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,void 0,f],i)}visitUnion(e){let{["type"]:r,["offset"]:n=0,["children"]:i=[]}=e,f=Ee(e.nullBitmap),o=Ge(r.ArrayType,e.typeIds),{["length"]:s=o.length,["nullCount"]:l=e.nullBitmap?-1:0}=e;if(je.isSparseUnion(r))return new ut(r,n,s,l,[void 0,void 0,f,o],i);let p=co(e.valueOffsets);return new ut(r,n,s,l,[p,void 0,f,o],i)}visitDictionary(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.indices.ArrayType,e.data),{["dictionary"]:o=new ze([new ms().visit({type:r.dictionary})])}=e,{["length"]:s=f.length,["nullCount"]:l=e.nullBitmap?-1:0}=e;return new ut(r,n,s,l,[void 0,f,i],[],o)}visitInterval(e){let{["type"]:r,["offset"]:n=0}=e,i=Ee(e.nullBitmap),f=Ge(r.ArrayType,e.data),{["length"]:o=f.length/tn(r),["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,f,i])}visitFixedSizeList(e){let{["type"]:r,["offset"]:n=0,["child"]:i=new ms().visit({type:r.valueType})}=e,f=Ee(e.nullBitmap),{["length"]:o=i.length/tn(r),["nullCount"]:s=e.nullBitmap?-1:0}=e;return new ut(r,n,o,s,[void 0,void 0,f],[i])}visitMap(e){let{["type"]:r,["offset"]:n=0,["child"]:i=new ms().visit({type:r.childType})}=e,f=Ee(e.nullBitmap),o=co(e.valueOffsets),{["length"]:s=o.length-1,["nullCount"]:l=e.nullBitmap?-1:0}=e;return new ut(r,n,s,l,[o,void 0,f],[i])}};function Fe(t){return new ms().visit(t)}var xu=class{constructor(e=0,r){this.numChunks=e,this.getChunkIterator=r,this.chunkIndex=0,this.chunkIterator=this.getChunkIterator(0)}next(){for(;this.chunkIndex<this.numChunks;){let e=this.chunkIterator.next();if(!e.done)return e;++this.chunkIndex<this.numChunks&&(this.chunkIterator=this.getChunkIterator(this.chunkIndex))}return{done:!0,value:null}}[Symbol.iterator](){return this}};function Eu(t){return t.reduce((e,r)=>e+r.nullCount,0)}function Au(t){return t.reduce((e,r,n)=>(e[n+1]=e[n]+r.length,e),new Uint32Array(t.length+1))}function Ou(t,e,r,n){let i=[];for(let f=-1,o=t.length;++f<o;){let s=t[f],l=e[f],{length:p}=s;if(l>=n)break;if(r>=l+p)continue;if(l>=r&&l+p<=n){i.push(s);continue}let u=Math.max(0,r-l),b=Math.min(n-l,p);i.push(s.slice(u,b-u))}return i.length===0&&i.push(t[0].slice(0,0)),i}function uw(t,e,r,n){let i=0,f=0,o=e.length-1;do{if(i>=o-1)return r<e[o]?n(t,i,r-e[i]):null;f=i+Math.trunc((o-i)*.5),r<e[f]?o=f:i=f}while(i<o)}function ra(t,e){return t.getValid(e)}function Af(t){function e(r,n,i){return t(r[n],i)}return function(r){let n=this.data;return uw(n,this._offsets,r,e)}}function Nu(t){let e;function r(n,i,f){return t(n[i],f,e)}return function(n,i){let f=this.data;e=i;let o=uw(f,this._offsets,n,r);return e=void 0,o}}function Hu(t){let e;function r(n,i,f){let o=f,s=0,l=0;for(let p=i-1,u=n.length;++p<u;){let b=n[p];if(~(s=t(b,e,o)))return l+s;o=0,l+=b.length}return-1}return function(n,i){e=n;let f=this.data,o=typeof i!="number"?r(f,0,0):uw(f,this._offsets,i,r);return e=void 0,o}}var Oe=class extends qe{};function g1(t,e){return e===null&&t.length>0?0:-1}function j1(t,e){let{nullBitmap:r}=t;if(!r||t.nullCount<=0)return-1;let n=0;for(let i of new cs(r,t.offset+(e||0),t.length,r,Iu)){if(!i)return n;++n}return-1}function Je(t,e,r){if(e===void 0)return-1;if(e===null)return j1(t,r);let n=Qt.getVisitFn(t),i=Ef(e);for(let f=(r||0)-1,o=t.length;++f<o;)if(i(n(t,f)))return f;return-1}function Bv(t,e,r){let n=Qt.getVisitFn(t),i=Ef(e);for(let f=(r||0)-1,o=t.length;++f<o;)if(i(n(t,f)))return f;return-1}Oe.prototype.visitNull=g1;Oe.prototype.visitBool=Je;Oe.prototype.visitInt=Je;Oe.prototype.visitInt8=Je;Oe.prototype.visitInt16=Je;Oe.prototype.visitInt32=Je;Oe.prototype.visitInt64=Je;Oe.prototype.visitUint8=Je;Oe.prototype.visitUint16=Je;Oe.prototype.visitUint32=Je;Oe.prototype.visitUint64=Je;Oe.prototype.visitFloat=Je;Oe.prototype.visitFloat16=Je;Oe.prototype.visitFloat32=Je;Oe.prototype.visitFloat64=Je;Oe.prototype.visitUtf8=Je;Oe.prototype.visitBinary=Je;Oe.prototype.visitFixedSizeBinary=Je;Oe.prototype.visitDate=Je;Oe.prototype.visitDateDay=Je;Oe.prototype.visitDateMillisecond=Je;Oe.prototype.visitTimestamp=Je;Oe.prototype.visitTimestampSecond=Je;Oe.prototype.visitTimestampMillisecond=Je;Oe.prototype.visitTimestampMicrosecond=Je;Oe.prototype.visitTimestampNanosecond=Je;Oe.prototype.visitTime=Je;Oe.prototype.visitTimeSecond=Je;Oe.prototype.visitTimeMillisecond=Je;Oe.prototype.visitTimeMicrosecond=Je;Oe.prototype.visitTimeNanosecond=Je;Oe.prototype.visitDecimal=Je;Oe.prototype.visitList=Je;Oe.prototype.visitStruct=Je;Oe.prototype.visitUnion=Je;Oe.prototype.visitDenseUnion=Bv;Oe.prototype.visitSparseUnion=Bv;Oe.prototype.visitDictionary=Je;Oe.prototype.visitInterval=Je;Oe.prototype.visitIntervalDayTime=Je;Oe.prototype.visitIntervalYearMonth=Je;Oe.prototype.visitFixedSizeList=Je;Oe.prototype.visitMap=Je;var ho=new Oe;var Ne=class extends qe{};function Ue(t){let{type:e}=t;if(t.nullCount===0&&t.stride===1&&(e.typeId===H.Timestamp||e instanceof Xt&&e.bitWidth!==64||e instanceof ai&&e.bitWidth!==64||e instanceof en&&e.precision!==Dt.HALF))return new xu(t.data.length,n=>{let i=t.data[n];return i.values.subarray(0,i.length)[Symbol.iterator]()});let r=0;return new xu(t.data.length,n=>{let f=t.data[n].length,o=t.slice(r,r+f);return r+=f,new Iv(o)})}var Iv=class{constructor(e){this.vector=e,this.index=0}next(){return this.index<this.vector.length?{value:this.vector.get(this.index++)}:{done:!0,value:null}}[Symbol.iterator](){return this}};Ne.prototype.visitNull=Ue;Ne.prototype.visitBool=Ue;Ne.prototype.visitInt=Ue;Ne.prototype.visitInt8=Ue;Ne.prototype.visitInt16=Ue;Ne.prototype.visitInt32=Ue;Ne.prototype.visitInt64=Ue;Ne.prototype.visitUint8=Ue;Ne.prototype.visitUint16=Ue;Ne.prototype.visitUint32=Ue;Ne.prototype.visitUint64=Ue;Ne.prototype.visitFloat=Ue;Ne.prototype.visitFloat16=Ue;Ne.prototype.visitFloat32=Ue;Ne.prototype.visitFloat64=Ue;Ne.prototype.visitUtf8=Ue;Ne.prototype.visitBinary=Ue;Ne.prototype.visitFixedSizeBinary=Ue;Ne.prototype.visitDate=Ue;Ne.prototype.visitDateDay=Ue;Ne.prototype.visitDateMillisecond=Ue;Ne.prototype.visitTimestamp=Ue;Ne.prototype.visitTimestampSecond=Ue;Ne.prototype.visitTimestampMillisecond=Ue;Ne.prototype.visitTimestampMicrosecond=Ue;Ne.prototype.visitTimestampNanosecond=Ue;Ne.prototype.visitTime=Ue;Ne.prototype.visitTimeSecond=Ue;Ne.prototype.visitTimeMillisecond=Ue;Ne.prototype.visitTimeMicrosecond=Ue;Ne.prototype.visitTimeNanosecond=Ue;Ne.prototype.visitDecimal=Ue;Ne.prototype.visitList=Ue;Ne.prototype.visitStruct=Ue;Ne.prototype.visitUnion=Ue;Ne.prototype.visitDenseUnion=Ue;Ne.prototype.visitSparseUnion=Ue;Ne.prototype.visitDictionary=Ue;Ne.prototype.visitInterval=Ue;Ne.prototype.visitIntervalDayTime=Ue;Ne.prototype.visitIntervalYearMonth=Ue;Ne.prototype.visitFixedSizeList=Ue;Ne.prototype.visitMap=Ue;var ds=new Ne;var y1=(t,e)=>t+e,Mi=class extends qe{visitNull(e,r){return 0}visitInt(e,r){return e.type.bitWidth/8}visitFloat(e,r){return e.type.ArrayType.BYTES_PER_ELEMENT}visitBool(e,r){return 1/8}visitDecimal(e,r){return e.type.bitWidth/8}visitDate(e,r){return(e.type.unit+1)*4}visitTime(e,r){return e.type.bitWidth/8}visitTimestamp(e,r){return e.type.unit===Qe.SECOND?4:8}visitInterval(e,r){return(e.type.unit+1)*4}visitStruct(e,r){return e.children.reduce((n,i)=>n+rn.visit(i,r),0)}visitFixedSizeBinary(e,r){return e.type.byteWidth}visitMap(e,r){return 8+e.children.reduce((n,i)=>n+rn.visit(i,r),0)}visitDictionary(e,r){var n;return e.type.indices.bitWidth/8+(((n=e.dictionary)===null||n===void 0?void 0:n.getByteLength(e.values[r]))||0)}},v1=({valueOffsets:t},e)=>8+(t[e+1]-t[e]),_1=({valueOffsets:t},e)=>8+(t[e+1]-t[e]),q1=({valueOffsets:t,stride:e,children:r},n)=>{let i=r[0],{[n*e]:f}=t,{[n*e+1]:o}=t,s=rn.getVisitFn(i.type),l=i.slice(f,o-f),p=8;for(let u=-1,b=o-f;++u<b;)p+=s(l,u);return p},k1=({stride:t,children:e},r)=>{let n=e[0],i=n.slice(r*t,t),f=rn.getVisitFn(n.type),o=0;for(let s=-1,l=i.length;++s<l;)o+=f(i,s);return o},T1=(t,e)=>t.type.mode===Ut.Dense?Sv(t,e):xv(t,e),Sv=({type:t,children:e,typeIds:r,valueOffsets:n},i)=>{let f=t.typeIdToChildIndex[r[i]];return 8+rn.visit(e[f],n[i])},xv=({children:t},e)=>4+rn.visitMany(t,t.map(()=>e)).reduce(y1,0);Mi.prototype.visitUtf8=v1;Mi.prototype.visitBinary=_1;Mi.prototype.visitList=q1;Mi.prototype.visitFixedSizeList=k1;Mi.prototype.visitUnion=T1;Mi.prototype.visitDenseUnion=Sv;Mi.prototype.visitSparseUnion=xv;var rn=new Mi;var Ev,Av={},Ov={},ze=class{constructor(e){var r,n,i;let f=e[0]instanceof ze?e.flatMap(s=>s.data):e;if(f.length===0||f.some(s=>!(s instanceof ut)))throw new TypeError("Vector constructor expects an Array of Data instances.");let o=(r=f[0])===null||r===void 0?void 0:r.type;switch(f.length){case 0:this._offsets=[0];break;case 1:{let{get:s,set:l,indexOf:p,byteLength:u}=Av[o.typeId],b=f[0];this.isValid=c=>ra(b,c),this.get=c=>s(b,c),this.set=(c,h)=>l(b,c,h),this.indexOf=c=>p(b,c),this.getByteLength=c=>u(b,c),this._offsets=[0,b.length];break}default:Object.setPrototypeOf(this,Ov[o.typeId]),this._offsets=Au(f);break}this.data=f,this.type=o,this.stride=tn(o),this.numChildren=(i=(n=o.children)===null||n===void 0?void 0:n.length)!==null&&i!==void 0?i:0,this.length=this._offsets[this._offsets.length-1]}get byteLength(){return this._byteLength===-1&&(this._byteLength=this.data.reduce((e,r)=>e+r.byteLength,0)),this._byteLength}get nullCount(){return this._nullCount===-1&&(this._nullCount=Eu(this.data)),this._nullCount}get ArrayType(){return this.type.ArrayType}get[Symbol.toStringTag](){return`${this.VectorName}<${this.type[Symbol.toStringTag]}>`}get VectorName(){return`${H[this.type.typeId]}Vector`}isValid(e){return!1}get(e){return null}set(e,r){}indexOf(e,r){return-1}includes(e,r){return this.indexOf(e,r)>0}getByteLength(e){return 0}[Symbol.iterator](){return ds.visit(this)}concat(...e){return new ze(this.data.concat(e.flatMap(r=>r.data).flat(Number.POSITIVE_INFINITY)))}slice(e,r){return new ze(ea(this,e,r,({data:n,_offsets:i},f,o)=>Ou(n,i,f,o)))}toJSON(){return[...this]}toArray(){let{type:e,data:r,length:n,stride:i,ArrayType:f}=this;switch(e.typeId){case H.Int:case H.Float:case H.Decimal:case H.Time:case H.Timestamp:switch(r.length){case 0:return new f;case 1:return r[0].values.subarray(0,n*i);default:return r.reduce((o,{values:s})=>(o.array.set(s,o.offset),o.offset+=s.length,o),{array:new f(n*i),offset:0}).array}}return[...this]}toString(){return`[${[...this].join(",")}]`}getChild(e){var r;return this.getChildAt((r=this.type.children)===null||r===void 0?void 0:r.findIndex(n=>n.name===e))}getChildAt(e){return e>-1&&e<this.numChildren?new ze(this.data.map(({children:r})=>r[e])):null}get isMemoized(){return je.isDictionary(this.type)?this.data[0].dictionary.isMemoized:!1}memoize(){if(je.isDictionary(this.type)){let e=new na(this.data[0].dictionary),r=this.data.map(n=>{let i=n.clone();return i.dictionary=e,i});return new ze(r)}return new na(this)}unmemoize(){if(je.isDictionary(this.type)&&this.isMemoized){let e=this.data[0].dictionary.unmemoize(),r=this.data.map(n=>{let i=n.clone();return i.dictionary=e,i});return new ze(r)}return this}};Ev=Symbol.toStringTag;ze[Ev]=(t=>{t.type=je.prototype,t.data=[],t.length=0,t.stride=1,t.numChildren=0,t._nullCount=-1,t._byteLength=-1,t._offsets=new Uint32Array([0]),t[Symbol.isConcatSpreadable]=!0;let e=Object.keys(H).map(r=>H[r]).filter(r=>typeof r=="number"&&r!==H.NONE);for(let r of e){let n=Qt.getVisitFnByTypeId(r),i=dr.getVisitFnByTypeId(r),f=ho.getVisitFnByTypeId(r),o=rn.getVisitFnByTypeId(r);Av[r]={get:n,set:i,indexOf:f,byteLength:o},Ov[r]=Object.create(t,{isValid:{value:Af(ra)},get:{value:Af(Qt.getVisitFnByTypeId(r))},set:{value:Nu(dr.getVisitFnByTypeId(r))},indexOf:{value:Hu(ho.getVisitFnByTypeId(r))},getByteLength:{value:Af(rn.getVisitFnByTypeId(r))}})}return"Vector"})(ze.prototype);var na=class extends ze{constructor(e){super(e.data);let r=this.get,n=this.set,i=this.slice,f=new Array(this.length);Object.defineProperty(this,"get",{value(o){let s=f[o];if(s!==void 0)return s;let l=r.call(this,o);return f[o]=l,l}}),Object.defineProperty(this,"set",{value(o,s){n.call(this,o,s),f[o]=s}}),Object.defineProperty(this,"slice",{value:(o,s)=>new na(i.call(this,o,s))}),Object.defineProperty(this,"isMemoized",{value:!0}),Object.defineProperty(this,"unmemoize",{value:()=>new ze(this.data)}),Object.defineProperty(this,"memoize",{value:()=>this})}};function Nv(t){if(!t||t.length<=0)return function(i){return!0};let e="",r=t.filter(n=>n===n);return r.length>0&&(e=`
30
+ switch (x) {${r.map(n=>`
31
+ case ${B1(n)}:`).join("")}
32
+ return false;
33
+ }`),t.length!==r.length&&(e=`if (x !== x) return false;
34
+ ${e}`),new Function("x",`${e}
35
+ return true;`)}function B1(t){return typeof t!="bigint"?Cn(t):iu?`${Cn(t)}n`:`"${Cn(t)}"`}var cw=(t,e)=>(t*e+63&~63||64)/e,I1=(t,e=0)=>t.length>=e?t.subarray(0,e):ns(new t.constructor(e),t,0),bo=class{constructor(e,r=1){this.buffer=e,this.stride=r,this.BYTES_PER_ELEMENT=e.BYTES_PER_ELEMENT,this.ArrayType=e.constructor,this._resize(this.length=Math.trunc(e.length/r))}get byteLength(){return Math.trunc(this.length*this.stride*this.BYTES_PER_ELEMENT)}get reservedLength(){return this.buffer.length/this.stride}get reservedByteLength(){return this.buffer.byteLength}set(e,r){return this}append(e){return this.set(this.length,e)}reserve(e){if(e>0){this.length+=e;let r=this.stride,n=this.length*r,i=this.buffer.length;n>=i&&this._resize(i===0?cw(n*1,this.BYTES_PER_ELEMENT):cw(n*2,this.BYTES_PER_ELEMENT))}return this}flush(e=this.length){e=cw(e*this.stride,this.BYTES_PER_ELEMENT);let r=I1(this.buffer,e);return this.clear(),r}clear(){return this.length=0,this._resize(0),this}_resize(e){return this.buffer=ns(new this.ArrayType(e),this.buffer)}};bo.prototype.offset=0;var Of=class extends bo{last(){return this.get(this.length-1)}get(e){return this.buffer[e]}set(e,r){return this.reserve(e-this.length+1),this.buffer[e*this.stride]=r,this}},ia=class extends Of{constructor(e=new Uint8Array(0)){super(e,1/8);this.numValid=0}get numInvalid(){return this.length-this.numValid}get(e){return this.buffer[e>>3]>>e%8&1}set(e,r){let{buffer:n}=this.reserve(e-this.length+1),i=e>>3,f=e%8,o=n[i]>>f&1;return r?o===0&&(n[i]|=1<<f,++this.numValid):o===1&&(n[i]&=~(1<<f),--this.numValid),this}clear(){return this.numValid=0,super.clear()}},fa=class extends Of{constructor(e=new Int32Array(1)){super(e,1)}append(e){return this.set(this.length-1,e)}set(e,r){let n=this.length-1,i=this.reserve(e-n+1).buffer;return n<e++&&i.fill(i[n],n,e),i[e]=i[e-1]+r,this}flush(e=this.length-1){return e>this.length&&this.set(e-1,0),super.flush(e+1)}};var zt=class{constructor({type:e,nullValues:r}){this.length=0,this.finished=!1,this.type=e,this.children=[],this.nullValues=r,this.stride=tn(e),this._nulls=new ia,r&&r.length>0&&(this._isValid=Nv(r))}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e){throw new Error('"throughDOM" not available in this environment')}toVector(){return new ze([this.flush()])}get ArrayType(){return this.type.ArrayType}get nullCount(){return this._nulls.numInvalid}get numChildren(){return this.children.length}get byteLength(){let e=0,{_offsets:r,_values:n,_nulls:i,_typeIds:f,children:o}=this;return r&&(e+=r.byteLength),n&&(e+=n.byteLength),i&&(e+=i.byteLength),f&&(e+=f.byteLength),o.reduce((s,l)=>s+l.byteLength,e)}get reservedLength(){return this._nulls.reservedLength}get reservedByteLength(){let e=0;return this._offsets&&(e+=this._offsets.reservedByteLength),this._values&&(e+=this._values.reservedByteLength),this._nulls&&(e+=this._nulls.reservedByteLength),this._typeIds&&(e+=this._typeIds.reservedByteLength),this.children.reduce((r,n)=>r+n.reservedByteLength,e)}get valueOffsets(){return this._offsets?this._offsets.buffer:null}get values(){return this._values?this._values.buffer:null}get nullBitmap(){return this._nulls?this._nulls.buffer:null}get typeIds(){return this._typeIds?this._typeIds.buffer:null}append(e){return this.set(this.length,e)}isValid(e){return this._isValid(e)}set(e,r){return this.setValid(e,this.isValid(r))&&this.setValue(e,r),this}setValue(e,r){this._setValue(this,e,r)}setValid(e,r){return this.length=this._nulls.set(e,+r).length,r}addChild(e,r=`${this.numChildren}`){throw new Error(`Cannot append children to non-nested type "${this.type}"`)}getChildAt(e){return this.children[e]||null}flush(){let e,r,n,i,{type:f,length:o,nullCount:s,_typeIds:l,_offsets:p,_values:u,_nulls:b}=this;(r=l==null?void 0:l.flush(o))?i=p==null?void 0:p.flush(o):(i=p==null?void 0:p.flush(o))?e=u==null?void 0:u.flush(p.last()):e=u==null?void 0:u.flush(o),s>0&&(n=b==null?void 0:b.flush(o));let c=this.children.map(h=>h.flush());return this.clear(),Fe({type:f,length:o,nullCount:s,children:c,child:c[0],data:e,typeIds:r,nullBitmap:n,valueOffsets:i})}finish(){this.finished=!0;for(let e of this.children)e.finish();return this}clear(){var e,r,n,i;this.length=0,(e=this._nulls)===null||e===void 0||e.clear(),(r=this._values)===null||r===void 0||r.clear(),(n=this._offsets)===null||n===void 0||n.clear(),(i=this._typeIds)===null||i===void 0||i.clear();for(let f of this.children)f.clear();return this}};zt.prototype.length=1;zt.prototype.stride=1;zt.prototype.children=null;zt.prototype.finished=!1;zt.prototype.nullValues=null;zt.prototype._isValid=()=>!0;var wr=class extends zt{constructor(e){super(e);this._values=new Of(new this.ArrayType(0),this.stride)}setValue(e,r){let n=this._values;return n.reserve(e-n.length+1),super.setValue(e,r)}},Ui=class extends zt{constructor(e){super(e);this._pendingLength=0,this._offsets=new fa}setValue(e,r){let n=this._pending||(this._pending=new Map),i=n.get(e);i&&(this._pendingLength-=i.length),this._pendingLength+=r instanceof Pi?r[An].length:r.length,n.set(e,r)}setValid(e,r){return super.setValid(e,r)?!0:((this._pending||(this._pending=new Map)).set(e,void 0),!1)}clear(){return this._pendingLength=0,this._pending=void 0,super.clear()}flush(){return this._flush(),super.flush()}finish(){return this._flush(),super.finish()}_flush(){let e=this._pending,r=this._pendingLength;return this._pendingLength=0,this._pending=void 0,e&&e.size>0&&this._flushPending(e,r),this}};var ws=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}offset(){return this.bb.readInt64(this.bb_pos)}metaDataLength(){return this.bb.readInt32(this.bb_pos+8)}bodyLength(){return this.bb.readInt64(this.bb_pos+16)}static sizeOf(){return 24}static createBlock(e,r,n,i){return e.prep(8,24),e.writeInt64(i),e.pad(4),e.writeInt32(n),e.writeInt64(r),e.offset()}};var oa=2,nn=4,On=4,be=4;var di=new Int32Array(2),Ru=new Float32Array(di.buffer),Du=new Float64Array(di.buffer),hs=new Uint16Array(new Uint8Array([1,0]).buffer)[0]===1;var fr=class{constructor(e,r){this.low=e|0,this.high=r|0}static create(e,r){return e==0&&r==0?fr.ZERO:new fr(e,r)}toFloat64(){return(this.low>>>0)+this.high*4294967296}equals(e){return this.low==e.low&&this.high==e.high}};fr.ZERO=new fr(0,0);var sa;(function(t){t[t.UTF8_BYTES=1]="UTF8_BYTES",t[t.UTF16_STRING=2]="UTF16_STRING"})(sa||(sa={}));var Wr=class{constructor(e){this.bytes_=e,this.position_=0}static allocate(e){return new Wr(new Uint8Array(e))}clear(){this.position_=0}bytes(){return this.bytes_}position(){return this.position_}setPosition(e){this.position_=e}capacity(){return this.bytes_.length}readInt8(e){return this.readUint8(e)<<24>>24}readUint8(e){return this.bytes_[e]}readInt16(e){return this.readUint16(e)<<16>>16}readUint16(e){return this.bytes_[e]|this.bytes_[e+1]<<8}readInt32(e){return this.bytes_[e]|this.bytes_[e+1]<<8|this.bytes_[e+2]<<16|this.bytes_[e+3]<<24}readUint32(e){return this.readInt32(e)>>>0}readInt64(e){return new fr(this.readInt32(e),this.readInt32(e+4))}readUint64(e){return new fr(this.readUint32(e),this.readUint32(e+4))}readFloat32(e){return di[0]=this.readInt32(e),Ru[0]}readFloat64(e){return di[hs?0:1]=this.readInt32(e),di[hs?1:0]=this.readInt32(e+4),Du[0]}writeInt8(e,r){this.bytes_[e]=r}writeUint8(e,r){this.bytes_[e]=r}writeInt16(e,r){this.bytes_[e]=r,this.bytes_[e+1]=r>>8}writeUint16(e,r){this.bytes_[e]=r,this.bytes_[e+1]=r>>8}writeInt32(e,r){this.bytes_[e]=r,this.bytes_[e+1]=r>>8,this.bytes_[e+2]=r>>16,this.bytes_[e+3]=r>>24}writeUint32(e,r){this.bytes_[e]=r,this.bytes_[e+1]=r>>8,this.bytes_[e+2]=r>>16,this.bytes_[e+3]=r>>24}writeInt64(e,r){this.writeInt32(e,r.low),this.writeInt32(e+4,r.high)}writeUint64(e,r){this.writeUint32(e,r.low),this.writeUint32(e+4,r.high)}writeFloat32(e,r){Ru[0]=r,this.writeInt32(e,di[0])}writeFloat64(e,r){Du[0]=r,this.writeInt32(e,di[hs?0:1]),this.writeInt32(e+4,di[hs?1:0])}getBufferIdentifier(){if(this.bytes_.length<this.position_+nn+On)throw new Error("FlatBuffers: ByteBuffer is too short to contain an identifier.");let e="";for(let r=0;r<On;r++)e+=String.fromCharCode(this.readInt8(this.position_+nn+r));return e}__offset(e,r){let n=e-this.readInt32(e);return r<this.readInt16(n)?this.readInt16(n+r):0}__union(e,r){return e.bb_pos=r+this.readInt32(r),e.bb=this,e}__string(e,r){e+=this.readInt32(e);let n=this.readInt32(e),i="",f=0;if(e+=nn,r===sa.UTF8_BYTES)return this.bytes_.subarray(e,e+n);for(;f<n;){let o,s=this.readUint8(e+f++);if(s<192)o=s;else{let l=this.readUint8(e+f++);if(s<224)o=(s&31)<<6|l&63;else{let p=this.readUint8(e+f++);if(s<240)o=(s&15)<<12|(l&63)<<6|p&63;else{let u=this.readUint8(e+f++);o=(s&7)<<18|(l&63)<<12|(p&63)<<6|u&63}}}o<65536?i+=String.fromCharCode(o):(o-=65536,i+=String.fromCharCode((o>>10)+55296,(o&(1<<10)-1)+56320))}return i}__union_with_string(e,r){return typeof e=="string"?this.__string(r):this.__union(e,r)}__indirect(e){return e+this.readInt32(e)}__vector(e){return e+this.readInt32(e)+nn}__vector_len(e){return this.readInt32(e+this.readInt32(e))}__has_identifier(e){if(e.length!=On)throw new Error("FlatBuffers: file identifier must be length "+On);for(let r=0;r<On;r++)if(e.charCodeAt(r)!=this.readInt8(this.position()+nn+r))return!1;return!0}createLong(e,r){return fr.create(e,r)}createScalarList(e,r){let n=[];for(let i=0;i<r;++i)e(i)!==null&&n.push(e(i));return n}createObjList(e,r){let n=[];for(let i=0;i<r;++i){let f=e(i);f!==null&&n.push(f.unpack())}return n}};var Nf=class{constructor(e){this.minalign=1,this.vtable=null,this.vtable_in_use=0,this.isNested=!1,this.object_start=0,this.vtables=[],this.vector_num_elems=0,this.force_defaults=!1,this.string_maps=null;let r;e?r=e:r=1024,this.bb=Wr.allocate(r),this.space=r}clear(){this.bb.clear(),this.space=this.bb.capacity(),this.minalign=1,this.vtable=null,this.vtable_in_use=0,this.isNested=!1,this.object_start=0,this.vtables=[],this.vector_num_elems=0,this.force_defaults=!1,this.string_maps=null}forceDefaults(e){this.force_defaults=e}dataBuffer(){return this.bb}asUint8Array(){return this.bb.bytes().subarray(this.bb.position(),this.bb.position()+this.offset())}prep(e,r){e>this.minalign&&(this.minalign=e);let n=~(this.bb.capacity()-this.space+r)+1&e-1;for(;this.space<n+e+r;){let i=this.bb.capacity();this.bb=Nf.growByteBuffer(this.bb),this.space+=this.bb.capacity()-i}this.pad(n)}pad(e){for(let r=0;r<e;r++)this.bb.writeInt8(--this.space,0)}writeInt8(e){this.bb.writeInt8(this.space-=1,e)}writeInt16(e){this.bb.writeInt16(this.space-=2,e)}writeInt32(e){this.bb.writeInt32(this.space-=4,e)}writeInt64(e){this.bb.writeInt64(this.space-=8,e)}writeFloat32(e){this.bb.writeFloat32(this.space-=4,e)}writeFloat64(e){this.bb.writeFloat64(this.space-=8,e)}addInt8(e){this.prep(1,0),this.writeInt8(e)}addInt16(e){this.prep(2,0),this.writeInt16(e)}addInt32(e){this.prep(4,0),this.writeInt32(e)}addInt64(e){this.prep(8,0),this.writeInt64(e)}addFloat32(e){this.prep(4,0),this.writeFloat32(e)}addFloat64(e){this.prep(8,0),this.writeFloat64(e)}addFieldInt8(e,r,n){(this.force_defaults||r!=n)&&(this.addInt8(r),this.slot(e))}addFieldInt16(e,r,n){(this.force_defaults||r!=n)&&(this.addInt16(r),this.slot(e))}addFieldInt32(e,r,n){(this.force_defaults||r!=n)&&(this.addInt32(r),this.slot(e))}addFieldInt64(e,r,n){(this.force_defaults||!r.equals(n))&&(this.addInt64(r),this.slot(e))}addFieldFloat32(e,r,n){(this.force_defaults||r!=n)&&(this.addFloat32(r),this.slot(e))}addFieldFloat64(e,r,n){(this.force_defaults||r!=n)&&(this.addFloat64(r),this.slot(e))}addFieldOffset(e,r,n){(this.force_defaults||r!=n)&&(this.addOffset(r),this.slot(e))}addFieldStruct(e,r,n){r!=n&&(this.nested(r),this.slot(e))}nested(e){if(e!=this.offset())throw new Error("FlatBuffers: struct must be serialized inline.")}notNested(){if(this.isNested)throw new Error("FlatBuffers: object serialization must not be nested.")}slot(e){this.vtable!==null&&(this.vtable[e]=this.offset())}offset(){return this.bb.capacity()-this.space}static growByteBuffer(e){let r=e.capacity();if(r&3221225472)throw new Error("FlatBuffers: cannot grow buffer beyond 2 gigabytes.");let n=r<<1,i=Wr.allocate(n);return i.setPosition(n-r),i.bytes().set(e.bytes(),n-r),i}addOffset(e){this.prep(nn,0),this.writeInt32(this.offset()-e+nn)}startObject(e){this.notNested(),this.vtable==null&&(this.vtable=[]),this.vtable_in_use=e;for(let r=0;r<e;r++)this.vtable[r]=0;this.isNested=!0,this.object_start=this.offset()}endObject(){if(this.vtable==null||!this.isNested)throw new Error("FlatBuffers: endObject called without startObject");this.addInt32(0);let e=this.offset(),r=this.vtable_in_use-1;for(;r>=0&&this.vtable[r]==0;r--);let n=r+1;for(;r>=0;r--)this.addInt16(this.vtable[r]!=0?e-this.vtable[r]:0);let i=2;this.addInt16(e-this.object_start);let f=(n+i)*oa;this.addInt16(f);let o=0,s=this.space;e:for(r=0;r<this.vtables.length;r++){let l=this.bb.capacity()-this.vtables[r];if(f==this.bb.readInt16(l)){for(let p=oa;p<f;p+=oa)if(this.bb.readInt16(s+p)!=this.bb.readInt16(l+p))continue e;o=this.vtables[r];break}}return o?(this.space=this.bb.capacity()-e,this.bb.writeInt32(this.space,o-e)):(this.vtables.push(this.offset()),this.bb.writeInt32(this.bb.capacity()-e,this.offset()-e)),this.isNested=!1,e}finish(e,r,n){let i=n?be:0;if(r){let f=r;if(this.prep(this.minalign,nn+On+i),f.length!=On)throw new Error("FlatBuffers: file identifier must be length "+On);for(let o=On-1;o>=0;o--)this.writeInt8(f.charCodeAt(o))}this.prep(this.minalign,nn+i),this.addOffset(e),i&&this.addInt32(this.bb.capacity()-this.space),this.bb.setPosition(this.space)}finishSizePrefixed(e,r){this.finish(e,r,!0)}requiredField(e,r){let n=this.bb.capacity()-e,i=n-this.bb.readInt32(n);if(!(this.bb.readInt16(i+r)!=0))throw new Error("FlatBuffers: field "+r+" must be set")}startVector(e,r,n){this.notNested(),this.vector_num_elems=r,this.prep(nn,e*r),this.prep(n,e*r)}endVector(){return this.writeInt32(this.vector_num_elems),this.offset()}createSharedString(e){if(!e)return 0;if(this.string_maps||(this.string_maps=new Map),this.string_maps.has(e))return this.string_maps.get(e);let r=this.createString(e);return this.string_maps.set(e,r),r}createString(e){if(!e)return 0;let r;if(e instanceof Uint8Array)r=e;else{r=[];let n=0;for(;n<e.length;){let i,f=e.charCodeAt(n++);if(f<55296||f>=56320)i=f;else{let o=e.charCodeAt(n++);i=(f<<10)+o+(65536-(55296<<10)-56320)}i<128?r.push(i):(i<2048?r.push(i>>6&31|192):(i<65536?r.push(i>>12&15|224):r.push(i>>18&7|240,i>>12&63|128),r.push(i>>6&63|128)),r.push(i&63|128))}}this.addInt8(0),this.startVector(1,r.length,1),this.bb.setPosition(this.space-=r.length);for(let n=0,i=this.space,f=this.bb.bytes();n<r.length;n++)f[i++]=r[n];return this.endVector()}createLong(e,r){return fr.create(e,r)}createObjectOffset(e){return e===null?0:typeof e=="string"?this.createString(e):e.pack(this)}createObjectOffsetList(e){let r=[];for(let n=0;n<e.length;++n){let i=e[n];if(i!==null)r.push(this.createObjectOffset(i));else throw new Error("FlatBuffers: Argument for createObjectOffsetList cannot contain null.")}return r}createStructOffsetList(e,r){return r(this,e.length),this.createObjectOffsetList(e),this.endVector()}};var Nt=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsKeyValue(e,r){return(r||new Nt).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsKeyValue(e,r){return e.setPosition(e.position()+be),(r||new Nt).__init(e.readInt32(e.position())+e.position(),e)}key(e){let r=this.bb.__offset(this.bb_pos,4);return r?this.bb.__string(this.bb_pos+r,e):null}value(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.__string(this.bb_pos+r,e):null}static startKeyValue(e){e.startObject(2)}static addKey(e,r){e.addFieldOffset(0,r,0)}static addValue(e,r){e.addFieldOffset(1,r,0)}static endKeyValue(e){return e.endObject()}static createKeyValue(e,r,n){return Nt.startKeyValue(e),Nt.addKey(e,r),Nt.addValue(e,n),Nt.endKeyValue(e)}};var Hf;(function(t){t[t.V1=0]="V1",t[t.V2=1]="V2",t[t.V3=2]="V3",t[t.V4=3]="V4",t[t.V5=4]="V5"})(Hf||(Hf={}));var Rf;(function(t){t[t.Little=0]="Little",t[t.Big=1]="Big"})(Rf||(Rf={}));var la;(function(t){t[t.DenseArray=0]="DenseArray"})(la||(la={}));var hr=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsInt(e,r){return(r||new hr).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInt(e,r){return e.setPosition(e.position()+be),(r||new hr).__init(e.readInt32(e.position())+e.position(),e)}bitWidth(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}isSigned(){let e=this.bb.__offset(this.bb_pos,6);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startInt(e){e.startObject(2)}static addBitWidth(e,r){e.addFieldInt32(0,r,0)}static addIsSigned(e,r){e.addFieldInt8(1,+r,0)}static endInt(e){return e.endObject()}static createInt(e,r,n){return hr.startInt(e),hr.addBitWidth(e,r),hr.addIsSigned(e,n),hr.endInt(e)}};var Nn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDictionaryEncoding(e,r){return(r||new Nn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryEncoding(e,r){return e.setPosition(e.position()+be),(r||new Nn).__init(e.readInt32(e.position())+e.position(),e)}id(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}indexType(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new hr).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}isOrdered(){let e=this.bb.__offset(this.bb_pos,8);return e?!!this.bb.readInt8(this.bb_pos+e):!1}dictionaryKind(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.readInt16(this.bb_pos+e):la.DenseArray}static startDictionaryEncoding(e){e.startObject(4)}static addId(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addIndexType(e,r){e.addFieldOffset(1,r,0)}static addIsOrdered(e,r){e.addFieldInt8(2,+r,0)}static addDictionaryKind(e,r){e.addFieldInt16(3,r,la.DenseArray)}static endDictionaryEncoding(e){return e.endObject()}};var Li=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBinary(e,r){return(r||new Li).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBinary(e,r){return e.setPosition(e.position()+be),(r||new Li).__init(e.readInt32(e.position())+e.position(),e)}static startBinary(e){e.startObject(0)}static endBinary(e){return e.endObject()}static createBinary(e){return Li.startBinary(e),Li.endBinary(e)}};var Ci=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBool(e,r){return(r||new Ci).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBool(e,r){return e.setPosition(e.position()+be),(r||new Ci).__init(e.readInt32(e.position())+e.position(),e)}static startBool(e){e.startObject(0)}static endBool(e){return e.endObject()}static createBool(e){return Ci.startBool(e),Ci.endBool(e)}};var aa;(function(t){t[t.DAY=0]="DAY",t[t.MILLISECOND=1]="MILLISECOND"})(aa||(aa={}));var fn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDate(e,r){return(r||new fn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDate(e,r){return e.setPosition(e.position()+be),(r||new fn).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):aa.MILLISECOND}static startDate(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,aa.MILLISECOND)}static endDate(e){return e.endObject()}static createDate(e,r){return fn.startDate(e),fn.addUnit(e,r),fn.endDate(e)}};var br=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDecimal(e,r){return(r||new br).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDecimal(e,r){return e.setPosition(e.position()+be),(r||new br).__init(e.readInt32(e.position())+e.position(),e)}precision(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}scale(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt32(this.bb_pos+e):0}bitWidth(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.readInt32(this.bb_pos+e):128}static startDecimal(e){e.startObject(3)}static addPrecision(e,r){e.addFieldInt32(0,r,0)}static addScale(e,r){e.addFieldInt32(1,r,0)}static addBitWidth(e,r){e.addFieldInt32(2,r,128)}static endDecimal(e){return e.endObject()}static createDecimal(e,r,n,i){return br.startDecimal(e),br.addPrecision(e,r),br.addScale(e,n),br.addBitWidth(e,i),br.endDecimal(e)}};var Df;(function(t){t[t.SECOND=0]="SECOND",t[t.MILLISECOND=1]="MILLISECOND",t[t.MICROSECOND=2]="MICROSECOND",t[t.NANOSECOND=3]="NANOSECOND"})(Df||(Df={}));var on=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFixedSizeBinary(e,r){return(r||new on).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeBinary(e,r){return e.setPosition(e.position()+be),(r||new on).__init(e.readInt32(e.position())+e.position(),e)}byteWidth(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}static startFixedSizeBinary(e){e.startObject(1)}static addByteWidth(e,r){e.addFieldInt32(0,r,0)}static endFixedSizeBinary(e){return e.endObject()}static createFixedSizeBinary(e,r){return on.startFixedSizeBinary(e),on.addByteWidth(e,r),on.endFixedSizeBinary(e)}};var sn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFixedSizeList(e,r){return(r||new sn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeList(e,r){return e.setPosition(e.position()+be),(r||new sn).__init(e.readInt32(e.position())+e.position(),e)}listSize(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt32(this.bb_pos+e):0}static startFixedSizeList(e){e.startObject(1)}static addListSize(e,r){e.addFieldInt32(0,r,0)}static endFixedSizeList(e){return e.endObject()}static createFixedSizeList(e,r){return sn.startFixedSizeList(e),sn.addListSize(e,r),sn.endFixedSizeList(e)}};var pa;(function(t){t[t.HALF=0]="HALF",t[t.SINGLE=1]="SINGLE",t[t.DOUBLE=2]="DOUBLE"})(pa||(pa={}));var ln=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFloatingPoint(e,r){return(r||new ln).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFloatingPoint(e,r){return e.setPosition(e.position()+be),(r||new ln).__init(e.readInt32(e.position())+e.position(),e)}precision(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):pa.HALF}static startFloatingPoint(e){e.startObject(1)}static addPrecision(e,r){e.addFieldInt16(0,r,pa.HALF)}static endFloatingPoint(e){return e.endObject()}static createFloatingPoint(e,r){return ln.startFloatingPoint(e),ln.addPrecision(e,r),ln.endFloatingPoint(e)}};var ua;(function(t){t[t.YEAR_MONTH=0]="YEAR_MONTH",t[t.DAY_TIME=1]="DAY_TIME",t[t.MONTH_DAY_NANO=2]="MONTH_DAY_NANO"})(ua||(ua={}));var an=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsInterval(e,r){return(r||new an).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInterval(e,r){return e.setPosition(e.position()+be),(r||new an).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):ua.YEAR_MONTH}static startInterval(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,ua.YEAR_MONTH)}static endInterval(e){return e.endObject()}static createInterval(e,r){return an.startInterval(e),an.addUnit(e,r),an.endInterval(e)}};var Vi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsList(e,r){return(r||new Vi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsList(e,r){return e.setPosition(e.position()+be),(r||new Vi).__init(e.readInt32(e.position())+e.position(),e)}static startList(e){e.startObject(0)}static endList(e){return e.endObject()}static createList(e){return Vi.startList(e),Vi.endList(e)}};var pn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsMap(e,r){return(r||new pn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMap(e,r){return e.setPosition(e.position()+be),(r||new pn).__init(e.readInt32(e.position())+e.position(),e)}keysSorted(){let e=this.bb.__offset(this.bb_pos,4);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startMap(e){e.startObject(1)}static addKeysSorted(e,r){e.addFieldInt8(0,+r,0)}static endMap(e){return e.endObject()}static createMap(e,r){return pn.startMap(e),pn.addKeysSorted(e,r),pn.endMap(e)}};var Wi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsNull(e,r){return(r||new Wi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsNull(e,r){return e.setPosition(e.position()+be),(r||new Wi).__init(e.readInt32(e.position())+e.position(),e)}static startNull(e){e.startObject(0)}static endNull(e){return e.endObject()}static createNull(e){return Wi.startNull(e),Wi.endNull(e)}};var Yi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsStruct_(e,r){return(r||new Yi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsStruct_(e,r){return e.setPosition(e.position()+be),(r||new Yi).__init(e.readInt32(e.position())+e.position(),e)}static startStruct_(e){e.startObject(0)}static endStruct_(e){return e.endObject()}static createStruct_(e){return Yi.startStruct_(e),Yi.endStruct_(e)}};var Er=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsTime(e,r){return(r||new Er).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTime(e,r){return e.setPosition(e.position()+be),(r||new Er).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Df.MILLISECOND}bitWidth(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt32(this.bb_pos+e):32}static startTime(e){e.startObject(2)}static addUnit(e,r){e.addFieldInt16(0,r,Df.MILLISECOND)}static addBitWidth(e,r){e.addFieldInt32(1,r,32)}static endTime(e){return e.endObject()}static createTime(e,r,n){return Er.startTime(e),Er.addUnit(e,r),Er.addBitWidth(e,n),Er.endTime(e)}};var Ar=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsTimestamp(e,r){return(r||new Ar).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTimestamp(e,r){return e.setPosition(e.position()+be),(r||new Ar).__init(e.readInt32(e.position())+e.position(),e)}unit(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Df.SECOND}timezone(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.__string(this.bb_pos+r,e):null}static startTimestamp(e){e.startObject(2)}static addUnit(e,r){e.addFieldInt16(0,r,Df.SECOND)}static addTimezone(e,r){e.addFieldOffset(1,r,0)}static endTimestamp(e){return e.endObject()}static createTimestamp(e,r,n){return Ar.startTimestamp(e),Ar.addUnit(e,r),Ar.addTimezone(e,n),Ar.endTimestamp(e)}};var ca;(function(t){t[t.Sparse=0]="Sparse",t[t.Dense=1]="Dense"})(ca||(ca={}));var gr=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsUnion(e,r){return(r||new gr).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUnion(e,r){return e.setPosition(e.position()+be),(r||new gr).__init(e.readInt32(e.position())+e.position(),e)}mode(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):ca.Sparse}typeIds(e){let r=this.bb.__offset(this.bb_pos,6);return r?this.bb.readInt32(this.bb.__vector(this.bb_pos+r)+e*4):0}typeIdsLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}typeIdsArray(){let e=this.bb.__offset(this.bb_pos,6);return e?new Int32Array(this.bb.bytes().buffer,this.bb.bytes().byteOffset+this.bb.__vector(this.bb_pos+e),this.bb.__vector_len(this.bb_pos+e)):null}static startUnion(e){e.startObject(2)}static addMode(e,r){e.addFieldInt16(0,r,ca.Sparse)}static addTypeIds(e,r){e.addFieldOffset(1,r,0)}static createTypeIdsVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addInt32(r[n]);return e.endVector()}static startTypeIdsVector(e,r){e.startVector(4,r,4)}static endUnion(e){return e.endObject()}static createUnion(e,r,n){return gr.startUnion(e),gr.addMode(e,r),gr.addTypeIds(e,n),gr.endUnion(e)}};var Ki=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsUtf8(e,r){return(r||new Ki).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUtf8(e,r){return e.setPosition(e.position()+be),(r||new Ki).__init(e.readInt32(e.position())+e.position(),e)}static startUtf8(e){e.startObject(0)}static endUtf8(e){return e.endObject()}static createUtf8(e){return Ki.startUtf8(e),Ki.endUtf8(e)}};var Ht;(function(t){t[t.NONE=0]="NONE",t[t.Null=1]="Null",t[t.Int=2]="Int",t[t.FloatingPoint=3]="FloatingPoint",t[t.Binary=4]="Binary",t[t.Utf8=5]="Utf8",t[t.Bool=6]="Bool",t[t.Decimal=7]="Decimal",t[t.Date=8]="Date",t[t.Time=9]="Time",t[t.Timestamp=10]="Timestamp",t[t.Interval=11]="Interval",t[t.List=12]="List",t[t.Struct_=13]="Struct_",t[t.Union=14]="Union",t[t.FixedSizeBinary=15]="FixedSizeBinary",t[t.FixedSizeList=16]="FixedSizeList",t[t.Map=17]="Map",t[t.Duration=18]="Duration",t[t.LargeBinary=19]="LargeBinary",t[t.LargeUtf8=20]="LargeUtf8",t[t.LargeList=21]="LargeList"})(Ht||(Ht={}));var or=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsField(e,r){return(r||new or).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsField(e,r){return e.setPosition(e.position()+be),(r||new or).__init(e.readInt32(e.position())+e.position(),e)}name(e){let r=this.bb.__offset(this.bb_pos,4);return r?this.bb.__string(this.bb_pos+r,e):null}nullable(){let e=this.bb.__offset(this.bb_pos,6);return e?!!this.bb.readInt8(this.bb_pos+e):!1}typeType(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.readUint8(this.bb_pos+e):Ht.NONE}type(e){let r=this.bb.__offset(this.bb_pos,10);return r?this.bb.__union(e,this.bb_pos+r):null}dictionary(e){let r=this.bb.__offset(this.bb_pos,12);return r?(e||new Nn).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}children(e,r){let n=this.bb.__offset(this.bb_pos,14);return n?(r||new or).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}childrenLength(){let e=this.bb.__offset(this.bb_pos,14);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,16);return n?(r||new Nt).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,16);return e?this.bb.__vector_len(this.bb_pos+e):0}static startField(e){e.startObject(7)}static addName(e,r){e.addFieldOffset(0,r,0)}static addNullable(e,r){e.addFieldInt8(1,+r,0)}static addTypeType(e,r){e.addFieldInt8(2,r,Ht.NONE)}static addType(e,r){e.addFieldOffset(3,r,0)}static addDictionary(e,r){e.addFieldOffset(4,r,0)}static addChildren(e,r){e.addFieldOffset(5,r,0)}static createChildrenVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startChildrenVector(e,r){e.startVector(4,r,4)}static addCustomMetadata(e,r){e.addFieldOffset(6,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endField(e){return e.endObject()}};var Lt=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsSchema(e,r){return(r||new Lt).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsSchema(e,r){return e.setPosition(e.position()+be),(r||new Lt).__init(e.readInt32(e.position())+e.position(),e)}endianness(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Rf.Little}fields(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new or).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}fieldsLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new Nt).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}features(e){let r=this.bb.__offset(this.bb_pos,10);return r?this.bb.readInt64(this.bb.__vector(this.bb_pos+r)+e*8):this.bb.createLong(0,0)}featuresLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.__vector_len(this.bb_pos+e):0}static startSchema(e){e.startObject(4)}static addEndianness(e,r){e.addFieldInt16(0,r,Rf.Little)}static addFields(e,r){e.addFieldOffset(1,r,0)}static createFieldsVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startFieldsVector(e,r){e.startVector(4,r,4)}static addCustomMetadata(e,r){e.addFieldOffset(2,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static addFeatures(e,r){e.addFieldOffset(3,r,0)}static createFeaturesVector(e,r){e.startVector(8,r.length,8);for(let n=r.length-1;n>=0;n--)e.addInt64(r[n]);return e.endVector()}static startFeaturesVector(e,r){e.startVector(8,r,8)}static endSchema(e){return e.endObject()}static finishSchemaBuffer(e,r){e.finish(r)}static finishSizePrefixedSchemaBuffer(e,r){e.finish(r,void 0,!0)}static createSchema(e,r,n,i,f){return Lt.startSchema(e),Lt.addEndianness(e,r),Lt.addFields(e,n),Lt.addCustomMetadata(e,i),Lt.addFeatures(e,f),Lt.endSchema(e)}};var Or=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsFooter(e,r){return(r||new Or).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFooter(e,r){return e.setPosition(e.position()+be),(r||new Or).__init(e.readInt32(e.position())+e.position(),e)}version(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Hf.V1}schema(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new Lt).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}dictionaries(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new ws).__init(this.bb.__vector(this.bb_pos+n)+e*24,this.bb):null}dictionariesLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}recordBatches(e,r){let n=this.bb.__offset(this.bb_pos,10);return n?(r||new ws).__init(this.bb.__vector(this.bb_pos+n)+e*24,this.bb):null}recordBatchesLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.__vector_len(this.bb_pos+e):0}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,12);return n?(r||new Nt).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,12);return e?this.bb.__vector_len(this.bb_pos+e):0}static startFooter(e){e.startObject(5)}static addVersion(e,r){e.addFieldInt16(0,r,Hf.V1)}static addSchema(e,r){e.addFieldOffset(1,r,0)}static addDictionaries(e,r){e.addFieldOffset(2,r,0)}static startDictionariesVector(e,r){e.startVector(24,r,8)}static addRecordBatches(e,r){e.addFieldOffset(3,r,0)}static startRecordBatchesVector(e,r){e.startVector(24,r,8)}static addCustomMetadata(e,r){e.addFieldOffset(4,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endFooter(e){return e.endObject()}static finishFooterBuffer(e,r){e.finish(r)}static finishSizePrefixedFooterBuffer(e,r){e.finish(r,void 0,!0)}};var et=class{constructor(e=[],r,n){this.fields=e||[],this.metadata=r||new Map,n||(n=mw(e)),this.dictionaries=n}get[Symbol.toStringTag](){return"Schema"}get names(){return this.fields.map(e=>e.name)}toString(){return`Schema<{ ${this.fields.map((e,r)=>`${r}: ${e}`).join(", ")} }>`}select(e){let r=new Set(e),n=this.fields.filter(i=>r.has(i.name));return new et(n,this.metadata)}selectAt(e){let r=e.map(n=>this.fields[n]).filter(Boolean);return new et(r,this.metadata)}assign(...e){let r=e[0]instanceof et?e[0]:Array.isArray(e[0])?new et(e[0]):new et(e),n=[...this.fields],i=zu(zu(new Map,this.metadata),r.metadata),f=r.fields.filter(s=>{let l=n.findIndex(p=>p.name===s.name);return~l?(n[l]=s.clone({metadata:zu(zu(new Map,n[l].metadata),s.metadata)}))&&!1:!0}),o=mw(f,new Map);return new et([...n,...f],i,new Map([...this.dictionaries,...o]))}};et.prototype.fields=null;et.prototype.metadata=null;et.prototype.dictionaries=null;var Ce=class{constructor(e,r,n=!1,i){this.name=e,this.type=r,this.nullable=n,this.metadata=i||new Map}static new(...e){let[r,n,i,f]=e;return e[0]&&typeof e[0]=="object"&&({name:r}=e[0],n===void 0&&(n=e[0].type),i===void 0&&(i=e[0].nullable),f===void 0&&(f=e[0].metadata)),new Ce(`${r}`,n,i,f)}get typeId(){return this.type.typeId}get[Symbol.toStringTag](){return"Field"}toString(){return`${this.name}: ${this.type}`}clone(...e){let[r,n,i,f]=e;return!e[0]||typeof e[0]!="object"?[r=this.name,n=this.type,i=this.nullable,f=this.metadata]=e:{name:r=this.name,type:n=this.type,nullable:i=this.nullable,metadata:f=this.metadata}=e[0],Ce.new(r,n,i,f)}};Ce.prototype.type=null;Ce.prototype.name=null;Ce.prototype.nullable=null;Ce.prototype.metadata=null;function zu(t,e){return new Map([...t||new Map,...e||new Map])}function mw(t,e=new Map){for(let r=-1,n=t.length;++r<n;){let f=t[r].type;if(je.isDictionary(f)){if(!e.has(f.id))e.set(f.id,f.dictionary);else if(e.get(f.id)!==f.dictionary)throw new Error("Cannot create Schema containing two different dictionaries with the same Id")}f.children&&f.children.length>0&&mw(f.children,e)}return e}var Hv=fr,S1=Nf,x1=Wr,zf=class{constructor(e,r=mr.V4,n,i){this.schema=e,this.version=r,n&&(this._recordBatches=n),i&&(this._dictionaryBatches=i)}static decode(e){e=new x1(Ee(e));let r=Or.getRootAsFooter(e),n=et.decode(r.schema());return new Rv(n,r)}static encode(e){let r=new S1,n=et.encode(r,e.schema);Or.startRecordBatchesVector(r,e.numRecordBatches);for(let o of[...e.recordBatches()].slice().reverse())wi.encode(r,o);let i=r.endVector();Or.startDictionariesVector(r,e.numDictionaries);for(let o of[...e.dictionaryBatches()].slice().reverse())wi.encode(r,o);let f=r.endVector();return Or.startFooter(r),Or.addSchema(r,n),Or.addVersion(r,mr.V4),Or.addRecordBatches(r,i),Or.addDictionaries(r,f),Or.finishFooterBuffer(r,Or.endFooter(r)),r.asUint8Array()}get numRecordBatches(){return this._recordBatches.length}get numDictionaries(){return this._dictionaryBatches.length}*recordBatches(){for(let e,r=-1,n=this.numRecordBatches;++r<n;)(e=this.getRecordBatch(r))&&(yield e)}*dictionaryBatches(){for(let e,r=-1,n=this.numDictionaries;++r<n;)(e=this.getDictionaryBatch(r))&&(yield e)}getRecordBatch(e){return e>=0&&e<this.numRecordBatches&&this._recordBatches[e]||null}getDictionaryBatch(e){return e>=0&&e<this.numDictionaries&&this._dictionaryBatches[e]||null}};var Rv=class extends zf{constructor(e,r){super(e,r.version());this._footer=r}get numRecordBatches(){return this._footer.recordBatchesLength()}get numDictionaries(){return this._footer.dictionariesLength()}getRecordBatch(e){if(e>=0&&e<this.numRecordBatches){let r=this._footer.recordBatches(e);if(r)return wi.decode(r)}return null}getDictionaryBatch(e){if(e>=0&&e<this.numDictionaries){let r=this._footer.dictionaries(e);if(r)return wi.decode(r)}return null}},wi=class{constructor(e,r,n){this.metaDataLength=e,this.offset=typeof n=="number"?n:n.low,this.bodyLength=typeof r=="number"?r:r.low}static decode(e){return new wi(e.metaDataLength(),e.bodyLength(),e.offset())}static encode(e,r){let{metaDataLength:n}=r,i=new Hv(r.offset,0),f=new Hv(r.bodyLength,0);return ws.createBlock(e,i,n,f)}};var Bt=Object.freeze({done:!0,value:void 0}),Fu=class{constructor(e){this._json=e}get schema(){return this._json.schema}get batches(){return this._json.batches||[]}get dictionaries(){return this._json.dictionaries||[]}},bs=class{tee(){return this._getDOMStream().tee()}pipe(e,r){return this._getNodeStream().pipe(e,r)}pipeTo(e,r){return this._getDOMStream().pipeTo(e,r)}pipeThrough(e,r){return this._getDOMStream().pipeThrough(e,r)}_getDOMStream(){return this._DOMStream||(this._DOMStream=this.toDOMStream())}_getNodeStream(){return this._nodeStream||(this._nodeStream=this.toNodeStream())}},dw=class extends bs{constructor(){super();this._values=[],this.resolvers=[],this._closedPromise=new Promise(e=>this._closedPromiseResolve=e)}get closed(){return this._closedPromise}cancel(e){return pe(this,void 0,void 0,function*(){yield this.return(e)})}write(e){this._ensureOpen()&&(this.resolvers.length<=0?this._values.push(e):this.resolvers.shift().resolve({done:!1,value:e}))}abort(e){this._closedPromiseResolve&&(this.resolvers.length<=0?this._error={error:e}:this.resolvers.shift().reject({done:!0,value:e}))}close(){if(this._closedPromiseResolve){let{resolvers:e}=this;for(;e.length>0;)e.shift().resolve(Bt);this._closedPromiseResolve(),this._closedPromiseResolve=void 0}}[Symbol.asyncIterator](){return this}toDOMStream(e){return cr.toDOMStream(this._closedPromiseResolve||this._error?this:this._values,e)}toNodeStream(e){return cr.toNodeStream(this._closedPromiseResolve||this._error?this:this._values,e)}throw(e){return pe(this,void 0,void 0,function*(){return yield this.abort(e),Bt})}return(e){return pe(this,void 0,void 0,function*(){return yield this.close(),Bt})}read(e){return pe(this,void 0,void 0,function*(){return(yield this.next(e,"read")).value})}peek(e){return pe(this,void 0,void 0,function*(){return(yield this.next(e,"peek")).value})}next(...e){return this._values.length>0?Promise.resolve({done:!1,value:this._values.shift()}):this._error?Promise.reject({done:!0,value:this._error.error}):this._closedPromiseResolve?new Promise((r,n)=>{this.resolvers.push({resolve:r,reject:n})}):Promise.resolve(Bt)}_ensureOpen(){if(this._closedPromiseResolve)return!0;throw new Error("AsyncQueue is closed")}};var Gi=class extends dw{write(e){if((e=Ee(e)).byteLength>0)return super.write(e)}toString(e=!1){return e?Gl(this.toUint8Array(!0)):this.toUint8Array(!1).then(Gl)}toUint8Array(e=!1){return e?$r(this._values)[0]:(()=>pe(this,void 0,void 0,function*(){var r,n;let i=[],f=0;try{for(var o=Sn(this),s;s=yield o.next(),!s.done;){let l=s.value;i.push(l),f+=l.byteLength}}catch(l){r={error:l}}finally{try{s&&!s.done&&(n=o.return)&&(yield n.call(o))}finally{if(r)throw r.error}}return $r(i,f)[0]}))()}},Ji=class{constructor(e){e&&(this.source=new Dv(cr.fromIterable(e)))}[Symbol.iterator](){return this}next(e){return this.source.next(e)}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}peek(e){return this.source.peek(e)}read(e){return this.source.read(e)}},un=class{constructor(e){e instanceof un?this.source=e.source:e instanceof Gi?this.source=new Ff(cr.fromAsyncIterable(e)):pu(e)?this.source=new Ff(cr.fromNodeStream(e)):Zl(e)?this.source=new Ff(cr.fromDOMStream(e)):lu(e)?this.source=new Ff(cr.fromDOMStream(e.body)):Mn(e)?this.source=new Ff(cr.fromIterable(e)):Pn(e)?this.source=new Ff(cr.fromAsyncIterable(e)):xn(e)&&(this.source=new Ff(cr.fromAsyncIterable(e)))}[Symbol.asyncIterator](){return this}next(e){return this.source.next(e)}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}get closed(){return this.source.closed}cancel(e){return this.source.cancel(e)}peek(e){return this.source.peek(e)}read(e){return this.source.read(e)}},Dv=class{constructor(e){this.source=e}cancel(e){this.return(e)}peek(e){return this.next(e,"peek").value}read(e){return this.next(e,"read").value}next(e,r="read"){return this.source.next({cmd:r,size:e})}throw(e){return Object.create(this.source.throw&&this.source.throw(e)||Bt)}return(e){return Object.create(this.source.return&&this.source.return(e)||Bt)}},Ff=class{constructor(e){this.source=e,this._closedPromise=new Promise(r=>this._closedPromiseResolve=r)}cancel(e){return pe(this,void 0,void 0,function*(){yield this.return(e)})}get closed(){return this._closedPromise}read(e){return pe(this,void 0,void 0,function*(){return(yield this.next(e,"read")).value})}peek(e){return pe(this,void 0,void 0,function*(){return(yield this.next(e,"peek")).value})}next(e,r="read"){return pe(this,void 0,void 0,function*(){return yield this.source.next({cmd:r,size:e})})}throw(e){return pe(this,void 0,void 0,function*(){let r=this.source.throw&&(yield this.source.throw(e))||Bt;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)})}return(e){return pe(this,void 0,void 0,function*(){let r=this.source.return&&(yield this.source.return(e))||Bt;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)})}};var Pu=class extends Ji{constructor(e,r){super();this.position=0,this.buffer=Ee(e),this.size=typeof r=="undefined"?this.buffer.byteLength:r}readInt32(e){let{buffer:r,byteOffset:n}=this.readAt(e,4);return new DataView(r,n).getInt32(0,!0)}seek(e){return this.position=Math.min(e,this.size),e<this.size}read(e){let{buffer:r,size:n,position:i}=this;return r&&i<n?(typeof e!="number"&&(e=Number.POSITIVE_INFINITY),this.position=Math.min(n,i+Math.min(n-i,e)),r.subarray(i,this.position)):null}readAt(e,r){let n=this.buffer,i=Math.min(this.size,e+r);return n?n.subarray(e,i):new Uint8Array(r)}close(){this.buffer&&(this.buffer=null)}throw(e){return this.close(),{done:!0,value:e}}return(e){return this.close(),{done:!0,value:e}}},go=class extends un{constructor(e,r){super();this.position=0,this._handle=e,typeof r=="number"?this.size=r:this._pending=(()=>pe(this,void 0,void 0,function*(){this.size=(yield e.stat()).size,delete this._pending}))()}readInt32(e){return pe(this,void 0,void 0,function*(){let{buffer:r,byteOffset:n}=yield this.readAt(e,4);return new DataView(r,n).getInt32(0,!0)})}seek(e){return pe(this,void 0,void 0,function*(){return this._pending&&(yield this._pending),this.position=Math.min(e,this.size),e<this.size})}read(e){return pe(this,void 0,void 0,function*(){this._pending&&(yield this._pending);let{_handle:r,size:n,position:i}=this;if(r&&i<n){typeof e!="number"&&(e=Number.POSITIVE_INFINITY);let f=i,o=0,s=0,l=Math.min(n,f+Math.min(n-f,e)),p=new Uint8Array(Math.max(0,(this.position=l)-f));for(;(f+=s)<l&&(o+=s)<p.byteLength;)({bytesRead:s}=yield r.read(p,o,p.byteLength-o,f));return p}return null})}readAt(e,r){return pe(this,void 0,void 0,function*(){this._pending&&(yield this._pending);let{_handle:n,size:i}=this;if(n&&e+r<i){let f=Math.min(i,e+r),o=new Uint8Array(f-e);return(yield n.read(o,0,r,e)).buffer}return new Uint8Array(r)})}close(){return pe(this,void 0,void 0,function*(){let e=this._handle;this._handle=null,e&&(yield e.close())})}throw(e){return pe(this,void 0,void 0,function*(){return yield this.close(),{done:!0,value:e}})}return(e){return pe(this,void 0,void 0,function*(){return yield this.close(),{done:!0,value:e}})}};var hw={};Cf(hw,{BaseInt64:()=>Mu,Int128:()=>cn,Int64:()=>jr,Uint64:()=>ct});var E1=1<<16;function gs(t){return t<0&&(t=4294967295+t+1),`0x${t.toString(16)}`}var js=8,ww=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8],Mu=class{constructor(e){this.buffer=e}high(){return this.buffer[1]}low(){return this.buffer[0]}_times(e){let r=new Uint32Array([this.buffer[1]>>>16,this.buffer[1]&65535,this.buffer[0]>>>16,this.buffer[0]&65535]),n=new Uint32Array([e.buffer[1]>>>16,e.buffer[1]&65535,e.buffer[0]>>>16,e.buffer[0]&65535]),i=r[3]*n[3];this.buffer[0]=i&65535;let f=i>>>16;return i=r[2]*n[3],f+=i,i=r[3]*n[2]>>>0,f+=i,this.buffer[0]+=f<<16,this.buffer[1]=f>>>0<i?E1:0,this.buffer[1]+=f>>>16,this.buffer[1]+=r[1]*n[3]+r[2]*n[2]+r[3]*n[1],this.buffer[1]+=r[0]*n[3]+r[1]*n[2]+r[2]*n[1]+r[3]*n[0]<<16,this}_plus(e){let r=this.buffer[0]+e.buffer[0]>>>0;this.buffer[1]+=e.buffer[1],r<this.buffer[0]>>>0&&++this.buffer[1],this.buffer[0]=r}lessThan(e){return this.buffer[1]<e.buffer[1]||this.buffer[1]===e.buffer[1]&&this.buffer[0]<e.buffer[0]}equals(e){return this.buffer[1]===e.buffer[1]&&this.buffer[0]==e.buffer[0]}greaterThan(e){return e.lessThan(this)}hex(){return`${gs(this.buffer[1])} ${gs(this.buffer[0])}`}},ct=class extends Mu{times(e){return this._times(e),this}plus(e){return this._plus(e),this}static from(e,r=new Uint32Array(2)){return ct.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return ct.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.length,i=new ct(r);for(let f=0;f<n;){let o=js<n-f?js:n-f,s=new ct(new Uint32Array([Number.parseInt(e.slice(f,f+o),10),0])),l=new ct(new Uint32Array([ww[o],0]));i.times(l),i.plus(s),f+=o}return i}static convertArray(e){let r=new Uint32Array(e.length*2);for(let n=-1,i=e.length;++n<i;)ct.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new ct(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new ct(new Uint32Array(e.buffer)).plus(r)}},jr=class extends Mu{negate(){return this.buffer[0]=~this.buffer[0]+1,this.buffer[1]=~this.buffer[1],this.buffer[0]==0&&++this.buffer[1],this}times(e){return this._times(e),this}plus(e){return this._plus(e),this}lessThan(e){let r=this.buffer[1]<<0,n=e.buffer[1]<<0;return r<n||r===n&&this.buffer[0]<e.buffer[0]}static from(e,r=new Uint32Array(2)){return jr.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return jr.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.startsWith("-"),i=e.length,f=new jr(r);for(let o=n?1:0;o<i;){let s=js<i-o?js:i-o,l=new jr(new Uint32Array([Number.parseInt(e.slice(o,o+s),10),0])),p=new jr(new Uint32Array([ww[s],0]));f.times(p),f.plus(l),o+=s}return n?f.negate():f}static convertArray(e){let r=new Uint32Array(e.length*2);for(let n=-1,i=e.length;++n<i;)jr.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new jr(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new jr(new Uint32Array(e.buffer)).plus(r)}},cn=class{constructor(e){this.buffer=e}high(){return new jr(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2))}low(){return new jr(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset,2))}negate(){return this.buffer[0]=~this.buffer[0]+1,this.buffer[1]=~this.buffer[1],this.buffer[2]=~this.buffer[2],this.buffer[3]=~this.buffer[3],this.buffer[0]==0&&++this.buffer[1],this.buffer[1]==0&&++this.buffer[2],this.buffer[2]==0&&++this.buffer[3],this}times(e){let r=new ct(new Uint32Array([this.buffer[3],0])),n=new ct(new Uint32Array([this.buffer[2],0])),i=new ct(new Uint32Array([this.buffer[1],0])),f=new ct(new Uint32Array([this.buffer[0],0])),o=new ct(new Uint32Array([e.buffer[3],0])),s=new ct(new Uint32Array([e.buffer[2],0])),l=new ct(new Uint32Array([e.buffer[1],0])),p=new ct(new Uint32Array([e.buffer[0],0])),u=ct.multiply(f,p);this.buffer[0]=u.low();let b=new ct(new Uint32Array([u.high(),0]));return u=ct.multiply(i,p),b.plus(u),u=ct.multiply(f,l),b.plus(u),this.buffer[1]=b.low(),this.buffer[3]=b.lessThan(u)?1:0,this.buffer[2]=b.high(),new ct(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2)).plus(ct.multiply(n,p)).plus(ct.multiply(i,l)).plus(ct.multiply(f,s)),this.buffer[3]+=ct.multiply(r,p).plus(ct.multiply(n,l)).plus(ct.multiply(i,s)).plus(ct.multiply(f,o)).low(),this}plus(e){let r=new Uint32Array(4);return r[3]=this.buffer[3]+e.buffer[3]>>>0,r[2]=this.buffer[2]+e.buffer[2]>>>0,r[1]=this.buffer[1]+e.buffer[1]>>>0,r[0]=this.buffer[0]+e.buffer[0]>>>0,r[0]<this.buffer[0]>>>0&&++r[1],r[1]<this.buffer[1]>>>0&&++r[2],r[2]<this.buffer[2]>>>0&&++r[3],this.buffer[3]=r[3],this.buffer[2]=r[2],this.buffer[1]=r[1],this.buffer[0]=r[0],this}hex(){return`${gs(this.buffer[3])} ${gs(this.buffer[2])} ${gs(this.buffer[1])} ${gs(this.buffer[0])}`}static multiply(e,r){return new cn(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new cn(new Uint32Array(e.buffer)).plus(r)}static from(e,r=new Uint32Array(4)){return cn.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(4)){return cn.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(4)){let n=e.startsWith("-"),i=e.length,f=new cn(r);for(let o=n?1:0;o<i;){let s=js<i-o?js:i-o,l=new cn(new Uint32Array([Number.parseInt(e.slice(o,o+s),10),0,0,0])),p=new cn(new Uint32Array([ww[s],0,0,0]));f.times(p),f.plus(l),o+=s}return n?f.negate():f}static convertArray(e){let r=new Uint32Array(e.length*4);for(let n=-1,i=e.length;++n<i;)cn.from(e[n],new Uint32Array(r.buffer,r.byteOffset+4*4*n,4));return r}};var Uu=class extends qe{constructor(e,r,n,i){super();this.nodesIndex=-1,this.buffersIndex=-1,this.bytes=e,this.nodes=r,this.buffers=n,this.dictionaries=i}visit(e){return super.visit(e instanceof Ce?e.type:e)}visitNull(e,{length:r}=this.nextFieldNode()){return Fe({type:e,length:r})}visitBool(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitInt(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitFloat(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitUtf8(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),valueOffsets:this.readOffsets(e),data:this.readData(e)})}visitBinary(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),valueOffsets:this.readOffsets(e),data:this.readData(e)})}visitFixedSizeBinary(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitDate(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitTimestamp(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitTime(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitDecimal(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitList(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),valueOffsets:this.readOffsets(e),child:this.visit(e.children[0])})}visitStruct(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),children:this.visitMany(e.children)})}visitUnion(e){return e.mode===Ut.Sparse?this.visitSparseUnion(e):this.visitDenseUnion(e)}visitDenseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),typeIds:this.readTypeIds(e),valueOffsets:this.readOffsets(e),children:this.visitMany(e.children)})}visitSparseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),typeIds:this.readTypeIds(e),children:this.visitMany(e.children)})}visitDictionary(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e.indices),dictionary:this.readDictionary(e)})}visitInterval(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),data:this.readData(e)})}visitFixedSizeList(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),child:this.visit(e.children[0])})}visitMap(e,{length:r,nullCount:n}=this.nextFieldNode()){return Fe({type:e,length:r,nullCount:n,nullBitmap:this.readNullBitmap(e,n),valueOffsets:this.readOffsets(e),child:this.visit(e.children[0])})}nextFieldNode(){return this.nodes[++this.nodesIndex]}nextBufferRange(){return this.buffers[++this.buffersIndex]}readNullBitmap(e,r,n=this.nextBufferRange()){return r>0&&this.readData(e,n)||new Uint8Array(0)}readOffsets(e,r){return this.readData(e,r)}readTypeIds(e,r){return this.readData(e,r)}readData(e,{length:r,offset:n}=this.nextBufferRange()){return this.bytes.subarray(n,n+r)}readDictionary(e){return this.dictionaries.get(e.id)}},bw=class extends Uu{constructor(e,r,n,i){super(new Uint8Array(0),r,n,i);this.sources=e}readNullBitmap(e,r,{offset:n}=this.nextBufferRange()){return r<=0?new Uint8Array(0):wo(this.sources[n])}readOffsets(e,{offset:r}=this.nextBufferRange()){return Ge(Uint8Array,Ge(Int32Array,this.sources[r]))}readTypeIds(e,{offset:r}=this.nextBufferRange()){return Ge(Uint8Array,Ge(e.ArrayType,this.sources[r]))}readData(e,{offset:r}=this.nextBufferRange()){let{sources:n}=this;return je.isTimestamp(e)?Ge(Uint8Array,jr.convertArray(n[r])):(je.isInt(e)||je.isTime(e))&&e.bitWidth===64?Ge(Uint8Array,jr.convertArray(n[r])):je.isDate(e)&&e.unit===qr.MILLISECOND?Ge(Uint8Array,jr.convertArray(n[r])):je.isDecimal(e)?Ge(Uint8Array,cn.convertArray(n[r])):je.isBinary(e)||je.isFixedSizeBinary(e)?A1(n[r]):je.isBool(e)?wo(n[r]):je.isUtf8(e)?jf(n[r].join("")):Ge(Uint8Array,Ge(e.ArrayType,n[r].map(i=>+i)))}};function A1(t){let e=t.join(""),r=new Uint8Array(e.length/2);for(let n=0;n<e.length;n+=2)r[n>>1]=Number.parseInt(e.slice(n,n+2),16);return r}var ma=class extends Ui{constructor(e){super(e);this._values=new bo(new Uint8Array(0))}get byteLength(){let e=this._pendingLength+this.length*4;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),e}setValue(e,r){return super.setValue(e,Ee(r))}_flushPending(e,r){let n=this._offsets,i=this._values.reserve(r).buffer,f=0;for(let[o,s]of e)if(s===void 0)n.set(o,0);else{let l=s.length;i.set(s,f),n.set(o,l),f+=l}}};var gw=class extends zt{constructor(e){super(e);this._values=new ia}setValue(e,r){this._values.set(e,+r)}};var ys=class extends wr{};ys.prototype._setValue=nw;var Lu=class extends ys{};Lu.prototype._setValue=du;var Cu=class extends ys{};Cu.prototype._setValue=wu;var Vu=class extends wr{};Vu.prototype._setValue=ow;var jw=class extends zt{constructor({type:e,nullValues:r,dictionaryHashFunction:n}){super({type:new En(e.dictionary,e.indices,e.id,e.isOrdered)});this._nulls=null,this._dictionaryOffset=0,this._keysToIndices=Object.create(null),this.indices=jo({type:this.type.indices,nullValues:r}),this.dictionary=jo({type:this.type.dictionary,nullValues:null}),typeof n=="function"&&(this.valueToKey=n)}get values(){return this.indices.values}get nullCount(){return this.indices.nullCount}get nullBitmap(){return this.indices.nullBitmap}get byteLength(){return this.indices.byteLength+this.dictionary.byteLength}get reservedLength(){return this.indices.reservedLength+this.dictionary.reservedLength}get reservedByteLength(){return this.indices.reservedByteLength+this.dictionary.reservedByteLength}isValid(e){return this.indices.isValid(e)}setValid(e,r){let n=this.indices;return r=n.setValid(e,r),this.length=n.length,r}setValue(e,r){let n=this._keysToIndices,i=this.valueToKey(r),f=n[i];return f===void 0&&(n[i]=f=this._dictionaryOffset+this.dictionary.append(r).length-1),this.indices.setValue(e,f)}flush(){let e=this.type,r=this._dictionary,n=this.dictionary.toVector(),i=this.indices.flush().clone(e);return i.dictionary=r?r.concat(n):n,this.finished||(this._dictionaryOffset+=n.length),this._dictionary=i.dictionary,this.clear(),i}finish(){return this.indices.finish(),this.dictionary.finish(),this._dictionaryOffset=0,this._keysToIndices=Object.create(null),super.finish()}clear(){return this.indices.clear(),this.dictionary.clear(),super.clear()}valueToKey(e){return typeof e=="string"?e:`${e}`}};var Wu=class extends wr{};Wu.prototype._setValue=rw;var yw=class extends zt{setValue(e,r){let[n]=this.children,i=e*this.stride;for(let f=-1,o=r.length;++f<o;)n.set(i+f,r[f])}addChild(e,r="0"){if(this.numChildren>0)throw new Error("FixedSizeListBuilder can only have one child.");let n=this.children.push(e);return this.type=new ci(this.type.listSize,new Ce(r,e.type,!0)),n}};var vs=class extends wr{setValue(e,r){this._values.set(e,r)}},vw=class extends vs{setValue(e,r){super.setValue(e,$l(r))}},_w=class extends vs{},qw=class extends vs{};var _s=class extends wr{};_s.prototype._setValue=sw;var Yu=class extends _s{};Yu.prototype._setValue=ku;var Ku=class extends _s{};Ku.prototype._setValue=Tu;var Yn=class extends wr{setValue(e,r){this._values.set(e,r)}},kw=class extends Yn{},Tw=class extends Yn{},Bw=class extends Yn{},Iw=class extends Yn{},Sw=class extends Yn{},xw=class extends Yn{},Ew=class extends Yn{},Aw=class extends Yn{};var Ow=class extends Ui{constructor(e){super(e);this._offsets=new fa}addChild(e,r="0"){if(this.numChildren>0)throw new Error("ListBuilder can only have one child.");return this.children[this.numChildren]=e,this.type=new pi(new Ce(r,e.type,!0)),this.numChildren-1}_flushPending(e){let r=this._offsets,[n]=this.children;for(let[i,f]of e)if(f===void 0)r.set(i,0);else{let o=f.length,s=r.set(i,o).buffer[i];for(let l=-1;++l<o;)n.set(s+l,f[l])}}};var Nw=class extends Ui{set(e,r){return super.set(e,r)}setValue(e,r){let n=r instanceof Map?r:new Map(Object.entries(r)),i=this._pending||(this._pending=new Map),f=i.get(e);f&&(this._pendingLength-=f.size),this._pendingLength+=n.size,i.set(e,n)}addChild(e,r=`${this.numChildren}`){if(this.numChildren>0)throw new Error("ListBuilder can only have one child.");return this.children[this.numChildren]=e,this.type=new mi(new Ce(r,e.type,!0),this.type.keysSorted),this.numChildren-1}_flushPending(e){let r=this._offsets,[n]=this.children;for(let[i,f]of e)if(f===void 0)r.set(i,0);else{let{[i]:o,[i+1]:s}=r.set(i,f.size).buffer;for(let l of f.entries())if(n.set(o,l),++o>=s)break}}};var Hw=class extends zt{setValue(e,r){}setValid(e,r){return this.length=Math.max(e+1,this.length),r}};var Rw=class extends zt{setValue(e,r){let{children:n,type:i}=this;switch(Array.isArray(r)||r.constructor){case!0:return i.children.forEach((f,o)=>n[o].set(e,r[o]));case Map:return i.children.forEach((f,o)=>n[o].set(e,r.get(f.name)));default:return i.children.forEach((f,o)=>n[o].set(e,r[f.name]))}}setValid(e,r){return super.setValid(e,r)||this.children.forEach(n=>n.setValid(e,r)),r}addChild(e,r=`${this.numChildren}`){let n=this.children.push(e);return this.type=new Ot([...this.type.children,new Ce(r,e.type,!0)]),n}};var Pf=class extends wr{};Pf.prototype._setValue=iw;var Gu=class extends Pf{};Gu.prototype._setValue=hu;var Ju=class extends Pf{};Ju.prototype._setValue=bu;var Zu=class extends Pf{};Zu.prototype._setValue=gu;var Xu=class extends Pf{};Xu.prototype._setValue=ju;var Mf=class extends wr{};Mf.prototype._setValue=fw;var Qu=class extends Mf{};Qu.prototype._setValue=yu;var $u=class extends Mf{};$u.prototype._setValue=vu;var ec=class extends Mf{};ec.prototype._setValue=_u;var tc=class extends Mf{};tc.prototype._setValue=qu;var da=class extends zt{constructor(e){super(e);this._typeIds=new Of(new Int8Array(0),1),typeof e.valueToChildTypeId=="function"&&(this._valueToChildTypeId=e.valueToChildTypeId)}get typeIdToChildIndex(){return this.type.typeIdToChildIndex}append(e,r){return this.set(this.length,e,r)}set(e,r,n){return n===void 0&&(n=this._valueToChildTypeId(this,r,e)),this.setValid(e,this.isValid(r))&&this.setValue(e,r,n),this}setValue(e,r,n){this._typeIds.set(e,n);let i=this.type.typeIdToChildIndex[n],f=this.children[i];f==null||f.set(e,r)}addChild(e,r=`${this.children.length}`){let n=this.children.push(e),{type:{children:i,mode:f,typeIds:o}}=this,s=[...i,new Ce(r,e.type)];return this.type=new ui(f,[...o,n],s),n}_valueToChildTypeId(e,r,n){throw new Error("Cannot map UnionBuilder value to child typeId. Pass the `childTypeId` as the second argument to unionBuilder.append(), or supply a `valueToChildTypeId` function as part of the UnionBuilder constructor options.")}},Dw=class extends da{},zw=class extends da{constructor(e){super(e);this._offsets=new Of(new Int32Array(0))}setValue(e,r,n){let i=this._typeIds.set(e,n).buffer[e],f=this.getChildAt(this.type.typeIdToChildIndex[i]),o=this._offsets.set(e,f.length).buffer[e];f==null||f.set(o,r)}};var rc=class extends Ui{constructor(e){super(e);this._values=new bo(new Uint8Array(0))}get byteLength(){let e=this._pendingLength+this.length*4;return this._offsets&&(e+=this._offsets.byteLength),this._values&&(e+=this._values.byteLength),this._nulls&&(e+=this._nulls.byteLength),e}setValue(e,r){return super.setValue(e,jf(r))}_flushPending(e,r){}};rc.prototype._flushPending=ma.prototype._flushPending;var zv=class extends qe{visitNull(){return Hw}visitBool(){return gw}visitInt(){return Yn}visitInt8(){return kw}visitInt16(){return Tw}visitInt32(){return Bw}visitInt64(){return Iw}visitUint8(){return Sw}visitUint16(){return xw}visitUint32(){return Ew}visitUint64(){return Aw}visitFloat(){return vs}visitFloat16(){return vw}visitFloat32(){return _w}visitFloat64(){return qw}visitUtf8(){return rc}visitBinary(){return ma}visitFixedSizeBinary(){return Wu}visitDate(){return ys}visitDateDay(){return Lu}visitDateMillisecond(){return Cu}visitTimestamp(){return Pf}visitTimestampSecond(){return Gu}visitTimestampMillisecond(){return Ju}visitTimestampMicrosecond(){return Zu}visitTimestampNanosecond(){return Xu}visitTime(){return Mf}visitTimeSecond(){return Qu}visitTimeMillisecond(){return $u}visitTimeMicrosecond(){return ec}visitTimeNanosecond(){return tc}visitDecimal(){return Vu}visitList(){return Ow}visitStruct(){return Rw}visitUnion(){return da}visitDenseUnion(){return zw}visitSparseUnion(){return Dw}visitDictionary(){return jw}visitInterval(){return _s}visitIntervalDayTime(){return Yu}visitIntervalYearMonth(){return Ku}visitFixedSizeList(){return yw}visitMap(){return Nw}},Fv=new zv;var He=class extends qe{compareSchemas(e,r){return e===r||r instanceof e.constructor&&this.compareManyFields(e.fields,r.fields)}compareManyFields(e,r){return e===r||Array.isArray(e)&&Array.isArray(r)&&e.length===r.length&&e.every((n,i)=>this.compareFields(n,r[i]))}compareFields(e,r){return e===r||r instanceof e.constructor&&e.name===r.name&&e.nullable===r.nullable&&this.visit(e.type,r.type)}};function Yr(t,e){return e instanceof t.constructor}function wa(t,e){return t===e||Yr(t,e)}function Zi(t,e){return t===e||Yr(t,e)&&t.bitWidth===e.bitWidth&&t.isSigned===e.isSigned}function nc(t,e){return t===e||Yr(t,e)&&t.precision===e.precision}function O1(t,e){return t===e||Yr(t,e)&&t.byteWidth===e.byteWidth}function Fw(t,e){return t===e||Yr(t,e)&&t.unit===e.unit}function ha(t,e){return t===e||Yr(t,e)&&t.unit===e.unit&&t.timezone===e.timezone}function ba(t,e){return t===e||Yr(t,e)&&t.unit===e.unit&&t.bitWidth===e.bitWidth}function N1(t,e){return t===e||Yr(t,e)&&t.children.length===e.children.length&&hi.compareManyFields(t.children,e.children)}function H1(t,e){return t===e||Yr(t,e)&&t.children.length===e.children.length&&hi.compareManyFields(t.children,e.children)}function Pw(t,e){return t===e||Yr(t,e)&&t.mode===e.mode&&t.typeIds.every((r,n)=>r===e.typeIds[n])&&hi.compareManyFields(t.children,e.children)}function R1(t,e){return t===e||Yr(t,e)&&t.id===e.id&&t.isOrdered===e.isOrdered&&hi.visit(t.indices,e.indices)&&hi.visit(t.dictionary,e.dictionary)}function Mw(t,e){return t===e||Yr(t,e)&&t.unit===e.unit}function D1(t,e){return t===e||Yr(t,e)&&t.listSize===e.listSize&&t.children.length===e.children.length&&hi.compareManyFields(t.children,e.children)}function z1(t,e){return t===e||Yr(t,e)&&t.keysSorted===e.keysSorted&&t.children.length===e.children.length&&hi.compareManyFields(t.children,e.children)}He.prototype.visitNull=wa;He.prototype.visitBool=wa;He.prototype.visitInt=Zi;He.prototype.visitInt8=Zi;He.prototype.visitInt16=Zi;He.prototype.visitInt32=Zi;He.prototype.visitInt64=Zi;He.prototype.visitUint8=Zi;He.prototype.visitUint16=Zi;He.prototype.visitUint32=Zi;He.prototype.visitUint64=Zi;He.prototype.visitFloat=nc;He.prototype.visitFloat16=nc;He.prototype.visitFloat32=nc;He.prototype.visitFloat64=nc;He.prototype.visitUtf8=wa;He.prototype.visitBinary=wa;He.prototype.visitFixedSizeBinary=O1;He.prototype.visitDate=Fw;He.prototype.visitDateDay=Fw;He.prototype.visitDateMillisecond=Fw;He.prototype.visitTimestamp=ha;He.prototype.visitTimestampSecond=ha;He.prototype.visitTimestampMillisecond=ha;He.prototype.visitTimestampMicrosecond=ha;He.prototype.visitTimestampNanosecond=ha;He.prototype.visitTime=ba;He.prototype.visitTimeSecond=ba;He.prototype.visitTimeMillisecond=ba;He.prototype.visitTimeMicrosecond=ba;He.prototype.visitTimeNanosecond=ba;He.prototype.visitDecimal=wa;He.prototype.visitList=N1;He.prototype.visitStruct=H1;He.prototype.visitUnion=Pw;He.prototype.visitDenseUnion=Pw;He.prototype.visitSparseUnion=Pw;He.prototype.visitDictionary=R1;He.prototype.visitInterval=Mw;He.prototype.visitIntervalDayTime=Mw;He.prototype.visitIntervalYearMonth=Mw;He.prototype.visitFixedSizeList=D1;He.prototype.visitMap=z1;var hi=new He;function yo(t,e){return hi.compareSchemas(t,e)}function Pv(t,e){return hi.compareFields(t,e)}function Mv(t,e){return hi.visit(t,e)}function jo(t){let e=t.type,r=new(Fv.getVisitFn(e)())(t);if(e.children&&e.children.length>0){let n=t.children||[],i={nullValues:t.nullValues},f=Array.isArray(n)?(o,s)=>n[s]||i:({name:o})=>n[o]||i;for(let[o,s]of e.children.entries()){let{type:l}=s,p=f(s,o);r.children.push(jo(Object.assign(Object.assign({},p),{type:l})))}}return r}function ic(t,e){return F1(t,e.map(r=>r.data.concat()))}function F1(t,e){let r=[...t.fields],n=[],i={numBatches:e.reduce((b,c)=>Math.max(b,c.length),0)},f=0,o=0,s=-1,l=e.length,p,u=[];for(;i.numBatches-- >0;){for(o=Number.POSITIVE_INFINITY,s=-1;++s<l;)u[s]=p=e[s].shift(),o=Math.min(o,p?p.length:o);Number.isFinite(o)&&(u=P1(r,o,u,e,i),o>0&&(n[f++]=Fe({type:new Ot(r),length:o,nullCount:0,children:u.slice()})))}return[t=t.assign(r),n.map(b=>new It(t,b))]}function P1(t,e,r,n,i){var f;let o=(e+63&~63)>>3;for(let s=-1,l=n.length;++s<l;){let p=r[s],u=p==null?void 0:p.length;if(u>=e)u===e?r[s]=p:(r[s]=p.slice(0,e),i.numBatches=Math.max(i.numBatches,n[s].unshift(p.slice(e,u-e))));else{let b=t[s];t[s]=b.clone({nullable:!0}),r[s]=(f=p==null?void 0:p._changeLengthAndBackfillNullBitmap(e))!==null&&f!==void 0?f:Fe({type:b.type,length:e,nullCount:e,nullBitmap:new Uint8Array(o)})}}return r}var Uv,$t=class{constructor(...e){var r,n;if(e.length===0)return this.batches=[],this.schema=new et([]),this._offsets=[0],this;let i,f;e[0]instanceof et&&(i=e.shift()),e[e.length-1]instanceof Uint32Array&&(f=e.pop());let o=l=>{if(l){if(l instanceof It)return[l];if(l instanceof $t)return l.batches;if(l instanceof ut){if(l.type instanceof Ot)return[new It(new et(l.type.children),l)]}else{if(Array.isArray(l))return l.flatMap(p=>o(p));if(typeof l[Symbol.iterator]=="function")return[...l].flatMap(p=>o(p));if(typeof l=="object"){let p=Object.keys(l),u=p.map(h=>new ze([l[h]])),b=new et(p.map((h,T)=>new Ce(String(h),u[T].type))),[,c]=ic(b,u);return c.length===0?[new It(l)]:c}}}return[]},s=e.flatMap(l=>o(l));if(i=(n=i??((r=s[0])===null||r===void 0?void 0:r.schema))!==null&&n!==void 0?n:new et([]),!(i instanceof et))throw new TypeError("Table constructor expects a [Schema, RecordBatch[]] pair.");for(let l of s){if(!(l instanceof It))throw new TypeError("Table constructor expects a [Schema, RecordBatch[]] pair.");if(!yo(i,l.schema))throw new TypeError("Table and inner RecordBatch schemas must be equivalent.")}this.schema=i,this.batches=s,this._offsets=f??Au(this.data)}get data(){return this.batches.map(({data:e})=>e)}get numCols(){return this.schema.fields.length}get numRows(){return this.data.reduce((e,r)=>e+r.length,0)}get nullCount(){return this._nullCount===-1&&(this._nullCount=Eu(this.data)),this._nullCount}isValid(e){return!1}get(e){return null}set(e,r){}indexOf(e,r){return-1}getByteLength(e){return 0}[Symbol.iterator](){return this.batches.length>0?ds.visit(new ze(this.data)):new Array(0)[Symbol.iterator]()}toArray(){return[...this]}toString(){return`[
36
+ ${this.toArray().join(`,
37
+ `)}
38
+ ]`}concat(...e){let r=this.schema,n=this.data.concat(e.flatMap(({data:i})=>i));return new $t(r,n.map(i=>new It(r,i)))}slice(e,r){let n=this.schema;[e,r]=ea({length:this.numRows},e,r);let i=Ou(this.data,this._offsets,e,r);return new $t(n,i.map(f=>new It(n,f)))}getChild(e){return this.getChildAt(this.schema.fields.findIndex(r=>r.name===e))}getChildAt(e){if(e>-1&&e<this.schema.fields.length){let r=this.data.map(n=>n.children[e]);if(r.length===0){let{type:n}=this.schema.fields[e],i=Fe({type:n,length:0,nullCount:0});r.push(i._changeLengthAndBackfillNullBitmap(this.numRows))}return new ze(r)}return null}setChild(e,r){var n;return this.setChildAt((n=this.schema.fields)===null||n===void 0?void 0:n.findIndex(i=>i.name===e),r)}setChildAt(e,r){let n=this.schema,i=[...this.batches];if(e>-1&&e<this.numCols){r||(r=new ze([Fe({type:new Vr,length:this.numRows})]));let f=n.fields.slice(),o=f[e].clone({type:r.type}),s=this.schema.fields.map((l,p)=>this.getChildAt(p));[f[e],s[e]]=[o,r],[n,i]=ic(n,s)}return new $t(n,i)}select(e){let r=this.schema.fields.reduce((n,i,f)=>n.set(i.name,f),new Map);return this.selectAt(e.map(n=>r.get(n)).filter(n=>n>-1))}selectAt(e){let r=this.schema.selectAt(e),n=this.batches.map(i=>i.selectAt(e));return new $t(r,n)}assign(e){let r=this.schema.fields,[n,i]=e.schema.fields.reduce((s,l,p)=>{let[u,b]=s,c=r.findIndex(h=>h.name===l.name);return~c?b[c]=p:u.push(p),s},[[],[]]),f=this.schema.assign(e.schema),o=[...r.map((s,l)=>[l,i[l]]).map(([s,l])=>l===void 0?this.getChildAt(s):e.getChildAt(l)),...n.map(s=>e.getChildAt(s))].filter(Boolean);return new $t(...ic(f,o))}};Uv=Symbol.toStringTag;$t[Uv]=(t=>(t.schema=null,t.batches=[],t._offsets=new Uint32Array([0]),t._nullCount=-1,t[Symbol.isConcatSpreadable]=!0,t.isValid=Af(ra),t.get=Af(Qt.getVisitFn(H.Struct)),t.set=Nu(dr.getVisitFn(H.Struct)),t.indexOf=Hu(ho.getVisitFn(H.Struct)),t.getByteLength=Af(rn.getVisitFn(H.Struct)),"Table"))($t.prototype);var Lv,It=class{constructor(...e){switch(e.length){case 2:{if([this.schema]=e,!(this.schema instanceof et))throw new TypeError("RecordBatch constructor expects a [Schema, Data] pair.");if([,this.data=Fe({nullCount:0,type:new Ot(this.schema.fields),children:this.schema.fields.map(r=>Fe({type:r.type,nullCount:0}))})]=e,!(this.data instanceof ut))throw new TypeError("RecordBatch constructor expects a [Schema, Data] pair.");[this.schema,this.data]=Cv(this.schema,this.data.children);break}case 1:{let[r]=e,{fields:n,children:i,length:f}=Object.keys(r).reduce((l,p,u)=>(l.children[u]=r[p],l.length=Math.max(l.length,r[p].length),l.fields[u]=Ce.new({name:p,type:r[p].type,nullable:!0}),l),{length:0,fields:new Array,children:new Array}),o=new et(n),s=Fe({type:new Ot(n),length:f,children:i,nullCount:0});[this.schema,this.data]=Cv(o,s.children,f);break}default:throw new TypeError("RecordBatch constructor expects an Object mapping names to child Data, or a [Schema, Data] pair.")}}get dictionaries(){return this._dictionaries||(this._dictionaries=Vv(this.schema.fields,this.data.children))}get numCols(){return this.schema.fields.length}get numRows(){return this.data.length}get nullCount(){return this.data.nullCount}isValid(e){return this.data.getValid(e)}get(e){return Qt.visit(this.data,e)}set(e,r){return dr.visit(this.data,e,r)}indexOf(e,r){return ho.visit(this.data,e,r)}getByteLength(e){return rn.visit(this.data,e)}[Symbol.iterator](){return ds.visit(new ze([this.data]))}toArray(){return[...this]}concat(...e){return new $t(this.schema,[this,...e])}slice(e,r){let[n]=new ze([this.data]).slice(e,r).data;return new It(this.schema,n)}getChild(e){var r;return this.getChildAt((r=this.schema.fields)===null||r===void 0?void 0:r.findIndex(n=>n.name===e))}getChildAt(e){return e>-1&&e<this.schema.fields.length?new ze([this.data.children[e]]):null}setChild(e,r){var n;return this.setChildAt((n=this.schema.fields)===null||n===void 0?void 0:n.findIndex(i=>i.name===e),r)}setChildAt(e,r){let n=this.schema,i=this.data;if(e>-1&&e<this.numCols){r||(r=new ze([Fe({type:new Vr,length:this.numRows})]));let f=n.fields.slice(),o=i.children.slice(),s=f[e].clone({type:r.type});[f[e],o[e]]=[s,r.data[0]],n=new et(f,new Map(this.schema.metadata)),i=Fe({type:new Ot(f),children:o})}return new It(n,i)}select(e){let r=this.schema.select(e),n=new Ot(r.fields),i=[];for(let f of e){let o=this.schema.fields.findIndex(s=>s.name===f);~o&&(i[o]=this.data.children[o])}return new It(r,Fe({type:n,length:this.numRows,children:i}))}selectAt(e){let r=this.schema.selectAt(e),n=e.map(f=>this.data.children[f]).filter(Boolean),i=Fe({type:new Ot(r.fields),length:this.numRows,children:n});return new It(r,i)}};Lv=Symbol.toStringTag;It[Lv]=(t=>(t._nullCount=-1,t[Symbol.isConcatSpreadable]=!0,"RecordBatch"))(It.prototype);function Cv(t,e,r=e.reduce((n,i)=>Math.max(n,i.length),0)){var n;let i=[...t.fields],f=[...e],o=(r+63&~63)>>3;for(let[s,l]of t.fields.entries()){let p=e[s];(!p||p.length!==r)&&(i[s]=l.clone({nullable:!0}),f[s]=(n=p==null?void 0:p._changeLengthAndBackfillNullBitmap(r))!==null&&n!==void 0?n:Fe({type:l.type,length:r,nullCount:r,nullBitmap:new Uint8Array(o)}))}return[t.assign(i),Fe({type:new Ot(i),length:r,children:f})]}function Vv(t,e,r=new Map){for(let n=-1,i=t.length;++n<i;){let o=t[n].type,s=e[n];if(je.isDictionary(o)){if(!r.has(o.id))s.dictionary&&r.set(o.id,s.dictionary);else if(r.get(o.id)!==s.dictionary)throw new Error("Cannot create Schema containing two different dictionaries with the same Id")}o.children&&o.children.length>0&&Vv(o.children,s.children,r)}return r}var qs=class extends It{constructor(e){let r=e.fields.map(i=>Fe({type:i.type})),n=Fe({type:new Ot(e.fields),nullCount:0,children:r});super(e,n)}};var ga;(function(t){t[t.BUFFER=0]="BUFFER"})(ga||(ga={}));var ja;(function(t){t[t.LZ4_FRAME=0]="LZ4_FRAME",t[t.ZSTD=1]="ZSTD"})(ja||(ja={}));var bi=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsBodyCompression(e,r){return(r||new bi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBodyCompression(e,r){return e.setPosition(e.position()+be),(r||new bi).__init(e.readInt32(e.position())+e.position(),e)}codec(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt8(this.bb_pos+e):ja.LZ4_FRAME}method(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt8(this.bb_pos+e):ga.BUFFER}static startBodyCompression(e){e.startObject(2)}static addCodec(e,r){e.addFieldInt8(0,r,ja.LZ4_FRAME)}static addMethod(e,r){e.addFieldInt8(1,r,ga.BUFFER)}static endBodyCompression(e){return e.endObject()}static createBodyCompression(e,r,n){return bi.startBodyCompression(e),bi.addCodec(e,r),bi.addMethod(e,n),bi.endBodyCompression(e)}};var ya=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}offset(){return this.bb.readInt64(this.bb_pos)}length(){return this.bb.readInt64(this.bb_pos+8)}static sizeOf(){return 16}static createBuffer(e,r,n){return e.prep(8,16),e.writeInt64(n),e.writeInt64(r),e.offset()}};var va=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}length(){return this.bb.readInt64(this.bb_pos)}nullCount(){return this.bb.readInt64(this.bb_pos+8)}static sizeOf(){return 16}static createFieldNode(e,r,n){return e.prep(8,16),e.writeInt64(n),e.writeInt64(r),e.offset()}};var Nr=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsRecordBatch(e,r){return(r||new Nr).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsRecordBatch(e,r){return e.setPosition(e.position()+be),(r||new Nr).__init(e.readInt32(e.position())+e.position(),e)}length(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}nodes(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new va).__init(this.bb.__vector(this.bb_pos+n)+e*16,this.bb):null}nodesLength(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.__vector_len(this.bb_pos+e):0}buffers(e,r){let n=this.bb.__offset(this.bb_pos,8);return n?(r||new ya).__init(this.bb.__vector(this.bb_pos+n)+e*16,this.bb):null}buffersLength(){let e=this.bb.__offset(this.bb_pos,8);return e?this.bb.__vector_len(this.bb_pos+e):0}compression(e){let r=this.bb.__offset(this.bb_pos,10);return r?(e||new bi).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}static startRecordBatch(e){e.startObject(4)}static addLength(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addNodes(e,r){e.addFieldOffset(1,r,0)}static startNodesVector(e,r){e.startVector(16,r,8)}static addBuffers(e,r){e.addFieldOffset(2,r,0)}static startBuffersVector(e,r){e.startVector(16,r,8)}static addCompression(e,r){e.addFieldOffset(3,r,0)}static endRecordBatch(e){return e.endObject()}};var Kn=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsDictionaryBatch(e,r){return(r||new Kn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryBatch(e,r){return e.setPosition(e.position()+be),(r||new Kn).__init(e.readInt32(e.position())+e.position(),e)}id(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}data(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new Nr).__init(this.bb.__indirect(this.bb_pos+r),this.bb):null}isDelta(){let e=this.bb.__offset(this.bb_pos,8);return e?!!this.bb.readInt8(this.bb_pos+e):!1}static startDictionaryBatch(e){e.startObject(3)}static addId(e,r){e.addFieldInt64(0,r,e.createLong(0,0))}static addData(e,r){e.addFieldOffset(1,r,0)}static addIsDelta(e,r){e.addFieldInt8(2,+r,0)}static endDictionaryBatch(e){return e.endObject()}};var ks;(function(t){t[t.NONE=0]="NONE",t[t.Schema=1]="Schema",t[t.DictionaryBatch=2]="DictionaryBatch",t[t.RecordBatch=3]="RecordBatch",t[t.Tensor=4]="Tensor",t[t.SparseTensor=5]="SparseTensor"})(ks||(ks={}));var er=class{constructor(){this.bb=null,this.bb_pos=0}__init(e,r){return this.bb_pos=e,this.bb=r,this}static getRootAsMessage(e,r){return(r||new er).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMessage(e,r){return e.setPosition(e.position()+be),(r||new er).__init(e.readInt32(e.position())+e.position(),e)}version(){let e=this.bb.__offset(this.bb_pos,4);return e?this.bb.readInt16(this.bb_pos+e):Hf.V1}headerType(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readUint8(this.bb_pos+e):ks.NONE}header(e){let r=this.bb.__offset(this.bb_pos,8);return r?this.bb.__union(e,this.bb_pos+r):null}bodyLength(){let e=this.bb.__offset(this.bb_pos,10);return e?this.bb.readInt64(this.bb_pos+e):this.bb.createLong(0,0)}customMetadata(e,r){let n=this.bb.__offset(this.bb_pos,12);return n?(r||new Nt).__init(this.bb.__indirect(this.bb.__vector(this.bb_pos+n)+e*4),this.bb):null}customMetadataLength(){let e=this.bb.__offset(this.bb_pos,12);return e?this.bb.__vector_len(this.bb_pos+e):0}static startMessage(e){e.startObject(5)}static addVersion(e,r){e.addFieldInt16(0,r,Hf.V1)}static addHeaderType(e,r){e.addFieldInt8(1,r,ks.NONE)}static addHeader(e,r){e.addFieldOffset(2,r,0)}static addBodyLength(e,r){e.addFieldInt64(3,r,e.createLong(0,0))}static addCustomMetadata(e,r){e.addFieldOffset(4,r,0)}static createCustomMetadataVector(e,r){e.startVector(4,r.length,4);for(let n=r.length-1;n>=0;n--)e.addOffset(r[n]);return e.endVector()}static startCustomMetadataVector(e,r){e.startVector(4,r,4)}static endMessage(e){return e.endObject()}static finishMessageBuffer(e,r){e.finish(r)}static finishSizePrefixedMessageBuffer(e,r){e.finish(r,void 0,!0)}static createMessage(e,r,n,i,f,o){return er.startMessage(e),er.addVersion(e,r),er.addHeaderType(e,n),er.addHeader(e,i),er.addBodyLength(e,f),er.addCustomMetadata(e,o),er.endMessage(e)}};var U1=fr,Wv=class extends qe{visit(e,r){return e==null||r==null?void 0:super.visit(e,r)}visitNull(e,r){return Wi.startNull(r),Wi.endNull(r)}visitInt(e,r){return hr.startInt(r),hr.addBitWidth(r,e.bitWidth),hr.addIsSigned(r,e.isSigned),hr.endInt(r)}visitFloat(e,r){return ln.startFloatingPoint(r),ln.addPrecision(r,e.precision),ln.endFloatingPoint(r)}visitBinary(e,r){return Li.startBinary(r),Li.endBinary(r)}visitBool(e,r){return Ci.startBool(r),Ci.endBool(r)}visitUtf8(e,r){return Ki.startUtf8(r),Ki.endUtf8(r)}visitDecimal(e,r){return br.startDecimal(r),br.addScale(r,e.scale),br.addPrecision(r,e.precision),br.addBitWidth(r,e.bitWidth),br.endDecimal(r)}visitDate(e,r){return fn.startDate(r),fn.addUnit(r,e.unit),fn.endDate(r)}visitTime(e,r){return Er.startTime(r),Er.addUnit(r,e.unit),Er.addBitWidth(r,e.bitWidth),Er.endTime(r)}visitTimestamp(e,r){let n=e.timezone&&r.createString(e.timezone)||void 0;return Ar.startTimestamp(r),Ar.addUnit(r,e.unit),n!==void 0&&Ar.addTimezone(r,n),Ar.endTimestamp(r)}visitInterval(e,r){return an.startInterval(r),an.addUnit(r,e.unit),an.endInterval(r)}visitList(e,r){return Vi.startList(r),Vi.endList(r)}visitStruct(e,r){return Yi.startStruct_(r),Yi.endStruct_(r)}visitUnion(e,r){gr.startTypeIdsVector(r,e.typeIds.length);let n=gr.createTypeIdsVector(r,e.typeIds);return gr.startUnion(r),gr.addMode(r,e.mode),gr.addTypeIds(r,n),gr.endUnion(r)}visitDictionary(e,r){let n=this.visit(e.indices,r);return Nn.startDictionaryEncoding(r),Nn.addId(r,new U1(e.id,0)),Nn.addIsOrdered(r,e.isOrdered),n!==void 0&&Nn.addIndexType(r,n),Nn.endDictionaryEncoding(r)}visitFixedSizeBinary(e,r){return on.startFixedSizeBinary(r),on.addByteWidth(r,e.byteWidth),on.endFixedSizeBinary(r)}visitFixedSizeList(e,r){return sn.startFixedSizeList(r),sn.addListSize(r,e.listSize),sn.endFixedSizeList(r)}visitMap(e,r){return pn.startMap(r),pn.addKeysSorted(r,e.keysSorted),pn.endMap(r)}},fc=new Wv;function Yv(t,e=new Map){return new et(L1(t,e),oc(t.customMetadata),e)}function Uw(t){return new kr(t.count,Jv(t.columns),Zv(t.columns))}function Kv(t){return new mn(Uw(t.data),t.id,t.isDelta)}function L1(t,e){return(t.fields||[]).filter(Boolean).map(r=>Ce.fromJSON(r,e))}function Gv(t,e){return(t.children||[]).filter(Boolean).map(r=>Ce.fromJSON(r,e))}function Jv(t){return(t||[]).reduce((e,r)=>[...e,new gi(r.count,C1(r.VALIDITY)),...Jv(r.children)],[])}function Zv(t,e=[]){for(let r=-1,n=(t||[]).length;++r<n;){let i=t[r];i.VALIDITY&&e.push(new dn(e.length,i.VALIDITY.length)),i.TYPE&&e.push(new dn(e.length,i.TYPE.length)),i.OFFSET&&e.push(new dn(e.length,i.OFFSET.length)),i.DATA&&e.push(new dn(e.length,i.DATA.length)),e=Zv(i.children,e)}return e}function C1(t){return(t||[]).reduce((e,r)=>e+ +(r===0),0)}function Xv(t,e){let r,n,i,f,o,s;return!e||!(f=t.dictionary)?(o=$v(t,Gv(t,e)),i=new Ce(t.name,o,t.nullable,oc(t.customMetadata))):e.has(r=f.id)?(n=(n=f.indexType)?Qv(n):new zi,s=new En(e.get(r),n,r,f.isOrdered),i=new Ce(t.name,s,t.nullable,oc(t.customMetadata))):(n=(n=f.indexType)?Qv(n):new zi,e.set(r,o=$v(t,Gv(t,e))),s=new En(o,n,r,f.isOrdered),i=new Ce(t.name,s,t.nullable,oc(t.customMetadata))),i||null}function oc(t){return new Map(Object.entries(t||{}))}function Qv(t){return new Xt(t.isSigned,t.bitWidth)}function $v(t,e){let r=t.type.name;switch(r){case"NONE":return new Vr;case"null":return new Vr;case"binary":return new vf;case"utf8":return new _f;case"bool":return new qf;case"list":return new pi((e||[])[0]);case"struct":return new Ot(e||[]);case"struct_":return new Ot(e||[])}switch(r){case"int":{let n=t.type;return new Xt(n.isSigned,n.bitWidth)}case"floatingpoint":{let n=t.type;return new en(Dt[n.precision])}case"decimal":{let n=t.type;return new kf(n.scale,n.precision,n.bitWidth)}case"date":{let n=t.type;return new Tf(qr[n.unit])}case"time":{let n=t.type;return new ai(Qe[n.unit],n.bitWidth)}case"timestamp":{let n=t.type;return new Bf(Qe[n.unit],n.timezone)}case"interval":{let n=t.type;return new If(Cr[n.unit])}case"union":{let n=t.type;return new ui(Ut[n.mode],n.typeIds||[],e||[])}case"fixedsizebinary":{let n=t.type;return new Sf(n.byteWidth)}case"fixedsizelist":{let n=t.type;return new ci(n.listSize,(e||[])[0])}case"map":{let n=t.type;return new mi((e||[])[0],n.keysSorted)}}throw new Error(`Unrecognized type: "${r}"`)}var vo=fr,V1=Nf,W1=Wr,sr=class{constructor(e,r,n,i){this._version=r,this._headerType=n,this.body=new Uint8Array(0),i&&(this._createHeader=()=>i),this._bodyLength=typeof e=="number"?e:e.low}static fromJSON(e,r){let n=new sr(0,mr.V4,r);return n._createHeader=Y1(e,r),n}static decode(e){e=new W1(Ee(e));let r=er.getRootAsMessage(e),n=r.bodyLength(),i=r.version(),f=r.headerType(),o=new sr(n,i,f);return o._createHeader=K1(r,f),o}static encode(e){let r=new V1,n=-1;return e.isSchema()?n=et.encode(r,e.header()):e.isRecordBatch()?n=kr.encode(r,e.header()):e.isDictionaryBatch()&&(n=mn.encode(r,e.header())),er.startMessage(r),er.addVersion(r,mr.V4),er.addHeader(r,n),er.addHeaderType(r,e.headerType),er.addBodyLength(r,new vo(e.bodyLength,0)),er.finishMessageBuffer(r,er.endMessage(r)),r.asUint8Array()}static from(e,r=0){if(e instanceof et)return new sr(0,mr.V4,ft.Schema,e);if(e instanceof kr)return new sr(r,mr.V4,ft.RecordBatch,e);if(e instanceof mn)return new sr(r,mr.V4,ft.DictionaryBatch,e);throw new Error(`Unrecognized Message header: ${e}`)}get type(){return this.headerType}get version(){return this._version}get headerType(){return this._headerType}get bodyLength(){return this._bodyLength}header(){return this._createHeader()}isSchema(){return this.headerType===ft.Schema}isRecordBatch(){return this.headerType===ft.RecordBatch}isDictionaryBatch(){return this.headerType===ft.DictionaryBatch}},kr=class{constructor(e,r,n){this._nodes=r,this._buffers=n,this._length=typeof e=="number"?e:e.low}get nodes(){return this._nodes}get length(){return this._length}get buffers(){return this._buffers}},mn=class{constructor(e,r,n=!1){this._data=e,this._isDelta=n,this._id=typeof r=="number"?r:r.low}get id(){return this._id}get data(){return this._data}get isDelta(){return this._isDelta}get length(){return this.data.length}get nodes(){return this.data.nodes}get buffers(){return this.data.buffers}},dn=class{constructor(e,r){this.offset=typeof e=="number"?e:e.low,this.length=typeof r=="number"?r:r.low}},gi=class{constructor(e,r){this.length=typeof e=="number"?e:e.low,this.nullCount=typeof r=="number"?r:r.low}};function Y1(t,e){return()=>{switch(e){case ft.Schema:return et.fromJSON(t);case ft.RecordBatch:return kr.fromJSON(t);case ft.DictionaryBatch:return mn.fromJSON(t)}throw new Error(`Unrecognized Message type: { name: ${ft[e]}, type: ${e} }`)}}function K1(t,e){return()=>{switch(e){case ft.Schema:return et.decode(t.header(new Lt));case ft.RecordBatch:return kr.decode(t.header(new Nr),t.version());case ft.DictionaryBatch:return mn.decode(t.header(new Kn),t.version())}throw new Error(`Unrecognized Message type: { name: ${ft[e]}, type: ${e} }`)}}Ce.encode=iE;Ce.decode=rE;Ce.fromJSON=Xv;et.encode=nE;et.decode=G1;et.fromJSON=Yv;kr.encode=fE;kr.decode=J1;kr.fromJSON=Uw;mn.encode=oE;mn.decode=Z1;mn.fromJSON=Kv;gi.encode=sE;gi.decode=Q1;dn.encode=lE;dn.decode=X1;function G1(t,e=new Map){let r=tE(t,e);return new et(r,sc(t),e)}function J1(t,e=mr.V4){if(t.compression()!==null)throw new Error("Record batch compression not implemented");return new kr(t.length(),$1(t),eE(t,e))}function Z1(t,e=mr.V4){return new mn(kr.decode(t.data(),e),t.id(),t.isDelta())}function X1(t){return new dn(t.offset(),t.length())}function Q1(t){return new gi(t.length(),t.nullCount())}function $1(t){let e=[];for(let r,n=-1,i=-1,f=t.nodesLength();++n<f;)(r=t.nodes(n))&&(e[++i]=gi.decode(r));return e}function eE(t,e){let r=[];for(let n,i=-1,f=-1,o=t.buffersLength();++i<o;)(n=t.buffers(i))&&(e<mr.V4&&(n.bb_pos+=8*(i+1)),r[++f]=dn.decode(n));return r}function tE(t,e){let r=[];for(let n,i=-1,f=-1,o=t.fieldsLength();++i<o;)(n=t.fields(i))&&(r[++f]=Ce.decode(n,e));return r}function e_(t,e){let r=[];for(let n,i=-1,f=-1,o=t.childrenLength();++i<o;)(n=t.children(i))&&(r[++f]=Ce.decode(n,e));return r}function rE(t,e){let r,n,i,f,o,s;return!e||!(s=t.dictionary())?(i=r_(t,e_(t,e)),n=new Ce(t.name(),i,t.nullable(),sc(t))):e.has(r=s.id().low)?(f=(f=s.indexType())?t_(f):new zi,o=new En(e.get(r),f,r,s.isOrdered()),n=new Ce(t.name(),o,t.nullable(),sc(t))):(f=(f=s.indexType())?t_(f):new zi,e.set(r,i=r_(t,e_(t,e))),o=new En(i,f,r,s.isOrdered()),n=new Ce(t.name(),o,t.nullable(),sc(t))),n||null}function sc(t){let e=new Map;if(t)for(let r,n,i=-1,f=Math.trunc(t.customMetadataLength());++i<f;)(r=t.customMetadata(i))&&(n=r.key())!=null&&e.set(n,r.value());return e}function t_(t){return new Xt(t.isSigned(),t.bitWidth())}function r_(t,e){let r=t.typeType();switch(r){case Ht.NONE:return new Vr;case Ht.Null:return new Vr;case Ht.Binary:return new vf;case Ht.Utf8:return new _f;case Ht.Bool:return new qf;case Ht.List:return new pi((e||[])[0]);case Ht.Struct_:return new Ot(e||[])}switch(r){case Ht.Int:{let n=t.type(new hr);return new Xt(n.isSigned(),n.bitWidth())}case Ht.FloatingPoint:{let n=t.type(new ln);return new en(n.precision())}case Ht.Decimal:{let n=t.type(new br);return new kf(n.scale(),n.precision(),n.bitWidth())}case Ht.Date:{let n=t.type(new fn);return new Tf(n.unit())}case Ht.Time:{let n=t.type(new Er);return new ai(n.unit(),n.bitWidth())}case Ht.Timestamp:{let n=t.type(new Ar);return new Bf(n.unit(),n.timezone())}case Ht.Interval:{let n=t.type(new an);return new If(n.unit())}case Ht.Union:{let n=t.type(new gr);return new ui(n.mode(),n.typeIdsArray()||[],e||[])}case Ht.FixedSizeBinary:{let n=t.type(new on);return new Sf(n.byteWidth())}case Ht.FixedSizeList:{let n=t.type(new sn);return new ci(n.listSize(),(e||[])[0])}case Ht.Map:{let n=t.type(new pn);return new mi((e||[])[0],n.keysSorted())}}throw new Error(`Unrecognized type: "${Ht[r]}" (${r})`)}function nE(t,e){let r=e.fields.map(f=>Ce.encode(t,f));Lt.startFieldsVector(t,r.length);let n=Lt.createFieldsVector(t,r),i=e.metadata&&e.metadata.size>0?Lt.createCustomMetadataVector(t,[...e.metadata].map(([f,o])=>{let s=t.createString(`${f}`),l=t.createString(`${o}`);return Nt.startKeyValue(t),Nt.addKey(t,s),Nt.addValue(t,l),Nt.endKeyValue(t)})):-1;return Lt.startSchema(t),Lt.addFields(t,n),Lt.addEndianness(t,aE?Rf.Little:Rf.Big),i!==-1&&Lt.addCustomMetadata(t,i),Lt.endSchema(t)}function iE(t,e){let r=-1,n=-1,i=-1,f=e.type,o=e.typeId;je.isDictionary(f)?(o=f.dictionary.typeId,i=fc.visit(f,t),n=fc.visit(f.dictionary,t)):n=fc.visit(f,t);let s=(f.children||[]).map(u=>Ce.encode(t,u)),l=or.createChildrenVector(t,s),p=e.metadata&&e.metadata.size>0?or.createCustomMetadataVector(t,[...e.metadata].map(([u,b])=>{let c=t.createString(`${u}`),h=t.createString(`${b}`);return Nt.startKeyValue(t),Nt.addKey(t,c),Nt.addValue(t,h),Nt.endKeyValue(t)})):-1;return e.name&&(r=t.createString(e.name)),or.startField(t),or.addType(t,n),or.addTypeType(t,o),or.addChildren(t,l),or.addNullable(t,!!e.nullable),r!==-1&&or.addName(t,r),i!==-1&&or.addDictionary(t,i),p!==-1&&or.addCustomMetadata(t,p),or.endField(t)}function fE(t,e){let r=e.nodes||[],n=e.buffers||[];Nr.startNodesVector(t,r.length);for(let o of r.slice().reverse())gi.encode(t,o);let i=t.endVector();Nr.startBuffersVector(t,n.length);for(let o of n.slice().reverse())dn.encode(t,o);let f=t.endVector();return Nr.startRecordBatch(t),Nr.addLength(t,new vo(e.length,0)),Nr.addNodes(t,i),Nr.addBuffers(t,f),Nr.endRecordBatch(t)}function oE(t,e){let r=kr.encode(t,e.data);return Kn.startDictionaryBatch(t),Kn.addId(t,new vo(e.id,0)),Kn.addIsDelta(t,e.isDelta),Kn.addData(t,r),Kn.endDictionaryBatch(t)}function sE(t,e){return va.createFieldNode(t,new vo(e.length,0),new vo(e.nullCount,0))}function lE(t,e){return ya.createBuffer(t,new vo(e.offset,0),new vo(e.length,0))}var aE=(()=>{let t=new ArrayBuffer(2);return new DataView(t).setInt16(0,256,!0),new Int16Array(t)[0]===256})();var Lw=t=>`Expected ${ft[t]} Message in stream, but was null or length 0.`,Cw=t=>`Header pointer of flatbuffer-encoded ${ft[t]} Message is null or length 0.`,n_=(t,e)=>`Expected to read ${t} metadata bytes, but only read ${e}.`,i_=(t,e)=>`Expected to read ${t} bytes for message body, but only read ${e}.`,_a=class{constructor(e){this.source=e instanceof Ji?e:new Ji(e)}[Symbol.iterator](){return this}next(){let e;return(e=this.readMetadataLength()).done?Bt:e.value===-1&&(e=this.readMetadataLength()).done?Bt:(e=this.readMetadata(e.value)).done?Bt:e}throw(e){return this.source.throw(e)}return(e){return this.source.return(e)}readMessage(e){let r;if((r=this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Lw(e));return r.value}readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=Ee(this.source.read(e));if(r.byteLength<e)throw new Error(i_(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}readSchema(e=!1){let r=ft.Schema,n=this.readMessage(r),i=n==null?void 0:n.header();if(e&&!i)throw new Error(Cw(r));return i}readMetadataLength(){let e=this.source.read(pc),r=e&&new Wr(e),n=(r==null?void 0:r.readInt32(0))||0;return{done:n===0,value:n}}readMetadata(e){let r=this.source.read(e);if(!r)return Bt;if(r.byteLength<e)throw new Error(n_(e,r.byteLength));return{done:!1,value:sr.decode(r)}}},lc=class{constructor(e,r){this.source=e instanceof un?e:su(e)?new go(e,r):new un(e)}[Symbol.asyncIterator](){return this}next(){return pe(this,void 0,void 0,function*(){let e;return(e=yield this.readMetadataLength()).done?Bt:e.value===-1&&(e=yield this.readMetadataLength()).done?Bt:(e=yield this.readMetadata(e.value)).done?Bt:e})}throw(e){return pe(this,void 0,void 0,function*(){return yield this.source.throw(e)})}return(e){return pe(this,void 0,void 0,function*(){return yield this.source.return(e)})}readMessage(e){return pe(this,void 0,void 0,function*(){let r;if((r=yield this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Lw(e));return r.value})}readMessageBody(e){return pe(this,void 0,void 0,function*(){if(e<=0)return new Uint8Array(0);let r=Ee(yield this.source.read(e));if(r.byteLength<e)throw new Error(i_(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()})}readSchema(e=!1){return pe(this,void 0,void 0,function*(){let r=ft.Schema,n=yield this.readMessage(r),i=n==null?void 0:n.header();if(e&&!i)throw new Error(Cw(r));return i})}readMetadataLength(){return pe(this,void 0,void 0,function*(){let e=yield this.source.read(pc),r=e&&new Wr(e),n=(r==null?void 0:r.readInt32(0))||0;return{done:n===0,value:n}})}readMetadata(e){return pe(this,void 0,void 0,function*(){let r=yield this.source.read(e);if(!r)return Bt;if(r.byteLength<e)throw new Error(n_(e,r.byteLength));return{done:!1,value:sr.decode(r)}})}},ac=class extends _a{constructor(e){super(new Uint8Array(0));this._schema=!1,this._body=[],this._batchIndex=0,this._dictionaryIndex=0,this._json=e instanceof Fu?e:new Fu(e)}next(){let{_json:e}=this;if(!this._schema){this._schema=!0;let r=sr.fromJSON(e.schema,ft.Schema);return{done:!1,value:r}}if(this._dictionaryIndex<e.dictionaries.length){let r=e.dictionaries[this._dictionaryIndex++];this._body=r.data.columns;let n=sr.fromJSON(r,ft.DictionaryBatch);return{done:!1,value:n}}if(this._batchIndex<e.batches.length){let r=e.batches[this._batchIndex++];this._body=r.columns;let n=sr.fromJSON(r,ft.RecordBatch);return{done:!1,value:n}}return this._body=[],Bt}readMessageBody(e){return r(this._body);function r(n){return(n||[]).reduce((i,f)=>[...i,...f.VALIDITY&&[f.VALIDITY]||[],...f.TYPE&&[f.TYPE]||[],...f.OFFSET&&[f.OFFSET]||[],...f.DATA&&[f.DATA]||[],...r(f.children)],[])}}readMessage(e){let r;if((r=this.next()).done)return null;if(e!=null&&r.value.headerType!==e)throw new Error(Lw(e));return r.value}readSchema(){let e=ft.Schema,r=this.readMessage(e),n=r==null?void 0:r.header();if(!r||!n)throw new Error(Cw(e));return n}},pc=4,Vw="ARROW1",Ts=new Uint8Array(Vw.length);for(let t=0;t<Vw.length;t+=1)Ts[t]=Vw.codePointAt(t);function uc(t,e=0){for(let r=-1,n=Ts.length;++r<n;)if(Ts[r]!==t[e+r])return!1;return!0}var Bs=Ts.length,Ww=Bs+pc,f_=Bs*2+pc;var Hr=class extends bs{constructor(e){super();this._impl=e}get closed(){return this._impl.closed}get schema(){return this._impl.schema}get autoDestroy(){return this._impl.autoDestroy}get dictionaries(){return this._impl.dictionaries}get numDictionaries(){return this._impl.numDictionaries}get numRecordBatches(){return this._impl.numRecordBatches}get footer(){return this._impl.isFile()?this._impl.footer:null}isSync(){return this._impl.isSync()}isAsync(){return this._impl.isAsync()}isFile(){return this._impl.isFile()}isStream(){return this._impl.isStream()}next(){return this._impl.next()}throw(e){return this._impl.throw(e)}return(e){return this._impl.return(e)}cancel(){return this._impl.cancel()}reset(e){return this._impl.reset(e),this._DOMStream=void 0,this._nodeStream=void 0,this}open(e){let r=this._impl.open(e);return Pn(r)?r.then(()=>this):this}readRecordBatch(e){return this._impl.isFile()?this._impl.readRecordBatch(e):null}[Symbol.iterator](){return this._impl[Symbol.iterator]()}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}toDOMStream(){return cr.toDOMStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this})}toNodeStream(){return cr.toNodeStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this},{objectMode:!0})}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e,r){throw new Error('"throughDOM" not available in this environment')}static from(e){return e instanceof Hr?e:fu(e)?pE(e):su(e)?mE(e):Pn(e)?(()=>pe(this,void 0,void 0,function*(){return yield Hr.from(yield e)}))():lu(e)||Zl(e)||pu(e)||xn(e)?cE(new un(e)):uE(new Ji(e))}static readAll(e){return e instanceof Hr?e.isSync()?a_(e):p_(e):fu(e)||ArrayBuffer.isView(e)||Mn(e)||ou(e)?a_(e):p_(e)}},Gn=class extends Hr{constructor(e){super(e);this._impl=e}readAll(){return[...this]}[Symbol.iterator](){return this._impl[Symbol.iterator]()}[Symbol.asyncIterator](){return Lr(this,arguments,function*(){yield Ve(yield*ts(Sn(this[Symbol.iterator]())))})}},_o=class extends Hr{constructor(e){super(e);this._impl=e}readAll(){var e,r;return pe(this,void 0,void 0,function*(){let n=new Array;try{for(var i=Sn(this),f;f=yield i.next(),!f.done;){let o=f.value;n.push(o)}}catch(o){e={error:o}}finally{try{f&&!f.done&&(r=i.return)&&(yield r.call(i))}finally{if(e)throw e.error}}return n})}[Symbol.iterator](){throw new Error("AsyncRecordBatchStreamReader is not Iterable")}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}},qo=class extends Gn{constructor(e){super(e);this._impl=e}},cc=class extends _o{constructor(e){super(e);this._impl=e}},Yw=class{constructor(e=new Map){this.closed=!1,this.autoDestroy=!0,this._dictionaryIndex=0,this._recordBatchIndex=0,this.dictionaries=e}get numDictionaries(){return this._dictionaryIndex}get numRecordBatches(){return this._recordBatchIndex}isSync(){return!1}isAsync(){return!1}isFile(){return!1}isStream(){return!1}reset(e){return this._dictionaryIndex=0,this._recordBatchIndex=0,this.schema=e,this.dictionaries=new Map,this}_loadRecordBatch(e,r){let n=this._loadVectors(e,r,this.schema.fields),i=Fe({type:new Ot(this.schema.fields),length:e.length,children:n});return new It(this.schema,i)}_loadDictionaryBatch(e,r){let{id:n,isDelta:i}=e,{dictionaries:f,schema:o}=this,s=f.get(n);if(i||!s){let l=o.dictionaries.get(n),p=this._loadVectors(e.data,r,[l]);return(s&&i?s.concat(new ze(p)):new ze(p)).memoize()}return s.memoize()}_loadVectors(e,r,n){return new Uu(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}},qa=class extends Yw{constructor(e,r){super(r);this._reader=fu(e)?new ac(this._handle=e):new _a(this._handle=e)}isSync(){return!0}isStream(){return!0}[Symbol.iterator](){return this}cancel(){!this.closed&&(this.closed=!0)&&(this.reset()._reader.return(),this._reader=null,this.dictionaries=null)}open(e){return this.closed||(this.autoDestroy=l_(this,e),this.schema||(this.schema=this._reader.readSchema())||this.cancel()),this}throw(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.throw(e):Bt}return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.return(e):Bt}next(){if(this.closed)return Bt;let e,{_reader:r}=this;for(;e=this._readNextMessageAndValidate();)if(e.isSchema())this.reset(e.header());else if(e.isRecordBatch()){this._recordBatchIndex++;let n=e.header(),i=r.readMessageBody(e.bodyLength),f=this._loadRecordBatch(n,i);return{done:!1,value:f}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=r.readMessageBody(e.bodyLength),f=this._loadDictionaryBatch(n,i);this.dictionaries.set(n.id,f)}return this.schema&&this._recordBatchIndex===0?(this._recordBatchIndex++,{done:!1,value:new qs(this.schema)}):this.return()}_readNextMessageAndValidate(e){return this._reader.readMessage(e)}},ka=class extends Yw{constructor(e,r){super(r);this._reader=new lc(this._handle=e)}isAsync(){return!0}isStream(){return!0}[Symbol.asyncIterator](){return this}cancel(){return pe(this,void 0,void 0,function*(){!this.closed&&(this.closed=!0)&&(yield this.reset()._reader.return(),this._reader=null,this.dictionaries=null)})}open(e){return pe(this,void 0,void 0,function*(){return this.closed||(this.autoDestroy=l_(this,e),this.schema||(this.schema=yield this._reader.readSchema())||(yield this.cancel())),this})}throw(e){return pe(this,void 0,void 0,function*(){return!this.closed&&this.autoDestroy&&(this.closed=!0)?yield this.reset()._reader.throw(e):Bt})}return(e){return pe(this,void 0,void 0,function*(){return!this.closed&&this.autoDestroy&&(this.closed=!0)?yield this.reset()._reader.return(e):Bt})}next(){return pe(this,void 0,void 0,function*(){if(this.closed)return Bt;let e,{_reader:r}=this;for(;e=yield this._readNextMessageAndValidate();)if(e.isSchema())yield this.reset(e.header());else if(e.isRecordBatch()){this._recordBatchIndex++;let n=e.header(),i=yield r.readMessageBody(e.bodyLength),f=this._loadRecordBatch(n,i);return{done:!1,value:f}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=yield r.readMessageBody(e.bodyLength),f=this._loadDictionaryBatch(n,i);this.dictionaries.set(n.id,f)}return this.schema&&this._recordBatchIndex===0?(this._recordBatchIndex++,{done:!1,value:new qs(this.schema)}):yield this.return()})}_readNextMessageAndValidate(e){return pe(this,void 0,void 0,function*(){return yield this._reader.readMessage(e)})}},Kw=class extends qa{constructor(e,r){super(e instanceof Pu?e:new Pu(e),r)}get footer(){return this._footer}get numDictionaries(){return this._footer?this._footer.numDictionaries:0}get numRecordBatches(){return this._footer?this._footer.numRecordBatches:0}isSync(){return!0}isFile(){return!0}open(e){if(!this.closed&&!this._footer){this.schema=(this._footer=this._readFooter()).schema;for(let r of this._footer.dictionaryBatches())r&&this._readDictionaryBatch(this._dictionaryIndex++)}return super.open(e)}readRecordBatch(e){var r;if(this.closed)return null;this._footer||this.open();let n=(r=this._footer)===null||r===void 0?void 0:r.getRecordBatch(e);if(n&&this._handle.seek(n.offset)){let i=this._reader.readMessage(ft.RecordBatch);if(i==null?void 0:i.isRecordBatch()){let f=i.header(),o=this._reader.readMessageBody(i.bodyLength);return this._loadRecordBatch(f,o)}}return null}_readDictionaryBatch(e){var r;let n=(r=this._footer)===null||r===void 0?void 0:r.getDictionaryBatch(e);if(n&&this._handle.seek(n.offset)){let i=this._reader.readMessage(ft.DictionaryBatch);if(i==null?void 0:i.isDictionaryBatch()){let f=i.header(),o=this._reader.readMessageBody(i.bodyLength),s=this._loadDictionaryBatch(f,o);this.dictionaries.set(f.id,s)}}}_readFooter(){let{_handle:e}=this,r=e.size-Ww,n=e.readInt32(r),i=e.readAt(r-n,n);return zf.decode(i)}_readNextMessageAndValidate(e){var r;if(this._footer||this.open(),this._footer&&this._recordBatchIndex<this.numRecordBatches){let n=(r=this._footer)===null||r===void 0?void 0:r.getRecordBatch(this._recordBatchIndex);if(n&&this._handle.seek(n.offset))return this._reader.readMessage(e)}return null}},o_=class extends ka{constructor(e,...r){let n=typeof r[0]!="number"?r.shift():void 0,i=r[0]instanceof Map?r.shift():void 0;super(e instanceof go?e:new go(e,n),i)}get footer(){return this._footer}get numDictionaries(){return this._footer?this._footer.numDictionaries:0}get numRecordBatches(){return this._footer?this._footer.numRecordBatches:0}isFile(){return!0}isAsync(){return!0}open(e){let r=Object.create(null,{open:{get:()=>super.open}});return pe(this,void 0,void 0,function*(){if(!this.closed&&!this._footer){this.schema=(this._footer=yield this._readFooter()).schema;for(let n of this._footer.dictionaryBatches())n&&(yield this._readDictionaryBatch(this._dictionaryIndex++))}return yield r.open.call(this,e)})}readRecordBatch(e){var r;return pe(this,void 0,void 0,function*(){if(this.closed)return null;this._footer||(yield this.open());let n=(r=this._footer)===null||r===void 0?void 0:r.getRecordBatch(e);if(n&&(yield this._handle.seek(n.offset))){let i=yield this._reader.readMessage(ft.RecordBatch);if(i==null?void 0:i.isRecordBatch()){let f=i.header(),o=yield this._reader.readMessageBody(i.bodyLength);return this._loadRecordBatch(f,o)}}return null})}_readDictionaryBatch(e){var r;return pe(this,void 0,void 0,function*(){let n=(r=this._footer)===null||r===void 0?void 0:r.getDictionaryBatch(e);if(n&&(yield this._handle.seek(n.offset))){let i=yield this._reader.readMessage(ft.DictionaryBatch);if(i==null?void 0:i.isDictionaryBatch()){let f=i.header(),o=yield this._reader.readMessageBody(i.bodyLength),s=this._loadDictionaryBatch(f,o);this.dictionaries.set(f.id,s)}}})}_readFooter(){return pe(this,void 0,void 0,function*(){let{_handle:e}=this;e._pending&&(yield e._pending);let r=e.size-Ww,n=yield e.readInt32(r),i=yield e.readAt(r-n,n);return zf.decode(i)})}_readNextMessageAndValidate(e){return pe(this,void 0,void 0,function*(){if(this._footer||(yield this.open()),this._footer&&this._recordBatchIndex<this.numRecordBatches){let r=this._footer.getRecordBatch(this._recordBatchIndex);if(r&&(yield this._handle.seek(r.offset)))return yield this._reader.readMessage(e)}return null})}},s_=class extends qa{constructor(e,r){super(e,r)}_loadVectors(e,r,n){return new bw(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}};function l_(t,e){return e&&typeof e.autoDestroy=="boolean"?e.autoDestroy:t.autoDestroy}function*a_(t){let e=Hr.from(t);try{if(!e.open({autoDestroy:!1}).closed)do yield e;while(!e.reset().open().closed)}finally{e.cancel()}}function p_(t){return Lr(this,arguments,function*(){let r=yield Ve(Hr.from(t));try{if(!(yield Ve(r.open({autoDestroy:!1}))).closed)do yield yield Ve(r);while(!(yield Ve(r.reset().open())).closed)}finally{yield Ve(r.cancel())}})}function pE(t){return new Gn(new s_(t))}function uE(t){let e=t.peek(Bs+7&~7);return e&&e.byteLength>=4?uc(e)?new qo(new Kw(t.read())):new Gn(new qa(t)):new Gn(new qa(function*(){}()))}function cE(t){return pe(this,void 0,void 0,function*(){let e=yield t.peek(Bs+7&~7);return e&&e.byteLength>=4?uc(e)?new qo(new Kw(yield t.read())):new _o(new ka(t)):new _o(new ka(function(){return Lr(this,arguments,function*(){})}()))})}function mE(t){return pe(this,void 0,void 0,function*(){let{size:e}=yield t.stat(),r=new go(t,e);return e>=f_&&uc(yield r.readAt(0,Bs+7&~7))?new cc(new o_(r)):new _o(new ka(r))})}var Ct=class extends qe{constructor(){super();this._byteLength=0,this._nodes=[],this._buffers=[],this._bufferRegions=[]}static assemble(...e){let r=i=>i.flatMap(f=>Array.isArray(f)?r(f):f instanceof It?f.data.children:f.data),n=new Ct;return n.visitMany(r(e)),n}visit(e){if(e instanceof ze)return this.visitMany(e.data),this;let{type:r}=e;if(!je.isDictionary(r)){let{length:n,nullCount:i}=e;if(n>2147483647)throw new RangeError("Cannot write arrays larger than 2^31 - 1 in length");je.isNull(r)||Jn.call(this,i<=0?new Uint8Array(0):us(e.offset,n,e.nullBitmap)),this.nodes.push(new gi(n,i))}return super.visit(e)}visitNull(e){return this}visitDictionary(e){return this.visit(e.clone(e.type.indices))}get nodes(){return this._nodes}get buffers(){return this._buffers}get byteLength(){return this._byteLength}get bufferRegions(){return this._bufferRegions}};function Jn(t){let e=t.byteLength+7&~7;return this.buffers.push(t),this.bufferRegions.push(new dn(this._byteLength,e)),this._byteLength+=e,this}function dE(t){let{type:e,length:r,typeIds:n,valueOffsets:i}=t;if(Jn.call(this,n),e.mode===Ut.Sparse)return Jw.call(this,t);if(e.mode===Ut.Dense){if(t.offset<=0)return Jn.call(this,i),Jw.call(this,t);{let f=n.reduce((u,b)=>Math.max(u,b),n[0]),o=new Int32Array(f+1),s=new Int32Array(f+1).fill(-1),l=new Int32Array(r),p=Xl(-i[0],r,i);for(let u,b,c=-1;++c<r;)(b=s[u=n[c]])===-1&&(b=s[u]=p[u]),l[c]=p[c]-b,++o[u];Jn.call(this,l);for(let u,b=-1,c=e.children.length;++b<c;)if(u=t.children[b]){let h=e.typeIds[b],T=Math.min(r,o[h]);this.visit(u.slice(s[h],T))}}}return this}function wE(t){let e;return t.nullCount>=t.length?Jn.call(this,new Uint8Array(0)):(e=t.values)instanceof Uint8Array?Jn.call(this,us(t.offset,t.length,e)):Jn.call(this,wo(t.values))}function Uf(t){return Jn.call(this,t.values.subarray(0,t.length*t.stride))}function u_(t){let{length:e,values:r,valueOffsets:n}=t,i=n[0],f=n[e],o=Math.min(f-i,r.byteLength-i);return Jn.call(this,Xl(-n[0],e,n)),Jn.call(this,r.subarray(i,i+o)),this}function Gw(t){let{length:e,valueOffsets:r}=t;return r&&Jn.call(this,Xl(r[0],e,r)),this.visit(t.children[0])}function Jw(t){return this.visitMany(t.type.children.map((e,r)=>t.children[r]).filter(Boolean))[0]}Ct.prototype.visitBool=wE;Ct.prototype.visitInt=Uf;Ct.prototype.visitFloat=Uf;Ct.prototype.visitUtf8=u_;Ct.prototype.visitBinary=u_;Ct.prototype.visitFixedSizeBinary=Uf;Ct.prototype.visitDate=Uf;Ct.prototype.visitTimestamp=Uf;Ct.prototype.visitTime=Uf;Ct.prototype.visitDecimal=Uf;Ct.prototype.visitList=Gw;Ct.prototype.visitStruct=Jw;Ct.prototype.visitUnion=dE;Ct.prototype.visitInterval=Uf;Ct.prototype.visitFixedSizeList=Gw;Ct.prototype.visitMap=Gw;var Is=class extends bs{constructor(e){super();this._position=0,this._started=!1,this._sink=new Gi,this._schema=null,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,xr(e)||(e={autoDestroy:!0,writeLegacyIpcFormat:!1}),this._autoDestroy=typeof e.autoDestroy=="boolean"?e.autoDestroy:!0,this._writeLegacyIpcFormat=typeof e.writeLegacyIpcFormat=="boolean"?e.writeLegacyIpcFormat:!1}static throughNode(e){throw new Error('"throughNode" not available in this environment')}static throughDOM(e,r){throw new Error('"throughDOM" not available in this environment')}toString(e=!1){return this._sink.toString(e)}toUint8Array(e=!1){return this._sink.toUint8Array(e)}writeAll(e){return Pn(e)?e.then(r=>this.writeAll(r)):xn(e)?Xw(this,e):Zw(this,e)}get closed(){return this._sink.closed}[Symbol.asyncIterator](){return this._sink[Symbol.asyncIterator]()}toDOMStream(e){return this._sink.toDOMStream(e)}toNodeStream(e){return this._sink.toNodeStream(e)}close(){return this.reset()._sink.close()}abort(e){return this.reset()._sink.abort(e)}finish(){return this._autoDestroy?this.close():this.reset(this._sink,this._schema),this}reset(e=this._sink,r=null){return e===this._sink||e instanceof Gi?this._sink=e:(this._sink=new Gi,e&&q0(e)?this.toDOMStream({type:"bytes"}).pipeTo(e):e&&k0(e)&&this.toNodeStream({objectMode:!1}).pipe(e)),this._started&&this._schema&&this._writeFooter(this._schema),this._started=!1,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,(!r||!yo(r,this._schema))&&(r==null?(this._position=0,this._schema=null):(this._started=!0,this._schema=r,this._writeSchema(r))),this}write(e){let r=null;if(this._sink){if(e==null)return this.finish()&&void 0;if(e instanceof $t&&!(r=e.schema))return this.finish()&&void 0;if(e instanceof It&&!(r=e.schema))return this.finish()&&void 0}else throw new Error("RecordBatchWriter is closed");if(r&&!yo(r,this._schema)){if(this._started&&this._autoDestroy)return this.close();this.reset(this._sink,r)}e instanceof It?e instanceof qs||this._writeRecordBatch(e):e instanceof $t?this.writeAll(e.batches):Mn(e)&&this.writeAll(e)}_writeMessage(e,r=8){let n=r-1,i=sr.encode(e),f=i.byteLength,o=this._writeLegacyIpcFormat?4:8,s=f+o+n&~n,l=s-f-o;return e.headerType===ft.RecordBatch?this._recordBatchBlocks.push(new wi(s,e.bodyLength,this._position)):e.headerType===ft.DictionaryBatch&&this._dictionaryBlocks.push(new wi(s,e.bodyLength,this._position)),this._writeLegacyIpcFormat||this._write(Int32Array.of(-1)),this._write(Int32Array.of(s-o)),f>0&&this._write(i),this._writePadding(l)}_write(e){if(this._started){let r=Ee(e);r&&r.byteLength>0&&(this._sink.write(r),this._position+=r.byteLength)}return this}_writeSchema(e){return this._writeMessage(sr.from(e))}_writeFooter(e){return this._writeLegacyIpcFormat?this._write(Int32Array.of(0)):this._write(Int32Array.of(-1,0))}_writeMagic(){return this._write(Ts)}_writePadding(e){return e>0?this._write(new Uint8Array(e)):this}_writeRecordBatch(e){let{byteLength:r,nodes:n,bufferRegions:i,buffers:f}=Ct.assemble(e),o=new kr(e.numRows,n,i),s=sr.from(o,r);return this._writeDictionaries(e)._writeMessage(s)._writeBodyBuffers(f)}_writeDictionaryBatch(e,r,n=!1){this._dictionaryDeltaOffsets.set(r,e.length+(this._dictionaryDeltaOffsets.get(r)||0));let{byteLength:i,nodes:f,bufferRegions:o,buffers:s}=Ct.assemble(new ze([e])),l=new kr(e.length,f,o),p=new mn(l,r,n),u=sr.from(p,i);return this._writeMessage(u)._writeBodyBuffers(s)}_writeBodyBuffers(e){let r,n,i;for(let f=-1,o=e.length;++f<o;)(r=e[f])&&(n=r.byteLength)>0&&(this._write(r),(i=(n+7&~7)-n)>0&&this._writePadding(i));return this}_writeDictionaries(e){for(let[r,n]of e.dictionaries){let i=this._dictionaryDeltaOffsets.get(r)||0;if(i===0||(n=n==null?void 0:n.slice(i)).length>0)for(let f of n.data)this._writeDictionaryBatch(f,r,i>0),i+=f.length}return this}},Ss=class extends Is{static writeAll(e,r){let n=new Ss(r);return Pn(e)?e.then(i=>n.writeAll(i)):xn(e)?Xw(n,e):Zw(n,e)}},xs=class extends Is{static writeAll(e){let r=new xs;return Pn(e)?e.then(n=>r.writeAll(n)):xn(e)?Xw(r,e):Zw(r,e)}constructor(){super();this._autoDestroy=!0}_writeSchema(e){return this._writeMagic()._writePadding(2)}_writeFooter(e){let r=zf.encode(new zf(e,mr.V4,this._recordBatchBlocks,this._dictionaryBlocks));return super._writeFooter(e)._write(r)._write(Int32Array.of(r.byteLength))._writeMagic()}};function Zw(t,e){let r=e;e instanceof $t&&(r=e.batches,t.reset(void 0,e.schema));for(let n of r)t.write(n);return t.finish()}function Xw(t,e){var r,n,i,f;return pe(this,void 0,void 0,function*(){try{for(r=Sn(e);n=yield r.next(),!n.done;){let o=n.value;t.write(o)}}catch(o){i={error:o}}finally{try{n&&!n.done&&(f=r.return)&&(yield f.call(r))}finally{if(i)throw i.error}}return t.finish()})}function c_(t,e){if(xn(t))return bE(t,e);if(Mn(t))return hE(t,e);throw new Error("toDOMStream() must be called with an Iterable or AsyncIterable")}function hE(t,e){let r=null,n=(e==null?void 0:e.type)==="bytes"||!1,i=(e==null?void 0:e.highWaterMark)||Math.pow(2,24);return new ReadableStream(Object.assign(Object.assign({},e),{start(o){f(o,r||(r=t[Symbol.iterator]()))},pull(o){r?f(o,r):o.close()},cancel(){((r==null?void 0:r.return)&&r.return()||!0)&&(r=null)}}),Object.assign({highWaterMark:n?i:void 0},e));function f(o,s){let l,p=null,u=o.desiredSize||null;for(;!(p=s.next(n?u:null)).done;)if(ArrayBuffer.isView(p.value)&&(l=Ee(p.value))&&(u!=null&&n&&(u=u-l.byteLength+1),p.value=l),o.enqueue(p.value),u!=null&&--u<=0)return;o.close()}}function bE(t,e){let r=null,n=(e==null?void 0:e.type)==="bytes"||!1,i=(e==null?void 0:e.highWaterMark)||Math.pow(2,24);return new ReadableStream(Object.assign(Object.assign({},e),{start(o){return pe(this,void 0,void 0,function*(){yield f(o,r||(r=t[Symbol.asyncIterator]()))})},pull(o){return pe(this,void 0,void 0,function*(){r?yield f(o,r):o.close()})},cancel(){return pe(this,void 0,void 0,function*(){((r==null?void 0:r.return)&&(yield r.return())||!0)&&(r=null)})}}),Object.assign({highWaterMark:n?i:void 0},e));function f(o,s){return pe(this,void 0,void 0,function*(){let l,p=null,u=o.desiredSize||null;for(;!(p=yield s.next(n?u:null)).done;)if(ArrayBuffer.isView(p.value)&&(l=Ee(p.value))&&(u!=null&&n&&(u=u-l.byteLength+1),p.value=l),o.enqueue(p.value),u!=null&&--u<=0)return;o.close()})}}function m_(t){return new d_(t)}var d_=class{constructor(e){this._numChunks=0,this._finished=!1,this._bufferedSize=0;let{["readableStrategy"]:r,["writableStrategy"]:n,["queueingStrategy"]:i="count"}=e,f=v0(e,["readableStrategy","writableStrategy","queueingStrategy"]);this._controller=null,this._builder=jo(f),this._getSize=i!=="bytes"?w_:h_;let{["highWaterMark"]:o=i==="bytes"?Math.pow(2,14):1e3}=Object.assign({},r),{["highWaterMark"]:s=i==="bytes"?Math.pow(2,14):1e3}=Object.assign({},n);this.readable=new ReadableStream({cancel:()=>{this._builder.clear()},pull:l=>{this._maybeFlush(this._builder,this._controller=l)},start:l=>{this._maybeFlush(this._builder,this._controller=l)}},{highWaterMark:o,size:i!=="bytes"?w_:h_}),this.writable=new WritableStream({abort:()=>{this._builder.clear()},write:()=>{this._maybeFlush(this._builder,this._controller)},close:()=>{this._maybeFlush(this._builder.finish(),this._controller)}},{highWaterMark:s,size:l=>this._writeValueAndReturnChunkSize(l)})}_writeValueAndReturnChunkSize(e){let r=this._bufferedSize;return this._bufferedSize=this._getSize(this._builder.append(e)),this._bufferedSize-r}_maybeFlush(e,r){r!=null&&(this._bufferedSize>=r.desiredSize&&++this._numChunks&&this._enqueue(r,e.toVector()),e.finished&&((e.length>0||this._numChunks===0)&&++this._numChunks&&this._enqueue(r,e.toVector()),!this._finished&&(this._finished=!0)&&this._enqueue(r,null)))}_enqueue(e,r){this._bufferedSize=0,this._controller=null,r==null?e.close():e.enqueue(r)}},w_=t=>{var e;return(e=t==null?void 0:t.length)!==null&&e!==void 0?e:0},h_=t=>{var e;return(e=t==null?void 0:t.byteLength)!==null&&e!==void 0?e:0};function mc(t,e){let r=new Gi,n=null,i=new ReadableStream({cancel(){return pe(this,void 0,void 0,function*(){yield r.close()})},start(s){return pe(this,void 0,void 0,function*(){yield o(s,n||(n=yield f()))})},pull(s){return pe(this,void 0,void 0,function*(){n?yield o(s,n):s.close()})}});return{writable:new WritableStream(r,Object.assign({highWaterMark:Math.pow(2,14)},t)),readable:i};function f(){return pe(this,void 0,void 0,function*(){return yield(yield Hr.from(r)).open(e)})}function o(s,l){return pe(this,void 0,void 0,function*(){let p=s.desiredSize,u=null;for(;!(u=yield l.next()).done;)if(s.enqueue(u.value),p!=null&&--p<=0)return;s.close()})}}function dc(t,e){let r=new this(t),n=new un(r),i=new ReadableStream({cancel(){return pe(this,void 0,void 0,function*(){yield n.cancel()})},pull(o){return pe(this,void 0,void 0,function*(){yield f(o)})},start(o){return pe(this,void 0,void 0,function*(){yield f(o)})}},Object.assign({highWaterMark:Math.pow(2,14)},e));return{writable:new WritableStream(r,t),readable:i};function f(o){return pe(this,void 0,void 0,function*(){let s=null,l=o.desiredSize;for(;s=yield n.read(l||null);)if(o.enqueue(s),l!=null&&(l-=s.byteLength)<=0)return;o.close()})}}var yE=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},Ld),hw),pw),$d),Pd),aw),{compareSchemas:yo,compareFields:Pv,compareTypes:Mv});cr.toDOMStream=c_;zt.throughDOM=m_;Hr.throughDOM=mc;qo.throughDOM=mc;Gn.throughDOM=mc;Is.throughDOM=dc;xs.throughDOM=dc;Ss.throughDOM=dc;var gc={};Cf(gc,{Compression:()=>BE,Encoding:()=>IE,WriterProperties:()=>Ns,WriterPropertiesBuilder:()=>Gt,WriterVersion:()=>SE,default:()=>v_,readParquet:()=>qE,writeParquet:()=>TE});var Be,b_=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0});b_.decode();var wc=null;function Ta(){return(wc===null||wc.buffer!==Be.memory.buffer)&&(wc=new Uint8Array(Be.memory.buffer)),wc}function g_(t,e){return b_.decode(Ta().subarray(t,t+e))}var Xi=new Array(32).fill(void 0);Xi.push(void 0,null,!0,!1);var Ba=Xi.length;function Ia(t){Ba===Xi.length&&Xi.push(Xi.length+1);let e=Ba;return Ba=Xi[e],Xi[e]=t,e}function Es(t){return Xi[t]}function vE(t){t<36||(Xi[t]=Ba,Ba=t)}function Sa(t){let e=Es(t);return vE(t),e}var Zn=0,hc=new TextEncoder("utf-8"),_E=typeof hc.encodeInto=="function"?function(t,e){return hc.encodeInto(t,e)}:function(t,e){let r=hc.encode(t);return e.set(r),{read:t.length,written:r.length}};function As(t,e,r){if(r===void 0){let s=hc.encode(t),l=e(s.length);return Ta().subarray(l,l+s.length).set(s),Zn=s.length,l}let n=t.length,i=e(n),f=Ta(),o=0;for(;o<n;o++){let s=t.charCodeAt(o);if(s>127)break;f[i+o]=s}if(o!==n){o!==0&&(t=t.slice(o)),i=r(i,n,n=o+t.length*3);let s=Ta().subarray(i+o,i+n);o+=_E(t,s).written}return Zn=o,i}function j_(t,e){let r=e(t.length*1);return Ta().set(t,r/1),Zn=t.length,r}var bc=null;function Os(){return(bc===null||bc.buffer!==Be.memory.buffer)&&(bc=new Int32Array(Be.memory.buffer)),bc}function qE(t){try{let i=Be.__wbindgen_add_to_stack_pointer(-16),f=j_(t,Be.__wbindgen_malloc),o=Zn;Be.readParquet(i,f,o);var e=Os()[i/4+0],r=Os()[i/4+1],n=Os()[i/4+2];if(n)throw Sa(r);return Sa(e)}finally{Be.__wbindgen_add_to_stack_pointer(16)}}function kE(t,e){if(!(t instanceof e))throw new Error(`expected instance of ${e.name}`);return t.ptr}function TE(t,e){try{let o=Be.__wbindgen_add_to_stack_pointer(-16),s=j_(t,Be.__wbindgen_malloc),l=Zn;kE(e,Ns);var r=e.ptr;e.ptr=0,Be.writeParquet(o,s,l,r);var n=Os()[o/4+0],i=Os()[o/4+1],f=Os()[o/4+2];if(f)throw Sa(i);return Sa(n)}finally{Be.__wbindgen_add_to_stack_pointer(16)}}var BE=Object.freeze({UNCOMPRESSED:0,"0":"UNCOMPRESSED",SNAPPY:1,"1":"SNAPPY",GZIP:2,"2":"GZIP",BROTLI:3,"3":"BROTLI",LZ4:4,"4":"LZ4",ZSTD:5,"5":"ZSTD"}),IE=Object.freeze({PLAIN:0,"0":"PLAIN",PLAIN_DICTIONARY:1,"1":"PLAIN_DICTIONARY",RLE:2,"2":"RLE",BIT_PACKED:3,"3":"BIT_PACKED",DELTA_BINARY_PACKED:4,"4":"DELTA_BINARY_PACKED",DELTA_LENGTH_BYTE_ARRAY:5,"5":"DELTA_LENGTH_BYTE_ARRAY",DELTA_BYTE_ARRAY:6,"6":"DELTA_BYTE_ARRAY",RLE_DICTIONARY:7,"7":"RLE_DICTIONARY",BYTE_STREAM_SPLIT:8,"8":"BYTE_STREAM_SPLIT"}),SE=Object.freeze({V1:0,"0":"V1",V2:1,"1":"V2"}),Ns=class{static __wrap(e){let r=Object.create(Ns.prototype);return r.ptr=e,r}__destroy_into_raw(){let e=this.ptr;return this.ptr=0,e}free(){let e=this.__destroy_into_raw();Be.__wbg_writerproperties_free(e)}},Gt=class{static __wrap(e){let r=Object.create(Gt.prototype);return r.ptr=e,r}__destroy_into_raw(){let e=this.ptr;return this.ptr=0,e}free(){let e=this.__destroy_into_raw();Be.__wbg_writerpropertiesbuilder_free(e)}constructor(){let e=Be.writerpropertiesbuilder_new();return Gt.__wrap(e)}build(){let e=this.__destroy_into_raw(),r=Be.writerpropertiesbuilder_build(e);return Ns.__wrap(r)}setWriterVersion(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setWriterVersion(r,e);return Gt.__wrap(n)}setDataPagesizeLimit(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setDataPagesizeLimit(r,e);return Gt.__wrap(n)}setDictionaryPagesizeLimit(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setDictionaryPagesizeLimit(r,e);return Gt.__wrap(n)}setWriteBatchSize(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setWriteBatchSize(r,e);return Gt.__wrap(n)}setMaxRowGroupSize(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setMaxRowGroupSize(r,e);return Gt.__wrap(n)}setCreatedBy(e){let r=this.__destroy_into_raw(),n=As(e,Be.__wbindgen_malloc,Be.__wbindgen_realloc),i=Zn,f=Be.writerpropertiesbuilder_setCreatedBy(r,n,i);return Gt.__wrap(f)}setEncoding(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setEncoding(r,e);return Gt.__wrap(n)}setCompression(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setCompression(r,e);return Gt.__wrap(n)}setDictionaryEnabled(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setDictionaryEnabled(r,e);return Gt.__wrap(n)}setStatisticsEnabled(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setStatisticsEnabled(r,e);return Gt.__wrap(n)}setMaxStatisticsSize(e){let r=this.__destroy_into_raw(),n=Be.writerpropertiesbuilder_setMaxStatisticsSize(r,e);return Gt.__wrap(n)}setColumnEncoding(e,r){let n=this.__destroy_into_raw(),i=As(e,Be.__wbindgen_malloc,Be.__wbindgen_realloc),f=Zn,o=Be.writerpropertiesbuilder_setColumnEncoding(n,i,f,r);return Gt.__wrap(o)}setColumnCompression(e,r){let n=this.__destroy_into_raw(),i=As(e,Be.__wbindgen_malloc,Be.__wbindgen_realloc),f=Zn,o=Be.writerpropertiesbuilder_setColumnCompression(n,i,f,r);return Gt.__wrap(o)}setColumnDictionaryEnabled(e,r){let n=this.__destroy_into_raw(),i=As(e,Be.__wbindgen_malloc,Be.__wbindgen_realloc),f=Zn,o=Be.writerpropertiesbuilder_setColumnDictionaryEnabled(n,i,f,r);return Gt.__wrap(o)}setColumnStatisticsEnabled(e,r){let n=this.__destroy_into_raw(),i=As(e,Be.__wbindgen_malloc,Be.__wbindgen_realloc),f=Zn,o=Be.writerpropertiesbuilder_setColumnStatisticsEnabled(n,i,f,r);return Gt.__wrap(o)}setColumnMaxStatisticsSize(e,r){let n=this.__destroy_into_raw(),i=As(e,Be.__wbindgen_malloc,Be.__wbindgen_realloc),f=Zn,o=Be.writerpropertiesbuilder_setColumnMaxStatisticsSize(n,i,f,r);return Gt.__wrap(o)}};async function xE(t,e){if(typeof Response=="function"&&t instanceof Response){if(typeof WebAssembly.instantiateStreaming=="function")try{return await WebAssembly.instantiateStreaming(t,e)}catch(n){if(t.headers.get("Content-Type")!="application/wasm")console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n",n);else throw n}let r=await t.arrayBuffer();return await WebAssembly.instantiate(r,e)}else{let r=await WebAssembly.instantiate(t,e);return r instanceof WebAssembly.Instance?{instance:r,module:t}:r}}async function y_(t){let e={};e.wbg={},e.wbg.__wbindgen_string_new=function(i,f){let o=g_(i,f);return Ia(o)},e.wbg.__wbindgen_object_drop_ref=function(i){Sa(i)},e.wbg.__wbg_buffer_7af23f65f6c64548=function(i){let f=Es(i).buffer;return Ia(f)},e.wbg.__wbg_newwithbyteoffsetandlength_ce1e75f0ce5f7974=function(i,f,o){let s=new Uint8Array(Es(i),f>>>0,o>>>0);return Ia(s)},e.wbg.__wbg_set_f25e869e4565d2a2=function(i,f,o){Es(i).set(Es(f),o>>>0)},e.wbg.__wbg_length_0acb1cf9bbaf8519=function(i){return Es(i).length},e.wbg.__wbg_newwithlength_8f0657faca9f1422=function(i){let f=new Uint8Array(i>>>0);return Ia(f)},e.wbg.__wbindgen_throw=function(i,f){throw new Error(g_(i,f))},e.wbg.__wbindgen_memory=function(){let i=Be.memory;return Ia(i)},(typeof t=="string"||typeof Request=="function"&&t instanceof Request||typeof URL=="function"&&t instanceof URL)&&(t=fetch(t));let{instance:r,module:n}=await xE(await t,e);return Be=r.exports,y_.__wbindgen_wasm_module=n,Be}var v_=y_;var Qw=null;async function __(t){return Qw!==null?Qw:(await v_(t),Qw=gc,gc)}async function q_(t,e){let r=e?.parquet?.wasmUrl,n=await __(r),i=new Uint8Array(t),f=n.readParquet(i),o=f.buffer.slice(f.byteOffset,f.byteLength+f.byteOffset);return EE(o)}function EE(t){let e=Gn.from(t),r=[];for(let n of e)r.push(n);return new $t(r)}var AE="4.0.0-alpha.10",OE={parquet:{type:"arrow-table",wasmUrl:"https://unpkg.com/parquet-wasm@0.3.1/esm2/arrow1_bg.wasm"}},k_={name:"Apache Parquet",id:"parquet-wasm",module:"parquet",version:AE,worker:!1,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:OE};var T_={...Aa,parse:Cy,parseFileInBatches:Ed},i6={...Aa,parse:Ky,parseFileInBatches:Od},f6={...k_,parse:q_};vc(T_);})();
46
39
  /*!
47
40
  *
48
41
  * Copyright 2009-2017 Kris Kowal under the terms of the MIT