@loaders.gl/parquet 3.3.0-alpha.13 → 3.3.0-alpha.14

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 (125) hide show
  1. package/dist/dist.min.js +17 -17
  2. package/dist/dist.min.js.map +3 -3
  3. package/dist/es5/index.js +3 -3
  4. package/dist/es5/index.js.map +1 -1
  5. package/dist/es5/lib/convert-schema-deep.ts.disabled +910 -0
  6. package/dist/es5/lib/parse-parquet.js +49 -25
  7. package/dist/es5/lib/parse-parquet.js.map +1 -1
  8. package/dist/es5/parquet-loader.js +3 -2
  9. package/dist/es5/parquet-loader.js.map +1 -1
  10. package/dist/es5/parquet-wasm-loader.js +1 -1
  11. package/dist/es5/parquet-wasm-writer.js +1 -1
  12. package/dist/es5/parquet-writer.js +1 -1
  13. package/dist/es5/parquetjs/compression.js +15 -5
  14. package/dist/es5/parquetjs/compression.js.map +1 -1
  15. package/dist/es5/parquetjs/encoder/{writer.js → parquet-encoder.js} +70 -158
  16. package/dist/es5/parquetjs/encoder/parquet-encoder.js.map +1 -0
  17. package/dist/es5/parquetjs/parser/parquet-reader.js +553 -222
  18. package/dist/es5/parquetjs/parser/parquet-reader.js.map +1 -1
  19. package/dist/es5/parquetjs/schema/declare.js +3 -1
  20. package/dist/es5/parquetjs/schema/declare.js.map +1 -1
  21. package/dist/es5/parquetjs/schema/shred.js +39 -33
  22. package/dist/es5/parquetjs/schema/shred.js.map +1 -1
  23. package/dist/es5/parquetjs/schema/types.js.map +1 -1
  24. package/dist/es5/parquetjs/utils/file-utils.js +2 -3
  25. package/dist/es5/parquetjs/utils/file-utils.js.map +1 -1
  26. package/dist/esm/index.js +1 -1
  27. package/dist/esm/index.js.map +1 -1
  28. package/dist/esm/lib/convert-schema-deep.ts.disabled +910 -0
  29. package/dist/esm/lib/parse-parquet.js +6 -12
  30. package/dist/esm/lib/parse-parquet.js.map +1 -1
  31. package/dist/esm/parquet-loader.js +3 -2
  32. package/dist/esm/parquet-loader.js.map +1 -1
  33. package/dist/esm/parquet-wasm-loader.js +1 -1
  34. package/dist/esm/parquet-wasm-writer.js +1 -1
  35. package/dist/esm/parquet-writer.js +1 -1
  36. package/dist/esm/parquetjs/compression.js +10 -1
  37. package/dist/esm/parquetjs/compression.js.map +1 -1
  38. package/dist/esm/parquetjs/encoder/{writer.js → parquet-encoder.js} +7 -37
  39. package/dist/esm/parquetjs/encoder/parquet-encoder.js.map +1 -0
  40. package/dist/esm/parquetjs/parser/parquet-reader.js +158 -72
  41. package/dist/esm/parquetjs/parser/parquet-reader.js.map +1 -1
  42. package/dist/esm/parquetjs/schema/declare.js +1 -0
  43. package/dist/esm/parquetjs/schema/declare.js.map +1 -1
  44. package/dist/esm/parquetjs/schema/shred.js +42 -34
  45. package/dist/esm/parquetjs/schema/shred.js.map +1 -1
  46. package/dist/esm/parquetjs/schema/types.js.map +1 -1
  47. package/dist/esm/parquetjs/utils/file-utils.js +1 -1
  48. package/dist/esm/parquetjs/utils/file-utils.js.map +1 -1
  49. package/dist/index.d.ts +1 -1
  50. package/dist/index.d.ts.map +1 -1
  51. package/dist/index.js +3 -4
  52. package/dist/lib/parse-parquet.d.ts +2 -2
  53. package/dist/lib/parse-parquet.d.ts.map +1 -1
  54. package/dist/lib/parse-parquet.js +24 -12
  55. package/dist/parquet-loader.d.ts +1 -0
  56. package/dist/parquet-loader.d.ts.map +1 -1
  57. package/dist/parquet-loader.js +2 -1
  58. package/dist/parquet-worker.js +15 -15
  59. package/dist/parquet-worker.js.map +3 -3
  60. package/dist/parquetjs/compression.d.ts.map +1 -1
  61. package/dist/parquetjs/compression.js +16 -5
  62. package/dist/parquetjs/encoder/{writer.d.ts → parquet-encoder.d.ts} +10 -19
  63. package/dist/parquetjs/encoder/parquet-encoder.d.ts.map +1 -0
  64. package/dist/parquetjs/encoder/{writer.js → parquet-encoder.js} +39 -37
  65. package/dist/parquetjs/parser/parquet-reader.d.ts +47 -57
  66. package/dist/parquetjs/parser/parquet-reader.d.ts.map +1 -1
  67. package/dist/parquetjs/parser/parquet-reader.js +168 -102
  68. package/dist/parquetjs/schema/declare.d.ts +14 -7
  69. package/dist/parquetjs/schema/declare.d.ts.map +1 -1
  70. package/dist/parquetjs/schema/declare.js +2 -0
  71. package/dist/parquetjs/schema/shred.d.ts +115 -0
  72. package/dist/parquetjs/schema/shred.d.ts.map +1 -1
  73. package/dist/parquetjs/schema/shred.js +161 -43
  74. package/dist/parquetjs/schema/types.d.ts +2 -2
  75. package/dist/parquetjs/schema/types.d.ts.map +1 -1
  76. package/dist/parquetjs/utils/file-utils.d.ts +3 -4
  77. package/dist/parquetjs/utils/file-utils.d.ts.map +1 -1
  78. package/dist/parquetjs/utils/file-utils.js +2 -5
  79. package/package.json +7 -5
  80. package/src/index.ts +2 -2
  81. package/src/lib/convert-schema-deep.ts.disabled +910 -0
  82. package/src/lib/parse-parquet.ts +25 -12
  83. package/src/parquet-loader.ts +3 -1
  84. package/src/parquetjs/compression.ts +14 -1
  85. package/src/parquetjs/encoder/{writer.ts → parquet-encoder.ts} +22 -28
  86. package/src/parquetjs/parser/parquet-reader.ts +239 -122
  87. package/src/parquetjs/schema/declare.ts +17 -9
  88. package/src/parquetjs/schema/shred.ts +157 -28
  89. package/src/parquetjs/schema/types.ts +21 -27
  90. package/src/parquetjs/utils/file-utils.ts +3 -4
  91. package/dist/es5/parquetjs/encoder/writer.js.map +0 -1
  92. package/dist/es5/parquetjs/file.js +0 -94
  93. package/dist/es5/parquetjs/file.js.map +0 -1
  94. package/dist/es5/parquetjs/parser/parquet-cursor.js +0 -183
  95. package/dist/es5/parquetjs/parser/parquet-cursor.js.map +0 -1
  96. package/dist/es5/parquetjs/parser/parquet-envelope-reader.js +0 -327
  97. package/dist/es5/parquetjs/parser/parquet-envelope-reader.js.map +0 -1
  98. package/dist/es5/parquetjs/utils/buffer-utils.js +0 -19
  99. package/dist/es5/parquetjs/utils/buffer-utils.js.map +0 -1
  100. package/dist/esm/parquetjs/encoder/writer.js.map +0 -1
  101. package/dist/esm/parquetjs/file.js +0 -81
  102. package/dist/esm/parquetjs/file.js.map +0 -1
  103. package/dist/esm/parquetjs/parser/parquet-cursor.js +0 -78
  104. package/dist/esm/parquetjs/parser/parquet-cursor.js.map +0 -1
  105. package/dist/esm/parquetjs/parser/parquet-envelope-reader.js +0 -129
  106. package/dist/esm/parquetjs/parser/parquet-envelope-reader.js.map +0 -1
  107. package/dist/esm/parquetjs/utils/buffer-utils.js +0 -13
  108. package/dist/esm/parquetjs/utils/buffer-utils.js.map +0 -1
  109. package/dist/parquetjs/encoder/writer.d.ts.map +0 -1
  110. package/dist/parquetjs/file.d.ts +0 -10
  111. package/dist/parquetjs/file.d.ts.map +0 -1
  112. package/dist/parquetjs/file.js +0 -99
  113. package/dist/parquetjs/parser/parquet-cursor.d.ts +0 -36
  114. package/dist/parquetjs/parser/parquet-cursor.d.ts.map +0 -1
  115. package/dist/parquetjs/parser/parquet-cursor.js +0 -74
  116. package/dist/parquetjs/parser/parquet-envelope-reader.d.ts +0 -40
  117. package/dist/parquetjs/parser/parquet-envelope-reader.d.ts.map +0 -1
  118. package/dist/parquetjs/parser/parquet-envelope-reader.js +0 -136
  119. package/dist/parquetjs/utils/buffer-utils.d.ts +0 -10
  120. package/dist/parquetjs/utils/buffer-utils.d.ts.map +0 -1
  121. package/dist/parquetjs/utils/buffer-utils.js +0 -22
  122. package/src/parquetjs/file.ts +0 -90
  123. package/src/parquetjs/parser/parquet-cursor.ts +0 -94
  124. package/src/parquetjs/parser/parquet-envelope-reader.ts +0 -199
  125. package/src/parquetjs/utils/buffer-utils.ts +0 -18
@@ -1,30 +1,30 @@
1
- (()=>{var gS=Object.create;var Ju=Object.defineProperty;var yS=Object.getOwnPropertyDescriptor;var jS=Object.getOwnPropertyNames;var qS=Object.getPrototypeOf,_S=Object.prototype.hasOwnProperty;var Yj=t=>Ju(t,"__esModule",{value:!0});var Ln=(t=>typeof require!="undefined"?require:typeof Proxy!="undefined"?new Proxy(t,{get:(e,r)=>(typeof require!="undefined"?require:e)[r]}):t)(function(t){if(typeof require!="undefined")return require.apply(this,arguments);throw new Error('Dynamic require of "'+t+'" is not supported')});var k=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),vS=(t,e)=>{Yj(t);for(var r in e)Ju(t,r,{get:e[r],enumerable:!0})},TS=(t,e,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of jS(e))!_S.call(t,n)&&n!=="default"&&Ju(t,n,{get:()=>e[n],enumerable:!(r=yS(e,n))||r.enumerable});return t},de=t=>TS(Yj(Ju(t!=null?gS(qS(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var Zr=k((xU,t0)=>{var Cm=4294967296,e0=[];for(is=0;is<256;is++)e0[is]=(is>15?"":"0")+is.toString(16);var is,Ha=t0.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))};Ha.MAX_INT=Math.pow(2,53);Ha.MIN_INT=-Math.pow(2,53);Ha.prototype={constructor:Ha,_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%Cm,t=t/Cm,t>Cm)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 u=e[r+o];n&&(u=(u^255)+f,f=u>>8,u=u&255),i+=u*s}return!t&&i>=Ha.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]=e0[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 af=k((Wn,Wm)=>{var nc=Ln("util"),Ma=Wn.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};Wn.MessageType={CALL:1,REPLY:2,EXCEPTION:3,ONEWAY:4};Wn.TException=ic;function ic(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}nc.inherits(ic,Error);var HS=Wn.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};Wn.TApplicationException=fc;function fc(t,e){ic.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.type=t||HS.UNKNOWN,this.name=this.constructor.name,this.message=e}nc.inherits(fc,ic);fc.prototype.read=function(t){for(var e,r=t.readStructBegin("TApplicationException");r=t.readFieldBegin(),r.ftype!=Ma.STOP;){switch(r.fid){case 1:r.ftype==Ma.STRING?(r=t.readString(),this.message=r):r=t.skip(r.ftype);break;case 2:r.ftype==Ma.I32?(r=t.readI32(),this.type=r):r=t.skip(r.ftype);break;default:r=t.skip(r.ftype);break}t.readFieldEnd()}t.readStructEnd()};fc.prototype.write=function(t){t.writeStructBegin("TApplicationException"),this.message&&(t.writeFieldBegin("message",Ma.STRING,1),t.writeString(this.message),t.writeFieldEnd()),this.code&&(t.writeFieldBegin("type",Ma.I32,2),t.writeI32(this.code),t.writeFieldEnd()),t.writeFieldStop(),t.writeStructEnd()};var SU=Wn.TProtocolExceptionType={UNKNOWN:0,INVALID_DATA:1,NEGATIVE_SIZE:2,SIZE_LIMIT:3,BAD_VERSION:4,NOT_IMPLEMENTED:5,DEPTH_LIMIT:6};Wn.TProtocolException=r0;function r0(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}nc.inherits(r0,Error);Wn.objectLength=function(t){return Object.keys(t).length};Wn.inherits=function(t,e){nc.inherits(t,e)};var oc,sc;oc=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===sc||r===oc?f.push(r(s,e.slice(1))):f.push(new n(s));return f};sc=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===sc||r===oc?i[o]=r(f,e.slice(1)):i[o]=new n(f));return i};Wm.exports.copyMap=sc;Wm.exports.copyList=oc});var i0=k((EU,n0)=>{var fs=null;typeof WebSocket!="undefined"?fs=WebSocket:typeof MozWebSocket!="undefined"?fs=MozWebSocket:typeof global!="undefined"?fs=global.WebSocket||global.MozWebSocket:typeof window!="undefined"?fs=window.WebSocket||window.MozWebSocket:typeof self!="undefined"&&(fs=self.WebSocket||self.MozWebSocket);n0.exports=fs});var Ym=k((AU,Km)=>{"use strict";var os=typeof Reflect=="object"?Reflect:null,f0=os&&typeof os.apply=="function"?os.apply:function(e,r,n){return Function.prototype.apply.call(e,r,n)},ac;os&&typeof os.ownKeys=="function"?ac=os.ownKeys:Object.getOwnPropertySymbols?ac=function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:ac=function(e){return Object.getOwnPropertyNames(e)};function MS(t){console&&console.warn&&console.warn(t)}var o0=Number.isNaN||function(e){return e!==e};function it(){it.init.call(this)}Km.exports=it;Km.exports.once=VS;it.EventEmitter=it;it.prototype._events=void 0;it.prototype._eventsCount=0;it.prototype._maxListeners=void 0;var s0=10;function lc(t){if(typeof t!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}Object.defineProperty(it,"defaultMaxListeners",{enumerable:!0,get:function(){return s0},set:function(t){if(typeof t!="number"||t<0||o0(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");s0=t}});it.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};it.prototype.setMaxListeners=function(e){if(typeof e!="number"||e<0||o0(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 a0(t){return t._maxListeners===void 0?it.defaultMaxListeners:t._maxListeners}it.prototype.getMaxListeners=function(){return a0(this)};it.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 u=f[e];if(u===void 0)return!1;if(typeof u=="function")f0(u,this,r);else for(var l=u.length,c=d0(u,l),n=0;n<l;++n)f0(c[n],this,r);return!0};function l0(t,e,r,n){var i,f,o;if(lc(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=a0(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,MS(s)}return t}it.prototype.addListener=function(e,r){return l0(this,e,r,!1)};it.prototype.on=it.prototype.addListener;it.prototype.prependListener=function(e,r){return l0(this,e,r,!0)};function zS(){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 u0(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},i=zS.bind(n);return i.listener=r,n.wrapFn=i,i}it.prototype.once=function(e,r){return lc(r),this.on(e,u0(this,e,r)),this};it.prototype.prependOnceListener=function(e,r){return lc(r),this.prependListener(e,u0(this,e,r)),this};it.prototype.removeListener=function(e,r){var n,i,f,o,s;if(lc(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():US(n,f),n.length===1&&(i[e]=n[0]),i.removeListener!==void 0&&this.emit("removeListener",e,s||r)}return this};it.prototype.off=it.prototype.removeListener;it.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 c0(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?LS(i):d0(i,i.length)}it.prototype.listeners=function(e){return c0(this,e,!0)};it.prototype.rawListeners=function(e){return c0(this,e,!1)};it.listenerCount=function(t,e){return typeof t.listenerCount=="function"?t.listenerCount(e):p0.call(t,e)};it.prototype.listenerCount=p0;function p0(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}it.prototype.eventNames=function(){return this._eventsCount>0?ac(this._events):[]};function d0(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}function US(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function LS(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}function VS(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))}m0(t,e,f,{once:!0}),e!=="error"&&CS(t,i,{once:!0})})}function CS(t,e,r){typeof t.on=="function"&&m0(t,"error",e,r)}function m0(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 uc=k(lf=>{var Gm=Math.pow(2,8),WS=Math.pow(2,16),w0=Math.pow(2,24),h0=Math.pow(2,32),KS=Math.pow(2,40),YS=Math.pow(2,48),Zm=Math.pow(2,52),GS=Math.pow(2,1022);lf.readByte=function(t){return t>127?t-256:t};lf.readI16=function(t,e){e=e||0;var r=t[e+1];return r+=t[e]<<8,t[e]&128&&(r-=WS),r};lf.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]*w0,t[e]&128&&(r-=h0),r};lf.writeI16=function(t,e){return t[1]=e&255,e>>=8,t[0]=e&255,t};lf.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};lf.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]*w0,i+=t[e+3]*h0,i+=t[e+2]*KS,i+=(t[e+1]&15)*YS,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=Zm,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};lf.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)*Zm,n+=1023):(r=e*GS*Zm,n=0)),t[1]=n<<4&240,t[0]|=n>>4&127,t[7]=r&255,r=Math.floor(r/Gm),t[6]=r&255,r=Math.floor(r/Gm),t[5]=r&255,r=Math.floor(r/Gm),t[4]=r&255,r>>=8,t[3]=r&255,r>>=8,t[2]=r&255,r>>=8,t[1]|=r&15,t}});var oo=k((FU,g0)=>{var ZS=Ln("util");g0.exports=b0;function b0(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}ZS.inherits(b0,Error)});var pc=k(Ii=>{var JS=Ln("util"),ss=function(){},y0=console.log,cc="error";function za(t){return function(){var e=["thrift: ["+t+"] "].concat(Array.from(arguments));return y0(JS.format.apply(null,e))}}var Jm=ss,Qm=ss,Xm=ss,$m=ss,ew=ss;Ii.setLogFunc=function(t){y0=t};var QS=Ii.setLogLevel=function(t){switch(Jm=Qm=Xm=$m=ew=ss,cc=t,cc){case"trace":Jm=za("TRACE");case"debug":Qm=za("DEBUG");case"error":Xm=za("ERROR");case"warning":$m=za("WARN");case"info":ew=za("INFO")}};QS(cc);Ii.getLogLevel=function(){return cc};Ii.trace=function(){return Jm.apply(null,arguments)};Ii.debug=function(){return Qm.apply(null,arguments)};Ii.error=function(){return Xm.apply(null,arguments)};Ii.warning=function(){return $m.apply(null,arguments)};Ii.info=function(){return ew.apply(null,arguments)}});var nw=k((NU,j0)=>{var XS=pc(),xi=Zr(),_t=af(),at=_t.Type;j0.exports=P;var tw=Math.pow(2,8),$S=Math.pow(2,24),eE=Math.pow(2,32),tE=Math.pow(2,40),rE=Math.pow(2,48),rw=Math.pow(2,52),nE=Math.pow(2,1022);function P(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}}P.PROTOCOL_ID=-126;P.VERSION_N=1;P.VERSION_MASK=31;P.TYPE_MASK=-32;P.TYPE_BITS=7;P.TYPE_SHIFT_AMOUNT=5;P.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};P.TTypeToCType=[P.Types.CT_STOP,0,P.Types.CT_BOOLEAN_TRUE,P.Types.CT_BYTE,P.Types.CT_DOUBLE,0,P.Types.CT_I16,0,P.Types.CT_I32,0,P.Types.CT_I64,P.Types.CT_BINARY,P.Types.CT_STRUCT,P.Types.CT_MAP,P.Types.CT_SET,P.Types.CT_LIST];P.prototype.getTransport=function(){return this.trans};P.prototype.getCompactType=function(t){return P.TTypeToCType[t]};P.prototype.getTType=function(t){switch(t){case at.STOP:return at.STOP;case P.Types.CT_BOOLEAN_FALSE:case P.Types.CT_BOOLEAN_TRUE:return at.BOOL;case P.Types.CT_BYTE:return at.BYTE;case P.Types.CT_I16:return at.I16;case P.Types.CT_I32:return at.I32;case P.Types.CT_I64:return at.I64;case P.Types.CT_DOUBLE:return at.DOUBLE;case P.Types.CT_BINARY:return at.STRING;case P.Types.CT_LIST:return at.LIST;case P.Types.CT_SET:return at.SET;case P.Types.CT_MAP:return at.MAP;case P.Types.CT_STRUCT:return at.STRUCT;default:throw new _t.TProtocolException(_t.TProtocolExceptionType.INVALID_DATA,"Unknown type: "+t)}return at.STOP};P.prototype.flush=function(){return this.trans.flush()};P.prototype.writeMessageBegin=function(t,e,r){this.writeByte(P.PROTOCOL_ID),this.writeByte(P.VERSION_N&P.VERSION_MASK|e<<P.TYPE_SHIFT_AMOUNT&P.TYPE_MASK),this.writeVarint32(r),this.writeString(t),this._seqid?XS.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};P.prototype.writeMessageEnd=function(){};P.prototype.writeStructBegin=function(t){this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0};P.prototype.writeStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};P.prototype.writeFieldBegin=function(t,e,r){if(e!=at.BOOL)return this.writeFieldBeginInternal(t,e,r,-1);this.booleanField_.name=t,this.booleanField_.fieldType=e,this.booleanField_.fieldId=r};P.prototype.writeFieldEnd=function(){};P.prototype.writeFieldStop=function(){this.writeByte(P.Types.CT_STOP)};P.prototype.writeMapBegin=function(t,e,r){r===0?this.writeByte(0):(this.writeVarint32(r),this.writeByte(this.getCompactType(t)<<4|this.getCompactType(e)))};P.prototype.writeMapEnd=function(){};P.prototype.writeListBegin=function(t,e){this.writeCollectionBegin(t,e)};P.prototype.writeListEnd=function(){};P.prototype.writeSetBegin=function(t,e){this.writeCollectionBegin(t,e)};P.prototype.writeSetEnd=function(){};P.prototype.writeBool=function(t){this.booleanField_.name!==null?(this.writeFieldBeginInternal(this.booleanField_.name,this.booleanField_.fieldType,this.booleanField_.fieldId,t?P.Types.CT_BOOLEAN_TRUE:P.Types.CT_BOOLEAN_FALSE),this.booleanField_.name=null):this.writeByte(t?P.Types.CT_BOOLEAN_TRUE:P.Types.CT_BOOLEAN_FALSE)};P.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};P.prototype.writeI16=function(t){this.writeVarint32(this.i32ToZigzag(t))};P.prototype.writeI32=function(t){this.writeVarint32(this.i32ToZigzag(t))};P.prototype.writeI64=function(t){this.writeVarint64(this.i64ToZigzag(t))};P.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)*rw,n+=1023):(r=t*nE*rw,n=0)),e[6]=n<<4&240,e[7]|=n>>4&127,e[0]=r&255,r=Math.floor(r/tw),e[1]=r&255,r=Math.floor(r/tw),e[2]=r&255,r=Math.floor(r/tw),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)};P.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)};P.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};P.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};P.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};P.prototype.writeCollectionBegin=function(t,e){e<=14?this.writeByte(e<<4|this.getCompactType(t)):(this.writeByte(240|this.getCompactType(t)),this.writeVarint32(e))};P.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)};P.prototype.writeVarint64=function(t){if(typeof t=="number"&&(t=new xi(t)),!(t instanceof xi))throw new _t.TProtocolException(_t.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)};P.prototype.i64ToZigzag=function(t){if(typeof t=="string"?t=new xi(parseInt(t,10)):typeof t=="number"&&(t=new xi(t)),!(t instanceof xi))throw new _t.TProtocolException(_t.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 xi(e,r)};P.prototype.i32ToZigzag=function(t){return t<<1^(t&2147483648?4294967295:0)};P.prototype.readMessageBegin=function(){var t=this.trans.readByte();if(t!=P.PROTOCOL_ID)throw new _t.TProtocolException(_t.TProtocolExceptionType.BAD_VERSION,"Bad protocol identifier "+t);var e=this.trans.readByte(),r=e&P.VERSION_MASK;if(r!=P.VERSION_N)throw new _t.TProtocolException(_t.TProtocolExceptionType.BAD_VERSION,"Bad protocol version "+r);var n=e>>P.TYPE_SHIFT_AMOUNT&P.TYPE_BITS,i=this.readVarint32(),f=this.readString();return{fname:f,mtype:n,rseqid:i}};P.prototype.readMessageEnd=function(){};P.prototype.readStructBegin=function(){return this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0,{fname:""}};P.prototype.readStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};P.prototype.readFieldBegin=function(){var t=0,e=this.trans.readByte(e),r=e&15;if(r==P.Types.CT_STOP)return{fname:null,ftype:_t.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==P.Types.CT_BOOLEAN_TRUE||r==P.Types.CT_BOOLEAN_FALSE)&&(this.boolValue_.hasBoolValue=!0,this.boolValue_.boolValue=r==P.Types.CT_BOOLEAN_TRUE),this.lastFieldId_=t,{fname:null,ftype:i,fid:t}};P.prototype.readFieldEnd=function(){};P.prototype.readMapBegin=function(){var t=this.readVarint32();if(t<0)throw new _t.TProtocolException(_t.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}};P.prototype.readMapEnd=function(){};P.prototype.readListBegin=function(){var t=this.trans.readByte(),e=t>>>4&15;if(e==15&&(e=this.readVarint32()),e<0)throw new _t.TProtocolException(_t.TProtocolExceptionType.NEGATIVE_SIZE,"Negative list size");var r=this.getTType(t&15);return{etype:r,size:e}};P.prototype.readListEnd=function(){};P.prototype.readSetBegin=function(){return this.readListBegin()};P.prototype.readSetEnd=function(){};P.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==P.Types.CT_BOOLEAN_TRUE}return t};P.prototype.readByte=function(){return this.trans.readByte()};P.prototype.readI16=function(){return this.readI32()};P.prototype.readI32=function(){return this.zigzagToI32(this.readVarint32())};P.prototype.readI64=function(){return this.zigzagToI64(this.readVarint64())};P.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]*$S,i+=t[e+4]*eE,i+=t[e+5]*tE,i+=(t[e+6]&15)*rE,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=rw,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};P.prototype.readBinary=function(){var t=this.readVarint32();if(t===0)return new Buffer(0);if(t<0)throw new _t.TProtocolException(_t.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};P.prototype.readString=function(){var t=this.readVarint32();if(t===0)return"";if(t<0)throw new _t.TProtocolException(_t.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};P.prototype.readVarint32=function(){return this.readVarint64().toNumber()};P.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 _t.TProtocolException(_t.TProtocolExceptionType.INVALID_DATA,"Variable-length int over 10 bytes.")}return new xi(r,e)};P.prototype.zigzagToI32=function(t){return t>>>1^-1*(t&1)};P.prototype.zigzagToI64=function(t){var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=new xi(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 xi(e,r)};P.prototype.skip=function(t){switch(t){case at.BOOL:this.readBool();break;case at.BYTE:this.readByte();break;case at.I16:this.readI16();break;case at.I32:this.readI32();break;case at.I64:this.readI64();break;case at.DOUBLE:this.readDouble();break;case at.STRING:this.readString();break;case at.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===at.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case at.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case at.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case at.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 ow=k((RU,k0)=>{var q0=pc(),iw=uc(),_0=Zr(),Si=af(),Br=Si.Type;k0.exports=me;var v0=-65536,fw=-2147418112,T0=255;me.VERSION_MASK=v0;me.VERSION_1=fw;me.TYPE_MASK=T0;function me(t,e,r){this.trans=t,this.strictRead=e!==void 0?e:!1,this.strictWrite=r!==void 0?r:!0,this._seqid=null}me.prototype.flush=function(){return this.trans.flush()};me.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?q0.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};me.prototype.writeMessageEnd=function(){this._seqid!==null?this._seqid=null:q0.warning("No seqid to unset")};me.prototype.writeStructBegin=function(t){};me.prototype.writeStructEnd=function(){};me.prototype.writeFieldBegin=function(t,e,r){this.writeByte(e),this.writeI16(r)};me.prototype.writeFieldEnd=function(){};me.prototype.writeFieldStop=function(){this.writeByte(Br.STOP)};me.prototype.writeMapBegin=function(t,e,r){this.writeByte(t),this.writeByte(e),this.writeI32(r)};me.prototype.writeMapEnd=function(){};me.prototype.writeListBegin=function(t,e){this.writeByte(t),this.writeI32(e)};me.prototype.writeListEnd=function(){};me.prototype.writeSetBegin=function(t,e){this.writeByte(t),this.writeI32(e)};me.prototype.writeSetEnd=function(){};me.prototype.writeBool=function(t){t?this.writeByte(1):this.writeByte(0)};me.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};me.prototype.writeI16=function(t){this.trans.write(iw.writeI16(new Buffer(2),t))};me.prototype.writeI32=function(t){this.trans.write(iw.writeI32(new Buffer(4),t))};me.prototype.writeI64=function(t){t.buffer?this.trans.write(t.buffer):this.trans.write(new _0(t).buffer)};me.prototype.writeDouble=function(t){this.trans.write(iw.writeDouble(new Buffer(8),t))};me.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)};me.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};me.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};me.prototype.readMessageBegin=function(){var t=this.readI32(),e,r,n;if(t<0){var i=t&v0;if(i!=fw)throw new Si.TProtocolException(Si.TProtocolExceptionType.BAD_VERSION,"Bad version in readMessageBegin: "+t);e=t&T0,r=this.readString(),n=this.readI32()}else{if(this.strictRead)throw new Si.TProtocolException(Si.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}};me.prototype.readMessageEnd=function(){};me.prototype.readStructBegin=function(){return{fname:""}};me.prototype.readStructEnd=function(){};me.prototype.readFieldBegin=function(){var t=this.readByte();if(t==Br.STOP)return{fname:null,ftype:t,fid:0};var e=this.readI16();return{fname:null,ftype:t,fid:e}};me.prototype.readFieldEnd=function(){};me.prototype.readMapBegin=function(){var t=this.readByte(),e=this.readByte(),r=this.readI32();return{ktype:t,vtype:e,size:r}};me.prototype.readMapEnd=function(){};me.prototype.readListBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};me.prototype.readListEnd=function(){};me.prototype.readSetBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};me.prototype.readSetEnd=function(){};me.prototype.readBool=function(){var t=this.readByte();return t!==0};me.prototype.readByte=function(){return this.trans.readByte()};me.prototype.readI16=function(){return this.trans.readI16()};me.prototype.readI32=function(){return this.trans.readI32()};me.prototype.readI64=function(){var t=this.trans.read(8);return new _0(t)};me.prototype.readDouble=function(){return this.trans.readDouble()};me.prototype.readBinary=function(){var t=this.readI32();if(t===0)return new Buffer(0);if(t<0)throw new Si.TProtocolException(Si.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};me.prototype.readString=function(){var t=this.readI32();if(t===0)return"";if(t<0)throw new Si.TProtocolException(Si.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};me.prototype.getTransport=function(){return this.trans};me.prototype.skip=function(t){switch(t){case Br.BOOL:this.readBool();break;case Br.BYTE:this.readByte();break;case Br.I16:this.readI16();break;case Br.I32:this.readI32();break;case Br.I64:this.readI64();break;case Br.DOUBLE:this.readDouble();break;case Br.STRING:this.readString();break;case Br.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Br.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Br.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Br.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case Br.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 sw=k((PU,A0)=>{var iE=Ln("util"),dc=nw(),B0=ow(),fE=oo();function Ua(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}iE.inherits(Ua,Error);A0.exports=Ot;var oE=0,sE=1,aE=0,lE=32/8,uE=48/8,cE=64/8,pE=96/8,I0=112/8,x0=4095,S0=1,dE=1073741823;function Ei(t){var e=La();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 dc(this.transport)}Ei.prototype.readVarint32=function(){return this.protocol.readVarint32()};Ei.prototype.writeVarint32=function(t){this.protocol.writeVarint32(t)};Ei.prototype.readString=function(){return this.protocol.readString()};Ei.prototype.writeString=function(t){this.protocol.writeString(t)};Ei.prototype.getOutCount=function(){return this.transport.outCount};Ei.prototype.write=function(t){this.transport.write(t)};Ei.prototype.toBuffer=function(){return this.transport.flush(),this.outputBuffer};Ot.SubprotocolId={BINARY:0,JSON:1,COMPACT:2};function Ot(){this.maxFrameSize=dE,this.protocolId=Ot.SubprotocolId.BINARY,this.rheaders={},this.wheaders={},this.inBuf=Buffer.alloc(0),this.outCount=0,this.flags=null,this.seqid=0,this.shouldWriteHeaders=!0}var E0=function(t,e){if(typeof t!="string"||typeof e!="string")throw new Ua("Header key and values must be strings")},mE=function(t){for(var e=Object.keys(Ot.SubprotocolId),r=0;r<e.length;r++)if(t===Ot.SubprotocolId[e[r]])return!0;throw new Error(t+" is not a valid protocol id")};Ot.prototype.setSeqId=function(t){this.seqid=t};Ot.prototype.getSeqId=function(t){return this.seqid};Ot.prototype.setFlags=function(t){this.flags=t};Ot.prototype.getReadHeaders=function(){return this.rheaders};Ot.prototype.setReadHeader=function(t,e){E0(t,e),this.rheaders[t]=e};Ot.prototype.clearReadHeaders=function(){this.rheaders={}};Ot.prototype.getWriteHeaders=function(){return this.wheaders};Ot.prototype.setWriteHeader=function(t,e){E0(t,e),this.wheaders[t]=e};Ot.prototype.clearWriteHeaders=function(){this.wheaders={}};Ot.prototype.setMaxFrameSize=function(t){this.maxFrameSize=t};Ot.prototype.setProtocolId=function(t){mE(t),this.protocolId=t};Ot.prototype.getProtocolId=function(){return this.protocolId};var wE=function(t){var e=t.readInt32BE();return(e&B0.VERSION_MASK)===B0.VERSION_1},hE=function(t){var e=t.readInt8(oE),r=t.readInt8(sE);return e===dc.PROTOCOL_ID&&(r&dc.VERSION_MASK)===dc.VERSION_N};Ot.prototype.readHeaders=function(){var t=this.inBuf,e=!1;if(wE(t)&&(this.setProtocolId(Ot.SubprotocolId.BINARY),e=!0),hE(t)&&(this.setProtocolId(Ot.SubprotocolId.COMPACT),e=!0),e){this.shouldWriteHeaders=!1;return}var r=t.readInt32BE(aE);if(r>this.maxFrameSize)throw new Ua("Frame exceeds maximum frame size");var n=t.readInt16BE(lE);if(this.shouldWriteHeaders=n===x0,!!this.shouldWriteHeaders){this.setFlags(t.readInt16BE(uE)),this.setSeqId(t.readInt32BE(cE));var i=t.readInt16BE(pE)*4,f=I0+i;if(f>t.length)throw new Ua("Header size is greater than frame size");var o=Buffer.alloc(i);t.copy(o,0,I0,f);var s=new Ei(o);this.setProtocolId(s.readVarint32());var u=s.readVarint32();if(u>0)throw new Ua("Transforms are not yet supported");for(;;)try{var l=s.readVarint32();if(l!==S0)break;for(var c=s.readVarint32(),w=0;w<c;w++){var p=s.readString(),g=s.readString();this.setReadHeader(p,g)}}catch(v){if(v instanceof fE)break;throw v}return this.read(f),this.getReadHeaders()}};Ot.prototype.writeHeaders=function(){if(!!this.shouldWriteHeaders){var t=this.getWriteHeaders(),e=new Ei;e.writeVarint32(this.protocolId),e.writeVarint32(0);var r=Object.keys(t);if(r.length>0){e.writeVarint32(S0),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,u=Buffer.alloc(2);u.writeInt16BE(Math.floor((o+s)/4));var l=Buffer.alloc(s);l.fill(0),e.write(l);var c=e.toBuffer(),w=Buffer.alloc(4);w.writeInt32BE(10+this.outCount+c.length);var p=Buffer.alloc(2);p.writeInt16BE(x0);var g=Buffer.alloc(2);g.writeInt16BE(0);var v=Buffer.alloc(4);v.writeInt32BE(this.getSeqId());var H=Buffer.concat([w,p,g,v,u,c]);this.outBuffers.unshift(H),this.outCount+=H.length}}});var La=k((HU,O0)=>{var mc=uc(),bE=oo(),gE=sw();O0.exports=vt;function vt(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}vt.prototype=new gE;vt.prototype.reset=function(){this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0};vt.receiver=function(t,e){var r=new vt;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)}};vt.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};vt.prototype.rollbackPosition=function(){this.readCursor=0};vt.prototype.isOpen=function(){return!0};vt.prototype.open=function(){};vt.prototype.close=function(){};vt.prototype.setCurrSeqId=function(t){this._seqid=t};vt.prototype.ensureAvailable=function(t){if(this.readCursor+t>this.writeCursor)throw new bE};vt.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};vt.prototype.readByte=function(){return this.ensureAvailable(1),mc.readByte(this.inBuf[this.readCursor++])};vt.prototype.readI16=function(){this.ensureAvailable(2);var t=mc.readI16(this.inBuf,this.readCursor);return this.readCursor+=2,t};vt.prototype.readI32=function(){this.ensureAvailable(4);var t=mc.readI32(this.inBuf,this.readCursor);return this.readCursor+=4,t};vt.prototype.readDouble=function(){this.ensureAvailable(8);var t=mc.readDouble(this.inBuf,this.readCursor);return this.readCursor+=8,t};vt.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readCursor,this.readCursor+t);return this.readCursor+=t,e};vt.prototype.borrow=function(){var t={buf:this.inBuf,readIndex:this.readCursor,writeIndex:this.writeCursor};return t};vt.prototype.consume=function(t){this.readCursor+=t};vt.prototype.write=function(t){typeof t=="string"&&(t=new Buffer(t,"utf8")),this.outBuffers.push(t),this.outCount+=t.length};vt.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 lw=k((MU,P0)=>{var F0=Zr(),D0=P0.exports={},yE=Math.pow(2,24),N0=Math.pow(2,31),aw=Math.pow(2,32),R0=Math.pow(10,11);D0.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),u=e[r+7]+(e[r+6]<<8)+(e[r+5]<<16)+e[r+4]*yE+(e[r+3]+(e[r+2]<<8))*aw+s*74976710656,l=Math.floor(u/R0)+s*2814;return u=("00000000000"+String(u%R0)).slice(-11),(n?"-":"")+String(l)+u};D0.fromDecimalString=function(t){var e=t.charAt(0)==="-";if(t.length<(e?17:16))return new F0(+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/aw)+r*232830;if(n=n%aw,i>=N0&&!(e&&i==N0&&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 F0(i,n)}});var z0=k((LU,M0)=>{var H0=Zr(),zU=lw(),UU=M0.exports=function(){"use strict";var t,e,r={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:`
2
- `,r:"\r",t:" "},n,i=function(g){throw new SyntaxError(g)},f=function(g){return g&&g!==e&&i("Expected '"+g+"' instead of '"+e+"'"),e=n.charAt(t),t+=1,e},o=function(){var g,v="";for(e==="-"&&(v="-",f("-"));e>="0"&&e<="9";)v+=e,f();if(e===".")for(v+=".";f()&&e>="0"&&e<="9";)v+=e;if(e==="e"||e==="E")for(v+=e,f(),(e==="-"||e==="+")&&(v+=e,f());e>="0"&&e<="9";)v+=e,f();if(g=+v,!isFinite(g))i("Bad number");else return g>=H0.MAX_INT||g<=H0.MIN_INT?v:g},s=function(){var g,v,H="",O;if(e==='"')for(;f();){if(e==='"')return f(),H;if(e==="\\")if(f(),e==="u"){for(O=0,v=0;v<4&&(g=parseInt(f(),16),!!isFinite(g));v+=1)O=O*16+g;H+=String.fromCharCode(O)}else if(typeof r[e]=="string")H+=r[e];else break;else H+=e}i("Bad string")},u=function(){for(;e&&e<=" ";)f()},l=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+"'")},c,w=function(){var g=[];if(e==="["){if(f("["),u(),e==="]")return f("]"),g;for(;e;){if(g.push(c()),u(),e==="]")return f("]"),g;f(","),u()}}i("Bad array")},p=function(){var g,v={};if(e==="{"){if(f("{"),u(),e==="}")return f("}"),v;for(;e;){if(g=s(),u(),f(":"),Object.hasOwnProperty.call(v,g)&&i('Duplicate key "'+g+'"'),v[g]=c(),u(),e==="}")return f("}"),v;f(","),u()}}i("Bad object")};return c=function(){switch(u(),e){case"{":return p();case"[":return w();case'"':return s();case"-":return o();default:return e>="0"&&e<="9"?o():l()}},function(g){var v;return n=g,t=0,e=" ",v=c(),u(),e&&i("Syntax error"),v}}()});var Va=k((CU,V0)=>{var uw=Zr(),jE=af(),Le=jE.Type,VU=Ln("util"),U0=lw(),qE=z0(),L0=oo();V0.exports=Y;function Y(t){this.tstack=[],this.tpos=[],this.trans=t}Y.Type={};Y.Type[Le.BOOL]='"tf"';Y.Type[Le.BYTE]='"i8"';Y.Type[Le.I16]='"i16"';Y.Type[Le.I32]='"i32"';Y.Type[Le.I64]='"i64"';Y.Type[Le.DOUBLE]='"dbl"';Y.Type[Le.STRUCT]='"rec"';Y.Type[Le.STRING]='"str"';Y.Type[Le.MAP]='"map"';Y.Type[Le.LIST]='"lst"';Y.Type[Le.SET]='"set"';Y.RType={};Y.RType.tf=Le.BOOL;Y.RType.i8=Le.BYTE;Y.RType.i16=Le.I16;Y.RType.i32=Le.I32;Y.RType.i64=Le.I64;Y.RType.dbl=Le.DOUBLE;Y.RType.rec=Le.STRUCT;Y.RType.str=Le.STRING;Y.RType.map=Le.MAP;Y.RType.lst=Le.LIST;Y.RType.set=Le.SET;Y.Version=1;Y.prototype.flush=function(){return this.writeToTransportIfStackIsFlushable(),this.trans.flush()};Y.prototype.writeToTransportIfStackIsFlushable=function(){this.tstack.length===1&&this.trans.write(this.tstack.pop())};Y.prototype.writeMessageBegin=function(t,e,r){this.tstack.push([Y.Version,'"'+t+'"',e,r])};Y.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)};Y.prototype.writeStructBegin=function(t){this.tpos.push(this.tstack.length),this.tstack.push({})};Y.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()};Y.prototype.writeFieldBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push({fieldId:'"'+r+'"',fieldType:Y.Type[e]})};Y.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()};Y.prototype.writeFieldStop=function(){};Y.prototype.writeMapBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push([Y.Type[t],Y.Type[e],0])};Y.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()}};Y.prototype.writeListBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([Y.Type[t],e])};Y.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()};Y.prototype.writeSetBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([Y.Type[t],e])};Y.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()};Y.prototype.writeBool=function(t){this.tstack.push(t?1:0)};Y.prototype.writeByte=function(t){this.tstack.push(t)};Y.prototype.writeI16=function(t){this.tstack.push(t)};Y.prototype.writeI32=function(t){this.tstack.push(t)};Y.prototype.writeI64=function(t){t instanceof uw?this.tstack.push(U0.toDecimalString(t)):this.tstack.push(t)};Y.prototype.writeDouble=function(t){this.tstack.push(t)};Y.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===`
3
- `?r+="\\n":i==="\r"?r+="\\r":i===" "?r+="\\t":r+=i}this.tstack.push('"'+r+'"')}};Y.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")+'"')};Y.prototype.readMessageBegin=function(){this.rstack=[],this.rpos=[];var t=this.trans.borrow();if(t.readIndex>=t.writeIndex)throw new L0;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 L0;this.robj=qE(t.buf.slice(t.readIndex,e+1).toString()),this.trans.consume(e+1-t.readIndex);var f=this.robj.shift();if(f!=Y.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};Y.prototype.readMessageEnd=function(){};Y.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};Y.prototype.readStructEnd=function(){this.rstack.pop()};Y.prototype.readFieldBegin=function(){var t={},e=-1,r=Le.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])Y.RType[f]!==null&&(r=Y.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};Y.prototype.readFieldEnd=function(){for(var t=this.rpos.pop();this.rstack.length>t;)this.rstack.pop()};Y.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=Y.RType[e],r.vtype=Y.RType[t.shift()],r.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),r};Y.prototype.readMapEnd=function(){this.readFieldEnd()};Y.prototype.readListBegin=function(){var t=this.rstack[this.rstack.length-1],e={};return e.etype=Y.RType[t.shift()],e.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),e};Y.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())};Y.prototype.readSetBegin=function(){return this.readListBegin()};Y.prototype.readSetEnd=function(){return this.readListEnd()};Y.prototype.readBool=function(){return this.readValue()=="1"};Y.prototype.readByte=function(){return this.readI32()};Y.prototype.readI16=function(){return this.readI32()};Y.prototype.readI32=function(t){return+this.readValue()};Y.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 uw)&&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};Y.prototype.readI64=function(){var t=this.readValue();return typeof t=="string"?U0.fromDecimalString(t):new uw(t)};Y.prototype.readDouble=function(){return this.readI32()};Y.prototype.readBinary=function(){return new Buffer(this.readValue(),"base64")};Y.prototype.readString=function(){return this.readValue()};Y.prototype.getTransport=function(){return this.trans};Y.prototype.skip=function(t){switch(t){case Le.BOOL:this.readBool();break;case Le.BYTE:this.readByte();break;case Le.I16:this.readI16();break;case Le.I32:this.readI32();break;case Le.I64:this.readI64();break;case Le.DOUBLE:this.readDouble();break;case Le.STRING:this.readString();break;case Le.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Le.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Le.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Le.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case Le.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 cw=k((WU,C0)=>{C0.exports=_E;function _E(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 W0=k(as=>{"use strict";Object.defineProperty(as,"__esModule",{value:!0});var vE=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},TE=typeof window!="undefined"&&typeof window.document!="undefined",kE=(typeof self=="undefined"?"undefined":vE(self))==="object"&&self.constructor&&self.constructor.name==="DedicatedWorkerGlobalScope",BE=typeof process!="undefined"&&process.versions!=null&&process.versions.node!=null,IE=function(){return typeof window!="undefined"&&window.name==="nodejs"||navigator.userAgent.includes("Node.js")||navigator.userAgent.includes("jsdom")};as.isBrowser=TE;as.isWebWorker=kE;as.isNode=BE;as.isJsDom=IE});var Z0=k(wc=>{var xE=Ln("util"),K0=i0(),Y0=Ym().EventEmitter,G0=af(),SE=La(),EE=Va(),AE=oo(),OE=cw(),FE=W0();wc.WSConnection=br;function br(t,e,r){Y0.call(this),this.options=r||{},this.host=t,this.port=e,this.secure=this.options.secure||!1,this.transport=this.options.transport||SE,this.protocol=this.options.protocol||EE,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]}xE.inherits(br,Y0);br.prototype.__reset=function(){this.socket=null,this.send_pending=[]};br.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=[])};br.prototype.__onClose=function(t){this.emit("close"),this.__reset()};br.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 u=i._reqs[r.rseqid];delete i._reqs[r.rseqid],u&&u(o,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new G0.TApplicationException(G0.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(o){if(o instanceof AE)t.rollbackPosition();else throw o}};br.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)};br.prototype.__onMessage=function(t){this.__onData(t.data)};br.prototype.__onError=function(t){this.emit("error",t),this.socket.close()};br.prototype.isOpen=function(){return this.socket&&this.socket.readyState===this.socket.OPEN};br.prototype.open=function(){this.socket&&this.socket.readyState!==this.socket.CLOSED||(FE.isBrowser?this.socket=new K0(this.uri()):this.socket=new K0(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))};br.prototype.close=function(){this.socket.close()};br.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};br.prototype.write=function(t){this.isOpen()?this.socket.send(t):this.send_pending.push(t)};wc.createWSConnection=function(t,e,r){return new br(t,e,r)};wc.createWSClient=OE});var Q0=k(hc=>{var DE=Ln("util"),NE=Ym().EventEmitter,J0=af(),RE=La(),PE=Va(),HE=oo(),ME=cw();hc.XHRConnection=Ir;function Ir(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||RE,this.protocol=r.protocol||PE,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={}}DE.inherits(Ir,NE);Ir.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."};Ir.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)};Ir.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)};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 u=i._reqs[r.rseqid];delete i._reqs[r.rseqid],u&&u(o,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new J0.TApplicationException(J0.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(o){if(o instanceof HE)t.rollbackPosition();else throw o}};Ir.prototype.isOpen=function(){return!0};Ir.prototype.open=function(){};Ir.prototype.close=function(){};Ir.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};Ir.prototype.readAll=function(){return this.recv_buf};Ir.prototype.write=function(t){this.send_buf=t,this.flush()};Ir.prototype.getSendBuffer=function(){return this.send_buf};hc.createXHRConnection=function(t,e,r){return new Ir(t,e,r)};hc.createXHRClient=ME});var $0=k((X0,pw)=>{(function(t){"use strict";if(typeof bootstrap=="function")bootstrap("promise",t);else if(typeof X0=="object"&&typeof pw=="object")pw.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(h){t=!!h.stack}var e=ue(),r,n=function(){},i=function(){var h={task:void 0,next:null},y=h,I=!1,L=void 0,ce=!1,xe=[];function we(){for(var st,At;h.next;)h=h.next,st=h.task,h.task=void 0,At=h.domain,At&&(h.domain=void 0,At.enter()),ft(st,At);for(;xe.length;)st=xe.pop(),ft(st);I=!1}function ft(st,At){try{st()}catch(nf){if(ce)throw At&&At.exit(),setTimeout(we,0),At&&At.enter(),nf;setTimeout(function(){throw nf},0)}At&&At.exit()}if(i=function(st){y=y.next={task:st,domain:ce&&process.domain,next:null},I||(I=!0,L())},typeof process=="object"&&process.toString()==="[object process]"&&process.nextTick)ce=!0,L=function(){process.nextTick(we)};else if(typeof setImmediate=="function")typeof window!="undefined"?L=setImmediate.bind(window,we):L=function(){setImmediate(we)};else if(typeof MessageChannel!="undefined"){var Xe=new MessageChannel;Xe.port1.onmessage=function(){L=ot,Xe.port1.onmessage=we,we()};var ot=function(){Xe.port2.postMessage(0)};L=function(){setTimeout(we,0),ot()}}else L=function(){setTimeout(we,0)};return i.runAfter=function(st){xe.push(st),I||(I=!0,L())},i}(),f=Function.call;function o(h){return function(){return f.apply(h,arguments)}}var s=o(Array.prototype.slice),u=o(Array.prototype.reduce||function(h,y){var I=0,L=this.length;if(arguments.length===1)do{if(I in this){y=this[I++];break}if(++I>=L)throw new TypeError}while(1);for(;I<L;I++)I in this&&(y=h(y,this[I],I));return y}),l=o(Array.prototype.indexOf||function(h){for(var y=0;y<this.length;y++)if(this[y]===h)return y;return-1}),c=o(Array.prototype.map||function(h,y){var I=this,L=[];return u(I,function(ce,xe,we){L.push(h.call(y,xe,we,I))},void 0),L}),w=Object.create||function(h){function y(){}return y.prototype=h,new y},p=Object.defineProperty||function(h,y,I){return h[y]=I.value,h},g=o(Object.prototype.hasOwnProperty),v=Object.keys||function(h){var y=[];for(var I in h)g(h,I)&&y.push(I);return y},H=o(Object.prototype.toString);function O(h){return h===Object(h)}function C(h){return H(h)==="[object StopIteration]"||h instanceof te}var te;typeof ReturnValue!="undefined"?te=ReturnValue:te=function(h){this.value=h};var M="From previous event:";function z(h,y){if(t&&y.stack&&typeof h=="object"&&h!==null&&h.stack){for(var I=[],L=y;L;L=L.source)L.stack&&(!h.__minimumStackCounter__||h.__minimumStackCounter__>L.stackCounter)&&(p(h,"__minimumStackCounter__",{value:L.stackCounter,configurable:!0}),I.unshift(L.stack));I.unshift(h.stack);var ce=I.join(`
4
- `+M+`
1
+ (()=>{var dS=Object.create;var Zu=Object.defineProperty;var mS=Object.getOwnPropertyDescriptor;var wS=Object.getOwnPropertyNames;var hS=Object.getPrototypeOf,bS=Object.prototype.hasOwnProperty;var Vj=t=>Zu(t,"__esModule",{value:!0});var Ln=(t=>typeof require!="undefined"?require:typeof Proxy!="undefined"?new Proxy(t,{get:(e,r)=>(typeof require!="undefined"?require:e)[r]}):t)(function(t){if(typeof require!="undefined")return require.apply(this,arguments);throw new Error('Dynamic require of "'+t+'" is not supported')});var k=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),gS=(t,e)=>{Vj(t);for(var r in e)Zu(t,r,{get:e[r],enumerable:!0})},yS=(t,e,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of wS(e))!bS.call(t,n)&&n!=="default"&&Zu(t,n,{get:()=>e[n],enumerable:!(r=mS(e,n))||r.enumerable});return t},de=t=>yS(Vj(Zu(t!=null?dS(hS(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var Xj=k((wU,Qj)=>{var Ii={},Ra=4294967295,FS=9007199254740991;function Qu(t){return t=~t,t<0&&(t=(t&2147483647)+2147483648),t}function Xu(t){console.assert(t>-1&&t<=FS,"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>Ra&&(e=(t-n)/(Ra+1)),[e,n]}function Jj(t){if(t>-1)return Xu(t);var e=Xu(-t),r=Qu(e[0]),n=Qu(e[1]);return n===Ra?(r+=1,n=0):n+=1,[r,n]}function $u(t,e,r){return r&&(t&2147483648)!=0?(t=Qu(t),e=Qu(e),console.assert(t<2097152,"number too small"),-(t*(Ra+1)+e+1)):(console.assert(t<2097152,"number too large"),t*(Ra+1)+e)}Ii.readInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return $u(r,n,!0)};Ii.readInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return $u(n,r,!0)};Ii.readUInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return $u(r,n,!1)};Ii.readUInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return $u(n,r,!1)};Ii.writeInt64BE=function(t,e,r){r=r||0;var n=Jj(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Ii.writeInt64LE=function(t,e,r){r=r||0;var n=Jj(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Ii.writeUInt64BE=function(t,e,r){r=r||0;var n=Xu(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Ii.writeUInt64LE=function(t,e,r){r=r||0;var n=Xu(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Qj.exports=Ii});var i0=k((bU,n0)=>{n0.exports=r0;var t0=128,JS=127,QS=~JS,XS=Math.pow(2,31);function r0(t,e,r){e=e||[],r=r||0;for(var n=r;t>=XS;)e[r++]=t&255|t0,t/=128;for(;t&QS;)e[r++]=t&255|t0,t>>>=7;return e[r]=t|0,r0.bytes=r-n+1,e}});var s0=k((gU,o0)=>{o0.exports=Mm;var $S=128,f0=127;function Mm(t,e){var r=0,e=e||0,n=0,i=e,f,o=t.length;do{if(i>=o)throw Mm.bytes=0,new RangeError("Could not decode varint");f=t[i++],r+=n<28?(f&f0)<<n:(f&f0)*Math.pow(2,n),n+=7}while(f>=$S);return Mm.bytes=i-e,r}});var l0=k((yU,a0)=>{var eE=Math.pow(2,7),tE=Math.pow(2,14),rE=Math.pow(2,21),nE=Math.pow(2,28),iE=Math.pow(2,35),fE=Math.pow(2,42),oE=Math.pow(2,49),sE=Math.pow(2,56),aE=Math.pow(2,63);a0.exports=function(t){return t<eE?1:t<tE?2:t<rE?3:t<nE?4:t<iE?5:t<fE?6:t<oE?7:t<sE?8:t<aE?9:10}});var c0=k((jU,u0)=>{u0.exports={encode:i0(),decode:s0(),encodingLength:l0()}});var xi=k(gr=>{"use strict";var cE=typeof Uint8Array!="undefined"&&typeof Uint16Array!="undefined"&&typeof Int32Array!="undefined";function pE(t,e){return Object.prototype.hasOwnProperty.call(t,e)}gr.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)pE(r,n)&&(t[n]=r[n])}}return t};gr.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var dE={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}},mE={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)}};gr.setTyped=function(t){t?(gr.Buf8=Uint8Array,gr.Buf16=Uint16Array,gr.Buf32=Int32Array,gr.assign(gr,dE)):(gr.Buf8=Array,gr.Buf16=Array,gr.Buf32=Array,gr.assign(gr,mE))};gr.setTyped(cE)});var P0=k(ns=>{"use strict";var wE=xi(),hE=4,w0=0,h0=1,bE=2;function ts(t){for(var e=t.length;--e>=0;)t[e]=0}var gE=0,b0=1,yE=2,jE=3,qE=258,Lm=29,Ma=256,za=Ma+1+Lm,rs=30,Vm=19,g0=2*za+1,fo=15,Cm=16,_E=7,Wm=256,y0=16,j0=17,q0=18,Km=[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],rc=[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],vE=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],_0=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],TE=512,Si=new Array((za+2)*2);ts(Si);var Ua=new Array(rs*2);ts(Ua);var La=new Array(TE);ts(La);var Va=new Array(qE-jE+1);ts(Va);var Ym=new Array(Lm);ts(Ym);var nc=new Array(rs);ts(nc);function Gm(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 v0,T0,k0;function Zm(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function B0(t){return t<256?La[t]:La[256+(t>>>7)]}function Ca(t,e){t.pending_buf[t.pending++]=e&255,t.pending_buf[t.pending++]=e>>>8&255}function Br(t,e,r){t.bi_valid>Cm-r?(t.bi_buf|=e<<t.bi_valid&65535,Ca(t,t.bi_buf),t.bi_buf=e>>Cm-t.bi_valid,t.bi_valid+=r-Cm):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=r)}function Wn(t,e,r){Br(t,r[e*2],r[e*2+1])}function I0(t,e){var r=0;do r|=t&1,t>>>=1,r<<=1;while(--e>0);return r>>>1}function kE(t){t.bi_valid===16?(Ca(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 BE(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,u=e.stat_desc.max_length,l,c,w,p,g,T,L=0;for(p=0;p<=fo;p++)t.bl_count[p]=0;for(r[t.heap[t.heap_max]*2+1]=0,l=t.heap_max+1;l<g0;l++)c=t.heap[l],p=r[r[c*2+1]*2+1]+1,p>u&&(p=u,L++),r[c*2+1]=p,!(c>n)&&(t.bl_count[p]++,g=0,c>=s&&(g=o[c-s]),T=r[c*2],t.opt_len+=T*(p+g),f&&(t.static_len+=T*(i[c*2+1]+g)));if(L!==0){do{for(p=u-1;t.bl_count[p]===0;)p--;t.bl_count[p]--,t.bl_count[p+1]+=2,t.bl_count[u]--,L-=2}while(L>0);for(p=u;p!==0;p--)for(c=t.bl_count[p];c!==0;)w=t.heap[--l],!(w>n)&&(r[w*2+1]!==p&&(t.opt_len+=(p-r[w*2+1])*r[w*2],r[w*2+1]=p),c--)}}function x0(t,e,r){var n=new Array(fo+1),i=0,f,o;for(f=1;f<=fo;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]=I0(n[s]++,s))}}function IE(){var t,e,r,n,i,f=new Array(fo+1);for(r=0,n=0;n<Lm-1;n++)for(Ym[n]=r,t=0;t<1<<Km[n];t++)Va[r++]=n;for(Va[r-1]=n,i=0,n=0;n<16;n++)for(nc[n]=i,t=0;t<1<<rc[n];t++)La[i++]=n;for(i>>=7;n<rs;n++)for(nc[n]=i<<7,t=0;t<1<<rc[n]-7;t++)La[256+i++]=n;for(e=0;e<=fo;e++)f[e]=0;for(t=0;t<=143;)Si[t*2+1]=8,t++,f[8]++;for(;t<=255;)Si[t*2+1]=9,t++,f[9]++;for(;t<=279;)Si[t*2+1]=7,t++,f[7]++;for(;t<=287;)Si[t*2+1]=8,t++,f[8]++;for(x0(Si,za+1,f),t=0;t<rs;t++)Ua[t*2+1]=5,Ua[t*2]=I0(t,5);v0=new Gm(Si,Km,Ma+1,za,fo),T0=new Gm(Ua,rc,0,rs,fo),k0=new Gm(new Array(0),vE,0,Vm,_E)}function S0(t){var e;for(e=0;e<za;e++)t.dyn_ltree[e*2]=0;for(e=0;e<rs;e++)t.dyn_dtree[e*2]=0;for(e=0;e<Vm;e++)t.bl_tree[e*2]=0;t.dyn_ltree[Wm*2]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function E0(t){t.bi_valid>8?Ca(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 xE(t,e,r,n){E0(t),n&&(Ca(t,r),Ca(t,~r)),wE.arraySet(t.pending_buf,t.window,e,r,t.pending),t.pending+=r}function A0(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 Jm(t,e,r){for(var n=t.heap[r],i=r<<1;i<=t.heap_len&&(i<t.heap_len&&A0(e,t.heap[i+1],t.heap[i],t.depth)&&i++,!A0(e,n,t.heap[i],t.depth));)t.heap[r]=t.heap[i],r=i,i<<=1;t.heap[r]=n}function O0(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?Wn(t,i,e):(o=Va[i],Wn(t,o+Ma+1,e),s=Km[o],s!==0&&(i-=Ym[o],Br(t,i,s)),n--,o=B0(n),Wn(t,o,r),s=rc[o],s!==0&&(n-=nc[o],Br(t,n,s)));while(f<t.last_lit);Wn(t,Wm,e)}function Qm(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,u=-1,l;for(t.heap_len=0,t.heap_max=g0,o=0;o<f;o++)r[o*2]!==0?(t.heap[++t.heap_len]=u=o,t.depth[o]=0):r[o*2+1]=0;for(;t.heap_len<2;)l=t.heap[++t.heap_len]=u<2?++u:0,r[l*2]=1,t.depth[l]=0,t.opt_len--,i&&(t.static_len-=n[l*2+1]);for(e.max_code=u,o=t.heap_len>>1;o>=1;o--)Jm(t,r,o);l=f;do o=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Jm(t,r,1),s=t.heap[1],t.heap[--t.heap_max]=o,t.heap[--t.heap_max]=s,r[l*2]=r[o*2]+r[s*2],t.depth[l]=(t.depth[o]>=t.depth[s]?t.depth[o]:t.depth[s])+1,r[o*2+1]=r[s*2+1]=l,t.heap[1]=l++,Jm(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],BE(t,e),x0(r,u,t.bl_count)}function F0(t,e,r){var n,i=-1,f,o=e[0*2+1],s=0,u=7,l=4;for(o===0&&(u=138,l=3),e[(r+1)*2+1]=65535,n=0;n<=r;n++)f=o,o=e[(n+1)*2+1],!(++s<u&&f===o)&&(s<l?t.bl_tree[f*2]+=s:f!==0?(f!==i&&t.bl_tree[f*2]++,t.bl_tree[y0*2]++):s<=10?t.bl_tree[j0*2]++:t.bl_tree[q0*2]++,s=0,i=f,o===0?(u=138,l=3):f===o?(u=6,l=3):(u=7,l=4))}function D0(t,e,r){var n,i=-1,f,o=e[0*2+1],s=0,u=7,l=4;for(o===0&&(u=138,l=3),n=0;n<=r;n++)if(f=o,o=e[(n+1)*2+1],!(++s<u&&f===o)){if(s<l)do Wn(t,f,t.bl_tree);while(--s!=0);else f!==0?(f!==i&&(Wn(t,f,t.bl_tree),s--),Wn(t,y0,t.bl_tree),Br(t,s-3,2)):s<=10?(Wn(t,j0,t.bl_tree),Br(t,s-3,3)):(Wn(t,q0,t.bl_tree),Br(t,s-11,7));s=0,i=f,o===0?(u=138,l=3):f===o?(u=6,l=3):(u=7,l=4)}}function SE(t){var e;for(F0(t,t.dyn_ltree,t.l_desc.max_code),F0(t,t.dyn_dtree,t.d_desc.max_code),Qm(t,t.bl_desc),e=Vm-1;e>=3&&t.bl_tree[_0[e]*2+1]===0;e--);return t.opt_len+=3*(e+1)+5+5+4,e}function EE(t,e,r,n){var i;for(Br(t,e-257,5),Br(t,r-1,5),Br(t,n-4,4),i=0;i<n;i++)Br(t,t.bl_tree[_0[i]*2+1],3);D0(t,t.dyn_ltree,e-1),D0(t,t.dyn_dtree,r-1)}function AE(t){var e=4093624447,r;for(r=0;r<=31;r++,e>>>=1)if(e&1&&t.dyn_ltree[r*2]!==0)return w0;if(t.dyn_ltree[9*2]!==0||t.dyn_ltree[10*2]!==0||t.dyn_ltree[13*2]!==0)return h0;for(r=32;r<Ma;r++)if(t.dyn_ltree[r*2]!==0)return h0;return w0}var N0=!1;function OE(t){N0||(IE(),N0=!0),t.l_desc=new Zm(t.dyn_ltree,v0),t.d_desc=new Zm(t.dyn_dtree,T0),t.bl_desc=new Zm(t.bl_tree,k0),t.bi_buf=0,t.bi_valid=0,S0(t)}function R0(t,e,r,n){Br(t,(gE<<1)+(n?1:0),3),xE(t,e,r,!0)}function FE(t){Br(t,b0<<1,3),Wn(t,Wm,Si),kE(t)}function DE(t,e,r,n){var i,f,o=0;t.level>0?(t.strm.data_type===bE&&(t.strm.data_type=AE(t)),Qm(t,t.l_desc),Qm(t,t.d_desc),o=SE(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?R0(t,e,r,n):t.strategy===hE||f===i?(Br(t,(b0<<1)+(n?1:0),3),O0(t,Si,Ua)):(Br(t,(yE<<1)+(n?1:0),3),EE(t,t.l_desc.max_code+1,t.d_desc.max_code+1,o+1),O0(t,t.dyn_ltree,t.dyn_dtree)),S0(t),n&&E0(t)}function NE(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[(Va[r]+Ma+1)*2]++,t.dyn_dtree[B0(e)*2]++),t.last_lit===t.lit_bufsize-1}ns._tr_init=OE;ns._tr_stored_block=R0;ns._tr_flush_block=DE;ns._tr_tally=NE;ns._tr_align=FE});var Xm=k((NU,H0)=>{"use strict";function RE(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}H0.exports=RE});var $m=k((RU,M0)=>{"use strict";function PE(){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 HE=PE();function ME(t,e,r,n){var i=HE,f=n+r;t^=-1;for(var o=n;o<f;o++)t=t>>>8^i[(t^e[o])&255];return t^-1}M0.exports=ME});var ic=k((PU,z0)=>{"use strict";z0.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 Z0=k(Gn=>{"use strict";var yr=xi(),Zr=P0(),U0=Xm(),af=$m(),zE=ic(),oo=0,UE=1,LE=3,lf=4,L0=5,Kn=0,V0=1,Jr=-2,VE=-3,ew=-5,CE=-1,WE=1,fc=2,KE=3,YE=4,GE=0,ZE=2,oc=8,JE=9,QE=15,XE=8,$E=29,eA=256,tw=eA+1+$E,tA=30,rA=19,nA=2*tw+1,iA=15,Le=3,uf=258,Sn=uf+Le+1,fA=32,sc=42,rw=69,ac=73,lc=91,uc=103,so=113,Wa=666,Yt=1,Ka=2,ao=3,is=4,oA=3;function cf(t,e){return t.msg=zE[e],e}function C0(t){return(t<<1)-(t>4?9:0)}function pf(t){for(var e=t.length;--e>=0;)t[e]=0}function df(t){var e=t.state,r=e.pending;r>t.avail_out&&(r=t.avail_out),r!==0&&(yr.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 nr(t,e){Zr._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,df(t.strm)}function Je(t,e){t.pending_buf[t.pending++]=e}function Ya(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=e&255}function sA(t,e,r,n){var i=t.avail_in;return i>n&&(i=n),i===0?0:(t.avail_in-=i,yr.arraySet(e,t.input,t.next_in,i,r),t.state.wrap===1?t.adler=U0(t.adler,e,i,r):t.state.wrap===2&&(t.adler=af(t.adler,e,i,r)),t.next_in+=i,t.total_in+=i,i)}function W0(t,e){var r=t.max_chain_length,n=t.strstart,i,f,o=t.prev_length,s=t.nice_match,u=t.strstart>t.w_size-Sn?t.strstart-(t.w_size-Sn):0,l=t.window,c=t.w_mask,w=t.prev,p=t.strstart+uf,g=l[n+o-1],T=l[n+o];t.prev_length>=t.good_match&&(r>>=2),s>t.lookahead&&(s=t.lookahead);do if(i=e,!(l[i+o]!==T||l[i+o-1]!==g||l[i]!==l[n]||l[++i]!==l[n+1])){n+=2,i++;do;while(l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&n<p);if(f=uf-(p-n),n=p-uf,f>o){if(t.match_start=e,o=f,f>=s)break;g=l[n+o-1],T=l[n+o]}}while((e=w[e&c])>u&&--r!=0);return o<=t.lookahead?o:t.lookahead}function lo(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-Sn)){yr.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=sA(t.strm,t.window,t.strstart+t.lookahead,f),t.lookahead+=n,t.lookahead+t.insert>=Le)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+Le-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<Le)););}while(t.lookahead<Sn&&t.strm.avail_in!==0)}function aA(t,e){var r=65535;for(r>t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(lo(t),t.lookahead===0&&e===oo)return Yt;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,nr(t,!1),t.strm.avail_out===0)||t.strstart-t.block_start>=t.w_size-Sn&&(nr(t,!1),t.strm.avail_out===0))return Yt}return t.insert=0,e===lf?(nr(t,!0),t.strm.avail_out===0?ao:is):(t.strstart>t.block_start&&(nr(t,!1),t.strm.avail_out===0),Yt)}function nw(t,e){for(var r,n;;){if(t.lookahead<Sn){if(lo(t),t.lookahead<Sn&&e===oo)return Yt;if(t.lookahead===0)break}if(r=0,t.lookahead>=Le&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Le-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-Sn&&(t.match_length=W0(t,r)),t.match_length>=Le)if(n=Zr._tr_tally(t,t.strstart-t.match_start,t.match_length-Le),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=Le){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Le-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=Zr._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(n&&(nr(t,!1),t.strm.avail_out===0))return Yt}return t.insert=t.strstart<Le-1?t.strstart:Le-1,e===lf?(nr(t,!0),t.strm.avail_out===0?ao:is):t.last_lit&&(nr(t,!1),t.strm.avail_out===0)?Yt:Ka}function fs(t,e){for(var r,n,i;;){if(t.lookahead<Sn){if(lo(t),t.lookahead<Sn&&e===oo)return Yt;if(t.lookahead===0)break}if(r=0,t.lookahead>=Le&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Le-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=Le-1,r!==0&&t.prev_length<t.max_lazy_match&&t.strstart-r<=t.w_size-Sn&&(t.match_length=W0(t,r),t.match_length<=5&&(t.strategy===WE||t.match_length===Le&&t.strstart-t.match_start>4096)&&(t.match_length=Le-1)),t.prev_length>=Le&&t.match_length<=t.prev_length){i=t.strstart+t.lookahead-Le,n=Zr._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-Le),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+Le-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=Le-1,t.strstart++,n&&(nr(t,!1),t.strm.avail_out===0))return Yt}else if(t.match_available){if(n=Zr._tr_tally(t,0,t.window[t.strstart-1]),n&&nr(t,!1),t.strstart++,t.lookahead--,t.strm.avail_out===0)return Yt}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(n=Zr._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<Le-1?t.strstart:Le-1,e===lf?(nr(t,!0),t.strm.avail_out===0?ao:is):t.last_lit&&(nr(t,!1),t.strm.avail_out===0)?Yt:Ka}function lA(t,e){for(var r,n,i,f,o=t.window;;){if(t.lookahead<=uf){if(lo(t),t.lookahead<=uf&&e===oo)return Yt;if(t.lookahead===0)break}if(t.match_length=0,t.lookahead>=Le&&t.strstart>0&&(i=t.strstart-1,n=o[i],n===o[++i]&&n===o[++i]&&n===o[++i])){f=t.strstart+uf;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=uf-(f-i),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=Le?(r=Zr._tr_tally(t,1,t.match_length-Le),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=Zr._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(nr(t,!1),t.strm.avail_out===0))return Yt}return t.insert=0,e===lf?(nr(t,!0),t.strm.avail_out===0?ao:is):t.last_lit&&(nr(t,!1),t.strm.avail_out===0)?Yt:Ka}function uA(t,e){for(var r;;){if(t.lookahead===0&&(lo(t),t.lookahead===0)){if(e===oo)return Yt;break}if(t.match_length=0,r=Zr._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(nr(t,!1),t.strm.avail_out===0))return Yt}return t.insert=0,e===lf?(nr(t,!0),t.strm.avail_out===0?ao:is):t.last_lit&&(nr(t,!1),t.strm.avail_out===0)?Yt:Ka}function Yn(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 os;os=[new Yn(0,0,0,0,aA),new Yn(4,4,8,4,nw),new Yn(4,5,16,8,nw),new Yn(4,6,32,32,nw),new Yn(4,4,16,16,fs),new Yn(8,16,32,32,fs),new Yn(8,16,128,128,fs),new Yn(8,32,128,256,fs),new Yn(32,128,258,1024,fs),new Yn(32,258,258,4096,fs)];function cA(t){t.window_size=2*t.w_size,pf(t.head),t.max_lazy_match=os[t.level].max_lazy,t.good_match=os[t.level].good_length,t.nice_match=os[t.level].nice_length,t.max_chain_length=os[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=Le-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=oc,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 yr.Buf16(nA*2),this.dyn_dtree=new yr.Buf16((2*tA+1)*2),this.bl_tree=new yr.Buf16((2*rA+1)*2),pf(this.dyn_ltree),pf(this.dyn_dtree),pf(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new yr.Buf16(iA+1),this.heap=new yr.Buf16(2*tw+1),pf(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new yr.Buf16(2*tw+1),pf(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 K0(t){var e;return!t||!t.state?cf(t,Jr):(t.total_in=t.total_out=0,t.data_type=ZE,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?sc:so,t.adler=e.wrap===2?0:1,e.last_flush=oo,Zr._tr_init(e),Kn)}function Y0(t){var e=K0(t);return e===Kn&&cA(t.state),e}function dA(t,e){return!t||!t.state||t.state.wrap!==2?Jr:(t.state.gzhead=e,Kn)}function G0(t,e,r,n,i,f){if(!t)return Jr;var o=1;if(e===CE&&(e=6),n<0?(o=0,n=-n):n>15&&(o=2,n-=16),i<1||i>JE||r!==oc||n<8||n>15||e<0||e>9||f<0||f>YE)return cf(t,Jr);n===8&&(n=9);var s=new pA;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+Le-1)/Le),s.window=new yr.Buf8(s.w_size*2),s.head=new yr.Buf16(s.hash_size),s.prev=new yr.Buf16(s.w_size),s.lit_bufsize=1<<i+6,s.pending_buf_size=s.lit_bufsize*4,s.pending_buf=new yr.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,Y0(t)}function mA(t,e){return G0(t,e,oc,QE,XE,GE)}function wA(t,e){var r,n,i,f;if(!t||!t.state||e>L0||e<0)return t?cf(t,Jr):Jr;if(n=t.state,!t.output||!t.input&&t.avail_in!==0||n.status===Wa&&e!==lf)return cf(t,t.avail_out===0?ew:Jr);if(n.strm=t,r=n.last_flush,n.last_flush=e,n.status===sc)if(n.wrap===2)t.adler=0,Je(n,31),Je(n,139),Je(n,8),n.gzhead?(Je(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)),Je(n,n.gzhead.time&255),Je(n,n.gzhead.time>>8&255),Je(n,n.gzhead.time>>16&255),Je(n,n.gzhead.time>>24&255),Je(n,n.level===9?2:n.strategy>=fc||n.level<2?4:0),Je(n,n.gzhead.os&255),n.gzhead.extra&&n.gzhead.extra.length&&(Je(n,n.gzhead.extra.length&255),Je(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(t.adler=af(t.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=rw):(Je(n,0),Je(n,0),Je(n,0),Je(n,0),Je(n,0),Je(n,n.level===9?2:n.strategy>=fc||n.level<2?4:0),Je(n,oA),n.status=so);else{var o=oc+(n.w_bits-8<<4)<<8,s=-1;n.strategy>=fc||n.level<2?s=0:n.level<6?s=1:n.level===6?s=2:s=3,o|=s<<6,n.strstart!==0&&(o|=fA),o+=31-o%31,n.status=so,Ya(n,o),n.strstart!==0&&(Ya(n,t.adler>>>16),Ya(n,t.adler&65535)),t.adler=1}if(n.status===rw)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=af(t.adler,n.pending_buf,n.pending-i,i)),df(t),i=n.pending,n.pending===n.pending_buf_size));)Je(n,n.gzhead.extra[n.gzindex]&255),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(t.adler=af(t.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=ac)}else n.status=ac;if(n.status===ac)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=af(t.adler,n.pending_buf,n.pending-i,i)),df(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,Je(n,f)}while(f!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=af(t.adler,n.pending_buf,n.pending-i,i)),f===0&&(n.gzindex=0,n.status=lc)}else n.status=lc;if(n.status===lc)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=af(t.adler,n.pending_buf,n.pending-i,i)),df(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,Je(n,f)}while(f!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=af(t.adler,n.pending_buf,n.pending-i,i)),f===0&&(n.status=uc)}else n.status=uc;if(n.status===uc&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&df(t),n.pending+2<=n.pending_buf_size&&(Je(n,t.adler&255),Je(n,t.adler>>8&255),t.adler=0,n.status=so)):n.status=so),n.pending!==0){if(df(t),t.avail_out===0)return n.last_flush=-1,Kn}else if(t.avail_in===0&&C0(e)<=C0(r)&&e!==lf)return cf(t,ew);if(n.status===Wa&&t.avail_in!==0)return cf(t,ew);if(t.avail_in!==0||n.lookahead!==0||e!==oo&&n.status!==Wa){var u=n.strategy===fc?uA(n,e):n.strategy===KE?lA(n,e):os[n.level].func(n,e);if((u===ao||u===is)&&(n.status=Wa),u===Yt||u===ao)return t.avail_out===0&&(n.last_flush=-1),Kn;if(u===Ka&&(e===UE?Zr._tr_align(n):e!==L0&&(Zr._tr_stored_block(n,0,0,!1),e===LE&&(pf(n.head),n.lookahead===0&&(n.strstart=0,n.block_start=0,n.insert=0))),df(t),t.avail_out===0))return n.last_flush=-1,Kn}return e!==lf?Kn:n.wrap<=0?V0:(n.wrap===2?(Je(n,t.adler&255),Je(n,t.adler>>8&255),Je(n,t.adler>>16&255),Je(n,t.adler>>24&255),Je(n,t.total_in&255),Je(n,t.total_in>>8&255),Je(n,t.total_in>>16&255),Je(n,t.total_in>>24&255)):(Ya(n,t.adler>>>16),Ya(n,t.adler&65535)),df(t),n.wrap>0&&(n.wrap=-n.wrap),n.pending!==0?Kn:V0)}function hA(t){var e;return!t||!t.state?Jr:(e=t.state.status,e!==sc&&e!==rw&&e!==ac&&e!==lc&&e!==uc&&e!==so&&e!==Wa?cf(t,Jr):(t.state=null,e===so?cf(t,VE):Kn))}function bA(t,e){var r=e.length,n,i,f,o,s,u,l,c;if(!t||!t.state||(n=t.state,o=n.wrap,o===2||o===1&&n.status!==sc||n.lookahead))return Jr;for(o===1&&(t.adler=U0(t.adler,e,r,0)),n.wrap=0,r>=n.w_size&&(o===0&&(pf(n.head),n.strstart=0,n.block_start=0,n.insert=0),c=new yr.Buf8(n.w_size),yr.arraySet(c,e,r-n.w_size,n.w_size,0),e=c,r=n.w_size),s=t.avail_in,u=t.next_in,l=t.input,t.avail_in=r,t.next_in=0,t.input=e,lo(n);n.lookahead>=Le;){i=n.strstart,f=n.lookahead-(Le-1);do n.ins_h=(n.ins_h<<n.hash_shift^n.window[i+Le-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=Le-1,lo(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=Le-1,n.match_available=0,t.next_in=u,t.input=l,t.avail_in=s,n.wrap=o,Kn}Gn.deflateInit=mA;Gn.deflateInit2=G0;Gn.deflateReset=Y0;Gn.deflateResetKeep=K0;Gn.deflateSetHeader=dA;Gn.deflate=wA;Gn.deflateEnd=hA;Gn.deflateSetDictionary=bA;Gn.deflateInfo="pako deflate (from Nodeca project)"});var iw=k(ss=>{"use strict";var cc=xi(),J0=!0,Q0=!0;try{String.fromCharCode.apply(null,[0])}catch{J0=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{Q0=!1}var Ga=new cc.Buf8(256);for(Ei=0;Ei<256;Ei++)Ga[Ei]=Ei>=252?6:Ei>=248?5:Ei>=240?4:Ei>=224?3:Ei>=192?2:1;var Ei;Ga[254]=Ga[254]=1;ss.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 cc.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 X0(t,e){if(e<65534&&(t.subarray&&Q0||!t.subarray&&J0))return String.fromCharCode.apply(null,cc.shrinkBuf(t,e));for(var r="",n=0;n<e;n++)r+=String.fromCharCode(t[n]);return r}ss.buf2binstring=function(t){return X0(t,t.length)};ss.binstring2buf=function(t){for(var e=new cc.Buf8(t.length),r=0,n=e.length;r<n;r++)e[r]=t.charCodeAt(r);return e};ss.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=Ga[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 X0(s,n)};ss.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+Ga[t[r]]>e?r:e}});var fw=k((zU,$0)=>{"use strict";function gA(){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}$0.exports=gA});var nq=k(Qa=>{"use strict";var Za=Z0(),Ja=xi(),ow=iw(),sw=ic(),yA=fw(),eq=Object.prototype.toString,jA=0,aw=4,as=0,tq=1,rq=2,qA=-1,_A=0,vA=8;function uo(t){if(!(this instanceof uo))return new uo(t);this.options=Ja.assign({level:qA,method:vA,chunkSize:16384,windowBits:15,memLevel:8,strategy:_A,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 yA,this.strm.avail_out=0;var r=Za.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(r!==as)throw new Error(sw[r]);if(e.header&&Za.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(typeof e.dictionary=="string"?n=ow.string2buf(e.dictionary):eq.call(e.dictionary)==="[object ArrayBuffer]"?n=new Uint8Array(e.dictionary):n=e.dictionary,r=Za.deflateSetDictionary(this.strm,n),r!==as)throw new Error(sw[r]);this._dict_set=!0}}uo.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?aw:jA,typeof t=="string"?r.input=ow.string2buf(t):eq.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 Ja.Buf8(n),r.next_out=0,r.avail_out=n),i=Za.deflate(r,f),i!==tq&&i!==as)return this.onEnd(i),this.ended=!0,!1;(r.avail_out===0||r.avail_in===0&&(f===aw||f===rq))&&(this.options.to==="string"?this.onData(ow.buf2binstring(Ja.shrinkBuf(r.output,r.next_out))):this.onData(Ja.shrinkBuf(r.output,r.next_out)))}while((r.avail_in>0||r.avail_out===0)&&i!==tq);return f===aw?(i=Za.deflateEnd(this.strm),this.onEnd(i),this.ended=!0,i===as):(f===rq&&(this.onEnd(as),r.avail_out=0),!0)};uo.prototype.onData=function(t){this.chunks.push(t)};uo.prototype.onEnd=function(t){t===as&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=Ja.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function lw(t,e){var r=new uo(e);if(r.push(t,!0),r.err)throw r.msg||sw[r.err];return r.result}function TA(t,e){return e=e||{},e.raw=!0,lw(t,e)}function kA(t,e){return e=e||{},e.gzip=!0,lw(t,e)}Qa.Deflate=uo;Qa.deflate=lw;Qa.deflateRaw=TA;Qa.gzip=kA});var fq=k((LU,iq)=>{"use strict";var pc=30,BA=12;iq.exports=function(e,r){var n,i,f,o,s,u,l,c,w,p,g,T,L,O,C,te,H,M,R,F,oe,re,ue,Ye,q;n=e.state,i=e.next_in,Ye=e.input,f=i+(e.avail_in-5),o=e.next_out,q=e.output,s=o-(r-e.avail_out),u=o+(e.avail_out-257),l=n.dmax,c=n.wsize,w=n.whave,p=n.wnext,g=n.window,T=n.hold,L=n.bits,O=n.lencode,C=n.distcode,te=(1<<n.lenbits)-1,H=(1<<n.distbits)-1;e:do{L<15&&(T+=Ye[i++]<<L,L+=8,T+=Ye[i++]<<L,L+=8),M=O[T&te];t:for(;;){if(R=M>>>24,T>>>=R,L-=R,R=M>>>16&255,R===0)q[o++]=M&65535;else if(R&16){F=M&65535,R&=15,R&&(L<R&&(T+=Ye[i++]<<L,L+=8),F+=T&(1<<R)-1,T>>>=R,L-=R),L<15&&(T+=Ye[i++]<<L,L+=8,T+=Ye[i++]<<L,L+=8),M=C[T&H];r:for(;;){if(R=M>>>24,T>>>=R,L-=R,R=M>>>16&255,R&16){if(oe=M&65535,R&=15,L<R&&(T+=Ye[i++]<<L,L+=8,L<R&&(T+=Ye[i++]<<L,L+=8)),oe+=T&(1<<R)-1,oe>l){e.msg="invalid distance too far back",n.mode=pc;break e}if(T>>>=R,L-=R,R=o-s,oe>R){if(R=oe-R,R>w&&n.sane){e.msg="invalid distance too far back",n.mode=pc;break e}if(re=0,ue=g,p===0){if(re+=c-R,R<F){F-=R;do q[o++]=g[re++];while(--R);re=o-oe,ue=q}}else if(p<R){if(re+=c+p-R,R-=p,R<F){F-=R;do q[o++]=g[re++];while(--R);if(re=0,p<F){R=p,F-=R;do q[o++]=g[re++];while(--R);re=o-oe,ue=q}}}else if(re+=p-R,R<F){F-=R;do q[o++]=g[re++];while(--R);re=o-oe,ue=q}for(;F>2;)q[o++]=ue[re++],q[o++]=ue[re++],q[o++]=ue[re++],F-=3;F&&(q[o++]=ue[re++],F>1&&(q[o++]=ue[re++]))}else{re=o-oe;do q[o++]=q[re++],q[o++]=q[re++],q[o++]=q[re++],F-=3;while(F>2);F&&(q[o++]=q[re++],F>1&&(q[o++]=q[re++]))}}else if((R&64)==0){M=C[(M&65535)+(T&(1<<R)-1)];continue r}else{e.msg="invalid distance code",n.mode=pc;break e}break}}else if((R&64)==0){M=O[(M&65535)+(T&(1<<R)-1)];continue t}else if(R&32){n.mode=BA;break e}else{e.msg="invalid literal/length code",n.mode=pc;break e}break}}while(i<f&&o<u);F=L>>3,i-=F,L-=F<<3,T&=(1<<L)-1,e.next_in=i,e.next_out=o,e.avail_in=i<f?5+(f-i):5-(i-f),e.avail_out=o<u?257+(u-o):257-(o-u),n.hold=T,n.bits=L}});var pq=k((VU,cq)=>{"use strict";var oq=xi(),ls=15,sq=852,aq=592,lq=0,uw=1,uq=2,IA=[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],xA=[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],SA=[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],EA=[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];cq.exports=function(e,r,n,i,f,o,s,u){var l=u.bits,c=0,w=0,p=0,g=0,T=0,L=0,O=0,C=0,te=0,H=0,M,R,F,oe,re,ue=null,Ye=0,q,Ae=new oq.Buf16(ls+1),Ue=new oq.Buf16(ls+1),he=null,Ge=0,$,qt,nt;for(c=0;c<=ls;c++)Ae[c]=0;for(w=0;w<i;w++)Ae[r[n+w]]++;for(T=l,g=ls;g>=1&&Ae[g]===0;g--);if(T>g&&(T=g),g===0)return f[o++]=1<<24|64<<16|0,f[o++]=1<<24|64<<16|0,u.bits=1,0;for(p=1;p<g&&Ae[p]===0;p++);for(T<p&&(T=p),C=1,c=1;c<=ls;c++)if(C<<=1,C-=Ae[c],C<0)return-1;if(C>0&&(e===lq||g!==1))return-1;for(Ue[1]=0,c=1;c<ls;c++)Ue[c+1]=Ue[c]+Ae[c];for(w=0;w<i;w++)r[n+w]!==0&&(s[Ue[r[n+w]]++]=w);if(e===lq?(ue=he=s,q=19):e===uw?(ue=IA,Ye-=257,he=xA,Ge-=257,q=256):(ue=SA,he=EA,q=-1),H=0,w=0,c=p,re=o,L=T,O=0,F=-1,te=1<<T,oe=te-1,e===uw&&te>sq||e===uq&&te>aq)return 1;for(;;){$=c-O,s[w]<q?(qt=0,nt=s[w]):s[w]>q?(qt=he[Ge+s[w]],nt=ue[Ye+s[w]]):(qt=32+64,nt=0),M=1<<c-O,R=1<<L,p=R;do R-=M,f[re+(H>>O)+R]=$<<24|qt<<16|nt|0;while(R!==0);for(M=1<<c-1;H&M;)M>>=1;if(M!==0?(H&=M-1,H+=M):H=0,w++,--Ae[c]==0){if(c===g)break;c=r[n+s[w]]}if(c>T&&(H&oe)!==F){for(O===0&&(O=T),re+=p,L=c-O,C=1<<L;L+O<g&&(C-=Ae[L+O],!(C<=0));)L++,C<<=1;if(te+=1<<L,e===uw&&te>sq||e===uq&&te>aq)return 1;F=H&oe,f[F]=T<<24|L<<16|re-o|0}}return H!==0&&(f[re+H]=c-O<<24|64<<16|0),u.bits=T,0}});var Yq=k(En=>{"use strict";var Lr=xi(),cw=Xm(),Zn=$m(),AA=fq(),Xa=pq(),OA=0,dq=1,mq=2,wq=4,FA=5,dc=6,co=0,DA=1,NA=2,Qr=-2,hq=-3,pw=-4,RA=-5,bq=8,gq=1,yq=2,jq=3,qq=4,_q=5,vq=6,Tq=7,kq=8,Bq=9,Iq=10,mc=11,Ai=12,dw=13,xq=14,mw=15,Sq=16,Eq=17,Aq=18,Oq=19,wc=20,hc=21,Fq=22,Dq=23,Nq=24,Rq=25,Pq=26,ww=27,Hq=28,Mq=29,bt=30,hw=31,PA=32,HA=852,MA=592,zA=15,UA=zA;function zq(t){return(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24)}function LA(){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 Lr.Buf16(320),this.work=new Lr.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function Uq(t){var e;return!t||!t.state?Qr:(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=e.wrap&1),e.mode=gq,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Lr.Buf32(HA),e.distcode=e.distdyn=new Lr.Buf32(MA),e.sane=1,e.back=-1,co)}function Lq(t){var e;return!t||!t.state?Qr:(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,Uq(t))}function Vq(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))?Qr:(n.window!==null&&n.wbits!==e&&(n.window=null),n.wrap=r,n.wbits=e,Lq(t))}function Cq(t,e){var r,n;return t?(n=new LA,t.state=n,n.window=null,r=Vq(t,e),r!==co&&(t.state=null),r):Qr}function VA(t){return Cq(t,UA)}var Wq=!0,bw,gw;function CA(t){if(Wq){var e;for(bw=new Lr.Buf32(512),gw=new Lr.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(Xa(dq,t.lens,0,288,bw,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;Xa(mq,t.lens,0,32,gw,0,t.work,{bits:5}),Wq=!1}t.lencode=bw,t.lenbits=9,t.distcode=gw,t.distbits=5}function Kq(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 Lr.Buf8(f.wsize)),n>=f.wsize?(Lr.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),Lr.arraySet(f.window,e,r-n,i,f.wnext),n-=i,n?(Lr.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 WA(t,e){var r,n,i,f,o,s,u,l,c,w,p,g,T,L,O=0,C,te,H,M,R,F,oe,re,ue=new Lr.Buf8(4),Ye,q,Ae=[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 Qr;r=t.state,r.mode===Ai&&(r.mode=dw),o=t.next_out,i=t.output,u=t.avail_out,f=t.next_in,n=t.input,s=t.avail_in,l=r.hold,c=r.bits,w=s,p=u,re=co;e:for(;;)switch(r.mode){case gq:if(r.wrap===0){r.mode=dw;break}for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(r.wrap&2&&l===35615){r.check=0,ue[0]=l&255,ue[1]=l>>>8&255,r.check=Zn(r.check,ue,2,0),l=0,c=0,r.mode=yq;break}if(r.flags=0,r.head&&(r.head.done=!1),!(r.wrap&1)||(((l&255)<<8)+(l>>8))%31){t.msg="incorrect header check",r.mode=bt;break}if((l&15)!==bq){t.msg="unknown compression method",r.mode=bt;break}if(l>>>=4,c-=4,oe=(l&15)+8,r.wbits===0)r.wbits=oe;else if(oe>r.wbits){t.msg="invalid window size",r.mode=bt;break}r.dmax=1<<oe,t.adler=r.check=1,r.mode=l&512?Iq:Ai,l=0,c=0;break;case yq:for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(r.flags=l,(r.flags&255)!==bq){t.msg="unknown compression method",r.mode=bt;break}if(r.flags&57344){t.msg="unknown header flags set",r.mode=bt;break}r.head&&(r.head.text=l>>8&1),r.flags&512&&(ue[0]=l&255,ue[1]=l>>>8&255,r.check=Zn(r.check,ue,2,0)),l=0,c=0,r.mode=jq;case jq:for(;c<32;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.head&&(r.head.time=l),r.flags&512&&(ue[0]=l&255,ue[1]=l>>>8&255,ue[2]=l>>>16&255,ue[3]=l>>>24&255,r.check=Zn(r.check,ue,4,0)),l=0,c=0,r.mode=qq;case qq:for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.head&&(r.head.xflags=l&255,r.head.os=l>>8),r.flags&512&&(ue[0]=l&255,ue[1]=l>>>8&255,r.check=Zn(r.check,ue,2,0)),l=0,c=0,r.mode=_q;case _q:if(r.flags&1024){for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.length=l,r.head&&(r.head.extra_len=l),r.flags&512&&(ue[0]=l&255,ue[1]=l>>>8&255,r.check=Zn(r.check,ue,2,0)),l=0,c=0}else r.head&&(r.head.extra=null);r.mode=vq;case vq:if(r.flags&1024&&(g=r.length,g>s&&(g=s),g&&(r.head&&(oe=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),Lr.arraySet(r.head.extra,n,f,g,oe)),r.flags&512&&(r.check=Zn(r.check,n,g,f)),s-=g,f+=g,r.length-=g),r.length))break e;r.length=0,r.mode=Tq;case Tq:if(r.flags&2048){if(s===0)break e;g=0;do oe=n[f+g++],r.head&&oe&&r.length<65536&&(r.head.name+=String.fromCharCode(oe));while(oe&&g<s);if(r.flags&512&&(r.check=Zn(r.check,n,g,f)),s-=g,f+=g,oe)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=kq;case kq:if(r.flags&4096){if(s===0)break e;g=0;do oe=n[f+g++],r.head&&oe&&r.length<65536&&(r.head.comment+=String.fromCharCode(oe));while(oe&&g<s);if(r.flags&512&&(r.check=Zn(r.check,n,g,f)),s-=g,f+=g,oe)break e}else r.head&&(r.head.comment=null);r.mode=Bq;case Bq:if(r.flags&512){for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(l!==(r.check&65535)){t.msg="header crc mismatch",r.mode=bt;break}l=0,c=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=Ai;break;case Iq:for(;c<32;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}t.adler=r.check=zq(l),l=0,c=0,r.mode=mc;case mc:if(r.havedict===0)return t.next_out=o,t.avail_out=u,t.next_in=f,t.avail_in=s,r.hold=l,r.bits=c,NA;t.adler=r.check=1,r.mode=Ai;case Ai:if(e===FA||e===dc)break e;case dw:if(r.last){l>>>=c&7,c-=c&7,r.mode=ww;break}for(;c<3;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}switch(r.last=l&1,l>>>=1,c-=1,l&3){case 0:r.mode=xq;break;case 1:if(CA(r),r.mode=wc,e===dc){l>>>=2,c-=2;break e}break;case 2:r.mode=Eq;break;case 3:t.msg="invalid block type",r.mode=bt}l>>>=2,c-=2;break;case xq:for(l>>>=c&7,c-=c&7;c<32;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if((l&65535)!=(l>>>16^65535)){t.msg="invalid stored block lengths",r.mode=bt;break}if(r.length=l&65535,l=0,c=0,r.mode=mw,e===dc)break e;case mw:r.mode=Sq;case Sq:if(g=r.length,g){if(g>s&&(g=s),g>u&&(g=u),g===0)break e;Lr.arraySet(i,n,f,g,o),s-=g,f+=g,u-=g,o+=g,r.length-=g;break}r.mode=Ai;break;case Eq:for(;c<14;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(r.nlen=(l&31)+257,l>>>=5,c-=5,r.ndist=(l&31)+1,l>>>=5,c-=5,r.ncode=(l&15)+4,l>>>=4,c-=4,r.nlen>286||r.ndist>30){t.msg="too many length or distance symbols",r.mode=bt;break}r.have=0,r.mode=Aq;case Aq:for(;r.have<r.ncode;){for(;c<3;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.lens[Ae[r.have++]]=l&7,l>>>=3,c-=3}for(;r.have<19;)r.lens[Ae[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,Ye={bits:r.lenbits},re=Xa(OA,r.lens,0,19,r.lencode,0,r.work,Ye),r.lenbits=Ye.bits,re){t.msg="invalid code lengths set",r.mode=bt;break}r.have=0,r.mode=Oq;case Oq:for(;r.have<r.nlen+r.ndist;){for(;O=r.lencode[l&(1<<r.lenbits)-1],C=O>>>24,te=O>>>16&255,H=O&65535,!(C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(H<16)l>>>=C,c-=C,r.lens[r.have++]=H;else{if(H===16){for(q=C+2;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(l>>>=C,c-=C,r.have===0){t.msg="invalid bit length repeat",r.mode=bt;break}oe=r.lens[r.have-1],g=3+(l&3),l>>>=2,c-=2}else if(H===17){for(q=C+3;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}l>>>=C,c-=C,oe=0,g=3+(l&7),l>>>=3,c-=3}else{for(q=C+7;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}l>>>=C,c-=C,oe=0,g=11+(l&127),l>>>=7,c-=7}if(r.have+g>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=bt;break}for(;g--;)r.lens[r.have++]=oe}}if(r.mode===bt)break;if(r.lens[256]===0){t.msg="invalid code -- missing end-of-block",r.mode=bt;break}if(r.lenbits=9,Ye={bits:r.lenbits},re=Xa(dq,r.lens,0,r.nlen,r.lencode,0,r.work,Ye),r.lenbits=Ye.bits,re){t.msg="invalid literal/lengths set",r.mode=bt;break}if(r.distbits=6,r.distcode=r.distdyn,Ye={bits:r.distbits},re=Xa(mq,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,Ye),r.distbits=Ye.bits,re){t.msg="invalid distances set",r.mode=bt;break}if(r.mode=wc,e===dc)break e;case wc:r.mode=hc;case hc:if(s>=6&&u>=258){t.next_out=o,t.avail_out=u,t.next_in=f,t.avail_in=s,r.hold=l,r.bits=c,AA(t,p),o=t.next_out,i=t.output,u=t.avail_out,f=t.next_in,n=t.input,s=t.avail_in,l=r.hold,c=r.bits,r.mode===Ai&&(r.back=-1);break}for(r.back=0;O=r.lencode[l&(1<<r.lenbits)-1],C=O>>>24,te=O>>>16&255,H=O&65535,!(C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(te&&(te&240)==0){for(M=C,R=te,F=H;O=r.lencode[F+((l&(1<<M+R)-1)>>M)],C=O>>>24,te=O>>>16&255,H=O&65535,!(M+C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}l>>>=M,c-=M,r.back+=M}if(l>>>=C,c-=C,r.back+=C,r.length=H,te===0){r.mode=Pq;break}if(te&32){r.back=-1,r.mode=Ai;break}if(te&64){t.msg="invalid literal/length code",r.mode=bt;break}r.extra=te&15,r.mode=Fq;case Fq:if(r.extra){for(q=r.extra;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.length+=l&(1<<r.extra)-1,l>>>=r.extra,c-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=Dq;case Dq:for(;O=r.distcode[l&(1<<r.distbits)-1],C=O>>>24,te=O>>>16&255,H=O&65535,!(C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if((te&240)==0){for(M=C,R=te,F=H;O=r.distcode[F+((l&(1<<M+R)-1)>>M)],C=O>>>24,te=O>>>16&255,H=O&65535,!(M+C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}l>>>=M,c-=M,r.back+=M}if(l>>>=C,c-=C,r.back+=C,te&64){t.msg="invalid distance code",r.mode=bt;break}r.offset=H,r.extra=te&15,r.mode=Nq;case Nq:if(r.extra){for(q=r.extra;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.offset+=l&(1<<r.extra)-1,l>>>=r.extra,c-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=bt;break}r.mode=Rq;case Rq:if(u===0)break e;if(g=p-u,r.offset>g){if(g=r.offset-g,g>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=bt;break}g>r.wnext?(g-=r.wnext,T=r.wsize-g):T=r.wnext-g,g>r.length&&(g=r.length),L=r.window}else L=i,T=o-r.offset,g=r.length;g>u&&(g=u),u-=g,r.length-=g;do i[o++]=L[T++];while(--g);r.length===0&&(r.mode=hc);break;case Pq:if(u===0)break e;i[o++]=r.length,u--,r.mode=hc;break;case ww:if(r.wrap){for(;c<32;){if(s===0)break e;s--,l|=n[f++]<<c,c+=8}if(p-=u,t.total_out+=p,r.total+=p,p&&(t.adler=r.check=r.flags?Zn(r.check,i,p,o-p):cw(r.check,i,p,o-p)),p=u,(r.flags?l:zq(l))!==r.check){t.msg="incorrect data check",r.mode=bt;break}l=0,c=0}r.mode=Hq;case Hq:if(r.wrap&&r.flags){for(;c<32;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(l!==(r.total&4294967295)){t.msg="incorrect length check",r.mode=bt;break}l=0,c=0}r.mode=Mq;case Mq:re=DA;break e;case bt:re=hq;break e;case hw:return pw;case PA:default:return Qr}return t.next_out=o,t.avail_out=u,t.next_in=f,t.avail_in=s,r.hold=l,r.bits=c,(r.wsize||p!==t.avail_out&&r.mode<bt&&(r.mode<ww||e!==wq))&&Kq(t,t.output,t.next_out,p-t.avail_out)?(r.mode=hw,pw):(w-=t.avail_in,p-=t.avail_out,t.total_in+=w,t.total_out+=p,r.total+=p,r.wrap&&p&&(t.adler=r.check=r.flags?Zn(r.check,i,p,t.next_out-p):cw(r.check,i,p,t.next_out-p)),t.data_type=r.bits+(r.last?64:0)+(r.mode===Ai?128:0)+(r.mode===wc||r.mode===mw?256:0),(w===0&&p===0||e===wq)&&re===co&&(re=RA),re)}function KA(t){if(!t||!t.state)return Qr;var e=t.state;return e.window&&(e.window=null),t.state=null,co}function YA(t,e){var r;return!t||!t.state||(r=t.state,(r.wrap&2)==0)?Qr:(r.head=e,e.done=!1,co)}function GA(t,e){var r=e.length,n,i,f;return!t||!t.state||(n=t.state,n.wrap!==0&&n.mode!==mc)?Qr:n.mode===mc&&(i=1,i=cw(i,e,r,0),i!==n.check)?hq:(f=Kq(t,e,r,r),f?(n.mode=hw,pw):(n.havedict=1,co))}En.inflateReset=Lq;En.inflateReset2=Vq;En.inflateResetKeep=Uq;En.inflateInit=VA;En.inflateInit2=Cq;En.inflate=WA;En.inflateEnd=KA;En.inflateGetHeader=YA;En.inflateSetDictionary=GA;En.inflateInfo="pako inflate (from Nodeca project)"});var yw=k((WU,Gq)=>{"use strict";Gq.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 Jq=k((KU,Zq)=>{"use strict";function ZA(){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}Zq.exports=ZA});var Xq=k(el=>{"use strict";var us=Yq(),$a=xi(),bc=iw(),Ot=yw(),jw=ic(),JA=fw(),QA=Jq(),Qq=Object.prototype.toString;function po(t){if(!(this instanceof po))return new po(t);this.options=$a.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 JA,this.strm.avail_out=0;var r=us.inflateInit2(this.strm,e.windowBits);if(r!==Ot.Z_OK)throw new Error(jw[r]);if(this.header=new QA,us.inflateGetHeader(this.strm,this.header),e.dictionary&&(typeof e.dictionary=="string"?e.dictionary=bc.string2buf(e.dictionary):Qq.call(e.dictionary)==="[object ArrayBuffer]"&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(r=us.inflateSetDictionary(this.strm,e.dictionary),r!==Ot.Z_OK)))throw new Error(jw[r])}po.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i=this.options.dictionary,f,o,s,u,l,c=!1;if(this.ended)return!1;o=e===~~e?e:e===!0?Ot.Z_FINISH:Ot.Z_NO_FLUSH,typeof t=="string"?r.input=bc.binstring2buf(t):Qq.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 $a.Buf8(n),r.next_out=0,r.avail_out=n),f=us.inflate(r,Ot.Z_NO_FLUSH),f===Ot.Z_NEED_DICT&&i&&(f=us.inflateSetDictionary(this.strm,i)),f===Ot.Z_BUF_ERROR&&c===!0&&(f=Ot.Z_OK,c=!1),f!==Ot.Z_STREAM_END&&f!==Ot.Z_OK)return this.onEnd(f),this.ended=!0,!1;r.next_out&&(r.avail_out===0||f===Ot.Z_STREAM_END||r.avail_in===0&&(o===Ot.Z_FINISH||o===Ot.Z_SYNC_FLUSH))&&(this.options.to==="string"?(s=bc.utf8border(r.output,r.next_out),u=r.next_out-s,l=bc.buf2string(r.output,s),r.next_out=u,r.avail_out=n-u,u&&$a.arraySet(r.output,r.output,s,u,0),this.onData(l)):this.onData($a.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)&&f!==Ot.Z_STREAM_END);return f===Ot.Z_STREAM_END&&(o=Ot.Z_FINISH),o===Ot.Z_FINISH?(f=us.inflateEnd(this.strm),this.onEnd(f),this.ended=!0,f===Ot.Z_OK):(o===Ot.Z_SYNC_FLUSH&&(this.onEnd(Ot.Z_OK),r.avail_out=0),!0)};po.prototype.onData=function(t){this.chunks.push(t)};po.prototype.onEnd=function(t){t===Ot.Z_OK&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=$a.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function qw(t,e){var r=new po(e);if(r.push(t,!0),r.err)throw r.msg||jw[r.err];return r.result}function XA(t,e){return e=e||{},e.raw=!0,qw(t,e)}el.Inflate=po;el.inflate=qw;el.inflateRaw=XA;el.ungzip=qw});var t_=k((GU,e_)=>{"use strict";var $A=xi().assign,eO=nq(),tO=Xq(),rO=yw(),$q={};$A($q,eO,tO,rO);e_.exports=$q});var _w=k(()=>{});var n_=k(r_=>{"use strict";var iO=[0,255,65535,16777215,4294967295];function fO(t,e,r,n,i){var f;for(f=0;f<i;f++)r[n+f]=t[e+f]}function oO(t,e,r,n){var i;for(i=0;i<n;i++)t[e+i]=t[e-r+i]}function Tw(t){this.array=t,this.pos=0}Tw.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};Tw.prototype.uncompressToBuffer=function(t){for(var e=this.array,r=e.length,n=this.pos,i=0,f,o,s,u;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&iO[s])+1,n+=s}if(n+o>r)return!1;fO(e,n,t,i,o),n+=o,i+=o}else{switch(f&3){case 1:o=(f>>>2&7)+4,u=e[n]+(f>>>5<<8),n+=1;break;case 2:if(n+1>=r)return!1;o=(f>>>2)+1,u=e[n]+(e[n+1]<<8),n+=2;break;case 3:if(n+3>=r)return!1;o=(f>>>2)+1,u=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),n+=4;break;default:break}if(u===0||u>i)return!1;oO(t,i,u,o),i+=o}return!0};r_.SnappyDecompressor=Tw});var a_=k(s_=>{"use strict";var sO=16,aO=1<<sO,i_=14,kw=new Array(i_+1);function il(t,e){return t*506832829>>>e}function fl(t,e){return t[e]+(t[e+1]<<8)+(t[e+2]<<16)+(t[e+3]<<24)}function f_(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 lO(t,e,r,n,i){var f;for(f=0;f<i;f++)r[n+f]=t[e+f]}function o_(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),lO(t,e,n,i,r),i+r}function Bw(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 uO(t,e,r,n){for(;n>=68;)e=Bw(t,e,r,64),n-=64;return n>64&&(e=Bw(t,e,r,60),n-=60),Bw(t,e,r,n)}function cO(t,e,r,n,i){for(var f=1;1<<f<=r&&f<=i_;)f+=1;f-=1;var o=32-f;typeof kw[f]=="undefined"&&(kw[f]=new Uint16Array(1<<f));var s=kw[f],u;for(u=0;u<s.length;u++)s[u]=0;var l=e+r,c,w=e,p=e,g,T,L,O,C,te,H,M,R,F,oe,re=!0,ue=15;if(r>=ue)for(c=l-ue,e+=1,T=il(fl(t,e),o);re;){C=32,L=e;do{if(e=L,g=T,te=C>>>5,C+=1,L=e+te,e>c){re=!1;break}T=il(fl(t,L),o),O=w+s[g],s[g]=e-w}while(!f_(t,e,O));if(!re)break;i=o_(t,p,e-p,n,i);do{for(H=e,M=4;e+M<l&&t[e+M]===t[O+M];)M+=1;if(e+=M,R=H-O,i=uO(n,i,R,M),p=e,e>=c){re=!1;break}F=il(fl(t,e-1),o),s[F]=e-1-w,oe=il(fl(t,e),o),O=w+s[oe],s[oe]=e-w}while(f_(t,e,O));if(!re)break;e+=1,T=il(fl(t,e),o)}return p<l&&(i=o_(t,p,l-p,n,i)),i}function pO(t,e,r){do e[r]=t&127,t=t>>>7,t>0&&(e[r]+=128),r+=1;while(t>0);return r}function Iw(t){this.array=t}Iw.prototype.maxCompressedLength=function(){var t=this.array.length;return 32+t+Math.floor(t/6)};Iw.prototype.compressToBuffer=function(t){var e=this.array,r=e.length,n=0,i=0,f;for(i=pO(r,t,i);n<r;)f=Math.min(r-n,aO),i=cO(e,n,f,t,i),n+=f;return i};s_.SnappyCompressor=Iw});var p_=k(xw=>{"use strict";function l_(){return typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node!="undefined"}function _c(t){return t instanceof Uint8Array&&(!l_()||!Buffer.isBuffer(t))}function vc(t){return t instanceof ArrayBuffer}function u_(t){return l_()?Buffer.isBuffer(t):!1}var dO=n_().SnappyDecompressor,mO=a_().SnappyCompressor,c_="Argument compressed must be type of ArrayBuffer, Buffer, or Uint8Array";function wO(t){if(!_c(t)&&!vc(t)&&!u_(t))throw new TypeError(c_);var e=!1,r=!1;_c(t)?e=!0:vc(t)&&(r=!0,t=new Uint8Array(t));var n=new dO(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 hO(t){if(!_c(t)&&!vc(t)&&!u_(t))throw new TypeError(c_);var e=!1,r=!1;_c(t)?e=!0:vc(t)&&(r=!0,t=new Uint8Array(t));var n=new mO(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 u=new Uint8Array(Array.prototype.slice.call(f,0,s));if(e)return u;if(r)return u.buffer;throw new Error("Not implemented")}return f.slice(0,s)}xw.uncompress=wO;xw.compress=hO});var Sw=k(cs=>{cs.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};cs.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};cs.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};cs.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};cs.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 y_=k(g_=>{var Jn=Sw(),wo=2654435761,ho=2246822519,w_=3266489917,gO=668265263,h_=374761393;function xc(t,e){return t=t|0,e=e|0,t>>>(32-e|0)|t<<e|0}function b_(t,e,r){return t=t|0,e=e|0,r=r|0,Jn.imul(t>>>(32-e|0)|t<<e,r)|0}function Ew(t,e){return t=t|0,e=e|0,t>>>e^t|0}function al(t,e,r,n,i){return b_(Jn.imul(e,r)+t,n,i)}function yO(t,e,r){return b_(t+Jn.imul(e[r],h_),11,wo)}function jO(t,e,r){return al(t,Jn.readU32(e,r),w_,17,gO)}function qO(t,e,r){return[al(t[0],Jn.readU32(e,r+0),ho,13,wo),al(t[1],Jn.readU32(e,r+4),ho,13,wo),al(t[2],Jn.readU32(e,r+8),ho,13,wo),al(t[3],Jn.readU32(e,r+12),ho,13,wo)]}function _O(t,e,r,n){var i,f;if(f=n,n>=16){for(i=[t+wo+ho,t+ho,t,t-wo];n>=16;)i=qO(i,e,r),r+=16,n-=16;i=xc(i[0],1)+xc(i[1],7)+xc(i[2],12)+xc(i[3],18)+f}else i=t+h_+n>>>0;for(;n>=4;)i=jO(i,e,r),r+=4,n-=4;for(;n>0;)i=yO(i,e,r),r++,n--;return i=Ew(Jn.imul(Ew(Jn.imul(Ew(i,15),ho),13),w_),16),i>>>0}g_.hash=_O});var x_=k(Qt=>{var vO=y_(),Xr=Sw(),Sc=4,TO=13,j_=5,Aw=6,Ec=1<<16,ll=4,Ac=(1<<ll)-1,kO=4,ps=(1<<kO)-1,q_=B_(5<<20),Ow=IO(),Fw=407708164,BO=4,__=8,v_=16,Dw=64,Nw=192,Oc=2147483648,T_=7,Rw=4,k_=7,Fc={4:65536,5:262144,6:1048576,7:4194304};function IO(){try{return new Uint32Array(Ec)}catch{for(var t=new Array(Ec),e=0;e<Ec;e++)t[e]=0;return t}}function xO(t){for(var e=0;e<Ec;e++)Ow[e]=0}function B_(t){try{return new Uint8Array(t)}catch{for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e}}function I_(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)}Qt.compressBound=function(e){return e+e/255+16|0};Qt.decompressBound=function(e){var r=0;if(Xr.readU32(e,r)!==Fw)throw new Error("invalid magic number");r+=4;var n=e[r++];if((n&Nw)!==Dw)throw new Error("incompatible descriptor version "+(n&Nw));var i=(n&v_)!=0,f=(n&__)!=0,o=e[r++]>>Rw&k_;if(Fc[o]===void 0)throw new Error("invalid block size "+o);var s=Fc[o];if(f)return Xr.readU64(e,r);r++;for(var u=0;;){var l=Xr.readU32(e,r);if(r+=4,l&Oc?(l&=~Oc,u+=l):u+=s,l===0)return u;i&&(r+=4),r+=l}};Qt.makeBuffer=B_;Qt.decompressBlock=function(e,r,n,i,f){var o,s,u,l,c;for(u=n+i;n<u;){var w=e[n++],p=w>>4;if(p>0){if(p===15)for(;p+=e[n],e[n++]===255;);for(l=n+p;n<l;)r[f++]=e[n++]}if(n>=u)break;if(o=w&15,s=e[n++]|e[n++]<<8,o===15)for(;o+=e[n],e[n++]===255;);for(o+=Sc,c=f-s,l=c+o;c<l;)r[f++]=r[c++]|0}return f};Qt.compressBlock=function(e,r,n,i,f){var o,s,u,l,c,w,p,g,T;if(p=0,g=i+n,s=n,i>=TO)for(var L=(1<<Aw)+3;n+Sc<g-j_;){var O=Xr.readU32(e,n),C=Xr.hashU32(O)>>>0;if(C=(C>>16^C)>>>0&65535,o=f[C]-1,f[C]=n+1,o<0||n-o>>>16>0||Xr.readU32(e,o)!==O){c=L++>>Aw,n+=c;continue}for(L=(1<<Aw)+3,w=n-s,l=n-o,n+=Sc,o+=Sc,u=n;n<g-j_&&e[n]===e[o];)n++,o++;u=n-u;var te=u<Ac?u:Ac;if(w>=ps){for(r[p++]=(ps<<ll)+te,T=w-ps;T>=255;T-=255)r[p++]=255;r[p++]=T}else r[p++]=(w<<ll)+te;for(var H=0;H<w;H++)r[p++]=e[s+H];if(r[p++]=l,r[p++]=l>>8,u>=Ac){for(T=u-Ac;T>=255;T-=255)r[p++]=255;r[p++]=T}s=n}if(s===0)return 0;if(w=g-s,w>=ps){for(r[p++]=ps<<ll,T=w-ps;T>=255;T-=255)r[p++]=255;r[p++]=T}else r[p++]=w<<ll;for(n=s;n<g;)r[p++]=e[n++];return p};Qt.decompressFrame=function(e,r){var n,i,f,o,s=0,u=0;if(Xr.readU32(e,s)!==Fw)throw new Error("invalid magic number");if(s+=4,o=e[s++],(o&Nw)!==Dw)throw new Error("incompatible descriptor version");n=(o&v_)!=0,i=(o&BO)!=0,f=(o&__)!=0;var l=e[s++]>>Rw&k_;if(Fc[l]===void 0)throw new Error("invalid block size");for(f&&(s+=8),s++;;){var c;if(c=Xr.readU32(e,s),s+=4,c===0)break;if(n&&(s+=4),(c&Oc)!=0){c&=~Oc;for(var w=0;w<c;w++)r[u++]=e[s++]}else u=Qt.decompressBlock(e,r,s,c,u),s+=c}return i&&(s+=4),u};Qt.compressFrame=function(e,r){var n=0;Xr.writeU32(r,n,Fw),n+=4,r[n++]=Dw,r[n++]=T_<<Rw,r[n]=vO.hash(0,r,4,n-4)>>8,n++;var i=Fc[T_],f=e.length,o=0;for(xO(Ow);f>0;){var s=0,u=f>i?i:f;if(s=Qt.compressBlock(e,q_,o,u,Ow),s>u||s===0){Xr.writeU32(r,n,2147483648|u),n+=4;for(var l=o+u;o<l;)r[n++]=e[o++];f-=u}else{Xr.writeU32(r,n,s),n+=4;for(var c=0;c<s;)r[n++]=q_[c++];o+=u,f-=u}}return Xr.writeU32(r,n,0),n+=4,n};Qt.decompress=function(e,r){var n,i;return r===void 0&&(r=Qt.decompressBound(e)),n=Qt.makeBuffer(r),i=Qt.decompressFrame(e,n),i!==r&&(n=I_(n,0,i)),n};Qt.compress=function(e,r){var n,i;return r===void 0&&(r=Qt.compressBound(e.length)),n=Qt.makeBuffer(r),i=Qt.compressFrame(e,n),i!==r&&(n=I_(n,0,i)),n}});var S_=k(()=>{});var Hw=k((HL,cl)=>{"use strict";typeof global.Map!="undefined"?(cl.exports=global.Map,cl.exports.Map=global.Map):(Vr=function(t){this._keys=[],this._values={};for(var e=0;e<t.length;e++)if(t[e]!=null){var r=t[e],n=r[0],i=r[1];this._keys.push(n),this._values[n]={v:i,i:this._keys.length-1}}},Vr.prototype.clear=function(){this._keys=[],this._values={}},Vr.prototype.delete=function(t){var e=this._values[t];return e==null?!1:(delete this._values[t],this._keys.splice(e.i,1),!0)},Vr.prototype.entries=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?[r,t._values[r].v]:void 0,done:r===void 0}}}},Vr.prototype.forEach=function(t,e){e=e||this;for(var r=0;r<this._keys.length;r++){var n=this._keys[r];t.call(e,this._values[n].v,n,e)}},Vr.prototype.get=function(t){return this._values[t]?this._values[t].v:void 0},Vr.prototype.has=function(t){return this._values[t]!=null},Vr.prototype.keys=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?r:void 0,done:r===void 0}}}},Vr.prototype.set=function(t,e){return this._values[t]?(this._values[t].v=e,this):(this._keys.push(t),this._values[t]={v:e,i:this._keys.length-1},this)},Vr.prototype.values=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?t._values[r].v:void 0,done:r===void 0}}}},Object.defineProperty(Vr.prototype,"size",{enumerable:!0,get:function(){return this._keys.length}}),cl.exports=Vr,cl.exports.Map=Vr);var Vr});var ds=k((ML,Mw)=>{function S(t,e){if(!(this instanceof S))return new S(t,e);this._bsontype="Long",this.low_=t|0,this.high_=e|0}S.prototype.toInt=function(){return this.low_};S.prototype.toNumber=function(){return this.high_*S.TWO_PWR_32_DBL_+this.getLowBitsUnsigned()};S.prototype.toBigInt=function(){return BigInt(this.toString())};S.prototype.toJSON=function(){return this.toString()};S.prototype.toString=function(t){var e=t||10;if(e<2||36<e)throw Error("radix out of range: "+e);if(this.isZero())return"0";if(this.isNegative())if(this.equals(S.MIN_VALUE)){var r=S.fromNumber(e),n=this.div(r),i=n.multiply(r).subtract(this);return n.toString(e)+i.toInt().toString(e)}else return"-"+this.negate().toString(e);var f=S.fromNumber(Math.pow(e,6));i=this;for(var o="";!i.isZero();){var s=i.div(f),u=i.subtract(s.multiply(f)).toInt(),l=u.toString(e);if(i=s,i.isZero())return l+o;for(;l.length<6;)l="0"+l;o=""+l+o}};S.prototype.getHighBits=function(){return this.high_};S.prototype.getLowBits=function(){return this.low_};S.prototype.getLowBitsUnsigned=function(){return this.low_>=0?this.low_:S.TWO_PWR_32_DBL_+this.low_};S.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(S.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=this.high_!==0?this.high_:this.low_,e=31;e>0&&(t&1<<e)==0;e--);return this.high_!==0?e+33:e+1};S.prototype.isZero=function(){return this.high_===0&&this.low_===0};S.prototype.isNegative=function(){return this.high_<0};S.prototype.isOdd=function(){return(this.low_&1)==1};S.prototype.equals=function(t){return this.high_===t.high_&&this.low_===t.low_};S.prototype.notEquals=function(t){return this.high_!==t.high_||this.low_!==t.low_};S.prototype.lessThan=function(t){return this.compare(t)<0};S.prototype.lessThanOrEqual=function(t){return this.compare(t)<=0};S.prototype.greaterThan=function(t){return this.compare(t)>0};S.prototype.greaterThanOrEqual=function(t){return this.compare(t)>=0};S.prototype.compare=function(t){if(this.equals(t))return 0;var e=this.isNegative(),r=t.isNegative();return e&&!r?-1:!e&&r?1:this.subtract(t).isNegative()?-1:1};S.prototype.negate=function(){return this.equals(S.MIN_VALUE)?S.MIN_VALUE:this.not().add(S.ONE)};S.prototype.add=function(t){var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,f=t.high_>>>16,o=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i+u,w+=p>>>16,p&=65535,w+=n+s,c+=w>>>16,w&=65535,c+=r+o,l+=c>>>16,c&=65535,l+=e+f,l&=65535,S.fromBits(w<<16|p,l<<16|c)};S.prototype.subtract=function(t){return this.add(t.negate())};S.prototype.multiply=function(t){if(this.isZero())return S.ZERO;if(t.isZero())return S.ZERO;if(this.equals(S.MIN_VALUE))return t.isOdd()?S.MIN_VALUE:S.ZERO;if(t.equals(S.MIN_VALUE))return this.isOdd()?S.MIN_VALUE:S.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(S.TWO_PWR_24_)&&t.lessThan(S.TWO_PWR_24_))return S.fromNumber(this.toNumber()*t.toNumber());var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,f=t.high_>>>16,o=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i*u,w+=p>>>16,p&=65535,w+=n*u,c+=w>>>16,w&=65535,w+=i*s,c+=w>>>16,w&=65535,c+=r*u,l+=c>>>16,c&=65535,c+=n*s,l+=c>>>16,c&=65535,c+=i*o,l+=c>>>16,c&=65535,l+=e*u+r*s+n*o+i*f,l&=65535,S.fromBits(w<<16|p,l<<16|c)};S.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return S.ZERO;if(this.equals(S.MIN_VALUE)){if(t.equals(S.ONE)||t.equals(S.NEG_ONE))return S.MIN_VALUE;if(t.equals(S.MIN_VALUE))return S.ONE;var e=this.shiftRight(1),r=e.div(t).shiftLeft(1);if(r.equals(S.ZERO))return t.isNegative()?S.ONE:S.NEG_ONE;var n=this.subtract(t.multiply(r)),i=r.add(n.div(t));return i}else if(t.equals(S.MIN_VALUE))return S.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var f=S.ZERO;for(n=this;n.greaterThanOrEqual(t);){r=Math.max(1,Math.floor(n.toNumber()/t.toNumber()));for(var o=Math.ceil(Math.log(r)/Math.LN2),s=o<=48?1:Math.pow(2,o-48),u=S.fromNumber(r),l=u.multiply(t);l.isNegative()||l.greaterThan(n);)r-=s,u=S.fromNumber(r),l=u.multiply(t);u.isZero()&&(u=S.ONE),f=f.add(u),n=n.subtract(l)}return f};S.prototype.modulo=function(t){return this.subtract(this.div(t).multiply(t))};S.prototype.not=function(){return S.fromBits(~this.low_,~this.high_)};S.prototype.and=function(t){return S.fromBits(this.low_&t.low_,this.high_&t.high_)};S.prototype.or=function(t){return S.fromBits(this.low_|t.low_,this.high_|t.high_)};S.prototype.xor=function(t){return S.fromBits(this.low_^t.low_,this.high_^t.high_)};S.prototype.shiftLeft=function(t){if(t&=63,t===0)return this;var e=this.low_;if(t<32){var r=this.high_;return S.fromBits(e<<t,r<<t|e>>>32-t)}else return S.fromBits(0,e<<t-32)};S.prototype.shiftRight=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return S.fromBits(r>>>t|e<<32-t,e>>t)}else return S.fromBits(e>>t-32,e>=0?0:-1)};S.prototype.shiftRightUnsigned=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return S.fromBits(r>>>t|e<<32-t,e>>>t)}else return t===32?S.fromBits(e,0):S.fromBits(e>>>t-32,0)};S.fromInt=function(t){if(-128<=t&&t<128){var e=S.INT_CACHE_[t];if(e)return e}var r=new S(t|0,t<0?-1:0);return-128<=t&&t<128&&(S.INT_CACHE_[t]=r),r};S.fromNumber=function(t){return isNaN(t)||!isFinite(t)?S.ZERO:t<=-S.TWO_PWR_63_DBL_?S.MIN_VALUE:t+1>=S.TWO_PWR_63_DBL_?S.MAX_VALUE:t<0?S.fromNumber(-t).negate():new S(t%S.TWO_PWR_32_DBL_|0,t/S.TWO_PWR_32_DBL_|0)};S.fromBigInt=function(t){return S.fromString(t.toString(10),10)};S.fromBits=function(t,e){return new S(t,e)};S.fromString=function(t,e){if(t.length===0)throw Error("number format error: empty string");var r=e||10;if(r<2||36<r)throw Error("radix out of range: "+r);if(t.charAt(0)==="-")return S.fromString(t.substring(1),r).negate();if(t.indexOf("-")>=0)throw Error('number format error: interior "-" character: '+t);for(var n=S.fromNumber(Math.pow(r,8)),i=S.ZERO,f=0;f<t.length;f+=8){var o=Math.min(8,t.length-f),s=parseInt(t.substring(f,f+o),r);if(o<8){var u=S.fromNumber(Math.pow(r,o));i=i.multiply(u).add(S.fromNumber(s))}else i=i.multiply(n),i=i.add(S.fromNumber(s))}return i};S.INT_CACHE_={};S.TWO_PWR_16_DBL_=1<<16;S.TWO_PWR_24_DBL_=1<<24;S.TWO_PWR_32_DBL_=S.TWO_PWR_16_DBL_*S.TWO_PWR_16_DBL_;S.TWO_PWR_31_DBL_=S.TWO_PWR_32_DBL_/2;S.TWO_PWR_48_DBL_=S.TWO_PWR_32_DBL_*S.TWO_PWR_16_DBL_;S.TWO_PWR_64_DBL_=S.TWO_PWR_32_DBL_*S.TWO_PWR_32_DBL_;S.TWO_PWR_63_DBL_=S.TWO_PWR_64_DBL_/2;S.ZERO=S.fromInt(0);S.ONE=S.fromInt(1);S.NEG_ONE=S.fromInt(-1);S.MAX_VALUE=S.fromBits(4294967295|0,2147483647|0);S.MIN_VALUE=S.fromBits(0,2147483648|0);S.TWO_PWR_24_=S.fromInt(1<<24);Mw.exports=S;Mw.exports.Long=S});var Nc=k((zL,zw)=>{function ms(t){if(!(this instanceof ms))return new ms(t);this._bsontype="Double",this.value=t}ms.prototype.valueOf=function(){return this.value};ms.prototype.toJSON=function(){return this.value};zw.exports=ms;zw.exports.Double=ms});var Rc=k((UL,Uw)=>{function E(t,e){if(!(this instanceof E))return new E(t,e);this._bsontype="Timestamp",this.low_=t|0,this.high_=e|0}E.prototype.toInt=function(){return this.low_};E.prototype.toNumber=function(){return this.high_*E.TWO_PWR_32_DBL_+this.getLowBitsUnsigned()};E.prototype.toJSON=function(){return this.toString()};E.prototype.toString=function(t){var e=t||10;if(e<2||36<e)throw Error("radix out of range: "+e);if(this.isZero())return"0";if(this.isNegative())if(this.equals(E.MIN_VALUE)){var r=E.fromNumber(e),n=this.div(r),i=n.multiply(r).subtract(this);return n.toString(e)+i.toInt().toString(e)}else return"-"+this.negate().toString(e);var f=E.fromNumber(Math.pow(e,6));i=this;for(var o="";!i.isZero();){var s=i.div(f),u=i.subtract(s.multiply(f)).toInt(),l=u.toString(e);if(i=s,i.isZero())return l+o;for(;l.length<6;)l="0"+l;o=""+l+o}};E.prototype.getHighBits=function(){return this.high_};E.prototype.getLowBits=function(){return this.low_};E.prototype.getLowBitsUnsigned=function(){return this.low_>=0?this.low_:E.TWO_PWR_32_DBL_+this.low_};E.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(E.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=this.high_!==0?this.high_:this.low_,e=31;e>0&&(t&1<<e)==0;e--);return this.high_!==0?e+33:e+1};E.prototype.isZero=function(){return this.high_===0&&this.low_===0};E.prototype.isNegative=function(){return this.high_<0};E.prototype.isOdd=function(){return(this.low_&1)==1};E.prototype.equals=function(t){return this.high_===t.high_&&this.low_===t.low_};E.prototype.notEquals=function(t){return this.high_!==t.high_||this.low_!==t.low_};E.prototype.lessThan=function(t){return this.compare(t)<0};E.prototype.lessThanOrEqual=function(t){return this.compare(t)<=0};E.prototype.greaterThan=function(t){return this.compare(t)>0};E.prototype.greaterThanOrEqual=function(t){return this.compare(t)>=0};E.prototype.compare=function(t){if(this.equals(t))return 0;var e=this.isNegative(),r=t.isNegative();return e&&!r?-1:!e&&r?1:this.subtract(t).isNegative()?-1:1};E.prototype.negate=function(){return this.equals(E.MIN_VALUE)?E.MIN_VALUE:this.not().add(E.ONE)};E.prototype.add=function(t){var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,f=t.high_>>>16,o=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i+u,w+=p>>>16,p&=65535,w+=n+s,c+=w>>>16,w&=65535,c+=r+o,l+=c>>>16,c&=65535,l+=e+f,l&=65535,E.fromBits(w<<16|p,l<<16|c)};E.prototype.subtract=function(t){return this.add(t.negate())};E.prototype.multiply=function(t){if(this.isZero())return E.ZERO;if(t.isZero())return E.ZERO;if(this.equals(E.MIN_VALUE))return t.isOdd()?E.MIN_VALUE:E.ZERO;if(t.equals(E.MIN_VALUE))return this.isOdd()?E.MIN_VALUE:E.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(E.TWO_PWR_24_)&&t.lessThan(E.TWO_PWR_24_))return E.fromNumber(this.toNumber()*t.toNumber());var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,f=t.high_>>>16,o=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i*u,w+=p>>>16,p&=65535,w+=n*u,c+=w>>>16,w&=65535,w+=i*s,c+=w>>>16,w&=65535,c+=r*u,l+=c>>>16,c&=65535,c+=n*s,l+=c>>>16,c&=65535,c+=i*o,l+=c>>>16,c&=65535,l+=e*u+r*s+n*o+i*f,l&=65535,E.fromBits(w<<16|p,l<<16|c)};E.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return E.ZERO;if(this.equals(E.MIN_VALUE)){if(t.equals(E.ONE)||t.equals(E.NEG_ONE))return E.MIN_VALUE;if(t.equals(E.MIN_VALUE))return E.ONE;var e=this.shiftRight(1),r=e.div(t).shiftLeft(1);if(r.equals(E.ZERO))return t.isNegative()?E.ONE:E.NEG_ONE;var n=this.subtract(t.multiply(r)),i=r.add(n.div(t));return i}else if(t.equals(E.MIN_VALUE))return E.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var f=E.ZERO;for(n=this;n.greaterThanOrEqual(t);){r=Math.max(1,Math.floor(n.toNumber()/t.toNumber()));for(var o=Math.ceil(Math.log(r)/Math.LN2),s=o<=48?1:Math.pow(2,o-48),u=E.fromNumber(r),l=u.multiply(t);l.isNegative()||l.greaterThan(n);)r-=s,u=E.fromNumber(r),l=u.multiply(t);u.isZero()&&(u=E.ONE),f=f.add(u),n=n.subtract(l)}return f};E.prototype.modulo=function(t){return this.subtract(this.div(t).multiply(t))};E.prototype.not=function(){return E.fromBits(~this.low_,~this.high_)};E.prototype.and=function(t){return E.fromBits(this.low_&t.low_,this.high_&t.high_)};E.prototype.or=function(t){return E.fromBits(this.low_|t.low_,this.high_|t.high_)};E.prototype.xor=function(t){return E.fromBits(this.low_^t.low_,this.high_^t.high_)};E.prototype.shiftLeft=function(t){if(t&=63,t===0)return this;var e=this.low_;if(t<32){var r=this.high_;return E.fromBits(e<<t,r<<t|e>>>32-t)}else return E.fromBits(0,e<<t-32)};E.prototype.shiftRight=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return E.fromBits(r>>>t|e<<32-t,e>>t)}else return E.fromBits(e>>t-32,e>=0?0:-1)};E.prototype.shiftRightUnsigned=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return E.fromBits(r>>>t|e<<32-t,e>>>t)}else return t===32?E.fromBits(e,0):E.fromBits(e>>>t-32,0)};E.fromInt=function(t){if(-128<=t&&t<128){var e=E.INT_CACHE_[t];if(e)return e}var r=new E(t|0,t<0?-1:0);return-128<=t&&t<128&&(E.INT_CACHE_[t]=r),r};E.fromNumber=function(t){return isNaN(t)||!isFinite(t)?E.ZERO:t<=-E.TWO_PWR_63_DBL_?E.MIN_VALUE:t+1>=E.TWO_PWR_63_DBL_?E.MAX_VALUE:t<0?E.fromNumber(-t).negate():new E(t%E.TWO_PWR_32_DBL_|0,t/E.TWO_PWR_32_DBL_|0)};E.fromBits=function(t,e){return new E(t,e)};E.fromString=function(t,e){if(t.length===0)throw Error("number format error: empty string");var r=e||10;if(r<2||36<r)throw Error("radix out of range: "+r);if(t.charAt(0)==="-")return E.fromString(t.substring(1),r).negate();if(t.indexOf("-")>=0)throw Error('number format error: interior "-" character: '+t);for(var n=E.fromNumber(Math.pow(r,8)),i=E.ZERO,f=0;f<t.length;f+=8){var o=Math.min(8,t.length-f),s=parseInt(t.substring(f,f+o),r);if(o<8){var u=E.fromNumber(Math.pow(r,o));i=i.multiply(u).add(E.fromNumber(s))}else i=i.multiply(n),i=i.add(E.fromNumber(s))}return i};E.INT_CACHE_={};E.TWO_PWR_16_DBL_=1<<16;E.TWO_PWR_24_DBL_=1<<24;E.TWO_PWR_32_DBL_=E.TWO_PWR_16_DBL_*E.TWO_PWR_16_DBL_;E.TWO_PWR_31_DBL_=E.TWO_PWR_32_DBL_/2;E.TWO_PWR_48_DBL_=E.TWO_PWR_32_DBL_*E.TWO_PWR_16_DBL_;E.TWO_PWR_64_DBL_=E.TWO_PWR_32_DBL_*E.TWO_PWR_32_DBL_;E.TWO_PWR_63_DBL_=E.TWO_PWR_64_DBL_/2;E.ZERO=E.fromInt(0);E.ONE=E.fromInt(1);E.NEG_ONE=E.fromInt(-1);E.MAX_VALUE=E.fromBits(4294967295|0,2147483647|0);E.MIN_VALUE=E.fromBits(0,2147483648|0);E.TWO_PWR_24_=E.fromInt(1<<24);Uw.exports=E;Uw.exports.Timestamp=E});var mf=k((LL,F_)=>{"use strict";function AO(t){return t.toString().replace(/function *\(/,"function (")}function O_(t,e){return new Buffer(t,e)}function OO(){return Buffer.alloc.apply(Buffer,arguments)}function FO(){return Buffer.from.apply(Buffer,arguments)}F_.exports={normalizedFunctionString:AO,allocBuffer:typeof Buffer.alloc=="function"?OO:O_,toBuffer:typeof Buffer.from=="function"?FO:O_}});var zc=k((VL,Mc)=>{var D_="inspect",Pc=mf(),Lw=parseInt(Math.random()*16777215,10),N_=new RegExp("^[0-9a-fA-F]{24}$");try{Buffer&&Buffer.from&&(Hc=!0,D_=Ln("util").inspect.custom||"inspect")}catch{Hc=!1}var Hc,Ze=function t(e){if(e instanceof t)return e;if(!(this instanceof t))return new t(e);if(this._bsontype="ObjectID",e==null||typeof e=="number"){this.id=this.generate(e),t.cacheHexString&&(this.__id=this.toString("hex"));return}var r=t.isValid(e);if(!r&&e!=null)throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");if(r&&typeof e=="string"&&e.length===24&&Hc)return new t(Pc.toBuffer(e,"hex"));if(r&&typeof e=="string"&&e.length===24)return t.createFromHexString(e);if(e!=null&&e.length===12)this.id=e;else{if(e!=null&&typeof e.toHexString=="function")return e;throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters")}t.cacheHexString&&(this.__id=this.toString("hex"))},R_=[];for(Ir=0;Ir<256;Ir++)R_[Ir]=(Ir<=15?"0":"")+Ir.toString(16);var Ir;Ze.prototype.toHexString=function(){if(Ze.cacheHexString&&this.__id)return this.__id;var t="";if(!this.id||!this.id.length)throw new Error("invalid ObjectId, ObjectId.id must be either a string or a Buffer, but is ["+JSON.stringify(this.id)+"]");if(this.id instanceof dl)return t=DO(this.id),Ze.cacheHexString&&(this.__id=t),t;for(var e=0;e<this.id.length;e++)t+=R_[this.id.charCodeAt(e)];return Ze.cacheHexString&&(this.__id=t),t};Ze.prototype.get_inc=function(){return Ze.index=(Ze.index+1)%16777215};Ze.prototype.getInc=function(){return this.get_inc()};Ze.prototype.generate=function(t){typeof t!="number"&&(t=~~(Date.now()/1e3));var e=(typeof process=="undefined"||process.pid===1?Math.floor(Math.random()*1e5):process.pid)%65535,r=this.get_inc(),n=Pc.allocBuffer(12);return n[3]=t&255,n[2]=t>>8&255,n[1]=t>>16&255,n[0]=t>>24&255,n[6]=Lw&255,n[5]=Lw>>8&255,n[4]=Lw>>16&255,n[8]=e&255,n[7]=e>>8&255,n[11]=r&255,n[10]=r>>8&255,n[9]=r>>16&255,n};Ze.prototype.toString=function(t){return this.id&&this.id.copy?this.id.toString(typeof t=="string"?t:"hex"):this.toHexString()};Ze.prototype[D_]=Ze.prototype.toString;Ze.prototype.toJSON=function(){return this.toHexString()};Ze.prototype.equals=function(e){return e instanceof Ze?this.toString()===e.toString():typeof e=="string"&&Ze.isValid(e)&&e.length===12&&this.id instanceof dl?e===this.id.toString("binary"):typeof e=="string"&&Ze.isValid(e)&&e.length===24?e.toLowerCase()===this.toHexString():typeof e=="string"&&Ze.isValid(e)&&e.length===12?e===this.id:e!=null&&(e instanceof Ze||e.toHexString)?e.toHexString()===this.toHexString():!1};Ze.prototype.getTimestamp=function(){var t=new Date,e=this.id[3]|this.id[2]<<8|this.id[1]<<16|this.id[0]<<24;return t.setTime(Math.floor(e)*1e3),t};Ze.index=~~(Math.random()*16777215);Ze.createPk=function(){return new Ze};Ze.createFromTime=function(e){var r=Pc.toBuffer([0,0,0,0,0,0,0,0,0,0,0,0]);return r[3]=e&255,r[2]=e>>8&255,r[1]=e>>16&255,r[0]=e>>24&255,new Ze(r)};var pl=[];Ir=0;for(;Ir<10;)pl[48+Ir]=Ir++;for(;Ir<16;)pl[65-10+Ir]=pl[97-10+Ir]=Ir++;var dl=Buffer,DO=function(t){return t.toString("hex")};Ze.createFromHexString=function(e){if(typeof e=="undefined"||e!=null&&e.length!==24)throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");if(Hc)return new Ze(Pc.toBuffer(e,"hex"));for(var r=new dl(12),n=0,i=0;i<24;)r[n++]=pl[e.charCodeAt(i++)]<<4|pl[e.charCodeAt(i++)];return new Ze(r)};Ze.isValid=function(e){return e==null?!1:typeof e=="number"?!0:typeof e=="string"?e.length===12||e.length===24&&N_.test(e):e instanceof Ze||e instanceof dl?!0:typeof e.toHexString=="function"&&(e.id instanceof dl||typeof e.id=="string")?e.id.length===12||e.id.length===24&&N_.test(e.id):!1};Object.defineProperty(Ze.prototype,"generationTime",{enumerable:!0,get:function(){return this.id[3]|this.id[2]<<8|this.id[1]<<16|this.id[0]<<24},set:function(t){this.id[3]=t&255,this.id[2]=t>>8&255,this.id[1]=t>>16&255,this.id[0]=t>>24&255}});Mc.exports=Ze;Mc.exports.ObjectID=Ze;Mc.exports.ObjectId=Ze});var Lc=k((CL,Vw)=>{function Uc(t,e){if(!(this instanceof Uc))return new Uc;this._bsontype="BSONRegExp",this.pattern=t||"",this.options=e||"";for(var r=0;r<this.options.length;r++)if(!(this.options[r]==="i"||this.options[r]==="m"||this.options[r]==="x"||this.options[r]==="l"||this.options[r]==="s"||this.options[r]==="u"))throw new Error("the regular expression options ["+this.options[r]+"] is not supported")}Vw.exports=Uc;Vw.exports.BSONRegExp=Uc});var Vc=k((WL,Cw)=>{var NO=Buffer&&Ln("util").inspect.custom||"inspect";function wf(t){if(!(this instanceof wf))return new wf(t);this._bsontype="Symbol",this.value=t}wf.prototype.valueOf=function(){return this.value};wf.prototype.toString=function(){return this.value};wf.prototype[NO]=function(){return this.value};wf.prototype.toJSON=function(){return this.value};Cw.exports=wf;Cw.exports.Symbol=wf});var Kw=k((KL,Ww)=>{var ws=function(t){if(!(this instanceof ws))return new ws(t);this._bsontype="Int32",this.value=t};ws.prototype.valueOf=function(){return this.value};ws.prototype.toJSON=function(){return this.value};Ww.exports=ws;Ww.exports.Int32=ws});var Cc=k((YL,Gw)=>{var Yw=function t(e,r){if(!(this instanceof t))return new t(e,r);this._bsontype="Code",this.code=e,this.scope=r};Yw.prototype.toJSON=function(){return{scope:this.scope,code:this.code}};Gw.exports=Yw;Gw.exports.Code=Yw});var Zc=k((GL,Jw)=>{"use strict";var Ne=ds(),RO=/^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/,PO=/^(\+|-)?(Infinity|inf)$/i,HO=/^(\+|-)?NaN$/i,ml=6111,Wc=-6176,Zw=6176,MO=34,Kc=[124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),Yc=[248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),Gc=[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),zO=/^([-+])?(\d+)?$/,Fi=mf(),P_=function(t){return!isNaN(parseInt(t,10))},UO=function(t){var e=Ne.fromNumber(1e3*1e3*1e3),r=Ne.fromNumber(0),n=0;if(!t.parts[0]&&!t.parts[1]&&!t.parts[2]&&!t.parts[3])return{quotient:t,rem:r};for(n=0;n<=3;n++)r=r.shiftLeft(32),r=r.add(new Ne(t.parts[n],0)),t.parts[n]=r.div(e).low_,r=r.modulo(e);return{quotient:t,rem:r}},LO=function(t,e){if(!t&&!e)return{high:Ne.fromNumber(0),low:Ne.fromNumber(0)};var r=t.shiftRightUnsigned(32),n=new Ne(t.getLowBits(),0),i=e.shiftRightUnsigned(32),f=new Ne(e.getLowBits(),0),o=r.multiply(i),s=r.multiply(f),u=n.multiply(i),l=n.multiply(f);return o=o.add(s.shiftRightUnsigned(32)),s=new Ne(s.getLowBits(),0).add(u).add(l.shiftRightUnsigned(32)),o=o.add(s.shiftRightUnsigned(32)),l=s.shiftLeft(32).add(new Ne(l.getLowBits(),0)),{high:o,low:l}},VO=function(t,e){var r=t.high_>>>0,n=e.high_>>>0;if(r<n)return!0;if(r===n){var i=t.low_>>>0,f=e.low_>>>0;if(i<f)return!0}return!1},xr=function(t){this._bsontype="Decimal128",this.bytes=t};xr.fromString=function(t){var e=!1,r=!1,n=!1,i=0,f=0,o=0,s=0,u=0,l=[0],c=0,w=0,p=0,g=0,T=0,L=0,O=[0,0],C=[0,0],te=0,H=0;if(t=t.trim(),t.length>=7e3)throw new Error(""+t+" not a valid Decimal128 string");var M=t.match(RO),R=t.match(PO),F=t.match(HO);if(!M&&!R&&!F||t.length===0)throw new Error(""+t+" not a valid Decimal128 string");if(M&&M[4]&&M[2]===void 0)throw new Error(""+t+" not a valid Decimal128 string");if((t[H]==="+"||t[H]==="-")&&(e=t[H++]==="-"),!P_(t[H])&&t[H]!=="."){if(t[H]==="i"||t[H]==="I")return new xr(Fi.toBuffer(e?Yc:Gc));if(t[H]==="N")return new xr(Fi.toBuffer(Kc))}for(;P_(t[H])||t[H]===".";){if(t[H]==="."){if(r)return new xr(Fi.toBuffer(Kc));r=!0,H=H+1;continue}c<34&&(t[H]!=="0"||n)&&(n||(u=f),n=!0,l[w++]=parseInt(t[H],10),c=c+1),n&&(o=o+1),r&&(s=s+1),f=f+1,H=H+1}if(r&&!f)throw new Error(""+t+" not a valid Decimal128 string");if(t[H]==="e"||t[H]==="E"){var oe=t.substr(++H).match(zO);if(!oe||!oe[2])return new xr(Fi.toBuffer(Kc));T=parseInt(oe[0],10),H=H+oe[0].length}if(t[H])return new xr(Fi.toBuffer(Kc));if(p=0,!c)p=0,g=0,l[0]=0,o=1,c=1,i=0;else if(g=c-1,i=o,T!==0&&i!==1)for(;t[u+i-1]==="0";)i=i-1;for(T<=s&&s-T>1<<14?T=Wc:T=T-s;T>ml;){if(g=g+1,g-p>MO){var re=l.join("");if(re.match(/^0+$/)){T=ml;break}else return new xr(Fi.toBuffer(e?Yc:Gc))}T=T-1}for(;T<Wc||c<o;){if(g===0){T=Wc,i=0;break}if(c<o?o=o-1:g=g-1,T<ml)T=T+1;else if(re=l.join(""),re.match(/^0+$/)){T=ml;break}else return new xr(Fi.toBuffer(e?Yc:Gc))}if(g-p+1<i&&t[i]!=="0"){var ue=f;r&&T===Wc&&(u=u+1,ue=ue+1);var Ye=parseInt(t[u+g+1],10),q=0;if(Ye>=5&&(q=1,Ye===5)){for(q=l[g]%2==1,L=u+g+2;L<ue;L++)if(parseInt(t[L],10)){q=1;break}}if(q){for(var Ae=g;Ae>=0&&++l[Ae]>9;Ae--)if(l[Ae]=0,Ae===0)if(T<ml)T=T+1,l[Ae]=1;else return new xr(Fi.toBuffer(e?Yc:Gc))}}if(O=Ne.fromNumber(0),C=Ne.fromNumber(0),i===0)O=Ne.fromNumber(0),C=Ne.fromNumber(0);else if(g-p<17)for(Ae=p,C=Ne.fromNumber(l[Ae++]),O=new Ne(0,0);Ae<=g;Ae++)C=C.multiply(Ne.fromNumber(10)),C=C.add(Ne.fromNumber(l[Ae]));else{for(Ae=p,O=Ne.fromNumber(l[Ae++]);Ae<=g-17;Ae++)O=O.multiply(Ne.fromNumber(10)),O=O.add(Ne.fromNumber(l[Ae]));for(C=Ne.fromNumber(l[Ae++]);Ae<=g;Ae++)C=C.multiply(Ne.fromNumber(10)),C=C.add(Ne.fromNumber(l[Ae]))}var Ue=LO(O,Ne.fromString("100000000000000000"));Ue.low=Ue.low.add(C),VO(Ue.low,C)&&(Ue.high=Ue.high.add(Ne.fromNumber(1))),te=T+Zw;var he={low:Ne.fromNumber(0),high:Ne.fromNumber(0)};Ue.high.shiftRightUnsigned(49).and(Ne.fromNumber(1)).equals(Ne.fromNumber)?(he.high=he.high.or(Ne.fromNumber(3).shiftLeft(61)),he.high=he.high.or(Ne.fromNumber(te).and(Ne.fromNumber(16383).shiftLeft(47))),he.high=he.high.or(Ue.high.and(Ne.fromNumber(140737488355327)))):(he.high=he.high.or(Ne.fromNumber(te&16383).shiftLeft(49)),he.high=he.high.or(Ue.high.and(Ne.fromNumber(562949953421311)))),he.low=Ue.low,e&&(he.high=he.high.or(Ne.fromString("9223372036854775808")));var Ge=Fi.allocBuffer(16);return H=0,Ge[H++]=he.low.low_&255,Ge[H++]=he.low.low_>>8&255,Ge[H++]=he.low.low_>>16&255,Ge[H++]=he.low.low_>>24&255,Ge[H++]=he.low.high_&255,Ge[H++]=he.low.high_>>8&255,Ge[H++]=he.low.high_>>16&255,Ge[H++]=he.low.high_>>24&255,Ge[H++]=he.high.low_&255,Ge[H++]=he.high.low_>>8&255,Ge[H++]=he.high.low_>>16&255,Ge[H++]=he.high.low_>>24&255,Ge[H++]=he.high.high_&255,Ge[H++]=he.high.high_>>8&255,Ge[H++]=he.high.high_>>16&255,Ge[H++]=he.high.high_>>24&255,new xr(Ge)};var CO=31,H_=16383,WO=30,KO=31;Zw=6176;xr.prototype.toString=function(){for(var t,e,r,n,i,f,o=0,s=new Array(36),u=0;u<s.length;u++)s[u]=0;var l=0,c,w,p=!1,g,T={parts:new Array(4)},L,O,C=[];l=0;var te=this.bytes;n=te[l++]|te[l++]<<8|te[l++]<<16|te[l++]<<24,r=te[l++]|te[l++]<<8|te[l++]<<16|te[l++]<<24,e=te[l++]|te[l++]<<8|te[l++]<<16|te[l++]<<24,t=te[l++]|te[l++]<<8|te[l++]<<16|te[l++]<<24,l=0;var H={low:new Ne(n,r),high:new Ne(e,t)};if(H.high.lessThan(Ne.ZERO)&&C.push("-"),i=t>>26&CO,i>>3==3){if(i===WO)return C.join("")+"Infinity";if(i===KO)return"NaN";f=t>>15&H_,g=8+(t>>14&1)}else g=t>>14&7,f=t>>17&H_;if(c=f-Zw,T.parts[0]=(t&16383)+((g&15)<<14),T.parts[1]=e,T.parts[2]=r,T.parts[3]=n,T.parts[0]===0&&T.parts[1]===0&&T.parts[2]===0&&T.parts[3]===0)p=!0;else for(O=3;O>=0;O--){var M=0,R=UO(T);if(T=R.quotient,M=R.rem.low_,!!M)for(L=8;L>=0;L--)s[O*9+L]=M%10,M=Math.floor(M/10)}if(p)o=1,s[l]=0;else for(o=36,u=0;!s[l];)u++,o=o-1,l=l+1;if(w=o-1+c,w>=34||w<=-7||c>0){for(C.push(s[l++]),o=o-1,o&&C.push("."),u=0;u<o;u++)C.push(s[l++]);C.push("E"),w>0?C.push("+"+w):C.push(w)}else if(c>=0)for(u=0;u<o;u++)C.push(s[l++]);else{var F=o+c;if(F>0)for(u=0;u<F;u++)C.push(s[l++]);else C.push("0");for(C.push(".");F++<0;)C.push("0");for(u=0;u<o-Math.max(F-1,0);u++)C.push(s[l++])}return C.join("")};xr.prototype.toJSON=function(){return{$numberDecimal:this.toString()}};Jw.exports=xr;Jw.exports.Decimal128=xr});var Qc=k((ZL,Qw)=>{function Jc(){if(!(this instanceof Jc))return new Jc;this._bsontype="MinKey"}Qw.exports=Jc;Qw.exports.MinKey=Jc});var $c=k((JL,Xw)=>{function Xc(){if(!(this instanceof Xc))return new Xc;this._bsontype="MaxKey"}Xw.exports=Xc;Xw.exports.MaxKey=Xc});var ep=k((QL,$w)=>{function wl(t,e,r){if(!(this instanceof wl))return new wl(t,e,r);this._bsontype="DBRef",this.namespace=t,this.oid=e,this.db=r}wl.prototype.toJSON=function(){return{$ref:this.namespace,$id:this.oid,$db:this.db==null?"":this.db}};$w.exports=wl;$w.exports.DBRef=wl});var U_=k(tp=>{"use strict";tp.byteLength=GO;tp.toByteArray=JO;tp.fromByteArray=$O;var Qn=[],$r=[],YO=typeof Uint8Array!="undefined"?Uint8Array:Array,eh="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(bo=0,M_=eh.length;bo<M_;++bo)Qn[bo]=eh[bo],$r[eh.charCodeAt(bo)]=bo;var bo,M_;$r["-".charCodeAt(0)]=62;$r["_".charCodeAt(0)]=63;function z_(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 GO(t){var e=z_(t),r=e[0],n=e[1];return(r+n)*3/4-n}function ZO(t,e,r){return(e+r)*3/4-r}function JO(t){var e,r=z_(t),n=r[0],i=r[1],f=new YO(ZO(t,n,i)),o=0,s=i>0?n-4:n,u;for(u=0;u<s;u+=4)e=$r[t.charCodeAt(u)]<<18|$r[t.charCodeAt(u+1)]<<12|$r[t.charCodeAt(u+2)]<<6|$r[t.charCodeAt(u+3)],f[o++]=e>>16&255,f[o++]=e>>8&255,f[o++]=e&255;return i===2&&(e=$r[t.charCodeAt(u)]<<2|$r[t.charCodeAt(u+1)]>>4,f[o++]=e&255),i===1&&(e=$r[t.charCodeAt(u)]<<10|$r[t.charCodeAt(u+1)]<<4|$r[t.charCodeAt(u+2)]>>2,f[o++]=e>>8&255,f[o++]=e&255),f}function QO(t){return Qn[t>>18&63]+Qn[t>>12&63]+Qn[t>>6&63]+Qn[t&63]}function XO(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(QO(n));return i.join("")}function $O(t){for(var e,r=t.length,n=r%3,i=[],f=16383,o=0,s=r-n;o<s;o+=f)i.push(XO(t,o,o+f>s?s:o+f));return n===1?(e=t[r-1],i.push(Qn[e>>2]+Qn[e<<4&63]+"==")):n===2&&(e=(t[r-2]<<8)+t[r-1],i.push(Qn[e>>10]+Qn[e>>4&63]+Qn[e<<2&63]+"=")),i.join("")}});var L_=k(th=>{th.read=function(t,e,r,n,i){var f,o,s=i*8-n-1,u=(1<<s)-1,l=u>>1,c=-7,w=r?i-1:0,p=r?-1:1,g=t[e+w];for(w+=p,f=g&(1<<-c)-1,g>>=-c,c+=s;c>0;f=f*256+t[e+w],w+=p,c-=8);for(o=f&(1<<-c)-1,f>>=-c,c+=n;c>0;o=o*256+t[e+w],w+=p,c-=8);if(f===0)f=1-l;else{if(f===u)return o?NaN:(g?-1:1)*(1/0);o=o+Math.pow(2,n),f=f-l}return(g?-1:1)*o*Math.pow(2,f-n)};th.write=function(t,e,r,n,i,f){var o,s,u,l=f*8-i-1,c=(1<<l)-1,w=c>>1,p=i===23?Math.pow(2,-24)-Math.pow(2,-77):0,g=n?0:f-1,T=n?1:-1,L=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=c):(o=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-o))<1&&(o--,u*=2),o+w>=1?e+=p/u:e+=p*Math.pow(2,1-w),e*u>=2&&(o++,u/=2),o+w>=c?(s=0,o=c):o+w>=1?(s=(e*u-1)*Math.pow(2,i),o=o+w):(s=e*Math.pow(2,w-1)*Math.pow(2,i),o=0));i>=8;t[r+g]=s&255,g+=T,s/=256,i-=8);for(o=o<<i|s,l+=i;l>0;t[r+g]=o&255,g+=T,o/=256,l-=8);t[r+g-T]|=L*128}});var tv=k(bs=>{"use strict";var rh=U_(),hs=L_(),V_=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;bs.Buffer=D;bs.SlowBuffer=f4;bs.INSPECT_MAX_BYTES=50;var rp=2147483647;bs.kMaxLength=rp;D.TYPED_ARRAY_SUPPORT=e4();!D.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 e4(){try{var t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),t.foo()===42}catch{return!1}}Object.defineProperty(D.prototype,"parent",{enumerable:!0,get:function(){if(!!D.isBuffer(this))return this.buffer}});Object.defineProperty(D.prototype,"offset",{enumerable:!0,get:function(){if(!!D.isBuffer(this))return this.byteOffset}});function Di(t){if(t>rp)throw new RangeError('The value "'+t+'" is invalid for option "size"');var e=new Uint8Array(t);return Object.setPrototypeOf(e,D.prototype),e}function D(t,e,r){if(typeof t=="number"){if(typeof e=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return nh(t)}return C_(t,e,r)}D.poolSize=8192;function C_(t,e,r){if(typeof t=="string")return r4(t,e);if(ArrayBuffer.isView(t))return n4(t);if(t==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(Xn(t,ArrayBuffer)||t&&Xn(t.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(Xn(t,SharedArrayBuffer)||t&&Xn(t.buffer,SharedArrayBuffer)))return fh(t,e,r);if(typeof t=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var n=t.valueOf&&t.valueOf();if(n!=null&&n!==t)return D.from(n,e,r);var i=i4(t);if(i)return i;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof t[Symbol.toPrimitive]=="function")return D.from(t[Symbol.toPrimitive]("string"),e,r);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}D.from=function(t,e,r){return C_(t,e,r)};Object.setPrototypeOf(D.prototype,Uint8Array.prototype);Object.setPrototypeOf(D,Uint8Array);function W_(t){if(typeof t!="number")throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function t4(t,e,r){return W_(t),t<=0?Di(t):e!==void 0?typeof r=="string"?Di(t).fill(e,r):Di(t).fill(e):Di(t)}D.alloc=function(t,e,r){return t4(t,e,r)};function nh(t){return W_(t),Di(t<0?0:oh(t)|0)}D.allocUnsafe=function(t){return nh(t)};D.allocUnsafeSlow=function(t){return nh(t)};function r4(t,e){if((typeof e!="string"||e==="")&&(e="utf8"),!D.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var r=K_(t,e)|0,n=Di(r),i=n.write(t,e);return i!==r&&(n=n.slice(0,i)),n}function ih(t){for(var e=t.length<0?0:oh(t.length)|0,r=Di(e),n=0;n<e;n+=1)r[n]=t[n]&255;return r}function n4(t){if(Xn(t,Uint8Array)){var e=new Uint8Array(t);return fh(e.buffer,e.byteOffset,e.byteLength)}return ih(t)}function fh(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(r||0))throw new RangeError('"length" is outside of buffer bounds');var n;return e===void 0&&r===void 0?n=new Uint8Array(t):r===void 0?n=new Uint8Array(t,e):n=new Uint8Array(t,e,r),Object.setPrototypeOf(n,D.prototype),n}function i4(t){if(D.isBuffer(t)){var e=oh(t.length)|0,r=Di(e);return r.length===0||t.copy(r,0,0,e),r}if(t.length!==void 0)return typeof t.length!="number"||ah(t.length)?Di(0):ih(t);if(t.type==="Buffer"&&Array.isArray(t.data))return ih(t.data)}function oh(t){if(t>=rp)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+rp.toString(16)+" bytes");return t|0}function f4(t){return+t!=t&&(t=0),D.alloc(+t)}D.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==D.prototype};D.compare=function(e,r){if(Xn(e,Uint8Array)&&(e=D.from(e,e.offset,e.byteLength)),Xn(r,Uint8Array)&&(r=D.from(r,r.offset,r.byteLength)),!D.isBuffer(e)||!D.isBuffer(r))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===r)return 0;for(var n=e.length,i=r.length,f=0,o=Math.min(n,i);f<o;++f)if(e[f]!==r[f]){n=e[f],i=r[f];break}return n<i?-1:i<n?1:0};D.isEncoding=function(e){switch(String(e).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}};D.concat=function(e,r){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(e.length===0)return D.alloc(0);var n;if(r===void 0)for(r=0,n=0;n<e.length;++n)r+=e[n].length;var i=D.allocUnsafe(r),f=0;for(n=0;n<e.length;++n){var o=e[n];if(Xn(o,Uint8Array))f+o.length>i.length?D.from(o).copy(i,f):Uint8Array.prototype.set.call(i,o,f);else if(D.isBuffer(o))o.copy(i,f);else throw new TypeError('"list" argument must be an Array of Buffers');f+=o.length}return i};function K_(t,e){if(D.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||Xn(t,ArrayBuffer))return t.byteLength;if(typeof t!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var r=t.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&r===0)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return sh(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r*2;case"hex":return r>>>1;case"base64":return ev(t).length;default:if(i)return n?-1:sh(t).length;e=(""+e).toLowerCase(),i=!0}}D.byteLength=K_;function o4(t,e,r){var n=!1;if((e===void 0||e<0)&&(e=0),e>this.length||((r===void 0||r>this.length)&&(r=this.length),r<=0)||(r>>>=0,e>>>=0,r<=e))return"";for(t||(t="utf8");;)switch(t){case"hex":return h4(this,e,r);case"utf8":case"utf-8":return Z_(this,e,r);case"ascii":return m4(this,e,r);case"latin1":case"binary":return w4(this,e,r);case"base64":return p4(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return b4(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}D.prototype._isBuffer=!0;function go(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}D.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var r=0;r<e;r+=2)go(this,r,r+1);return this};D.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var r=0;r<e;r+=4)go(this,r,r+3),go(this,r+1,r+2);return this};D.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var r=0;r<e;r+=8)go(this,r,r+7),go(this,r+1,r+6),go(this,r+2,r+5),go(this,r+3,r+4);return this};D.prototype.toString=function(){var e=this.length;return e===0?"":arguments.length===0?Z_(this,0,e):o4.apply(this,arguments)};D.prototype.toLocaleString=D.prototype.toString;D.prototype.equals=function(e){if(!D.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e?!0:D.compare(this,e)===0};D.prototype.inspect=function(){var e="",r=bs.INSPECT_MAX_BYTES;return e=this.toString("hex",0,r).replace(/(.{2})/g,"$1 ").trim(),this.length>r&&(e+=" ... "),"<Buffer "+e+">"};V_&&(D.prototype[V_]=D.prototype.inspect);D.prototype.compare=function(e,r,n,i,f){if(Xn(e,Uint8Array)&&(e=D.from(e,e.offset,e.byteLength)),!D.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(r===void 0&&(r=0),n===void 0&&(n=e?e.length:0),i===void 0&&(i=0),f===void 0&&(f=this.length),r<0||n>e.length||i<0||f>this.length)throw new RangeError("out of range index");if(i>=f&&r>=n)return 0;if(i>=f)return-1;if(r>=n)return 1;if(r>>>=0,n>>>=0,i>>>=0,f>>>=0,this===e)return 0;for(var o=f-i,s=n-r,u=Math.min(o,s),l=this.slice(i,f),c=e.slice(r,n),w=0;w<u;++w)if(l[w]!==c[w]){o=l[w],s=c[w];break}return o<s?-1:s<o?1:0};function Y_(t,e,r,n,i){if(t.length===0)return-1;if(typeof r=="string"?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,ah(r)&&(r=i?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(i)return-1;r=t.length-1}else if(r<0)if(i)r=0;else return-1;if(typeof e=="string"&&(e=D.from(e,n)),D.isBuffer(e))return e.length===0?-1:G_(t,e,r,n,i);if(typeof e=="number")return e=e&255,typeof Uint8Array.prototype.indexOf=="function"?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):G_(t,[e],r,n,i);throw new TypeError("val must be string, number or Buffer")}function G_(t,e,r,n,i){var f=1,o=t.length,s=e.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(t.length<2||e.length<2)return-1;f=2,o/=2,s/=2,r/=2}function u(g,T){return f===1?g[T]:g.readUInt16BE(T*f)}var l;if(i){var c=-1;for(l=r;l<o;l++)if(u(t,l)===u(e,c===-1?0:l-c)){if(c===-1&&(c=l),l-c+1===s)return c*f}else c!==-1&&(l-=l-c),c=-1}else for(r+s>o&&(r=o-s),l=r;l>=0;l--){for(var w=!0,p=0;p<s;p++)if(u(t,l+p)!==u(e,p)){w=!1;break}if(w)return l}return-1}D.prototype.includes=function(e,r,n){return this.indexOf(e,r,n)!==-1};D.prototype.indexOf=function(e,r,n){return Y_(this,e,r,n,!0)};D.prototype.lastIndexOf=function(e,r,n){return Y_(this,e,r,n,!1)};function s4(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n),n>i&&(n=i)):n=i;var f=e.length;n>f/2&&(n=f/2);for(var o=0;o<n;++o){var s=parseInt(e.substr(o*2,2),16);if(ah(s))return o;t[r+o]=s}return o}function a4(t,e,r,n){return np(sh(e,t.length-r),t,r,n)}function l4(t,e,r,n){return np(j4(e),t,r,n)}function u4(t,e,r,n){return np(ev(e),t,r,n)}function c4(t,e,r,n){return np(q4(e,t.length-r),t,r,n)}D.prototype.write=function(e,r,n,i){if(r===void 0)i="utf8",n=this.length,r=0;else if(n===void 0&&typeof r=="string")i=r,n=this.length,r=0;else if(isFinite(r))r=r>>>0,isFinite(n)?(n=n>>>0,i===void 0&&(i="utf8")):(i=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var f=this.length-r;if((n===void 0||n>f)&&(n=f),e.length>0&&(n<0||r<0)||r>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return s4(this,e,r,n);case"utf8":case"utf-8":return a4(this,e,r,n);case"ascii":case"latin1":case"binary":return l4(this,e,r,n);case"base64":return u4(this,e,r,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return c4(this,e,r,n);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}};D.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function p4(t,e,r){return e===0&&r===t.length?rh.fromByteArray(t):rh.fromByteArray(t.slice(e,r))}function Z_(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i<r;){var f=t[i],o=null,s=f>239?4:f>223?3:f>191?2:1;if(i+s<=r){var u,l,c,w;switch(s){case 1:f<128&&(o=f);break;case 2:u=t[i+1],(u&192)==128&&(w=(f&31)<<6|u&63,w>127&&(o=w));break;case 3:u=t[i+1],l=t[i+2],(u&192)==128&&(l&192)==128&&(w=(f&15)<<12|(u&63)<<6|l&63,w>2047&&(w<55296||w>57343)&&(o=w));break;case 4:u=t[i+1],l=t[i+2],c=t[i+3],(u&192)==128&&(l&192)==128&&(c&192)==128&&(w=(f&15)<<18|(u&63)<<12|(l&63)<<6|c&63,w>65535&&w<1114112&&(o=w))}}o===null?(o=65533,s=1):o>65535&&(o-=65536,n.push(o>>>10&1023|55296),o=56320|o&1023),n.push(o),i+=s}return d4(n)}var J_=4096;function d4(t){var e=t.length;if(e<=J_)return String.fromCharCode.apply(String,t);for(var r="",n=0;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=J_));return r}function m4(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]&127);return n}function w4(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]);return n}function h4(t,e,r){var n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n);for(var i="",f=e;f<r;++f)i+=_4[t[f]];return i}function b4(t,e,r){for(var n=t.slice(e,r),i="",f=0;f<n.length-1;f+=2)i+=String.fromCharCode(n[f]+n[f+1]*256);return i}D.prototype.slice=function(e,r){var n=this.length;e=~~e,r=r===void 0?n:~~r,e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),r<0?(r+=n,r<0&&(r=0)):r>n&&(r=n),r<e&&(r=e);var i=this.subarray(e,r);return Object.setPrototypeOf(i,D.prototype),i};function Xt(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>r)throw new RangeError("Trying to access beyond buffer length")}D.prototype.readUintLE=D.prototype.readUIntLE=function(e,r,n){e=e>>>0,r=r>>>0,n||Xt(e,r,this.length);for(var i=this[e],f=1,o=0;++o<r&&(f*=256);)i+=this[e+o]*f;return i};D.prototype.readUintBE=D.prototype.readUIntBE=function(e,r,n){e=e>>>0,r=r>>>0,n||Xt(e,r,this.length);for(var i=this[e+--r],f=1;r>0&&(f*=256);)i+=this[e+--r]*f;return i};D.prototype.readUint8=D.prototype.readUInt8=function(e,r){return e=e>>>0,r||Xt(e,1,this.length),this[e]};D.prototype.readUint16LE=D.prototype.readUInt16LE=function(e,r){return e=e>>>0,r||Xt(e,2,this.length),this[e]|this[e+1]<<8};D.prototype.readUint16BE=D.prototype.readUInt16BE=function(e,r){return e=e>>>0,r||Xt(e,2,this.length),this[e]<<8|this[e+1]};D.prototype.readUint32LE=D.prototype.readUInt32LE=function(e,r){return e=e>>>0,r||Xt(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216};D.prototype.readUint32BE=D.prototype.readUInt32BE=function(e,r){return e=e>>>0,r||Xt(e,4,this.length),this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])};D.prototype.readIntLE=function(e,r,n){e=e>>>0,r=r>>>0,n||Xt(e,r,this.length);for(var i=this[e],f=1,o=0;++o<r&&(f*=256);)i+=this[e+o]*f;return f*=128,i>=f&&(i-=Math.pow(2,8*r)),i};D.prototype.readIntBE=function(e,r,n){e=e>>>0,r=r>>>0,n||Xt(e,r,this.length);for(var i=r,f=1,o=this[e+--i];i>0&&(f*=256);)o+=this[e+--i]*f;return f*=128,o>=f&&(o-=Math.pow(2,8*r)),o};D.prototype.readInt8=function(e,r){return e=e>>>0,r||Xt(e,1,this.length),this[e]&128?(255-this[e]+1)*-1:this[e]};D.prototype.readInt16LE=function(e,r){e=e>>>0,r||Xt(e,2,this.length);var n=this[e]|this[e+1]<<8;return n&32768?n|4294901760:n};D.prototype.readInt16BE=function(e,r){e=e>>>0,r||Xt(e,2,this.length);var n=this[e+1]|this[e]<<8;return n&32768?n|4294901760:n};D.prototype.readInt32LE=function(e,r){return e=e>>>0,r||Xt(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24};D.prototype.readInt32BE=function(e,r){return e=e>>>0,r||Xt(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]};D.prototype.readFloatLE=function(e,r){return e=e>>>0,r||Xt(e,4,this.length),hs.read(this,e,!0,23,4)};D.prototype.readFloatBE=function(e,r){return e=e>>>0,r||Xt(e,4,this.length),hs.read(this,e,!1,23,4)};D.prototype.readDoubleLE=function(e,r){return e=e>>>0,r||Xt(e,8,this.length),hs.read(this,e,!0,52,8)};D.prototype.readDoubleBE=function(e,r){return e=e>>>0,r||Xt(e,8,this.length),hs.read(this,e,!1,52,8)};function Sr(t,e,r,n,i,f){if(!D.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<f)throw new RangeError('"value" argument is out of bounds');if(r+n>t.length)throw new RangeError("Index out of range")}D.prototype.writeUintLE=D.prototype.writeUIntLE=function(e,r,n,i){if(e=+e,r=r>>>0,n=n>>>0,!i){var f=Math.pow(2,8*n)-1;Sr(this,e,r,n,f,0)}var o=1,s=0;for(this[r]=e&255;++s<n&&(o*=256);)this[r+s]=e/o&255;return r+n};D.prototype.writeUintBE=D.prototype.writeUIntBE=function(e,r,n,i){if(e=+e,r=r>>>0,n=n>>>0,!i){var f=Math.pow(2,8*n)-1;Sr(this,e,r,n,f,0)}var o=n-1,s=1;for(this[r+o]=e&255;--o>=0&&(s*=256);)this[r+o]=e/s&255;return r+n};D.prototype.writeUint8=D.prototype.writeUInt8=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,1,255,0),this[r]=e&255,r+1};D.prototype.writeUint16LE=D.prototype.writeUInt16LE=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,2,65535,0),this[r]=e&255,this[r+1]=e>>>8,r+2};D.prototype.writeUint16BE=D.prototype.writeUInt16BE=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,2,65535,0),this[r]=e>>>8,this[r+1]=e&255,r+2};D.prototype.writeUint32LE=D.prototype.writeUInt32LE=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,4,4294967295,0),this[r+3]=e>>>24,this[r+2]=e>>>16,this[r+1]=e>>>8,this[r]=e&255,r+4};D.prototype.writeUint32BE=D.prototype.writeUInt32BE=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,4,4294967295,0),this[r]=e>>>24,this[r+1]=e>>>16,this[r+2]=e>>>8,this[r+3]=e&255,r+4};D.prototype.writeIntLE=function(e,r,n,i){if(e=+e,r=r>>>0,!i){var f=Math.pow(2,8*n-1);Sr(this,e,r,n,f-1,-f)}var o=0,s=1,u=0;for(this[r]=e&255;++o<n&&(s*=256);)e<0&&u===0&&this[r+o-1]!==0&&(u=1),this[r+o]=(e/s>>0)-u&255;return r+n};D.prototype.writeIntBE=function(e,r,n,i){if(e=+e,r=r>>>0,!i){var f=Math.pow(2,8*n-1);Sr(this,e,r,n,f-1,-f)}var o=n-1,s=1,u=0;for(this[r+o]=e&255;--o>=0&&(s*=256);)e<0&&u===0&&this[r+o+1]!==0&&(u=1),this[r+o]=(e/s>>0)-u&255;return r+n};D.prototype.writeInt8=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,1,127,-128),e<0&&(e=255+e+1),this[r]=e&255,r+1};D.prototype.writeInt16LE=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,2,32767,-32768),this[r]=e&255,this[r+1]=e>>>8,r+2};D.prototype.writeInt16BE=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,2,32767,-32768),this[r]=e>>>8,this[r+1]=e&255,r+2};D.prototype.writeInt32LE=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,4,2147483647,-2147483648),this[r]=e&255,this[r+1]=e>>>8,this[r+2]=e>>>16,this[r+3]=e>>>24,r+4};D.prototype.writeInt32BE=function(e,r,n){return e=+e,r=r>>>0,n||Sr(this,e,r,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[r]=e>>>24,this[r+1]=e>>>16,this[r+2]=e>>>8,this[r+3]=e&255,r+4};function Q_(t,e,r,n,i,f){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function X_(t,e,r,n,i){return e=+e,r=r>>>0,i||Q_(t,e,r,4,34028234663852886e22,-34028234663852886e22),hs.write(t,e,r,n,23,4),r+4}D.prototype.writeFloatLE=function(e,r,n){return X_(this,e,r,!0,n)};D.prototype.writeFloatBE=function(e,r,n){return X_(this,e,r,!1,n)};function $_(t,e,r,n,i){return e=+e,r=r>>>0,i||Q_(t,e,r,8,17976931348623157e292,-17976931348623157e292),hs.write(t,e,r,n,52,8),r+8}D.prototype.writeDoubleLE=function(e,r,n){return $_(this,e,r,!0,n)};D.prototype.writeDoubleBE=function(e,r,n){return $_(this,e,r,!1,n)};D.prototype.copy=function(e,r,n,i){if(!D.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!i&&i!==0&&(i=this.length),r>=e.length&&(r=e.length),r||(r=0),i>0&&i<n&&(i=n),i===n||e.length===0||this.length===0)return 0;if(r<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),e.length-r<i-n&&(i=e.length-r+n);var f=i-n;return this===e&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(r,n,i):Uint8Array.prototype.set.call(e,this.subarray(n,i),r),f};D.prototype.fill=function(e,r,n,i){if(typeof e=="string"){if(typeof r=="string"?(i=r,r=0,n=this.length):typeof n=="string"&&(i=n,n=this.length),i!==void 0&&typeof i!="string")throw new TypeError("encoding must be a string");if(typeof i=="string"&&!D.isEncoding(i))throw new TypeError("Unknown encoding: "+i);if(e.length===1){var f=e.charCodeAt(0);(i==="utf8"&&f<128||i==="latin1")&&(e=f)}}else typeof e=="number"?e=e&255:typeof e=="boolean"&&(e=Number(e));if(r<0||this.length<r||this.length<n)throw new RangeError("Out of range index");if(n<=r)return this;r=r>>>0,n=n===void 0?this.length:n>>>0,e||(e=0);var o;if(typeof e=="number")for(o=r;o<n;++o)this[o]=e;else{var s=D.isBuffer(e)?e:D.from(e,i),u=s.length;if(u===0)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(o=0;o<n-r;++o)this[o+r]=s[o%u]}return this};var g4=/[^+/0-9A-Za-z-_]/g;function y4(t){if(t=t.split("=")[0],t=t.trim().replace(g4,""),t.length<2)return"";for(;t.length%4!=0;)t=t+"=";return t}function sh(t,e){e=e||1/0;for(var r,n=t.length,i=null,f=[],o=0;o<n;++o){if(r=t.charCodeAt(o),r>55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&f.push(239,191,189);continue}else if(o+1===n){(e-=3)>-1&&f.push(239,191,189);continue}i=r;continue}if(r<56320){(e-=3)>-1&&f.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(e-=3)>-1&&f.push(239,191,189);if(i=null,r<128){if((e-=1)<0)break;f.push(r)}else if(r<2048){if((e-=2)<0)break;f.push(r>>6|192,r&63|128)}else if(r<65536){if((e-=3)<0)break;f.push(r>>12|224,r>>6&63|128,r&63|128)}else if(r<1114112){if((e-=4)<0)break;f.push(r>>18|240,r>>12&63|128,r>>6&63|128,r&63|128)}else throw new Error("Invalid code point")}return f}function j4(t){for(var e=[],r=0;r<t.length;++r)e.push(t.charCodeAt(r)&255);return e}function q4(t,e){for(var r,n,i,f=[],o=0;o<t.length&&!((e-=2)<0);++o)r=t.charCodeAt(o),n=r>>8,i=r%256,f.push(i),f.push(n);return f}function ev(t){return rh.toByteArray(y4(t))}function np(t,e,r,n){for(var i=0;i<n&&!(i+r>=e.length||i>=t.length);++i)e[i+r]=t[i];return i}function Xn(t,e){return t instanceof e||t!=null&&t.constructor!=null&&t.constructor.name!=null&&t.constructor.name===e.name}function ah(t){return t!==t}var _4=function(){for(var t="0123456789abcdef",e=new Array(256),r=0;r<16;++r)for(var n=r*16,i=0;i<16;++i)e[n+i]=t[r]+t[i];return e}()});var hl=k((t8,lh)=>{typeof global!="undefined"&&(ir=tv().Buffer);var ir,ip=mf();function wt(t,e){if(!(this instanceof wt))return new wt(t,e);if(t!=null&&typeof t!="string"&&!ir.isBuffer(t)&&!(t instanceof Uint8Array)&&!Array.isArray(t))throw new Error("only String, Buffer, Uint8Array or Array accepted");if(this._bsontype="Binary",t instanceof Number?(this.sub_type=t,this.position=0):(this.sub_type=e??v4,this.position=0),t!=null&&!(t instanceof Number)){if(typeof t=="string")if(typeof ir!="undefined")this.buffer=ip.toBuffer(t);else if(typeof Uint8Array!="undefined"||Object.prototype.toString.call(t)==="[object Array]")this.buffer=T4(t);else throw new Error("only String, Buffer, Uint8Array or Array accepted");else this.buffer=t;this.position=t.length}else typeof ir!="undefined"?this.buffer=ip.allocBuffer(wt.BUFFER_SIZE):typeof Uint8Array!="undefined"?this.buffer=new Uint8Array(new ArrayBuffer(wt.BUFFER_SIZE)):this.buffer=new Array(wt.BUFFER_SIZE),this.position=0}wt.prototype.put=function(e){if(e.length!=null&&typeof e!="number"&&e.length!==1)throw new Error("only accepts single character String, Uint8Array or Array");if(typeof e!="number"&&e<0||e>255)throw new Error("only accepts number in a valid unsigned byte range 0-255");var r=null;if(typeof e=="string"?r=e.charCodeAt(0):e.length!=null?r=e[0]:r=e,this.buffer.length>this.position)this.buffer[this.position++]=r;else if(typeof ir!="undefined"&&ir.isBuffer(this.buffer)){var n=ip.allocBuffer(wt.BUFFER_SIZE+this.buffer.length);this.buffer.copy(n,0,0,this.buffer.length),this.buffer=n,this.buffer[this.position++]=r}else{n=null,Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"?n=new Uint8Array(new ArrayBuffer(wt.BUFFER_SIZE+this.buffer.length)):n=new Array(wt.BUFFER_SIZE+this.buffer.length);for(var i=0;i<this.buffer.length;i++)n[i]=this.buffer[i];this.buffer=n,this.buffer[this.position++]=r}};wt.prototype.write=function(e,r){if(r=typeof r=="number"?r:this.position,this.buffer.length<r+e.length){var n=null;if(typeof ir!="undefined"&&ir.isBuffer(this.buffer))n=ip.allocBuffer(this.buffer.length+e.length),this.buffer.copy(n,0,0,this.buffer.length);else if(Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"){n=new Uint8Array(new ArrayBuffer(this.buffer.length+e.length));for(var i=0;i<this.position;i++)n[i]=this.buffer[i]}this.buffer=n}if(typeof ir!="undefined"&&ir.isBuffer(e)&&ir.isBuffer(this.buffer))e.copy(this.buffer,r,0,e.length),this.position=r+e.length>this.position?r+e.length:this.position;else if(typeof ir!="undefined"&&typeof e=="string"&&ir.isBuffer(this.buffer))this.buffer.write(e,r,"binary"),this.position=r+e.length>this.position?r+e.length:this.position;else if(Object.prototype.toString.call(e)==="[object Uint8Array]"||Object.prototype.toString.call(e)==="[object Array]"&&typeof e!="string"){for(i=0;i<e.length;i++)this.buffer[r++]=e[i];this.position=r>this.position?r:this.position}else if(typeof e=="string"){for(i=0;i<e.length;i++)this.buffer[r++]=e.charCodeAt(i);this.position=r>this.position?r:this.position}};wt.prototype.read=function(e,r){if(r=r&&r>0?r:this.position,this.buffer.slice)return this.buffer.slice(e,e+r);for(var n=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(r)):new Array(r),i=0;i<r;i++)n[i]=this.buffer[e++];return n};wt.prototype.value=function(e){if(e=e??!1,e&&typeof ir!="undefined"&&ir.isBuffer(this.buffer)&&this.buffer.length===this.position)return this.buffer;if(typeof ir!="undefined"&&ir.isBuffer(this.buffer))return e?this.buffer.slice(0,this.position):this.buffer.toString("binary",0,this.position);if(e){if(this.buffer.slice!=null)return this.buffer.slice(0,this.position);for(var r=Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"?new Uint8Array(new ArrayBuffer(this.position)):new Array(this.position),n=0;n<this.position;n++)r[n]=this.buffer[n];return r}else return k4(this.buffer,0,this.position)};wt.prototype.length=function(){return this.position};wt.prototype.toJSON=function(){return this.buffer!=null?this.buffer.toString("base64"):""};wt.prototype.toString=function(t){return this.buffer!=null?this.buffer.slice(0,this.position).toString(t):""};var v4=0,T4=function(t){for(var e=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(t.length)):new Array(t.length),r=0;r<t.length;r++)e[r]=t.charCodeAt(r);return e},k4=function(t,e,r){for(var n="",i=e;i<r;i++)n=n+String.fromCharCode(t[i]);return n};wt.BUFFER_SIZE=256;wt.SUBTYPE_DEFAULT=0;wt.SUBTYPE_FUNCTION=1;wt.SUBTYPE_BYTE_ARRAY=2;wt.SUBTYPE_UUID_OLD=3;wt.SUBTYPE_UUID=4;wt.SUBTYPE_MD5=5;wt.SUBTYPE_USER_DEFINED=128;lh.exports=wt;lh.exports.Binary=wt});var rv=k((exports,module)=>{"use strict";var Long=ds().Long,Double=Nc().Double,Timestamp=Rc().Timestamp,ObjectID=zc().ObjectID,Symbol=Vc().Symbol,Code=Cc().Code,MinKey=Qc().MinKey,MaxKey=$c().MaxKey,Decimal128=Zc(),Int32=Kw(),DBRef=ep().DBRef,BSONRegExp=Lc().BSONRegExp,Binary=hl().Binary,utils=mf(),deserialize=function(t,e,r){e=e??{};var n=e&&e.index?e.index:0,i=t[n]|t[n+1]<<8|t[n+2]<<16|t[n+3]<<24;if(i<5||t.length<i||i+n>t.length)throw new Error("corrupt bson message");if(t[n+i-1]!==0)throw new Error("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00");return deserializeObject(t,n,e,r)},deserializeObject=function(t,e,r,n){var i=r.evalFunctions==null?!1:r.evalFunctions,f=r.cacheFunctions==null?!1:r.cacheFunctions,o=r.cacheFunctionsCrc32==null?!1:r.cacheFunctionsCrc32;if(!o)var s=null;var u=r.fieldsAsRaw==null?null:r.fieldsAsRaw,l=r.raw==null?!1:r.raw,c=typeof r.bsonRegExp=="boolean"?r.bsonRegExp:!1,w=r.promoteBuffers==null?!1:r.promoteBuffers,p=r.promoteLongs==null?!0:r.promoteLongs,g=r.promoteValues==null?!0:r.promoteValues,T=e;if(t.length<5)throw new Error("corrupt bson message < 5 bytes long");var L=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(L<5||L>t.length)throw new Error("corrupt bson message");for(var O=n?[]:{},C=0,te=!1;!te;){var H=t[e++];if(H===0)break;for(var M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");var R=n?C++:t.toString("utf8",e,M);if(e=M+1,H===BSON.BSON_DATA_STRING){var F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");O[R]=t.toString("utf8",e,e+F-1),e=e+F}else if(H===BSON.BSON_DATA_OID){var oe=utils.allocBuffer(12);t.copy(oe,0,e,e+12),O[R]=new ObjectID(oe),e=e+12}else if(H===BSON.BSON_DATA_INT&&g===!1)O[R]=new Int32(t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24);else if(H===BSON.BSON_DATA_INT)O[R]=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;else if(H===BSON.BSON_DATA_NUMBER&&g===!1)O[R]=new Double(t.readDoubleLE(e)),e=e+8;else if(H===BSON.BSON_DATA_NUMBER)O[R]=t.readDoubleLE(e),e=e+8;else if(H===BSON.BSON_DATA_DATE){var re=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,ue=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;O[R]=new Date(new Long(re,ue).toNumber())}else if(H===BSON.BSON_DATA_BOOLEAN){if(t[e]!==0&&t[e]!==1)throw new Error("illegal boolean type value");O[R]=t[e++]===1}else if(H===BSON.BSON_DATA_OBJECT){var Ye=e,q=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;if(q<=0||q>t.length-e)throw new Error("bad embedded document length in bson");l?O[R]=t.slice(e,e+q):O[R]=deserializeObject(t,Ye,r,!1),e=e+q}else if(H===BSON.BSON_DATA_ARRAY){Ye=e,q=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;var Ae=r,Ue=e+q;if(u&&u[R]){Ae={};for(var he in r)Ae[he]=r[he];Ae.raw=!0}if(O[R]=deserializeObject(t,Ye,Ae,!0),e=e+q,t[e-1]!==0)throw new Error("invalid array terminator byte");if(e!==Ue)throw new Error("corrupted array bson")}else if(H===BSON.BSON_DATA_UNDEFINED)O[R]=void 0;else if(H===BSON.BSON_DATA_NULL)O[R]=null;else if(H===BSON.BSON_DATA_LONG){re=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,ue=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;var Ge=new Long(re,ue);p&&g===!0?O[R]=Ge.lessThanOrEqual(JS_INT_MAX_LONG)&&Ge.greaterThanOrEqual(JS_INT_MIN_LONG)?Ge.toNumber():Ge:O[R]=Ge}else if(H===BSON.BSON_DATA_DECIMAL128){var $=utils.allocBuffer(16);t.copy($,0,e,e+16),e=e+16;var qt=new Decimal128($);O[R]=qt.toObject?qt.toObject():qt}else if(H===BSON.BSON_DATA_BINARY){var nt=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,Tr=nt,vi=t[e++];if(nt<0)throw new Error("Negative binary type element size found");if(nt>t.length)throw new Error("Binary type size larger than document size");if(t.slice!=null){if(vi===Binary.SUBTYPE_BYTE_ARRAY){if(nt=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,nt<0)throw new Error("Negative binary type element size found for subtype 0x02");if(nt>Tr-4)throw new Error("Binary type with subtype 0x02 contains to long binary size");if(nt<Tr-4)throw new Error("Binary type with subtype 0x02 contains to short binary size")}w&&g?O[R]=t.slice(e,e+nt):O[R]=new Binary(t.slice(e,e+nt),vi)}else{var eo=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(nt)):new Array(nt);if(vi===Binary.SUBTYPE_BYTE_ARRAY){if(nt=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,nt<0)throw new Error("Negative binary type element size found for subtype 0x02");if(nt>Tr-4)throw new Error("Binary type with subtype 0x02 contains to long binary size");if(nt<Tr-4)throw new Error("Binary type with subtype 0x02 contains to short binary size")}for(M=0;M<nt;M++)eo[M]=t[e+M];w&&g?O[R]=eo:O[R]=new Binary(eo,vi)}e=e+nt}else if(H===BSON.BSON_DATA_REGEXP&&c===!1){for(M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");var to=t.toString("utf8",e,M);for(e=M+1,M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");var Bn=t.toString("utf8",e,M);e=M+1;var Hr=new Array(Bn.length);for(M=0;M<Bn.length;M++)switch(Bn[M]){case"m":Hr[M]="m";break;case"s":Hr[M]="g";break;case"i":Hr[M]="i";break}O[R]=new RegExp(to,Hr.join(""))}else if(H===BSON.BSON_DATA_REGEXP&&c===!0){for(M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");for(to=t.toString("utf8",e,M),e=M+1,M=e;t[M]!==0&&M<t.length;)M++;if(M>=t.length)throw new Error("Bad BSON Document: illegal CString");Bn=t.toString("utf8",e,M),e=M+1,O[R]=new BSONRegExp(to,Bn)}else if(H===BSON.BSON_DATA_SYMBOL){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");O[R]=new Symbol(t.toString("utf8",e,e+F-1)),e=e+F}else if(H===BSON.BSON_DATA_TIMESTAMP)re=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,ue=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,O[R]=new Timestamp(re,ue);else if(H===BSON.BSON_DATA_MIN_KEY)O[R]=new MinKey;else if(H===BSON.BSON_DATA_MAX_KEY)O[R]=new MaxKey;else if(H===BSON.BSON_DATA_CODE){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");var Wt=t.toString("utf8",e,e+F-1);if(i)if(f){var Ti=o?s(Wt):Wt;O[R]=isolateEvalWithHash(functionCache,Ti,Wt,O)}else O[R]=isolateEval(Wt);else O[R]=new Code(Wt);e=e+F}else if(H===BSON.BSON_DATA_CODE_W_SCOPE){var In=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(In<4+4+4+1)throw new Error("code_w_scope total size shorter minimum expected length");if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");Wt=t.toString("utf8",e,e+F-1),e=e+F,Ye=e,q=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;var Un=deserializeObject(t,Ye,r,!1);if(e=e+q,In<4+4+q+F)throw new Error("code_w_scope total size is to short, truncating scope");if(In>4+4+q+F)throw new Error("code_w_scope total size is to long, clips outer document");i?(f?(Ti=o?s(Wt):Wt,O[R]=isolateEvalWithHash(functionCache,Ti,Wt,O)):O[R]=isolateEval(Wt),O[R].scope=Un):O[R]=new Code(Wt,Un)}else if(H===BSON.BSON_DATA_DBPOINTER){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");var Zo=t.toString("utf8",e,e+F-1);e=e+F;var Jo=utils.allocBuffer(12);t.copy(Jo,0,e,e+12),oe=new ObjectID(Jo),e=e+12;var hr=Zo.split("."),ro=hr.shift(),Aa=hr.join(".");O[R]=new DBRef(Aa,oe,ro)}else throw new Error("Detected unknown BSON type "+H.toString(16)+' for fieldname "'+R+'", are you using the latest BSON parser')}if(L!==e-T)throw n?new Error("corrupt array bson"):new Error("corrupt object bson");return O.$id!=null&&(O=new DBRef(O.$ref,O.$id,O.$db)),O},isolateEvalWithHash=function(functionCache,hash,functionString,object){var value=null;return functionCache[hash]==null&&(eval("value = "+functionString),functionCache[hash]=value),functionCache[hash].bind(object)},isolateEval=function(functionString){var value=null;return eval("value = "+functionString),value},BSON={},functionCache=BSON.functionCache={};BSON.BSON_DATA_NUMBER=1;BSON.BSON_DATA_STRING=2;BSON.BSON_DATA_OBJECT=3;BSON.BSON_DATA_ARRAY=4;BSON.BSON_DATA_BINARY=5;BSON.BSON_DATA_UNDEFINED=6;BSON.BSON_DATA_OID=7;BSON.BSON_DATA_BOOLEAN=8;BSON.BSON_DATA_DATE=9;BSON.BSON_DATA_NULL=10;BSON.BSON_DATA_REGEXP=11;BSON.BSON_DATA_DBPOINTER=12;BSON.BSON_DATA_CODE=13;BSON.BSON_DATA_SYMBOL=14;BSON.BSON_DATA_CODE_W_SCOPE=15;BSON.BSON_DATA_INT=16;BSON.BSON_DATA_TIMESTAMP=17;BSON.BSON_DATA_LONG=18;BSON.BSON_DATA_DECIMAL128=19;BSON.BSON_DATA_MIN_KEY=255;BSON.BSON_DATA_MAX_KEY=127;BSON.BSON_BINARY_SUBTYPE_DEFAULT=0;BSON.BSON_BINARY_SUBTYPE_FUNCTION=1;BSON.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;BSON.BSON_BINARY_SUBTYPE_UUID=3;BSON.BSON_BINARY_SUBTYPE_MD5=4;BSON.BSON_BINARY_SUBTYPE_USER_DEFINED=128;BSON.BSON_INT32_MAX=2147483647;BSON.BSON_INT32_MIN=-2147483648;BSON.BSON_INT64_MAX=Math.pow(2,63)-1;BSON.BSON_INT64_MIN=-Math.pow(2,63);BSON.JS_INT_MAX=9007199254740992;BSON.JS_INT_MIN=-9007199254740992;var JS_INT_MAX_LONG=Long.fromNumber(9007199254740992),JS_INT_MIN_LONG=Long.fromNumber(-9007199254740992);module.exports=deserialize});var nv=k(uh=>{var B4=function(t,e,r,n,i){var f,o,s=r==="big",u=i*8-n-1,l=(1<<u)-1,c=l>>1,w=-7,p=s?0:i-1,g=s?1:-1,T=t[e+p];for(p+=g,f=T&(1<<-w)-1,T>>=-w,w+=u;w>0;f=f*256+t[e+p],p+=g,w-=8);for(o=f&(1<<-w)-1,f>>=-w,w+=n;w>0;o=o*256+t[e+p],p+=g,w-=8);if(f===0)f=1-c;else{if(f===l)return o?NaN:(T?-1:1)*(1/0);o=o+Math.pow(2,n),f=f-c}return(T?-1:1)*o*Math.pow(2,f-n)},I4=function(t,e,r,n,i,f){var o,s,u,l=n==="big",c=f*8-i-1,w=(1<<c)-1,p=w>>1,g=i===23?Math.pow(2,-24)-Math.pow(2,-77):0,T=l?f-1:0,L=l?-1:1,O=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=w):(o=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-o))<1&&(o--,u*=2),o+p>=1?e+=g/u:e+=g*Math.pow(2,1-p),e*u>=2&&(o++,u/=2),o+p>=w?(s=0,o=w):o+p>=1?(s=(e*u-1)*Math.pow(2,i),o=o+p):(s=e*Math.pow(2,p-1)*Math.pow(2,i),o=0));i>=8;t[r+T]=s&255,T+=L,s/=256,i-=8);for(o=o<<i|s,c+=i;c>0;t[r+T]=o&255,T+=L,o/=256,c-=8);t[r+T-L]|=O*128};uh.readIEEE754=B4;uh.writeIEEE754=I4});var av=k((n8,sv)=>{"use strict";var ch=nv().writeIEEE754,iv=ds().Long,x4=Hw(),fv=hl().Binary,S4=mf().normalizedFunctionString,fp=/\x00/,ov=["$db","$ref","$id","$clusterTime"],ph=function(e){return typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"},dh=function(e){return Object.prototype.toString.call(e)==="[object RegExp]"},mh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_STRING;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f+1,t[n-1]=0;var o=t.write(r,n+4,"utf8");return t[n+3]=o+1>>24&255,t[n+2]=o+1>>16&255,t[n+1]=o+1>>8&255,t[n]=o+1&255,n=n+4+o,t[n++]=0,n},wh=function(t,e,r,n,i){if(Math.floor(r)===r&&r>=X.JS_INT_MIN&&r<=X.JS_INT_MAX)if(r>=X.BSON_INT32_MIN&&r<=X.BSON_INT32_MAX){t[n++]=X.BSON_DATA_INT;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0,t[n++]=r&255,t[n++]=r>>8&255,t[n++]=r>>16&255,t[n++]=r>>24&255}else if(r>=X.JS_INT_MIN&&r<=X.JS_INT_MAX)t[n++]=X.BSON_DATA_NUMBER,f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+f,t[n++]=0,ch(t,r,n,"little",52,8),n=n+8;else{t[n++]=X.BSON_DATA_LONG,f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+f,t[n++]=0;var o=iv.fromNumber(r),s=o.getLowBits(),u=o.getHighBits();t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=u&255,t[n++]=u>>8&255,t[n++]=u>>16&255,t[n++]=u>>24&255}else t[n++]=X.BSON_DATA_NUMBER,f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+f,t[n++]=0,ch(t,r,n,"little",52,8),n=n+8;return n},bl=function(t,e,r,n,i){t[n++]=X.BSON_DATA_NULL;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,n},hh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_BOOLEAN;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,t[n++]=r?1:0,n},bh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_DATE;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=iv.fromNumber(r.getTime()),s=o.getLowBits(),u=o.getHighBits();return t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=u&255,t[n++]=u>>8&255,t[n++]=u>>16&255,t[n++]=u>>24&255,n},gh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_REGEXP;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+f,t[n++]=0,r.source&&r.source.match(fp)!=null)throw Error("value "+r.source+" must not contain null bytes");return n=n+t.write(r.source,n,"utf8"),t[n++]=0,r.global&&(t[n++]=115),r.ignoreCase&&(t[n++]=105),r.multiline&&(t[n++]=109),t[n++]=0,n},yh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_REGEXP;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+f,t[n++]=0,r.pattern.match(fp)!=null)throw Error("pattern "+r.pattern+" must not contain null bytes");return n=n+t.write(r.pattern,n,"utf8"),t[n++]=0,n=n+t.write(r.options.split("").sort().join(""),n,"utf8"),t[n++]=0,n},jh=function(t,e,r,n,i){r===null?t[n++]=X.BSON_DATA_NULL:r._bsontype==="MinKey"?t[n++]=X.BSON_DATA_MIN_KEY:t[n++]=X.BSON_DATA_MAX_KEY;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,n},qh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_OID;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+f,t[n++]=0,typeof r.id=="string")t.write(r.id,n,"binary");else if(r.id&&r.id.copy)r.id.copy(t,n,0,12);else throw new Error("object ["+JSON.stringify(r)+"] is not a valid ObjectId");return n+12},_h=function(t,e,r,n,i){t[n++]=X.BSON_DATA_BINARY;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=r.length;return t[n++]=o&255,t[n++]=o>>8&255,t[n++]=o>>16&255,t[n++]=o>>24&255,t[n++]=X.BSON_BINARY_SUBTYPE_DEFAULT,r.copy(t,n,0,o),n=n+o,n},vh=function(t,e,r,n,i,f,o,s,u,l){for(var c=0;c<l.length;c++)if(l[c]===r)throw new Error("cyclic dependency detected");l.push(r),t[n++]=Array.isArray(r)?X.BSON_DATA_ARRAY:X.BSON_DATA_OBJECT;var w=u?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+w,t[n++]=0;var p=gl(t,r,i,n,f+1,o,s,l);return l.pop(),p},Th=function(t,e,r,n,i){t[n++]=X.BSON_DATA_DECIMAL128;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,r.bytes.copy(t,n,0,16),n+16},kh=function(t,e,r,n,i){t[n++]=r._bsontype==="Long"?X.BSON_DATA_LONG:X.BSON_DATA_TIMESTAMP;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=r.getLowBits(),s=r.getHighBits();return t[n++]=o&255,t[n++]=o>>8&255,t[n++]=o>>16&255,t[n++]=o>>24&255,t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,n},Bh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_INT;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,t[n++]=r&255,t[n++]=r>>8&255,t[n++]=r>>16&255,t[n++]=r>>24&255,n},Ih=function(t,e,r,n,i){t[n++]=X.BSON_DATA_NUMBER;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,ch(t,r,n,"little",52,8),n=n+8,n},xh=function(t,e,r,n,i,f,o){t[n++]=X.BSON_DATA_CODE;var s=o?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+s,t[n++]=0;var u=S4(r),l=t.write(u,n+4,"utf8")+1;return t[n]=l&255,t[n+1]=l>>8&255,t[n+2]=l>>16&255,t[n+3]=l>>24&255,n=n+4+l-1,t[n++]=0,n},Sh=function(t,e,r,n,i,f,o,s,u){if(r.scope&&typeof r.scope=="object"){t[n++]=X.BSON_DATA_CODE_W_SCOPE;var l=u?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+l,t[n++]=0;var c=n,w=typeof r.code=="string"?r.code:r.code.toString();n=n+4;var p=t.write(w,n+4,"utf8")+1;t[n]=p&255,t[n+1]=p>>8&255,t[n+2]=p>>16&255,t[n+3]=p>>24&255,t[n+4+p-1]=0,n=n+p+4;var g=gl(t,r.scope,i,n,f+1,o,s);n=g-1;var T=g-c;t[c++]=T&255,t[c++]=T>>8&255,t[c++]=T>>16&255,t[c++]=T>>24&255,t[n++]=0}else{t[n++]=X.BSON_DATA_CODE,l=u?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+l,t[n++]=0,w=r.code.toString();var L=t.write(w,n+4,"utf8")+1;t[n]=L&255,t[n+1]=L>>8&255,t[n+2]=L>>16&255,t[n+3]=L>>24&255,n=n+4+L-1,t[n++]=0}return n},Eh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_BINARY;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=r.value(!0),s=r.position;return r.sub_type===fv.SUBTYPE_BYTE_ARRAY&&(s=s+4),t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=r.sub_type,r.sub_type===fv.SUBTYPE_BYTE_ARRAY&&(s=s-4,t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255),o.copy(t,n,0,r.position),n=n+r.position,n},Ah=function(t,e,r,n,i){t[n++]=X.BSON_DATA_SYMBOL;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=t.write(r.value,n+4,"utf8")+1;return t[n]=o&255,t[n+1]=o>>8&255,t[n+2]=o>>16&255,t[n+3]=o>>24&255,n=n+4+o-1,t[n++]=0,n},Oh=function(t,e,r,n,i,f,o){t[n++]=X.BSON_DATA_OBJECT;var s=o?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+s,t[n++]=0;var u=n,l;r.db!=null?l=gl(t,{$ref:r.namespace,$id:r.oid,$db:r.db},!1,n,i+1,f):l=gl(t,{$ref:r.namespace,$id:r.oid},!1,n,i+1,f);var c=l-u;return t[u++]=c&255,t[u++]=c>>8&255,t[u++]=c>>16&255,t[u++]=c>>24&255,l},gl=function(e,r,n,i,f,o,s,u){i=i||0,u=u||[],u.push(r);var l=i+4;if(Array.isArray(r))for(var c=0;c<r.length;c++){var w=""+c,p=r[c];if(p&&p.toBSON){if(typeof p.toBSON!="function")throw new Error("toBSON is not a function");p=p.toBSON()}var g=typeof p;if(g==="string")l=mh(e,w,p,l,!0);else if(g==="number")l=wh(e,w,p,l,!0);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=hh(e,w,p,l,!0);else if(p instanceof Date||ph(p))l=bh(e,w,p,l,!0);else if(p===void 0)l=bl(e,w,p,l,!0);else if(p===null)l=bl(e,w,p,l,!0);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=qh(e,w,p,l,!0);else if(Buffer.isBuffer(p))l=_h(e,w,p,l,!0);else if(p instanceof RegExp||dh(p))l=gh(e,w,p,l,!0);else if(g==="object"&&p._bsontype==null)l=vh(e,w,p,l,n,f,o,s,!0,u);else if(g==="object"&&p._bsontype==="Decimal128")l=Th(e,w,p,l,!0);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=kh(e,w,p,l,!0);else if(p._bsontype==="Double")l=Ih(e,w,p,l,!0);else if(typeof p=="function"&&o)l=xh(e,w,p,l,n,f,o,!0);else if(p._bsontype==="Code")l=Sh(e,w,p,l,n,f,o,s,!0);else if(p._bsontype==="Binary")l=Eh(e,w,p,l,!0);else if(p._bsontype==="Symbol")l=Ah(e,w,p,l,!0);else if(p._bsontype==="DBRef")l=Oh(e,w,p,l,f,o,!0);else if(p._bsontype==="BSONRegExp")l=yh(e,w,p,l,!0);else if(p._bsontype==="Int32")l=Bh(e,w,p,l,!0);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=jh(e,w,p,l,!0);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}else if(r instanceof x4)for(var T=r.entries(),L=!1;!L;){var O=T.next();if(L=O.done,!L){if(w=O.value[0],p=O.value[1],g=typeof p,typeof w=="string"&&ov.indexOf(w)===-1){if(w.match(fp)!=null)throw Error("key "+w+" must not contain null bytes");if(n){if(w[0]==="$")throw Error("key "+w+" must not start with '$'");if(~w.indexOf("."))throw Error("key "+w+" must not contain '.'")}}if(g==="string")l=mh(e,w,p,l);else if(g==="number")l=wh(e,w,p,l);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=hh(e,w,p,l);else if(p instanceof Date||ph(p))l=bh(e,w,p,l);else if(p===null||p===void 0&&s===!1)l=bl(e,w,p,l);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=qh(e,w,p,l);else if(Buffer.isBuffer(p))l=_h(e,w,p,l);else if(p instanceof RegExp||dh(p))l=gh(e,w,p,l);else if(g==="object"&&p._bsontype==null)l=vh(e,w,p,l,n,f,o,s,!1,u);else if(g==="object"&&p._bsontype==="Decimal128")l=Th(e,w,p,l);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=kh(e,w,p,l);else if(p._bsontype==="Double")l=Ih(e,w,p,l);else if(p._bsontype==="Code")l=Sh(e,w,p,l,n,f,o,s);else if(typeof p=="function"&&o)l=xh(e,w,p,l,n,f,o);else if(p._bsontype==="Binary")l=Eh(e,w,p,l);else if(p._bsontype==="Symbol")l=Ah(e,w,p,l);else if(p._bsontype==="DBRef")l=Oh(e,w,p,l,f,o);else if(p._bsontype==="BSONRegExp")l=yh(e,w,p,l);else if(p._bsontype==="Int32")l=Bh(e,w,p,l);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=jh(e,w,p,l);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}}else{if(r.toBSON){if(typeof r.toBSON!="function")throw new Error("toBSON is not a function");if(r=r.toBSON(),r!=null&&typeof r!="object")throw new Error("toBSON function did not return an object")}for(w in r){if(p=r[w],p&&p.toBSON){if(typeof p.toBSON!="function")throw new Error("toBSON is not a function");p=p.toBSON()}if(g=typeof p,typeof w=="string"&&ov.indexOf(w)===-1){if(w.match(fp)!=null)throw Error("key "+w+" must not contain null bytes");if(n){if(w[0]==="$")throw Error("key "+w+" must not start with '$'");if(~w.indexOf("."))throw Error("key "+w+" must not contain '.'")}}if(g==="string")l=mh(e,w,p,l);else if(g==="number")l=wh(e,w,p,l);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=hh(e,w,p,l);else if(p instanceof Date||ph(p))l=bh(e,w,p,l);else if(p===void 0)s===!1&&(l=bl(e,w,p,l));else if(p===null)l=bl(e,w,p,l);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=qh(e,w,p,l);else if(Buffer.isBuffer(p))l=_h(e,w,p,l);else if(p instanceof RegExp||dh(p))l=gh(e,w,p,l);else if(g==="object"&&p._bsontype==null)l=vh(e,w,p,l,n,f,o,s,!1,u);else if(g==="object"&&p._bsontype==="Decimal128")l=Th(e,w,p,l);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=kh(e,w,p,l);else if(p._bsontype==="Double")l=Ih(e,w,p,l);else if(p._bsontype==="Code")l=Sh(e,w,p,l,n,f,o,s);else if(typeof p=="function"&&o)l=xh(e,w,p,l,n,f,o);else if(p._bsontype==="Binary")l=Eh(e,w,p,l);else if(p._bsontype==="Symbol")l=Ah(e,w,p,l);else if(p._bsontype==="DBRef")l=Oh(e,w,p,l,f,o);else if(p._bsontype==="BSONRegExp")l=yh(e,w,p,l);else if(p._bsontype==="Int32")l=Bh(e,w,p,l);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=jh(e,w,p,l);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}}u.pop(),e[l++]=0;var C=l-i;return e[i++]=C&255,e[i++]=C>>8&255,e[i++]=C>>16&255,e[i++]=C>>24&255,l},X={};X.BSON_DATA_NUMBER=1;X.BSON_DATA_STRING=2;X.BSON_DATA_OBJECT=3;X.BSON_DATA_ARRAY=4;X.BSON_DATA_BINARY=5;X.BSON_DATA_UNDEFINED=6;X.BSON_DATA_OID=7;X.BSON_DATA_BOOLEAN=8;X.BSON_DATA_DATE=9;X.BSON_DATA_NULL=10;X.BSON_DATA_REGEXP=11;X.BSON_DATA_CODE=13;X.BSON_DATA_SYMBOL=14;X.BSON_DATA_CODE_W_SCOPE=15;X.BSON_DATA_INT=16;X.BSON_DATA_TIMESTAMP=17;X.BSON_DATA_LONG=18;X.BSON_DATA_DECIMAL128=19;X.BSON_DATA_MIN_KEY=255;X.BSON_DATA_MAX_KEY=127;X.BSON_BINARY_SUBTYPE_DEFAULT=0;X.BSON_BINARY_SUBTYPE_FUNCTION=1;X.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;X.BSON_BINARY_SUBTYPE_UUID=3;X.BSON_BINARY_SUBTYPE_MD5=4;X.BSON_BINARY_SUBTYPE_USER_DEFINED=128;X.BSON_INT32_MAX=2147483647;X.BSON_INT32_MIN=-2147483648;X.BSON_INT64_MAX=Math.pow(2,63)-1;X.BSON_INT64_MIN=-Math.pow(2,63);X.JS_INT_MAX=9007199254740992;X.JS_INT_MIN=-9007199254740992;sv.exports=gl});var dv=k((i8,pv)=>{"use strict";var E4=ds().Long,A4=Nc().Double,O4=Rc().Timestamp,F4=zc().ObjectID,D4=Vc().Symbol,N4=Lc().BSONRegExp,R4=Cc().Code,P4=Zc(),H4=Qc().MinKey,M4=$c().MaxKey,z4=ep().DBRef,lv=hl().Binary,uv=mf().normalizedFunctionString,U4=function(e){return typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"},yl=function(e,r,n){var i=4+1;if(Array.isArray(e))for(var f=0;f<e.length;f++)i+=cv(f.toString(),e[f],r,!0,n);else{e.toBSON&&(e=e.toBSON());for(var o in e)i+=cv(o,e[o],r,!1,n)}return i};function cv(t,e,r,n,i){switch(e&&e.toBSON&&(e=e.toBSON()),typeof e){case"string":return 1+Buffer.byteLength(t,"utf8")+1+4+Buffer.byteLength(e,"utf8")+1;case"number":return Math.floor(e)===e&&e>=hf.JS_INT_MIN&&e<=hf.JS_INT_MAX&&e>=hf.BSON_INT32_MIN&&e<=hf.BSON_INT32_MAX?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(4+1):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);case"undefined":return n||!i?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1:0;case"boolean":return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(1+1);case"object":if(e==null||e instanceof H4||e instanceof M4||e._bsontype==="MinKey"||e._bsontype==="MaxKey")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1;if(e instanceof F4||e._bsontype==="ObjectID"||e._bsontype==="ObjectId")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(12+1);if(e instanceof Date||U4(e))return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);if(typeof Buffer!="undefined"&&Buffer.isBuffer(e))return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(1+4+1)+e.length;if(e instanceof E4||e instanceof A4||e instanceof O4||e._bsontype==="Long"||e._bsontype==="Double"||e._bsontype==="Timestamp")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);if(e instanceof P4||e._bsontype==="Decimal128")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(16+1);if(e instanceof R4||e._bsontype==="Code")return e.scope!=null&&Object.keys(e.scope).length>0?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+4+Buffer.byteLength(e.code.toString(),"utf8")+1+yl(e.scope,r,i):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+Buffer.byteLength(e.code.toString(),"utf8")+1;if(e instanceof lv||e._bsontype==="Binary")return e.sub_type===lv.SUBTYPE_BYTE_ARRAY?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(e.position+1+4+1+4):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(e.position+1+4+1);if(e instanceof D4||e._bsontype==="Symbol")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+Buffer.byteLength(e.value,"utf8")+4+1+1;if(e instanceof z4||e._bsontype==="DBRef"){var f={$ref:e.namespace,$id:e.oid};return e.db!=null&&(f.$db=e.db),(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+yl(f,r,i)}else return e instanceof RegExp||Object.prototype.toString.call(e)==="[object RegExp]"?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.source,"utf8")+1+(e.global?1:0)+(e.ignoreCase?1:0)+(e.multiline?1:0)+1:e instanceof N4||e._bsontype==="BSONRegExp"?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.pattern,"utf8")+1+Buffer.byteLength(e.options,"utf8")+1:(t!=null?Buffer.byteLength(t,"utf8")+1:0)+yl(e,r,i)+1;case"function":if(e instanceof RegExp||Object.prototype.toString.call(e)==="[object RegExp]"||String.call(e)==="[object RegExp]")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.source,"utf8")+1+(e.global?1:0)+(e.ignoreCase?1:0)+(e.multiline?1:0)+1;if(r&&e.scope!=null&&Object.keys(e.scope).length>0)return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+4+Buffer.byteLength(uv(e),"utf8")+1+yl(e.scope,r,i);if(r)return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+Buffer.byteLength(uv(e),"utf8")+1}return 0}var hf={};hf.BSON_INT32_MAX=2147483647;hf.BSON_INT32_MIN=-2147483648;hf.JS_INT_MAX=9007199254740992;hf.JS_INT_MIN=-9007199254740992;pv.exports=yl});var hv=k((f8,fr)=>{"use strict";var L4=Hw(),V4=ds(),C4=Nc(),W4=Rc(),K4=zc(),Y4=Lc(),G4=Vc(),Z4=Kw(),J4=Cc(),Q4=Zc(),X4=Qc(),$4=$c(),e2=ep(),t2=hl(),r2=rv(),mv=av(),n2=dv(),Fh=mf(),wv=1024*1024*17,op=Fh.allocBuffer(wv),ze=function(){};ze.prototype.serialize=function(e,r){r=r||{};var n=typeof r.checkKeys=="boolean"?r.checkKeys:!1,i=typeof r.serializeFunctions=="boolean"?r.serializeFunctions:!1,f=typeof r.ignoreUndefined=="boolean"?r.ignoreUndefined:!0,o=typeof r.minInternalBufferSize=="number"?r.minInternalBufferSize:wv;op.length<o&&(op=Fh.allocBuffer(o));var s=mv(op,e,n,0,0,i,f,[]),u=Fh.allocBuffer(s);return op.copy(u,0,0,u.length),u};ze.prototype.serializeWithBufferAndIndex=function(t,e,r){r=r||{};var n=typeof r.checkKeys=="boolean"?r.checkKeys:!1,i=typeof r.serializeFunctions=="boolean"?r.serializeFunctions:!1,f=typeof r.ignoreUndefined=="boolean"?r.ignoreUndefined:!0,o=typeof r.index=="number"?r.index:0,s=mv(e,t,n,o||0,0,i,f);return s-1};ze.prototype.deserialize=function(t,e){return r2(t,e)};ze.prototype.calculateObjectSize=function(t,e){e=e||{};var r=typeof e.serializeFunctions=="boolean"?e.serializeFunctions:!1,n=typeof e.ignoreUndefined=="boolean"?e.ignoreUndefined:!0;return n2(t,r,n)};ze.prototype.deserializeStream=function(t,e,r,n,i,f){f=f??{};for(var o=e,s=0;s<r;s++){var u=t[o]|t[o+1]<<8|t[o+2]<<16|t[o+3]<<24;f.index=o,n[i+s]=this.deserialize(t,f),o=o+u}return o};ze.BSON_INT32_MAX=2147483647;ze.BSON_INT32_MIN=-2147483648;ze.BSON_INT64_MAX=Math.pow(2,63)-1;ze.BSON_INT64_MIN=-Math.pow(2,63);ze.JS_INT_MAX=9007199254740992;ze.JS_INT_MIN=-9007199254740992;ze.BSON_DATA_NUMBER=1;ze.BSON_DATA_STRING=2;ze.BSON_DATA_OBJECT=3;ze.BSON_DATA_ARRAY=4;ze.BSON_DATA_BINARY=5;ze.BSON_DATA_OID=7;ze.BSON_DATA_BOOLEAN=8;ze.BSON_DATA_DATE=9;ze.BSON_DATA_NULL=10;ze.BSON_DATA_REGEXP=11;ze.BSON_DATA_CODE=13;ze.BSON_DATA_SYMBOL=14;ze.BSON_DATA_CODE_W_SCOPE=15;ze.BSON_DATA_INT=16;ze.BSON_DATA_TIMESTAMP=17;ze.BSON_DATA_LONG=18;ze.BSON_DATA_MIN_KEY=255;ze.BSON_DATA_MAX_KEY=127;ze.BSON_BINARY_SUBTYPE_DEFAULT=0;ze.BSON_BINARY_SUBTYPE_FUNCTION=1;ze.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;ze.BSON_BINARY_SUBTYPE_UUID=3;ze.BSON_BINARY_SUBTYPE_MD5=4;ze.BSON_BINARY_SUBTYPE_USER_DEFINED=128;fr.exports=ze;fr.exports.Code=J4;fr.exports.Map=L4;fr.exports.Symbol=G4;fr.exports.BSON=ze;fr.exports.DBRef=e2;fr.exports.Binary=t2;fr.exports.ObjectID=K4;fr.exports.Long=V4;fr.exports.Timestamp=W4;fr.exports.Double=C4;fr.exports.Int32=Z4;fr.exports.MinKey=X4;fr.exports.MaxKey=$4;fr.exports.BSONRegExp=Y4;fr.exports.Decimal128=Q4});var en=k((j8,Ev)=>{var Mh=4294967296,Sv=[];for(ys=0;ys<256;ys++)Sv[ys]=(ys>15?"":"0")+ys.toString(16);var ys,jl=Ev.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))};jl.MAX_INT=Math.pow(2,53);jl.MIN_INT=-Math.pow(2,53);jl.prototype={constructor:jl,_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%Mh,t=t/Mh,t>Mh)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 u=e[r+o];n&&(u=(u^255)+f,f=u>>8,u=u&255),i+=u*s}return!t&&i>=jl.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]=Sv[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 bf=k(($n,zh)=>{var pp=Ln("util"),ql=$n.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};$n.MessageType={CALL:1,REPLY:2,EXCEPTION:3,ONEWAY:4};$n.TException=dp;function dp(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}pp.inherits(dp,Error);var D2=$n.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};$n.TApplicationException=mp;function mp(t,e){dp.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.type=t||D2.UNKNOWN,this.name=this.constructor.name,this.message=e}pp.inherits(mp,dp);mp.prototype.read=function(t){for(var e,r=t.readStructBegin("TApplicationException");r=t.readFieldBegin(),r.ftype!=ql.STOP;){switch(r.fid){case 1:r.ftype==ql.STRING?(r=t.readString(),this.message=r):r=t.skip(r.ftype);break;case 2:r.ftype==ql.I32?(r=t.readI32(),this.type=r):r=t.skip(r.ftype);break;default:r=t.skip(r.ftype);break}t.readFieldEnd()}t.readStructEnd()};mp.prototype.write=function(t){t.writeStructBegin("TApplicationException"),this.message&&(t.writeFieldBegin("message",ql.STRING,1),t.writeString(this.message),t.writeFieldEnd()),this.code&&(t.writeFieldBegin("type",ql.I32,2),t.writeI32(this.code),t.writeFieldEnd()),t.writeFieldStop(),t.writeStructEnd()};var q8=$n.TProtocolExceptionType={UNKNOWN:0,INVALID_DATA:1,NEGATIVE_SIZE:2,SIZE_LIMIT:3,BAD_VERSION:4,NOT_IMPLEMENTED:5,DEPTH_LIMIT:6};$n.TProtocolException=Av;function Av(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}pp.inherits(Av,Error);$n.objectLength=function(t){return Object.keys(t).length};$n.inherits=function(t,e){pp.inherits(t,e)};var wp,hp;wp=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===hp||r===wp?f.push(r(s,e.slice(1))):f.push(new n(s));return f};hp=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===hp||r===wp?i[o]=r(f,e.slice(1)):i[o]=new n(f));return i};zh.exports.copyMap=hp;zh.exports.copyList=wp});var Fv=k((_8,Ov)=>{var js=null;typeof WebSocket!="undefined"?js=WebSocket:typeof MozWebSocket!="undefined"?js=MozWebSocket:typeof global!="undefined"?js=global.WebSocket||global.MozWebSocket:typeof window!="undefined"?js=window.WebSocket||window.MozWebSocket:typeof self!="undefined"&&(js=self.WebSocket||self.MozWebSocket);Ov.exports=js});var Lh=k((v8,Uh)=>{"use strict";var qs=typeof Reflect=="object"?Reflect:null,Dv=qs&&typeof qs.apply=="function"?qs.apply:function(e,r,n){return Function.prototype.apply.call(e,r,n)},bp;qs&&typeof qs.ownKeys=="function"?bp=qs.ownKeys:Object.getOwnPropertySymbols?bp=function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:bp=function(e){return Object.getOwnPropertyNames(e)};function N2(t){console&&console.warn&&console.warn(t)}var Nv=Number.isNaN||function(e){return e!==e};function it(){it.init.call(this)}Uh.exports=it;Uh.exports.once=M2;it.EventEmitter=it;it.prototype._events=void 0;it.prototype._eventsCount=0;it.prototype._maxListeners=void 0;var Rv=10;function gp(t){if(typeof t!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}Object.defineProperty(it,"defaultMaxListeners",{enumerable:!0,get:function(){return Rv},set:function(t){if(typeof t!="number"||t<0||Nv(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");Rv=t}});it.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};it.prototype.setMaxListeners=function(e){if(typeof e!="number"||e<0||Nv(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 Pv(t){return t._maxListeners===void 0?it.defaultMaxListeners:t._maxListeners}it.prototype.getMaxListeners=function(){return Pv(this)};it.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 u=f[e];if(u===void 0)return!1;if(typeof u=="function")Dv(u,this,r);else for(var l=u.length,c=Lv(u,l),n=0;n<l;++n)Dv(c[n],this,r);return!0};function Hv(t,e,r,n){var i,f,o;if(gp(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=Pv(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,N2(s)}return t}it.prototype.addListener=function(e,r){return Hv(this,e,r,!1)};it.prototype.on=it.prototype.addListener;it.prototype.prependListener=function(e,r){return Hv(this,e,r,!0)};function R2(){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 Mv(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},i=R2.bind(n);return i.listener=r,n.wrapFn=i,i}it.prototype.once=function(e,r){return gp(r),this.on(e,Mv(this,e,r)),this};it.prototype.prependOnceListener=function(e,r){return gp(r),this.prependListener(e,Mv(this,e,r)),this};it.prototype.removeListener=function(e,r){var n,i,f,o,s;if(gp(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():P2(n,f),n.length===1&&(i[e]=n[0]),i.removeListener!==void 0&&this.emit("removeListener",e,s||r)}return this};it.prototype.off=it.prototype.removeListener;it.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 zv(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?H2(i):Lv(i,i.length)}it.prototype.listeners=function(e){return zv(this,e,!0)};it.prototype.rawListeners=function(e){return zv(this,e,!1)};it.listenerCount=function(t,e){return typeof t.listenerCount=="function"?t.listenerCount(e):Uv.call(t,e)};it.prototype.listenerCount=Uv;function Uv(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}it.prototype.eventNames=function(){return this._eventsCount>0?bp(this._events):[]};function Lv(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}function P2(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function H2(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}function M2(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))}Vv(t,e,f,{once:!0}),e!=="error"&&z2(t,i,{once:!0})})}function z2(t,e,r){typeof t.on=="function"&&Vv(t,"error",e,r)}function Vv(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 yp=k(gf=>{var Vh=Math.pow(2,8),U2=Math.pow(2,16),Cv=Math.pow(2,24),Wv=Math.pow(2,32),L2=Math.pow(2,40),V2=Math.pow(2,48),Ch=Math.pow(2,52),C2=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-=U2),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]*Cv,t[e]&128&&(r-=Wv),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]*Cv,i+=t[e+3]*Wv,i+=t[e+2]*L2,i+=(t[e+1]&15)*V2,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=Ch,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)*Ch,n+=1023):(r=e*C2*Ch,n=0)),t[1]=n<<4&240,t[0]|=n>>4&127,t[7]=r&255,r=Math.floor(r/Vh),t[6]=r&255,r=Math.floor(r/Vh),t[5]=r&255,r=Math.floor(r/Vh),t[4]=r&255,r>>=8,t[3]=r&255,r>>=8,t[2]=r&255,r>>=8,t[1]|=r&15,t}});var qo=k((k8,Yv)=>{var W2=Ln("util");Yv.exports=Kv;function Kv(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}W2.inherits(Kv,Error)});var qp=k(Ni=>{var K2=Ln("util"),_s=function(){},Gv=console.log,jp="error";function _l(t){return function(){var e=["thrift: ["+t+"] "].concat(Array.from(arguments));return Gv(K2.format.apply(null,e))}}var Wh=_s,Kh=_s,Yh=_s,Gh=_s,Zh=_s;Ni.setLogFunc=function(t){Gv=t};var Y2=Ni.setLogLevel=function(t){switch(Wh=Kh=Yh=Gh=Zh=_s,jp=t,jp){case"trace":Wh=_l("TRACE");case"debug":Kh=_l("DEBUG");case"error":Yh=_l("ERROR");case"warning":Gh=_l("WARN");case"info":Zh=_l("INFO")}};Y2(jp);Ni.getLogLevel=function(){return jp};Ni.trace=function(){return Wh.apply(null,arguments)};Ni.debug=function(){return Kh.apply(null,arguments)};Ni.error=function(){return Yh.apply(null,arguments)};Ni.warning=function(){return Gh.apply(null,arguments)};Ni.info=function(){return Zh.apply(null,arguments)}});var Xh=k((I8,Zv)=>{var G2=qp(),Ri=en(),_t=bf(),at=_t.Type;Zv.exports=P;var Jh=Math.pow(2,8),Z2=Math.pow(2,24),J2=Math.pow(2,32),Q2=Math.pow(2,40),X2=Math.pow(2,48),Qh=Math.pow(2,52),$2=Math.pow(2,1022);function P(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}}P.PROTOCOL_ID=-126;P.VERSION_N=1;P.VERSION_MASK=31;P.TYPE_MASK=-32;P.TYPE_BITS=7;P.TYPE_SHIFT_AMOUNT=5;P.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};P.TTypeToCType=[P.Types.CT_STOP,0,P.Types.CT_BOOLEAN_TRUE,P.Types.CT_BYTE,P.Types.CT_DOUBLE,0,P.Types.CT_I16,0,P.Types.CT_I32,0,P.Types.CT_I64,P.Types.CT_BINARY,P.Types.CT_STRUCT,P.Types.CT_MAP,P.Types.CT_SET,P.Types.CT_LIST];P.prototype.getTransport=function(){return this.trans};P.prototype.getCompactType=function(t){return P.TTypeToCType[t]};P.prototype.getTType=function(t){switch(t){case at.STOP:return at.STOP;case P.Types.CT_BOOLEAN_FALSE:case P.Types.CT_BOOLEAN_TRUE:return at.BOOL;case P.Types.CT_BYTE:return at.BYTE;case P.Types.CT_I16:return at.I16;case P.Types.CT_I32:return at.I32;case P.Types.CT_I64:return at.I64;case P.Types.CT_DOUBLE:return at.DOUBLE;case P.Types.CT_BINARY:return at.STRING;case P.Types.CT_LIST:return at.LIST;case P.Types.CT_SET:return at.SET;case P.Types.CT_MAP:return at.MAP;case P.Types.CT_STRUCT:return at.STRUCT;default:throw new _t.TProtocolException(_t.TProtocolExceptionType.INVALID_DATA,"Unknown type: "+t)}return at.STOP};P.prototype.flush=function(){return this.trans.flush()};P.prototype.writeMessageBegin=function(t,e,r){this.writeByte(P.PROTOCOL_ID),this.writeByte(P.VERSION_N&P.VERSION_MASK|e<<P.TYPE_SHIFT_AMOUNT&P.TYPE_MASK),this.writeVarint32(r),this.writeString(t),this._seqid?G2.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};P.prototype.writeMessageEnd=function(){};P.prototype.writeStructBegin=function(t){this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0};P.prototype.writeStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};P.prototype.writeFieldBegin=function(t,e,r){if(e!=at.BOOL)return this.writeFieldBeginInternal(t,e,r,-1);this.booleanField_.name=t,this.booleanField_.fieldType=e,this.booleanField_.fieldId=r};P.prototype.writeFieldEnd=function(){};P.prototype.writeFieldStop=function(){this.writeByte(P.Types.CT_STOP)};P.prototype.writeMapBegin=function(t,e,r){r===0?this.writeByte(0):(this.writeVarint32(r),this.writeByte(this.getCompactType(t)<<4|this.getCompactType(e)))};P.prototype.writeMapEnd=function(){};P.prototype.writeListBegin=function(t,e){this.writeCollectionBegin(t,e)};P.prototype.writeListEnd=function(){};P.prototype.writeSetBegin=function(t,e){this.writeCollectionBegin(t,e)};P.prototype.writeSetEnd=function(){};P.prototype.writeBool=function(t){this.booleanField_.name!==null?(this.writeFieldBeginInternal(this.booleanField_.name,this.booleanField_.fieldType,this.booleanField_.fieldId,t?P.Types.CT_BOOLEAN_TRUE:P.Types.CT_BOOLEAN_FALSE),this.booleanField_.name=null):this.writeByte(t?P.Types.CT_BOOLEAN_TRUE:P.Types.CT_BOOLEAN_FALSE)};P.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};P.prototype.writeI16=function(t){this.writeVarint32(this.i32ToZigzag(t))};P.prototype.writeI32=function(t){this.writeVarint32(this.i32ToZigzag(t))};P.prototype.writeI64=function(t){this.writeVarint64(this.i64ToZigzag(t))};P.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)*Qh,n+=1023):(r=t*$2*Qh,n=0)),e[6]=n<<4&240,e[7]|=n>>4&127,e[0]=r&255,r=Math.floor(r/Jh),e[1]=r&255,r=Math.floor(r/Jh),e[2]=r&255,r=Math.floor(r/Jh),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)};P.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)};P.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};P.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};P.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};P.prototype.writeCollectionBegin=function(t,e){e<=14?this.writeByte(e<<4|this.getCompactType(t)):(this.writeByte(240|this.getCompactType(t)),this.writeVarint32(e))};P.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)};P.prototype.writeVarint64=function(t){if(typeof t=="number"&&(t=new Ri(t)),!(t instanceof Ri))throw new _t.TProtocolException(_t.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)};P.prototype.i64ToZigzag=function(t){if(typeof t=="string"?t=new Ri(parseInt(t,10)):typeof t=="number"&&(t=new Ri(t)),!(t instanceof Ri))throw new _t.TProtocolException(_t.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 Ri(e,r)};P.prototype.i32ToZigzag=function(t){return t<<1^(t&2147483648?4294967295:0)};P.prototype.readMessageBegin=function(){var t=this.trans.readByte();if(t!=P.PROTOCOL_ID)throw new _t.TProtocolException(_t.TProtocolExceptionType.BAD_VERSION,"Bad protocol identifier "+t);var e=this.trans.readByte(),r=e&P.VERSION_MASK;if(r!=P.VERSION_N)throw new _t.TProtocolException(_t.TProtocolExceptionType.BAD_VERSION,"Bad protocol version "+r);var n=e>>P.TYPE_SHIFT_AMOUNT&P.TYPE_BITS,i=this.readVarint32(),f=this.readString();return{fname:f,mtype:n,rseqid:i}};P.prototype.readMessageEnd=function(){};P.prototype.readStructBegin=function(){return this.lastField_.push(this.lastFieldId_),this.lastFieldId_=0,{fname:""}};P.prototype.readStructEnd=function(){this.lastFieldId_=this.lastField_.pop()};P.prototype.readFieldBegin=function(){var t=0,e=this.trans.readByte(e),r=e&15;if(r==P.Types.CT_STOP)return{fname:null,ftype:_t.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==P.Types.CT_BOOLEAN_TRUE||r==P.Types.CT_BOOLEAN_FALSE)&&(this.boolValue_.hasBoolValue=!0,this.boolValue_.boolValue=r==P.Types.CT_BOOLEAN_TRUE),this.lastFieldId_=t,{fname:null,ftype:i,fid:t}};P.prototype.readFieldEnd=function(){};P.prototype.readMapBegin=function(){var t=this.readVarint32();if(t<0)throw new _t.TProtocolException(_t.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}};P.prototype.readMapEnd=function(){};P.prototype.readListBegin=function(){var t=this.trans.readByte(),e=t>>>4&15;if(e==15&&(e=this.readVarint32()),e<0)throw new _t.TProtocolException(_t.TProtocolExceptionType.NEGATIVE_SIZE,"Negative list size");var r=this.getTType(t&15);return{etype:r,size:e}};P.prototype.readListEnd=function(){};P.prototype.readSetBegin=function(){return this.readListBegin()};P.prototype.readSetEnd=function(){};P.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==P.Types.CT_BOOLEAN_TRUE}return t};P.prototype.readByte=function(){return this.trans.readByte()};P.prototype.readI16=function(){return this.readI32()};P.prototype.readI32=function(){return this.zigzagToI32(this.readVarint32())};P.prototype.readI64=function(){return this.zigzagToI64(this.readVarint64())};P.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]*Z2,i+=t[e+4]*J2,i+=t[e+5]*Q2,i+=(t[e+6]&15)*X2,n){case 0:n=-1022;break;case 2047:return i?NaN:r?-1/0:1/0;default:i+=Qh,n-=1023}return r&&(i*=-1),i*Math.pow(2,n-52)};P.prototype.readBinary=function(){var t=this.readVarint32();if(t===0)return new Buffer(0);if(t<0)throw new _t.TProtocolException(_t.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};P.prototype.readString=function(){var t=this.readVarint32();if(t===0)return"";if(t<0)throw new _t.TProtocolException(_t.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};P.prototype.readVarint32=function(){return this.readVarint64().toNumber()};P.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 _t.TProtocolException(_t.TProtocolExceptionType.INVALID_DATA,"Variable-length int over 10 bytes.")}return new Ri(r,e)};P.prototype.zigzagToI32=function(t){return t>>>1^-1*(t&1)};P.prototype.zigzagToI64=function(t){var e=t.buffer.readUInt32BE(0,!0),r=t.buffer.readUInt32BE(4,!0),n=new Ri(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 Ri(e,r)};P.prototype.skip=function(t){switch(t){case at.BOOL:this.readBool();break;case at.BYTE:this.readByte();break;case at.I16:this.readI16();break;case at.I32:this.readI32();break;case at.I64:this.readI64();break;case at.DOUBLE:this.readDouble();break;case at.STRING:this.readString();break;case at.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===at.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case at.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case at.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case at.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 tb=k((x8,eT)=>{var Jv=qp(),$h=yp(),Qv=en(),Pi=bf(),Er=Pi.Type;eT.exports=me;var Xv=-65536,eb=-2147418112,$v=255;me.VERSION_MASK=Xv;me.VERSION_1=eb;me.TYPE_MASK=$v;function me(t,e,r){this.trans=t,this.strictRead=e!==void 0?e:!1,this.strictWrite=r!==void 0?r:!0,this._seqid=null}me.prototype.flush=function(){return this.trans.flush()};me.prototype.writeMessageBegin=function(t,e,r){this.strictWrite?(this.writeI32(eb|e),this.writeString(t),this.writeI32(r)):(this.writeString(t),this.writeByte(e),this.writeI32(r)),this._seqid!==null?Jv.warning("SeqId already set",{name:t}):(this._seqid=r,this.trans.setCurrSeqId(r))};me.prototype.writeMessageEnd=function(){this._seqid!==null?this._seqid=null:Jv.warning("No seqid to unset")};me.prototype.writeStructBegin=function(t){};me.prototype.writeStructEnd=function(){};me.prototype.writeFieldBegin=function(t,e,r){this.writeByte(e),this.writeI16(r)};me.prototype.writeFieldEnd=function(){};me.prototype.writeFieldStop=function(){this.writeByte(Er.STOP)};me.prototype.writeMapBegin=function(t,e,r){this.writeByte(t),this.writeByte(e),this.writeI32(r)};me.prototype.writeMapEnd=function(){};me.prototype.writeListBegin=function(t,e){this.writeByte(t),this.writeI32(e)};me.prototype.writeListEnd=function(){};me.prototype.writeSetBegin=function(t,e){this.writeByte(t),this.writeI32(e)};me.prototype.writeSetEnd=function(){};me.prototype.writeBool=function(t){t?this.writeByte(1):this.writeByte(0)};me.prototype.writeByte=function(t){this.trans.write(new Buffer([t]))};me.prototype.writeI16=function(t){this.trans.write($h.writeI16(new Buffer(2),t))};me.prototype.writeI32=function(t){this.trans.write($h.writeI32(new Buffer(4),t))};me.prototype.writeI64=function(t){t.buffer?this.trans.write(t.buffer):this.trans.write(new Qv(t).buffer)};me.prototype.writeDouble=function(t){this.trans.write($h.writeDouble(new Buffer(8),t))};me.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)};me.prototype.writeString=function(t){this.writeStringOrBinary("writeString","utf8",t)};me.prototype.writeBinary=function(t){this.writeStringOrBinary("writeBinary","binary",t)};me.prototype.readMessageBegin=function(){var t=this.readI32(),e,r,n;if(t<0){var i=t&Xv;if(i!=eb)throw new Pi.TProtocolException(Pi.TProtocolExceptionType.BAD_VERSION,"Bad version in readMessageBegin: "+t);e=t&$v,r=this.readString(),n=this.readI32()}else{if(this.strictRead)throw new Pi.TProtocolException(Pi.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}};me.prototype.readMessageEnd=function(){};me.prototype.readStructBegin=function(){return{fname:""}};me.prototype.readStructEnd=function(){};me.prototype.readFieldBegin=function(){var t=this.readByte();if(t==Er.STOP)return{fname:null,ftype:t,fid:0};var e=this.readI16();return{fname:null,ftype:t,fid:e}};me.prototype.readFieldEnd=function(){};me.prototype.readMapBegin=function(){var t=this.readByte(),e=this.readByte(),r=this.readI32();return{ktype:t,vtype:e,size:r}};me.prototype.readMapEnd=function(){};me.prototype.readListBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};me.prototype.readListEnd=function(){};me.prototype.readSetBegin=function(){var t=this.readByte(),e=this.readI32();return{etype:t,size:e}};me.prototype.readSetEnd=function(){};me.prototype.readBool=function(){var t=this.readByte();return t!==0};me.prototype.readByte=function(){return this.trans.readByte()};me.prototype.readI16=function(){return this.trans.readI16()};me.prototype.readI32=function(){return this.trans.readI32()};me.prototype.readI64=function(){var t=this.trans.read(8);return new Qv(t)};me.prototype.readDouble=function(){return this.trans.readDouble()};me.prototype.readBinary=function(){var t=this.readI32();if(t===0)return new Buffer(0);if(t<0)throw new Pi.TProtocolException(Pi.TProtocolExceptionType.NEGATIVE_SIZE,"Negative binary size");return this.trans.read(t)};me.prototype.readString=function(){var t=this.readI32();if(t===0)return"";if(t<0)throw new Pi.TProtocolException(Pi.TProtocolExceptionType.NEGATIVE_SIZE,"Negative string size");return this.trans.readString(t)};me.prototype.getTransport=function(){return this.trans};me.prototype.skip=function(t){switch(t){case Er.BOOL:this.readBool();break;case Er.BYTE:this.readByte();break;case Er.I16:this.readI16();break;case Er.I32:this.readI32();break;case Er.I64:this.readI64();break;case Er.DOUBLE:this.readDouble();break;case Er.STRING:this.readString();break;case Er.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Er.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Er.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Er.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case Er.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 rb=k((S8,oT)=>{var eF=Ln("util"),_p=Xh(),tT=tb(),tF=qo();function vl(t){Error.call(this),Error.captureStackTrace!==void 0&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t}eF.inherits(vl,Error);oT.exports=Ft;var rF=0,nF=1,iF=0,fF=32/8,oF=48/8,sF=64/8,aF=96/8,rT=112/8,nT=4095,iT=1,lF=1073741823;function Hi(t){var e=Tl();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 _p(this.transport)}Hi.prototype.readVarint32=function(){return this.protocol.readVarint32()};Hi.prototype.writeVarint32=function(t){this.protocol.writeVarint32(t)};Hi.prototype.readString=function(){return this.protocol.readString()};Hi.prototype.writeString=function(t){this.protocol.writeString(t)};Hi.prototype.getOutCount=function(){return this.transport.outCount};Hi.prototype.write=function(t){this.transport.write(t)};Hi.prototype.toBuffer=function(){return this.transport.flush(),this.outputBuffer};Ft.SubprotocolId={BINARY:0,JSON:1,COMPACT:2};function Ft(){this.maxFrameSize=lF,this.protocolId=Ft.SubprotocolId.BINARY,this.rheaders={},this.wheaders={},this.inBuf=Buffer.alloc(0),this.outCount=0,this.flags=null,this.seqid=0,this.shouldWriteHeaders=!0}var fT=function(t,e){if(typeof t!="string"||typeof e!="string")throw new vl("Header key and values must be strings")},uF=function(t){for(var e=Object.keys(Ft.SubprotocolId),r=0;r<e.length;r++)if(t===Ft.SubprotocolId[e[r]])return!0;throw new Error(t+" is not a valid protocol id")};Ft.prototype.setSeqId=function(t){this.seqid=t};Ft.prototype.getSeqId=function(t){return this.seqid};Ft.prototype.setFlags=function(t){this.flags=t};Ft.prototype.getReadHeaders=function(){return this.rheaders};Ft.prototype.setReadHeader=function(t,e){fT(t,e),this.rheaders[t]=e};Ft.prototype.clearReadHeaders=function(){this.rheaders={}};Ft.prototype.getWriteHeaders=function(){return this.wheaders};Ft.prototype.setWriteHeader=function(t,e){fT(t,e),this.wheaders[t]=e};Ft.prototype.clearWriteHeaders=function(){this.wheaders={}};Ft.prototype.setMaxFrameSize=function(t){this.maxFrameSize=t};Ft.prototype.setProtocolId=function(t){uF(t),this.protocolId=t};Ft.prototype.getProtocolId=function(){return this.protocolId};var cF=function(t){var e=t.readInt32BE();return(e&tT.VERSION_MASK)===tT.VERSION_1},pF=function(t){var e=t.readInt8(rF),r=t.readInt8(nF);return e===_p.PROTOCOL_ID&&(r&_p.VERSION_MASK)===_p.VERSION_N};Ft.prototype.readHeaders=function(){var t=this.inBuf,e=!1;if(cF(t)&&(this.setProtocolId(Ft.SubprotocolId.BINARY),e=!0),pF(t)&&(this.setProtocolId(Ft.SubprotocolId.COMPACT),e=!0),e){this.shouldWriteHeaders=!1;return}var r=t.readInt32BE(iF);if(r>this.maxFrameSize)throw new vl("Frame exceeds maximum frame size");var n=t.readInt16BE(fF);if(this.shouldWriteHeaders=n===nT,!!this.shouldWriteHeaders){this.setFlags(t.readInt16BE(oF)),this.setSeqId(t.readInt32BE(sF));var i=t.readInt16BE(aF)*4,f=rT+i;if(f>t.length)throw new vl("Header size is greater than frame size");var o=Buffer.alloc(i);t.copy(o,0,rT,f);var s=new Hi(o);this.setProtocolId(s.readVarint32());var u=s.readVarint32();if(u>0)throw new vl("Transforms are not yet supported");for(;;)try{var l=s.readVarint32();if(l!==iT)break;for(var c=s.readVarint32(),w=0;w<c;w++){var p=s.readString(),g=s.readString();this.setReadHeader(p,g)}}catch(T){if(T instanceof tF)break;throw T}return this.read(f),this.getReadHeaders()}};Ft.prototype.writeHeaders=function(){if(!!this.shouldWriteHeaders){var t=this.getWriteHeaders(),e=new Hi;e.writeVarint32(this.protocolId),e.writeVarint32(0);var r=Object.keys(t);if(r.length>0){e.writeVarint32(iT),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,u=Buffer.alloc(2);u.writeInt16BE(Math.floor((o+s)/4));var l=Buffer.alloc(s);l.fill(0),e.write(l);var c=e.toBuffer(),w=Buffer.alloc(4);w.writeInt32BE(10+this.outCount+c.length);var p=Buffer.alloc(2);p.writeInt16BE(nT);var g=Buffer.alloc(2);g.writeInt16BE(0);var T=Buffer.alloc(4);T.writeInt32BE(this.getSeqId());var L=Buffer.concat([w,p,g,T,u,c]);this.outBuffers.unshift(L),this.outCount+=L.length}}});var Tl=k((E8,sT)=>{var vp=yp(),dF=qo(),mF=rb();sT.exports=vt;function vt(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}vt.prototype=new mF;vt.prototype.reset=function(){this.inBuf=new Buffer(this.defaultReadBufferSize),this.readCursor=0,this.writeCursor=0,this.outBuffers=[],this.outCount=0};vt.receiver=function(t,e){var r=new vt;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)}};vt.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};vt.prototype.rollbackPosition=function(){this.readCursor=0};vt.prototype.isOpen=function(){return!0};vt.prototype.open=function(){};vt.prototype.close=function(){};vt.prototype.setCurrSeqId=function(t){this._seqid=t};vt.prototype.ensureAvailable=function(t){if(this.readCursor+t>this.writeCursor)throw new dF};vt.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};vt.prototype.readByte=function(){return this.ensureAvailable(1),vp.readByte(this.inBuf[this.readCursor++])};vt.prototype.readI16=function(){this.ensureAvailable(2);var t=vp.readI16(this.inBuf,this.readCursor);return this.readCursor+=2,t};vt.prototype.readI32=function(){this.ensureAvailable(4);var t=vp.readI32(this.inBuf,this.readCursor);return this.readCursor+=4,t};vt.prototype.readDouble=function(){this.ensureAvailable(8);var t=vp.readDouble(this.inBuf,this.readCursor);return this.readCursor+=8,t};vt.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readCursor,this.readCursor+t);return this.readCursor+=t,e};vt.prototype.borrow=function(){var t={buf:this.inBuf,readIndex:this.readCursor,writeIndex:this.writeCursor};return t};vt.prototype.consume=function(t){this.readCursor+=t};vt.prototype.write=function(t){typeof t=="string"&&(t=new Buffer(t,"utf8")),this.outBuffers.push(t),this.outCount+=t.length};vt.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 ib=k((A8,pT)=>{var aT=en(),lT=pT.exports={},wF=Math.pow(2,24),uT=Math.pow(2,31),nb=Math.pow(2,32),cT=Math.pow(10,11);lT.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),u=e[r+7]+(e[r+6]<<8)+(e[r+5]<<16)+e[r+4]*wF+(e[r+3]+(e[r+2]<<8))*nb+s*74976710656,l=Math.floor(u/cT)+s*2814;return u=("00000000000"+String(u%cT)).slice(-11),(n?"-":"")+String(l)+u};lT.fromDecimalString=function(t){var e=t.charAt(0)==="-";if(t.length<(e?17:16))return new aT(+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/nb)+r*232830;if(n=n%nb,i>=uT&&!(e&&i==uT&&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 aT(i,n)}});var wT=k((D8,mT)=>{var dT=en(),O8=ib(),F8=mT.exports=function(){"use strict";var t,e,r={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:`
2
+ `,r:"\r",t:" "},n,i=function(g){throw new SyntaxError(g)},f=function(g){return g&&g!==e&&i("Expected '"+g+"' instead of '"+e+"'"),e=n.charAt(t),t+=1,e},o=function(){var g,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(g=+T,!isFinite(g))i("Bad number");else return g>=dT.MAX_INT||g<=dT.MIN_INT?T:g},s=function(){var g,T,L="",O;if(e==='"')for(;f();){if(e==='"')return f(),L;if(e==="\\")if(f(),e==="u"){for(O=0,T=0;T<4&&(g=parseInt(f(),16),!!isFinite(g));T+=1)O=O*16+g;L+=String.fromCharCode(O)}else if(typeof r[e]=="string")L+=r[e];else break;else L+=e}i("Bad string")},u=function(){for(;e&&e<=" ";)f()},l=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+"'")},c,w=function(){var g=[];if(e==="["){if(f("["),u(),e==="]")return f("]"),g;for(;e;){if(g.push(c()),u(),e==="]")return f("]"),g;f(","),u()}}i("Bad array")},p=function(){var g,T={};if(e==="{"){if(f("{"),u(),e==="}")return f("}"),T;for(;e;){if(g=s(),u(),f(":"),Object.hasOwnProperty.call(T,g)&&i('Duplicate key "'+g+'"'),T[g]=c(),u(),e==="}")return f("}"),T;f(","),u()}}i("Bad object")};return c=function(){switch(u(),e){case"{":return p();case"[":return w();case'"':return s();case"-":return o();default:return e>="0"&&e<="9"?o():l()}},function(g){var T;return n=g,t=0,e=" ",T=c(),u(),e&&i("Syntax error"),T}}()});var kl=k((R8,gT)=>{var fb=en(),hF=bf(),Ve=hF.Type,N8=Ln("util"),hT=ib(),bF=wT(),bT=qo();gT.exports=Y;function Y(t){this.tstack=[],this.tpos=[],this.trans=t}Y.Type={};Y.Type[Ve.BOOL]='"tf"';Y.Type[Ve.BYTE]='"i8"';Y.Type[Ve.I16]='"i16"';Y.Type[Ve.I32]='"i32"';Y.Type[Ve.I64]='"i64"';Y.Type[Ve.DOUBLE]='"dbl"';Y.Type[Ve.STRUCT]='"rec"';Y.Type[Ve.STRING]='"str"';Y.Type[Ve.MAP]='"map"';Y.Type[Ve.LIST]='"lst"';Y.Type[Ve.SET]='"set"';Y.RType={};Y.RType.tf=Ve.BOOL;Y.RType.i8=Ve.BYTE;Y.RType.i16=Ve.I16;Y.RType.i32=Ve.I32;Y.RType.i64=Ve.I64;Y.RType.dbl=Ve.DOUBLE;Y.RType.rec=Ve.STRUCT;Y.RType.str=Ve.STRING;Y.RType.map=Ve.MAP;Y.RType.lst=Ve.LIST;Y.RType.set=Ve.SET;Y.Version=1;Y.prototype.flush=function(){return this.writeToTransportIfStackIsFlushable(),this.trans.flush()};Y.prototype.writeToTransportIfStackIsFlushable=function(){this.tstack.length===1&&this.trans.write(this.tstack.pop())};Y.prototype.writeMessageBegin=function(t,e,r){this.tstack.push([Y.Version,'"'+t+'"',e,r])};Y.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)};Y.prototype.writeStructBegin=function(t){this.tpos.push(this.tstack.length),this.tstack.push({})};Y.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()};Y.prototype.writeFieldBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push({fieldId:'"'+r+'"',fieldType:Y.Type[e]})};Y.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()};Y.prototype.writeFieldStop=function(){};Y.prototype.writeMapBegin=function(t,e,r){this.tpos.push(this.tstack.length),this.tstack.push([Y.Type[t],Y.Type[e],0])};Y.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()}};Y.prototype.writeListBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([Y.Type[t],e])};Y.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()};Y.prototype.writeSetBegin=function(t,e){this.tpos.push(this.tstack.length),this.tstack.push([Y.Type[t],e])};Y.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()};Y.prototype.writeBool=function(t){this.tstack.push(t?1:0)};Y.prototype.writeByte=function(t){this.tstack.push(t)};Y.prototype.writeI16=function(t){this.tstack.push(t)};Y.prototype.writeI32=function(t){this.tstack.push(t)};Y.prototype.writeI64=function(t){t instanceof fb?this.tstack.push(hT.toDecimalString(t)):this.tstack.push(t)};Y.prototype.writeDouble=function(t){this.tstack.push(t)};Y.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===`
3
+ `?r+="\\n":i==="\r"?r+="\\r":i===" "?r+="\\t":r+=i}this.tstack.push('"'+r+'"')}};Y.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")+'"')};Y.prototype.readMessageBegin=function(){this.rstack=[],this.rpos=[];var t=this.trans.borrow();if(t.readIndex>=t.writeIndex)throw new bT;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 bT;this.robj=bF(t.buf.slice(t.readIndex,e+1).toString()),this.trans.consume(e+1-t.readIndex);var f=this.robj.shift();if(f!=Y.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};Y.prototype.readMessageEnd=function(){};Y.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};Y.prototype.readStructEnd=function(){this.rstack.pop()};Y.prototype.readFieldBegin=function(){var t={},e=-1,r=Ve.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])Y.RType[f]!==null&&(r=Y.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};Y.prototype.readFieldEnd=function(){for(var t=this.rpos.pop();this.rstack.length>t;)this.rstack.pop()};Y.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=Y.RType[e],r.vtype=Y.RType[t.shift()],r.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),r};Y.prototype.readMapEnd=function(){this.readFieldEnd()};Y.prototype.readListBegin=function(){var t=this.rstack[this.rstack.length-1],e={};return e.etype=Y.RType[t.shift()],e.size=t.shift(),this.rpos.push(this.rstack.length),this.rstack.push(t.shift()),e};Y.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())};Y.prototype.readSetBegin=function(){return this.readListBegin()};Y.prototype.readSetEnd=function(){return this.readListEnd()};Y.prototype.readBool=function(){return this.readValue()=="1"};Y.prototype.readByte=function(){return this.readI32()};Y.prototype.readI16=function(){return this.readI32()};Y.prototype.readI32=function(t){return+this.readValue()};Y.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 fb)&&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};Y.prototype.readI64=function(){var t=this.readValue();return typeof t=="string"?hT.fromDecimalString(t):new fb(t)};Y.prototype.readDouble=function(){return this.readI32()};Y.prototype.readBinary=function(){return new Buffer(this.readValue(),"base64")};Y.prototype.readString=function(){return this.readValue()};Y.prototype.getTransport=function(){return this.trans};Y.prototype.skip=function(t){switch(t){case Ve.BOOL:this.readBool();break;case Ve.BYTE:this.readByte();break;case Ve.I16:this.readI16();break;case Ve.I32:this.readI32();break;case Ve.I64:this.readI64();break;case Ve.DOUBLE:this.readDouble();break;case Ve.STRING:this.readString();break;case Ve.STRUCT:for(this.readStructBegin();;){var e=this.readFieldBegin();if(e.ftype===Ve.STOP)break;this.skip(e.ftype),this.readFieldEnd()}this.readStructEnd();break;case Ve.MAP:for(var r=this.readMapBegin(),n=0;n<r.size;++n)this.skip(r.ktype),this.skip(r.vtype);this.readMapEnd();break;case Ve.SET:for(var i=this.readSetBegin(),f=0;f<i.size;++f)this.skip(i.etype);this.readSetEnd();break;case Ve.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 ob=k((P8,yT)=>{yT.exports=gF;function gF(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 jT=k(vs=>{"use strict";Object.defineProperty(vs,"__esModule",{value:!0});var yF=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},jF=typeof window!="undefined"&&typeof window.document!="undefined",qF=(typeof self=="undefined"?"undefined":yF(self))==="object"&&self.constructor&&self.constructor.name==="DedicatedWorkerGlobalScope",_F=typeof process!="undefined"&&process.versions!=null&&process.versions.node!=null,vF=function(){return typeof window!="undefined"&&window.name==="nodejs"||navigator.userAgent.includes("Node.js")||navigator.userAgent.includes("jsdom")};vs.isBrowser=jF;vs.isWebWorker=qF;vs.isNode=_F;vs.isJsDom=vF});var TT=k(Tp=>{var TF=Ln("util"),qT=Fv(),_T=Lh().EventEmitter,vT=bf(),kF=Tl(),BF=kl(),IF=qo(),xF=ob(),SF=jT();Tp.WSConnection=jr;function jr(t,e,r){_T.call(this),this.options=r||{},this.host=t,this.port=e,this.secure=this.options.secure||!1,this.transport=this.options.transport||kF,this.protocol=this.options.protocol||BF,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]}TF.inherits(jr,_T);jr.prototype.__reset=function(){this.socket=null,this.send_pending=[]};jr.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=[])};jr.prototype.__onClose=function(t){this.emit("close"),this.__reset()};jr.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 u=i._reqs[r.rseqid];delete i._reqs[r.rseqid],u&&u(o,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new vT.TApplicationException(vT.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(o){if(o instanceof IF)t.rollbackPosition();else throw o}};jr.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)};jr.prototype.__onMessage=function(t){this.__onData(t.data)};jr.prototype.__onError=function(t){this.emit("error",t),this.socket.close()};jr.prototype.isOpen=function(){return this.socket&&this.socket.readyState===this.socket.OPEN};jr.prototype.open=function(){this.socket&&this.socket.readyState!==this.socket.CLOSED||(SF.isBrowser?this.socket=new qT(this.uri()):this.socket=new qT(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))};jr.prototype.close=function(){this.socket.close()};jr.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};jr.prototype.write=function(t){this.isOpen()?this.socket.send(t):this.send_pending.push(t)};Tp.createWSConnection=function(t,e,r){return new jr(t,e,r)};Tp.createWSClient=xF});var BT=k(kp=>{var EF=Ln("util"),AF=Lh().EventEmitter,kT=bf(),OF=Tl(),FF=kl(),DF=qo(),NF=ob();kp.XHRConnection=Ar;function Ar(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||OF,this.protocol=r.protocol||FF,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={}}EF.inherits(Ar,AF);Ar.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."};Ar.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)};Ar.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)};Ar.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 u=i._reqs[r.rseqid];delete i._reqs[r.rseqid],u&&u(o,s)},i["recv_"+r.fname]?i["recv_"+r.fname](e,r.mtype,n):(delete i._reqs[n],this.emit("error",new kT.TApplicationException(kT.TApplicationExceptionType.WRONG_METHOD_NAME,"Received a response to an unknown RPC function")))}}catch(o){if(o instanceof DF)t.rollbackPosition();else throw o}};Ar.prototype.isOpen=function(){return!0};Ar.prototype.open=function(){};Ar.prototype.close=function(){};Ar.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};Ar.prototype.readAll=function(){return this.recv_buf};Ar.prototype.write=function(t){this.send_buf=t,this.flush()};Ar.prototype.getSendBuffer=function(){return this.send_buf};kp.createXHRConnection=function(t,e,r){return new Ar(t,e,r)};kp.createXHRClient=NF});var xT=k((IT,sb)=>{(function(t){"use strict";if(typeof bootstrap=="function")bootstrap("promise",t);else if(typeof IT=="object"&&typeof sb=="object")sb.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(h){t=!!h.stack}var e=ue(),r,n=function(){},i=function(){var h={task:void 0,next:null},y=h,I=!1,U=void 0,ce=!1,xe=[];function we(){for(var st,At;h.next;)h=h.next,st=h.task,h.task=void 0,At=h.domain,At&&(h.domain=void 0,At.enter()),ft(st,At);for(;xe.length;)st=xe.pop(),ft(st);I=!1}function ft(st,At){try{st()}catch(nf){if(ce)throw At&&At.exit(),setTimeout(we,0),At&&At.enter(),nf;setTimeout(function(){throw nf},0)}At&&At.exit()}if(i=function(st){y=y.next={task:st,domain:ce&&process.domain,next:null},I||(I=!0,U())},typeof process=="object"&&process.toString()==="[object process]"&&process.nextTick)ce=!0,U=function(){process.nextTick(we)};else if(typeof setImmediate=="function")typeof window!="undefined"?U=setImmediate.bind(window,we):U=function(){setImmediate(we)};else if(typeof MessageChannel!="undefined"){var Xe=new MessageChannel;Xe.port1.onmessage=function(){U=ot,Xe.port1.onmessage=we,we()};var ot=function(){Xe.port2.postMessage(0)};U=function(){setTimeout(we,0),ot()}}else U=function(){setTimeout(we,0)};return i.runAfter=function(st){xe.push(st),I||(I=!0,U())},i}(),f=Function.call;function o(h){return function(){return f.apply(h,arguments)}}var s=o(Array.prototype.slice),u=o(Array.prototype.reduce||function(h,y){var I=0,U=this.length;if(arguments.length===1)do{if(I in this){y=this[I++];break}if(++I>=U)throw new TypeError}while(1);for(;I<U;I++)I in this&&(y=h(y,this[I],I));return y}),l=o(Array.prototype.indexOf||function(h){for(var y=0;y<this.length;y++)if(this[y]===h)return y;return-1}),c=o(Array.prototype.map||function(h,y){var I=this,U=[];return u(I,function(ce,xe,we){U.push(h.call(y,xe,we,I))},void 0),U}),w=Object.create||function(h){function y(){}return y.prototype=h,new y},p=Object.defineProperty||function(h,y,I){return h[y]=I.value,h},g=o(Object.prototype.hasOwnProperty),T=Object.keys||function(h){var y=[];for(var I in h)g(h,I)&&y.push(I);return y},L=o(Object.prototype.toString);function O(h){return h===Object(h)}function C(h){return L(h)==="[object StopIteration]"||h instanceof te}var te;typeof ReturnValue!="undefined"?te=ReturnValue:te=function(h){this.value=h};var H="From previous event:";function M(h,y){if(t&&y.stack&&typeof h=="object"&&h!==null&&h.stack){for(var I=[],U=y;U;U=U.source)U.stack&&(!h.__minimumStackCounter__||h.__minimumStackCounter__>U.stackCounter)&&(p(h,"__minimumStackCounter__",{value:U.stackCounter,configurable:!0}),I.unshift(U.stack));I.unshift(h.stack);var ce=I.join(`
4
+ `+H+`
5
5
  `),xe=R(ce);p(h,"stack",{value:xe,configurable:!0})}}function R(h){for(var y=h.split(`
6
- `),I=[],L=0;L<y.length;++L){var ce=y[L];!re(ce)&&!F(ce)&&ce&&I.push(ce)}return I.join(`
7
- `)}function F(h){return h.indexOf("(module.js:")!==-1||h.indexOf("(node.js:")!==-1}function oe(h){var y=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(h);if(y)return[y[1],Number(y[2])];var I=/at ([^ ]+):(\d+):(?:\d+)$/.exec(h);if(I)return[I[1],Number(I[2])];var L=/.*@(.+):(\d+)$/.exec(h);if(L)return[L[1],Number(L[2])]}function re(h){var y=oe(h);if(!y)return!1;var I=y[0],L=y[1];return I===r&&L>=e&&L<=ts}function ue(){if(!!t)try{throw new Error}catch(L){var h=L.stack.split(`
8
- `),y=h[0].indexOf("@")>0?h[1]:h[2],I=oe(y);return I?(r=I[0],I[1]):void 0}}function Ye(h,y,I){return function(){return typeof console!="undefined"&&typeof console.warn=="function"&&console.warn(y+" is deprecated, use "+I+" instead.",new Error("").stack),h.apply(h,arguments)}}function q(h){return h instanceof $?h:vi(h)?Fa(h):ro(h)}q.resolve=q,q.nextTick=i,q.longStackSupport=!1;var Ae=1;typeof process=="object"&&process&&process.env&&process.env.Q_DEBUG&&(q.longStackSupport=!0),q.defer=Ue;function Ue(){var h=[],y=[],I,L=w(Ue.prototype),ce=w($.prototype);if(ce.promiseDispatch=function(we,ft,Xe){var ot=s(arguments);h?(h.push(ot),ft==="when"&&Xe[1]&&y.push(Xe[1])):q.nextTick(function(){I.promiseDispatch.apply(I,ot)})},ce.valueOf=function(){if(h)return ce;var we=nt(I);return Tr(we)&&(I=we),we},ce.inspect=function(){return I?I.inspect():{state:"pending"}},q.longStackSupport&&t)try{throw new Error}catch(we){ce.stack=we.stack.substring(we.stack.indexOf(`
9
- `)+1),ce.stackCounter=Ae++}function xe(we){I=we,q.longStackSupport&&t&&(ce.source=we),u(h,function(ft,Xe){q.nextTick(function(){we.promiseDispatch.apply(we,Xe)})},void 0),h=void 0,y=void 0}return L.promise=ce,L.resolve=function(we){I||xe(q(we))},L.fulfill=function(we){I||xe(ro(we))},L.reject=function(we){I||xe(hr(we))},L.notify=function(we){I||u(y,function(ft,Xe){q.nextTick(function(){Xe(we)})},void 0)},L}Ue.prototype.makeNodeResolver=function(){var h=this;return function(y,I){y?h.reject(y):arguments.length>2?h.resolve(s(arguments,1)):h.resolve(I)}},q.Promise=he,q.promise=he;function he(h){if(typeof h!="function")throw new TypeError("resolver must be a function.");var y=Ue();try{h(y.resolve,y.reject,y.notify)}catch(I){y.reject(I)}return y.promise}he.race=Ge,he.all=rf,he.reject=hr,he.resolve=q,q.passByCopy=function(h){return h},$.prototype.passByCopy=function(){return this},q.join=function(h,y){return q(h).join(y)},$.prototype.join=function(h){return q([this,h]).spread(function(y,I){if(y===I)return y;throw new Error("Q can't join: not the same: "+y+" "+I)})},q.race=Ge;function Ge(h){return he(function(y,I){for(var L=0,ce=h.length;L<ce;L++)q(h[L]).then(y,I)})}$.prototype.race=function(){return this.then(q.race)},q.makePromise=$;function $(h,y,I){y===void 0&&(y=function(xe){return hr(new Error("Promise does not support operation: "+xe))}),I===void 0&&(I=function(){return{state:"unknown"}});var L=w($.prototype);if(L.promiseDispatch=function(xe,we,ft){var Xe;try{h[we]?Xe=h[we].apply(L,ft):Xe=y.call(L,we,ft)}catch(ot){Xe=hr(ot)}xe&&xe(Xe)},L.inspect=I,I){var ce=I();ce.state==="rejected"&&(L.exception=ce.reason),L.valueOf=function(){var xe=I();return xe.state==="pending"||xe.state==="rejected"?L:xe.value}}return L}$.prototype.toString=function(){return"[object Promise]"},$.prototype.then=function(h,y,I){var L=this,ce=Ue(),xe=!1;function we(ot){try{return typeof h=="function"?h(ot):ot}catch(st){return hr(st)}}function ft(ot){if(typeof y=="function"){z(ot,L);try{return y(ot)}catch(st){return hr(st)}}return hr(ot)}function Xe(ot){return typeof I=="function"?I(ot):ot}return q.nextTick(function(){L.promiseDispatch(function(ot){xe||(xe=!0,ce.resolve(we(ot)))},"when",[function(ot){xe||(xe=!0,ce.resolve(ft(ot)))}])}),L.promiseDispatch(void 0,"when",[void 0,function(ot){var st,At=!1;try{st=Xe(ot)}catch(nf){if(At=!0,q.onerror)q.onerror(nf);else throw nf}At||ce.notify(st)}]),ce.promise},q.tap=function(h,y){return q(h).tap(y)},$.prototype.tap=function(h){return h=q(h),this.then(function(y){return h.fcall(y).thenResolve(y)})},q.when=qt;function qt(h,y,I,L){return q(h).then(y,I,L)}$.prototype.thenResolve=function(h){return this.then(function(){return h})},q.thenResolve=function(h,y){return q(h).thenResolve(y)},$.prototype.thenReject=function(h){return this.then(function(){throw h})},q.thenReject=function(h,y){return q(h).thenReject(y)},q.nearer=nt;function nt(h){if(Tr(h)){var y=h.inspect();if(y.state==="fulfilled")return y.value}return h}q.isPromise=Tr;function Tr(h){return h instanceof $}q.isPromiseAlike=vi;function vi(h){return O(h)&&typeof h.then=="function"}q.isPending=eo;function eo(h){return Tr(h)&&h.inspect().state==="pending"}$.prototype.isPending=function(){return this.inspect().state==="pending"},q.isFulfilled=to;function to(h){return!Tr(h)||h.inspect().state==="fulfilled"}$.prototype.isFulfilled=function(){return this.inspect().state==="fulfilled"},q.isRejected=Bn;function Bn(h){return Tr(h)&&h.inspect().state==="rejected"}$.prototype.isRejected=function(){return this.inspect().state==="rejected"};var Hr=[],Wt=[],Ti=[],In=!0;function Un(){Hr.length=0,Wt.length=0,In||(In=!0)}function Qo(h,y){!In||(typeof process=="object"&&typeof process.emit=="function"&&q.nextTick.runAfter(function(){l(Wt,h)!==-1&&(process.emit("unhandledRejection",y,h),Ti.push(h))}),Wt.push(h),y&&typeof y.stack!="undefined"?Hr.push(y.stack):Hr.push("(no stack) "+y))}function Xo(h){if(!!In){var y=l(Wt,h);y!==-1&&(typeof process=="object"&&typeof process.emit=="function"&&q.nextTick.runAfter(function(){var I=l(Ti,h);I!==-1&&(process.emit("rejectionHandled",Hr[y],h),Ti.splice(I,1))}),Wt.splice(y,1),Hr.splice(y,1))}}q.resetUnhandledRejections=Un,q.getUnhandledReasons=function(){return Hr.slice()},q.stopUnhandledRejectionTracking=function(){Un(),In=!1},Un(),q.reject=hr;function hr(h){var y=$({when:function(I){return I&&Xo(this),I?I(h):this}},function(){return this},function(){return{state:"rejected",reason:h}});return Qo(y,h),y}q.fulfill=ro;function ro(h){return $({when:function(){return h},get:function(y){return h[y]},set:function(y,I){h[y]=I},delete:function(y){delete h[y]},post:function(y,I){return y==null?h.apply(void 0,I):h[y].apply(h,I)},apply:function(y,I){return h.apply(y,I)},keys:function(){return v(h)}},void 0,function(){return{state:"fulfilled",value:h}})}function Fa(h){var y=Ue();return q.nextTick(function(){try{h.then(y.resolve,y.reject,y.notify)}catch(I){y.reject(I)}}),y.promise}q.master=Fm;function Fm(h){return $({isDef:function(){}},function(I,L){return Da(h,I,L)},function(){return q(h).inspect()})}q.spread=Yu;function Yu(h,y,I){return q(h).spread(y,I)}$.prototype.spread=function(h,y){return this.all().then(function(I){return h.apply(void 0,I)},y)},q.async=$o;function $o(h){return function(){function y(xe,we){var ft;if(typeof StopIteration=="undefined"){try{ft=I[xe](we)}catch(Xe){return hr(Xe)}return ft.done?q(ft.value):qt(ft.value,L,ce)}else{try{ft=I[xe](we)}catch(Xe){return C(Xe)?q(Xe.value):hr(Xe)}return qt(ft,L,ce)}}var I=h.apply(this,arguments),L=y.bind(y,"next"),ce=y.bind(y,"throw");return L()}}q.spawn=Dm;function Dm(h){q.done(q.async(h)())}q.return=Nm;function Nm(h){throw new te(h)}q.promised=Gu;function Gu(h){return function(){return Yu([this,rf(arguments)],function(y,I){return h.apply(y,I)})}}q.dispatch=Da;function Da(h,y,I){return q(h).dispatch(y,I)}$.prototype.dispatch=function(h,y){var I=this,L=Ue();return q.nextTick(function(){I.promiseDispatch(L.resolve,h,y)}),L.promise},q.get=function(h,y){return q(h).dispatch("get",[y])},$.prototype.get=function(h){return this.dispatch("get",[h])},q.set=function(h,y,I){return q(h).dispatch("set",[y,I])},$.prototype.set=function(h,y){return this.dispatch("set",[h,y])},q.del=q.delete=function(h,y){return q(h).dispatch("delete",[y])},$.prototype.del=$.prototype.delete=function(h){return this.dispatch("delete",[h])},q.mapply=q.post=function(h,y,I){return q(h).dispatch("post",[y,I])},$.prototype.mapply=$.prototype.post=function(h,y){return this.dispatch("post",[h,y])},q.send=q.mcall=q.invoke=function(h,y){return q(h).dispatch("post",[y,s(arguments,2)])},$.prototype.send=$.prototype.mcall=$.prototype.invoke=function(h){return this.dispatch("post",[h,s(arguments,1)])},q.fapply=function(h,y){return q(h).dispatch("apply",[void 0,y])},$.prototype.fapply=function(h){return this.dispatch("apply",[void 0,h])},q.try=q.fcall=function(h){return q(h).dispatch("apply",[void 0,s(arguments,1)])},$.prototype.fcall=function(){return this.dispatch("apply",[void 0,s(arguments)])},q.fbind=function(h){var y=q(h),I=s(arguments,1);return function(){return y.dispatch("apply",[this,I.concat(s(arguments))])}},$.prototype.fbind=function(){var h=this,y=s(arguments);return function(){return h.dispatch("apply",[this,y.concat(s(arguments))])}},q.keys=function(h){return q(h).dispatch("keys",[])},$.prototype.keys=function(){return this.dispatch("keys",[])},q.all=rf;function rf(h){return qt(h,function(y){var I=0,L=Ue();return u(y,function(ce,xe,we){var ft;Tr(xe)&&(ft=xe.inspect()).state==="fulfilled"?y[we]=ft.value:(++I,qt(xe,function(Xe){y[we]=Xe,--I==0&&L.resolve(y)},L.reject,function(Xe){L.notify({index:we,value:Xe})}))},void 0),I===0&&L.resolve(y),L.promise})}$.prototype.all=function(){return rf(this)},q.any=es;function es(h){if(h.length===0)return q.resolve();var y=q.defer(),I=0;return u(h,function(L,ce,xe){var we=h[xe];I++,qt(we,ft,Xe,ot);function ft(st){y.resolve(st)}function Xe(st){if(I--,I===0){var At=st||new Error(""+st);At.message="Q can't get fulfillment value from any promise, all promises were rejected. Last error message: "+At.message,y.reject(At)}}function ot(st){y.notify({index:xe,value:st})}},void 0),y.promise}$.prototype.any=function(){return es(this)},q.allResolved=Ye(ur,"allResolved","allSettled");function ur(h){return qt(h,function(y){return y=c(y,q),qt(rf(c(y,function(I){return qt(I,n,n)})),function(){return y})})}$.prototype.allResolved=function(){return ur(this)},q.allSettled=Na;function Na(h){return q(h).allSettled()}$.prototype.allSettled=function(){return this.then(function(h){return rf(c(h,function(y){y=q(y);function I(){return y.inspect()}return y.then(I,I)}))})},q.fail=q.catch=function(h,y){return q(h).then(void 0,y)},$.prototype.fail=$.prototype.catch=function(h){return this.then(void 0,h)},q.progress=Vj;function Vj(h,y){return q(h).then(void 0,void 0,y)}$.prototype.progress=function(h){return this.then(void 0,void 0,h)},q.fin=q.finally=function(h,y){return q(h).finally(y)},$.prototype.fin=$.prototype.finally=function(h){if(!h||typeof h.apply!="function")throw new Error("Q can't apply finally callback");return h=q(h),this.then(function(y){return h.fcall().then(function(){return y})},function(y){return h.fcall().then(function(){throw y})})},q.done=function(h,y,I,L){return q(h).done(y,I,L)},$.prototype.done=function(h,y,I){var L=function(xe){q.nextTick(function(){if(z(xe,ce),q.onerror)q.onerror(xe);else throw xe})},ce=h||y||I?this.then(h,y,I):this;typeof process=="object"&&process&&process.domain&&(L=process.domain.bind(L)),ce.then(void 0,L)},q.timeout=function(h,y,I){return q(h).timeout(y,I)},$.prototype.timeout=function(h,y){var I=Ue(),L=setTimeout(function(){(!y||typeof y=="string")&&(y=new Error(y||"Timed out after "+h+" ms"),y.code="ETIMEDOUT"),I.reject(y)},h);return this.then(function(ce){clearTimeout(L),I.resolve(ce)},function(ce){clearTimeout(L),I.reject(ce)},I.notify),I.promise},q.delay=function(h,y){return y===void 0&&(y=h,h=void 0),q(h).delay(y)},$.prototype.delay=function(h){return this.then(function(y){var I=Ue();return setTimeout(function(){I.resolve(y)},h),I.promise})},q.nfapply=function(h,y){return q(h).nfapply(y)},$.prototype.nfapply=function(h){var y=Ue(),I=s(h);return I.push(y.makeNodeResolver()),this.fapply(I).fail(y.reject),y.promise},q.nfcall=function(h){var y=s(arguments,1);return q(h).nfapply(y)},$.prototype.nfcall=function(){var h=s(arguments),y=Ue();return h.push(y.makeNodeResolver()),this.fapply(h).fail(y.reject),y.promise},q.nfbind=q.denodeify=function(h){if(h===void 0)throw new Error("Q can't wrap an undefined function");var y=s(arguments,1);return function(){var I=y.concat(s(arguments)),L=Ue();return I.push(L.makeNodeResolver()),q(h).fapply(I).fail(L.reject),L.promise}},$.prototype.nfbind=$.prototype.denodeify=function(){var h=s(arguments);return h.unshift(this),q.denodeify.apply(void 0,h)},q.nbind=function(h,y){var I=s(arguments,2);return function(){var L=I.concat(s(arguments)),ce=Ue();L.push(ce.makeNodeResolver());function xe(){return h.apply(y,arguments)}return q(xe).fapply(L).fail(ce.reject),ce.promise}},$.prototype.nbind=function(){var h=s(arguments,0);return h.unshift(this),q.nbind.apply(void 0,h)},q.nmapply=q.npost=function(h,y,I){return q(h).npost(y,I)},$.prototype.nmapply=$.prototype.npost=function(h,y){var I=s(y||[]),L=Ue();return I.push(L.makeNodeResolver()),this.dispatch("post",[h,I]).fail(L.reject),L.promise},q.nsend=q.nmcall=q.ninvoke=function(h,y){var I=s(arguments,2),L=Ue();return I.push(L.makeNodeResolver()),q(h).dispatch("post",[y,I]).fail(L.reject),L.promise},$.prototype.nsend=$.prototype.nmcall=$.prototype.ninvoke=function(h){var y=s(arguments,1),I=Ue();return y.push(I.makeNodeResolver()),this.dispatch("post",[h,y]).fail(I.reject),I.promise},q.nodeify=De;function De(h,y){return q(h).nodeify(y)}$.prototype.nodeify=function(h){if(h)this.then(function(y){q.nextTick(function(){h(null,y)})},function(y){q.nextTick(function(){h(y)})});else return this},q.noConflict=function(){throw new Error("Q.noConflict only works when Q is used as a global")};var ts=ue();return q})});var nq=k(rq=>{var zE=Ln("util"),eq=af();rq.Multiplexer=tq;function UE(t,e,r){function n(i,f,o){e.call(this,i,f,o)}return zE.inherits(n,e),n.prototype.writeMessageBegin=function(i,f,o){f==eq.MessageType.CALL||f==eq.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 tq(){this.seqid=0}tq.prototype.createClient=function(t,e,r){e.Client&&(e=e.Client);var n=function(u,l){r.write(u,l)},i=new r.transport(void 0,n),f=new UE(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 fq=k((JU,iq)=>{var ls=uc(),LE=oo(),VE=sw();iq.exports=Ft;function Ft(t,e){this.inBuf=t||new Buffer(0),this.outBuffers=[],this.outCount=0,this.readPos=0,this.onFlush=e}Ft.prototype=new VE;Ft.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=ls.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 Ft(f),e),n=r,r=null}}};Ft.prototype.commitPosition=function(){},Ft.prototype.rollbackPosition=function(){},Ft.prototype.isOpen=function(){return!0};Ft.prototype.open=function(){};Ft.prototype.close=function(){};Ft.prototype.setCurrSeqId=function(t){this._seqid=t};Ft.prototype.ensureAvailable=function(t){if(this.readPos+t>this.inBuf.length)throw new LE};Ft.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};Ft.prototype.readByte=function(){return this.ensureAvailable(1),ls.readByte(this.inBuf[this.readPos++])};Ft.prototype.readI16=function(){this.ensureAvailable(2);var t=ls.readI16(this.inBuf,this.readPos);return this.readPos+=2,t};Ft.prototype.readI32=function(){this.ensureAvailable(4);var t=ls.readI32(this.inBuf,this.readPos);return this.readPos+=4,t};Ft.prototype.readDouble=function(){this.ensureAvailable(8);var t=ls.readDouble(this.inBuf,this.readPos);return this.readPos+=8,t};Ft.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readPos,this.readPos+t);return this.readPos+=t,e};Ft.prototype.borrow=function(){return{buf:this.inBuf,readIndex:this.readPos,writeIndex:this.inBuf.length}};Ft.prototype.consume=function(t){this.readPos+=t};Ft.prototype.write=function(t,e){typeof t=="string"&&(t=new Buffer(t,e||"utf8")),this.outBuffers.push(t),this.outCount+=t.length};Ft.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);ls.writeI32(n,e.length),e.copy(n,4,0,e.length),this.onFlush&&this.onFlush(n,t)}this.outBuffers=[],this.outCount=0}});var sq=k((QU,oq)=>{var CE=pc();oq.exports=gr;function gr(t){this.__reset(t)}gr.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};gr.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})};gr.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=[])};gr.prototype.__onClose=function(t){this.__reset(this.url)};gr.prototype.__onMessage=function(t){this.callbacks.length&&this.callbacks.shift()(t.data)};gr.prototype.__onError=function(t){CE.error("websocket: "+t.toString()),this.socket.close()};gr.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};gr.prototype.isOpen=function(){return this.socket&&this.socket.readyState==this.socket.OPEN};gr.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))};gr.prototype.close=function(){this.socket.close()};gr.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};gr.prototype.readAll=function(){return this.recv_buf};gr.prototype.write=function(t){this.send_buf=t};gr.prototype.getSendBuffer=function(){return this.send_buf}});var Ve=k(Qt=>{Qt.Thrift=af();var dw=Z0();Qt.WSConnection=dw.WSConnection;Qt.createWSConnection=dw.createWSConnection;Qt.createWSClient=dw.createWSClient;var mw=Q0();Qt.XHRConnection=mw.XHRConnection;Qt.createXHRConnection=mw.createXHRConnection;Qt.createXHRClient=mw.createXHRClient;Qt.Int64=Zr();Qt.Q=$0();var WE=nq();Qt.Multiplexer=WE.Multiplexer;Qt.TBufferedTransport=La();Qt.TFramedTransport=fq();Qt.TWebSocketTransport=sq();Qt.Protocol=Va();Qt.TJSONProtocol=Va();Qt.TBinaryProtocol=ow();Qt.TCompactProtocol=nw()});var Iq=k((w8,Bq)=>{var Oi={},yl=4294967295,KE=9007199254740991;function gc(t){return t=~t,t<0&&(t=(t&2147483647)+2147483648),t}function yc(t){console.assert(t>-1&&t<=KE,"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>yl&&(e=(t-n)/(yl+1)),[e,n]}function kq(t){if(t>-1)return yc(t);var e=yc(-t),r=gc(e[0]),n=gc(e[1]);return n===yl?(r+=1,n=0):n+=1,[r,n]}function jc(t,e,r){return r&&(t&2147483648)!=0?(t=gc(t),e=gc(e),console.assert(t<2097152,"number too small"),-(t*(yl+1)+e+1)):(console.assert(t<2097152,"number too large"),t*(yl+1)+e)}Oi.readInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return jc(r,n,!0)};Oi.readInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return jc(n,r,!0)};Oi.readUInt64BE=function(t,e){e=e||0;var r=t.readUInt32BE(e),n=t.readUInt32BE(e+4);return jc(r,n,!1)};Oi.readUInt64LE=function(t,e){e=e||0;var r=t.readUInt32LE(e),n=t.readUInt32LE(e+4);return jc(n,r,!1)};Oi.writeInt64BE=function(t,e,r){r=r||0;var n=kq(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Oi.writeInt64LE=function(t,e,r){r=r||0;var n=kq(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Oi.writeUInt64BE=function(t,e,r){r=r||0;var n=yc(t);e.writeUInt32BE(n[0],r),e.writeUInt32BE(n[1],r+4)};Oi.writeUInt64LE=function(t,e,r){r=r||0;var n=yc(t);e.writeUInt32LE(n[1],r),e.writeUInt32LE(n[0],r+4)};Bq.exports=Oi});var Fq=k((b8,Oq)=>{Oq.exports=Aq;var Eq=128,lA=127,uA=~lA,cA=Math.pow(2,31);function Aq(t,e,r){e=e||[],r=r||0;for(var n=r;t>=cA;)e[r++]=t&255|Eq,t/=128;for(;t&uA;)e[r++]=t&255|Eq,t>>>=7;return e[r]=t|0,Aq.bytes=r-n+1,e}});var Rq=k((g8,Nq)=>{Nq.exports=gw;var pA=128,Dq=127;function gw(t,e){var r=0,e=e||0,n=0,i=e,f,o=t.length;do{if(i>=o)throw gw.bytes=0,new RangeError("Could not decode varint");f=t[i++],r+=n<28?(f&Dq)<<n:(f&Dq)*Math.pow(2,n),n+=7}while(f>=pA);return gw.bytes=i-e,r}});var Hq=k((y8,Pq)=>{var dA=Math.pow(2,7),mA=Math.pow(2,14),wA=Math.pow(2,21),hA=Math.pow(2,28),bA=Math.pow(2,35),gA=Math.pow(2,42),yA=Math.pow(2,49),jA=Math.pow(2,56),qA=Math.pow(2,63);Pq.exports=function(t){return t<dA?1:t<mA?2:t<wA?3:t<hA?4:t<bA?5:t<gA?6:t<yA?7:t<jA?8:t<qA?9:10}});var zq=k((j8,Mq)=>{Mq.exports={encode:Fq(),decode:Rq(),encodingLength:Hq()}});var Fi=k(jr=>{"use strict";var TA=typeof Uint8Array!="undefined"&&typeof Uint16Array!="undefined"&&typeof Int32Array!="undefined";function kA(t,e){return Object.prototype.hasOwnProperty.call(t,e)}jr.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)kA(r,n)&&(t[n]=r[n])}}return t};jr.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var BA={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}},IA={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)}};jr.setTyped=function(t){t?(jr.Buf8=Uint8Array,jr.Buf16=Uint16Array,jr.Buf32=Int32Array,jr.assign(jr,BA)):(jr.Buf8=Array,jr.Buf16=Array,jr.Buf32=Array,jr.assign(jr,IA))};jr.setTyped(TA)});var p_=k(ws=>{"use strict";var xA=Fi(),SA=4,Cq=0,Wq=1,EA=2;function ds(t){for(var e=t.length;--e>=0;)t[e]=0}var AA=0,Kq=1,OA=2,FA=3,DA=258,qw=29,_l=256,vl=_l+1+qw,ms=30,_w=19,Yq=2*vl+1,lo=15,vw=16,NA=7,Tw=256,Gq=16,Zq=17,Jq=18,kw=[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],vc=[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],RA=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],Qq=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],PA=512,Di=new Array((vl+2)*2);ds(Di);var Tl=new Array(ms*2);ds(Tl);var kl=new Array(PA);ds(kl);var Bl=new Array(DA-FA+1);ds(Bl);var Bw=new Array(qw);ds(Bw);var Tc=new Array(ms);ds(Tc);function Iw(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 Xq,$q,e_;function xw(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function t_(t){return t<256?kl[t]:kl[256+(t>>>7)]}function Il(t,e){t.pending_buf[t.pending++]=e&255,t.pending_buf[t.pending++]=e>>>8&255}function Ar(t,e,r){t.bi_valid>vw-r?(t.bi_buf|=e<<t.bi_valid&65535,Il(t,t.bi_buf),t.bi_buf=e>>vw-t.bi_valid,t.bi_valid+=r-vw):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=r)}function Gn(t,e,r){Ar(t,r[e*2],r[e*2+1])}function r_(t,e){var r=0;do r|=t&1,t>>>=1,r<<=1;while(--e>0);return r>>>1}function HA(t){t.bi_valid===16?(Il(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 MA(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,u=e.stat_desc.max_length,l,c,w,p,g,v,H=0;for(p=0;p<=lo;p++)t.bl_count[p]=0;for(r[t.heap[t.heap_max]*2+1]=0,l=t.heap_max+1;l<Yq;l++)c=t.heap[l],p=r[r[c*2+1]*2+1]+1,p>u&&(p=u,H++),r[c*2+1]=p,!(c>n)&&(t.bl_count[p]++,g=0,c>=s&&(g=o[c-s]),v=r[c*2],t.opt_len+=v*(p+g),f&&(t.static_len+=v*(i[c*2+1]+g)));if(H!==0){do{for(p=u-1;t.bl_count[p]===0;)p--;t.bl_count[p]--,t.bl_count[p+1]+=2,t.bl_count[u]--,H-=2}while(H>0);for(p=u;p!==0;p--)for(c=t.bl_count[p];c!==0;)w=t.heap[--l],!(w>n)&&(r[w*2+1]!==p&&(t.opt_len+=(p-r[w*2+1])*r[w*2],r[w*2+1]=p),c--)}}function n_(t,e,r){var n=new Array(lo+1),i=0,f,o;for(f=1;f<=lo;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]=r_(n[s]++,s))}}function zA(){var t,e,r,n,i,f=new Array(lo+1);for(r=0,n=0;n<qw-1;n++)for(Bw[n]=r,t=0;t<1<<kw[n];t++)Bl[r++]=n;for(Bl[r-1]=n,i=0,n=0;n<16;n++)for(Tc[n]=i,t=0;t<1<<vc[n];t++)kl[i++]=n;for(i>>=7;n<ms;n++)for(Tc[n]=i<<7,t=0;t<1<<vc[n]-7;t++)kl[256+i++]=n;for(e=0;e<=lo;e++)f[e]=0;for(t=0;t<=143;)Di[t*2+1]=8,t++,f[8]++;for(;t<=255;)Di[t*2+1]=9,t++,f[9]++;for(;t<=279;)Di[t*2+1]=7,t++,f[7]++;for(;t<=287;)Di[t*2+1]=8,t++,f[8]++;for(n_(Di,vl+1,f),t=0;t<ms;t++)Tl[t*2+1]=5,Tl[t*2]=r_(t,5);Xq=new Iw(Di,kw,_l+1,vl,lo),$q=new Iw(Tl,vc,0,ms,lo),e_=new Iw(new Array(0),RA,0,_w,NA)}function i_(t){var e;for(e=0;e<vl;e++)t.dyn_ltree[e*2]=0;for(e=0;e<ms;e++)t.dyn_dtree[e*2]=0;for(e=0;e<_w;e++)t.bl_tree[e*2]=0;t.dyn_ltree[Tw*2]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function f_(t){t.bi_valid>8?Il(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 UA(t,e,r,n){f_(t),n&&(Il(t,r),Il(t,~r)),xA.arraySet(t.pending_buf,t.window,e,r,t.pending),t.pending+=r}function o_(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 Sw(t,e,r){for(var n=t.heap[r],i=r<<1;i<=t.heap_len&&(i<t.heap_len&&o_(e,t.heap[i+1],t.heap[i],t.depth)&&i++,!o_(e,n,t.heap[i],t.depth));)t.heap[r]=t.heap[i],r=i,i<<=1;t.heap[r]=n}function s_(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?Gn(t,i,e):(o=Bl[i],Gn(t,o+_l+1,e),s=kw[o],s!==0&&(i-=Bw[o],Ar(t,i,s)),n--,o=t_(n),Gn(t,o,r),s=vc[o],s!==0&&(n-=Tc[o],Ar(t,n,s)));while(f<t.last_lit);Gn(t,Tw,e)}function Ew(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,u=-1,l;for(t.heap_len=0,t.heap_max=Yq,o=0;o<f;o++)r[o*2]!==0?(t.heap[++t.heap_len]=u=o,t.depth[o]=0):r[o*2+1]=0;for(;t.heap_len<2;)l=t.heap[++t.heap_len]=u<2?++u:0,r[l*2]=1,t.depth[l]=0,t.opt_len--,i&&(t.static_len-=n[l*2+1]);for(e.max_code=u,o=t.heap_len>>1;o>=1;o--)Sw(t,r,o);l=f;do o=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Sw(t,r,1),s=t.heap[1],t.heap[--t.heap_max]=o,t.heap[--t.heap_max]=s,r[l*2]=r[o*2]+r[s*2],t.depth[l]=(t.depth[o]>=t.depth[s]?t.depth[o]:t.depth[s])+1,r[o*2+1]=r[s*2+1]=l,t.heap[1]=l++,Sw(t,r,1);while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],MA(t,e),n_(r,u,t.bl_count)}function a_(t,e,r){var n,i=-1,f,o=e[0*2+1],s=0,u=7,l=4;for(o===0&&(u=138,l=3),e[(r+1)*2+1]=65535,n=0;n<=r;n++)f=o,o=e[(n+1)*2+1],!(++s<u&&f===o)&&(s<l?t.bl_tree[f*2]+=s:f!==0?(f!==i&&t.bl_tree[f*2]++,t.bl_tree[Gq*2]++):s<=10?t.bl_tree[Zq*2]++:t.bl_tree[Jq*2]++,s=0,i=f,o===0?(u=138,l=3):f===o?(u=6,l=3):(u=7,l=4))}function l_(t,e,r){var n,i=-1,f,o=e[0*2+1],s=0,u=7,l=4;for(o===0&&(u=138,l=3),n=0;n<=r;n++)if(f=o,o=e[(n+1)*2+1],!(++s<u&&f===o)){if(s<l)do Gn(t,f,t.bl_tree);while(--s!=0);else f!==0?(f!==i&&(Gn(t,f,t.bl_tree),s--),Gn(t,Gq,t.bl_tree),Ar(t,s-3,2)):s<=10?(Gn(t,Zq,t.bl_tree),Ar(t,s-3,3)):(Gn(t,Jq,t.bl_tree),Ar(t,s-11,7));s=0,i=f,o===0?(u=138,l=3):f===o?(u=6,l=3):(u=7,l=4)}}function LA(t){var e;for(a_(t,t.dyn_ltree,t.l_desc.max_code),a_(t,t.dyn_dtree,t.d_desc.max_code),Ew(t,t.bl_desc),e=_w-1;e>=3&&t.bl_tree[Qq[e]*2+1]===0;e--);return t.opt_len+=3*(e+1)+5+5+4,e}function VA(t,e,r,n){var i;for(Ar(t,e-257,5),Ar(t,r-1,5),Ar(t,n-4,4),i=0;i<n;i++)Ar(t,t.bl_tree[Qq[i]*2+1],3);l_(t,t.dyn_ltree,e-1),l_(t,t.dyn_dtree,r-1)}function CA(t){var e=4093624447,r;for(r=0;r<=31;r++,e>>>=1)if(e&1&&t.dyn_ltree[r*2]!==0)return Cq;if(t.dyn_ltree[9*2]!==0||t.dyn_ltree[10*2]!==0||t.dyn_ltree[13*2]!==0)return Wq;for(r=32;r<_l;r++)if(t.dyn_ltree[r*2]!==0)return Wq;return Cq}var u_=!1;function WA(t){u_||(zA(),u_=!0),t.l_desc=new xw(t.dyn_ltree,Xq),t.d_desc=new xw(t.dyn_dtree,$q),t.bl_desc=new xw(t.bl_tree,e_),t.bi_buf=0,t.bi_valid=0,i_(t)}function c_(t,e,r,n){Ar(t,(AA<<1)+(n?1:0),3),UA(t,e,r,!0)}function KA(t){Ar(t,Kq<<1,3),Gn(t,Tw,Di),HA(t)}function YA(t,e,r,n){var i,f,o=0;t.level>0?(t.strm.data_type===EA&&(t.strm.data_type=CA(t)),Ew(t,t.l_desc),Ew(t,t.d_desc),o=LA(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?c_(t,e,r,n):t.strategy===SA||f===i?(Ar(t,(Kq<<1)+(n?1:0),3),s_(t,Di,Tl)):(Ar(t,(OA<<1)+(n?1:0),3),VA(t,t.l_desc.max_code+1,t.d_desc.max_code+1,o+1),s_(t,t.dyn_ltree,t.dyn_dtree)),i_(t),n&&f_(t)}function GA(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[(Bl[r]+_l+1)*2]++,t.dyn_dtree[t_(e)*2]++),t.last_lit===t.lit_bufsize-1}ws._tr_init=WA;ws._tr_stored_block=c_;ws._tr_flush_block=YA;ws._tr_tally=GA;ws._tr_align=KA});var Aw=k((N8,d_)=>{"use strict";function ZA(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}d_.exports=ZA});var Ow=k((R8,m_)=>{"use strict";function JA(){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 QA=JA();function XA(t,e,r,n){var i=QA,f=n+r;t^=-1;for(var o=n;o<f;o++)t=t>>>8^i[(t^e[o])&255];return t^-1}m_.exports=XA});var kc=k((P8,w_)=>{"use strict";w_.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 T_=k(Qn=>{"use strict";var qr=Fi(),tn=p_(),h_=Aw(),uf=Ow(),$A=kc(),uo=0,eO=1,tO=3,cf=4,b_=5,Zn=0,g_=1,rn=-2,rO=-3,Fw=-5,nO=-1,iO=1,Bc=2,fO=3,oO=4,sO=0,aO=2,Ic=8,lO=9,uO=15,cO=8,pO=29,dO=256,Dw=dO+1+pO,mO=30,wO=19,hO=2*Dw+1,bO=15,Ce=3,pf=258,Sn=pf+Ce+1,gO=32,xc=42,Nw=69,Sc=73,Ec=91,Ac=103,co=113,xl=666,Yt=1,Sl=2,po=3,hs=4,yO=3;function df(t,e){return t.msg=$A[e],e}function y_(t){return(t<<1)-(t>4?9:0)}function mf(t){for(var e=t.length;--e>=0;)t[e]=0}function wf(t){var e=t.state,r=e.pending;r>t.avail_out&&(r=t.avail_out),r!==0&&(qr.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 nr(t,e){tn._tr_flush_block(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,wf(t.strm)}function Qe(t,e){t.pending_buf[t.pending++]=e}function El(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=e&255}function jO(t,e,r,n){var i=t.avail_in;return i>n&&(i=n),i===0?0:(t.avail_in-=i,qr.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=uf(t.adler,e,i,r)),t.next_in+=i,t.total_in+=i,i)}function j_(t,e){var r=t.max_chain_length,n=t.strstart,i,f,o=t.prev_length,s=t.nice_match,u=t.strstart>t.w_size-Sn?t.strstart-(t.w_size-Sn):0,l=t.window,c=t.w_mask,w=t.prev,p=t.strstart+pf,g=l[n+o-1],v=l[n+o];t.prev_length>=t.good_match&&(r>>=2),s>t.lookahead&&(s=t.lookahead);do if(i=e,!(l[i+o]!==v||l[i+o-1]!==g||l[i]!==l[n]||l[++i]!==l[n+1])){n+=2,i++;do;while(l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&l[++n]===l[++i]&&n<p);if(f=pf-(p-n),n=p-pf,f>o){if(t.match_start=e,o=f,f>=s)break;g=l[n+o-1],v=l[n+o]}}while((e=w[e&c])>u&&--r!=0);return o<=t.lookahead?o:t.lookahead}function mo(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-Sn)){qr.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=jO(t.strm,t.window,t.strstart+t.lookahead,f),t.lookahead+=n,t.lookahead+t.insert>=Ce)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+Ce-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<Ce)););}while(t.lookahead<Sn&&t.strm.avail_in!==0)}function qO(t,e){var r=65535;for(r>t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(mo(t),t.lookahead===0&&e===uo)return Yt;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,nr(t,!1),t.strm.avail_out===0)||t.strstart-t.block_start>=t.w_size-Sn&&(nr(t,!1),t.strm.avail_out===0))return Yt}return t.insert=0,e===cf?(nr(t,!0),t.strm.avail_out===0?po:hs):(t.strstart>t.block_start&&(nr(t,!1),t.strm.avail_out===0),Yt)}function Rw(t,e){for(var r,n;;){if(t.lookahead<Sn){if(mo(t),t.lookahead<Sn&&e===uo)return Yt;if(t.lookahead===0)break}if(r=0,t.lookahead>=Ce&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Ce-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-Sn&&(t.match_length=j_(t,r)),t.match_length>=Ce)if(n=tn._tr_tally(t,t.strstart-t.match_start,t.match_length-Ce),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=Ce){t.match_length--;do t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Ce-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=tn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(n&&(nr(t,!1),t.strm.avail_out===0))return Yt}return t.insert=t.strstart<Ce-1?t.strstart:Ce-1,e===cf?(nr(t,!0),t.strm.avail_out===0?po:hs):t.last_lit&&(nr(t,!1),t.strm.avail_out===0)?Yt:Sl}function bs(t,e){for(var r,n,i;;){if(t.lookahead<Sn){if(mo(t),t.lookahead<Sn&&e===uo)return Yt;if(t.lookahead===0)break}if(r=0,t.lookahead>=Ce&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+Ce-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=Ce-1,r!==0&&t.prev_length<t.max_lazy_match&&t.strstart-r<=t.w_size-Sn&&(t.match_length=j_(t,r),t.match_length<=5&&(t.strategy===iO||t.match_length===Ce&&t.strstart-t.match_start>4096)&&(t.match_length=Ce-1)),t.prev_length>=Ce&&t.match_length<=t.prev_length){i=t.strstart+t.lookahead-Ce,n=tn._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-Ce),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+Ce-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=Ce-1,t.strstart++,n&&(nr(t,!1),t.strm.avail_out===0))return Yt}else if(t.match_available){if(n=tn._tr_tally(t,0,t.window[t.strstart-1]),n&&nr(t,!1),t.strstart++,t.lookahead--,t.strm.avail_out===0)return Yt}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(n=tn._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<Ce-1?t.strstart:Ce-1,e===cf?(nr(t,!0),t.strm.avail_out===0?po:hs):t.last_lit&&(nr(t,!1),t.strm.avail_out===0)?Yt:Sl}function _O(t,e){for(var r,n,i,f,o=t.window;;){if(t.lookahead<=pf){if(mo(t),t.lookahead<=pf&&e===uo)return Yt;if(t.lookahead===0)break}if(t.match_length=0,t.lookahead>=Ce&&t.strstart>0&&(i=t.strstart-1,n=o[i],n===o[++i]&&n===o[++i]&&n===o[++i])){f=t.strstart+pf;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=pf-(f-i),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=Ce?(r=tn._tr_tally(t,1,t.match_length-Ce),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=tn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(nr(t,!1),t.strm.avail_out===0))return Yt}return t.insert=0,e===cf?(nr(t,!0),t.strm.avail_out===0?po:hs):t.last_lit&&(nr(t,!1),t.strm.avail_out===0)?Yt:Sl}function vO(t,e){for(var r;;){if(t.lookahead===0&&(mo(t),t.lookahead===0)){if(e===uo)return Yt;break}if(t.match_length=0,r=tn._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(nr(t,!1),t.strm.avail_out===0))return Yt}return t.insert=0,e===cf?(nr(t,!0),t.strm.avail_out===0?po:hs):t.last_lit&&(nr(t,!1),t.strm.avail_out===0)?Yt:Sl}function Jn(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 gs;gs=[new Jn(0,0,0,0,qO),new Jn(4,4,8,4,Rw),new Jn(4,5,16,8,Rw),new Jn(4,6,32,32,Rw),new Jn(4,4,16,16,bs),new Jn(8,16,32,32,bs),new Jn(8,16,128,128,bs),new Jn(8,32,128,256,bs),new Jn(32,128,258,1024,bs),new Jn(32,258,258,4096,bs)];function TO(t){t.window_size=2*t.w_size,mf(t.head),t.max_lazy_match=gs[t.level].max_lazy,t.good_match=gs[t.level].good_length,t.nice_match=gs[t.level].nice_length,t.max_chain_length=gs[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=Ce-1,t.match_available=0,t.ins_h=0}function kO(){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=Ic,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 qr.Buf16(hO*2),this.dyn_dtree=new qr.Buf16((2*mO+1)*2),this.bl_tree=new qr.Buf16((2*wO+1)*2),mf(this.dyn_ltree),mf(this.dyn_dtree),mf(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new qr.Buf16(bO+1),this.heap=new qr.Buf16(2*Dw+1),mf(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new qr.Buf16(2*Dw+1),mf(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 q_(t){var e;return!t||!t.state?df(t,rn):(t.total_in=t.total_out=0,t.data_type=aO,e=t.state,e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?xc:co,t.adler=e.wrap===2?0:1,e.last_flush=uo,tn._tr_init(e),Zn)}function __(t){var e=q_(t);return e===Zn&&TO(t.state),e}function BO(t,e){return!t||!t.state||t.state.wrap!==2?rn:(t.state.gzhead=e,Zn)}function v_(t,e,r,n,i,f){if(!t)return rn;var o=1;if(e===nO&&(e=6),n<0?(o=0,n=-n):n>15&&(o=2,n-=16),i<1||i>lO||r!==Ic||n<8||n>15||e<0||e>9||f<0||f>oO)return df(t,rn);n===8&&(n=9);var s=new kO;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+Ce-1)/Ce),s.window=new qr.Buf8(s.w_size*2),s.head=new qr.Buf16(s.hash_size),s.prev=new qr.Buf16(s.w_size),s.lit_bufsize=1<<i+6,s.pending_buf_size=s.lit_bufsize*4,s.pending_buf=new qr.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,__(t)}function IO(t,e){return v_(t,e,Ic,uO,cO,sO)}function xO(t,e){var r,n,i,f;if(!t||!t.state||e>b_||e<0)return t?df(t,rn):rn;if(n=t.state,!t.output||!t.input&&t.avail_in!==0||n.status===xl&&e!==cf)return df(t,t.avail_out===0?Fw:rn);if(n.strm=t,r=n.last_flush,n.last_flush=e,n.status===xc)if(n.wrap===2)t.adler=0,Qe(n,31),Qe(n,139),Qe(n,8),n.gzhead?(Qe(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)),Qe(n,n.gzhead.time&255),Qe(n,n.gzhead.time>>8&255),Qe(n,n.gzhead.time>>16&255),Qe(n,n.gzhead.time>>24&255),Qe(n,n.level===9?2:n.strategy>=Bc||n.level<2?4:0),Qe(n,n.gzhead.os&255),n.gzhead.extra&&n.gzhead.extra.length&&(Qe(n,n.gzhead.extra.length&255),Qe(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(t.adler=uf(t.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=Nw):(Qe(n,0),Qe(n,0),Qe(n,0),Qe(n,0),Qe(n,0),Qe(n,n.level===9?2:n.strategy>=Bc||n.level<2?4:0),Qe(n,yO),n.status=co);else{var o=Ic+(n.w_bits-8<<4)<<8,s=-1;n.strategy>=Bc||n.level<2?s=0:n.level<6?s=1:n.level===6?s=2:s=3,o|=s<<6,n.strstart!==0&&(o|=gO),o+=31-o%31,n.status=co,El(n,o),n.strstart!==0&&(El(n,t.adler>>>16),El(n,t.adler&65535)),t.adler=1}if(n.status===Nw)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=uf(t.adler,n.pending_buf,n.pending-i,i)),wf(t),i=n.pending,n.pending===n.pending_buf_size));)Qe(n,n.gzhead.extra[n.gzindex]&255),n.gzindex++;n.gzhead.hcrc&&n.pending>i&&(t.adler=uf(t.adler,n.pending_buf,n.pending-i,i)),n.gzindex===n.gzhead.extra.length&&(n.gzindex=0,n.status=Sc)}else n.status=Sc;if(n.status===Sc)if(n.gzhead.name){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=uf(t.adler,n.pending_buf,n.pending-i,i)),wf(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,Qe(n,f)}while(f!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=uf(t.adler,n.pending_buf,n.pending-i,i)),f===0&&(n.gzindex=0,n.status=Ec)}else n.status=Ec;if(n.status===Ec)if(n.gzhead.comment){i=n.pending;do{if(n.pending===n.pending_buf_size&&(n.gzhead.hcrc&&n.pending>i&&(t.adler=uf(t.adler,n.pending_buf,n.pending-i,i)),wf(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,Qe(n,f)}while(f!==0);n.gzhead.hcrc&&n.pending>i&&(t.adler=uf(t.adler,n.pending_buf,n.pending-i,i)),f===0&&(n.status=Ac)}else n.status=Ac;if(n.status===Ac&&(n.gzhead.hcrc?(n.pending+2>n.pending_buf_size&&wf(t),n.pending+2<=n.pending_buf_size&&(Qe(n,t.adler&255),Qe(n,t.adler>>8&255),t.adler=0,n.status=co)):n.status=co),n.pending!==0){if(wf(t),t.avail_out===0)return n.last_flush=-1,Zn}else if(t.avail_in===0&&y_(e)<=y_(r)&&e!==cf)return df(t,Fw);if(n.status===xl&&t.avail_in!==0)return df(t,Fw);if(t.avail_in!==0||n.lookahead!==0||e!==uo&&n.status!==xl){var u=n.strategy===Bc?vO(n,e):n.strategy===fO?_O(n,e):gs[n.level].func(n,e);if((u===po||u===hs)&&(n.status=xl),u===Yt||u===po)return t.avail_out===0&&(n.last_flush=-1),Zn;if(u===Sl&&(e===eO?tn._tr_align(n):e!==b_&&(tn._tr_stored_block(n,0,0,!1),e===tO&&(mf(n.head),n.lookahead===0&&(n.strstart=0,n.block_start=0,n.insert=0))),wf(t),t.avail_out===0))return n.last_flush=-1,Zn}return e!==cf?Zn:n.wrap<=0?g_:(n.wrap===2?(Qe(n,t.adler&255),Qe(n,t.adler>>8&255),Qe(n,t.adler>>16&255),Qe(n,t.adler>>24&255),Qe(n,t.total_in&255),Qe(n,t.total_in>>8&255),Qe(n,t.total_in>>16&255),Qe(n,t.total_in>>24&255)):(El(n,t.adler>>>16),El(n,t.adler&65535)),wf(t),n.wrap>0&&(n.wrap=-n.wrap),n.pending!==0?Zn:g_)}function SO(t){var e;return!t||!t.state?rn:(e=t.state.status,e!==xc&&e!==Nw&&e!==Sc&&e!==Ec&&e!==Ac&&e!==co&&e!==xl?df(t,rn):(t.state=null,e===co?df(t,rO):Zn))}function EO(t,e){var r=e.length,n,i,f,o,s,u,l,c;if(!t||!t.state||(n=t.state,o=n.wrap,o===2||o===1&&n.status!==xc||n.lookahead))return rn;for(o===1&&(t.adler=h_(t.adler,e,r,0)),n.wrap=0,r>=n.w_size&&(o===0&&(mf(n.head),n.strstart=0,n.block_start=0,n.insert=0),c=new qr.Buf8(n.w_size),qr.arraySet(c,e,r-n.w_size,n.w_size,0),e=c,r=n.w_size),s=t.avail_in,u=t.next_in,l=t.input,t.avail_in=r,t.next_in=0,t.input=e,mo(n);n.lookahead>=Ce;){i=n.strstart,f=n.lookahead-(Ce-1);do n.ins_h=(n.ins_h<<n.hash_shift^n.window[i+Ce-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=Ce-1,mo(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=Ce-1,n.match_available=0,t.next_in=u,t.input=l,t.avail_in=s,n.wrap=o,Zn}Qn.deflateInit=IO;Qn.deflateInit2=v_;Qn.deflateReset=__;Qn.deflateResetKeep=q_;Qn.deflateSetHeader=BO;Qn.deflate=xO;Qn.deflateEnd=SO;Qn.deflateSetDictionary=EO;Qn.deflateInfo="pako deflate (from Nodeca project)"});var Pw=k(ys=>{"use strict";var Oc=Fi(),k_=!0,B_=!0;try{String.fromCharCode.apply(null,[0])}catch{k_=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{B_=!1}var Al=new Oc.Buf8(256);for(Ni=0;Ni<256;Ni++)Al[Ni]=Ni>=252?6:Ni>=248?5:Ni>=240?4:Ni>=224?3:Ni>=192?2:1;var Ni;Al[254]=Al[254]=1;ys.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 Oc.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 I_(t,e){if(e<65534&&(t.subarray&&B_||!t.subarray&&k_))return String.fromCharCode.apply(null,Oc.shrinkBuf(t,e));for(var r="",n=0;n<e;n++)r+=String.fromCharCode(t[n]);return r}ys.buf2binstring=function(t){return I_(t,t.length)};ys.binstring2buf=function(t){for(var e=new Oc.Buf8(t.length),r=0,n=e.length;r<n;r++)e[r]=t.charCodeAt(r);return e};ys.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=Al[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 I_(s,n)};ys.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+Al[t[r]]>e?r:e}});var Hw=k((z8,x_)=>{"use strict";function AO(){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}x_.exports=AO});var O_=k(Dl=>{"use strict";var Ol=T_(),Fl=Fi(),Mw=Pw(),zw=kc(),OO=Hw(),S_=Object.prototype.toString,FO=0,Uw=4,js=0,E_=1,A_=2,DO=-1,NO=0,RO=8;function wo(t){if(!(this instanceof wo))return new wo(t);this.options=Fl.assign({level:DO,method:RO,chunkSize:16384,windowBits:15,memLevel:8,strategy:NO,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 OO,this.strm.avail_out=0;var r=Ol.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(r!==js)throw new Error(zw[r]);if(e.header&&Ol.deflateSetHeader(this.strm,e.header),e.dictionary){var n;if(typeof e.dictionary=="string"?n=Mw.string2buf(e.dictionary):S_.call(e.dictionary)==="[object ArrayBuffer]"?n=new Uint8Array(e.dictionary):n=e.dictionary,r=Ol.deflateSetDictionary(this.strm,n),r!==js)throw new Error(zw[r]);this._dict_set=!0}}wo.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?Uw:FO,typeof t=="string"?r.input=Mw.string2buf(t):S_.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 Fl.Buf8(n),r.next_out=0,r.avail_out=n),i=Ol.deflate(r,f),i!==E_&&i!==js)return this.onEnd(i),this.ended=!0,!1;(r.avail_out===0||r.avail_in===0&&(f===Uw||f===A_))&&(this.options.to==="string"?this.onData(Mw.buf2binstring(Fl.shrinkBuf(r.output,r.next_out))):this.onData(Fl.shrinkBuf(r.output,r.next_out)))}while((r.avail_in>0||r.avail_out===0)&&i!==E_);return f===Uw?(i=Ol.deflateEnd(this.strm),this.onEnd(i),this.ended=!0,i===js):(f===A_&&(this.onEnd(js),r.avail_out=0),!0)};wo.prototype.onData=function(t){this.chunks.push(t)};wo.prototype.onEnd=function(t){t===js&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=Fl.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function Lw(t,e){var r=new wo(e);if(r.push(t,!0),r.err)throw r.msg||zw[r.err];return r.result}function PO(t,e){return e=e||{},e.raw=!0,Lw(t,e)}function HO(t,e){return e=e||{},e.gzip=!0,Lw(t,e)}Dl.Deflate=wo;Dl.deflate=Lw;Dl.deflateRaw=PO;Dl.gzip=HO});var D_=k((L8,F_)=>{"use strict";var Fc=30,MO=12;F_.exports=function(e,r){var n,i,f,o,s,u,l,c,w,p,g,v,H,O,C,te,M,z,R,F,oe,re,ue,Ye,q;n=e.state,i=e.next_in,Ye=e.input,f=i+(e.avail_in-5),o=e.next_out,q=e.output,s=o-(r-e.avail_out),u=o+(e.avail_out-257),l=n.dmax,c=n.wsize,w=n.whave,p=n.wnext,g=n.window,v=n.hold,H=n.bits,O=n.lencode,C=n.distcode,te=(1<<n.lenbits)-1,M=(1<<n.distbits)-1;e:do{H<15&&(v+=Ye[i++]<<H,H+=8,v+=Ye[i++]<<H,H+=8),z=O[v&te];t:for(;;){if(R=z>>>24,v>>>=R,H-=R,R=z>>>16&255,R===0)q[o++]=z&65535;else if(R&16){F=z&65535,R&=15,R&&(H<R&&(v+=Ye[i++]<<H,H+=8),F+=v&(1<<R)-1,v>>>=R,H-=R),H<15&&(v+=Ye[i++]<<H,H+=8,v+=Ye[i++]<<H,H+=8),z=C[v&M];r:for(;;){if(R=z>>>24,v>>>=R,H-=R,R=z>>>16&255,R&16){if(oe=z&65535,R&=15,H<R&&(v+=Ye[i++]<<H,H+=8,H<R&&(v+=Ye[i++]<<H,H+=8)),oe+=v&(1<<R)-1,oe>l){e.msg="invalid distance too far back",n.mode=Fc;break e}if(v>>>=R,H-=R,R=o-s,oe>R){if(R=oe-R,R>w&&n.sane){e.msg="invalid distance too far back",n.mode=Fc;break e}if(re=0,ue=g,p===0){if(re+=c-R,R<F){F-=R;do q[o++]=g[re++];while(--R);re=o-oe,ue=q}}else if(p<R){if(re+=c+p-R,R-=p,R<F){F-=R;do q[o++]=g[re++];while(--R);if(re=0,p<F){R=p,F-=R;do q[o++]=g[re++];while(--R);re=o-oe,ue=q}}}else if(re+=p-R,R<F){F-=R;do q[o++]=g[re++];while(--R);re=o-oe,ue=q}for(;F>2;)q[o++]=ue[re++],q[o++]=ue[re++],q[o++]=ue[re++],F-=3;F&&(q[o++]=ue[re++],F>1&&(q[o++]=ue[re++]))}else{re=o-oe;do q[o++]=q[re++],q[o++]=q[re++],q[o++]=q[re++],F-=3;while(F>2);F&&(q[o++]=q[re++],F>1&&(q[o++]=q[re++]))}}else if((R&64)==0){z=C[(z&65535)+(v&(1<<R)-1)];continue r}else{e.msg="invalid distance code",n.mode=Fc;break e}break}}else if((R&64)==0){z=O[(z&65535)+(v&(1<<R)-1)];continue t}else if(R&32){n.mode=MO;break e}else{e.msg="invalid literal/length code",n.mode=Fc;break e}break}}while(i<f&&o<u);F=H>>3,i-=F,H-=F<<3,v&=(1<<H)-1,e.next_in=i,e.next_out=o,e.avail_in=i<f?5+(f-i):5-(i-f),e.avail_out=o<u?257+(u-o):257-(o-u),n.hold=v,n.bits=H}});var U_=k((V8,z_)=>{"use strict";var N_=Fi(),qs=15,R_=852,P_=592,H_=0,Vw=1,M_=2,zO=[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],UO=[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],LO=[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],VO=[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];z_.exports=function(e,r,n,i,f,o,s,u){var l=u.bits,c=0,w=0,p=0,g=0,v=0,H=0,O=0,C=0,te=0,M=0,z,R,F,oe,re,ue=null,Ye=0,q,Ae=new N_.Buf16(qs+1),Ue=new N_.Buf16(qs+1),he=null,Ge=0,$,qt,nt;for(c=0;c<=qs;c++)Ae[c]=0;for(w=0;w<i;w++)Ae[r[n+w]]++;for(v=l,g=qs;g>=1&&Ae[g]===0;g--);if(v>g&&(v=g),g===0)return f[o++]=1<<24|64<<16|0,f[o++]=1<<24|64<<16|0,u.bits=1,0;for(p=1;p<g&&Ae[p]===0;p++);for(v<p&&(v=p),C=1,c=1;c<=qs;c++)if(C<<=1,C-=Ae[c],C<0)return-1;if(C>0&&(e===H_||g!==1))return-1;for(Ue[1]=0,c=1;c<qs;c++)Ue[c+1]=Ue[c]+Ae[c];for(w=0;w<i;w++)r[n+w]!==0&&(s[Ue[r[n+w]]++]=w);if(e===H_?(ue=he=s,q=19):e===Vw?(ue=zO,Ye-=257,he=UO,Ge-=257,q=256):(ue=LO,he=VO,q=-1),M=0,w=0,c=p,re=o,H=v,O=0,F=-1,te=1<<v,oe=te-1,e===Vw&&te>R_||e===M_&&te>P_)return 1;for(;;){$=c-O,s[w]<q?(qt=0,nt=s[w]):s[w]>q?(qt=he[Ge+s[w]],nt=ue[Ye+s[w]]):(qt=32+64,nt=0),z=1<<c-O,R=1<<H,p=R;do R-=z,f[re+(M>>O)+R]=$<<24|qt<<16|nt|0;while(R!==0);for(z=1<<c-1;M&z;)z>>=1;if(z!==0?(M&=z-1,M+=z):M=0,w++,--Ae[c]==0){if(c===g)break;c=r[n+s[w]]}if(c>v&&(M&oe)!==F){for(O===0&&(O=v),re+=p,H=c-O,C=1<<H;H+O<g&&(C-=Ae[H+O],!(C<=0));)H++,C<<=1;if(te+=1<<H,e===Vw&&te>R_||e===M_&&te>P_)return 1;F=M&oe,f[F]=v<<24|H<<16|re-o|0}}return M!==0&&(f[re+M]=c-O<<24|64<<16|0),u.bits=v,0}});var _v=k(En=>{"use strict";var Lr=Fi(),Cw=Aw(),Xn=Ow(),CO=D_(),Nl=U_(),WO=0,L_=1,V_=2,C_=4,KO=5,Dc=6,ho=0,YO=1,GO=2,nn=-2,W_=-3,Ww=-4,ZO=-5,K_=8,Y_=1,G_=2,Z_=3,J_=4,Q_=5,X_=6,$_=7,ev=8,tv=9,rv=10,Nc=11,Ri=12,Kw=13,nv=14,Yw=15,iv=16,fv=17,ov=18,sv=19,Rc=20,Pc=21,av=22,lv=23,uv=24,cv=25,pv=26,Gw=27,dv=28,mv=29,bt=30,Zw=31,JO=32,QO=852,XO=592,$O=15,e4=$O;function wv(t){return(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24)}function t4(){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 Lr.Buf16(320),this.work=new Lr.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function hv(t){var e;return!t||!t.state?nn:(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=e.wrap&1),e.mode=Y_,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Lr.Buf32(QO),e.distcode=e.distdyn=new Lr.Buf32(XO),e.sane=1,e.back=-1,ho)}function bv(t){var e;return!t||!t.state?nn:(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,hv(t))}function gv(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))?nn:(n.window!==null&&n.wbits!==e&&(n.window=null),n.wrap=r,n.wbits=e,bv(t))}function yv(t,e){var r,n;return t?(n=new t4,t.state=n,n.window=null,r=gv(t,e),r!==ho&&(t.state=null),r):nn}function r4(t){return yv(t,e4)}var jv=!0,Jw,Qw;function n4(t){if(jv){var e;for(Jw=new Lr.Buf32(512),Qw=new Lr.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(Nl(L_,t.lens,0,288,Jw,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;Nl(V_,t.lens,0,32,Qw,0,t.work,{bits:5}),jv=!1}t.lencode=Jw,t.lenbits=9,t.distcode=Qw,t.distbits=5}function qv(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 Lr.Buf8(f.wsize)),n>=f.wsize?(Lr.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),Lr.arraySet(f.window,e,r-n,i,f.wnext),n-=i,n?(Lr.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 i4(t,e){var r,n,i,f,o,s,u,l,c,w,p,g,v,H,O=0,C,te,M,z,R,F,oe,re,ue=new Lr.Buf8(4),Ye,q,Ae=[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 nn;r=t.state,r.mode===Ri&&(r.mode=Kw),o=t.next_out,i=t.output,u=t.avail_out,f=t.next_in,n=t.input,s=t.avail_in,l=r.hold,c=r.bits,w=s,p=u,re=ho;e:for(;;)switch(r.mode){case Y_:if(r.wrap===0){r.mode=Kw;break}for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(r.wrap&2&&l===35615){r.check=0,ue[0]=l&255,ue[1]=l>>>8&255,r.check=Xn(r.check,ue,2,0),l=0,c=0,r.mode=G_;break}if(r.flags=0,r.head&&(r.head.done=!1),!(r.wrap&1)||(((l&255)<<8)+(l>>8))%31){t.msg="incorrect header check",r.mode=bt;break}if((l&15)!==K_){t.msg="unknown compression method",r.mode=bt;break}if(l>>>=4,c-=4,oe=(l&15)+8,r.wbits===0)r.wbits=oe;else if(oe>r.wbits){t.msg="invalid window size",r.mode=bt;break}r.dmax=1<<oe,t.adler=r.check=1,r.mode=l&512?rv:Ri,l=0,c=0;break;case G_:for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(r.flags=l,(r.flags&255)!==K_){t.msg="unknown compression method",r.mode=bt;break}if(r.flags&57344){t.msg="unknown header flags set",r.mode=bt;break}r.head&&(r.head.text=l>>8&1),r.flags&512&&(ue[0]=l&255,ue[1]=l>>>8&255,r.check=Xn(r.check,ue,2,0)),l=0,c=0,r.mode=Z_;case Z_:for(;c<32;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.head&&(r.head.time=l),r.flags&512&&(ue[0]=l&255,ue[1]=l>>>8&255,ue[2]=l>>>16&255,ue[3]=l>>>24&255,r.check=Xn(r.check,ue,4,0)),l=0,c=0,r.mode=J_;case J_:for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.head&&(r.head.xflags=l&255,r.head.os=l>>8),r.flags&512&&(ue[0]=l&255,ue[1]=l>>>8&255,r.check=Xn(r.check,ue,2,0)),l=0,c=0,r.mode=Q_;case Q_:if(r.flags&1024){for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.length=l,r.head&&(r.head.extra_len=l),r.flags&512&&(ue[0]=l&255,ue[1]=l>>>8&255,r.check=Xn(r.check,ue,2,0)),l=0,c=0}else r.head&&(r.head.extra=null);r.mode=X_;case X_:if(r.flags&1024&&(g=r.length,g>s&&(g=s),g&&(r.head&&(oe=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),Lr.arraySet(r.head.extra,n,f,g,oe)),r.flags&512&&(r.check=Xn(r.check,n,g,f)),s-=g,f+=g,r.length-=g),r.length))break e;r.length=0,r.mode=$_;case $_:if(r.flags&2048){if(s===0)break e;g=0;do oe=n[f+g++],r.head&&oe&&r.length<65536&&(r.head.name+=String.fromCharCode(oe));while(oe&&g<s);if(r.flags&512&&(r.check=Xn(r.check,n,g,f)),s-=g,f+=g,oe)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=ev;case ev:if(r.flags&4096){if(s===0)break e;g=0;do oe=n[f+g++],r.head&&oe&&r.length<65536&&(r.head.comment+=String.fromCharCode(oe));while(oe&&g<s);if(r.flags&512&&(r.check=Xn(r.check,n,g,f)),s-=g,f+=g,oe)break e}else r.head&&(r.head.comment=null);r.mode=tv;case tv:if(r.flags&512){for(;c<16;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(l!==(r.check&65535)){t.msg="header crc mismatch",r.mode=bt;break}l=0,c=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=Ri;break;case rv:for(;c<32;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}t.adler=r.check=wv(l),l=0,c=0,r.mode=Nc;case Nc:if(r.havedict===0)return t.next_out=o,t.avail_out=u,t.next_in=f,t.avail_in=s,r.hold=l,r.bits=c,GO;t.adler=r.check=1,r.mode=Ri;case Ri:if(e===KO||e===Dc)break e;case Kw:if(r.last){l>>>=c&7,c-=c&7,r.mode=Gw;break}for(;c<3;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}switch(r.last=l&1,l>>>=1,c-=1,l&3){case 0:r.mode=nv;break;case 1:if(n4(r),r.mode=Rc,e===Dc){l>>>=2,c-=2;break e}break;case 2:r.mode=fv;break;case 3:t.msg="invalid block type",r.mode=bt}l>>>=2,c-=2;break;case nv:for(l>>>=c&7,c-=c&7;c<32;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if((l&65535)!=(l>>>16^65535)){t.msg="invalid stored block lengths",r.mode=bt;break}if(r.length=l&65535,l=0,c=0,r.mode=Yw,e===Dc)break e;case Yw:r.mode=iv;case iv:if(g=r.length,g){if(g>s&&(g=s),g>u&&(g=u),g===0)break e;Lr.arraySet(i,n,f,g,o),s-=g,f+=g,u-=g,o+=g,r.length-=g;break}r.mode=Ri;break;case fv:for(;c<14;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(r.nlen=(l&31)+257,l>>>=5,c-=5,r.ndist=(l&31)+1,l>>>=5,c-=5,r.ncode=(l&15)+4,l>>>=4,c-=4,r.nlen>286||r.ndist>30){t.msg="too many length or distance symbols",r.mode=bt;break}r.have=0,r.mode=ov;case ov:for(;r.have<r.ncode;){for(;c<3;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.lens[Ae[r.have++]]=l&7,l>>>=3,c-=3}for(;r.have<19;)r.lens[Ae[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,Ye={bits:r.lenbits},re=Nl(WO,r.lens,0,19,r.lencode,0,r.work,Ye),r.lenbits=Ye.bits,re){t.msg="invalid code lengths set",r.mode=bt;break}r.have=0,r.mode=sv;case sv:for(;r.have<r.nlen+r.ndist;){for(;O=r.lencode[l&(1<<r.lenbits)-1],C=O>>>24,te=O>>>16&255,M=O&65535,!(C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(M<16)l>>>=C,c-=C,r.lens[r.have++]=M;else{if(M===16){for(q=C+2;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(l>>>=C,c-=C,r.have===0){t.msg="invalid bit length repeat",r.mode=bt;break}oe=r.lens[r.have-1],g=3+(l&3),l>>>=2,c-=2}else if(M===17){for(q=C+3;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}l>>>=C,c-=C,oe=0,g=3+(l&7),l>>>=3,c-=3}else{for(q=C+7;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}l>>>=C,c-=C,oe=0,g=11+(l&127),l>>>=7,c-=7}if(r.have+g>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=bt;break}for(;g--;)r.lens[r.have++]=oe}}if(r.mode===bt)break;if(r.lens[256]===0){t.msg="invalid code -- missing end-of-block",r.mode=bt;break}if(r.lenbits=9,Ye={bits:r.lenbits},re=Nl(L_,r.lens,0,r.nlen,r.lencode,0,r.work,Ye),r.lenbits=Ye.bits,re){t.msg="invalid literal/lengths set",r.mode=bt;break}if(r.distbits=6,r.distcode=r.distdyn,Ye={bits:r.distbits},re=Nl(V_,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,Ye),r.distbits=Ye.bits,re){t.msg="invalid distances set",r.mode=bt;break}if(r.mode=Rc,e===Dc)break e;case Rc:r.mode=Pc;case Pc:if(s>=6&&u>=258){t.next_out=o,t.avail_out=u,t.next_in=f,t.avail_in=s,r.hold=l,r.bits=c,CO(t,p),o=t.next_out,i=t.output,u=t.avail_out,f=t.next_in,n=t.input,s=t.avail_in,l=r.hold,c=r.bits,r.mode===Ri&&(r.back=-1);break}for(r.back=0;O=r.lencode[l&(1<<r.lenbits)-1],C=O>>>24,te=O>>>16&255,M=O&65535,!(C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(te&&(te&240)==0){for(z=C,R=te,F=M;O=r.lencode[F+((l&(1<<z+R)-1)>>z)],C=O>>>24,te=O>>>16&255,M=O&65535,!(z+C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}l>>>=z,c-=z,r.back+=z}if(l>>>=C,c-=C,r.back+=C,r.length=M,te===0){r.mode=pv;break}if(te&32){r.back=-1,r.mode=Ri;break}if(te&64){t.msg="invalid literal/length code",r.mode=bt;break}r.extra=te&15,r.mode=av;case av:if(r.extra){for(q=r.extra;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.length+=l&(1<<r.extra)-1,l>>>=r.extra,c-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=lv;case lv:for(;O=r.distcode[l&(1<<r.distbits)-1],C=O>>>24,te=O>>>16&255,M=O&65535,!(C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if((te&240)==0){for(z=C,R=te,F=M;O=r.distcode[F+((l&(1<<z+R)-1)>>z)],C=O>>>24,te=O>>>16&255,M=O&65535,!(z+C<=c);){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}l>>>=z,c-=z,r.back+=z}if(l>>>=C,c-=C,r.back+=C,te&64){t.msg="invalid distance code",r.mode=bt;break}r.offset=M,r.extra=te&15,r.mode=uv;case uv:if(r.extra){for(q=r.extra;c<q;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}r.offset+=l&(1<<r.extra)-1,l>>>=r.extra,c-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=bt;break}r.mode=cv;case cv:if(u===0)break e;if(g=p-u,r.offset>g){if(g=r.offset-g,g>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=bt;break}g>r.wnext?(g-=r.wnext,v=r.wsize-g):v=r.wnext-g,g>r.length&&(g=r.length),H=r.window}else H=i,v=o-r.offset,g=r.length;g>u&&(g=u),u-=g,r.length-=g;do i[o++]=H[v++];while(--g);r.length===0&&(r.mode=Pc);break;case pv:if(u===0)break e;i[o++]=r.length,u--,r.mode=Pc;break;case Gw:if(r.wrap){for(;c<32;){if(s===0)break e;s--,l|=n[f++]<<c,c+=8}if(p-=u,t.total_out+=p,r.total+=p,p&&(t.adler=r.check=r.flags?Xn(r.check,i,p,o-p):Cw(r.check,i,p,o-p)),p=u,(r.flags?l:wv(l))!==r.check){t.msg="incorrect data check",r.mode=bt;break}l=0,c=0}r.mode=dv;case dv:if(r.wrap&&r.flags){for(;c<32;){if(s===0)break e;s--,l+=n[f++]<<c,c+=8}if(l!==(r.total&4294967295)){t.msg="incorrect length check",r.mode=bt;break}l=0,c=0}r.mode=mv;case mv:re=YO;break e;case bt:re=W_;break e;case Zw:return Ww;case JO:default:return nn}return t.next_out=o,t.avail_out=u,t.next_in=f,t.avail_in=s,r.hold=l,r.bits=c,(r.wsize||p!==t.avail_out&&r.mode<bt&&(r.mode<Gw||e!==C_))&&qv(t,t.output,t.next_out,p-t.avail_out)?(r.mode=Zw,Ww):(w-=t.avail_in,p-=t.avail_out,t.total_in+=w,t.total_out+=p,r.total+=p,r.wrap&&p&&(t.adler=r.check=r.flags?Xn(r.check,i,p,t.next_out-p):Cw(r.check,i,p,t.next_out-p)),t.data_type=r.bits+(r.last?64:0)+(r.mode===Ri?128:0)+(r.mode===Rc||r.mode===Yw?256:0),(w===0&&p===0||e===C_)&&re===ho&&(re=ZO),re)}function f4(t){if(!t||!t.state)return nn;var e=t.state;return e.window&&(e.window=null),t.state=null,ho}function o4(t,e){var r;return!t||!t.state||(r=t.state,(r.wrap&2)==0)?nn:(r.head=e,e.done=!1,ho)}function s4(t,e){var r=e.length,n,i,f;return!t||!t.state||(n=t.state,n.wrap!==0&&n.mode!==Nc)?nn:n.mode===Nc&&(i=1,i=Cw(i,e,r,0),i!==n.check)?W_:(f=qv(t,e,r,r),f?(n.mode=Zw,Ww):(n.havedict=1,ho))}En.inflateReset=bv;En.inflateReset2=gv;En.inflateResetKeep=hv;En.inflateInit=r4;En.inflateInit2=yv;En.inflate=i4;En.inflateEnd=f4;En.inflateGetHeader=o4;En.inflateSetDictionary=s4;En.inflateInfo="pako inflate (from Nodeca project)"});var Xw=k((W8,vv)=>{"use strict";vv.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 kv=k((K8,Tv)=>{"use strict";function a4(){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}Tv.exports=a4});var Iv=k(Pl=>{"use strict";var _s=_v(),Rl=Fi(),Hc=Pw(),Dt=Xw(),$w=kc(),l4=Hw(),u4=kv(),Bv=Object.prototype.toString;function bo(t){if(!(this instanceof bo))return new bo(t);this.options=Rl.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 l4,this.strm.avail_out=0;var r=_s.inflateInit2(this.strm,e.windowBits);if(r!==Dt.Z_OK)throw new Error($w[r]);if(this.header=new u4,_s.inflateGetHeader(this.strm,this.header),e.dictionary&&(typeof e.dictionary=="string"?e.dictionary=Hc.string2buf(e.dictionary):Bv.call(e.dictionary)==="[object ArrayBuffer]"&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(r=_s.inflateSetDictionary(this.strm,e.dictionary),r!==Dt.Z_OK)))throw new Error($w[r])}bo.prototype.push=function(t,e){var r=this.strm,n=this.options.chunkSize,i=this.options.dictionary,f,o,s,u,l,c=!1;if(this.ended)return!1;o=e===~~e?e:e===!0?Dt.Z_FINISH:Dt.Z_NO_FLUSH,typeof t=="string"?r.input=Hc.binstring2buf(t):Bv.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 Rl.Buf8(n),r.next_out=0,r.avail_out=n),f=_s.inflate(r,Dt.Z_NO_FLUSH),f===Dt.Z_NEED_DICT&&i&&(f=_s.inflateSetDictionary(this.strm,i)),f===Dt.Z_BUF_ERROR&&c===!0&&(f=Dt.Z_OK,c=!1),f!==Dt.Z_STREAM_END&&f!==Dt.Z_OK)return this.onEnd(f),this.ended=!0,!1;r.next_out&&(r.avail_out===0||f===Dt.Z_STREAM_END||r.avail_in===0&&(o===Dt.Z_FINISH||o===Dt.Z_SYNC_FLUSH))&&(this.options.to==="string"?(s=Hc.utf8border(r.output,r.next_out),u=r.next_out-s,l=Hc.buf2string(r.output,s),r.next_out=u,r.avail_out=n-u,u&&Rl.arraySet(r.output,r.output,s,u,0),this.onData(l)):this.onData(Rl.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)&&f!==Dt.Z_STREAM_END);return f===Dt.Z_STREAM_END&&(o=Dt.Z_FINISH),o===Dt.Z_FINISH?(f=_s.inflateEnd(this.strm),this.onEnd(f),this.ended=!0,f===Dt.Z_OK):(o===Dt.Z_SYNC_FLUSH&&(this.onEnd(Dt.Z_OK),r.avail_out=0),!0)};bo.prototype.onData=function(t){this.chunks.push(t)};bo.prototype.onEnd=function(t){t===Dt.Z_OK&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=Rl.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};function eh(t,e){var r=new bo(e);if(r.push(t,!0),r.err)throw r.msg||$w[r.err];return r.result}function c4(t,e){return e=e||{},e.raw=!0,eh(t,e)}Pl.Inflate=bo;Pl.inflate=eh;Pl.inflateRaw=c4;Pl.ungzip=eh});var Ev=k((G8,Sv)=>{"use strict";var p4=Fi().assign,d4=O_(),m4=Iv(),w4=Xw(),xv={};p4(xv,d4,m4,w4);Sv.exports=xv});var th=k(()=>{});var Ov=k(Av=>{"use strict";var b4=[0,255,65535,16777215,4294967295];function g4(t,e,r,n,i){var f;for(f=0;f<i;f++)r[n+f]=t[e+f]}function y4(t,e,r,n){var i;for(i=0;i<n;i++)t[e+i]=t[e-r+i]}function nh(t){this.array=t,this.pos=0}nh.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};nh.prototype.uncompressToBuffer=function(t){for(var e=this.array,r=e.length,n=this.pos,i=0,f,o,s,u;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&b4[s])+1,n+=s}if(n+o>r)return!1;g4(e,n,t,i,o),n+=o,i+=o}else{switch(f&3){case 1:o=(f>>>2&7)+4,u=e[n]+(f>>>5<<8),n+=1;break;case 2:if(n+1>=r)return!1;o=(f>>>2)+1,u=e[n]+(e[n+1]<<8),n+=2;break;case 3:if(n+3>=r)return!1;o=(f>>>2)+1,u=e[n]+(e[n+1]<<8)+(e[n+2]<<16)+(e[n+3]<<24),n+=4;break;default:break}if(u===0||u>i)return!1;y4(t,i,u,o),i+=o}return!0};Av.SnappyDecompressor=nh});var Pv=k(Rv=>{"use strict";var j4=16,q4=1<<j4,Fv=14,ih=new Array(Fv+1);function Ul(t,e){return t*506832829>>>e}function Ll(t,e){return t[e]+(t[e+1]<<8)+(t[e+2]<<16)+(t[e+3]<<24)}function Dv(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 _4(t,e,r,n,i){var f;for(f=0;f<i;f++)r[n+f]=t[e+f]}function Nv(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),_4(t,e,n,i,r),i+r}function fh(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 v4(t,e,r,n){for(;n>=68;)e=fh(t,e,r,64),n-=64;return n>64&&(e=fh(t,e,r,60),n-=60),fh(t,e,r,n)}function T4(t,e,r,n,i){for(var f=1;1<<f<=r&&f<=Fv;)f+=1;f-=1;var o=32-f;typeof ih[f]=="undefined"&&(ih[f]=new Uint16Array(1<<f));var s=ih[f],u;for(u=0;u<s.length;u++)s[u]=0;var l=e+r,c,w=e,p=e,g,v,H,O,C,te,M,z,R,F,oe,re=!0,ue=15;if(r>=ue)for(c=l-ue,e+=1,v=Ul(Ll(t,e),o);re;){C=32,H=e;do{if(e=H,g=v,te=C>>>5,C+=1,H=e+te,e>c){re=!1;break}v=Ul(Ll(t,H),o),O=w+s[g],s[g]=e-w}while(!Dv(t,e,O));if(!re)break;i=Nv(t,p,e-p,n,i);do{for(M=e,z=4;e+z<l&&t[e+z]===t[O+z];)z+=1;if(e+=z,R=M-O,i=v4(n,i,R,z),p=e,e>=c){re=!1;break}F=Ul(Ll(t,e-1),o),s[F]=e-1-w,oe=Ul(Ll(t,e),o),O=w+s[oe],s[oe]=e-w}while(Dv(t,e,O));if(!re)break;e+=1,v=Ul(Ll(t,e),o)}return p<l&&(i=Nv(t,p,l-p,n,i)),i}function k4(t,e,r){do e[r]=t&127,t=t>>>7,t>0&&(e[r]+=128),r+=1;while(t>0);return r}function oh(t){this.array=t}oh.prototype.maxCompressedLength=function(){var t=this.array.length;return 32+t+Math.floor(t/6)};oh.prototype.compressToBuffer=function(t){var e=this.array,r=e.length,n=0,i=0,f;for(i=k4(r,t,i);n<r;)f=Math.min(r-n,q4),i=T4(e,n,f,t,i),n+=f;return i};Rv.SnappyCompressor=oh});var Uv=k(sh=>{"use strict";function Hv(){return typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node!="undefined"}function Vc(t){return t instanceof Uint8Array&&(!Hv()||!Buffer.isBuffer(t))}function Cc(t){return t instanceof ArrayBuffer}function Mv(t){return Hv()?Buffer.isBuffer(t):!1}var B4=Ov().SnappyDecompressor,I4=Pv().SnappyCompressor,zv="Argument compressed must be type of ArrayBuffer, Buffer, or Uint8Array";function x4(t){if(!Vc(t)&&!Cc(t)&&!Mv(t))throw new TypeError(zv);var e=!1,r=!1;Vc(t)?e=!0:Cc(t)&&(r=!0,t=new Uint8Array(t));var n=new B4(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 S4(t){if(!Vc(t)&&!Cc(t)&&!Mv(t))throw new TypeError(zv);var e=!1,r=!1;Vc(t)?e=!0:Cc(t)&&(r=!0,t=new Uint8Array(t));var n=new I4(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 u=new Uint8Array(Array.prototype.slice.call(f,0,s));if(e)return u;if(r)return u.buffer;throw new Error("Not implemented")}return f.slice(0,s)}sh.uncompress=x4;sh.compress=S4});var ah=k(vs=>{vs.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};vs.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};vs.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};vs.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};vs.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 Jv=k(Zv=>{var $n=ah(),yo=2654435761,jo=2246822519,Kv=3266489917,A4=668265263,Yv=374761393;function Zc(t,e){return t=t|0,e=e|0,t>>>(32-e|0)|t<<e|0}function Gv(t,e,r){return t=t|0,e=e|0,r=r|0,$n.imul(t>>>(32-e|0)|t<<e,r)|0}function lh(t,e){return t=t|0,e=e|0,t>>>e^t|0}function Wl(t,e,r,n,i){return Gv($n.imul(e,r)+t,n,i)}function O4(t,e,r){return Gv(t+$n.imul(e[r],Yv),11,yo)}function F4(t,e,r){return Wl(t,$n.readU32(e,r),Kv,17,A4)}function D4(t,e,r){return[Wl(t[0],$n.readU32(e,r+0),jo,13,yo),Wl(t[1],$n.readU32(e,r+4),jo,13,yo),Wl(t[2],$n.readU32(e,r+8),jo,13,yo),Wl(t[3],$n.readU32(e,r+12),jo,13,yo)]}function N4(t,e,r,n){var i,f;if(f=n,n>=16){for(i=[t+yo+jo,t+jo,t,t-yo];n>=16;)i=D4(i,e,r),r+=16,n-=16;i=Zc(i[0],1)+Zc(i[1],7)+Zc(i[2],12)+Zc(i[3],18)+f}else i=t+Yv+n>>>0;for(;n>=4;)i=F4(i,e,r),r+=4,n-=4;for(;n>0;)i=O4(i,e,r),r++,n--;return i=lh($n.imul(lh($n.imul(lh(i,15),jo),13),Kv),16),i>>>0}Zv.hash=N4});var fT=k(Xt=>{var R4=Jv(),fn=ah(),Jc=4,P4=13,Qv=5,uh=6,Qc=1<<16,Kl=4,Xc=(1<<Kl)-1,H4=4,Ts=(1<<H4)-1,Xv=nT(5<<20),ch=z4(),ph=407708164,M4=4,$v=8,eT=16,dh=64,mh=192,$c=2147483648,tT=7,wh=4,rT=7,ep={4:65536,5:262144,6:1048576,7:4194304};function z4(){try{return new Uint32Array(Qc)}catch{for(var t=new Array(Qc),e=0;e<Qc;e++)t[e]=0;return t}}function U4(t){for(var e=0;e<Qc;e++)ch[e]=0}function nT(t){try{return new Uint8Array(t)}catch{for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e}}function iT(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)}Xt.compressBound=function(e){return e+e/255+16|0};Xt.decompressBound=function(e){var r=0;if(fn.readU32(e,r)!==ph)throw new Error("invalid magic number");r+=4;var n=e[r++];if((n&mh)!==dh)throw new Error("incompatible descriptor version "+(n&mh));var i=(n&eT)!=0,f=(n&$v)!=0,o=e[r++]>>wh&rT;if(ep[o]===void 0)throw new Error("invalid block size "+o);var s=ep[o];if(f)return fn.readU64(e,r);r++;for(var u=0;;){var l=fn.readU32(e,r);if(r+=4,l&$c?(l&=~$c,u+=l):u+=s,l===0)return u;i&&(r+=4),r+=l}};Xt.makeBuffer=nT;Xt.decompressBlock=function(e,r,n,i,f){var o,s,u,l,c;for(u=n+i;n<u;){var w=e[n++],p=w>>4;if(p>0){if(p===15)for(;p+=e[n],e[n++]===255;);for(l=n+p;n<l;)r[f++]=e[n++]}if(n>=u)break;if(o=w&15,s=e[n++]|e[n++]<<8,o===15)for(;o+=e[n],e[n++]===255;);for(o+=Jc,c=f-s,l=c+o;c<l;)r[f++]=r[c++]|0}return f};Xt.compressBlock=function(e,r,n,i,f){var o,s,u,l,c,w,p,g,v;if(p=0,g=i+n,s=n,i>=P4)for(var H=(1<<uh)+3;n+Jc<g-Qv;){var O=fn.readU32(e,n),C=fn.hashU32(O)>>>0;if(C=(C>>16^C)>>>0&65535,o=f[C]-1,f[C]=n+1,o<0||n-o>>>16>0||fn.readU32(e,o)!==O){c=H++>>uh,n+=c;continue}for(H=(1<<uh)+3,w=n-s,l=n-o,n+=Jc,o+=Jc,u=n;n<g-Qv&&e[n]===e[o];)n++,o++;u=n-u;var te=u<Xc?u:Xc;if(w>=Ts){for(r[p++]=(Ts<<Kl)+te,v=w-Ts;v>=255;v-=255)r[p++]=255;r[p++]=v}else r[p++]=(w<<Kl)+te;for(var M=0;M<w;M++)r[p++]=e[s+M];if(r[p++]=l,r[p++]=l>>8,u>=Xc){for(v=u-Xc;v>=255;v-=255)r[p++]=255;r[p++]=v}s=n}if(s===0)return 0;if(w=g-s,w>=Ts){for(r[p++]=Ts<<Kl,v=w-Ts;v>=255;v-=255)r[p++]=255;r[p++]=v}else r[p++]=w<<Kl;for(n=s;n<g;)r[p++]=e[n++];return p};Xt.decompressFrame=function(e,r){var n,i,f,o,s=0,u=0;if(fn.readU32(e,s)!==ph)throw new Error("invalid magic number");if(s+=4,o=e[s++],(o&mh)!==dh)throw new Error("incompatible descriptor version");n=(o&eT)!=0,i=(o&M4)!=0,f=(o&$v)!=0;var l=e[s++]>>wh&rT;if(ep[l]===void 0)throw new Error("invalid block size");for(f&&(s+=8),s++;;){var c;if(c=fn.readU32(e,s),s+=4,c===0)break;if(n&&(s+=4),(c&$c)!=0){c&=~$c;for(var w=0;w<c;w++)r[u++]=e[s++]}else u=Xt.decompressBlock(e,r,s,c,u),s+=c}return i&&(s+=4),u};Xt.compressFrame=function(e,r){var n=0;fn.writeU32(r,n,ph),n+=4,r[n++]=dh,r[n++]=tT<<wh,r[n]=R4.hash(0,r,4,n-4)>>8,n++;var i=ep[tT],f=e.length,o=0;for(U4(ch);f>0;){var s=0,u=f>i?i:f;if(s=Xt.compressBlock(e,Xv,o,u,ch),s>u||s===0){fn.writeU32(r,n,2147483648|u),n+=4;for(var l=o+u;o<l;)r[n++]=e[o++];f-=u}else{fn.writeU32(r,n,s),n+=4;for(var c=0;c<s;)r[n++]=Xv[c++];o+=u,f-=u}}return fn.writeU32(r,n,0),n+=4,n};Xt.decompress=function(e,r){var n,i;return r===void 0&&(r=Xt.decompressBound(e)),n=Xt.makeBuffer(r),i=Xt.decompressFrame(e,n),i!==r&&(n=iT(n,0,i)),n};Xt.compress=function(e,r){var n,i;return r===void 0&&(r=Xt.compressBound(e.length)),n=Xt.makeBuffer(r),i=Xt.compressFrame(e,n),i!==r&&(n=iT(n,0,i)),n}});var oT=k(()=>{});var yh=k((iV,Gl)=>{"use strict";typeof global.Map!="undefined"?(Gl.exports=global.Map,Gl.exports.Map=global.Map):(Vr=function(t){this._keys=[],this._values={};for(var e=0;e<t.length;e++)if(t[e]!=null){var r=t[e],n=r[0],i=r[1];this._keys.push(n),this._values[n]={v:i,i:this._keys.length-1}}},Vr.prototype.clear=function(){this._keys=[],this._values={}},Vr.prototype.delete=function(t){var e=this._values[t];return e==null?!1:(delete this._values[t],this._keys.splice(e.i,1),!0)},Vr.prototype.entries=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?[r,t._values[r].v]:void 0,done:r===void 0}}}},Vr.prototype.forEach=function(t,e){e=e||this;for(var r=0;r<this._keys.length;r++){var n=this._keys[r];t.call(e,this._values[n].v,n,e)}},Vr.prototype.get=function(t){return this._values[t]?this._values[t].v:void 0},Vr.prototype.has=function(t){return this._values[t]!=null},Vr.prototype.keys=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?r:void 0,done:r===void 0}}}},Vr.prototype.set=function(t,e){return this._values[t]?(this._values[t].v=e,this):(this._keys.push(t),this._values[t]={v:e,i:this._keys.length-1},this)},Vr.prototype.values=function(){var t=this,e=0;return{next:function(){var r=t._keys[e++];return{value:r!==void 0?t._values[r].v:void 0,done:r===void 0}}}},Object.defineProperty(Vr.prototype,"size",{enumerable:!0,get:function(){return this._keys.length}}),Gl.exports=Vr,Gl.exports.Map=Vr);var Vr});var ks=k((fV,jh)=>{function S(t,e){if(!(this instanceof S))return new S(t,e);this._bsontype="Long",this.low_=t|0,this.high_=e|0}S.prototype.toInt=function(){return this.low_};S.prototype.toNumber=function(){return this.high_*S.TWO_PWR_32_DBL_+this.getLowBitsUnsigned()};S.prototype.toBigInt=function(){return BigInt(this.toString())};S.prototype.toJSON=function(){return this.toString()};S.prototype.toString=function(t){var e=t||10;if(e<2||36<e)throw Error("radix out of range: "+e);if(this.isZero())return"0";if(this.isNegative())if(this.equals(S.MIN_VALUE)){var r=S.fromNumber(e),n=this.div(r),i=n.multiply(r).subtract(this);return n.toString(e)+i.toInt().toString(e)}else return"-"+this.negate().toString(e);var f=S.fromNumber(Math.pow(e,6));i=this;for(var o="";!i.isZero();){var s=i.div(f),u=i.subtract(s.multiply(f)).toInt(),l=u.toString(e);if(i=s,i.isZero())return l+o;for(;l.length<6;)l="0"+l;o=""+l+o}};S.prototype.getHighBits=function(){return this.high_};S.prototype.getLowBits=function(){return this.low_};S.prototype.getLowBitsUnsigned=function(){return this.low_>=0?this.low_:S.TWO_PWR_32_DBL_+this.low_};S.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(S.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=this.high_!==0?this.high_:this.low_,e=31;e>0&&(t&1<<e)==0;e--);return this.high_!==0?e+33:e+1};S.prototype.isZero=function(){return this.high_===0&&this.low_===0};S.prototype.isNegative=function(){return this.high_<0};S.prototype.isOdd=function(){return(this.low_&1)==1};S.prototype.equals=function(t){return this.high_===t.high_&&this.low_===t.low_};S.prototype.notEquals=function(t){return this.high_!==t.high_||this.low_!==t.low_};S.prototype.lessThan=function(t){return this.compare(t)<0};S.prototype.lessThanOrEqual=function(t){return this.compare(t)<=0};S.prototype.greaterThan=function(t){return this.compare(t)>0};S.prototype.greaterThanOrEqual=function(t){return this.compare(t)>=0};S.prototype.compare=function(t){if(this.equals(t))return 0;var e=this.isNegative(),r=t.isNegative();return e&&!r?-1:!e&&r?1:this.subtract(t).isNegative()?-1:1};S.prototype.negate=function(){return this.equals(S.MIN_VALUE)?S.MIN_VALUE:this.not().add(S.ONE)};S.prototype.add=function(t){var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,f=t.high_>>>16,o=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i+u,w+=p>>>16,p&=65535,w+=n+s,c+=w>>>16,w&=65535,c+=r+o,l+=c>>>16,c&=65535,l+=e+f,l&=65535,S.fromBits(w<<16|p,l<<16|c)};S.prototype.subtract=function(t){return this.add(t.negate())};S.prototype.multiply=function(t){if(this.isZero())return S.ZERO;if(t.isZero())return S.ZERO;if(this.equals(S.MIN_VALUE))return t.isOdd()?S.MIN_VALUE:S.ZERO;if(t.equals(S.MIN_VALUE))return this.isOdd()?S.MIN_VALUE:S.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(S.TWO_PWR_24_)&&t.lessThan(S.TWO_PWR_24_))return S.fromNumber(this.toNumber()*t.toNumber());var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,f=t.high_>>>16,o=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i*u,w+=p>>>16,p&=65535,w+=n*u,c+=w>>>16,w&=65535,w+=i*s,c+=w>>>16,w&=65535,c+=r*u,l+=c>>>16,c&=65535,c+=n*s,l+=c>>>16,c&=65535,c+=i*o,l+=c>>>16,c&=65535,l+=e*u+r*s+n*o+i*f,l&=65535,S.fromBits(w<<16|p,l<<16|c)};S.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return S.ZERO;if(this.equals(S.MIN_VALUE)){if(t.equals(S.ONE)||t.equals(S.NEG_ONE))return S.MIN_VALUE;if(t.equals(S.MIN_VALUE))return S.ONE;var e=this.shiftRight(1),r=e.div(t).shiftLeft(1);if(r.equals(S.ZERO))return t.isNegative()?S.ONE:S.NEG_ONE;var n=this.subtract(t.multiply(r)),i=r.add(n.div(t));return i}else if(t.equals(S.MIN_VALUE))return S.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var f=S.ZERO;for(n=this;n.greaterThanOrEqual(t);){r=Math.max(1,Math.floor(n.toNumber()/t.toNumber()));for(var o=Math.ceil(Math.log(r)/Math.LN2),s=o<=48?1:Math.pow(2,o-48),u=S.fromNumber(r),l=u.multiply(t);l.isNegative()||l.greaterThan(n);)r-=s,u=S.fromNumber(r),l=u.multiply(t);u.isZero()&&(u=S.ONE),f=f.add(u),n=n.subtract(l)}return f};S.prototype.modulo=function(t){return this.subtract(this.div(t).multiply(t))};S.prototype.not=function(){return S.fromBits(~this.low_,~this.high_)};S.prototype.and=function(t){return S.fromBits(this.low_&t.low_,this.high_&t.high_)};S.prototype.or=function(t){return S.fromBits(this.low_|t.low_,this.high_|t.high_)};S.prototype.xor=function(t){return S.fromBits(this.low_^t.low_,this.high_^t.high_)};S.prototype.shiftLeft=function(t){if(t&=63,t===0)return this;var e=this.low_;if(t<32){var r=this.high_;return S.fromBits(e<<t,r<<t|e>>>32-t)}else return S.fromBits(0,e<<t-32)};S.prototype.shiftRight=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return S.fromBits(r>>>t|e<<32-t,e>>t)}else return S.fromBits(e>>t-32,e>=0?0:-1)};S.prototype.shiftRightUnsigned=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return S.fromBits(r>>>t|e<<32-t,e>>>t)}else return t===32?S.fromBits(e,0):S.fromBits(e>>>t-32,0)};S.fromInt=function(t){if(-128<=t&&t<128){var e=S.INT_CACHE_[t];if(e)return e}var r=new S(t|0,t<0?-1:0);return-128<=t&&t<128&&(S.INT_CACHE_[t]=r),r};S.fromNumber=function(t){return isNaN(t)||!isFinite(t)?S.ZERO:t<=-S.TWO_PWR_63_DBL_?S.MIN_VALUE:t+1>=S.TWO_PWR_63_DBL_?S.MAX_VALUE:t<0?S.fromNumber(-t).negate():new S(t%S.TWO_PWR_32_DBL_|0,t/S.TWO_PWR_32_DBL_|0)};S.fromBigInt=function(t){return S.fromString(t.toString(10),10)};S.fromBits=function(t,e){return new S(t,e)};S.fromString=function(t,e){if(t.length===0)throw Error("number format error: empty string");var r=e||10;if(r<2||36<r)throw Error("radix out of range: "+r);if(t.charAt(0)==="-")return S.fromString(t.substring(1),r).negate();if(t.indexOf("-")>=0)throw Error('number format error: interior "-" character: '+t);for(var n=S.fromNumber(Math.pow(r,8)),i=S.ZERO,f=0;f<t.length;f+=8){var o=Math.min(8,t.length-f),s=parseInt(t.substring(f,f+o),r);if(o<8){var u=S.fromNumber(Math.pow(r,o));i=i.multiply(u).add(S.fromNumber(s))}else i=i.multiply(n),i=i.add(S.fromNumber(s))}return i};S.INT_CACHE_={};S.TWO_PWR_16_DBL_=1<<16;S.TWO_PWR_24_DBL_=1<<24;S.TWO_PWR_32_DBL_=S.TWO_PWR_16_DBL_*S.TWO_PWR_16_DBL_;S.TWO_PWR_31_DBL_=S.TWO_PWR_32_DBL_/2;S.TWO_PWR_48_DBL_=S.TWO_PWR_32_DBL_*S.TWO_PWR_16_DBL_;S.TWO_PWR_64_DBL_=S.TWO_PWR_32_DBL_*S.TWO_PWR_32_DBL_;S.TWO_PWR_63_DBL_=S.TWO_PWR_64_DBL_/2;S.ZERO=S.fromInt(0);S.ONE=S.fromInt(1);S.NEG_ONE=S.fromInt(-1);S.MAX_VALUE=S.fromBits(4294967295|0,2147483647|0);S.MIN_VALUE=S.fromBits(0,2147483648|0);S.TWO_PWR_24_=S.fromInt(1<<24);jh.exports=S;jh.exports.Long=S});var rp=k((oV,qh)=>{function Bs(t){if(!(this instanceof Bs))return new Bs(t);this._bsontype="Double",this.value=t}Bs.prototype.valueOf=function(){return this.value};Bs.prototype.toJSON=function(){return this.value};qh.exports=Bs;qh.exports.Double=Bs});var np=k((sV,_h)=>{function E(t,e){if(!(this instanceof E))return new E(t,e);this._bsontype="Timestamp",this.low_=t|0,this.high_=e|0}E.prototype.toInt=function(){return this.low_};E.prototype.toNumber=function(){return this.high_*E.TWO_PWR_32_DBL_+this.getLowBitsUnsigned()};E.prototype.toJSON=function(){return this.toString()};E.prototype.toString=function(t){var e=t||10;if(e<2||36<e)throw Error("radix out of range: "+e);if(this.isZero())return"0";if(this.isNegative())if(this.equals(E.MIN_VALUE)){var r=E.fromNumber(e),n=this.div(r),i=n.multiply(r).subtract(this);return n.toString(e)+i.toInt().toString(e)}else return"-"+this.negate().toString(e);var f=E.fromNumber(Math.pow(e,6));i=this;for(var o="";!i.isZero();){var s=i.div(f),u=i.subtract(s.multiply(f)).toInt(),l=u.toString(e);if(i=s,i.isZero())return l+o;for(;l.length<6;)l="0"+l;o=""+l+o}};E.prototype.getHighBits=function(){return this.high_};E.prototype.getLowBits=function(){return this.low_};E.prototype.getLowBitsUnsigned=function(){return this.low_>=0?this.low_:E.TWO_PWR_32_DBL_+this.low_};E.prototype.getNumBitsAbs=function(){if(this.isNegative())return this.equals(E.MIN_VALUE)?64:this.negate().getNumBitsAbs();for(var t=this.high_!==0?this.high_:this.low_,e=31;e>0&&(t&1<<e)==0;e--);return this.high_!==0?e+33:e+1};E.prototype.isZero=function(){return this.high_===0&&this.low_===0};E.prototype.isNegative=function(){return this.high_<0};E.prototype.isOdd=function(){return(this.low_&1)==1};E.prototype.equals=function(t){return this.high_===t.high_&&this.low_===t.low_};E.prototype.notEquals=function(t){return this.high_!==t.high_||this.low_!==t.low_};E.prototype.lessThan=function(t){return this.compare(t)<0};E.prototype.lessThanOrEqual=function(t){return this.compare(t)<=0};E.prototype.greaterThan=function(t){return this.compare(t)>0};E.prototype.greaterThanOrEqual=function(t){return this.compare(t)>=0};E.prototype.compare=function(t){if(this.equals(t))return 0;var e=this.isNegative(),r=t.isNegative();return e&&!r?-1:!e&&r?1:this.subtract(t).isNegative()?-1:1};E.prototype.negate=function(){return this.equals(E.MIN_VALUE)?E.MIN_VALUE:this.not().add(E.ONE)};E.prototype.add=function(t){var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,f=t.high_>>>16,o=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i+u,w+=p>>>16,p&=65535,w+=n+s,c+=w>>>16,w&=65535,c+=r+o,l+=c>>>16,c&=65535,l+=e+f,l&=65535,E.fromBits(w<<16|p,l<<16|c)};E.prototype.subtract=function(t){return this.add(t.negate())};E.prototype.multiply=function(t){if(this.isZero())return E.ZERO;if(t.isZero())return E.ZERO;if(this.equals(E.MIN_VALUE))return t.isOdd()?E.MIN_VALUE:E.ZERO;if(t.equals(E.MIN_VALUE))return this.isOdd()?E.MIN_VALUE:E.ZERO;if(this.isNegative())return t.isNegative()?this.negate().multiply(t.negate()):this.negate().multiply(t).negate();if(t.isNegative())return this.multiply(t.negate()).negate();if(this.lessThan(E.TWO_PWR_24_)&&t.lessThan(E.TWO_PWR_24_))return E.fromNumber(this.toNumber()*t.toNumber());var e=this.high_>>>16,r=this.high_&65535,n=this.low_>>>16,i=this.low_&65535,f=t.high_>>>16,o=t.high_&65535,s=t.low_>>>16,u=t.low_&65535,l=0,c=0,w=0,p=0;return p+=i*u,w+=p>>>16,p&=65535,w+=n*u,c+=w>>>16,w&=65535,w+=i*s,c+=w>>>16,w&=65535,c+=r*u,l+=c>>>16,c&=65535,c+=n*s,l+=c>>>16,c&=65535,c+=i*o,l+=c>>>16,c&=65535,l+=e*u+r*s+n*o+i*f,l&=65535,E.fromBits(w<<16|p,l<<16|c)};E.prototype.div=function(t){if(t.isZero())throw Error("division by zero");if(this.isZero())return E.ZERO;if(this.equals(E.MIN_VALUE)){if(t.equals(E.ONE)||t.equals(E.NEG_ONE))return E.MIN_VALUE;if(t.equals(E.MIN_VALUE))return E.ONE;var e=this.shiftRight(1),r=e.div(t).shiftLeft(1);if(r.equals(E.ZERO))return t.isNegative()?E.ONE:E.NEG_ONE;var n=this.subtract(t.multiply(r)),i=r.add(n.div(t));return i}else if(t.equals(E.MIN_VALUE))return E.ZERO;if(this.isNegative())return t.isNegative()?this.negate().div(t.negate()):this.negate().div(t).negate();if(t.isNegative())return this.div(t.negate()).negate();var f=E.ZERO;for(n=this;n.greaterThanOrEqual(t);){r=Math.max(1,Math.floor(n.toNumber()/t.toNumber()));for(var o=Math.ceil(Math.log(r)/Math.LN2),s=o<=48?1:Math.pow(2,o-48),u=E.fromNumber(r),l=u.multiply(t);l.isNegative()||l.greaterThan(n);)r-=s,u=E.fromNumber(r),l=u.multiply(t);u.isZero()&&(u=E.ONE),f=f.add(u),n=n.subtract(l)}return f};E.prototype.modulo=function(t){return this.subtract(this.div(t).multiply(t))};E.prototype.not=function(){return E.fromBits(~this.low_,~this.high_)};E.prototype.and=function(t){return E.fromBits(this.low_&t.low_,this.high_&t.high_)};E.prototype.or=function(t){return E.fromBits(this.low_|t.low_,this.high_|t.high_)};E.prototype.xor=function(t){return E.fromBits(this.low_^t.low_,this.high_^t.high_)};E.prototype.shiftLeft=function(t){if(t&=63,t===0)return this;var e=this.low_;if(t<32){var r=this.high_;return E.fromBits(e<<t,r<<t|e>>>32-t)}else return E.fromBits(0,e<<t-32)};E.prototype.shiftRight=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return E.fromBits(r>>>t|e<<32-t,e>>t)}else return E.fromBits(e>>t-32,e>=0?0:-1)};E.prototype.shiftRightUnsigned=function(t){if(t&=63,t===0)return this;var e=this.high_;if(t<32){var r=this.low_;return E.fromBits(r>>>t|e<<32-t,e>>>t)}else return t===32?E.fromBits(e,0):E.fromBits(e>>>t-32,0)};E.fromInt=function(t){if(-128<=t&&t<128){var e=E.INT_CACHE_[t];if(e)return e}var r=new E(t|0,t<0?-1:0);return-128<=t&&t<128&&(E.INT_CACHE_[t]=r),r};E.fromNumber=function(t){return isNaN(t)||!isFinite(t)?E.ZERO:t<=-E.TWO_PWR_63_DBL_?E.MIN_VALUE:t+1>=E.TWO_PWR_63_DBL_?E.MAX_VALUE:t<0?E.fromNumber(-t).negate():new E(t%E.TWO_PWR_32_DBL_|0,t/E.TWO_PWR_32_DBL_|0)};E.fromBits=function(t,e){return new E(t,e)};E.fromString=function(t,e){if(t.length===0)throw Error("number format error: empty string");var r=e||10;if(r<2||36<r)throw Error("radix out of range: "+r);if(t.charAt(0)==="-")return E.fromString(t.substring(1),r).negate();if(t.indexOf("-")>=0)throw Error('number format error: interior "-" character: '+t);for(var n=E.fromNumber(Math.pow(r,8)),i=E.ZERO,f=0;f<t.length;f+=8){var o=Math.min(8,t.length-f),s=parseInt(t.substring(f,f+o),r);if(o<8){var u=E.fromNumber(Math.pow(r,o));i=i.multiply(u).add(E.fromNumber(s))}else i=i.multiply(n),i=i.add(E.fromNumber(s))}return i};E.INT_CACHE_={};E.TWO_PWR_16_DBL_=1<<16;E.TWO_PWR_24_DBL_=1<<24;E.TWO_PWR_32_DBL_=E.TWO_PWR_16_DBL_*E.TWO_PWR_16_DBL_;E.TWO_PWR_31_DBL_=E.TWO_PWR_32_DBL_/2;E.TWO_PWR_48_DBL_=E.TWO_PWR_32_DBL_*E.TWO_PWR_16_DBL_;E.TWO_PWR_64_DBL_=E.TWO_PWR_32_DBL_*E.TWO_PWR_32_DBL_;E.TWO_PWR_63_DBL_=E.TWO_PWR_64_DBL_/2;E.ZERO=E.fromInt(0);E.ONE=E.fromInt(1);E.NEG_ONE=E.fromInt(-1);E.MAX_VALUE=E.fromBits(4294967295|0,2147483647|0);E.MIN_VALUE=E.fromBits(0,2147483648|0);E.TWO_PWR_24_=E.fromInt(1<<24);_h.exports=E;_h.exports.Timestamp=E});var hf=k((aV,cT)=>{"use strict";function K4(t){return t.toString().replace(/function *\(/,"function (")}function uT(t,e){return new Buffer(t,e)}function Y4(){return Buffer.alloc.apply(Buffer,arguments)}function G4(){return Buffer.from.apply(Buffer,arguments)}cT.exports={normalizedFunctionString:K4,allocBuffer:typeof Buffer.alloc=="function"?Y4:uT,toBuffer:typeof Buffer.from=="function"?G4:uT}});var sp=k((lV,op)=>{var pT="inspect",ip=hf(),vh=parseInt(Math.random()*16777215,10),dT=new RegExp("^[0-9a-fA-F]{24}$");try{Buffer&&Buffer.from&&(fp=!0,pT=Ln("util").inspect.custom||"inspect")}catch{fp=!1}var fp,Ze=function t(e){if(e instanceof t)return e;if(!(this instanceof t))return new t(e);if(this._bsontype="ObjectID",e==null||typeof e=="number"){this.id=this.generate(e),t.cacheHexString&&(this.__id=this.toString("hex"));return}var r=t.isValid(e);if(!r&&e!=null)throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");if(r&&typeof e=="string"&&e.length===24&&fp)return new t(ip.toBuffer(e,"hex"));if(r&&typeof e=="string"&&e.length===24)return t.createFromHexString(e);if(e!=null&&e.length===12)this.id=e;else{if(e!=null&&typeof e.toHexString=="function")return e;throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters")}t.cacheHexString&&(this.__id=this.toString("hex"))},mT=[];for(Or=0;Or<256;Or++)mT[Or]=(Or<=15?"0":"")+Or.toString(16);var Or;Ze.prototype.toHexString=function(){if(Ze.cacheHexString&&this.__id)return this.__id;var t="";if(!this.id||!this.id.length)throw new Error("invalid ObjectId, ObjectId.id must be either a string or a Buffer, but is ["+JSON.stringify(this.id)+"]");if(this.id instanceof Jl)return t=Z4(this.id),Ze.cacheHexString&&(this.__id=t),t;for(var e=0;e<this.id.length;e++)t+=mT[this.id.charCodeAt(e)];return Ze.cacheHexString&&(this.__id=t),t};Ze.prototype.get_inc=function(){return Ze.index=(Ze.index+1)%16777215};Ze.prototype.getInc=function(){return this.get_inc()};Ze.prototype.generate=function(t){typeof t!="number"&&(t=~~(Date.now()/1e3));var e=(typeof process=="undefined"||process.pid===1?Math.floor(Math.random()*1e5):process.pid)%65535,r=this.get_inc(),n=ip.allocBuffer(12);return n[3]=t&255,n[2]=t>>8&255,n[1]=t>>16&255,n[0]=t>>24&255,n[6]=vh&255,n[5]=vh>>8&255,n[4]=vh>>16&255,n[8]=e&255,n[7]=e>>8&255,n[11]=r&255,n[10]=r>>8&255,n[9]=r>>16&255,n};Ze.prototype.toString=function(t){return this.id&&this.id.copy?this.id.toString(typeof t=="string"?t:"hex"):this.toHexString()};Ze.prototype[pT]=Ze.prototype.toString;Ze.prototype.toJSON=function(){return this.toHexString()};Ze.prototype.equals=function(e){return e instanceof Ze?this.toString()===e.toString():typeof e=="string"&&Ze.isValid(e)&&e.length===12&&this.id instanceof Jl?e===this.id.toString("binary"):typeof e=="string"&&Ze.isValid(e)&&e.length===24?e.toLowerCase()===this.toHexString():typeof e=="string"&&Ze.isValid(e)&&e.length===12?e===this.id:e!=null&&(e instanceof Ze||e.toHexString)?e.toHexString()===this.toHexString():!1};Ze.prototype.getTimestamp=function(){var t=new Date,e=this.id[3]|this.id[2]<<8|this.id[1]<<16|this.id[0]<<24;return t.setTime(Math.floor(e)*1e3),t};Ze.index=~~(Math.random()*16777215);Ze.createPk=function(){return new Ze};Ze.createFromTime=function(e){var r=ip.toBuffer([0,0,0,0,0,0,0,0,0,0,0,0]);return r[3]=e&255,r[2]=e>>8&255,r[1]=e>>16&255,r[0]=e>>24&255,new Ze(r)};var Zl=[];Or=0;for(;Or<10;)Zl[48+Or]=Or++;for(;Or<16;)Zl[65-10+Or]=Zl[97-10+Or]=Or++;var Jl=Buffer,Z4=function(t){return t.toString("hex")};Ze.createFromHexString=function(e){if(typeof e=="undefined"||e!=null&&e.length!==24)throw new Error("Argument passed in must be a single String of 12 bytes or a string of 24 hex characters");if(fp)return new Ze(ip.toBuffer(e,"hex"));for(var r=new Jl(12),n=0,i=0;i<24;)r[n++]=Zl[e.charCodeAt(i++)]<<4|Zl[e.charCodeAt(i++)];return new Ze(r)};Ze.isValid=function(e){return e==null?!1:typeof e=="number"?!0:typeof e=="string"?e.length===12||e.length===24&&dT.test(e):e instanceof Ze||e instanceof Jl?!0:typeof e.toHexString=="function"&&(e.id instanceof Jl||typeof e.id=="string")?e.id.length===12||e.id.length===24&&dT.test(e.id):!1};Object.defineProperty(Ze.prototype,"generationTime",{enumerable:!0,get:function(){return this.id[3]|this.id[2]<<8|this.id[1]<<16|this.id[0]<<24},set:function(t){this.id[3]=t&255,this.id[2]=t>>8&255,this.id[1]=t>>16&255,this.id[0]=t>>24&255}});op.exports=Ze;op.exports.ObjectID=Ze;op.exports.ObjectId=Ze});var lp=k((uV,Th)=>{function ap(t,e){if(!(this instanceof ap))return new ap;this._bsontype="BSONRegExp",this.pattern=t||"",this.options=e||"";for(var r=0;r<this.options.length;r++)if(!(this.options[r]==="i"||this.options[r]==="m"||this.options[r]==="x"||this.options[r]==="l"||this.options[r]==="s"||this.options[r]==="u"))throw new Error("the regular expression options ["+this.options[r]+"] is not supported")}Th.exports=ap;Th.exports.BSONRegExp=ap});var up=k((cV,kh)=>{var J4=Buffer&&Ln("util").inspect.custom||"inspect";function bf(t){if(!(this instanceof bf))return new bf(t);this._bsontype="Symbol",this.value=t}bf.prototype.valueOf=function(){return this.value};bf.prototype.toString=function(){return this.value};bf.prototype[J4]=function(){return this.value};bf.prototype.toJSON=function(){return this.value};kh.exports=bf;kh.exports.Symbol=bf});var Ih=k((pV,Bh)=>{var Is=function(t){if(!(this instanceof Is))return new Is(t);this._bsontype="Int32",this.value=t};Is.prototype.valueOf=function(){return this.value};Is.prototype.toJSON=function(){return this.value};Bh.exports=Is;Bh.exports.Int32=Is});var cp=k((dV,Sh)=>{var xh=function t(e,r){if(!(this instanceof t))return new t(e,r);this._bsontype="Code",this.code=e,this.scope=r};xh.prototype.toJSON=function(){return{scope:this.scope,code:this.code}};Sh.exports=xh;Sh.exports.Code=xh});var hp=k((mV,Ah)=>{"use strict";var Ne=ks(),Q4=/^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/,X4=/^(\+|-)?(Infinity|inf)$/i,$4=/^(\+|-)?NaN$/i,Ql=6111,pp=-6176,Eh=6176,e2=34,dp=[124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),mp=[248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),wp=[120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse(),t2=/^([-+])?(\d+)?$/,Hi=hf(),wT=function(t){return!isNaN(parseInt(t,10))},r2=function(t){var e=Ne.fromNumber(1e3*1e3*1e3),r=Ne.fromNumber(0),n=0;if(!t.parts[0]&&!t.parts[1]&&!t.parts[2]&&!t.parts[3])return{quotient:t,rem:r};for(n=0;n<=3;n++)r=r.shiftLeft(32),r=r.add(new Ne(t.parts[n],0)),t.parts[n]=r.div(e).low_,r=r.modulo(e);return{quotient:t,rem:r}},n2=function(t,e){if(!t&&!e)return{high:Ne.fromNumber(0),low:Ne.fromNumber(0)};var r=t.shiftRightUnsigned(32),n=new Ne(t.getLowBits(),0),i=e.shiftRightUnsigned(32),f=new Ne(e.getLowBits(),0),o=r.multiply(i),s=r.multiply(f),u=n.multiply(i),l=n.multiply(f);return o=o.add(s.shiftRightUnsigned(32)),s=new Ne(s.getLowBits(),0).add(u).add(l.shiftRightUnsigned(32)),o=o.add(s.shiftRightUnsigned(32)),l=s.shiftLeft(32).add(new Ne(l.getLowBits(),0)),{high:o,low:l}},i2=function(t,e){var r=t.high_>>>0,n=e.high_>>>0;if(r<n)return!0;if(r===n){var i=t.low_>>>0,f=e.low_>>>0;if(i<f)return!0}return!1},Fr=function(t){this._bsontype="Decimal128",this.bytes=t};Fr.fromString=function(t){var e=!1,r=!1,n=!1,i=0,f=0,o=0,s=0,u=0,l=[0],c=0,w=0,p=0,g=0,v=0,H=0,O=[0,0],C=[0,0],te=0,M=0;if(t=t.trim(),t.length>=7e3)throw new Error(""+t+" not a valid Decimal128 string");var z=t.match(Q4),R=t.match(X4),F=t.match($4);if(!z&&!R&&!F||t.length===0)throw new Error(""+t+" not a valid Decimal128 string");if(z&&z[4]&&z[2]===void 0)throw new Error(""+t+" not a valid Decimal128 string");if((t[M]==="+"||t[M]==="-")&&(e=t[M++]==="-"),!wT(t[M])&&t[M]!=="."){if(t[M]==="i"||t[M]==="I")return new Fr(Hi.toBuffer(e?mp:wp));if(t[M]==="N")return new Fr(Hi.toBuffer(dp))}for(;wT(t[M])||t[M]===".";){if(t[M]==="."){if(r)return new Fr(Hi.toBuffer(dp));r=!0,M=M+1;continue}c<34&&(t[M]!=="0"||n)&&(n||(u=f),n=!0,l[w++]=parseInt(t[M],10),c=c+1),n&&(o=o+1),r&&(s=s+1),f=f+1,M=M+1}if(r&&!f)throw new Error(""+t+" not a valid Decimal128 string");if(t[M]==="e"||t[M]==="E"){var oe=t.substr(++M).match(t2);if(!oe||!oe[2])return new Fr(Hi.toBuffer(dp));v=parseInt(oe[0],10),M=M+oe[0].length}if(t[M])return new Fr(Hi.toBuffer(dp));if(p=0,!c)p=0,g=0,l[0]=0,o=1,c=1,i=0;else if(g=c-1,i=o,v!==0&&i!==1)for(;t[u+i-1]==="0";)i=i-1;for(v<=s&&s-v>1<<14?v=pp:v=v-s;v>Ql;){if(g=g+1,g-p>e2){var re=l.join("");if(re.match(/^0+$/)){v=Ql;break}else return new Fr(Hi.toBuffer(e?mp:wp))}v=v-1}for(;v<pp||c<o;){if(g===0){v=pp,i=0;break}if(c<o?o=o-1:g=g-1,v<Ql)v=v+1;else if(re=l.join(""),re.match(/^0+$/)){v=Ql;break}else return new Fr(Hi.toBuffer(e?mp:wp))}if(g-p+1<i&&t[i]!=="0"){var ue=f;r&&v===pp&&(u=u+1,ue=ue+1);var Ye=parseInt(t[u+g+1],10),q=0;if(Ye>=5&&(q=1,Ye===5)){for(q=l[g]%2==1,H=u+g+2;H<ue;H++)if(parseInt(t[H],10)){q=1;break}}if(q){for(var Ae=g;Ae>=0&&++l[Ae]>9;Ae--)if(l[Ae]=0,Ae===0)if(v<Ql)v=v+1,l[Ae]=1;else return new Fr(Hi.toBuffer(e?mp:wp))}}if(O=Ne.fromNumber(0),C=Ne.fromNumber(0),i===0)O=Ne.fromNumber(0),C=Ne.fromNumber(0);else if(g-p<17)for(Ae=p,C=Ne.fromNumber(l[Ae++]),O=new Ne(0,0);Ae<=g;Ae++)C=C.multiply(Ne.fromNumber(10)),C=C.add(Ne.fromNumber(l[Ae]));else{for(Ae=p,O=Ne.fromNumber(l[Ae++]);Ae<=g-17;Ae++)O=O.multiply(Ne.fromNumber(10)),O=O.add(Ne.fromNumber(l[Ae]));for(C=Ne.fromNumber(l[Ae++]);Ae<=g;Ae++)C=C.multiply(Ne.fromNumber(10)),C=C.add(Ne.fromNumber(l[Ae]))}var Ue=n2(O,Ne.fromString("100000000000000000"));Ue.low=Ue.low.add(C),i2(Ue.low,C)&&(Ue.high=Ue.high.add(Ne.fromNumber(1))),te=v+Eh;var he={low:Ne.fromNumber(0),high:Ne.fromNumber(0)};Ue.high.shiftRightUnsigned(49).and(Ne.fromNumber(1)).equals(Ne.fromNumber)?(he.high=he.high.or(Ne.fromNumber(3).shiftLeft(61)),he.high=he.high.or(Ne.fromNumber(te).and(Ne.fromNumber(16383).shiftLeft(47))),he.high=he.high.or(Ue.high.and(Ne.fromNumber(140737488355327)))):(he.high=he.high.or(Ne.fromNumber(te&16383).shiftLeft(49)),he.high=he.high.or(Ue.high.and(Ne.fromNumber(562949953421311)))),he.low=Ue.low,e&&(he.high=he.high.or(Ne.fromString("9223372036854775808")));var Ge=Hi.allocBuffer(16);return M=0,Ge[M++]=he.low.low_&255,Ge[M++]=he.low.low_>>8&255,Ge[M++]=he.low.low_>>16&255,Ge[M++]=he.low.low_>>24&255,Ge[M++]=he.low.high_&255,Ge[M++]=he.low.high_>>8&255,Ge[M++]=he.low.high_>>16&255,Ge[M++]=he.low.high_>>24&255,Ge[M++]=he.high.low_&255,Ge[M++]=he.high.low_>>8&255,Ge[M++]=he.high.low_>>16&255,Ge[M++]=he.high.low_>>24&255,Ge[M++]=he.high.high_&255,Ge[M++]=he.high.high_>>8&255,Ge[M++]=he.high.high_>>16&255,Ge[M++]=he.high.high_>>24&255,new Fr(Ge)};var f2=31,hT=16383,o2=30,s2=31;Eh=6176;Fr.prototype.toString=function(){for(var t,e,r,n,i,f,o=0,s=new Array(36),u=0;u<s.length;u++)s[u]=0;var l=0,c,w,p=!1,g,v={parts:new Array(4)},H,O,C=[];l=0;var te=this.bytes;n=te[l++]|te[l++]<<8|te[l++]<<16|te[l++]<<24,r=te[l++]|te[l++]<<8|te[l++]<<16|te[l++]<<24,e=te[l++]|te[l++]<<8|te[l++]<<16|te[l++]<<24,t=te[l++]|te[l++]<<8|te[l++]<<16|te[l++]<<24,l=0;var M={low:new Ne(n,r),high:new Ne(e,t)};if(M.high.lessThan(Ne.ZERO)&&C.push("-"),i=t>>26&f2,i>>3==3){if(i===o2)return C.join("")+"Infinity";if(i===s2)return"NaN";f=t>>15&hT,g=8+(t>>14&1)}else g=t>>14&7,f=t>>17&hT;if(c=f-Eh,v.parts[0]=(t&16383)+((g&15)<<14),v.parts[1]=e,v.parts[2]=r,v.parts[3]=n,v.parts[0]===0&&v.parts[1]===0&&v.parts[2]===0&&v.parts[3]===0)p=!0;else for(O=3;O>=0;O--){var z=0,R=r2(v);if(v=R.quotient,z=R.rem.low_,!!z)for(H=8;H>=0;H--)s[O*9+H]=z%10,z=Math.floor(z/10)}if(p)o=1,s[l]=0;else for(o=36,u=0;!s[l];)u++,o=o-1,l=l+1;if(w=o-1+c,w>=34||w<=-7||c>0){for(C.push(s[l++]),o=o-1,o&&C.push("."),u=0;u<o;u++)C.push(s[l++]);C.push("E"),w>0?C.push("+"+w):C.push(w)}else if(c>=0)for(u=0;u<o;u++)C.push(s[l++]);else{var F=o+c;if(F>0)for(u=0;u<F;u++)C.push(s[l++]);else C.push("0");for(C.push(".");F++<0;)C.push("0");for(u=0;u<o-Math.max(F-1,0);u++)C.push(s[l++])}return C.join("")};Fr.prototype.toJSON=function(){return{$numberDecimal:this.toString()}};Ah.exports=Fr;Ah.exports.Decimal128=Fr});var gp=k((wV,Oh)=>{function bp(){if(!(this instanceof bp))return new bp;this._bsontype="MinKey"}Oh.exports=bp;Oh.exports.MinKey=bp});var jp=k((hV,Fh)=>{function yp(){if(!(this instanceof yp))return new yp;this._bsontype="MaxKey"}Fh.exports=yp;Fh.exports.MaxKey=yp});var qp=k((bV,Dh)=>{function Xl(t,e,r){if(!(this instanceof Xl))return new Xl(t,e,r);this._bsontype="DBRef",this.namespace=t,this.oid=e,this.db=r}Xl.prototype.toJSON=function(){return{$ref:this.namespace,$id:this.oid,$db:this.db==null?"":this.db}};Dh.exports=Xl;Dh.exports.DBRef=Xl});var yT=k(_p=>{"use strict";_p.byteLength=l2;_p.toByteArray=c2;_p.fromByteArray=m2;var ei=[],on=[],a2=typeof Uint8Array!="undefined"?Uint8Array:Array,Nh="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(vo=0,bT=Nh.length;vo<bT;++vo)ei[vo]=Nh[vo],on[Nh.charCodeAt(vo)]=vo;var vo,bT;on["-".charCodeAt(0)]=62;on["_".charCodeAt(0)]=63;function gT(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 l2(t){var e=gT(t),r=e[0],n=e[1];return(r+n)*3/4-n}function u2(t,e,r){return(e+r)*3/4-r}function c2(t){var e,r=gT(t),n=r[0],i=r[1],f=new a2(u2(t,n,i)),o=0,s=i>0?n-4:n,u;for(u=0;u<s;u+=4)e=on[t.charCodeAt(u)]<<18|on[t.charCodeAt(u+1)]<<12|on[t.charCodeAt(u+2)]<<6|on[t.charCodeAt(u+3)],f[o++]=e>>16&255,f[o++]=e>>8&255,f[o++]=e&255;return i===2&&(e=on[t.charCodeAt(u)]<<2|on[t.charCodeAt(u+1)]>>4,f[o++]=e&255),i===1&&(e=on[t.charCodeAt(u)]<<10|on[t.charCodeAt(u+1)]<<4|on[t.charCodeAt(u+2)]>>2,f[o++]=e>>8&255,f[o++]=e&255),f}function p2(t){return ei[t>>18&63]+ei[t>>12&63]+ei[t>>6&63]+ei[t&63]}function d2(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(p2(n));return i.join("")}function m2(t){for(var e,r=t.length,n=r%3,i=[],f=16383,o=0,s=r-n;o<s;o+=f)i.push(d2(t,o,o+f>s?s:o+f));return n===1?(e=t[r-1],i.push(ei[e>>2]+ei[e<<4&63]+"==")):n===2&&(e=(t[r-2]<<8)+t[r-1],i.push(ei[e>>10]+ei[e>>4&63]+ei[e<<2&63]+"=")),i.join("")}});var jT=k(Rh=>{Rh.read=function(t,e,r,n,i){var f,o,s=i*8-n-1,u=(1<<s)-1,l=u>>1,c=-7,w=r?i-1:0,p=r?-1:1,g=t[e+w];for(w+=p,f=g&(1<<-c)-1,g>>=-c,c+=s;c>0;f=f*256+t[e+w],w+=p,c-=8);for(o=f&(1<<-c)-1,f>>=-c,c+=n;c>0;o=o*256+t[e+w],w+=p,c-=8);if(f===0)f=1-l;else{if(f===u)return o?NaN:(g?-1:1)*(1/0);o=o+Math.pow(2,n),f=f-l}return(g?-1:1)*o*Math.pow(2,f-n)};Rh.write=function(t,e,r,n,i,f){var o,s,u,l=f*8-i-1,c=(1<<l)-1,w=c>>1,p=i===23?Math.pow(2,-24)-Math.pow(2,-77):0,g=n?0:f-1,v=n?1:-1,H=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=c):(o=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-o))<1&&(o--,u*=2),o+w>=1?e+=p/u:e+=p*Math.pow(2,1-w),e*u>=2&&(o++,u/=2),o+w>=c?(s=0,o=c):o+w>=1?(s=(e*u-1)*Math.pow(2,i),o=o+w):(s=e*Math.pow(2,w-1)*Math.pow(2,i),o=0));i>=8;t[r+g]=s&255,g+=v,s/=256,i-=8);for(o=o<<i|s,l+=i;l>0;t[r+g]=o&255,g+=v,o/=256,l-=8);t[r+g-v]|=H*128}});var FT=k(Ss=>{"use strict";var Ph=yT(),xs=jT(),qT=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;Ss.Buffer=D;Ss.SlowBuffer=j2;Ss.INSPECT_MAX_BYTES=50;var vp=2147483647;Ss.kMaxLength=vp;D.TYPED_ARRAY_SUPPORT=w2();!D.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 w2(){try{var t=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(t,e),t.foo()===42}catch{return!1}}Object.defineProperty(D.prototype,"parent",{enumerable:!0,get:function(){if(!!D.isBuffer(this))return this.buffer}});Object.defineProperty(D.prototype,"offset",{enumerable:!0,get:function(){if(!!D.isBuffer(this))return this.byteOffset}});function Mi(t){if(t>vp)throw new RangeError('The value "'+t+'" is invalid for option "size"');var e=new Uint8Array(t);return Object.setPrototypeOf(e,D.prototype),e}function D(t,e,r){if(typeof t=="number"){if(typeof e=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return Hh(t)}return _T(t,e,r)}D.poolSize=8192;function _T(t,e,r){if(typeof t=="string")return b2(t,e);if(ArrayBuffer.isView(t))return g2(t);if(t==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(ti(t,ArrayBuffer)||t&&ti(t.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(ti(t,SharedArrayBuffer)||t&&ti(t.buffer,SharedArrayBuffer)))return zh(t,e,r);if(typeof t=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var n=t.valueOf&&t.valueOf();if(n!=null&&n!==t)return D.from(n,e,r);var i=y2(t);if(i)return i;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof t[Symbol.toPrimitive]=="function")return D.from(t[Symbol.toPrimitive]("string"),e,r);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}D.from=function(t,e,r){return _T(t,e,r)};Object.setPrototypeOf(D.prototype,Uint8Array.prototype);Object.setPrototypeOf(D,Uint8Array);function vT(t){if(typeof t!="number")throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function h2(t,e,r){return vT(t),t<=0?Mi(t):e!==void 0?typeof r=="string"?Mi(t).fill(e,r):Mi(t).fill(e):Mi(t)}D.alloc=function(t,e,r){return h2(t,e,r)};function Hh(t){return vT(t),Mi(t<0?0:Uh(t)|0)}D.allocUnsafe=function(t){return Hh(t)};D.allocUnsafeSlow=function(t){return Hh(t)};function b2(t,e){if((typeof e!="string"||e==="")&&(e="utf8"),!D.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var r=TT(t,e)|0,n=Mi(r),i=n.write(t,e);return i!==r&&(n=n.slice(0,i)),n}function Mh(t){for(var e=t.length<0?0:Uh(t.length)|0,r=Mi(e),n=0;n<e;n+=1)r[n]=t[n]&255;return r}function g2(t){if(ti(t,Uint8Array)){var e=new Uint8Array(t);return zh(e.buffer,e.byteOffset,e.byteLength)}return Mh(t)}function zh(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<e+(r||0))throw new RangeError('"length" is outside of buffer bounds');var n;return e===void 0&&r===void 0?n=new Uint8Array(t):r===void 0?n=new Uint8Array(t,e):n=new Uint8Array(t,e,r),Object.setPrototypeOf(n,D.prototype),n}function y2(t){if(D.isBuffer(t)){var e=Uh(t.length)|0,r=Mi(e);return r.length===0||t.copy(r,0,0,e),r}if(t.length!==void 0)return typeof t.length!="number"||Vh(t.length)?Mi(0):Mh(t);if(t.type==="Buffer"&&Array.isArray(t.data))return Mh(t.data)}function Uh(t){if(t>=vp)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+vp.toString(16)+" bytes");return t|0}function j2(t){return+t!=t&&(t=0),D.alloc(+t)}D.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==D.prototype};D.compare=function(e,r){if(ti(e,Uint8Array)&&(e=D.from(e,e.offset,e.byteLength)),ti(r,Uint8Array)&&(r=D.from(r,r.offset,r.byteLength)),!D.isBuffer(e)||!D.isBuffer(r))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===r)return 0;for(var n=e.length,i=r.length,f=0,o=Math.min(n,i);f<o;++f)if(e[f]!==r[f]){n=e[f],i=r[f];break}return n<i?-1:i<n?1:0};D.isEncoding=function(e){switch(String(e).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}};D.concat=function(e,r){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(e.length===0)return D.alloc(0);var n;if(r===void 0)for(r=0,n=0;n<e.length;++n)r+=e[n].length;var i=D.allocUnsafe(r),f=0;for(n=0;n<e.length;++n){var o=e[n];if(ti(o,Uint8Array))f+o.length>i.length?D.from(o).copy(i,f):Uint8Array.prototype.set.call(i,o,f);else if(D.isBuffer(o))o.copy(i,f);else throw new TypeError('"list" argument must be an Array of Buffers');f+=o.length}return i};function TT(t,e){if(D.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||ti(t,ArrayBuffer))return t.byteLength;if(typeof t!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var r=t.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&r===0)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return Lh(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r*2;case"hex":return r>>>1;case"base64":return OT(t).length;default:if(i)return n?-1:Lh(t).length;e=(""+e).toLowerCase(),i=!0}}D.byteLength=TT;function q2(t,e,r){var n=!1;if((e===void 0||e<0)&&(e=0),e>this.length||((r===void 0||r>this.length)&&(r=this.length),r<=0)||(r>>>=0,e>>>=0,r<=e))return"";for(t||(t="utf8");;)switch(t){case"hex":return A2(this,e,r);case"utf8":case"utf-8":return IT(this,e,r);case"ascii":return S2(this,e,r);case"latin1":case"binary":return E2(this,e,r);case"base64":return I2(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O2(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}D.prototype._isBuffer=!0;function To(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}D.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var r=0;r<e;r+=2)To(this,r,r+1);return this};D.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var r=0;r<e;r+=4)To(this,r,r+3),To(this,r+1,r+2);return this};D.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var r=0;r<e;r+=8)To(this,r,r+7),To(this,r+1,r+6),To(this,r+2,r+5),To(this,r+3,r+4);return this};D.prototype.toString=function(){var e=this.length;return e===0?"":arguments.length===0?IT(this,0,e):q2.apply(this,arguments)};D.prototype.toLocaleString=D.prototype.toString;D.prototype.equals=function(e){if(!D.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e?!0:D.compare(this,e)===0};D.prototype.inspect=function(){var e="",r=Ss.INSPECT_MAX_BYTES;return e=this.toString("hex",0,r).replace(/(.{2})/g,"$1 ").trim(),this.length>r&&(e+=" ... "),"<Buffer "+e+">"};qT&&(D.prototype[qT]=D.prototype.inspect);D.prototype.compare=function(e,r,n,i,f){if(ti(e,Uint8Array)&&(e=D.from(e,e.offset,e.byteLength)),!D.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(r===void 0&&(r=0),n===void 0&&(n=e?e.length:0),i===void 0&&(i=0),f===void 0&&(f=this.length),r<0||n>e.length||i<0||f>this.length)throw new RangeError("out of range index");if(i>=f&&r>=n)return 0;if(i>=f)return-1;if(r>=n)return 1;if(r>>>=0,n>>>=0,i>>>=0,f>>>=0,this===e)return 0;for(var o=f-i,s=n-r,u=Math.min(o,s),l=this.slice(i,f),c=e.slice(r,n),w=0;w<u;++w)if(l[w]!==c[w]){o=l[w],s=c[w];break}return o<s?-1:s<o?1:0};function kT(t,e,r,n,i){if(t.length===0)return-1;if(typeof r=="string"?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,Vh(r)&&(r=i?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(i)return-1;r=t.length-1}else if(r<0)if(i)r=0;else return-1;if(typeof e=="string"&&(e=D.from(e,n)),D.isBuffer(e))return e.length===0?-1:BT(t,e,r,n,i);if(typeof e=="number")return e=e&255,typeof Uint8Array.prototype.indexOf=="function"?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):BT(t,[e],r,n,i);throw new TypeError("val must be string, number or Buffer")}function BT(t,e,r,n,i){var f=1,o=t.length,s=e.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(t.length<2||e.length<2)return-1;f=2,o/=2,s/=2,r/=2}function u(g,v){return f===1?g[v]:g.readUInt16BE(v*f)}var l;if(i){var c=-1;for(l=r;l<o;l++)if(u(t,l)===u(e,c===-1?0:l-c)){if(c===-1&&(c=l),l-c+1===s)return c*f}else c!==-1&&(l-=l-c),c=-1}else for(r+s>o&&(r=o-s),l=r;l>=0;l--){for(var w=!0,p=0;p<s;p++)if(u(t,l+p)!==u(e,p)){w=!1;break}if(w)return l}return-1}D.prototype.includes=function(e,r,n){return this.indexOf(e,r,n)!==-1};D.prototype.indexOf=function(e,r,n){return kT(this,e,r,n,!0)};D.prototype.lastIndexOf=function(e,r,n){return kT(this,e,r,n,!1)};function _2(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n),n>i&&(n=i)):n=i;var f=e.length;n>f/2&&(n=f/2);for(var o=0;o<n;++o){var s=parseInt(e.substr(o*2,2),16);if(Vh(s))return o;t[r+o]=s}return o}function v2(t,e,r,n){return Tp(Lh(e,t.length-r),t,r,n)}function T2(t,e,r,n){return Tp(N2(e),t,r,n)}function k2(t,e,r,n){return Tp(OT(e),t,r,n)}function B2(t,e,r,n){return Tp(R2(e,t.length-r),t,r,n)}D.prototype.write=function(e,r,n,i){if(r===void 0)i="utf8",n=this.length,r=0;else if(n===void 0&&typeof r=="string")i=r,n=this.length,r=0;else if(isFinite(r))r=r>>>0,isFinite(n)?(n=n>>>0,i===void 0&&(i="utf8")):(i=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var f=this.length-r;if((n===void 0||n>f)&&(n=f),e.length>0&&(n<0||r<0)||r>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return _2(this,e,r,n);case"utf8":case"utf-8":return v2(this,e,r,n);case"ascii":case"latin1":case"binary":return T2(this,e,r,n);case"base64":return k2(this,e,r,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return B2(this,e,r,n);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}};D.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function I2(t,e,r){return e===0&&r===t.length?Ph.fromByteArray(t):Ph.fromByteArray(t.slice(e,r))}function IT(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i<r;){var f=t[i],o=null,s=f>239?4:f>223?3:f>191?2:1;if(i+s<=r){var u,l,c,w;switch(s){case 1:f<128&&(o=f);break;case 2:u=t[i+1],(u&192)==128&&(w=(f&31)<<6|u&63,w>127&&(o=w));break;case 3:u=t[i+1],l=t[i+2],(u&192)==128&&(l&192)==128&&(w=(f&15)<<12|(u&63)<<6|l&63,w>2047&&(w<55296||w>57343)&&(o=w));break;case 4:u=t[i+1],l=t[i+2],c=t[i+3],(u&192)==128&&(l&192)==128&&(c&192)==128&&(w=(f&15)<<18|(u&63)<<12|(l&63)<<6|c&63,w>65535&&w<1114112&&(o=w))}}o===null?(o=65533,s=1):o>65535&&(o-=65536,n.push(o>>>10&1023|55296),o=56320|o&1023),n.push(o),i+=s}return x2(n)}var xT=4096;function x2(t){var e=t.length;if(e<=xT)return String.fromCharCode.apply(String,t);for(var r="",n=0;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=xT));return r}function S2(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]&127);return n}function E2(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]);return n}function A2(t,e,r){var n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n);for(var i="",f=e;f<r;++f)i+=P2[t[f]];return i}function O2(t,e,r){for(var n=t.slice(e,r),i="",f=0;f<n.length-1;f+=2)i+=String.fromCharCode(n[f]+n[f+1]*256);return i}D.prototype.slice=function(e,r){var n=this.length;e=~~e,r=r===void 0?n:~~r,e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),r<0?(r+=n,r<0&&(r=0)):r>n&&(r=n),r<e&&(r=e);var i=this.subarray(e,r);return Object.setPrototypeOf(i,D.prototype),i};function $t(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>r)throw new RangeError("Trying to access beyond buffer length")}D.prototype.readUintLE=D.prototype.readUIntLE=function(e,r,n){e=e>>>0,r=r>>>0,n||$t(e,r,this.length);for(var i=this[e],f=1,o=0;++o<r&&(f*=256);)i+=this[e+o]*f;return i};D.prototype.readUintBE=D.prototype.readUIntBE=function(e,r,n){e=e>>>0,r=r>>>0,n||$t(e,r,this.length);for(var i=this[e+--r],f=1;r>0&&(f*=256);)i+=this[e+--r]*f;return i};D.prototype.readUint8=D.prototype.readUInt8=function(e,r){return e=e>>>0,r||$t(e,1,this.length),this[e]};D.prototype.readUint16LE=D.prototype.readUInt16LE=function(e,r){return e=e>>>0,r||$t(e,2,this.length),this[e]|this[e+1]<<8};D.prototype.readUint16BE=D.prototype.readUInt16BE=function(e,r){return e=e>>>0,r||$t(e,2,this.length),this[e]<<8|this[e+1]};D.prototype.readUint32LE=D.prototype.readUInt32LE=function(e,r){return e=e>>>0,r||$t(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216};D.prototype.readUint32BE=D.prototype.readUInt32BE=function(e,r){return e=e>>>0,r||$t(e,4,this.length),this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])};D.prototype.readIntLE=function(e,r,n){e=e>>>0,r=r>>>0,n||$t(e,r,this.length);for(var i=this[e],f=1,o=0;++o<r&&(f*=256);)i+=this[e+o]*f;return f*=128,i>=f&&(i-=Math.pow(2,8*r)),i};D.prototype.readIntBE=function(e,r,n){e=e>>>0,r=r>>>0,n||$t(e,r,this.length);for(var i=r,f=1,o=this[e+--i];i>0&&(f*=256);)o+=this[e+--i]*f;return f*=128,o>=f&&(o-=Math.pow(2,8*r)),o};D.prototype.readInt8=function(e,r){return e=e>>>0,r||$t(e,1,this.length),this[e]&128?(255-this[e]+1)*-1:this[e]};D.prototype.readInt16LE=function(e,r){e=e>>>0,r||$t(e,2,this.length);var n=this[e]|this[e+1]<<8;return n&32768?n|4294901760:n};D.prototype.readInt16BE=function(e,r){e=e>>>0,r||$t(e,2,this.length);var n=this[e+1]|this[e]<<8;return n&32768?n|4294901760:n};D.prototype.readInt32LE=function(e,r){return e=e>>>0,r||$t(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24};D.prototype.readInt32BE=function(e,r){return e=e>>>0,r||$t(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]};D.prototype.readFloatLE=function(e,r){return e=e>>>0,r||$t(e,4,this.length),xs.read(this,e,!0,23,4)};D.prototype.readFloatBE=function(e,r){return e=e>>>0,r||$t(e,4,this.length),xs.read(this,e,!1,23,4)};D.prototype.readDoubleLE=function(e,r){return e=e>>>0,r||$t(e,8,this.length),xs.read(this,e,!0,52,8)};D.prototype.readDoubleBE=function(e,r){return e=e>>>0,r||$t(e,8,this.length),xs.read(this,e,!1,52,8)};function Dr(t,e,r,n,i,f){if(!D.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<f)throw new RangeError('"value" argument is out of bounds');if(r+n>t.length)throw new RangeError("Index out of range")}D.prototype.writeUintLE=D.prototype.writeUIntLE=function(e,r,n,i){if(e=+e,r=r>>>0,n=n>>>0,!i){var f=Math.pow(2,8*n)-1;Dr(this,e,r,n,f,0)}var o=1,s=0;for(this[r]=e&255;++s<n&&(o*=256);)this[r+s]=e/o&255;return r+n};D.prototype.writeUintBE=D.prototype.writeUIntBE=function(e,r,n,i){if(e=+e,r=r>>>0,n=n>>>0,!i){var f=Math.pow(2,8*n)-1;Dr(this,e,r,n,f,0)}var o=n-1,s=1;for(this[r+o]=e&255;--o>=0&&(s*=256);)this[r+o]=e/s&255;return r+n};D.prototype.writeUint8=D.prototype.writeUInt8=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,1,255,0),this[r]=e&255,r+1};D.prototype.writeUint16LE=D.prototype.writeUInt16LE=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,2,65535,0),this[r]=e&255,this[r+1]=e>>>8,r+2};D.prototype.writeUint16BE=D.prototype.writeUInt16BE=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,2,65535,0),this[r]=e>>>8,this[r+1]=e&255,r+2};D.prototype.writeUint32LE=D.prototype.writeUInt32LE=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,4,4294967295,0),this[r+3]=e>>>24,this[r+2]=e>>>16,this[r+1]=e>>>8,this[r]=e&255,r+4};D.prototype.writeUint32BE=D.prototype.writeUInt32BE=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,4,4294967295,0),this[r]=e>>>24,this[r+1]=e>>>16,this[r+2]=e>>>8,this[r+3]=e&255,r+4};D.prototype.writeIntLE=function(e,r,n,i){if(e=+e,r=r>>>0,!i){var f=Math.pow(2,8*n-1);Dr(this,e,r,n,f-1,-f)}var o=0,s=1,u=0;for(this[r]=e&255;++o<n&&(s*=256);)e<0&&u===0&&this[r+o-1]!==0&&(u=1),this[r+o]=(e/s>>0)-u&255;return r+n};D.prototype.writeIntBE=function(e,r,n,i){if(e=+e,r=r>>>0,!i){var f=Math.pow(2,8*n-1);Dr(this,e,r,n,f-1,-f)}var o=n-1,s=1,u=0;for(this[r+o]=e&255;--o>=0&&(s*=256);)e<0&&u===0&&this[r+o+1]!==0&&(u=1),this[r+o]=(e/s>>0)-u&255;return r+n};D.prototype.writeInt8=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,1,127,-128),e<0&&(e=255+e+1),this[r]=e&255,r+1};D.prototype.writeInt16LE=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,2,32767,-32768),this[r]=e&255,this[r+1]=e>>>8,r+2};D.prototype.writeInt16BE=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,2,32767,-32768),this[r]=e>>>8,this[r+1]=e&255,r+2};D.prototype.writeInt32LE=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,4,2147483647,-2147483648),this[r]=e&255,this[r+1]=e>>>8,this[r+2]=e>>>16,this[r+3]=e>>>24,r+4};D.prototype.writeInt32BE=function(e,r,n){return e=+e,r=r>>>0,n||Dr(this,e,r,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[r]=e>>>24,this[r+1]=e>>>16,this[r+2]=e>>>8,this[r+3]=e&255,r+4};function ST(t,e,r,n,i,f){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function ET(t,e,r,n,i){return e=+e,r=r>>>0,i||ST(t,e,r,4,34028234663852886e22,-34028234663852886e22),xs.write(t,e,r,n,23,4),r+4}D.prototype.writeFloatLE=function(e,r,n){return ET(this,e,r,!0,n)};D.prototype.writeFloatBE=function(e,r,n){return ET(this,e,r,!1,n)};function AT(t,e,r,n,i){return e=+e,r=r>>>0,i||ST(t,e,r,8,17976931348623157e292,-17976931348623157e292),xs.write(t,e,r,n,52,8),r+8}D.prototype.writeDoubleLE=function(e,r,n){return AT(this,e,r,!0,n)};D.prototype.writeDoubleBE=function(e,r,n){return AT(this,e,r,!1,n)};D.prototype.copy=function(e,r,n,i){if(!D.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!i&&i!==0&&(i=this.length),r>=e.length&&(r=e.length),r||(r=0),i>0&&i<n&&(i=n),i===n||e.length===0||this.length===0)return 0;if(r<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),e.length-r<i-n&&(i=e.length-r+n);var f=i-n;return this===e&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(r,n,i):Uint8Array.prototype.set.call(e,this.subarray(n,i),r),f};D.prototype.fill=function(e,r,n,i){if(typeof e=="string"){if(typeof r=="string"?(i=r,r=0,n=this.length):typeof n=="string"&&(i=n,n=this.length),i!==void 0&&typeof i!="string")throw new TypeError("encoding must be a string");if(typeof i=="string"&&!D.isEncoding(i))throw new TypeError("Unknown encoding: "+i);if(e.length===1){var f=e.charCodeAt(0);(i==="utf8"&&f<128||i==="latin1")&&(e=f)}}else typeof e=="number"?e=e&255:typeof e=="boolean"&&(e=Number(e));if(r<0||this.length<r||this.length<n)throw new RangeError("Out of range index");if(n<=r)return this;r=r>>>0,n=n===void 0?this.length:n>>>0,e||(e=0);var o;if(typeof e=="number")for(o=r;o<n;++o)this[o]=e;else{var s=D.isBuffer(e)?e:D.from(e,i),u=s.length;if(u===0)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(o=0;o<n-r;++o)this[o+r]=s[o%u]}return this};var F2=/[^+/0-9A-Za-z-_]/g;function D2(t){if(t=t.split("=")[0],t=t.trim().replace(F2,""),t.length<2)return"";for(;t.length%4!=0;)t=t+"=";return t}function Lh(t,e){e=e||1/0;for(var r,n=t.length,i=null,f=[],o=0;o<n;++o){if(r=t.charCodeAt(o),r>55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&f.push(239,191,189);continue}else if(o+1===n){(e-=3)>-1&&f.push(239,191,189);continue}i=r;continue}if(r<56320){(e-=3)>-1&&f.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(e-=3)>-1&&f.push(239,191,189);if(i=null,r<128){if((e-=1)<0)break;f.push(r)}else if(r<2048){if((e-=2)<0)break;f.push(r>>6|192,r&63|128)}else if(r<65536){if((e-=3)<0)break;f.push(r>>12|224,r>>6&63|128,r&63|128)}else if(r<1114112){if((e-=4)<0)break;f.push(r>>18|240,r>>12&63|128,r>>6&63|128,r&63|128)}else throw new Error("Invalid code point")}return f}function N2(t){for(var e=[],r=0;r<t.length;++r)e.push(t.charCodeAt(r)&255);return e}function R2(t,e){for(var r,n,i,f=[],o=0;o<t.length&&!((e-=2)<0);++o)r=t.charCodeAt(o),n=r>>8,i=r%256,f.push(i),f.push(n);return f}function OT(t){return Ph.toByteArray(D2(t))}function Tp(t,e,r,n){for(var i=0;i<n&&!(i+r>=e.length||i>=t.length);++i)e[i+r]=t[i];return i}function ti(t,e){return t instanceof e||t!=null&&t.constructor!=null&&t.constructor.name!=null&&t.constructor.name===e.name}function Vh(t){return t!==t}var P2=function(){for(var t="0123456789abcdef",e=new Array(256),r=0;r<16;++r)for(var n=r*16,i=0;i<16;++i)e[n+i]=t[r]+t[i];return e}()});var $l=k((qV,Ch)=>{typeof global!="undefined"&&(ir=FT().Buffer);var ir,kp=hf();function wt(t,e){if(!(this instanceof wt))return new wt(t,e);if(t!=null&&typeof t!="string"&&!ir.isBuffer(t)&&!(t instanceof Uint8Array)&&!Array.isArray(t))throw new Error("only String, Buffer, Uint8Array or Array accepted");if(this._bsontype="Binary",t instanceof Number?(this.sub_type=t,this.position=0):(this.sub_type=e??H2,this.position=0),t!=null&&!(t instanceof Number)){if(typeof t=="string")if(typeof ir!="undefined")this.buffer=kp.toBuffer(t);else if(typeof Uint8Array!="undefined"||Object.prototype.toString.call(t)==="[object Array]")this.buffer=M2(t);else throw new Error("only String, Buffer, Uint8Array or Array accepted");else this.buffer=t;this.position=t.length}else typeof ir!="undefined"?this.buffer=kp.allocBuffer(wt.BUFFER_SIZE):typeof Uint8Array!="undefined"?this.buffer=new Uint8Array(new ArrayBuffer(wt.BUFFER_SIZE)):this.buffer=new Array(wt.BUFFER_SIZE),this.position=0}wt.prototype.put=function(e){if(e.length!=null&&typeof e!="number"&&e.length!==1)throw new Error("only accepts single character String, Uint8Array or Array");if(typeof e!="number"&&e<0||e>255)throw new Error("only accepts number in a valid unsigned byte range 0-255");var r=null;if(typeof e=="string"?r=e.charCodeAt(0):e.length!=null?r=e[0]:r=e,this.buffer.length>this.position)this.buffer[this.position++]=r;else if(typeof ir!="undefined"&&ir.isBuffer(this.buffer)){var n=kp.allocBuffer(wt.BUFFER_SIZE+this.buffer.length);this.buffer.copy(n,0,0,this.buffer.length),this.buffer=n,this.buffer[this.position++]=r}else{n=null,Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"?n=new Uint8Array(new ArrayBuffer(wt.BUFFER_SIZE+this.buffer.length)):n=new Array(wt.BUFFER_SIZE+this.buffer.length);for(var i=0;i<this.buffer.length;i++)n[i]=this.buffer[i];this.buffer=n,this.buffer[this.position++]=r}};wt.prototype.write=function(e,r){if(r=typeof r=="number"?r:this.position,this.buffer.length<r+e.length){var n=null;if(typeof ir!="undefined"&&ir.isBuffer(this.buffer))n=kp.allocBuffer(this.buffer.length+e.length),this.buffer.copy(n,0,0,this.buffer.length);else if(Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"){n=new Uint8Array(new ArrayBuffer(this.buffer.length+e.length));for(var i=0;i<this.position;i++)n[i]=this.buffer[i]}this.buffer=n}if(typeof ir!="undefined"&&ir.isBuffer(e)&&ir.isBuffer(this.buffer))e.copy(this.buffer,r,0,e.length),this.position=r+e.length>this.position?r+e.length:this.position;else if(typeof ir!="undefined"&&typeof e=="string"&&ir.isBuffer(this.buffer))this.buffer.write(e,r,"binary"),this.position=r+e.length>this.position?r+e.length:this.position;else if(Object.prototype.toString.call(e)==="[object Uint8Array]"||Object.prototype.toString.call(e)==="[object Array]"&&typeof e!="string"){for(i=0;i<e.length;i++)this.buffer[r++]=e[i];this.position=r>this.position?r:this.position}else if(typeof e=="string"){for(i=0;i<e.length;i++)this.buffer[r++]=e.charCodeAt(i);this.position=r>this.position?r:this.position}};wt.prototype.read=function(e,r){if(r=r&&r>0?r:this.position,this.buffer.slice)return this.buffer.slice(e,e+r);for(var n=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(r)):new Array(r),i=0;i<r;i++)n[i]=this.buffer[e++];return n};wt.prototype.value=function(e){if(e=e??!1,e&&typeof ir!="undefined"&&ir.isBuffer(this.buffer)&&this.buffer.length===this.position)return this.buffer;if(typeof ir!="undefined"&&ir.isBuffer(this.buffer))return e?this.buffer.slice(0,this.position):this.buffer.toString("binary",0,this.position);if(e){if(this.buffer.slice!=null)return this.buffer.slice(0,this.position);for(var r=Object.prototype.toString.call(this.buffer)==="[object Uint8Array]"?new Uint8Array(new ArrayBuffer(this.position)):new Array(this.position),n=0;n<this.position;n++)r[n]=this.buffer[n];return r}else return z2(this.buffer,0,this.position)};wt.prototype.length=function(){return this.position};wt.prototype.toJSON=function(){return this.buffer!=null?this.buffer.toString("base64"):""};wt.prototype.toString=function(t){return this.buffer!=null?this.buffer.slice(0,this.position).toString(t):""};var H2=0,M2=function(t){for(var e=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(t.length)):new Array(t.length),r=0;r<t.length;r++)e[r]=t.charCodeAt(r);return e},z2=function(t,e,r){for(var n="",i=e;i<r;i++)n=n+String.fromCharCode(t[i]);return n};wt.BUFFER_SIZE=256;wt.SUBTYPE_DEFAULT=0;wt.SUBTYPE_FUNCTION=1;wt.SUBTYPE_BYTE_ARRAY=2;wt.SUBTYPE_UUID_OLD=3;wt.SUBTYPE_UUID=4;wt.SUBTYPE_MD5=5;wt.SUBTYPE_USER_DEFINED=128;Ch.exports=wt;Ch.exports.Binary=wt});var DT=k((exports,module)=>{"use strict";var Long=ks().Long,Double=rp().Double,Timestamp=np().Timestamp,ObjectID=sp().ObjectID,Symbol=up().Symbol,Code=cp().Code,MinKey=gp().MinKey,MaxKey=jp().MaxKey,Decimal128=hp(),Int32=Ih(),DBRef=qp().DBRef,BSONRegExp=lp().BSONRegExp,Binary=$l().Binary,utils=hf(),deserialize=function(t,e,r){e=e??{};var n=e&&e.index?e.index:0,i=t[n]|t[n+1]<<8|t[n+2]<<16|t[n+3]<<24;if(i<5||t.length<i||i+n>t.length)throw new Error("corrupt bson message");if(t[n+i-1]!==0)throw new Error("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00");return deserializeObject(t,n,e,r)},deserializeObject=function(t,e,r,n){var i=r.evalFunctions==null?!1:r.evalFunctions,f=r.cacheFunctions==null?!1:r.cacheFunctions,o=r.cacheFunctionsCrc32==null?!1:r.cacheFunctionsCrc32;if(!o)var s=null;var u=r.fieldsAsRaw==null?null:r.fieldsAsRaw,l=r.raw==null?!1:r.raw,c=typeof r.bsonRegExp=="boolean"?r.bsonRegExp:!1,w=r.promoteBuffers==null?!1:r.promoteBuffers,p=r.promoteLongs==null?!0:r.promoteLongs,g=r.promoteValues==null?!0:r.promoteValues,v=e;if(t.length<5)throw new Error("corrupt bson message < 5 bytes long");var H=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(H<5||H>t.length)throw new Error("corrupt bson message");for(var O=n?[]:{},C=0,te=!1;!te;){var M=t[e++];if(M===0)break;for(var z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");var R=n?C++:t.toString("utf8",e,z);if(e=z+1,M===BSON.BSON_DATA_STRING){var F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");O[R]=t.toString("utf8",e,e+F-1),e=e+F}else if(M===BSON.BSON_DATA_OID){var oe=utils.allocBuffer(12);t.copy(oe,0,e,e+12),O[R]=new ObjectID(oe),e=e+12}else if(M===BSON.BSON_DATA_INT&&g===!1)O[R]=new Int32(t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24);else if(M===BSON.BSON_DATA_INT)O[R]=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;else if(M===BSON.BSON_DATA_NUMBER&&g===!1)O[R]=new Double(t.readDoubleLE(e)),e=e+8;else if(M===BSON.BSON_DATA_NUMBER)O[R]=t.readDoubleLE(e),e=e+8;else if(M===BSON.BSON_DATA_DATE){var re=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,ue=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;O[R]=new Date(new Long(re,ue).toNumber())}else if(M===BSON.BSON_DATA_BOOLEAN){if(t[e]!==0&&t[e]!==1)throw new Error("illegal boolean type value");O[R]=t[e++]===1}else if(M===BSON.BSON_DATA_OBJECT){var Ye=e,q=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;if(q<=0||q>t.length-e)throw new Error("bad embedded document length in bson");l?O[R]=t.slice(e,e+q):O[R]=deserializeObject(t,Ye,r,!1),e=e+q}else if(M===BSON.BSON_DATA_ARRAY){Ye=e,q=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;var Ae=r,Ue=e+q;if(u&&u[R]){Ae={};for(var he in r)Ae[he]=r[he];Ae.raw=!0}if(O[R]=deserializeObject(t,Ye,Ae,!0),e=e+q,t[e-1]!==0)throw new Error("invalid array terminator byte");if(e!==Ue)throw new Error("corrupted array bson")}else if(M===BSON.BSON_DATA_UNDEFINED)O[R]=void 0;else if(M===BSON.BSON_DATA_NULL)O[R]=null;else if(M===BSON.BSON_DATA_LONG){re=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,ue=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;var Ge=new Long(re,ue);p&&g===!0?O[R]=Ge.lessThanOrEqual(JS_INT_MAX_LONG)&&Ge.greaterThanOrEqual(JS_INT_MIN_LONG)?Ge.toNumber():Ge:O[R]=Ge}else if(M===BSON.BSON_DATA_DECIMAL128){var $=utils.allocBuffer(16);t.copy($,0,e,e+16),e=e+16;var qt=new Decimal128($);O[R]=qt.toObject?qt.toObject():qt}else if(M===BSON.BSON_DATA_BINARY){var nt=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,Tr=nt,vi=t[e++];if(nt<0)throw new Error("Negative binary type element size found");if(nt>t.length)throw new Error("Binary type size larger than document size");if(t.slice!=null){if(vi===Binary.SUBTYPE_BYTE_ARRAY){if(nt=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,nt<0)throw new Error("Negative binary type element size found for subtype 0x02");if(nt>Tr-4)throw new Error("Binary type with subtype 0x02 contains to long binary size");if(nt<Tr-4)throw new Error("Binary type with subtype 0x02 contains to short binary size")}w&&g?O[R]=t.slice(e,e+nt):O[R]=new Binary(t.slice(e,e+nt),vi)}else{var eo=typeof Uint8Array!="undefined"?new Uint8Array(new ArrayBuffer(nt)):new Array(nt);if(vi===Binary.SUBTYPE_BYTE_ARRAY){if(nt=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,nt<0)throw new Error("Negative binary type element size found for subtype 0x02");if(nt>Tr-4)throw new Error("Binary type with subtype 0x02 contains to long binary size");if(nt<Tr-4)throw new Error("Binary type with subtype 0x02 contains to short binary size")}for(z=0;z<nt;z++)eo[z]=t[e+z];w&&g?O[R]=eo:O[R]=new Binary(eo,vi)}e=e+nt}else if(M===BSON.BSON_DATA_REGEXP&&c===!1){for(z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");var to=t.toString("utf8",e,z);for(e=z+1,z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");var Bn=t.toString("utf8",e,z);e=z+1;var Hr=new Array(Bn.length);for(z=0;z<Bn.length;z++)switch(Bn[z]){case"m":Hr[z]="m";break;case"s":Hr[z]="g";break;case"i":Hr[z]="i";break}O[R]=new RegExp(to,Hr.join(""))}else if(M===BSON.BSON_DATA_REGEXP&&c===!0){for(z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");for(to=t.toString("utf8",e,z),e=z+1,z=e;t[z]!==0&&z<t.length;)z++;if(z>=t.length)throw new Error("Bad BSON Document: illegal CString");Bn=t.toString("utf8",e,z),e=z+1,O[R]=new BSONRegExp(to,Bn)}else if(M===BSON.BSON_DATA_SYMBOL){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");O[R]=new Symbol(t.toString("utf8",e,e+F-1)),e=e+F}else if(M===BSON.BSON_DATA_TIMESTAMP)re=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,ue=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,O[R]=new Timestamp(re,ue);else if(M===BSON.BSON_DATA_MIN_KEY)O[R]=new MinKey;else if(M===BSON.BSON_DATA_MAX_KEY)O[R]=new MaxKey;else if(M===BSON.BSON_DATA_CODE){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");var Wt=t.toString("utf8",e,e+F-1);if(i)if(f){var Ti=o?s(Wt):Wt;O[R]=isolateEvalWithHash(functionCache,Ti,Wt,O)}else O[R]=isolateEval(Wt);else O[R]=new Code(Wt);e=e+F}else if(M===BSON.BSON_DATA_CODE_W_SCOPE){var In=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24;if(In<4+4+4+1)throw new Error("code_w_scope total size shorter minimum expected length");if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");Wt=t.toString("utf8",e,e+F-1),e=e+F,Ye=e,q=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;var Un=deserializeObject(t,Ye,r,!1);if(e=e+q,In<4+4+q+F)throw new Error("code_w_scope total size is to short, truncating scope");if(In>4+4+q+F)throw new Error("code_w_scope total size is to long, clips outer document");i?(f?(Ti=o?s(Wt):Wt,O[R]=isolateEvalWithHash(functionCache,Ti,Wt,O)):O[R]=isolateEval(Wt),O[R].scope=Un):O[R]=new Code(Wt,Un)}else if(M===BSON.BSON_DATA_DBPOINTER){if(F=t[e++]|t[e++]<<8|t[e++]<<16|t[e++]<<24,F<=0||F>t.length-e||t[e+F-1]!==0)throw new Error("bad string length in bson");var Qo=t.toString("utf8",e,e+F-1);e=e+F;var Xo=utils.allocBuffer(12);t.copy(Xo,0,e,e+12),oe=new ObjectID(Xo),e=e+12;var hr=Qo.split("."),ro=hr.shift(),Fa=hr.join(".");O[R]=new DBRef(Fa,oe,ro)}else throw new Error("Detected unknown BSON type "+M.toString(16)+' for fieldname "'+R+'", are you using the latest BSON parser')}if(H!==e-v)throw n?new Error("corrupt array bson"):new Error("corrupt object bson");return O.$id!=null&&(O=new DBRef(O.$ref,O.$id,O.$db)),O},isolateEvalWithHash=function(functionCache,hash,functionString,object){var value=null;return functionCache[hash]==null&&(eval("value = "+functionString),functionCache[hash]=value),functionCache[hash].bind(object)},isolateEval=function(functionString){var value=null;return eval("value = "+functionString),value},BSON={},functionCache=BSON.functionCache={};BSON.BSON_DATA_NUMBER=1;BSON.BSON_DATA_STRING=2;BSON.BSON_DATA_OBJECT=3;BSON.BSON_DATA_ARRAY=4;BSON.BSON_DATA_BINARY=5;BSON.BSON_DATA_UNDEFINED=6;BSON.BSON_DATA_OID=7;BSON.BSON_DATA_BOOLEAN=8;BSON.BSON_DATA_DATE=9;BSON.BSON_DATA_NULL=10;BSON.BSON_DATA_REGEXP=11;BSON.BSON_DATA_DBPOINTER=12;BSON.BSON_DATA_CODE=13;BSON.BSON_DATA_SYMBOL=14;BSON.BSON_DATA_CODE_W_SCOPE=15;BSON.BSON_DATA_INT=16;BSON.BSON_DATA_TIMESTAMP=17;BSON.BSON_DATA_LONG=18;BSON.BSON_DATA_DECIMAL128=19;BSON.BSON_DATA_MIN_KEY=255;BSON.BSON_DATA_MAX_KEY=127;BSON.BSON_BINARY_SUBTYPE_DEFAULT=0;BSON.BSON_BINARY_SUBTYPE_FUNCTION=1;BSON.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;BSON.BSON_BINARY_SUBTYPE_UUID=3;BSON.BSON_BINARY_SUBTYPE_MD5=4;BSON.BSON_BINARY_SUBTYPE_USER_DEFINED=128;BSON.BSON_INT32_MAX=2147483647;BSON.BSON_INT32_MIN=-2147483648;BSON.BSON_INT64_MAX=Math.pow(2,63)-1;BSON.BSON_INT64_MIN=-Math.pow(2,63);BSON.JS_INT_MAX=9007199254740992;BSON.JS_INT_MIN=-9007199254740992;var JS_INT_MAX_LONG=Long.fromNumber(9007199254740992),JS_INT_MIN_LONG=Long.fromNumber(-9007199254740992);module.exports=deserialize});var NT=k(Wh=>{var U2=function(t,e,r,n,i){var f,o,s=r==="big",u=i*8-n-1,l=(1<<u)-1,c=l>>1,w=-7,p=s?0:i-1,g=s?1:-1,v=t[e+p];for(p+=g,f=v&(1<<-w)-1,v>>=-w,w+=u;w>0;f=f*256+t[e+p],p+=g,w-=8);for(o=f&(1<<-w)-1,f>>=-w,w+=n;w>0;o=o*256+t[e+p],p+=g,w-=8);if(f===0)f=1-c;else{if(f===l)return o?NaN:(v?-1:1)*(1/0);o=o+Math.pow(2,n),f=f-c}return(v?-1:1)*o*Math.pow(2,f-n)},L2=function(t,e,r,n,i,f){var o,s,u,l=n==="big",c=f*8-i-1,w=(1<<c)-1,p=w>>1,g=i===23?Math.pow(2,-24)-Math.pow(2,-77):0,v=l?f-1:0,H=l?-1:1,O=e<0||e===0&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=w):(o=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-o))<1&&(o--,u*=2),o+p>=1?e+=g/u:e+=g*Math.pow(2,1-p),e*u>=2&&(o++,u/=2),o+p>=w?(s=0,o=w):o+p>=1?(s=(e*u-1)*Math.pow(2,i),o=o+p):(s=e*Math.pow(2,p-1)*Math.pow(2,i),o=0));i>=8;t[r+v]=s&255,v+=H,s/=256,i-=8);for(o=o<<i|s,c+=i;c>0;t[r+v]=o&255,v+=H,o/=256,c-=8);t[r+v-H]|=O*128};Wh.readIEEE754=U2;Wh.writeIEEE754=L2});var zT=k((vV,MT)=>{"use strict";var Kh=NT().writeIEEE754,RT=ks().Long,V2=yh(),PT=$l().Binary,C2=hf().normalizedFunctionString,Bp=/\x00/,HT=["$db","$ref","$id","$clusterTime"],Yh=function(e){return typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"},Gh=function(e){return Object.prototype.toString.call(e)==="[object RegExp]"},Zh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_STRING;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f+1,t[n-1]=0;var o=t.write(r,n+4,"utf8");return t[n+3]=o+1>>24&255,t[n+2]=o+1>>16&255,t[n+1]=o+1>>8&255,t[n]=o+1&255,n=n+4+o,t[n++]=0,n},Jh=function(t,e,r,n,i){if(Math.floor(r)===r&&r>=X.JS_INT_MIN&&r<=X.JS_INT_MAX)if(r>=X.BSON_INT32_MIN&&r<=X.BSON_INT32_MAX){t[n++]=X.BSON_DATA_INT;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0,t[n++]=r&255,t[n++]=r>>8&255,t[n++]=r>>16&255,t[n++]=r>>24&255}else if(r>=X.JS_INT_MIN&&r<=X.JS_INT_MAX)t[n++]=X.BSON_DATA_NUMBER,f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+f,t[n++]=0,Kh(t,r,n,"little",52,8),n=n+8;else{t[n++]=X.BSON_DATA_LONG,f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+f,t[n++]=0;var o=RT.fromNumber(r),s=o.getLowBits(),u=o.getHighBits();t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=u&255,t[n++]=u>>8&255,t[n++]=u>>16&255,t[n++]=u>>24&255}else t[n++]=X.BSON_DATA_NUMBER,f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+f,t[n++]=0,Kh(t,r,n,"little",52,8),n=n+8;return n},eu=function(t,e,r,n,i){t[n++]=X.BSON_DATA_NULL;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,n},Qh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_BOOLEAN;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,t[n++]=r?1:0,n},Xh=function(t,e,r,n,i){t[n++]=X.BSON_DATA_DATE;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=RT.fromNumber(r.getTime()),s=o.getLowBits(),u=o.getHighBits();return t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=u&255,t[n++]=u>>8&255,t[n++]=u>>16&255,t[n++]=u>>24&255,n},$h=function(t,e,r,n,i){t[n++]=X.BSON_DATA_REGEXP;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+f,t[n++]=0,r.source&&r.source.match(Bp)!=null)throw Error("value "+r.source+" must not contain null bytes");return n=n+t.write(r.source,n,"utf8"),t[n++]=0,r.global&&(t[n++]=115),r.ignoreCase&&(t[n++]=105),r.multiline&&(t[n++]=109),t[n++]=0,n},eb=function(t,e,r,n,i){t[n++]=X.BSON_DATA_REGEXP;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+f,t[n++]=0,r.pattern.match(Bp)!=null)throw Error("pattern "+r.pattern+" must not contain null bytes");return n=n+t.write(r.pattern,n,"utf8"),t[n++]=0,n=n+t.write(r.options.split("").sort().join(""),n,"utf8"),t[n++]=0,n},tb=function(t,e,r,n,i){r===null?t[n++]=X.BSON_DATA_NULL:r._bsontype==="MinKey"?t[n++]=X.BSON_DATA_MIN_KEY:t[n++]=X.BSON_DATA_MAX_KEY;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,n},rb=function(t,e,r,n,i){t[n++]=X.BSON_DATA_OID;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");if(n=n+f,t[n++]=0,typeof r.id=="string")t.write(r.id,n,"binary");else if(r.id&&r.id.copy)r.id.copy(t,n,0,12);else throw new Error("object ["+JSON.stringify(r)+"] is not a valid ObjectId");return n+12},nb=function(t,e,r,n,i){t[n++]=X.BSON_DATA_BINARY;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=r.length;return t[n++]=o&255,t[n++]=o>>8&255,t[n++]=o>>16&255,t[n++]=o>>24&255,t[n++]=X.BSON_BINARY_SUBTYPE_DEFAULT,r.copy(t,n,0,o),n=n+o,n},ib=function(t,e,r,n,i,f,o,s,u,l){for(var c=0;c<l.length;c++)if(l[c]===r)throw new Error("cyclic dependency detected");l.push(r),t[n++]=Array.isArray(r)?X.BSON_DATA_ARRAY:X.BSON_DATA_OBJECT;var w=u?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+w,t[n++]=0;var p=tu(t,r,i,n,f+1,o,s,l);return l.pop(),p},fb=function(t,e,r,n,i){t[n++]=X.BSON_DATA_DECIMAL128;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,r.bytes.copy(t,n,0,16),n+16},ob=function(t,e,r,n,i){t[n++]=r._bsontype==="Long"?X.BSON_DATA_LONG:X.BSON_DATA_TIMESTAMP;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=r.getLowBits(),s=r.getHighBits();return t[n++]=o&255,t[n++]=o>>8&255,t[n++]=o>>16&255,t[n++]=o>>24&255,t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,n},sb=function(t,e,r,n,i){t[n++]=X.BSON_DATA_INT;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,t[n++]=r&255,t[n++]=r>>8&255,t[n++]=r>>16&255,t[n++]=r>>24&255,n},ab=function(t,e,r,n,i){t[n++]=X.BSON_DATA_NUMBER;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");return n=n+f,t[n++]=0,Kh(t,r,n,"little",52,8),n=n+8,n},lb=function(t,e,r,n,i,f,o){t[n++]=X.BSON_DATA_CODE;var s=o?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+s,t[n++]=0;var u=C2(r),l=t.write(u,n+4,"utf8")+1;return t[n]=l&255,t[n+1]=l>>8&255,t[n+2]=l>>16&255,t[n+3]=l>>24&255,n=n+4+l-1,t[n++]=0,n},ub=function(t,e,r,n,i,f,o,s,u){if(r.scope&&typeof r.scope=="object"){t[n++]=X.BSON_DATA_CODE_W_SCOPE;var l=u?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+l,t[n++]=0;var c=n,w=typeof r.code=="string"?r.code:r.code.toString();n=n+4;var p=t.write(w,n+4,"utf8")+1;t[n]=p&255,t[n+1]=p>>8&255,t[n+2]=p>>16&255,t[n+3]=p>>24&255,t[n+4+p-1]=0,n=n+p+4;var g=tu(t,r.scope,i,n,f+1,o,s);n=g-1;var v=g-c;t[c++]=v&255,t[c++]=v>>8&255,t[c++]=v>>16&255,t[c++]=v>>24&255,t[n++]=0}else{t[n++]=X.BSON_DATA_CODE,l=u?t.write(e,n,"ascii"):t.write(e,n,"utf8"),n=n+l,t[n++]=0,w=r.code.toString();var H=t.write(w,n+4,"utf8")+1;t[n]=H&255,t[n+1]=H>>8&255,t[n+2]=H>>16&255,t[n+3]=H>>24&255,n=n+4+H-1,t[n++]=0}return n},cb=function(t,e,r,n,i){t[n++]=X.BSON_DATA_BINARY;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=r.value(!0),s=r.position;return r.sub_type===PT.SUBTYPE_BYTE_ARRAY&&(s=s+4),t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255,t[n++]=r.sub_type,r.sub_type===PT.SUBTYPE_BYTE_ARRAY&&(s=s-4,t[n++]=s&255,t[n++]=s>>8&255,t[n++]=s>>16&255,t[n++]=s>>24&255),o.copy(t,n,0,r.position),n=n+r.position,n},pb=function(t,e,r,n,i){t[n++]=X.BSON_DATA_SYMBOL;var f=i?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+f,t[n++]=0;var o=t.write(r.value,n+4,"utf8")+1;return t[n]=o&255,t[n+1]=o>>8&255,t[n+2]=o>>16&255,t[n+3]=o>>24&255,n=n+4+o-1,t[n++]=0,n},db=function(t,e,r,n,i,f,o){t[n++]=X.BSON_DATA_OBJECT;var s=o?t.write(e,n,"ascii"):t.write(e,n,"utf8");n=n+s,t[n++]=0;var u=n,l;r.db!=null?l=tu(t,{$ref:r.namespace,$id:r.oid,$db:r.db},!1,n,i+1,f):l=tu(t,{$ref:r.namespace,$id:r.oid},!1,n,i+1,f);var c=l-u;return t[u++]=c&255,t[u++]=c>>8&255,t[u++]=c>>16&255,t[u++]=c>>24&255,l},tu=function(e,r,n,i,f,o,s,u){i=i||0,u=u||[],u.push(r);var l=i+4;if(Array.isArray(r))for(var c=0;c<r.length;c++){var w=""+c,p=r[c];if(p&&p.toBSON){if(typeof p.toBSON!="function")throw new Error("toBSON is not a function");p=p.toBSON()}var g=typeof p;if(g==="string")l=Zh(e,w,p,l,!0);else if(g==="number")l=Jh(e,w,p,l,!0);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=Qh(e,w,p,l,!0);else if(p instanceof Date||Yh(p))l=Xh(e,w,p,l,!0);else if(p===void 0)l=eu(e,w,p,l,!0);else if(p===null)l=eu(e,w,p,l,!0);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=rb(e,w,p,l,!0);else if(Buffer.isBuffer(p))l=nb(e,w,p,l,!0);else if(p instanceof RegExp||Gh(p))l=$h(e,w,p,l,!0);else if(g==="object"&&p._bsontype==null)l=ib(e,w,p,l,n,f,o,s,!0,u);else if(g==="object"&&p._bsontype==="Decimal128")l=fb(e,w,p,l,!0);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=ob(e,w,p,l,!0);else if(p._bsontype==="Double")l=ab(e,w,p,l,!0);else if(typeof p=="function"&&o)l=lb(e,w,p,l,n,f,o,!0);else if(p._bsontype==="Code")l=ub(e,w,p,l,n,f,o,s,!0);else if(p._bsontype==="Binary")l=cb(e,w,p,l,!0);else if(p._bsontype==="Symbol")l=pb(e,w,p,l,!0);else if(p._bsontype==="DBRef")l=db(e,w,p,l,f,o,!0);else if(p._bsontype==="BSONRegExp")l=eb(e,w,p,l,!0);else if(p._bsontype==="Int32")l=sb(e,w,p,l,!0);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=tb(e,w,p,l,!0);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}else if(r instanceof V2)for(var v=r.entries(),H=!1;!H;){var O=v.next();if(H=O.done,!H){if(w=O.value[0],p=O.value[1],g=typeof p,typeof w=="string"&&HT.indexOf(w)===-1){if(w.match(Bp)!=null)throw Error("key "+w+" must not contain null bytes");if(n){if(w[0]==="$")throw Error("key "+w+" must not start with '$'");if(~w.indexOf("."))throw Error("key "+w+" must not contain '.'")}}if(g==="string")l=Zh(e,w,p,l);else if(g==="number")l=Jh(e,w,p,l);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=Qh(e,w,p,l);else if(p instanceof Date||Yh(p))l=Xh(e,w,p,l);else if(p===null||p===void 0&&s===!1)l=eu(e,w,p,l);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=rb(e,w,p,l);else if(Buffer.isBuffer(p))l=nb(e,w,p,l);else if(p instanceof RegExp||Gh(p))l=$h(e,w,p,l);else if(g==="object"&&p._bsontype==null)l=ib(e,w,p,l,n,f,o,s,!1,u);else if(g==="object"&&p._bsontype==="Decimal128")l=fb(e,w,p,l);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=ob(e,w,p,l);else if(p._bsontype==="Double")l=ab(e,w,p,l);else if(p._bsontype==="Code")l=ub(e,w,p,l,n,f,o,s);else if(typeof p=="function"&&o)l=lb(e,w,p,l,n,f,o);else if(p._bsontype==="Binary")l=cb(e,w,p,l);else if(p._bsontype==="Symbol")l=pb(e,w,p,l);else if(p._bsontype==="DBRef")l=db(e,w,p,l,f,o);else if(p._bsontype==="BSONRegExp")l=eb(e,w,p,l);else if(p._bsontype==="Int32")l=sb(e,w,p,l);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=tb(e,w,p,l);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}}else{if(r.toBSON){if(typeof r.toBSON!="function")throw new Error("toBSON is not a function");if(r=r.toBSON(),r!=null&&typeof r!="object")throw new Error("toBSON function did not return an object")}for(w in r){if(p=r[w],p&&p.toBSON){if(typeof p.toBSON!="function")throw new Error("toBSON is not a function");p=p.toBSON()}if(g=typeof p,typeof w=="string"&&HT.indexOf(w)===-1){if(w.match(Bp)!=null)throw Error("key "+w+" must not contain null bytes");if(n){if(w[0]==="$")throw Error("key "+w+" must not start with '$'");if(~w.indexOf("."))throw Error("key "+w+" must not contain '.'")}}if(g==="string")l=Zh(e,w,p,l);else if(g==="number")l=Jh(e,w,p,l);else{if(g==="bigint")throw new TypeError("Unsupported type BigInt, please use Decimal128");if(g==="boolean")l=Qh(e,w,p,l);else if(p instanceof Date||Yh(p))l=Xh(e,w,p,l);else if(p===void 0)s===!1&&(l=eu(e,w,p,l));else if(p===null)l=eu(e,w,p,l);else if(p._bsontype==="ObjectID"||p._bsontype==="ObjectId")l=rb(e,w,p,l);else if(Buffer.isBuffer(p))l=nb(e,w,p,l);else if(p instanceof RegExp||Gh(p))l=$h(e,w,p,l);else if(g==="object"&&p._bsontype==null)l=ib(e,w,p,l,n,f,o,s,!1,u);else if(g==="object"&&p._bsontype==="Decimal128")l=fb(e,w,p,l);else if(p._bsontype==="Long"||p._bsontype==="Timestamp")l=ob(e,w,p,l);else if(p._bsontype==="Double")l=ab(e,w,p,l);else if(p._bsontype==="Code")l=ub(e,w,p,l,n,f,o,s);else if(typeof p=="function"&&o)l=lb(e,w,p,l,n,f,o);else if(p._bsontype==="Binary")l=cb(e,w,p,l);else if(p._bsontype==="Symbol")l=pb(e,w,p,l);else if(p._bsontype==="DBRef")l=db(e,w,p,l,f,o);else if(p._bsontype==="BSONRegExp")l=eb(e,w,p,l);else if(p._bsontype==="Int32")l=sb(e,w,p,l);else if(p._bsontype==="MinKey"||p._bsontype==="MaxKey")l=tb(e,w,p,l);else if(typeof p._bsontype!="undefined")throw new TypeError("Unrecognized or invalid _bsontype: "+p._bsontype)}}}u.pop(),e[l++]=0;var C=l-i;return e[i++]=C&255,e[i++]=C>>8&255,e[i++]=C>>16&255,e[i++]=C>>24&255,l},X={};X.BSON_DATA_NUMBER=1;X.BSON_DATA_STRING=2;X.BSON_DATA_OBJECT=3;X.BSON_DATA_ARRAY=4;X.BSON_DATA_BINARY=5;X.BSON_DATA_UNDEFINED=6;X.BSON_DATA_OID=7;X.BSON_DATA_BOOLEAN=8;X.BSON_DATA_DATE=9;X.BSON_DATA_NULL=10;X.BSON_DATA_REGEXP=11;X.BSON_DATA_CODE=13;X.BSON_DATA_SYMBOL=14;X.BSON_DATA_CODE_W_SCOPE=15;X.BSON_DATA_INT=16;X.BSON_DATA_TIMESTAMP=17;X.BSON_DATA_LONG=18;X.BSON_DATA_DECIMAL128=19;X.BSON_DATA_MIN_KEY=255;X.BSON_DATA_MAX_KEY=127;X.BSON_BINARY_SUBTYPE_DEFAULT=0;X.BSON_BINARY_SUBTYPE_FUNCTION=1;X.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;X.BSON_BINARY_SUBTYPE_UUID=3;X.BSON_BINARY_SUBTYPE_MD5=4;X.BSON_BINARY_SUBTYPE_USER_DEFINED=128;X.BSON_INT32_MAX=2147483647;X.BSON_INT32_MIN=-2147483648;X.BSON_INT64_MAX=Math.pow(2,63)-1;X.BSON_INT64_MIN=-Math.pow(2,63);X.JS_INT_MAX=9007199254740992;X.JS_INT_MIN=-9007199254740992;MT.exports=tu});var WT=k((TV,CT)=>{"use strict";var W2=ks().Long,K2=rp().Double,Y2=np().Timestamp,G2=sp().ObjectID,Z2=up().Symbol,J2=lp().BSONRegExp,Q2=cp().Code,X2=hp(),$2=gp().MinKey,eF=jp().MaxKey,tF=qp().DBRef,UT=$l().Binary,LT=hf().normalizedFunctionString,rF=function(e){return typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"},ru=function(e,r,n){var i=4+1;if(Array.isArray(e))for(var f=0;f<e.length;f++)i+=VT(f.toString(),e[f],r,!0,n);else{e.toBSON&&(e=e.toBSON());for(var o in e)i+=VT(o,e[o],r,!1,n)}return i};function VT(t,e,r,n,i){switch(e&&e.toBSON&&(e=e.toBSON()),typeof e){case"string":return 1+Buffer.byteLength(t,"utf8")+1+4+Buffer.byteLength(e,"utf8")+1;case"number":return Math.floor(e)===e&&e>=gf.JS_INT_MIN&&e<=gf.JS_INT_MAX&&e>=gf.BSON_INT32_MIN&&e<=gf.BSON_INT32_MAX?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(4+1):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);case"undefined":return n||!i?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1:0;case"boolean":return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(1+1);case"object":if(e==null||e instanceof $2||e instanceof eF||e._bsontype==="MinKey"||e._bsontype==="MaxKey")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1;if(e instanceof G2||e._bsontype==="ObjectID"||e._bsontype==="ObjectId")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(12+1);if(e instanceof Date||rF(e))return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);if(typeof Buffer!="undefined"&&Buffer.isBuffer(e))return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(1+4+1)+e.length;if(e instanceof W2||e instanceof K2||e instanceof Y2||e._bsontype==="Long"||e._bsontype==="Double"||e._bsontype==="Timestamp")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(8+1);if(e instanceof X2||e._bsontype==="Decimal128")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(16+1);if(e instanceof Q2||e._bsontype==="Code")return e.scope!=null&&Object.keys(e.scope).length>0?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+4+Buffer.byteLength(e.code.toString(),"utf8")+1+ru(e.scope,r,i):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+Buffer.byteLength(e.code.toString(),"utf8")+1;if(e instanceof UT||e._bsontype==="Binary")return e.sub_type===UT.SUBTYPE_BYTE_ARRAY?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(e.position+1+4+1+4):(t!=null?Buffer.byteLength(t,"utf8")+1:0)+(e.position+1+4+1);if(e instanceof Z2||e._bsontype==="Symbol")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+Buffer.byteLength(e.value,"utf8")+4+1+1;if(e instanceof tF||e._bsontype==="DBRef"){var f={$ref:e.namespace,$id:e.oid};return e.db!=null&&(f.$db=e.db),(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+ru(f,r,i)}else return e instanceof RegExp||Object.prototype.toString.call(e)==="[object RegExp]"?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.source,"utf8")+1+(e.global?1:0)+(e.ignoreCase?1:0)+(e.multiline?1:0)+1:e instanceof J2||e._bsontype==="BSONRegExp"?(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.pattern,"utf8")+1+Buffer.byteLength(e.options,"utf8")+1:(t!=null?Buffer.byteLength(t,"utf8")+1:0)+ru(e,r,i)+1;case"function":if(e instanceof RegExp||Object.prototype.toString.call(e)==="[object RegExp]"||String.call(e)==="[object RegExp]")return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+Buffer.byteLength(e.source,"utf8")+1+(e.global?1:0)+(e.ignoreCase?1:0)+(e.multiline?1:0)+1;if(r&&e.scope!=null&&Object.keys(e.scope).length>0)return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+4+Buffer.byteLength(LT(e),"utf8")+1+ru(e.scope,r,i);if(r)return(t!=null?Buffer.byteLength(t,"utf8")+1:0)+1+4+Buffer.byteLength(LT(e),"utf8")+1}return 0}var gf={};gf.BSON_INT32_MAX=2147483647;gf.BSON_INT32_MIN=-2147483648;gf.JS_INT_MAX=9007199254740992;gf.JS_INT_MIN=-9007199254740992;CT.exports=ru});var GT=k((kV,fr)=>{"use strict";var nF=yh(),iF=ks(),fF=rp(),oF=np(),sF=sp(),aF=lp(),lF=up(),uF=Ih(),cF=cp(),pF=hp(),dF=gp(),mF=jp(),wF=qp(),hF=$l(),bF=DT(),KT=zT(),gF=WT(),mb=hf(),YT=1024*1024*17,Ip=mb.allocBuffer(YT),ze=function(){};ze.prototype.serialize=function(e,r){r=r||{};var n=typeof r.checkKeys=="boolean"?r.checkKeys:!1,i=typeof r.serializeFunctions=="boolean"?r.serializeFunctions:!1,f=typeof r.ignoreUndefined=="boolean"?r.ignoreUndefined:!0,o=typeof r.minInternalBufferSize=="number"?r.minInternalBufferSize:YT;Ip.length<o&&(Ip=mb.allocBuffer(o));var s=KT(Ip,e,n,0,0,i,f,[]),u=mb.allocBuffer(s);return Ip.copy(u,0,0,u.length),u};ze.prototype.serializeWithBufferAndIndex=function(t,e,r){r=r||{};var n=typeof r.checkKeys=="boolean"?r.checkKeys:!1,i=typeof r.serializeFunctions=="boolean"?r.serializeFunctions:!1,f=typeof r.ignoreUndefined=="boolean"?r.ignoreUndefined:!0,o=typeof r.index=="number"?r.index:0,s=KT(e,t,n,o||0,0,i,f);return s-1};ze.prototype.deserialize=function(t,e){return bF(t,e)};ze.prototype.calculateObjectSize=function(t,e){e=e||{};var r=typeof e.serializeFunctions=="boolean"?e.serializeFunctions:!1,n=typeof e.ignoreUndefined=="boolean"?e.ignoreUndefined:!0;return gF(t,r,n)};ze.prototype.deserializeStream=function(t,e,r,n,i,f){f=f??{};for(var o=e,s=0;s<r;s++){var u=t[o]|t[o+1]<<8|t[o+2]<<16|t[o+3]<<24;f.index=o,n[i+s]=this.deserialize(t,f),o=o+u}return o};ze.BSON_INT32_MAX=2147483647;ze.BSON_INT32_MIN=-2147483648;ze.BSON_INT64_MAX=Math.pow(2,63)-1;ze.BSON_INT64_MIN=-Math.pow(2,63);ze.JS_INT_MAX=9007199254740992;ze.JS_INT_MIN=-9007199254740992;ze.BSON_DATA_NUMBER=1;ze.BSON_DATA_STRING=2;ze.BSON_DATA_OBJECT=3;ze.BSON_DATA_ARRAY=4;ze.BSON_DATA_BINARY=5;ze.BSON_DATA_OID=7;ze.BSON_DATA_BOOLEAN=8;ze.BSON_DATA_DATE=9;ze.BSON_DATA_NULL=10;ze.BSON_DATA_REGEXP=11;ze.BSON_DATA_CODE=13;ze.BSON_DATA_SYMBOL=14;ze.BSON_DATA_CODE_W_SCOPE=15;ze.BSON_DATA_INT=16;ze.BSON_DATA_TIMESTAMP=17;ze.BSON_DATA_LONG=18;ze.BSON_DATA_MIN_KEY=255;ze.BSON_DATA_MAX_KEY=127;ze.BSON_BINARY_SUBTYPE_DEFAULT=0;ze.BSON_BINARY_SUBTYPE_FUNCTION=1;ze.BSON_BINARY_SUBTYPE_BYTE_ARRAY=2;ze.BSON_BINARY_SUBTYPE_UUID=3;ze.BSON_BINARY_SUBTYPE_MD5=4;ze.BSON_BINARY_SUBTYPE_USER_DEFINED=128;fr.exports=ze;fr.exports.Code=cF;fr.exports.Map=nF;fr.exports.Symbol=lF;fr.exports.BSON=ze;fr.exports.DBRef=wF;fr.exports.Binary=hF;fr.exports.ObjectID=sF;fr.exports.Long=iF;fr.exports.Timestamp=oF;fr.exports.Double=fF;fr.exports.Int32=uF;fr.exports.MinKey=dF;fr.exports.MaxKey=mF;fr.exports.BSONRegExp=aF;fr.exports.Decimal128=pF});var zi=k(ak=>{var x={};x.Offset;x.Table;x.SIZEOF_SHORT=2;x.SIZEOF_INT=4;x.FILE_IDENTIFIER_LENGTH=4;x.SIZE_PREFIX_LENGTH=4;x.Encoding={UTF8_BYTES:1,UTF16_STRING:2};x.int32=new Int32Array(2);x.float32=new Float32Array(x.int32.buffer);x.float64=new Float64Array(x.int32.buffer);x.isLittleEndian=new Uint16Array(new Uint8Array([1,0]).buffer)[0]===1;x.Long=function(t,e){this.low=t|0,this.high=e|0};x.Long.create=function(t,e){return t==0&&e==0?x.Long.ZERO:new x.Long(t,e)};x.Long.prototype.toFloat64=function(){return(this.low>>>0)+this.high*4294967296};x.Long.prototype.equals=function(t){return this.low==t.low&&this.high==t.high};x.Long.ZERO=new x.Long(0,0);x.Builder=function(t){if(t)var e=t;else var e=1024;this.bb=x.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};x.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};x.Builder.prototype.forceDefaults=function(t){this.force_defaults=t};x.Builder.prototype.dataBuffer=function(){return this.bb};x.Builder.prototype.asUint8Array=function(){return this.bb.bytes().subarray(this.bb.position(),this.bb.position()+this.offset())};x.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=x.Builder.growByteBuffer(this.bb),this.space+=this.bb.capacity()-n}this.pad(r)};x.Builder.prototype.pad=function(t){for(var e=0;e<t;e++)this.bb.writeInt8(--this.space,0)};x.Builder.prototype.writeInt8=function(t){this.bb.writeInt8(this.space-=1,t)};x.Builder.prototype.writeInt16=function(t){this.bb.writeInt16(this.space-=2,t)};x.Builder.prototype.writeInt32=function(t){this.bb.writeInt32(this.space-=4,t)};x.Builder.prototype.writeInt64=function(t){this.bb.writeInt64(this.space-=8,t)};x.Builder.prototype.writeFloat32=function(t){this.bb.writeFloat32(this.space-=4,t)};x.Builder.prototype.writeFloat64=function(t){this.bb.writeFloat64(this.space-=8,t)};x.Builder.prototype.addInt8=function(t){this.prep(1,0),this.writeInt8(t)};x.Builder.prototype.addInt16=function(t){this.prep(2,0),this.writeInt16(t)};x.Builder.prototype.addInt32=function(t){this.prep(4,0),this.writeInt32(t)};x.Builder.prototype.addInt64=function(t){this.prep(8,0),this.writeInt64(t)};x.Builder.prototype.addFloat32=function(t){this.prep(4,0),this.writeFloat32(t)};x.Builder.prototype.addFloat64=function(t){this.prep(8,0),this.writeFloat64(t)};x.Builder.prototype.addFieldInt8=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt8(e),this.slot(t))};x.Builder.prototype.addFieldInt16=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt16(e),this.slot(t))};x.Builder.prototype.addFieldInt32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt32(e),this.slot(t))};x.Builder.prototype.addFieldInt64=function(t,e,r){(this.force_defaults||!e.equals(r))&&(this.addInt64(e),this.slot(t))};x.Builder.prototype.addFieldFloat32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat32(e),this.slot(t))};x.Builder.prototype.addFieldFloat64=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat64(e),this.slot(t))};x.Builder.prototype.addFieldOffset=function(t,e,r){(this.force_defaults||e!=r)&&(this.addOffset(e),this.slot(t))};x.Builder.prototype.addFieldStruct=function(t,e,r){e!=r&&(this.nested(e),this.slot(t))};x.Builder.prototype.nested=function(t){if(t!=this.offset())throw new Error("FlatBuffers: struct must be serialized inline.")};x.Builder.prototype.notNested=function(){if(this.isNested)throw new Error("FlatBuffers: object serialization must not be nested.")};x.Builder.prototype.slot=function(t){this.vtable[t]=this.offset()};x.Builder.prototype.offset=function(){return this.bb.capacity()-this.space};x.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=x.ByteBuffer.allocate(r);return n.setPosition(r-e),n.bytes().set(t.bytes(),r-e),n};x.Builder.prototype.addOffset=function(t){this.prep(x.SIZEOF_INT,0),this.writeInt32(this.offset()-t+x.SIZEOF_INT)};x.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()};x.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)*x.SIZEOF_SHORT;this.addInt16(i);var f=0,o=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 u=x.SIZEOF_SHORT;u<i;u+=x.SIZEOF_SHORT)if(this.bb.readInt16(o+u)!=this.bb.readInt16(s+u))continue e;f=this.vtables[e];break}}return f?(this.space=this.bb.capacity()-t,this.bb.writeInt32(this.space,f-t)):(this.vtables.push(this.offset()),this.bb.writeInt32(this.bb.capacity()-t,this.offset()-t)),this.isNested=!1,t};x.Builder.prototype.finish=function(t,e,r){var n=r?x.SIZE_PREFIX_LENGTH:0;if(e){var i=e;if(this.prep(this.minalign,x.SIZEOF_INT+x.FILE_IDENTIFIER_LENGTH+n),i.length!=x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+x.FILE_IDENTIFIER_LENGTH);for(var f=x.FILE_IDENTIFIER_LENGTH-1;f>=0;f--)this.writeInt8(i.charCodeAt(f))}this.prep(this.minalign,x.SIZEOF_INT+n),this.addOffset(t),n&&this.addInt32(this.bb.capacity()-this.space),this.bb.setPosition(this.space)};x.Builder.prototype.finishSizePrefixed=function(t,e){this.finish(t,e,!0)};x.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")};x.Builder.prototype.startVector=function(t,e,r){this.notNested(),this.vector_num_elems=e,this.prep(x.SIZEOF_INT,t*e),this.prep(r,t*e)};x.Builder.prototype.endVector=function(){return this.writeInt32(this.vector_num_elems),this.offset()};x.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 f=t.charCodeAt(r++);n=(i<<10)+f+(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,o=this.space,s=this.bb.bytes();r<e.length;r++)s[o++]=e[r];return this.endVector()};x.Builder.prototype.createLong=function(t,e){return x.Long.create(t,e)};x.ByteBuffer=function(t){this.bytes_=t,this.position_=0};x.ByteBuffer.allocate=function(t){return new x.ByteBuffer(new Uint8Array(t))};x.ByteBuffer.prototype.clear=function(){this.position_=0};x.ByteBuffer.prototype.bytes=function(){return this.bytes_};x.ByteBuffer.prototype.position=function(){return this.position_};x.ByteBuffer.prototype.setPosition=function(t){this.position_=t};x.ByteBuffer.prototype.capacity=function(){return this.bytes_.length};x.ByteBuffer.prototype.readInt8=function(t){return this.readUint8(t)<<24>>24};x.ByteBuffer.prototype.readUint8=function(t){return this.bytes_[t]};x.ByteBuffer.prototype.readInt16=function(t){return this.readUint16(t)<<16>>16};x.ByteBuffer.prototype.readUint16=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8};x.ByteBuffer.prototype.readInt32=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8|this.bytes_[t+2]<<16|this.bytes_[t+3]<<24};x.ByteBuffer.prototype.readUint32=function(t){return this.readInt32(t)>>>0};x.ByteBuffer.prototype.readInt64=function(t){return new x.Long(this.readInt32(t),this.readInt32(t+4))};x.ByteBuffer.prototype.readUint64=function(t){return new x.Long(this.readUint32(t),this.readUint32(t+4))};x.ByteBuffer.prototype.readFloat32=function(t){return x.int32[0]=this.readInt32(t),x.float32[0]};x.ByteBuffer.prototype.readFloat64=function(t){return x.int32[x.isLittleEndian?0:1]=this.readInt32(t),x.int32[x.isLittleEndian?1:0]=this.readInt32(t+4),x.float64[0]};x.ByteBuffer.prototype.writeInt8=function(t,e){this.bytes_[t]=e};x.ByteBuffer.prototype.writeUint8=function(t,e){this.bytes_[t]=e};x.ByteBuffer.prototype.writeInt16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};x.ByteBuffer.prototype.writeUint16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};x.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};x.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};x.ByteBuffer.prototype.writeInt64=function(t,e){this.writeInt32(t,e.low),this.writeInt32(t+4,e.high)};x.ByteBuffer.prototype.writeUint64=function(t,e){this.writeUint32(t,e.low),this.writeUint32(t+4,e.high)};x.ByteBuffer.prototype.writeFloat32=function(t,e){x.float32[0]=e,this.writeInt32(t,x.int32[0])};x.ByteBuffer.prototype.writeFloat64=function(t,e){x.float64[0]=e,this.writeInt32(t,x.int32[x.isLittleEndian?0:1]),this.writeInt32(t+4,x.int32[x.isLittleEndian?1:0])};x.ByteBuffer.prototype.getBufferIdentifier=function(){if(this.bytes_.length<this.position_+x.SIZEOF_INT+x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: ByteBuffer is too short to contain an identifier.");for(var t="",e=0;e<x.FILE_IDENTIFIER_LENGTH;e++)t+=String.fromCharCode(this.readInt8(this.position_+x.SIZEOF_INT+e));return t};x.ByteBuffer.prototype.__offset=function(t,e){var r=t-this.readInt32(t);return e<this.readInt16(r)?this.readInt16(r+e):0};x.ByteBuffer.prototype.__union=function(t,e){return t.bb_pos=e+this.readInt32(e),t.bb=this,t};x.ByteBuffer.prototype.__string=function(t,e){t+=this.readInt32(t);var r=this.readInt32(t),n="",i=0;if(t+=x.SIZEOF_INT,e===x.Encoding.UTF8_BYTES)return this.bytes_.subarray(t,t+r);for(;i<r;){var f,o=this.readUint8(t+i++);if(o<192)f=o;else{var s=this.readUint8(t+i++);if(o<224)f=(o&31)<<6|s&63;else{var u=this.readUint8(t+i++);if(o<240)f=(o&15)<<12|(s&63)<<6|u&63;else{var l=this.readUint8(t+i++);f=(o&7)<<18|(s&63)<<12|(u&63)<<6|l&63}}}f<65536?n+=String.fromCharCode(f):(f-=65536,n+=String.fromCharCode((f>>10)+55296,(f&(1<<10)-1)+56320))}return n};x.ByteBuffer.prototype.__indirect=function(t){return t+this.readInt32(t)};x.ByteBuffer.prototype.__vector=function(t){return t+this.readInt32(t)+x.SIZEOF_INT};x.ByteBuffer.prototype.__vector_len=function(t){return this.readInt32(t+this.readInt32(t))};x.ByteBuffer.prototype.__has_identifier=function(t){if(t.length!=x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+x.FILE_IDENTIFIER_LENGTH);for(var e=0;e<x.FILE_IDENTIFIER_LENGTH;e++)if(t.charCodeAt(e)!=this.readInt8(this.position_+x.SIZEOF_INT+e))return!1;return!0};x.ByteBuffer.prototype.createLong=function(t,e){return x.Long.create(t,e)};ak.flatbuffers=x});var lk=k(Tb=>{"use strict";function Ui(t,e,r){return e<=t&&t<=r}function Sp(t){if(t===void 0)return{};if(t===Object(t))return t;throw TypeError("Could not convert argument to dictionary")}function ZF(t){for(var e=String(t),r=e.length,n=0,i=[];n<r;){var f=e.charCodeAt(n);if(f<55296||f>57343)i.push(f);else if(56320<=f&&f<=57343)i.push(65533);else if(55296<=f&&f<=56319)if(n===r-1)i.push(65533);else{var o=t.charCodeAt(n+1);if(56320<=o&&o<=57343){var s=f&1023,u=o&1023;i.push(65536+(s<<10)+u),n+=1}else i.push(65533)}n+=1}return i}function JF(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 Ep=-1;function _b(t){this.tokens=[].slice.call(t)}_b.prototype={endOfStream:function(){return!this.tokens.length},read:function(){return this.tokens.length?this.tokens.shift():Ep},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 Es=-1;function vb(t,e){if(t)throw TypeError("Decoder error");return e||65533}var Ap="utf-8";function Op(t,e){if(!(this instanceof Op))return new Op(t,e);if(t=t!==void 0?String(t).toLowerCase():Ap,t!==Ap)throw new Error("Encoding not supported. Only utf-8 is supported");e=Sp(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})}Op.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=Sp(r),this._streaming||(this._decoder=new QF({fatal:this._fatal}),this._BOMseen=!1),this._streaming=Boolean(r.stream);for(var i=new _b(n),f=[],o;!i.endOfStream()&&(o=this._decoder.handler(i,i.read()),o!==Es);)o!==null&&(Array.isArray(o)?f.push.apply(f,o):f.push(o));if(!this._streaming){do{if(o=this._decoder.handler(i,i.read()),o===Es)break;o!==null&&(Array.isArray(o)?f.push.apply(f,o):f.push(o))}while(!i.endOfStream());this._decoder=null}return f.length&&["utf-8"].indexOf(this.encoding)!==-1&&!this._ignoreBOM&&!this._BOMseen&&(f[0]===65279?(this._BOMseen=!0,f.shift()):this._BOMseen=!0),JF(f)}};function Fp(t,e){if(!(this instanceof Fp))return new Fp(t,e);if(t=t!==void 0?String(t).toLowerCase():Ap,t!==Ap)throw new Error("Encoding not supported. Only utf-8 is supported");e=Sp(e),this._streaming=!1,this._encoder=null,this._options={fatal:Boolean(e.fatal)},Object.defineProperty(this,"encoding",{value:"utf-8"})}Fp.prototype={encode:function(e,r){e=e?String(e):"",r=Sp(r),this._streaming||(this._encoder=new XF(this._options)),this._streaming=Boolean(r.stream);for(var n=[],i=new _b(ZF(e)),f;!i.endOfStream()&&(f=this._encoder.handler(i,i.read()),f!==Es);)Array.isArray(f)?n.push.apply(n,f):n.push(f);if(!this._streaming){for(;f=this._encoder.handler(i,i.read()),f!==Es;)Array.isArray(f)?n.push.apply(n,f):n.push(f);this._encoder=null}return new Uint8Array(n)}};function QF(t){var e=t.fatal,r=0,n=0,i=0,f=128,o=191;this.handler=function(s,u){if(u===Ep&&i!==0)return i=0,vb(e);if(u===Ep)return Es;if(i===0){if(Ui(u,0,127))return u;if(Ui(u,194,223))i=1,r=u-192;else if(Ui(u,224,239))u===224&&(f=160),u===237&&(o=159),i=2,r=u-224;else if(Ui(u,240,244))u===240&&(f=144),u===244&&(o=143),i=3,r=u-240;else return vb(e);return r=r<<6*i,null}if(!Ui(u,f,o))return r=i=n=0,f=128,o=191,s.prepend(u),vb(e);if(f=128,o=191,n+=1,r+=u-128<<6*(i-n),n!==i)return null;var l=r;return r=i=n=0,l}}function XF(t){var e=t.fatal;this.handler=function(r,n){if(n===Ep)return Es;if(Ui(n,0,127))return n;var i,f;Ui(n,128,2047)?(i=1,f=192):Ui(n,2048,65535)?(i=2,f=224):Ui(n,65536,1114111)&&(i=3,f=240);for(var o=[(n>>6*i)+f];i>0;){var s=n>>6*(i-1);o.push(128|s&63),i-=1}return o}}Tb.TextEncoder=Fp;Tb.TextDecoder=Op});var Io=k(As=>{"use strict";Object.defineProperty(As,"__esModule",{value:!0});As.encodeUtf8=As.decodeUtf8=void 0;var uk=lk(),$F=new(typeof TextDecoder!="undefined"?TextDecoder:uk.TextDecoder)("utf-8");As.decodeUtf8=t=>$F.decode(t);var eD=new(typeof TextEncoder!="undefined"?TextEncoder:uk.TextEncoder);As.encodeUtf8=t=>eD.encode(t)});var Os=k(Nr=>{"use strict";Object.defineProperty(Nr,"__esModule",{value:!0});Nr.AsyncQueue=Nr.ReadableInterop=Nr.ArrowJSON=Nr.ITERATOR_DONE=void 0;var ck=nu();Nr.ITERATOR_DONE=Object.freeze({done:!0,value:void 0});var pk=class{constructor(e){this._json=e}get schema(){return this._json.schema}get batches(){return this._json.batches||[]}get dictionaries(){return this._json.dictionaries||[]}};Nr.ArrowJSON=pk;var kb=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())}};Nr.ReadableInterop=kb;var dk=class extends kb{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(Nr.ITERATOR_DONE);this._closedPromiseResolve(),this._closedPromiseResolve=void 0}}[Symbol.asyncIterator](){return this}toDOMStream(e){return ck.default.toDOMStream(this._closedPromiseResolve||this._error?this:this._values,e)}toNodeStream(e){return ck.default.toNodeStream(this._closedPromiseResolve||this._error?this:this._values,e)}async throw(e){return await this.abort(e),Nr.ITERATOR_DONE}async return(e){return await this.close(),Nr.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(Nr.ITERATOR_DONE)}_ensureOpen(){if(this._closedPromiseResolve)return!0;throw new Error(`${this} is closed`)}};Nr.AsyncQueue=dk});var mr=k(ne=>{"use strict";Object.defineProperty(ne,"__esModule",{value:!0});ne.isReadableNodeStream=ne.isWritableNodeStream=ne.isReadableDOMStream=ne.isWritableDOMStream=ne.isFetchResponse=ne.isFSReadStream=ne.isFileHandle=ne.isUnderlyingSink=ne.isIteratorResult=ne.isArrayLike=ne.isArrowJSON=ne.isAsyncIterable=ne.isIterable=ne.isObservable=ne.isPromise=ne.isObject=ne.BigUint64ArrayAvailable=ne.BigUint64Array=ne.BigInt64ArrayAvailable=ne.BigInt64Array=ne.BigIntAvailable=ne.BigInt=void 0;var Dp=Os(),[tD,rD]=(()=>{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]})();ne.BigInt=tD;ne.BigIntAvailable=rD;var[nD,iD]=(()=>{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]})();ne.BigInt64Array=nD;ne.BigInt64ArrayAvailable=iD;var[fD,oD]=(()=>{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]})();ne.BigUint64Array=fD;ne.BigUint64ArrayAvailable=oD;var Bb=t=>typeof t=="number",mk=t=>typeof t=="boolean",or=t=>typeof t=="function";ne.isObject=t=>t!=null&&Object(t)===t;ne.isPromise=t=>ne.isObject(t)&&or(t.then);ne.isObservable=t=>ne.isObject(t)&&or(t.subscribe);ne.isIterable=t=>ne.isObject(t)&&or(t[Symbol.iterator]);ne.isAsyncIterable=t=>ne.isObject(t)&&or(t[Symbol.asyncIterator]);ne.isArrowJSON=t=>ne.isObject(t)&&ne.isObject(t.schema);ne.isArrayLike=t=>ne.isObject(t)&&Bb(t.length);ne.isIteratorResult=t=>ne.isObject(t)&&"done"in t&&"value"in t;ne.isUnderlyingSink=t=>ne.isObject(t)&&or(t.abort)&&or(t.close)&&or(t.start)&&or(t.write);ne.isFileHandle=t=>ne.isObject(t)&&or(t.stat)&&Bb(t.fd);ne.isFSReadStream=t=>ne.isReadableNodeStream(t)&&Bb(t.bytesRead);ne.isFetchResponse=t=>ne.isObject(t)&&ne.isReadableDOMStream(t.body);ne.isWritableDOMStream=t=>ne.isObject(t)&&or(t.abort)&&or(t.getWriter)&&!(t instanceof Dp.ReadableInterop);ne.isReadableDOMStream=t=>ne.isObject(t)&&or(t.cancel)&&or(t.getReader)&&!(t instanceof Dp.ReadableInterop);ne.isWritableNodeStream=t=>ne.isObject(t)&&or(t.end)&&or(t.write)&&mk(t.writable)&&!(t instanceof Dp.ReadableInterop);ne.isReadableNodeStream=t=>ne.isObject(t)&&or(t.read)&&or(t.pipe)&&mk(t.readable)&&!(t instanceof Dp.ReadableInterop)});var Gt=k(J=>{"use strict";Object.defineProperty(J,"__esModule",{value:!0});J.compareArrayLike=J.rebaseValueOffsets=J.toUint8ClampedArrayAsyncIterator=J.toFloat64ArrayAsyncIterator=J.toFloat32ArrayAsyncIterator=J.toUint32ArrayAsyncIterator=J.toUint16ArrayAsyncIterator=J.toUint8ArrayAsyncIterator=J.toInt32ArrayAsyncIterator=J.toInt16ArrayAsyncIterator=J.toInt8ArrayAsyncIterator=J.toArrayBufferViewAsyncIterator=J.toUint8ClampedArrayIterator=J.toFloat64ArrayIterator=J.toFloat32ArrayIterator=J.toUint32ArrayIterator=J.toUint16ArrayIterator=J.toUint8ArrayIterator=J.toInt32ArrayIterator=J.toInt16ArrayIterator=J.toInt8ArrayIterator=J.toArrayBufferViewIterator=J.toUint8ClampedArray=J.toFloat64Array=J.toFloat32Array=J.toBigUint64Array=J.toUint32Array=J.toUint16Array=J.toUint8Array=J.toBigInt64Array=J.toInt32Array=J.toInt16Array=J.toInt8Array=J.toArrayBufferView=J.joinUint8Arrays=J.memcpy=void 0;var sD=zi(),aD=Io(),lD=sD.flatbuffers.ByteBuffer,xo=mr(),Ib=typeof SharedArrayBuffer!="undefined"?SharedArrayBuffer:ArrayBuffer;function uD(t){let e=t[0]?[t[0]]:[],r,n,i,f;for(let o,s,u=0,l=0,c=t.length;++u<c;){if(o=e[l],s=t[u],!o||!s||o.buffer!==s.buffer||s.byteOffset<o.byteOffset){s&&(e[++l]=s);continue}if({byteOffset:r,byteLength:i}=o,{byteOffset:n,byteLength:f}=s,r+i<n||n+f<r){s&&(e[++l]=s);continue}e[l]=new Uint8Array(o.buffer,r,n-r+f)}return e}function xb(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}J.memcpy=xb;function cD(t,e){let r=uD(t),n=r.reduce((c,w)=>c+w.byteLength,0),i,f,o,s=0,u=-1,l=Math.min(e||1/0,n);for(let c=r.length;++u<c;){if(i=r[u],f=i.subarray(0,Math.min(i.length,l-s)),l<=s+f.length){f.length<i.length?r[u]=i.subarray(f.length):f.length===i.length&&u++,o?xb(o,f,s):o=f;break}xb(o||(o=new Uint8Array(l)),f,s),s+=f.length}return[o||new Uint8Array(0),r.slice(u),n-(o?o.byteLength:0)]}J.joinUint8Arrays=cD;function _r(t,e){let r=xo.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=aD.encodeUtf8(r)),r instanceof ArrayBuffer?new t(r):r instanceof Ib?new t(r):r instanceof lD?_r(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)}J.toArrayBufferView=_r;J.toInt8Array=t=>_r(Int8Array,t);J.toInt16Array=t=>_r(Int16Array,t);J.toInt32Array=t=>_r(Int32Array,t);J.toBigInt64Array=t=>_r(xo.BigInt64Array,t);J.toUint8Array=t=>_r(Uint8Array,t);J.toUint16Array=t=>_r(Uint16Array,t);J.toUint32Array=t=>_r(Uint32Array,t);J.toBigUint64Array=t=>_r(xo.BigUint64Array,t);J.toFloat32Array=t=>_r(Float32Array,t);J.toFloat64Array=t=>_r(Float64Array,t);J.toUint8ClampedArray=t=>_r(Uint8ClampedArray,t);var Sb=t=>(t.next(),t);function*ri(t,e){let r=function*(i){yield i},n=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof Ib?r(e):xo.isIterable(e)?e:r(e);return yield*Sb(function*(i){let f=null;do f=i.next(yield _r(t,f));while(!f.done)}(n[Symbol.iterator]())),new t}J.toArrayBufferViewIterator=ri;J.toInt8ArrayIterator=t=>ri(Int8Array,t);J.toInt16ArrayIterator=t=>ri(Int16Array,t);J.toInt32ArrayIterator=t=>ri(Int32Array,t);J.toUint8ArrayIterator=t=>ri(Uint8Array,t);J.toUint16ArrayIterator=t=>ri(Uint16Array,t);J.toUint32ArrayIterator=t=>ri(Uint32Array,t);J.toFloat32ArrayIterator=t=>ri(Float32Array,t);J.toFloat64ArrayIterator=t=>ri(Float64Array,t);J.toUint8ClampedArrayIterator=t=>ri(Uint8ClampedArray,t);async function*An(t,e){if(xo.isPromise(e))return yield*An(t,await e);let r=async function*(f){yield await f},n=async function*(f){yield*Sb(function*(o){let s=null;do s=o.next(yield s&&s.value);while(!s.done)}(f[Symbol.iterator]()))},i=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof Ib?r(e):xo.isIterable(e)?n(e):xo.isAsyncIterable(e)?e:r(e);return yield*Sb(async function*(f){let o=null;do o=await f.next(yield _r(t,o));while(!o.done)}(i[Symbol.asyncIterator]())),new t}J.toArrayBufferViewAsyncIterator=An;J.toInt8ArrayAsyncIterator=t=>An(Int8Array,t);J.toInt16ArrayAsyncIterator=t=>An(Int16Array,t);J.toInt32ArrayAsyncIterator=t=>An(Int32Array,t);J.toUint8ArrayAsyncIterator=t=>An(Uint8Array,t);J.toUint16ArrayAsyncIterator=t=>An(Uint16Array,t);J.toUint32ArrayAsyncIterator=t=>An(Uint32Array,t);J.toFloat32ArrayAsyncIterator=t=>An(Float32Array,t);J.toFloat64ArrayAsyncIterator=t=>An(Float64Array,t);J.toUint8ClampedArrayAsyncIterator=t=>An(Uint8ClampedArray,t);function pD(t,e,r){if(t!==0){r=r.slice(0,e+1);for(let n=-1;++n<=e;)r[n]+=t}return r}J.rebaseValueOffsets=pD;function dD(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}J.compareArrayLike=dD});var nu=k(Ab=>{"use strict";Object.defineProperty(Ab,"__esModule",{value:!0});var vr=Gt();Ab.default={fromIterable(t){return Np(mD(t))},fromAsyncIterable(t){return Np(wD(t))},fromDOMStream(t){return Np(hD(t))},fromNodeStream(t){return Np(bD(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 Np=t=>(t.next(),t);function*mD(t){let e,r=!1,n=[],i,f,o,s=0;function u(){return f==="peek"?vr.joinUint8Arrays(n,o)[0]:([i,n,s]=vr.joinUint8Arrays(n,o),i)}({cmd:f,size:o}=yield null);let l=vr.toUint8ArrayIterator(t)[Symbol.iterator]();try{do if({done:e,value:i}=isNaN(o-s)?l.next(void 0):l.next(o-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||o<=s)do({cmd:f,size:o}=yield u());while(o<s);while(!e)}catch(c){(r=!0)&&typeof l.throw=="function"&&l.throw(c)}finally{r===!1&&typeof l.return=="function"&&l.return(null)}return null}async function*wD(t){let e,r=!1,n=[],i,f,o,s=0;function u(){return f==="peek"?vr.joinUint8Arrays(n,o)[0]:([i,n,s]=vr.joinUint8Arrays(n,o),i)}({cmd:f,size:o}=yield null);let l=vr.toUint8ArrayAsyncIterator(t)[Symbol.asyncIterator]();try{do if({done:e,value:i}=isNaN(o-s)?await l.next(void 0):await l.next(o-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||o<=s)do({cmd:f,size:o}=yield u());while(o<s);while(!e)}catch(c){(r=!0)&&typeof l.throw=="function"&&await l.throw(c)}finally{r===!1&&typeof l.return=="function"&&await l.return(new Uint8Array(0))}return null}async function*hD(t){let e=!1,r=!1,n=[],i,f,o,s=0;function u(){return f==="peek"?vr.joinUint8Arrays(n,o)[0]:([i,n,s]=vr.joinUint8Arrays(n,o),i)}({cmd:f,size:o}=yield null);let l=new wk(t);try{do if({done:e,value:i}=isNaN(o-s)?await l.read(void 0):await l.read(o-s),!e&&i.byteLength>0&&(n.push(vr.toUint8Array(i)),s+=i.byteLength),e||o<=s)do({cmd:f,size:o}=yield u());while(o<s);while(!e)}catch(c){(r=!0)&&await l.cancel(c)}finally{r===!1?await l.cancel():t.locked&&l.releaseLock()}return null}var wk=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 hk(this.getBYOBReader(),new ArrayBuffer(e),0,e)}};async function hk(t,e,r,n){if(r>=n)return{done:!1,value:new Uint8Array(e,0,n)};let{done:i,value:f}=await t.read(new Uint8Array(e,r,n-r));return(r+=f.byteLength)<n&&!i?await hk(t,f.buffer,r,n):{done:i,value:new Uint8Array(f.buffer,0,r)}}var Eb=(t,e)=>{let r=i=>n([e,i]),n;return[e,r,new Promise(i=>(n=i)&&t.once(e,r))]};async function*bD(t){let e=[],r="error",n=!1,i=null,f,o,s=0,u=[],l;function c(){return f==="peek"?vr.joinUint8Arrays(u,o)[0]:([l,u,s]=vr.joinUint8Arrays(u,o),l)}if({cmd:f,size:o}=yield null,t.isTTY)return yield new Uint8Array(0),null;try{e[0]=Eb(t,"end"),e[1]=Eb(t,"error");do{if(e[2]=Eb(t,"readable"),[r,i]=await Promise.race(e.map(p=>p[2])),r==="error")break;if((n=r==="end")||(isFinite(o-s)?(l=vr.toUint8Array(t.read(o-s)),l.byteLength<o-s&&(l=vr.toUint8Array(t.read(void 0)))):l=vr.toUint8Array(t.read(void 0)),l.byteLength>0&&(u.push(l),s+=l.byteLength)),n||o<=s)do({cmd:f,size:o}=yield c());while(o<s)}while(!n)}finally{await w(e,r==="error"?i:null)}return null;function w(p,g){return l=u=null,new Promise((v,H)=>{for(let[O,C]of p)t.off(O,C);try{let O=t.destroy;O&&O.call(t,g),g=void 0}catch(O){g=O||g}finally{g!=null?H(g):v()}})}}});var Nt=k(Fs=>{"use strict";Object.defineProperty(Fs,"__esModule",{value:!0});Fs.Vector=Fs.AbstractVector=void 0;var Rp=class{};Fs.AbstractVector=Rp;Fs.Vector=Rp;Rp.prototype.data=null});var Bf=k(G=>{"use strict";Object.defineProperty(G,"__esModule",{value:!0});G.Schema=G.Buffer=G.Field=G.DictionaryEncoding=G.KeyValue=G.Duration=G.Interval=G.Timestamp=G.Time=G.Date=G.Decimal=G.Bool=G.FixedSizeBinary=G.LargeBinary=G.LargeUtf8=G.Binary=G.Utf8=G.FloatingPoint=G.Int=G.Union=G.Map=G.FixedSizeList=G.LargeList=G.List=G.Struct_=G.Null=G.Endianness=G.DictionaryKind=G.Type=G.IntervalUnit=G.TimeUnit=G.DateUnit=G.Precision=G.UnionMode=G.Feature=G.MetadataVersion=void 0;var ht=zi(),gD;(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"})(gD=G.MetadataVersion||(G.MetadataVersion={}));var yD;(function(t){t[t.UNUSED=0]="UNUSED",t[t.DICTIONARY_REPLACEMENT=1]="DICTIONARY_REPLACEMENT",t[t.COMPRESSED_BODY=2]="COMPRESSED_BODY"})(yD=G.Feature||(G.Feature={}));var Ob;(function(t){t[t.Sparse=0]="Sparse",t[t.Dense=1]="Dense"})(Ob=G.UnionMode||(G.UnionMode={}));var Fb;(function(t){t[t.HALF=0]="HALF",t[t.SINGLE=1]="SINGLE",t[t.DOUBLE=2]="DOUBLE"})(Fb=G.Precision||(G.Precision={}));var Db;(function(t){t[t.DAY=0]="DAY",t[t.MILLISECOND=1]="MILLISECOND"})(Db=G.DateUnit||(G.DateUnit={}));var So;(function(t){t[t.SECOND=0]="SECOND",t[t.MILLISECOND=1]="MILLISECOND",t[t.MICROSECOND=2]="MICROSECOND",t[t.NANOSECOND=3]="NANOSECOND"})(So=G.TimeUnit||(G.TimeUnit={}));var Nb;(function(t){t[t.YEAR_MONTH=0]="YEAR_MONTH",t[t.DAY_TIME=1]="DAY_TIME"})(Nb=G.IntervalUnit||(G.IntervalUnit={}));var Rb;(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"})(Rb=G.Type||(G.Type={}));var Pb;(function(t){t[t.DenseArray=0]="DenseArray"})(Pb=G.DictionaryKind||(G.DictionaryKind={}));var Hb;(function(t){t[t.Little=0]="Little",t[t.Big=1]="Big"})(Hb=G.Endianness||(G.Endianness={}));var Eo=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 Eo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsNull(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Eo).__init(e.readInt32(e.position())+e.position(),e)}static startNull(e){e.startObject(0)}static endNull(e){return e.endObject()}static createNull(e){return Eo.startNull(e),Eo.endNull(e)}};G.Null=Eo;var Ao=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 Ao).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsStruct_(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ao).__init(e.readInt32(e.position())+e.position(),e)}static startStruct_(e){e.startObject(0)}static endStruct_(e){return e.endObject()}static createStruct_(e){return Ao.startStruct_(e),Ao.endStruct_(e)}};G.Struct_=Ao;var Oo=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 Oo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsList(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Oo).__init(e.readInt32(e.position())+e.position(),e)}static startList(e){e.startObject(0)}static endList(e){return e.endObject()}static createList(e){return Oo.startList(e),Oo.endList(e)}};G.List=Oo;var Fo=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 Fo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeList(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Fo).__init(e.readInt32(e.position())+e.position(),e)}static startLargeList(e){e.startObject(0)}static endLargeList(e){return e.endObject()}static createLargeList(e){return Fo.startLargeList(e),Fo.endLargeList(e)}};G.LargeList=Fo;var yf=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 yf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeList(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new yf).__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 yf.startFixedSizeList(e),yf.addListSize(e,r),yf.endFixedSizeList(e)}};G.FixedSizeList=yf;var jf=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 jf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMap(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new jf).__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 jf.startMap(e),jf.addKeysSorted(e,r),jf.endMap(e)}};G.Map=jf;var Li=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 Li).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUnion(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Li).__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):Ob.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,Ob.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 Li.startUnion(e),Li.addMode(e,r),Li.addTypeIds(e,n),Li.endUnion(e)}};G.Union=Li;var ni=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 ni).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInt(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ni).__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 ni.startInt(e),ni.addBitWidth(e,r),ni.addIsSigned(e,n),ni.endInt(e)}};G.Int=ni;var qf=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 qf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFloatingPoint(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new qf).__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):Fb.HALF}static startFloatingPoint(e){e.startObject(1)}static addPrecision(e,r){e.addFieldInt16(0,r,Fb.HALF)}static endFloatingPoint(e){return e.endObject()}static createFloatingPoint(e,r){return qf.startFloatingPoint(e),qf.addPrecision(e,r),qf.endFloatingPoint(e)}};G.FloatingPoint=qf;var Do=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 Do).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUtf8(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Do).__init(e.readInt32(e.position())+e.position(),e)}static startUtf8(e){e.startObject(0)}static endUtf8(e){return e.endObject()}static createUtf8(e){return Do.startUtf8(e),Do.endUtf8(e)}};G.Utf8=Do;var No=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 No).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBinary(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new No).__init(e.readInt32(e.position())+e.position(),e)}static startBinary(e){e.startObject(0)}static endBinary(e){return e.endObject()}static createBinary(e){return No.startBinary(e),No.endBinary(e)}};G.Binary=No;var Ro=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 Ro).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeUtf8(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ro).__init(e.readInt32(e.position())+e.position(),e)}static startLargeUtf8(e){e.startObject(0)}static endLargeUtf8(e){return e.endObject()}static createLargeUtf8(e){return Ro.startLargeUtf8(e),Ro.endLargeUtf8(e)}};G.LargeUtf8=Ro;var Po=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 Po).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeBinary(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Po).__init(e.readInt32(e.position())+e.position(),e)}static startLargeBinary(e){e.startObject(0)}static endLargeBinary(e){return e.endObject()}static createLargeBinary(e){return Po.startLargeBinary(e),Po.endLargeBinary(e)}};G.LargeBinary=Po;var _f=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 _f).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeBinary(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new _f).__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 _f.startFixedSizeBinary(e),_f.addByteWidth(e,r),_f.endFixedSizeBinary(e)}};G.FixedSizeBinary=_f;var Ho=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 Ho).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBool(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ho).__init(e.readInt32(e.position())+e.position(),e)}static startBool(e){e.startObject(0)}static endBool(e){return e.endObject()}static createBool(e){return Ho.startBool(e),Ho.endBool(e)}};G.Bool=Ho;var ii=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 ii).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDecimal(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ii).__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 ii.startDecimal(e),ii.addPrecision(e,r),ii.addScale(e,n),ii.addBitWidth(e,i),ii.endDecimal(e)}};G.Decimal=ii;var vf=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 vf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDate(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new vf).__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):Db.MILLISECOND}static startDate(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,Db.MILLISECOND)}static endDate(e){return e.endObject()}static createDate(e,r){return vf.startDate(e),vf.addUnit(e,r),vf.endDate(e)}};G.Date=vf;var Vi=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 Vi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTime(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Vi).__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):So.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,So.MILLISECOND)}static addBitWidth(e,r){e.addFieldInt32(1,r,32)}static endTime(e){return e.endObject()}static createTime(e,r,n){return Vi.startTime(e),Vi.addUnit(e,r),Vi.addBitWidth(e,n),Vi.endTime(e)}};G.Time=Vi;var Ci=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 Ci).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTimestamp(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ci).__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):So.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,So.SECOND)}static addTimezone(e,r){e.addFieldOffset(1,r,0)}static endTimestamp(e){return e.endObject()}static createTimestamp(e,r,n){return Ci.startTimestamp(e),Ci.addUnit(e,r),Ci.addTimezone(e,n),Ci.endTimestamp(e)}};G.Timestamp=Ci;var Tf=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 Tf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInterval(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Tf).__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):Nb.YEAR_MONTH}static startInterval(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,Nb.YEAR_MONTH)}static endInterval(e){return e.endObject()}static createInterval(e,r){return Tf.startInterval(e),Tf.addUnit(e,r),Tf.endInterval(e)}};G.Interval=Tf;var kf=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 kf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDuration(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new kf).__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):So.MILLISECOND}static startDuration(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,So.MILLISECOND)}static endDuration(e){return e.endObject()}static createDuration(e,r){return kf.startDuration(e),kf.addUnit(e,r),kf.endDuration(e)}};G.Duration=kf;var On=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 On).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsKeyValue(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new On).__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 On.startKeyValue(e),On.addKey(e,r),On.addValue(e,n),On.endKeyValue(e)}};G.KeyValue=On;var sn=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 sn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryEncoding(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new sn).__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 ni).__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):Pb.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,Pb.DenseArray)}static endDictionaryEncoding(e){return e.endObject()}static createDictionaryEncoding(e,r,n,i,f){return sn.startDictionaryEncoding(e),sn.addId(e,r),sn.addIndexType(e,n),sn.addIsOrdered(e,i),sn.addDictionaryKind(e,f),sn.endDictionaryEncoding(e)}};G.DictionaryEncoding=sn;var wr=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 wr).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsField(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new wr).__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):Rb.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 sn).__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 wr).__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 On).__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,Rb.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,f,o,s,u){return wr.startField(e),wr.addName(e,r),wr.addNullable(e,n),wr.addTypeType(e,i),wr.addType(e,f),wr.addDictionary(e,o),wr.addChildren(e,s),wr.addCustomMetadata(e,u),wr.endField(e)}};G.Field=wr;var bk=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()}};G.Buffer=bk;var Fn=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 Fn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsSchema(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Fn).__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):Hb.Little}fields(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new wr).__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 On).__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,Hb.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 Fn.startSchema(e),Fn.addEndianness(e,r),Fn.addFields(e,n),Fn.addCustomMetadata(e,i),Fn.addFeatures(e,f),Fn.endSchema(e)}};G.Schema=Fn});var Mp=k(Rt=>{"use strict";Object.defineProperty(Rt,"__esModule",{value:!0});Rt.Message=Rt.DictionaryBatch=Rt.RecordBatch=Rt.BodyCompression=Rt.FieldNode=Rt.MessageHeader=Rt.BodyCompressionMethod=Rt.CompressionType=void 0;var Pp=zi(),Hp=Bf(),Mb;(function(t){t[t.LZ4_FRAME=0]="LZ4_FRAME",t[t.ZSTD=1]="ZSTD"})(Mb=Rt.CompressionType||(Rt.CompressionType={}));var zb;(function(t){t[t.BUFFER=0]="BUFFER"})(zb=Rt.BodyCompressionMethod||(Rt.BodyCompressionMethod={}));var Ub;(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"})(Ub=Rt.MessageHeader||(Rt.MessageHeader={}));var Lb=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()}};Rt.FieldNode=Lb;var fi=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 fi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBodyCompression(e,r){return e.setPosition(e.position()+Pp.flatbuffers.SIZE_PREFIX_LENGTH),(r||new fi).__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):Mb.LZ4_FRAME}method(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt8(this.bb_pos+e):zb.BUFFER}static startBodyCompression(e){e.startObject(2)}static addCodec(e,r){e.addFieldInt8(0,r,Mb.LZ4_FRAME)}static addMethod(e,r){e.addFieldInt8(1,r,zb.BUFFER)}static endBodyCompression(e){return e.endObject()}static createBodyCompression(e,r,n){return fi.startBodyCompression(e),fi.addCodec(e,r),fi.addMethod(e,n),fi.endBodyCompression(e)}};Rt.BodyCompression=fi;var an=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 an).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsRecordBatch(e,r){return e.setPosition(e.position()+Pp.flatbuffers.SIZE_PREFIX_LENGTH),(r||new an).__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 Lb).__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 Hp.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 fi).__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,f){return an.startRecordBatch(e),an.addLength(e,r),an.addNodes(e,n),an.addBuffers(e,i),an.addCompression(e,f),an.endRecordBatch(e)}};Rt.RecordBatch=an;var oi=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 oi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryBatch(e,r){return e.setPosition(e.position()+Pp.flatbuffers.SIZE_PREFIX_LENGTH),(r||new oi).__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 an).__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 oi.startDictionaryBatch(e),oi.addId(e,r),oi.addData(e,n),oi.addIsDelta(e,i),oi.endDictionaryBatch(e)}};Rt.DictionaryBatch=oi;var ln=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 ln).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMessage(e,r){return e.setPosition(e.position()+Pp.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ln).__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):Hp.MetadataVersion.V1}headerType(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readUint8(this.bb_pos+e):Ub.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 Hp.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,Hp.MetadataVersion.V1)}static addHeaderType(e,r){e.addFieldInt8(1,r,Ub.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 ln.startMessage(e),ln.addVersion(e,r),ln.addHeaderType(e,n),ln.addHeader(e,i),ln.addBodyLength(e,f),ln.addCustomMetadata(e,o),ln.endMessage(e)}};Rt.Message=ln});var dt=k(kt=>{"use strict";Object.defineProperty(kt,"__esModule",{value:!0});kt.BufferType=kt.Type=kt.MessageHeader=kt.MetadataVersion=kt.IntervalUnit=kt.UnionMode=kt.Precision=kt.TimeUnit=kt.DateUnit=void 0;var Ds=Bf();Object.defineProperty(kt,"DateUnit",{enumerable:!0,get:function(){return Ds.DateUnit}});Object.defineProperty(kt,"TimeUnit",{enumerable:!0,get:function(){return Ds.TimeUnit}});Object.defineProperty(kt,"Precision",{enumerable:!0,get:function(){return Ds.Precision}});Object.defineProperty(kt,"UnionMode",{enumerable:!0,get:function(){return Ds.UnionMode}});Object.defineProperty(kt,"IntervalUnit",{enumerable:!0,get:function(){return Ds.IntervalUnit}});Object.defineProperty(kt,"MetadataVersion",{enumerable:!0,get:function(){return Ds.MetadataVersion}});var jD=Mp();Object.defineProperty(kt,"MessageHeader",{enumerable:!0,get:function(){return jD.MessageHeader}});var qD;(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"})(qD=kt.Type||(kt.Type={}));var _D;(function(t){t[t.OFFSET=0]="OFFSET",t[t.DATA=1]="DATA",t[t.VALIDITY=2]="VALIDITY",t[t.TYPE=3]="TYPE"})(_D=kt.BufferType||(kt.BufferType={}))});var si=k(Ut=>{"use strict";Object.defineProperty(Ut,"__esModule",{value:!0});Ut.popcnt_uint32=Ut.popcnt_array=Ut.popcnt_bit_range=Ut.BitIterator=Ut.packBools=Ut.truncateBitmap=Ut.setBool=Ut.getBit=Ut.getBool=void 0;function gk(t,e,r,n){return(r&1<<n)!=0}Ut.getBool=gk;function yk(t,e,r,n){return(r&1<<n)>>n}Ut.getBit=yk;function vD(t,e,r){return r?!!(t[e>>3]|=1<<e%8)||!0:!(t[e>>3]&=~(1<<e%8))&&!1}Ut.setBool=vD;function TD(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):jk(new zp(r,t,e,null,gk)).subarray(0,n)),i}return r}Ut.truncateBitmap=TD;function jk(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}Ut.packBools=jk;var zp=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}};Ut.BitIterator=zp;function Vb(t,e,r){if(r-e<=0)return 0;if(r-e<8){let f=0;for(let o of new zp(t,e,r-e,t,yk))f+=o;return f}let n=r>>3<<3,i=e+(e%8==0?0:8-e%8);return Vb(t,e,i)+Vb(t,n,r)+qk(t,i>>3,n-i>>3)}Ut.popcnt_bit_range=Vb;function qk(t,e,r){let n=0,i=e|0,f=new DataView(t.buffer,t.byteOffset,t.byteLength),o=r===void 0?t.byteLength:i+r;for(;o-i>=4;)n+=Up(f.getUint32(i)),i+=4;for(;o-i>=2;)n+=Up(f.getUint16(i)),i+=2;for(;o-i>=1;)n+=Up(f.getUint8(i)),i+=1;return n}Ut.popcnt_array=qk;function Up(t){let e=t|0;return e=e-(e>>>1&1431655765),e=(e&858993459)+(e>>>2&858993459),(e+(e>>>4)&252645135)*16843009>>>24}Ut.popcnt_uint32=Up});var $e=k(W=>{"use strict";Object.defineProperty(W,"__esModule",{value:!0});W.strideForType=W.Dictionary=W.Map_=W.FixedSizeList=W.FixedSizeBinary=W.SparseUnion=W.DenseUnion=W.Union=W.Struct=W.List=W.IntervalYearMonth=W.IntervalDayTime=W.Interval=W.TimestampNanosecond=W.TimestampMicrosecond=W.TimestampMillisecond=W.TimestampSecond=W.Timestamp=W.TimeNanosecond=W.TimeMicrosecond=W.TimeMillisecond=W.TimeSecond=W.Time=W.DateMillisecond=W.DateDay=W.Date_=W.Decimal=W.Bool=W.Utf8=W.Binary=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.Null=W.DataType=void 0;var Q=dt(),Bt=class{static isNull(e){return e&&e.typeId===Q.Type.Null}static isInt(e){return e&&e.typeId===Q.Type.Int}static isFloat(e){return e&&e.typeId===Q.Type.Float}static isBinary(e){return e&&e.typeId===Q.Type.Binary}static isUtf8(e){return e&&e.typeId===Q.Type.Utf8}static isBool(e){return e&&e.typeId===Q.Type.Bool}static isDecimal(e){return e&&e.typeId===Q.Type.Decimal}static isDate(e){return e&&e.typeId===Q.Type.Date}static isTime(e){return e&&e.typeId===Q.Type.Time}static isTimestamp(e){return e&&e.typeId===Q.Type.Timestamp}static isInterval(e){return e&&e.typeId===Q.Type.Interval}static isList(e){return e&&e.typeId===Q.Type.List}static isStruct(e){return e&&e.typeId===Q.Type.Struct}static isUnion(e){return e&&e.typeId===Q.Type.Union}static isFixedSizeBinary(e){return e&&e.typeId===Q.Type.FixedSizeBinary}static isFixedSizeList(e){return e&&e.typeId===Q.Type.FixedSizeList}static isMap(e){return e&&e.typeId===Q.Type.Map}static isDictionary(e){return e&&e.typeId===Q.Type.Dictionary}get typeId(){return Q.Type.NONE}};W.DataType=Bt;Bt[Symbol.toStringTag]=(t=>(t.children=null,t.ArrayType=Array,t[Symbol.toStringTag]="DataType"))(Bt.prototype);var Lp=class extends Bt{toString(){return"Null"}get typeId(){return Q.Type.Null}};W.Null=Lp;Lp[Symbol.toStringTag]=(t=>t[Symbol.toStringTag]="Null")(Lp.prototype);var un=class extends Bt{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return Q.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}`}};W.Int=un;un[Symbol.toStringTag]=(t=>(t.isSigned=null,t.bitWidth=null,t[Symbol.toStringTag]="Int"))(un.prototype);var Cb=class extends un{constructor(){super(!0,8)}};W.Int8=Cb;var Wb=class extends un{constructor(){super(!0,16)}};W.Int16=Wb;var Kb=class extends un{constructor(){super(!0,32)}};W.Int32=Kb;var Yb=class extends un{constructor(){super(!0,64)}};W.Int64=Yb;var Gb=class extends un{constructor(){super(!1,8)}};W.Uint8=Gb;var Zb=class extends un{constructor(){super(!1,16)}};W.Uint16=Zb;var Jb=class extends un{constructor(){super(!1,32)}};W.Uint32=Jb;var Qb=class extends un{constructor(){super(!1,64)}};W.Uint64=Qb;Object.defineProperty(Cb.prototype,"ArrayType",{value:Int8Array});Object.defineProperty(Wb.prototype,"ArrayType",{value:Int16Array});Object.defineProperty(Kb.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(Yb.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(Gb.prototype,"ArrayType",{value:Uint8Array});Object.defineProperty(Zb.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Jb.prototype,"ArrayType",{value:Uint32Array});Object.defineProperty(Qb.prototype,"ArrayType",{value:Uint32Array});var Mo=class extends Bt{constructor(e){super();this.precision=e}get typeId(){return Q.Type.Float}get ArrayType(){switch(this.precision){case Q.Precision.HALF:return Uint16Array;case Q.Precision.SINGLE:return Float32Array;case Q.Precision.DOUBLE:return Float64Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`Float${this.precision<<5||16}`}};W.Float=Mo;Mo[Symbol.toStringTag]=(t=>(t.precision=null,t[Symbol.toStringTag]="Float"))(Mo.prototype);var Xb=class extends Mo{constructor(){super(Q.Precision.HALF)}};W.Float16=Xb;var $b=class extends Mo{constructor(){super(Q.Precision.SINGLE)}};W.Float32=$b;var eg=class extends Mo{constructor(){super(Q.Precision.DOUBLE)}};W.Float64=eg;Object.defineProperty(Xb.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty($b.prototype,"ArrayType",{value:Float32Array});Object.defineProperty(eg.prototype,"ArrayType",{value:Float64Array});var Vp=class extends Bt{constructor(){super()}get typeId(){return Q.Type.Binary}toString(){return"Binary"}};W.Binary=Vp;Vp[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Binary"))(Vp.prototype);var Cp=class extends Bt{constructor(){super()}get typeId(){return Q.Type.Utf8}toString(){return"Utf8"}};W.Utf8=Cp;Cp[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Utf8"))(Cp.prototype);var Wp=class extends Bt{constructor(){super()}get typeId(){return Q.Type.Bool}toString(){return"Bool"}};W.Bool=Wp;Wp[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Bool"))(Wp.prototype);var Kp=class extends Bt{constructor(e,r){super();this.scale=e,this.precision=r}get typeId(){return Q.Type.Decimal}toString(){return`Decimal[${this.precision}e${this.scale>0?"+":""}${this.scale}]`}};W.Decimal=Kp;Kp[Symbol.toStringTag]=(t=>(t.scale=null,t.precision=null,t.ArrayType=Uint32Array,t[Symbol.toStringTag]="Decimal"))(Kp.prototype);var Ns=class extends Bt{constructor(e){super();this.unit=e}get typeId(){return Q.Type.Date}toString(){return`Date${(this.unit+1)*32}<${Q.DateUnit[this.unit]}>`}};W.Date_=Ns;Ns[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Date"))(Ns.prototype);var _k=class extends Ns{constructor(){super(Q.DateUnit.DAY)}};W.DateDay=_k;var vk=class extends Ns{constructor(){super(Q.DateUnit.MILLISECOND)}};W.DateMillisecond=vk;var If=class extends Bt{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return Q.Type.Time}toString(){return`Time${this.bitWidth}<${Q.TimeUnit[this.unit]}>`}};W.Time=If;If[Symbol.toStringTag]=(t=>(t.unit=null,t.bitWidth=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Time"))(If.prototype);var Tk=class extends If{constructor(){super(Q.TimeUnit.SECOND,32)}};W.TimeSecond=Tk;var kk=class extends If{constructor(){super(Q.TimeUnit.MILLISECOND,32)}};W.TimeMillisecond=kk;var Bk=class extends If{constructor(){super(Q.TimeUnit.MICROSECOND,64)}};W.TimeMicrosecond=Bk;var Ik=class extends If{constructor(){super(Q.TimeUnit.NANOSECOND,64)}};W.TimeNanosecond=Ik;var xf=class extends Bt{constructor(e,r){super();this.unit=e,this.timezone=r}get typeId(){return Q.Type.Timestamp}toString(){return`Timestamp<${Q.TimeUnit[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}};W.Timestamp=xf;xf[Symbol.toStringTag]=(t=>(t.unit=null,t.timezone=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Timestamp"))(xf.prototype);var xk=class extends xf{constructor(e){super(Q.TimeUnit.SECOND,e)}};W.TimestampSecond=xk;var Sk=class extends xf{constructor(e){super(Q.TimeUnit.MILLISECOND,e)}};W.TimestampMillisecond=Sk;var Ek=class extends xf{constructor(e){super(Q.TimeUnit.MICROSECOND,e)}};W.TimestampMicrosecond=Ek;var Ak=class extends xf{constructor(e){super(Q.TimeUnit.NANOSECOND,e)}};W.TimestampNanosecond=Ak;var Rs=class extends Bt{constructor(e){super();this.unit=e}get typeId(){return Q.Type.Interval}toString(){return`Interval<${Q.IntervalUnit[this.unit]}>`}};W.Interval=Rs;Rs[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Interval"))(Rs.prototype);var Ok=class extends Rs{constructor(){super(Q.IntervalUnit.DAY_TIME)}};W.IntervalDayTime=Ok;var Fk=class extends Rs{constructor(){super(Q.IntervalUnit.YEAR_MONTH)}};W.IntervalYearMonth=Fk;var Yp=class extends Bt{constructor(e){super();this.children=[e]}get typeId(){return Q.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}};W.List=Yp;Yp[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="List"))(Yp.prototype);var Gp=class extends Bt{constructor(e){super();this.children=e}get typeId(){return Q.Type.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};W.Struct=Gp;Gp[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="Struct"))(Gp.prototype);var Ps=class extends Bt{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 Q.Type.Union}toString(){return`${this[Symbol.toStringTag]}<${this.children.map(e=>`${e.type}`).join(" | ")}>`}};W.Union=Ps;Ps[Symbol.toStringTag]=(t=>(t.mode=null,t.typeIds=null,t.children=null,t.typeIdToChildIndex=null,t.ArrayType=Int8Array,t[Symbol.toStringTag]="Union"))(Ps.prototype);var Dk=class extends Ps{constructor(e,r){super(Q.UnionMode.Dense,e,r)}};W.DenseUnion=Dk;var Nk=class extends Ps{constructor(e,r){super(Q.UnionMode.Sparse,e,r)}};W.SparseUnion=Nk;var Zp=class extends Bt{constructor(e){super();this.byteWidth=e}get typeId(){return Q.Type.FixedSizeBinary}toString(){return`FixedSizeBinary[${this.byteWidth}]`}};W.FixedSizeBinary=Zp;Zp[Symbol.toStringTag]=(t=>(t.byteWidth=null,t.ArrayType=Uint8Array,t[Symbol.toStringTag]="FixedSizeBinary"))(Zp.prototype);var Jp=class extends Bt{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return Q.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}>`}};W.FixedSizeList=Jp;Jp[Symbol.toStringTag]=(t=>(t.children=null,t.listSize=null,t[Symbol.toStringTag]="FixedSizeList"))(Jp.prototype);var Qp=class extends Bt{constructor(e,r=!1){super();this.children=[e],this.keysSorted=r}get typeId(){return Q.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(", ")}}>`}};W.Map_=Qp;Qp[Symbol.toStringTag]=(t=>(t.children=null,t.keysSorted=null,t[Symbol.toStringTag]="Map_"))(Qp.prototype);var kD=(t=>()=>++t)(-1),Xp=class extends Bt{constructor(e,r,n,i){super();this.indices=r,this.dictionary=e,this.isOrdered=i||!1,this.id=n==null?kD():typeof n=="number"?n:n.low}get typeId(){return Q.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}>`}};W.Dictionary=Xp;Xp[Symbol.toStringTag]=(t=>(t.id=null,t.indices=null,t.isOrdered=null,t.dictionary=null,t[Symbol.toStringTag]="Dictionary"))(Xp.prototype);function BD(t){let e=t;switch(t.typeId){case Q.Type.Decimal:return 4;case Q.Type.Timestamp:return 2;case Q.Type.Date:return 1+e.unit;case Q.Type.Interval:return 1+e.unit;case Q.Type.Int:return 1+ +(e.bitWidth>32);case Q.Type.Time:return 1+ +(e.bitWidth>32);case Q.Type.FixedSizeList:return e.listSize;case Q.Type.FixedSizeBinary:return e.byteWidth;default:return 1}}W.strideForType=BD});var Dn=k(zo=>{"use strict";Object.defineProperty(zo,"__esModule",{value:!0});zo.Data=zo.kUnknownNullCount=void 0;var ID=si(),xD=si(),ie=dt(),SD=$e(),We=Gt();zo.kUnknownNullCount=-1;var Te=class{constructor(e,r,n,i,f,o,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=(o||[]).map(l=>l instanceof Te?l:l.data);let u;f instanceof Te?(this.stride=f.stride,this.values=f.values,this.typeIds=f.typeIds,this.nullBitmap=f.nullBitmap,this.valueOffsets=f.valueOffsets):(this.stride=SD.strideForType(e),f&&((u=f[0])&&(this.valueOffsets=u),(u=f[1])&&(this.values=u),(u=f[2])&&(this.nullBitmap=u),(u=f[3])&&(this.typeIds=u)))}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.childData.reduce((o,s)=>o+s.byteLength,e)}get nullCount(){let e=this._nullCount,r;return e<=zo.kUnknownNullCount&&(r=this.nullBitmap)&&(this._nullCount=e=this.length-xD.popcnt_bit_range(r,this.offset,this.offset+this.length)),e}clone(e,r=this.offset,n=this.length,i=this._nullCount,f=this,o=this.childData){return new Te(e,r,n,i,f,o,this.dictionary)}slice(e,r){let{stride:n,typeId:i,childData:f}=this,o=+(this._nullCount===0)-1,s=i===16?n:1,u=this._sliceBuffers(e,r,n,i);return this.clone(this.type,this.offset+e,r,o,u,!f.length||this.valueOffsets?f:this._sliceChildren(f,s*e,s*r))}_changeLengthAndBackfillNullBitmap(e){if(this.typeId===ie.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(ID.truncateBitmap(this.offset,r,this.nullBitmap),0);let f=this.buffers;return f[ie.BufferType.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[ie.BufferType.TYPE])&&(o[ie.BufferType.TYPE]=f.subarray(e,e+r)),(f=o[ie.BufferType.OFFSET])&&(o[ie.BufferType.OFFSET]=f.subarray(e,e+r+1))||(f=o[ie.BufferType.DATA])&&(o[ie.BufferType.DATA]=i===6?f:f.subarray(n*e,n*(e+r))),o}_sliceChildren(e,r,n){return e.map(i=>i.slice(r,n))}static new(e,r,n,i,f,o,s){switch(f instanceof Te?f=f.buffers:f||(f=[]),e.typeId){case ie.Type.Null:return Te.Null(e,r,n);case ie.Type.Int:return Te.Int(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Dictionary:return Te.Dictionary(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[],s);case ie.Type.Float:return Te.Float(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Bool:return Te.Bool(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Decimal:return Te.Decimal(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Date:return Te.Date(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Time:return Te.Time(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Timestamp:return Te.Timestamp(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Interval:return Te.Interval(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.FixedSizeBinary:return Te.FixedSizeBinary(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Binary:return Te.Binary(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.OFFSET]||[],f[ie.BufferType.DATA]||[]);case ie.Type.Utf8:return Te.Utf8(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.OFFSET]||[],f[ie.BufferType.DATA]||[]);case ie.Type.List:return Te.List(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.OFFSET]||[],(o||[])[0]);case ie.Type.FixedSizeList:return Te.FixedSizeList(e,r,n,i||0,f[ie.BufferType.VALIDITY],(o||[])[0]);case ie.Type.Struct:return Te.Struct(e,r,n,i||0,f[ie.BufferType.VALIDITY],o||[]);case ie.Type.Map:return Te.Map(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.OFFSET]||[],(o||[])[0]);case ie.Type.Union:return Te.Union(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.TYPE]||[],f[ie.BufferType.OFFSET]||o,o)}throw new Error(`Unrecognized typeId ${e.typeId}`)}static Null(e,r,n){return new Te(e,r,n,0)}static Int(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Dictionary(e,r,n,i,f,o,s){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.indices.ArrayType,o),We.toUint8Array(f)],[],s)}static Float(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Bool(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Decimal(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Date(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Time(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Timestamp(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Interval(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static FixedSizeBinary(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Binary(e,r,n,i,f,o,s){return new Te(e,r,n,i,[We.toInt32Array(o),We.toUint8Array(s),We.toUint8Array(f)])}static Utf8(e,r,n,i,f,o,s){return new Te(e,r,n,i,[We.toInt32Array(o),We.toUint8Array(s),We.toUint8Array(f)])}static List(e,r,n,i,f,o,s){return new Te(e,r,n,i,[We.toInt32Array(o),void 0,We.toUint8Array(f)],s?[s]:[])}static FixedSizeList(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,void 0,We.toUint8Array(f)],o?[o]:[])}static Struct(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,void 0,We.toUint8Array(f)],o)}static Map(e,r,n,i,f,o,s){return new Te(e,r,n,i,[We.toInt32Array(o),void 0,We.toUint8Array(f)],s?[s]:[])}static Union(e,r,n,i,f,o,s,u){let l=[void 0,void 0,We.toUint8Array(f),We.toArrayBufferView(e.ArrayType,o)];return e.mode===ie.UnionMode.Sparse?new Te(e,r,n,i,l,s):(l[ie.BufferType.OFFSET]=We.toInt32Array(s),new Te(e,r,n,i,l,u))}};zo.Data=Te;Te.prototype.childData=Object.freeze([])});var tg=k($p=>{"use strict";Object.defineProperty($p,"__esModule",{value:!0});$p.valueToString=void 0;var ED=void 0;function AD(t){if(t===null)return"null";if(t===ED)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)}$p.valueToString=AD});var Rk=k(ed=>{"use strict";Object.defineProperty(ed,"__esModule",{value:!0});ed.createIsValidFunction=void 0;var rg=tg(),OD=mr();function FD(t){if(!t||t.length<=0)return function(i){return!0};let e="",r=t.filter(n=>n===n);return r.length>0&&(e=`
6
+ `),I=[],U=0;U<y.length;++U){var ce=y[U];!re(ce)&&!F(ce)&&ce&&I.push(ce)}return I.join(`
7
+ `)}function F(h){return h.indexOf("(module.js:")!==-1||h.indexOf("(node.js:")!==-1}function oe(h){var y=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(h);if(y)return[y[1],Number(y[2])];var I=/at ([^ ]+):(\d+):(?:\d+)$/.exec(h);if(I)return[I[1],Number(I[2])];var U=/.*@(.+):(\d+)$/.exec(h);if(U)return[U[1],Number(U[2])]}function re(h){var y=oe(h);if(!y)return!1;var I=y[0],U=y[1];return I===r&&U>=e&&U<=$o}function ue(){if(!!t)try{throw new Error}catch(U){var h=U.stack.split(`
8
+ `),y=h[0].indexOf("@")>0?h[1]:h[2],I=oe(y);return I?(r=I[0],I[1]):void 0}}function Ye(h,y,I){return function(){return typeof console!="undefined"&&typeof console.warn=="function"&&console.warn(y+" is deprecated, use "+I+" instead.",new Error("").stack),h.apply(h,arguments)}}function q(h){return h instanceof $?h:vi(h)?Aa(h):ro(h)}q.resolve=q,q.nextTick=i,q.longStackSupport=!1;var Ae=1;typeof process=="object"&&process&&process.env&&process.env.Q_DEBUG&&(q.longStackSupport=!0),q.defer=Ue;function Ue(){var h=[],y=[],I,U=w(Ue.prototype),ce=w($.prototype);if(ce.promiseDispatch=function(we,ft,Xe){var ot=s(arguments);h?(h.push(ot),ft==="when"&&Xe[1]&&y.push(Xe[1])):q.nextTick(function(){I.promiseDispatch.apply(I,ot)})},ce.valueOf=function(){if(h)return ce;var we=nt(I);return Tr(we)&&(I=we),we},ce.inspect=function(){return I?I.inspect():{state:"pending"}},q.longStackSupport&&t)try{throw new Error}catch(we){ce.stack=we.stack.substring(we.stack.indexOf(`
9
+ `)+1),ce.stackCounter=Ae++}function xe(we){I=we,q.longStackSupport&&t&&(ce.source=we),u(h,function(ft,Xe){q.nextTick(function(){we.promiseDispatch.apply(we,Xe)})},void 0),h=void 0,y=void 0}return U.promise=ce,U.resolve=function(we){I||xe(q(we))},U.fulfill=function(we){I||xe(ro(we))},U.reject=function(we){I||xe(hr(we))},U.notify=function(we){I||u(y,function(ft,Xe){q.nextTick(function(){Xe(we)})},void 0)},U}Ue.prototype.makeNodeResolver=function(){var h=this;return function(y,I){y?h.reject(y):arguments.length>2?h.resolve(s(arguments,1)):h.resolve(I)}},q.Promise=he,q.promise=he;function he(h){if(typeof h!="function")throw new TypeError("resolver must be a function.");var y=Ue();try{h(y.resolve,y.reject,y.notify)}catch(I){y.reject(I)}return y.promise}he.race=Ge,he.all=rf,he.reject=hr,he.resolve=q,q.passByCopy=function(h){return h},$.prototype.passByCopy=function(){return this},q.join=function(h,y){return q(h).join(y)},$.prototype.join=function(h){return q([this,h]).spread(function(y,I){if(y===I)return y;throw new Error("Q can't join: not the same: "+y+" "+I)})},q.race=Ge;function Ge(h){return he(function(y,I){for(var U=0,ce=h.length;U<ce;U++)q(h[U]).then(y,I)})}$.prototype.race=function(){return this.then(q.race)},q.makePromise=$;function $(h,y,I){y===void 0&&(y=function(xe){return hr(new Error("Promise does not support operation: "+xe))}),I===void 0&&(I=function(){return{state:"unknown"}});var U=w($.prototype);if(U.promiseDispatch=function(xe,we,ft){var Xe;try{h[we]?Xe=h[we].apply(U,ft):Xe=y.call(U,we,ft)}catch(ot){Xe=hr(ot)}xe&&xe(Xe)},U.inspect=I,I){var ce=I();ce.state==="rejected"&&(U.exception=ce.reason),U.valueOf=function(){var xe=I();return xe.state==="pending"||xe.state==="rejected"?U:xe.value}}return U}$.prototype.toString=function(){return"[object Promise]"},$.prototype.then=function(h,y,I){var U=this,ce=Ue(),xe=!1;function we(ot){try{return typeof h=="function"?h(ot):ot}catch(st){return hr(st)}}function ft(ot){if(typeof y=="function"){M(ot,U);try{return y(ot)}catch(st){return hr(st)}}return hr(ot)}function Xe(ot){return typeof I=="function"?I(ot):ot}return q.nextTick(function(){U.promiseDispatch(function(ot){xe||(xe=!0,ce.resolve(we(ot)))},"when",[function(ot){xe||(xe=!0,ce.resolve(ft(ot)))}])}),U.promiseDispatch(void 0,"when",[void 0,function(ot){var st,At=!1;try{st=Xe(ot)}catch(nf){if(At=!0,q.onerror)q.onerror(nf);else throw nf}At||ce.notify(st)}]),ce.promise},q.tap=function(h,y){return q(h).tap(y)},$.prototype.tap=function(h){return h=q(h),this.then(function(y){return h.fcall(y).thenResolve(y)})},q.when=qt;function qt(h,y,I,U){return q(h).then(y,I,U)}$.prototype.thenResolve=function(h){return this.then(function(){return h})},q.thenResolve=function(h,y){return q(h).thenResolve(y)},$.prototype.thenReject=function(h){return this.then(function(){throw h})},q.thenReject=function(h,y){return q(h).thenReject(y)},q.nearer=nt;function nt(h){if(Tr(h)){var y=h.inspect();if(y.state==="fulfilled")return y.value}return h}q.isPromise=Tr;function Tr(h){return h instanceof $}q.isPromiseAlike=vi;function vi(h){return O(h)&&typeof h.then=="function"}q.isPending=eo;function eo(h){return Tr(h)&&h.inspect().state==="pending"}$.prototype.isPending=function(){return this.inspect().state==="pending"},q.isFulfilled=to;function to(h){return!Tr(h)||h.inspect().state==="fulfilled"}$.prototype.isFulfilled=function(){return this.inspect().state==="fulfilled"},q.isRejected=Bn;function Bn(h){return Tr(h)&&h.inspect().state==="rejected"}$.prototype.isRejected=function(){return this.inspect().state==="rejected"};var Hr=[],Wt=[],Ti=[],In=!0;function Un(){Hr.length=0,Wt.length=0,In||(In=!0)}function Zo(h,y){!In||(typeof process=="object"&&typeof process.emit=="function"&&q.nextTick.runAfter(function(){l(Wt,h)!==-1&&(process.emit("unhandledRejection",y,h),Ti.push(h))}),Wt.push(h),y&&typeof y.stack!="undefined"?Hr.push(y.stack):Hr.push("(no stack) "+y))}function Jo(h){if(!!In){var y=l(Wt,h);y!==-1&&(typeof process=="object"&&typeof process.emit=="function"&&q.nextTick.runAfter(function(){var I=l(Ti,h);I!==-1&&(process.emit("rejectionHandled",Hr[y],h),Ti.splice(I,1))}),Wt.splice(y,1),Hr.splice(y,1))}}q.resetUnhandledRejections=Un,q.getUnhandledReasons=function(){return Hr.slice()},q.stopUnhandledRejectionTracking=function(){Un(),In=!1},Un(),q.reject=hr;function hr(h){var y=$({when:function(I){return I&&Jo(this),I?I(h):this}},function(){return this},function(){return{state:"rejected",reason:h}});return Zo(y,h),y}q.fulfill=ro;function ro(h){return $({when:function(){return h},get:function(y){return h[y]},set:function(y,I){h[y]=I},delete:function(y){delete h[y]},post:function(y,I){return y==null?h.apply(void 0,I):h[y].apply(h,I)},apply:function(y,I){return h.apply(y,I)},keys:function(){return T(h)}},void 0,function(){return{state:"fulfilled",value:h}})}function Aa(h){var y=Ue();return q.nextTick(function(){try{h.then(y.resolve,y.reject,y.notify)}catch(I){y.reject(I)}}),y.promise}q.master=Am;function Am(h){return $({isDef:function(){}},function(I,U){return Oa(h,I,U)},function(){return q(h).inspect()})}q.spread=Ku;function Ku(h,y,I){return q(h).spread(y,I)}$.prototype.spread=function(h,y){return this.all().then(function(I){return h.apply(void 0,I)},y)},q.async=Qo;function Qo(h){return function(){function y(xe,we){var ft;if(typeof StopIteration=="undefined"){try{ft=I[xe](we)}catch(Xe){return hr(Xe)}return ft.done?q(ft.value):qt(ft.value,U,ce)}else{try{ft=I[xe](we)}catch(Xe){return C(Xe)?q(Xe.value):hr(Xe)}return qt(ft,U,ce)}}var I=h.apply(this,arguments),U=y.bind(y,"next"),ce=y.bind(y,"throw");return U()}}q.spawn=Om;function Om(h){q.done(q.async(h)())}q.return=Fm;function Fm(h){throw new te(h)}q.promised=Yu;function Yu(h){return function(){return Ku([this,rf(arguments)],function(y,I){return h.apply(y,I)})}}q.dispatch=Oa;function Oa(h,y,I){return q(h).dispatch(y,I)}$.prototype.dispatch=function(h,y){var I=this,U=Ue();return q.nextTick(function(){I.promiseDispatch(U.resolve,h,y)}),U.promise},q.get=function(h,y){return q(h).dispatch("get",[y])},$.prototype.get=function(h){return this.dispatch("get",[h])},q.set=function(h,y,I){return q(h).dispatch("set",[y,I])},$.prototype.set=function(h,y){return this.dispatch("set",[h,y])},q.del=q.delete=function(h,y){return q(h).dispatch("delete",[y])},$.prototype.del=$.prototype.delete=function(h){return this.dispatch("delete",[h])},q.mapply=q.post=function(h,y,I){return q(h).dispatch("post",[y,I])},$.prototype.mapply=$.prototype.post=function(h,y){return this.dispatch("post",[h,y])},q.send=q.mcall=q.invoke=function(h,y){return q(h).dispatch("post",[y,s(arguments,2)])},$.prototype.send=$.prototype.mcall=$.prototype.invoke=function(h){return this.dispatch("post",[h,s(arguments,1)])},q.fapply=function(h,y){return q(h).dispatch("apply",[void 0,y])},$.prototype.fapply=function(h){return this.dispatch("apply",[void 0,h])},q.try=q.fcall=function(h){return q(h).dispatch("apply",[void 0,s(arguments,1)])},$.prototype.fcall=function(){return this.dispatch("apply",[void 0,s(arguments)])},q.fbind=function(h){var y=q(h),I=s(arguments,1);return function(){return y.dispatch("apply",[this,I.concat(s(arguments))])}},$.prototype.fbind=function(){var h=this,y=s(arguments);return function(){return h.dispatch("apply",[this,y.concat(s(arguments))])}},q.keys=function(h){return q(h).dispatch("keys",[])},$.prototype.keys=function(){return this.dispatch("keys",[])},q.all=rf;function rf(h){return qt(h,function(y){var I=0,U=Ue();return u(y,function(ce,xe,we){var ft;Tr(xe)&&(ft=xe.inspect()).state==="fulfilled"?y[we]=ft.value:(++I,qt(xe,function(Xe){y[we]=Xe,--I==0&&U.resolve(y)},U.reject,function(Xe){U.notify({index:we,value:Xe})}))},void 0),I===0&&U.resolve(y),U.promise})}$.prototype.all=function(){return rf(this)},q.any=Xo;function Xo(h){if(h.length===0)return q.resolve();var y=q.defer(),I=0;return u(h,function(U,ce,xe){var we=h[xe];I++,qt(we,ft,Xe,ot);function ft(st){y.resolve(st)}function Xe(st){if(I--,I===0){var At=st||new Error(""+st);At.message="Q can't get fulfillment value from any promise, all promises were rejected. Last error message: "+At.message,y.reject(At)}}function ot(st){y.notify({index:xe,value:st})}},void 0),y.promise}$.prototype.any=function(){return Xo(this)},q.allResolved=Ye(ur,"allResolved","allSettled");function ur(h){return qt(h,function(y){return y=c(y,q),qt(rf(c(y,function(I){return qt(I,n,n)})),function(){return y})})}$.prototype.allResolved=function(){return ur(this)},q.allSettled=Fa;function Fa(h){return q(h).allSettled()}$.prototype.allSettled=function(){return this.then(function(h){return rf(c(h,function(y){y=q(y);function I(){return y.inspect()}return y.then(I,I)}))})},q.fail=q.catch=function(h,y){return q(h).then(void 0,y)},$.prototype.fail=$.prototype.catch=function(h){return this.then(void 0,h)},q.progress=Mj;function Mj(h,y){return q(h).then(void 0,void 0,y)}$.prototype.progress=function(h){return this.then(void 0,void 0,h)},q.fin=q.finally=function(h,y){return q(h).finally(y)},$.prototype.fin=$.prototype.finally=function(h){if(!h||typeof h.apply!="function")throw new Error("Q can't apply finally callback");return h=q(h),this.then(function(y){return h.fcall().then(function(){return y})},function(y){return h.fcall().then(function(){throw y})})},q.done=function(h,y,I,U){return q(h).done(y,I,U)},$.prototype.done=function(h,y,I){var U=function(xe){q.nextTick(function(){if(M(xe,ce),q.onerror)q.onerror(xe);else throw xe})},ce=h||y||I?this.then(h,y,I):this;typeof process=="object"&&process&&process.domain&&(U=process.domain.bind(U)),ce.then(void 0,U)},q.timeout=function(h,y,I){return q(h).timeout(y,I)},$.prototype.timeout=function(h,y){var I=Ue(),U=setTimeout(function(){(!y||typeof y=="string")&&(y=new Error(y||"Timed out after "+h+" ms"),y.code="ETIMEDOUT"),I.reject(y)},h);return this.then(function(ce){clearTimeout(U),I.resolve(ce)},function(ce){clearTimeout(U),I.reject(ce)},I.notify),I.promise},q.delay=function(h,y){return y===void 0&&(y=h,h=void 0),q(h).delay(y)},$.prototype.delay=function(h){return this.then(function(y){var I=Ue();return setTimeout(function(){I.resolve(y)},h),I.promise})},q.nfapply=function(h,y){return q(h).nfapply(y)},$.prototype.nfapply=function(h){var y=Ue(),I=s(h);return I.push(y.makeNodeResolver()),this.fapply(I).fail(y.reject),y.promise},q.nfcall=function(h){var y=s(arguments,1);return q(h).nfapply(y)},$.prototype.nfcall=function(){var h=s(arguments),y=Ue();return h.push(y.makeNodeResolver()),this.fapply(h).fail(y.reject),y.promise},q.nfbind=q.denodeify=function(h){if(h===void 0)throw new Error("Q can't wrap an undefined function");var y=s(arguments,1);return function(){var I=y.concat(s(arguments)),U=Ue();return I.push(U.makeNodeResolver()),q(h).fapply(I).fail(U.reject),U.promise}},$.prototype.nfbind=$.prototype.denodeify=function(){var h=s(arguments);return h.unshift(this),q.denodeify.apply(void 0,h)},q.nbind=function(h,y){var I=s(arguments,2);return function(){var U=I.concat(s(arguments)),ce=Ue();U.push(ce.makeNodeResolver());function xe(){return h.apply(y,arguments)}return q(xe).fapply(U).fail(ce.reject),ce.promise}},$.prototype.nbind=function(){var h=s(arguments,0);return h.unshift(this),q.nbind.apply(void 0,h)},q.nmapply=q.npost=function(h,y,I){return q(h).npost(y,I)},$.prototype.nmapply=$.prototype.npost=function(h,y){var I=s(y||[]),U=Ue();return I.push(U.makeNodeResolver()),this.dispatch("post",[h,I]).fail(U.reject),U.promise},q.nsend=q.nmcall=q.ninvoke=function(h,y){var I=s(arguments,2),U=Ue();return I.push(U.makeNodeResolver()),q(h).dispatch("post",[y,I]).fail(U.reject),U.promise},$.prototype.nsend=$.prototype.nmcall=$.prototype.ninvoke=function(h){var y=s(arguments,1),I=Ue();return y.push(I.makeNodeResolver()),this.dispatch("post",[h,y]).fail(I.reject),I.promise},q.nodeify=De;function De(h,y){return q(h).nodeify(y)}$.prototype.nodeify=function(h){if(h)this.then(function(y){q.nextTick(function(){h(null,y)})},function(y){q.nextTick(function(){h(y)})});else return this},q.noConflict=function(){throw new Error("Q.noConflict only works when Q is used as a global")};var $o=ue();return q})});var OT=k(AT=>{var RF=Ln("util"),ST=bf();AT.Multiplexer=ET;function PF(t,e,r){function n(i,f,o){e.call(this,i,f,o)}return RF.inherits(n,e),n.prototype.writeMessageBegin=function(i,f,o){f==ST.MessageType.CALL||f==ST.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 ET(){this.seqid=0}ET.prototype.createClient=function(t,e,r){e.Client&&(e=e.Client);var n=function(u,l){r.write(u,l)},i=new r.transport(void 0,n),f=new PF(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 DT=k((L8,FT)=>{var Ts=yp(),HF=qo(),MF=rb();FT.exports=Dt;function Dt(t,e){this.inBuf=t||new Buffer(0),this.outBuffers=[],this.outCount=0,this.readPos=0,this.onFlush=e}Dt.prototype=new MF;Dt.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=Ts.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 Dt(f),e),n=r,r=null}}};Dt.prototype.commitPosition=function(){},Dt.prototype.rollbackPosition=function(){},Dt.prototype.isOpen=function(){return!0};Dt.prototype.open=function(){};Dt.prototype.close=function(){};Dt.prototype.setCurrSeqId=function(t){this._seqid=t};Dt.prototype.ensureAvailable=function(t){if(this.readPos+t>this.inBuf.length)throw new HF};Dt.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};Dt.prototype.readByte=function(){return this.ensureAvailable(1),Ts.readByte(this.inBuf[this.readPos++])};Dt.prototype.readI16=function(){this.ensureAvailable(2);var t=Ts.readI16(this.inBuf,this.readPos);return this.readPos+=2,t};Dt.prototype.readI32=function(){this.ensureAvailable(4);var t=Ts.readI32(this.inBuf,this.readPos);return this.readPos+=4,t};Dt.prototype.readDouble=function(){this.ensureAvailable(8);var t=Ts.readDouble(this.inBuf,this.readPos);return this.readPos+=8,t};Dt.prototype.readString=function(t){this.ensureAvailable(t);var e=this.inBuf.toString("utf8",this.readPos,this.readPos+t);return this.readPos+=t,e};Dt.prototype.borrow=function(){return{buf:this.inBuf,readIndex:this.readPos,writeIndex:this.inBuf.length}};Dt.prototype.consume=function(t){this.readPos+=t};Dt.prototype.write=function(t,e){typeof t=="string"&&(t=new Buffer(t,e||"utf8")),this.outBuffers.push(t),this.outCount+=t.length};Dt.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);Ts.writeI32(n,e.length),e.copy(n,4,0,e.length),this.onFlush&&this.onFlush(n,t)}this.outBuffers=[],this.outCount=0}});var RT=k((V8,NT)=>{var zF=qp();NT.exports=qr;function qr(t){this.__reset(t)}qr.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};qr.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})};qr.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=[])};qr.prototype.__onClose=function(t){this.__reset(this.url)};qr.prototype.__onMessage=function(t){this.callbacks.length&&this.callbacks.shift()(t.data)};qr.prototype.__onError=function(t){zF.error("websocket: "+t.toString()),this.socket.close()};qr.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};qr.prototype.isOpen=function(){return this.socket&&this.socket.readyState==this.socket.OPEN};qr.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))};qr.prototype.close=function(){this.socket.close()};qr.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};qr.prototype.readAll=function(){return this.recv_buf};qr.prototype.write=function(t){this.send_buf=t};qr.prototype.getSendBuffer=function(){return this.send_buf}});var Ce=k($t=>{$t.Thrift=bf();var ab=TT();$t.WSConnection=ab.WSConnection;$t.createWSConnection=ab.createWSConnection;$t.createWSClient=ab.createWSClient;var lb=BT();$t.XHRConnection=lb.XHRConnection;$t.createXHRConnection=lb.createXHRConnection;$t.createXHRClient=lb.createXHRClient;$t.Int64=en();$t.Q=xT();var UF=OT();$t.Multiplexer=UF.Multiplexer;$t.TBufferedTransport=Tl();$t.TFramedTransport=DT();$t.TWebSocketTransport=RT();$t.Protocol=kl();$t.TJSONProtocol=kl();$t.TBinaryProtocol=tb();$t.TCompactProtocol=Xh()});var zi=k(nk=>{var x={};x.Offset;x.Table;x.SIZEOF_SHORT=2;x.SIZEOF_INT=4;x.FILE_IDENTIFIER_LENGTH=4;x.SIZE_PREFIX_LENGTH=4;x.Encoding={UTF8_BYTES:1,UTF16_STRING:2};x.int32=new Int32Array(2);x.float32=new Float32Array(x.int32.buffer);x.float64=new Float64Array(x.int32.buffer);x.isLittleEndian=new Uint16Array(new Uint8Array([1,0]).buffer)[0]===1;x.Long=function(t,e){this.low=t|0,this.high=e|0};x.Long.create=function(t,e){return t==0&&e==0?x.Long.ZERO:new x.Long(t,e)};x.Long.prototype.toFloat64=function(){return(this.low>>>0)+this.high*4294967296};x.Long.prototype.equals=function(t){return this.low==t.low&&this.high==t.high};x.Long.ZERO=new x.Long(0,0);x.Builder=function(t){if(t)var e=t;else var e=1024;this.bb=x.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};x.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};x.Builder.prototype.forceDefaults=function(t){this.force_defaults=t};x.Builder.prototype.dataBuffer=function(){return this.bb};x.Builder.prototype.asUint8Array=function(){return this.bb.bytes().subarray(this.bb.position(),this.bb.position()+this.offset())};x.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=x.Builder.growByteBuffer(this.bb),this.space+=this.bb.capacity()-n}this.pad(r)};x.Builder.prototype.pad=function(t){for(var e=0;e<t;e++)this.bb.writeInt8(--this.space,0)};x.Builder.prototype.writeInt8=function(t){this.bb.writeInt8(this.space-=1,t)};x.Builder.prototype.writeInt16=function(t){this.bb.writeInt16(this.space-=2,t)};x.Builder.prototype.writeInt32=function(t){this.bb.writeInt32(this.space-=4,t)};x.Builder.prototype.writeInt64=function(t){this.bb.writeInt64(this.space-=8,t)};x.Builder.prototype.writeFloat32=function(t){this.bb.writeFloat32(this.space-=4,t)};x.Builder.prototype.writeFloat64=function(t){this.bb.writeFloat64(this.space-=8,t)};x.Builder.prototype.addInt8=function(t){this.prep(1,0),this.writeInt8(t)};x.Builder.prototype.addInt16=function(t){this.prep(2,0),this.writeInt16(t)};x.Builder.prototype.addInt32=function(t){this.prep(4,0),this.writeInt32(t)};x.Builder.prototype.addInt64=function(t){this.prep(8,0),this.writeInt64(t)};x.Builder.prototype.addFloat32=function(t){this.prep(4,0),this.writeFloat32(t)};x.Builder.prototype.addFloat64=function(t){this.prep(8,0),this.writeFloat64(t)};x.Builder.prototype.addFieldInt8=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt8(e),this.slot(t))};x.Builder.prototype.addFieldInt16=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt16(e),this.slot(t))};x.Builder.prototype.addFieldInt32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addInt32(e),this.slot(t))};x.Builder.prototype.addFieldInt64=function(t,e,r){(this.force_defaults||!e.equals(r))&&(this.addInt64(e),this.slot(t))};x.Builder.prototype.addFieldFloat32=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat32(e),this.slot(t))};x.Builder.prototype.addFieldFloat64=function(t,e,r){(this.force_defaults||e!=r)&&(this.addFloat64(e),this.slot(t))};x.Builder.prototype.addFieldOffset=function(t,e,r){(this.force_defaults||e!=r)&&(this.addOffset(e),this.slot(t))};x.Builder.prototype.addFieldStruct=function(t,e,r){e!=r&&(this.nested(e),this.slot(t))};x.Builder.prototype.nested=function(t){if(t!=this.offset())throw new Error("FlatBuffers: struct must be serialized inline.")};x.Builder.prototype.notNested=function(){if(this.isNested)throw new Error("FlatBuffers: object serialization must not be nested.")};x.Builder.prototype.slot=function(t){this.vtable[t]=this.offset()};x.Builder.prototype.offset=function(){return this.bb.capacity()-this.space};x.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=x.ByteBuffer.allocate(r);return n.setPosition(r-e),n.bytes().set(t.bytes(),r-e),n};x.Builder.prototype.addOffset=function(t){this.prep(x.SIZEOF_INT,0),this.writeInt32(this.offset()-t+x.SIZEOF_INT)};x.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()};x.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)*x.SIZEOF_SHORT;this.addInt16(i);var f=0,o=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 u=x.SIZEOF_SHORT;u<i;u+=x.SIZEOF_SHORT)if(this.bb.readInt16(o+u)!=this.bb.readInt16(s+u))continue e;f=this.vtables[e];break}}return f?(this.space=this.bb.capacity()-t,this.bb.writeInt32(this.space,f-t)):(this.vtables.push(this.offset()),this.bb.writeInt32(this.bb.capacity()-t,this.offset()-t)),this.isNested=!1,t};x.Builder.prototype.finish=function(t,e,r){var n=r?x.SIZE_PREFIX_LENGTH:0;if(e){var i=e;if(this.prep(this.minalign,x.SIZEOF_INT+x.FILE_IDENTIFIER_LENGTH+n),i.length!=x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+x.FILE_IDENTIFIER_LENGTH);for(var f=x.FILE_IDENTIFIER_LENGTH-1;f>=0;f--)this.writeInt8(i.charCodeAt(f))}this.prep(this.minalign,x.SIZEOF_INT+n),this.addOffset(t),n&&this.addInt32(this.bb.capacity()-this.space),this.bb.setPosition(this.space)};x.Builder.prototype.finishSizePrefixed=function(t,e){this.finish(t,e,!0)};x.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")};x.Builder.prototype.startVector=function(t,e,r){this.notNested(),this.vector_num_elems=e,this.prep(x.SIZEOF_INT,t*e),this.prep(r,t*e)};x.Builder.prototype.endVector=function(){return this.writeInt32(this.vector_num_elems),this.offset()};x.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 f=t.charCodeAt(r++);n=(i<<10)+f+(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,o=this.space,s=this.bb.bytes();r<e.length;r++)s[o++]=e[r];return this.endVector()};x.Builder.prototype.createLong=function(t,e){return x.Long.create(t,e)};x.ByteBuffer=function(t){this.bytes_=t,this.position_=0};x.ByteBuffer.allocate=function(t){return new x.ByteBuffer(new Uint8Array(t))};x.ByteBuffer.prototype.clear=function(){this.position_=0};x.ByteBuffer.prototype.bytes=function(){return this.bytes_};x.ByteBuffer.prototype.position=function(){return this.position_};x.ByteBuffer.prototype.setPosition=function(t){this.position_=t};x.ByteBuffer.prototype.capacity=function(){return this.bytes_.length};x.ByteBuffer.prototype.readInt8=function(t){return this.readUint8(t)<<24>>24};x.ByteBuffer.prototype.readUint8=function(t){return this.bytes_[t]};x.ByteBuffer.prototype.readInt16=function(t){return this.readUint16(t)<<16>>16};x.ByteBuffer.prototype.readUint16=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8};x.ByteBuffer.prototype.readInt32=function(t){return this.bytes_[t]|this.bytes_[t+1]<<8|this.bytes_[t+2]<<16|this.bytes_[t+3]<<24};x.ByteBuffer.prototype.readUint32=function(t){return this.readInt32(t)>>>0};x.ByteBuffer.prototype.readInt64=function(t){return new x.Long(this.readInt32(t),this.readInt32(t+4))};x.ByteBuffer.prototype.readUint64=function(t){return new x.Long(this.readUint32(t),this.readUint32(t+4))};x.ByteBuffer.prototype.readFloat32=function(t){return x.int32[0]=this.readInt32(t),x.float32[0]};x.ByteBuffer.prototype.readFloat64=function(t){return x.int32[x.isLittleEndian?0:1]=this.readInt32(t),x.int32[x.isLittleEndian?1:0]=this.readInt32(t+4),x.float64[0]};x.ByteBuffer.prototype.writeInt8=function(t,e){this.bytes_[t]=e};x.ByteBuffer.prototype.writeUint8=function(t,e){this.bytes_[t]=e};x.ByteBuffer.prototype.writeInt16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};x.ByteBuffer.prototype.writeUint16=function(t,e){this.bytes_[t]=e,this.bytes_[t+1]=e>>8};x.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};x.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};x.ByteBuffer.prototype.writeInt64=function(t,e){this.writeInt32(t,e.low),this.writeInt32(t+4,e.high)};x.ByteBuffer.prototype.writeUint64=function(t,e){this.writeUint32(t,e.low),this.writeUint32(t+4,e.high)};x.ByteBuffer.prototype.writeFloat32=function(t,e){x.float32[0]=e,this.writeInt32(t,x.int32[0])};x.ByteBuffer.prototype.writeFloat64=function(t,e){x.float64[0]=e,this.writeInt32(t,x.int32[x.isLittleEndian?0:1]),this.writeInt32(t+4,x.int32[x.isLittleEndian?1:0])};x.ByteBuffer.prototype.getBufferIdentifier=function(){if(this.bytes_.length<this.position_+x.SIZEOF_INT+x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: ByteBuffer is too short to contain an identifier.");for(var t="",e=0;e<x.FILE_IDENTIFIER_LENGTH;e++)t+=String.fromCharCode(this.readInt8(this.position_+x.SIZEOF_INT+e));return t};x.ByteBuffer.prototype.__offset=function(t,e){var r=t-this.readInt32(t);return e<this.readInt16(r)?this.readInt16(r+e):0};x.ByteBuffer.prototype.__union=function(t,e){return t.bb_pos=e+this.readInt32(e),t.bb=this,t};x.ByteBuffer.prototype.__string=function(t,e){t+=this.readInt32(t);var r=this.readInt32(t),n="",i=0;if(t+=x.SIZEOF_INT,e===x.Encoding.UTF8_BYTES)return this.bytes_.subarray(t,t+r);for(;i<r;){var f,o=this.readUint8(t+i++);if(o<192)f=o;else{var s=this.readUint8(t+i++);if(o<224)f=(o&31)<<6|s&63;else{var u=this.readUint8(t+i++);if(o<240)f=(o&15)<<12|(s&63)<<6|u&63;else{var l=this.readUint8(t+i++);f=(o&7)<<18|(s&63)<<12|(u&63)<<6|l&63}}}f<65536?n+=String.fromCharCode(f):(f-=65536,n+=String.fromCharCode((f>>10)+55296,(f&(1<<10)-1)+56320))}return n};x.ByteBuffer.prototype.__indirect=function(t){return t+this.readInt32(t)};x.ByteBuffer.prototype.__vector=function(t){return t+this.readInt32(t)+x.SIZEOF_INT};x.ByteBuffer.prototype.__vector_len=function(t){return this.readInt32(t+this.readInt32(t))};x.ByteBuffer.prototype.__has_identifier=function(t){if(t.length!=x.FILE_IDENTIFIER_LENGTH)throw new Error("FlatBuffers: file identifier must be length "+x.FILE_IDENTIFIER_LENGTH);for(var e=0;e<x.FILE_IDENTIFIER_LENGTH;e++)if(t.charCodeAt(e)!=this.readInt8(this.position_+x.SIZEOF_INT+e))return!1;return!0};x.ByteBuffer.prototype.createLong=function(t,e){return x.Long.create(t,e)};nk.flatbuffers=x});var ik=k(jb=>{"use strict";function Ui(t,e,r){return e<=t&&t<=r}function Ip(t){if(t===void 0)return{};if(t===Object(t))return t;throw TypeError("Could not convert argument to dictionary")}function KF(t){for(var e=String(t),r=e.length,n=0,i=[];n<r;){var f=e.charCodeAt(n);if(f<55296||f>57343)i.push(f);else if(56320<=f&&f<=57343)i.push(65533);else if(55296<=f&&f<=56319)if(n===r-1)i.push(65533);else{var o=t.charCodeAt(n+1);if(56320<=o&&o<=57343){var s=f&1023,u=o&1023;i.push(65536+(s<<10)+u),n+=1}else i.push(65533)}n+=1}return i}function YF(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 xp=-1;function gb(t){this.tokens=[].slice.call(t)}gb.prototype={endOfStream:function(){return!this.tokens.length},read:function(){return this.tokens.length?this.tokens.shift():xp},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 xs=-1;function yb(t,e){if(t)throw TypeError("Decoder error");return e||65533}var Sp="utf-8";function Ep(t,e){if(!(this instanceof Ep))return new Ep(t,e);if(t=t!==void 0?String(t).toLowerCase():Sp,t!==Sp)throw new Error("Encoding not supported. Only utf-8 is supported");e=Ip(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})}Ep.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=Ip(r),this._streaming||(this._decoder=new GF({fatal:this._fatal}),this._BOMseen=!1),this._streaming=Boolean(r.stream);for(var i=new gb(n),f=[],o;!i.endOfStream()&&(o=this._decoder.handler(i,i.read()),o!==xs);)o!==null&&(Array.isArray(o)?f.push.apply(f,o):f.push(o));if(!this._streaming){do{if(o=this._decoder.handler(i,i.read()),o===xs)break;o!==null&&(Array.isArray(o)?f.push.apply(f,o):f.push(o))}while(!i.endOfStream());this._decoder=null}return f.length&&["utf-8"].indexOf(this.encoding)!==-1&&!this._ignoreBOM&&!this._BOMseen&&(f[0]===65279?(this._BOMseen=!0,f.shift()):this._BOMseen=!0),YF(f)}};function Ap(t,e){if(!(this instanceof Ap))return new Ap(t,e);if(t=t!==void 0?String(t).toLowerCase():Sp,t!==Sp)throw new Error("Encoding not supported. Only utf-8 is supported");e=Ip(e),this._streaming=!1,this._encoder=null,this._options={fatal:Boolean(e.fatal)},Object.defineProperty(this,"encoding",{value:"utf-8"})}Ap.prototype={encode:function(e,r){e=e?String(e):"",r=Ip(r),this._streaming||(this._encoder=new ZF(this._options)),this._streaming=Boolean(r.stream);for(var n=[],i=new gb(KF(e)),f;!i.endOfStream()&&(f=this._encoder.handler(i,i.read()),f!==xs);)Array.isArray(f)?n.push.apply(n,f):n.push(f);if(!this._streaming){for(;f=this._encoder.handler(i,i.read()),f!==xs;)Array.isArray(f)?n.push.apply(n,f):n.push(f);this._encoder=null}return new Uint8Array(n)}};function GF(t){var e=t.fatal,r=0,n=0,i=0,f=128,o=191;this.handler=function(s,u){if(u===xp&&i!==0)return i=0,yb(e);if(u===xp)return xs;if(i===0){if(Ui(u,0,127))return u;if(Ui(u,194,223))i=1,r=u-192;else if(Ui(u,224,239))u===224&&(f=160),u===237&&(o=159),i=2,r=u-224;else if(Ui(u,240,244))u===240&&(f=144),u===244&&(o=143),i=3,r=u-240;else return yb(e);return r=r<<6*i,null}if(!Ui(u,f,o))return r=i=n=0,f=128,o=191,s.prepend(u),yb(e);if(f=128,o=191,n+=1,r+=u-128<<6*(i-n),n!==i)return null;var l=r;return r=i=n=0,l}}function ZF(t){var e=t.fatal;this.handler=function(r,n){if(n===xp)return xs;if(Ui(n,0,127))return n;var i,f;Ui(n,128,2047)?(i=1,f=192):Ui(n,2048,65535)?(i=2,f=224):Ui(n,65536,1114111)&&(i=3,f=240);for(var o=[(n>>6*i)+f];i>0;){var s=n>>6*(i-1);o.push(128|s&63),i-=1}return o}}jb.TextEncoder=Ap;jb.TextDecoder=Ep});var ko=k(Ss=>{"use strict";Object.defineProperty(Ss,"__esModule",{value:!0});Ss.encodeUtf8=Ss.decodeUtf8=void 0;var fk=ik(),JF=new(typeof TextDecoder!="undefined"?TextDecoder:fk.TextDecoder)("utf-8");Ss.decodeUtf8=t=>JF.decode(t);var QF=new(typeof TextEncoder!="undefined"?TextEncoder:fk.TextEncoder);Ss.encodeUtf8=t=>QF.encode(t)});var Es=k(Nr=>{"use strict";Object.defineProperty(Nr,"__esModule",{value:!0});Nr.AsyncQueue=Nr.ReadableInterop=Nr.ArrowJSON=Nr.ITERATOR_DONE=void 0;var ok=ru();Nr.ITERATOR_DONE=Object.freeze({done:!0,value:void 0});var sk=class{constructor(e){this._json=e}get schema(){return this._json.schema}get batches(){return this._json.batches||[]}get dictionaries(){return this._json.dictionaries||[]}};Nr.ArrowJSON=sk;var qb=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())}};Nr.ReadableInterop=qb;var ak=class extends qb{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(Nr.ITERATOR_DONE);this._closedPromiseResolve(),this._closedPromiseResolve=void 0}}[Symbol.asyncIterator](){return this}toDOMStream(e){return ok.default.toDOMStream(this._closedPromiseResolve||this._error?this:this._values,e)}toNodeStream(e){return ok.default.toNodeStream(this._closedPromiseResolve||this._error?this:this._values,e)}async throw(e){return await this.abort(e),Nr.ITERATOR_DONE}async return(e){return await this.close(),Nr.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(Nr.ITERATOR_DONE)}_ensureOpen(){if(this._closedPromiseResolve)return!0;throw new Error(`${this} is closed`)}};Nr.AsyncQueue=ak});var mr=k(ne=>{"use strict";Object.defineProperty(ne,"__esModule",{value:!0});ne.isReadableNodeStream=ne.isWritableNodeStream=ne.isReadableDOMStream=ne.isWritableDOMStream=ne.isFetchResponse=ne.isFSReadStream=ne.isFileHandle=ne.isUnderlyingSink=ne.isIteratorResult=ne.isArrayLike=ne.isArrowJSON=ne.isAsyncIterable=ne.isIterable=ne.isObservable=ne.isPromise=ne.isObject=ne.BigUint64ArrayAvailable=ne.BigUint64Array=ne.BigInt64ArrayAvailable=ne.BigInt64Array=ne.BigIntAvailable=ne.BigInt=void 0;var Op=Es(),[XF,$F]=(()=>{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]})();ne.BigInt=XF;ne.BigIntAvailable=$F;var[eD,tD]=(()=>{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]})();ne.BigInt64Array=eD;ne.BigInt64ArrayAvailable=tD;var[rD,nD]=(()=>{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]})();ne.BigUint64Array=rD;ne.BigUint64ArrayAvailable=nD;var _b=t=>typeof t=="number",lk=t=>typeof t=="boolean",or=t=>typeof t=="function";ne.isObject=t=>t!=null&&Object(t)===t;ne.isPromise=t=>ne.isObject(t)&&or(t.then);ne.isObservable=t=>ne.isObject(t)&&or(t.subscribe);ne.isIterable=t=>ne.isObject(t)&&or(t[Symbol.iterator]);ne.isAsyncIterable=t=>ne.isObject(t)&&or(t[Symbol.asyncIterator]);ne.isArrowJSON=t=>ne.isObject(t)&&ne.isObject(t.schema);ne.isArrayLike=t=>ne.isObject(t)&&_b(t.length);ne.isIteratorResult=t=>ne.isObject(t)&&"done"in t&&"value"in t;ne.isUnderlyingSink=t=>ne.isObject(t)&&or(t.abort)&&or(t.close)&&or(t.start)&&or(t.write);ne.isFileHandle=t=>ne.isObject(t)&&or(t.stat)&&_b(t.fd);ne.isFSReadStream=t=>ne.isReadableNodeStream(t)&&_b(t.bytesRead);ne.isFetchResponse=t=>ne.isObject(t)&&ne.isReadableDOMStream(t.body);ne.isWritableDOMStream=t=>ne.isObject(t)&&or(t.abort)&&or(t.getWriter)&&!(t instanceof Op.ReadableInterop);ne.isReadableDOMStream=t=>ne.isObject(t)&&or(t.cancel)&&or(t.getReader)&&!(t instanceof Op.ReadableInterop);ne.isWritableNodeStream=t=>ne.isObject(t)&&or(t.end)&&or(t.write)&&lk(t.writable)&&!(t instanceof Op.ReadableInterop);ne.isReadableNodeStream=t=>ne.isObject(t)&&or(t.read)&&or(t.pipe)&&lk(t.readable)&&!(t instanceof Op.ReadableInterop)});var Gt=k(J=>{"use strict";Object.defineProperty(J,"__esModule",{value:!0});J.compareArrayLike=J.rebaseValueOffsets=J.toUint8ClampedArrayAsyncIterator=J.toFloat64ArrayAsyncIterator=J.toFloat32ArrayAsyncIterator=J.toUint32ArrayAsyncIterator=J.toUint16ArrayAsyncIterator=J.toUint8ArrayAsyncIterator=J.toInt32ArrayAsyncIterator=J.toInt16ArrayAsyncIterator=J.toInt8ArrayAsyncIterator=J.toArrayBufferViewAsyncIterator=J.toUint8ClampedArrayIterator=J.toFloat64ArrayIterator=J.toFloat32ArrayIterator=J.toUint32ArrayIterator=J.toUint16ArrayIterator=J.toUint8ArrayIterator=J.toInt32ArrayIterator=J.toInt16ArrayIterator=J.toInt8ArrayIterator=J.toArrayBufferViewIterator=J.toUint8ClampedArray=J.toFloat64Array=J.toFloat32Array=J.toBigUint64Array=J.toUint32Array=J.toUint16Array=J.toUint8Array=J.toBigInt64Array=J.toInt32Array=J.toInt16Array=J.toInt8Array=J.toArrayBufferView=J.joinUint8Arrays=J.memcpy=void 0;var iD=zi(),fD=ko(),oD=iD.flatbuffers.ByteBuffer,Bo=mr(),vb=typeof SharedArrayBuffer!="undefined"?SharedArrayBuffer:ArrayBuffer;function sD(t){let e=t[0]?[t[0]]:[],r,n,i,f;for(let o,s,u=0,l=0,c=t.length;++u<c;){if(o=e[l],s=t[u],!o||!s||o.buffer!==s.buffer||s.byteOffset<o.byteOffset){s&&(e[++l]=s);continue}if({byteOffset:r,byteLength:i}=o,{byteOffset:n,byteLength:f}=s,r+i<n||n+f<r){s&&(e[++l]=s);continue}e[l]=new Uint8Array(o.buffer,r,n-r+f)}return e}function Tb(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}J.memcpy=Tb;function aD(t,e){let r=sD(t),n=r.reduce((c,w)=>c+w.byteLength,0),i,f,o,s=0,u=-1,l=Math.min(e||1/0,n);for(let c=r.length;++u<c;){if(i=r[u],f=i.subarray(0,Math.min(i.length,l-s)),l<=s+f.length){f.length<i.length?r[u]=i.subarray(f.length):f.length===i.length&&u++,o?Tb(o,f,s):o=f;break}Tb(o||(o=new Uint8Array(l)),f,s),s+=f.length}return[o||new Uint8Array(0),r.slice(u),n-(o?o.byteLength:0)]}J.joinUint8Arrays=aD;function _r(t,e){let r=Bo.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=fD.encodeUtf8(r)),r instanceof ArrayBuffer?new t(r):r instanceof vb?new t(r):r instanceof oD?_r(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)}J.toArrayBufferView=_r;J.toInt8Array=t=>_r(Int8Array,t);J.toInt16Array=t=>_r(Int16Array,t);J.toInt32Array=t=>_r(Int32Array,t);J.toBigInt64Array=t=>_r(Bo.BigInt64Array,t);J.toUint8Array=t=>_r(Uint8Array,t);J.toUint16Array=t=>_r(Uint16Array,t);J.toUint32Array=t=>_r(Uint32Array,t);J.toBigUint64Array=t=>_r(Bo.BigUint64Array,t);J.toFloat32Array=t=>_r(Float32Array,t);J.toFloat64Array=t=>_r(Float64Array,t);J.toUint8ClampedArray=t=>_r(Uint8ClampedArray,t);var kb=t=>(t.next(),t);function*ri(t,e){let r=function*(i){yield i},n=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof vb?r(e):Bo.isIterable(e)?e:r(e);return yield*kb(function*(i){let f=null;do f=i.next(yield _r(t,f));while(!f.done)}(n[Symbol.iterator]())),new t}J.toArrayBufferViewIterator=ri;J.toInt8ArrayIterator=t=>ri(Int8Array,t);J.toInt16ArrayIterator=t=>ri(Int16Array,t);J.toInt32ArrayIterator=t=>ri(Int32Array,t);J.toUint8ArrayIterator=t=>ri(Uint8Array,t);J.toUint16ArrayIterator=t=>ri(Uint16Array,t);J.toUint32ArrayIterator=t=>ri(Uint32Array,t);J.toFloat32ArrayIterator=t=>ri(Float32Array,t);J.toFloat64ArrayIterator=t=>ri(Float64Array,t);J.toUint8ClampedArrayIterator=t=>ri(Uint8ClampedArray,t);async function*An(t,e){if(Bo.isPromise(e))return yield*An(t,await e);let r=async function*(f){yield await f},n=async function*(f){yield*kb(function*(o){let s=null;do s=o.next(yield s&&s.value);while(!s.done)}(f[Symbol.iterator]()))},i=typeof e=="string"||ArrayBuffer.isView(e)||e instanceof ArrayBuffer||e instanceof vb?r(e):Bo.isIterable(e)?n(e):Bo.isAsyncIterable(e)?e:r(e);return yield*kb(async function*(f){let o=null;do o=await f.next(yield _r(t,o));while(!o.done)}(i[Symbol.asyncIterator]())),new t}J.toArrayBufferViewAsyncIterator=An;J.toInt8ArrayAsyncIterator=t=>An(Int8Array,t);J.toInt16ArrayAsyncIterator=t=>An(Int16Array,t);J.toInt32ArrayAsyncIterator=t=>An(Int32Array,t);J.toUint8ArrayAsyncIterator=t=>An(Uint8Array,t);J.toUint16ArrayAsyncIterator=t=>An(Uint16Array,t);J.toUint32ArrayAsyncIterator=t=>An(Uint32Array,t);J.toFloat32ArrayAsyncIterator=t=>An(Float32Array,t);J.toFloat64ArrayAsyncIterator=t=>An(Float64Array,t);J.toUint8ClampedArrayAsyncIterator=t=>An(Uint8ClampedArray,t);function lD(t,e,r){if(t!==0){r=r.slice(0,e+1);for(let n=-1;++n<=e;)r[n]+=t}return r}J.rebaseValueOffsets=lD;function uD(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}J.compareArrayLike=uD});var ru=k(Ib=>{"use strict";Object.defineProperty(Ib,"__esModule",{value:!0});var vr=Gt();Ib.default={fromIterable(t){return Fp(cD(t))},fromAsyncIterable(t){return Fp(pD(t))},fromDOMStream(t){return Fp(dD(t))},fromNodeStream(t){return Fp(mD(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 Fp=t=>(t.next(),t);function*cD(t){let e,r=!1,n=[],i,f,o,s=0;function u(){return f==="peek"?vr.joinUint8Arrays(n,o)[0]:([i,n,s]=vr.joinUint8Arrays(n,o),i)}({cmd:f,size:o}=yield null);let l=vr.toUint8ArrayIterator(t)[Symbol.iterator]();try{do if({done:e,value:i}=isNaN(o-s)?l.next(void 0):l.next(o-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||o<=s)do({cmd:f,size:o}=yield u());while(o<s);while(!e)}catch(c){(r=!0)&&typeof l.throw=="function"&&l.throw(c)}finally{r===!1&&typeof l.return=="function"&&l.return(null)}return null}async function*pD(t){let e,r=!1,n=[],i,f,o,s=0;function u(){return f==="peek"?vr.joinUint8Arrays(n,o)[0]:([i,n,s]=vr.joinUint8Arrays(n,o),i)}({cmd:f,size:o}=yield null);let l=vr.toUint8ArrayAsyncIterator(t)[Symbol.asyncIterator]();try{do if({done:e,value:i}=isNaN(o-s)?await l.next(void 0):await l.next(o-s),!e&&i.byteLength>0&&(n.push(i),s+=i.byteLength),e||o<=s)do({cmd:f,size:o}=yield u());while(o<s);while(!e)}catch(c){(r=!0)&&typeof l.throw=="function"&&await l.throw(c)}finally{r===!1&&typeof l.return=="function"&&await l.return(new Uint8Array(0))}return null}async function*dD(t){let e=!1,r=!1,n=[],i,f,o,s=0;function u(){return f==="peek"?vr.joinUint8Arrays(n,o)[0]:([i,n,s]=vr.joinUint8Arrays(n,o),i)}({cmd:f,size:o}=yield null);let l=new uk(t);try{do if({done:e,value:i}=isNaN(o-s)?await l.read(void 0):await l.read(o-s),!e&&i.byteLength>0&&(n.push(vr.toUint8Array(i)),s+=i.byteLength),e||o<=s)do({cmd:f,size:o}=yield u());while(o<s);while(!e)}catch(c){(r=!0)&&await l.cancel(c)}finally{r===!1?await l.cancel():t.locked&&l.releaseLock()}return null}var uk=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 ck(this.getBYOBReader(),new ArrayBuffer(e),0,e)}};async function ck(t,e,r,n){if(r>=n)return{done:!1,value:new Uint8Array(e,0,n)};let{done:i,value:f}=await t.read(new Uint8Array(e,r,n-r));return(r+=f.byteLength)<n&&!i?await ck(t,f.buffer,r,n):{done:i,value:new Uint8Array(f.buffer,0,r)}}var Bb=(t,e)=>{let r=i=>n([e,i]),n;return[e,r,new Promise(i=>(n=i)&&t.once(e,r))]};async function*mD(t){let e=[],r="error",n=!1,i=null,f,o,s=0,u=[],l;function c(){return f==="peek"?vr.joinUint8Arrays(u,o)[0]:([l,u,s]=vr.joinUint8Arrays(u,o),l)}if({cmd:f,size:o}=yield null,t.isTTY)return yield new Uint8Array(0),null;try{e[0]=Bb(t,"end"),e[1]=Bb(t,"error");do{if(e[2]=Bb(t,"readable"),[r,i]=await Promise.race(e.map(p=>p[2])),r==="error")break;if((n=r==="end")||(isFinite(o-s)?(l=vr.toUint8Array(t.read(o-s)),l.byteLength<o-s&&(l=vr.toUint8Array(t.read(void 0)))):l=vr.toUint8Array(t.read(void 0)),l.byteLength>0&&(u.push(l),s+=l.byteLength)),n||o<=s)do({cmd:f,size:o}=yield c());while(o<s)}while(!n)}finally{await w(e,r==="error"?i:null)}return null;function w(p,g){return l=u=null,new Promise((T,L)=>{for(let[O,C]of p)t.off(O,C);try{let O=t.destroy;O&&O.call(t,g),g=void 0}catch(O){g=O||g}finally{g!=null?L(g):T()}})}}});var Nt=k(As=>{"use strict";Object.defineProperty(As,"__esModule",{value:!0});As.Vector=As.AbstractVector=void 0;var Dp=class{};As.AbstractVector=Dp;As.Vector=Dp;Dp.prototype.data=null});var Bf=k(G=>{"use strict";Object.defineProperty(G,"__esModule",{value:!0});G.Schema=G.Buffer=G.Field=G.DictionaryEncoding=G.KeyValue=G.Duration=G.Interval=G.Timestamp=G.Time=G.Date=G.Decimal=G.Bool=G.FixedSizeBinary=G.LargeBinary=G.LargeUtf8=G.Binary=G.Utf8=G.FloatingPoint=G.Int=G.Union=G.Map=G.FixedSizeList=G.LargeList=G.List=G.Struct_=G.Null=G.Endianness=G.DictionaryKind=G.Type=G.IntervalUnit=G.TimeUnit=G.DateUnit=G.Precision=G.UnionMode=G.Feature=G.MetadataVersion=void 0;var ht=zi(),wD;(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"})(wD=G.MetadataVersion||(G.MetadataVersion={}));var hD;(function(t){t[t.UNUSED=0]="UNUSED",t[t.DICTIONARY_REPLACEMENT=1]="DICTIONARY_REPLACEMENT",t[t.COMPRESSED_BODY=2]="COMPRESSED_BODY"})(hD=G.Feature||(G.Feature={}));var xb;(function(t){t[t.Sparse=0]="Sparse",t[t.Dense=1]="Dense"})(xb=G.UnionMode||(G.UnionMode={}));var Sb;(function(t){t[t.HALF=0]="HALF",t[t.SINGLE=1]="SINGLE",t[t.DOUBLE=2]="DOUBLE"})(Sb=G.Precision||(G.Precision={}));var Eb;(function(t){t[t.DAY=0]="DAY",t[t.MILLISECOND=1]="MILLISECOND"})(Eb=G.DateUnit||(G.DateUnit={}));var Io;(function(t){t[t.SECOND=0]="SECOND",t[t.MILLISECOND=1]="MILLISECOND",t[t.MICROSECOND=2]="MICROSECOND",t[t.NANOSECOND=3]="NANOSECOND"})(Io=G.TimeUnit||(G.TimeUnit={}));var Ab;(function(t){t[t.YEAR_MONTH=0]="YEAR_MONTH",t[t.DAY_TIME=1]="DAY_TIME"})(Ab=G.IntervalUnit||(G.IntervalUnit={}));var Ob;(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"})(Ob=G.Type||(G.Type={}));var Fb;(function(t){t[t.DenseArray=0]="DenseArray"})(Fb=G.DictionaryKind||(G.DictionaryKind={}));var Db;(function(t){t[t.Little=0]="Little",t[t.Big=1]="Big"})(Db=G.Endianness||(G.Endianness={}));var xo=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 xo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsNull(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new xo).__init(e.readInt32(e.position())+e.position(),e)}static startNull(e){e.startObject(0)}static endNull(e){return e.endObject()}static createNull(e){return xo.startNull(e),xo.endNull(e)}};G.Null=xo;var So=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 So).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsStruct_(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new So).__init(e.readInt32(e.position())+e.position(),e)}static startStruct_(e){e.startObject(0)}static endStruct_(e){return e.endObject()}static createStruct_(e){return So.startStruct_(e),So.endStruct_(e)}};G.Struct_=So;var Eo=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 Eo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsList(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Eo).__init(e.readInt32(e.position())+e.position(),e)}static startList(e){e.startObject(0)}static endList(e){return e.endObject()}static createList(e){return Eo.startList(e),Eo.endList(e)}};G.List=Eo;var Ao=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 Ao).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeList(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ao).__init(e.readInt32(e.position())+e.position(),e)}static startLargeList(e){e.startObject(0)}static endLargeList(e){return e.endObject()}static createLargeList(e){return Ao.startLargeList(e),Ao.endLargeList(e)}};G.LargeList=Ao;var yf=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 yf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeList(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new yf).__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 yf.startFixedSizeList(e),yf.addListSize(e,r),yf.endFixedSizeList(e)}};G.FixedSizeList=yf;var jf=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 jf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMap(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new jf).__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 jf.startMap(e),jf.addKeysSorted(e,r),jf.endMap(e)}};G.Map=jf;var Li=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 Li).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUnion(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Li).__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):xb.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,xb.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 Li.startUnion(e),Li.addMode(e,r),Li.addTypeIds(e,n),Li.endUnion(e)}};G.Union=Li;var ni=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 ni).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInt(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ni).__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 ni.startInt(e),ni.addBitWidth(e,r),ni.addIsSigned(e,n),ni.endInt(e)}};G.Int=ni;var qf=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 qf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFloatingPoint(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new qf).__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):Sb.HALF}static startFloatingPoint(e){e.startObject(1)}static addPrecision(e,r){e.addFieldInt16(0,r,Sb.HALF)}static endFloatingPoint(e){return e.endObject()}static createFloatingPoint(e,r){return qf.startFloatingPoint(e),qf.addPrecision(e,r),qf.endFloatingPoint(e)}};G.FloatingPoint=qf;var Oo=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 Oo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsUtf8(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Oo).__init(e.readInt32(e.position())+e.position(),e)}static startUtf8(e){e.startObject(0)}static endUtf8(e){return e.endObject()}static createUtf8(e){return Oo.startUtf8(e),Oo.endUtf8(e)}};G.Utf8=Oo;var Fo=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 Fo).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBinary(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Fo).__init(e.readInt32(e.position())+e.position(),e)}static startBinary(e){e.startObject(0)}static endBinary(e){return e.endObject()}static createBinary(e){return Fo.startBinary(e),Fo.endBinary(e)}};G.Binary=Fo;var Do=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 Do).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeUtf8(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Do).__init(e.readInt32(e.position())+e.position(),e)}static startLargeUtf8(e){e.startObject(0)}static endLargeUtf8(e){return e.endObject()}static createLargeUtf8(e){return Do.startLargeUtf8(e),Do.endLargeUtf8(e)}};G.LargeUtf8=Do;var No=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 No).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsLargeBinary(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new No).__init(e.readInt32(e.position())+e.position(),e)}static startLargeBinary(e){e.startObject(0)}static endLargeBinary(e){return e.endObject()}static createLargeBinary(e){return No.startLargeBinary(e),No.endLargeBinary(e)}};G.LargeBinary=No;var _f=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 _f).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFixedSizeBinary(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new _f).__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 _f.startFixedSizeBinary(e),_f.addByteWidth(e,r),_f.endFixedSizeBinary(e)}};G.FixedSizeBinary=_f;var Ro=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 Ro).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBool(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ro).__init(e.readInt32(e.position())+e.position(),e)}static startBool(e){e.startObject(0)}static endBool(e){return e.endObject()}static createBool(e){return Ro.startBool(e),Ro.endBool(e)}};G.Bool=Ro;var ii=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 ii).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDecimal(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ii).__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 ii.startDecimal(e),ii.addPrecision(e,r),ii.addScale(e,n),ii.addBitWidth(e,i),ii.endDecimal(e)}};G.Decimal=ii;var vf=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 vf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDate(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new vf).__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):Eb.MILLISECOND}static startDate(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,Eb.MILLISECOND)}static endDate(e){return e.endObject()}static createDate(e,r){return vf.startDate(e),vf.addUnit(e,r),vf.endDate(e)}};G.Date=vf;var Vi=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 Vi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTime(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Vi).__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):Io.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,Io.MILLISECOND)}static addBitWidth(e,r){e.addFieldInt32(1,r,32)}static endTime(e){return e.endObject()}static createTime(e,r,n){return Vi.startTime(e),Vi.addUnit(e,r),Vi.addBitWidth(e,n),Vi.endTime(e)}};G.Time=Vi;var Ci=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 Ci).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsTimestamp(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Ci).__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):Io.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,Io.SECOND)}static addTimezone(e,r){e.addFieldOffset(1,r,0)}static endTimestamp(e){return e.endObject()}static createTimestamp(e,r,n){return Ci.startTimestamp(e),Ci.addUnit(e,r),Ci.addTimezone(e,n),Ci.endTimestamp(e)}};G.Timestamp=Ci;var Tf=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 Tf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsInterval(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Tf).__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):Ab.YEAR_MONTH}static startInterval(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,Ab.YEAR_MONTH)}static endInterval(e){return e.endObject()}static createInterval(e,r){return Tf.startInterval(e),Tf.addUnit(e,r),Tf.endInterval(e)}};G.Interval=Tf;var kf=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 kf).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDuration(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new kf).__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):Io.MILLISECOND}static startDuration(e){e.startObject(1)}static addUnit(e,r){e.addFieldInt16(0,r,Io.MILLISECOND)}static endDuration(e){return e.endObject()}static createDuration(e,r){return kf.startDuration(e),kf.addUnit(e,r),kf.endDuration(e)}};G.Duration=kf;var On=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 On).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsKeyValue(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new On).__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 On.startKeyValue(e),On.addKey(e,r),On.addValue(e,n),On.endKeyValue(e)}};G.KeyValue=On;var sn=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 sn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryEncoding(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new sn).__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 ni).__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):Fb.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,Fb.DenseArray)}static endDictionaryEncoding(e){return e.endObject()}static createDictionaryEncoding(e,r,n,i,f){return sn.startDictionaryEncoding(e),sn.addId(e,r),sn.addIndexType(e,n),sn.addIsOrdered(e,i),sn.addDictionaryKind(e,f),sn.endDictionaryEncoding(e)}};G.DictionaryEncoding=sn;var wr=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 wr).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsField(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new wr).__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):Ob.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 sn).__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 wr).__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 On).__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,Ob.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,f,o,s,u){return wr.startField(e),wr.addName(e,r),wr.addNullable(e,n),wr.addTypeType(e,i),wr.addType(e,f),wr.addDictionary(e,o),wr.addChildren(e,s),wr.addCustomMetadata(e,u),wr.endField(e)}};G.Field=wr;var pk=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()}};G.Buffer=pk;var Fn=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 Fn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsSchema(e,r){return e.setPosition(e.position()+ht.flatbuffers.SIZE_PREFIX_LENGTH),(r||new Fn).__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):Db.Little}fields(e,r){let n=this.bb.__offset(this.bb_pos,6);return n?(r||new wr).__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 On).__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,Db.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 Fn.startSchema(e),Fn.addEndianness(e,r),Fn.addFields(e,n),Fn.addCustomMetadata(e,i),Fn.addFeatures(e,f),Fn.endSchema(e)}};G.Schema=Fn});var Pp=k(Rt=>{"use strict";Object.defineProperty(Rt,"__esModule",{value:!0});Rt.Message=Rt.DictionaryBatch=Rt.RecordBatch=Rt.BodyCompression=Rt.FieldNode=Rt.MessageHeader=Rt.BodyCompressionMethod=Rt.CompressionType=void 0;var Np=zi(),Rp=Bf(),Nb;(function(t){t[t.LZ4_FRAME=0]="LZ4_FRAME",t[t.ZSTD=1]="ZSTD"})(Nb=Rt.CompressionType||(Rt.CompressionType={}));var Rb;(function(t){t[t.BUFFER=0]="BUFFER"})(Rb=Rt.BodyCompressionMethod||(Rt.BodyCompressionMethod={}));var Pb;(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"})(Pb=Rt.MessageHeader||(Rt.MessageHeader={}));var Hb=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()}};Rt.FieldNode=Hb;var fi=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 fi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsBodyCompression(e,r){return e.setPosition(e.position()+Np.flatbuffers.SIZE_PREFIX_LENGTH),(r||new fi).__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):Nb.LZ4_FRAME}method(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readInt8(this.bb_pos+e):Rb.BUFFER}static startBodyCompression(e){e.startObject(2)}static addCodec(e,r){e.addFieldInt8(0,r,Nb.LZ4_FRAME)}static addMethod(e,r){e.addFieldInt8(1,r,Rb.BUFFER)}static endBodyCompression(e){return e.endObject()}static createBodyCompression(e,r,n){return fi.startBodyCompression(e),fi.addCodec(e,r),fi.addMethod(e,n),fi.endBodyCompression(e)}};Rt.BodyCompression=fi;var an=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 an).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsRecordBatch(e,r){return e.setPosition(e.position()+Np.flatbuffers.SIZE_PREFIX_LENGTH),(r||new an).__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 Hb).__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 Rp.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 fi).__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,f){return an.startRecordBatch(e),an.addLength(e,r),an.addNodes(e,n),an.addBuffers(e,i),an.addCompression(e,f),an.endRecordBatch(e)}};Rt.RecordBatch=an;var oi=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 oi).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsDictionaryBatch(e,r){return e.setPosition(e.position()+Np.flatbuffers.SIZE_PREFIX_LENGTH),(r||new oi).__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 an).__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 oi.startDictionaryBatch(e),oi.addId(e,r),oi.addData(e,n),oi.addIsDelta(e,i),oi.endDictionaryBatch(e)}};Rt.DictionaryBatch=oi;var ln=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 ln).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsMessage(e,r){return e.setPosition(e.position()+Np.flatbuffers.SIZE_PREFIX_LENGTH),(r||new ln).__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):Rp.MetadataVersion.V1}headerType(){let e=this.bb.__offset(this.bb_pos,6);return e?this.bb.readUint8(this.bb_pos+e):Pb.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 Rp.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,Rp.MetadataVersion.V1)}static addHeaderType(e,r){e.addFieldInt8(1,r,Pb.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 ln.startMessage(e),ln.addVersion(e,r),ln.addHeaderType(e,n),ln.addHeader(e,i),ln.addBodyLength(e,f),ln.addCustomMetadata(e,o),ln.endMessage(e)}};Rt.Message=ln});var dt=k(kt=>{"use strict";Object.defineProperty(kt,"__esModule",{value:!0});kt.BufferType=kt.Type=kt.MessageHeader=kt.MetadataVersion=kt.IntervalUnit=kt.UnionMode=kt.Precision=kt.TimeUnit=kt.DateUnit=void 0;var Os=Bf();Object.defineProperty(kt,"DateUnit",{enumerable:!0,get:function(){return Os.DateUnit}});Object.defineProperty(kt,"TimeUnit",{enumerable:!0,get:function(){return Os.TimeUnit}});Object.defineProperty(kt,"Precision",{enumerable:!0,get:function(){return Os.Precision}});Object.defineProperty(kt,"UnionMode",{enumerable:!0,get:function(){return Os.UnionMode}});Object.defineProperty(kt,"IntervalUnit",{enumerable:!0,get:function(){return Os.IntervalUnit}});Object.defineProperty(kt,"MetadataVersion",{enumerable:!0,get:function(){return Os.MetadataVersion}});var bD=Pp();Object.defineProperty(kt,"MessageHeader",{enumerable:!0,get:function(){return bD.MessageHeader}});var gD;(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"})(gD=kt.Type||(kt.Type={}));var yD;(function(t){t[t.OFFSET=0]="OFFSET",t[t.DATA=1]="DATA",t[t.VALIDITY=2]="VALIDITY",t[t.TYPE=3]="TYPE"})(yD=kt.BufferType||(kt.BufferType={}))});var si=k(Ut=>{"use strict";Object.defineProperty(Ut,"__esModule",{value:!0});Ut.popcnt_uint32=Ut.popcnt_array=Ut.popcnt_bit_range=Ut.BitIterator=Ut.packBools=Ut.truncateBitmap=Ut.setBool=Ut.getBit=Ut.getBool=void 0;function dk(t,e,r,n){return(r&1<<n)!=0}Ut.getBool=dk;function mk(t,e,r,n){return(r&1<<n)>>n}Ut.getBit=mk;function jD(t,e,r){return r?!!(t[e>>3]|=1<<e%8)||!0:!(t[e>>3]&=~(1<<e%8))&&!1}Ut.setBool=jD;function qD(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):wk(new Hp(r,t,e,null,dk)).subarray(0,n)),i}return r}Ut.truncateBitmap=qD;function wk(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}Ut.packBools=wk;var Hp=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}};Ut.BitIterator=Hp;function Mb(t,e,r){if(r-e<=0)return 0;if(r-e<8){let f=0;for(let o of new Hp(t,e,r-e,t,mk))f+=o;return f}let n=r>>3<<3,i=e+(e%8==0?0:8-e%8);return Mb(t,e,i)+Mb(t,n,r)+hk(t,i>>3,n-i>>3)}Ut.popcnt_bit_range=Mb;function hk(t,e,r){let n=0,i=e|0,f=new DataView(t.buffer,t.byteOffset,t.byteLength),o=r===void 0?t.byteLength:i+r;for(;o-i>=4;)n+=Mp(f.getUint32(i)),i+=4;for(;o-i>=2;)n+=Mp(f.getUint16(i)),i+=2;for(;o-i>=1;)n+=Mp(f.getUint8(i)),i+=1;return n}Ut.popcnt_array=hk;function Mp(t){let e=t|0;return e=e-(e>>>1&1431655765),e=(e&858993459)+(e>>>2&858993459),(e+(e>>>4)&252645135)*16843009>>>24}Ut.popcnt_uint32=Mp});var $e=k(W=>{"use strict";Object.defineProperty(W,"__esModule",{value:!0});W.strideForType=W.Dictionary=W.Map_=W.FixedSizeList=W.FixedSizeBinary=W.SparseUnion=W.DenseUnion=W.Union=W.Struct=W.List=W.IntervalYearMonth=W.IntervalDayTime=W.Interval=W.TimestampNanosecond=W.TimestampMicrosecond=W.TimestampMillisecond=W.TimestampSecond=W.Timestamp=W.TimeNanosecond=W.TimeMicrosecond=W.TimeMillisecond=W.TimeSecond=W.Time=W.DateMillisecond=W.DateDay=W.Date_=W.Decimal=W.Bool=W.Utf8=W.Binary=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.Null=W.DataType=void 0;var Q=dt(),Bt=class{static isNull(e){return e&&e.typeId===Q.Type.Null}static isInt(e){return e&&e.typeId===Q.Type.Int}static isFloat(e){return e&&e.typeId===Q.Type.Float}static isBinary(e){return e&&e.typeId===Q.Type.Binary}static isUtf8(e){return e&&e.typeId===Q.Type.Utf8}static isBool(e){return e&&e.typeId===Q.Type.Bool}static isDecimal(e){return e&&e.typeId===Q.Type.Decimal}static isDate(e){return e&&e.typeId===Q.Type.Date}static isTime(e){return e&&e.typeId===Q.Type.Time}static isTimestamp(e){return e&&e.typeId===Q.Type.Timestamp}static isInterval(e){return e&&e.typeId===Q.Type.Interval}static isList(e){return e&&e.typeId===Q.Type.List}static isStruct(e){return e&&e.typeId===Q.Type.Struct}static isUnion(e){return e&&e.typeId===Q.Type.Union}static isFixedSizeBinary(e){return e&&e.typeId===Q.Type.FixedSizeBinary}static isFixedSizeList(e){return e&&e.typeId===Q.Type.FixedSizeList}static isMap(e){return e&&e.typeId===Q.Type.Map}static isDictionary(e){return e&&e.typeId===Q.Type.Dictionary}get typeId(){return Q.Type.NONE}};W.DataType=Bt;Bt[Symbol.toStringTag]=(t=>(t.children=null,t.ArrayType=Array,t[Symbol.toStringTag]="DataType"))(Bt.prototype);var zp=class extends Bt{toString(){return"Null"}get typeId(){return Q.Type.Null}};W.Null=zp;zp[Symbol.toStringTag]=(t=>t[Symbol.toStringTag]="Null")(zp.prototype);var un=class extends Bt{constructor(e,r){super();this.isSigned=e,this.bitWidth=r}get typeId(){return Q.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}`}};W.Int=un;un[Symbol.toStringTag]=(t=>(t.isSigned=null,t.bitWidth=null,t[Symbol.toStringTag]="Int"))(un.prototype);var zb=class extends un{constructor(){super(!0,8)}};W.Int8=zb;var Ub=class extends un{constructor(){super(!0,16)}};W.Int16=Ub;var Lb=class extends un{constructor(){super(!0,32)}};W.Int32=Lb;var Vb=class extends un{constructor(){super(!0,64)}};W.Int64=Vb;var Cb=class extends un{constructor(){super(!1,8)}};W.Uint8=Cb;var Wb=class extends un{constructor(){super(!1,16)}};W.Uint16=Wb;var Kb=class extends un{constructor(){super(!1,32)}};W.Uint32=Kb;var Yb=class extends un{constructor(){super(!1,64)}};W.Uint64=Yb;Object.defineProperty(zb.prototype,"ArrayType",{value:Int8Array});Object.defineProperty(Ub.prototype,"ArrayType",{value:Int16Array});Object.defineProperty(Lb.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(Vb.prototype,"ArrayType",{value:Int32Array});Object.defineProperty(Cb.prototype,"ArrayType",{value:Uint8Array});Object.defineProperty(Wb.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Kb.prototype,"ArrayType",{value:Uint32Array});Object.defineProperty(Yb.prototype,"ArrayType",{value:Uint32Array});var Po=class extends Bt{constructor(e){super();this.precision=e}get typeId(){return Q.Type.Float}get ArrayType(){switch(this.precision){case Q.Precision.HALF:return Uint16Array;case Q.Precision.SINGLE:return Float32Array;case Q.Precision.DOUBLE:return Float64Array}throw new Error(`Unrecognized ${this[Symbol.toStringTag]} type`)}toString(){return`Float${this.precision<<5||16}`}};W.Float=Po;Po[Symbol.toStringTag]=(t=>(t.precision=null,t[Symbol.toStringTag]="Float"))(Po.prototype);var Gb=class extends Po{constructor(){super(Q.Precision.HALF)}};W.Float16=Gb;var Zb=class extends Po{constructor(){super(Q.Precision.SINGLE)}};W.Float32=Zb;var Jb=class extends Po{constructor(){super(Q.Precision.DOUBLE)}};W.Float64=Jb;Object.defineProperty(Gb.prototype,"ArrayType",{value:Uint16Array});Object.defineProperty(Zb.prototype,"ArrayType",{value:Float32Array});Object.defineProperty(Jb.prototype,"ArrayType",{value:Float64Array});var Up=class extends Bt{constructor(){super()}get typeId(){return Q.Type.Binary}toString(){return"Binary"}};W.Binary=Up;Up[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Binary"))(Up.prototype);var Lp=class extends Bt{constructor(){super()}get typeId(){return Q.Type.Utf8}toString(){return"Utf8"}};W.Utf8=Lp;Lp[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Utf8"))(Lp.prototype);var Vp=class extends Bt{constructor(){super()}get typeId(){return Q.Type.Bool}toString(){return"Bool"}};W.Bool=Vp;Vp[Symbol.toStringTag]=(t=>(t.ArrayType=Uint8Array,t[Symbol.toStringTag]="Bool"))(Vp.prototype);var Cp=class extends Bt{constructor(e,r){super();this.scale=e,this.precision=r}get typeId(){return Q.Type.Decimal}toString(){return`Decimal[${this.precision}e${this.scale>0?"+":""}${this.scale}]`}};W.Decimal=Cp;Cp[Symbol.toStringTag]=(t=>(t.scale=null,t.precision=null,t.ArrayType=Uint32Array,t[Symbol.toStringTag]="Decimal"))(Cp.prototype);var Fs=class extends Bt{constructor(e){super();this.unit=e}get typeId(){return Q.Type.Date}toString(){return`Date${(this.unit+1)*32}<${Q.DateUnit[this.unit]}>`}};W.Date_=Fs;Fs[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Date"))(Fs.prototype);var bk=class extends Fs{constructor(){super(Q.DateUnit.DAY)}};W.DateDay=bk;var gk=class extends Fs{constructor(){super(Q.DateUnit.MILLISECOND)}};W.DateMillisecond=gk;var If=class extends Bt{constructor(e,r){super();this.unit=e,this.bitWidth=r}get typeId(){return Q.Type.Time}toString(){return`Time${this.bitWidth}<${Q.TimeUnit[this.unit]}>`}};W.Time=If;If[Symbol.toStringTag]=(t=>(t.unit=null,t.bitWidth=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Time"))(If.prototype);var yk=class extends If{constructor(){super(Q.TimeUnit.SECOND,32)}};W.TimeSecond=yk;var jk=class extends If{constructor(){super(Q.TimeUnit.MILLISECOND,32)}};W.TimeMillisecond=jk;var qk=class extends If{constructor(){super(Q.TimeUnit.MICROSECOND,64)}};W.TimeMicrosecond=qk;var _k=class extends If{constructor(){super(Q.TimeUnit.NANOSECOND,64)}};W.TimeNanosecond=_k;var xf=class extends Bt{constructor(e,r){super();this.unit=e,this.timezone=r}get typeId(){return Q.Type.Timestamp}toString(){return`Timestamp<${Q.TimeUnit[this.unit]}${this.timezone?`, ${this.timezone}`:""}>`}};W.Timestamp=xf;xf[Symbol.toStringTag]=(t=>(t.unit=null,t.timezone=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Timestamp"))(xf.prototype);var vk=class extends xf{constructor(e){super(Q.TimeUnit.SECOND,e)}};W.TimestampSecond=vk;var Tk=class extends xf{constructor(e){super(Q.TimeUnit.MILLISECOND,e)}};W.TimestampMillisecond=Tk;var kk=class extends xf{constructor(e){super(Q.TimeUnit.MICROSECOND,e)}};W.TimestampMicrosecond=kk;var Bk=class extends xf{constructor(e){super(Q.TimeUnit.NANOSECOND,e)}};W.TimestampNanosecond=Bk;var Ds=class extends Bt{constructor(e){super();this.unit=e}get typeId(){return Q.Type.Interval}toString(){return`Interval<${Q.IntervalUnit[this.unit]}>`}};W.Interval=Ds;Ds[Symbol.toStringTag]=(t=>(t.unit=null,t.ArrayType=Int32Array,t[Symbol.toStringTag]="Interval"))(Ds.prototype);var Ik=class extends Ds{constructor(){super(Q.IntervalUnit.DAY_TIME)}};W.IntervalDayTime=Ik;var xk=class extends Ds{constructor(){super(Q.IntervalUnit.YEAR_MONTH)}};W.IntervalYearMonth=xk;var Wp=class extends Bt{constructor(e){super();this.children=[e]}get typeId(){return Q.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}};W.List=Wp;Wp[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="List"))(Wp.prototype);var Kp=class extends Bt{constructor(e){super();this.children=e}get typeId(){return Q.Type.Struct}toString(){return`Struct<{${this.children.map(e=>`${e.name}:${e.type}`).join(", ")}}>`}};W.Struct=Kp;Kp[Symbol.toStringTag]=(t=>(t.children=null,t[Symbol.toStringTag]="Struct"))(Kp.prototype);var Ns=class extends Bt{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 Q.Type.Union}toString(){return`${this[Symbol.toStringTag]}<${this.children.map(e=>`${e.type}`).join(" | ")}>`}};W.Union=Ns;Ns[Symbol.toStringTag]=(t=>(t.mode=null,t.typeIds=null,t.children=null,t.typeIdToChildIndex=null,t.ArrayType=Int8Array,t[Symbol.toStringTag]="Union"))(Ns.prototype);var Sk=class extends Ns{constructor(e,r){super(Q.UnionMode.Dense,e,r)}};W.DenseUnion=Sk;var Ek=class extends Ns{constructor(e,r){super(Q.UnionMode.Sparse,e,r)}};W.SparseUnion=Ek;var Yp=class extends Bt{constructor(e){super();this.byteWidth=e}get typeId(){return Q.Type.FixedSizeBinary}toString(){return`FixedSizeBinary[${this.byteWidth}]`}};W.FixedSizeBinary=Yp;Yp[Symbol.toStringTag]=(t=>(t.byteWidth=null,t.ArrayType=Uint8Array,t[Symbol.toStringTag]="FixedSizeBinary"))(Yp.prototype);var Gp=class extends Bt{constructor(e,r){super();this.listSize=e,this.children=[r]}get typeId(){return Q.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}>`}};W.FixedSizeList=Gp;Gp[Symbol.toStringTag]=(t=>(t.children=null,t.listSize=null,t[Symbol.toStringTag]="FixedSizeList"))(Gp.prototype);var Zp=class extends Bt{constructor(e,r=!1){super();this.children=[e],this.keysSorted=r}get typeId(){return Q.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(", ")}}>`}};W.Map_=Zp;Zp[Symbol.toStringTag]=(t=>(t.children=null,t.keysSorted=null,t[Symbol.toStringTag]="Map_"))(Zp.prototype);var _D=(t=>()=>++t)(-1),Jp=class extends Bt{constructor(e,r,n,i){super();this.indices=r,this.dictionary=e,this.isOrdered=i||!1,this.id=n==null?_D():typeof n=="number"?n:n.low}get typeId(){return Q.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}>`}};W.Dictionary=Jp;Jp[Symbol.toStringTag]=(t=>(t.id=null,t.indices=null,t.isOrdered=null,t.dictionary=null,t[Symbol.toStringTag]="Dictionary"))(Jp.prototype);function vD(t){let e=t;switch(t.typeId){case Q.Type.Decimal:return 4;case Q.Type.Timestamp:return 2;case Q.Type.Date:return 1+e.unit;case Q.Type.Interval:return 1+e.unit;case Q.Type.Int:return 1+ +(e.bitWidth>32);case Q.Type.Time:return 1+ +(e.bitWidth>32);case Q.Type.FixedSizeList:return e.listSize;case Q.Type.FixedSizeBinary:return e.byteWidth;default:return 1}}W.strideForType=vD});var Dn=k(Ho=>{"use strict";Object.defineProperty(Ho,"__esModule",{value:!0});Ho.Data=Ho.kUnknownNullCount=void 0;var TD=si(),kD=si(),ie=dt(),BD=$e(),We=Gt();Ho.kUnknownNullCount=-1;var Te=class{constructor(e,r,n,i,f,o,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=(o||[]).map(l=>l instanceof Te?l:l.data);let u;f instanceof Te?(this.stride=f.stride,this.values=f.values,this.typeIds=f.typeIds,this.nullBitmap=f.nullBitmap,this.valueOffsets=f.valueOffsets):(this.stride=BD.strideForType(e),f&&((u=f[0])&&(this.valueOffsets=u),(u=f[1])&&(this.values=u),(u=f[2])&&(this.nullBitmap=u),(u=f[3])&&(this.typeIds=u)))}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.childData.reduce((o,s)=>o+s.byteLength,e)}get nullCount(){let e=this._nullCount,r;return e<=Ho.kUnknownNullCount&&(r=this.nullBitmap)&&(this._nullCount=e=this.length-kD.popcnt_bit_range(r,this.offset,this.offset+this.length)),e}clone(e,r=this.offset,n=this.length,i=this._nullCount,f=this,o=this.childData){return new Te(e,r,n,i,f,o,this.dictionary)}slice(e,r){let{stride:n,typeId:i,childData:f}=this,o=+(this._nullCount===0)-1,s=i===16?n:1,u=this._sliceBuffers(e,r,n,i);return this.clone(this.type,this.offset+e,r,o,u,!f.length||this.valueOffsets?f:this._sliceChildren(f,s*e,s*r))}_changeLengthAndBackfillNullBitmap(e){if(this.typeId===ie.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(TD.truncateBitmap(this.offset,r,this.nullBitmap),0);let f=this.buffers;return f[ie.BufferType.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[ie.BufferType.TYPE])&&(o[ie.BufferType.TYPE]=f.subarray(e,e+r)),(f=o[ie.BufferType.OFFSET])&&(o[ie.BufferType.OFFSET]=f.subarray(e,e+r+1))||(f=o[ie.BufferType.DATA])&&(o[ie.BufferType.DATA]=i===6?f:f.subarray(n*e,n*(e+r))),o}_sliceChildren(e,r,n){return e.map(i=>i.slice(r,n))}static new(e,r,n,i,f,o,s){switch(f instanceof Te?f=f.buffers:f||(f=[]),e.typeId){case ie.Type.Null:return Te.Null(e,r,n);case ie.Type.Int:return Te.Int(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Dictionary:return Te.Dictionary(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[],s);case ie.Type.Float:return Te.Float(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Bool:return Te.Bool(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Decimal:return Te.Decimal(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Date:return Te.Date(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Time:return Te.Time(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Timestamp:return Te.Timestamp(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Interval:return Te.Interval(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.FixedSizeBinary:return Te.FixedSizeBinary(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.DATA]||[]);case ie.Type.Binary:return Te.Binary(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.OFFSET]||[],f[ie.BufferType.DATA]||[]);case ie.Type.Utf8:return Te.Utf8(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.OFFSET]||[],f[ie.BufferType.DATA]||[]);case ie.Type.List:return Te.List(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.OFFSET]||[],(o||[])[0]);case ie.Type.FixedSizeList:return Te.FixedSizeList(e,r,n,i||0,f[ie.BufferType.VALIDITY],(o||[])[0]);case ie.Type.Struct:return Te.Struct(e,r,n,i||0,f[ie.BufferType.VALIDITY],o||[]);case ie.Type.Map:return Te.Map(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.OFFSET]||[],(o||[])[0]);case ie.Type.Union:return Te.Union(e,r,n,i||0,f[ie.BufferType.VALIDITY],f[ie.BufferType.TYPE]||[],f[ie.BufferType.OFFSET]||o,o)}throw new Error(`Unrecognized typeId ${e.typeId}`)}static Null(e,r,n){return new Te(e,r,n,0)}static Int(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Dictionary(e,r,n,i,f,o,s){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.indices.ArrayType,o),We.toUint8Array(f)],[],s)}static Float(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Bool(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Decimal(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Date(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Time(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Timestamp(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Interval(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static FixedSizeBinary(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,We.toArrayBufferView(e.ArrayType,o),We.toUint8Array(f)])}static Binary(e,r,n,i,f,o,s){return new Te(e,r,n,i,[We.toInt32Array(o),We.toUint8Array(s),We.toUint8Array(f)])}static Utf8(e,r,n,i,f,o,s){return new Te(e,r,n,i,[We.toInt32Array(o),We.toUint8Array(s),We.toUint8Array(f)])}static List(e,r,n,i,f,o,s){return new Te(e,r,n,i,[We.toInt32Array(o),void 0,We.toUint8Array(f)],s?[s]:[])}static FixedSizeList(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,void 0,We.toUint8Array(f)],o?[o]:[])}static Struct(e,r,n,i,f,o){return new Te(e,r,n,i,[void 0,void 0,We.toUint8Array(f)],o)}static Map(e,r,n,i,f,o,s){return new Te(e,r,n,i,[We.toInt32Array(o),void 0,We.toUint8Array(f)],s?[s]:[])}static Union(e,r,n,i,f,o,s,u){let l=[void 0,void 0,We.toUint8Array(f),We.toArrayBufferView(e.ArrayType,o)];return e.mode===ie.UnionMode.Sparse?new Te(e,r,n,i,l,s):(l[ie.BufferType.OFFSET]=We.toInt32Array(s),new Te(e,r,n,i,l,u))}};Ho.Data=Te;Te.prototype.childData=Object.freeze([])});var Qb=k(Qp=>{"use strict";Object.defineProperty(Qp,"__esModule",{value:!0});Qp.valueToString=void 0;var ID=void 0;function xD(t){if(t===null)return"null";if(t===ID)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)}Qp.valueToString=xD});var Ak=k(Xp=>{"use strict";Object.defineProperty(Xp,"__esModule",{value:!0});Xp.createIsValidFunction=void 0;var Xb=Qb(),SD=mr();function ED(t){if(!t||t.length<=0)return function(i){return!0};let e="",r=t.filter(n=>n===n);return r.length>0&&(e=`
10
10
  switch (x) {${r.map(n=>`
11
- case ${DD(n)}:`).join("")}
11
+ case ${AD(n)}:`).join("")}
12
12
  return false;
13
13
  }`),t.length!==r.length&&(e=`if (x !== x) return false;
14
14
  ${e}`),new Function("x",`${e}
15
- return true;`)}ed.createIsValidFunction=FD;function DD(t){return typeof t!="bigint"?rg.valueToString(t):OD.BigIntAvailable?`${rg.valueToString(t)}n`:`"${rg.valueToString(t)}"`}});var Sf=k(cn=>{"use strict";Object.defineProperty(cn,"__esModule",{value:!0});cn.WideBufferBuilder=cn.OffsetsBufferBuilder=cn.BitmapBufferBuilder=cn.DataBufferBuilder=cn.BufferBuilder=void 0;var Pk=Gt(),ng=mr(),ig=(t,e)=>(t*e+63&~63||64)/e,ND=(t,e=0)=>t.length>=e?t.subarray(0,e):Pk.memcpy(new t.constructor(e),t,0),iu=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?ig(n*1,this.BYTES_PER_ELEMENT):ig(n*2,this.BYTES_PER_ELEMENT))}return this}flush(e=this.length){e=ig(e*this.stride,this.BYTES_PER_ELEMENT);let r=ND(this.buffer,e);return this.clear(),r}clear(){return this.length=0,this._resize(0),this}_resize(e){return this.buffer=Pk.memcpy(new this.ArrayType(e),this.buffer)}};cn.BufferBuilder=iu;iu.prototype.offset=0;var td=class extends iu{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}};cn.DataBufferBuilder=td;var Hk=class extends td{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()}};cn.BitmapBufferBuilder=Hk;var Mk=class extends td{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)}};cn.OffsetsBufferBuilder=Mk;var zk=class extends iu{get ArrayType64(){return this._ArrayType64||(this._ArrayType64=this.buffer instanceof Int32Array?ng.BigInt64Array:ng.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 ng.BigIntAvailable&&(this.buffer64=new this.ArrayType64(r.buffer,r.byteOffset,n)),r}};cn.WideBufferBuilder=zk});var It=k(Ef=>{"use strict";Object.defineProperty(Ef,"__esModule",{value:!0});Ef.VariableWidthBuilder=Ef.FixedWidthBuilder=Ef.Builder=void 0;var RD=Nt(),Hs=dt(),PD=Dn(),HD=Rk(),fg=Sf(),MD=$e(),pn=class{constructor({type:e,nullValues:r}){this.length=0,this.finished=!1,this.type=e,this.children=[],this.nullValues=r,this.stride=MD.strideForType(e),this._nulls=new fg.BitmapBufferBuilder,r&&r.length>0&&(this._isValid=HD.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 zD(e)}static throughAsyncIterable(e){return UD(e)}toVector(){return RD.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:f,nullCount:o}=this;i?(e[Hs.BufferType.TYPE]=i.flush(f),n&&(e[Hs.BufferType.OFFSET]=n.flush(f))):n?(r&&(e[Hs.BufferType.DATA]=r.flush(n.last())),e[Hs.BufferType.OFFSET]=n.flush(f)):r&&(e[Hs.BufferType.DATA]=r.flush(f)),o>0&&(e[Hs.BufferType.VALIDITY]=this._nulls.flush(f));let s=PD.Data.new(this.type,0,f,o,e,this.children.map(u=>u.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=pn;pn.prototype.length=1;pn.prototype.stride=1;pn.prototype.children=null;pn.prototype.finished=!1;pn.prototype.nullValues=null;pn.prototype._isValid=()=>!0;var Uk=class extends pn{constructor(e){super(e);this._values=new fg.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=Uk;var Lk=class extends pn{constructor(e){super(e);this._pendingLength=0,this._offsets=new fg.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=Lk;function zD(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return function*(i){let f=0,o=pn.new(t);for(let s of i)o.append(s)[n]>=r&&++f&&(yield o.toVector());(o.finish().length>0||f===0)&&(yield o.toVector())}}function UD(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return async function*(i){let f=0,o=pn.new(t);for await(let s of i)o.append(s)[n]>=r&&++f&&(yield o.toVector());(o.finish().length>0||f===0)&&(yield o.toVector())}}});var og=k(rd=>{"use strict";Object.defineProperty(rd,"__esModule",{value:!0});rd.BoolBuilder=void 0;var LD=Sf(),VD=It(),Vk=class extends VD.Builder{constructor(e){super(e);this._values=new LD.BitmapBufferBuilder}setValue(e,r){this._values.set(e,+r)}};rd.BoolBuilder=Vk});var sg=k(nd=>{"use strict";Object.defineProperty(nd,"__esModule",{value:!0});nd.NullBuilder=void 0;var CD=It(),Ck=class extends CD.Builder{setValue(e,r){}setValid(e,r){return this.length=Math.max(e+1,this.length),r}};nd.NullBuilder=Ck});var ag=k(Af=>{"use strict";Object.defineProperty(Af,"__esModule",{value:!0});Af.DateMillisecondBuilder=Af.DateDayBuilder=Af.DateBuilder=void 0;var WD=It(),id=class extends WD.FixedWidthBuilder{};Af.DateBuilder=id;var Wk=class extends id{};Af.DateDayBuilder=Wk;var Kk=class extends id{};Af.DateMillisecondBuilder=Kk});var lg=k(fd=>{"use strict";Object.defineProperty(fd,"__esModule",{value:!0});fd.DecimalBuilder=void 0;var KD=It(),Yk=class extends KD.FixedWidthBuilder{};fd.DecimalBuilder=Yk});var cg=k(od=>{"use strict";Object.defineProperty(od,"__esModule",{value:!0});od.DictionaryBuilder=void 0;var YD=$e(),ug=It(),Gk=class extends ug.Builder{constructor({type:e,nullValues:r,dictionaryHashFunction:n}){super({type:new YD.Dictionary(e.dictionary,e.indices,e.id,e.isOrdered)});this._nulls=null,this._dictionaryOffset=0,this._keysToIndices=Object.create(null),this.indices=ug.Builder.new({type:this.type.indices,nullValues:r}),this.dictionary=ug.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),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}`}};od.DictionaryBuilder=Gk});var pg=k(sd=>{"use strict";Object.defineProperty(sd,"__esModule",{value:!0});sd.FixedSizeBinaryBuilder=void 0;var GD=It(),Zk=class extends GD.FixedWidthBuilder{};sd.FixedSizeBinaryBuilder=Zk});var fu=k(zs=>{"use strict";Object.defineProperty(zs,"__esModule",{value:!0});zs.float64ToUint16=zs.uint16ToFloat64=void 0;var Jk=new Float64Array(1),Ms=new Uint32Array(Jk.buffer);function ZD(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)}zs.uint16ToFloat64=ZD;function JD(t){if(t!==t)return 32256;Jk[0]=t;let e=(Ms[1]&2147483648)>>16&65535,r=Ms[1]&2146435072,n=0;return r>=1089470464?Ms[0]>0?r=31744:(r=(r&2080374784)>>16,n=(Ms[1]&1048575)>>10):r<=1056964608?(n=1048576+(Ms[1]&1048575),n=1048576+(n<<(r>>20)-998)>>21,r=0):(r=r-1056964608>>10,n=(Ms[1]&1048575)+512>>10),e|r|n&65535}zs.float64ToUint16=JD});var dg=k(ai=>{"use strict";Object.defineProperty(ai,"__esModule",{value:!0});ai.Float64Builder=ai.Float32Builder=ai.Float16Builder=ai.FloatBuilder=void 0;var QD=fu(),XD=It(),ou=class extends XD.FixedWidthBuilder{};ai.FloatBuilder=ou;var Qk=class extends ou{setValue(e,r){this._values.set(e,QD.float64ToUint16(r))}};ai.Float16Builder=Qk;var Xk=class extends ou{setValue(e,r){this._values.set(e,r)}};ai.Float32Builder=Xk;var $k=class extends ou{setValue(e,r){this._values.set(e,r)}};ai.Float64Builder=$k});var lu=k(Zt=>{"use strict";Object.defineProperty(Zt,"__esModule",{value:!0});Zt.BN=Zt.bignumToBigInt=Zt.bignumToString=Zt.isArrowBigNumSymbol=void 0;var $D=Gt(),su=mr();Zt.isArrowBigNumSymbol=Symbol.for("isArrowBigNum");function Nn(t,...e){return e.length===0?Object.setPrototypeOf($D.toArrayBufferView(this.TypedArray,t),this.constructor.prototype):Object.setPrototypeOf(new this.TypedArray(t,...e),this.constructor.prototype)}Nn.prototype[Zt.isArrowBigNumSymbol]=!0;Nn.prototype.toJSON=function(){return`"${Zt.bignumToString(this)}"`};Nn.prototype.valueOf=function(){return eB(this)};Nn.prototype.toString=function(){return Zt.bignumToString(this)};Nn.prototype[Symbol.toPrimitive]=function(t="default"){switch(t){case"number":return eB(this);case"string":return Zt.bignumToString(this);case"default":return Zt.bignumToBigInt(this)}return Zt.bignumToString(this)};function Us(...t){return Nn.apply(this,t)}function Ls(...t){return Nn.apply(this,t)}function au(...t){return Nn.apply(this,t)}Object.setPrototypeOf(Us.prototype,Object.create(Int32Array.prototype));Object.setPrototypeOf(Ls.prototype,Object.create(Uint32Array.prototype));Object.setPrototypeOf(au.prototype,Object.create(Uint32Array.prototype));Object.assign(Us.prototype,Nn.prototype,{constructor:Us,signed:!0,TypedArray:Int32Array,BigIntArray:su.BigInt64Array});Object.assign(Ls.prototype,Nn.prototype,{constructor:Ls,signed:!1,TypedArray:Uint32Array,BigIntArray:su.BigUint64Array});Object.assign(au.prototype,Nn.prototype,{constructor:au,signed:!0,TypedArray:Uint32Array,BigIntArray:su.BigUint64Array});function eB(t){let{buffer:e,byteOffset:r,length:n,signed:i}=t,f=new Int32Array(e,r,n),o=0,s=0,u=f.length,l,c;for(;s<u;)c=f[s++],l=f[s++],i||(l=l>>>0),o+=(c>>>0)+l*s**32;return o}su.BigIntAvailable?(Zt.bignumToBigInt=t=>t.byteLength===8?new t.BigIntArray(t.buffer,t.byteOffset,1)[0]:mg(t),Zt.bignumToString=t=>t.byteLength===8?`${new t.BigIntArray(t.buffer,t.byteOffset,1)[0]}`:mg(t)):(Zt.bignumToString=mg,Zt.bignumToBigInt=Zt.bignumToString);function mg(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 ad=class{static new(e,r){switch(r){case!0:return new Us(e);case!1:return new Ls(e)}switch(e.constructor){case Int8Array:case Int16Array:case Int32Array:case su.BigInt64Array:return new Us(e)}return e.byteLength===16?new au(e):new Ls(e)}static signed(e){return new Us(e)}static unsigned(e){return new Ls(e)}static decimal(e){return new au(e)}constructor(e,r){return ad.new(e,r)}};Zt.BN=ad});var wg=k(Lt=>{"use strict";Object.defineProperty(Lt,"__esModule",{value:!0});Lt.Uint64Builder=Lt.Uint32Builder=Lt.Uint16Builder=Lt.Uint8Builder=Lt.Int64Builder=Lt.Int32Builder=Lt.Int16Builder=Lt.Int8Builder=Lt.IntBuilder=void 0;var eN=lu(),tB=Sf(),tN=mr(),rN=It(),li=class extends rN.FixedWidthBuilder{setValue(e,r){this._values.set(e,r)}};Lt.IntBuilder=li;var rB=class extends li{};Lt.Int8Builder=rB;var nB=class extends li{};Lt.Int16Builder=nB;var iB=class extends li{};Lt.Int32Builder=iB;var fB=class extends li{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(ld));super(e);this._values=new tB.WideBufferBuilder(new Int32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(ld(e))}};Lt.Int64Builder=fB;var oB=class extends li{};Lt.Uint8Builder=oB;var sB=class extends li{};Lt.Uint16Builder=sB;var aB=class extends li{};Lt.Uint32Builder=aB;var lB=class extends li{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(ld));super(e);this._values=new tB.WideBufferBuilder(new Uint32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(ld(e))}};Lt.Uint64Builder=lB;var ld=(t=>e=>(ArrayBuffer.isView(e)&&(t.buffer=e.buffer,t.byteOffset=e.byteOffset,t.byteLength=e.byteLength,e=eN.bignumToBigInt(t),t.buffer=null),e))({BigIntArray:tN.BigInt64Array})});var hg=k(dn=>{"use strict";Object.defineProperty(dn,"__esModule",{value:!0});dn.TimeNanosecondBuilder=dn.TimeMicrosecondBuilder=dn.TimeMillisecondBuilder=dn.TimeSecondBuilder=dn.TimeBuilder=void 0;var nN=It(),Vs=class extends nN.FixedWidthBuilder{};dn.TimeBuilder=Vs;var uB=class extends Vs{};dn.TimeSecondBuilder=uB;var cB=class extends Vs{};dn.TimeMillisecondBuilder=cB;var pB=class extends Vs{};dn.TimeMicrosecondBuilder=pB;var dB=class extends Vs{};dn.TimeNanosecondBuilder=dB});var bg=k(mn=>{"use strict";Object.defineProperty(mn,"__esModule",{value:!0});mn.TimestampNanosecondBuilder=mn.TimestampMicrosecondBuilder=mn.TimestampMillisecondBuilder=mn.TimestampSecondBuilder=mn.TimestampBuilder=void 0;var iN=It(),Cs=class extends iN.FixedWidthBuilder{};mn.TimestampBuilder=Cs;var mB=class extends Cs{};mn.TimestampSecondBuilder=mB;var wB=class extends Cs{};mn.TimestampMillisecondBuilder=wB;var hB=class extends Cs{};mn.TimestampMicrosecondBuilder=hB;var bB=class extends Cs{};mn.TimestampNanosecondBuilder=bB});var gg=k(Of=>{"use strict";Object.defineProperty(Of,"__esModule",{value:!0});Of.IntervalYearMonthBuilder=Of.IntervalDayTimeBuilder=Of.IntervalBuilder=void 0;var fN=It(),ud=class extends fN.FixedWidthBuilder{};Of.IntervalBuilder=ud;var gB=class extends ud{};Of.IntervalDayTimeBuilder=gB;var yB=class extends ud{};Of.IntervalYearMonthBuilder=yB});var pd=k(cd=>{"use strict";Object.defineProperty(cd,"__esModule",{value:!0});cd.BinaryBuilder=void 0;var oN=Gt(),sN=Sf(),aN=It(),jB=class extends aN.VariableWidthBuilder{constructor(e){super(e);this._values=new sN.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,oN.toUint8Array(r))}_flushPending(e,r){let n=this._offsets,i=this._values.reserve(r).buffer,f=0,o=0,s=0,u;for([f,u]of e)u===void 0?n.set(f,0):(o=u.length,i.set(u,s),n.set(f,o),s+=o)}};cd.BinaryBuilder=jB});var md=k(dd=>{"use strict";Object.defineProperty(dd,"__esModule",{value:!0});dd.Utf8Builder=void 0;var lN=Io(),uN=pd(),cN=Sf(),pN=It(),yg=class extends pN.VariableWidthBuilder{constructor(e){super(e);this._values=new cN.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,lN.encodeUtf8(r))}_flushPending(e,r){}};dd.Utf8Builder=yg;yg.prototype._flushPending=uN.BinaryBuilder.prototype._flushPending});var jg=k(wd=>{"use strict";Object.defineProperty(wd,"__esModule",{value:!0});wd.Run=void 0;var dN=Nt(),qB=class{get length(){return this._values.length}get(e){return this._values[e]}clear(){return this._values=null,this}bind(e){return e instanceof dN.Vector?e:(this._values=e,this)}};wd.Run=qB});var er=k(Ws=>{"use strict";Object.defineProperty(Ws,"__esModule",{value:!0});Ws.Field=Ws.Schema=void 0;var mN=$e(),wn=class{constructor(e=[],r,n){this.fields=e||[],this.metadata=r||new Map,n||(n=qg(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 wn(this.fields.filter(n=>r[n.name]),this.metadata)}selectAt(...e){return new wn(e.map(r=>this.fields[r]).filter(Boolean),this.metadata)}assign(...e){let r=e[0]instanceof wn?e[0]:Array.isArray(e[0])?new wn(e[0]):new wn(e),n=[...this.fields],i=hd(hd(new Map,this.metadata),r.metadata),f=r.fields.filter(s=>{let u=n.findIndex(l=>l.name===s.name);return~u?(n[u]=s.clone({metadata:hd(hd(new Map,n[u].metadata),s.metadata)}))&&!1:!0}),o=qg(f,new Map);return new wn([...n,...f],i,new Map([...this.dictionaries,...o]))}};Ws.Schema=wn;var Wi=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 Wi(`${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],Wi.new(r,n,i,f)}};Ws.Field=Wi;function hd(t,e){return new Map([...t||new Map,...e||new Map])}function qg(t,e=new Map){for(let r=-1,n=t.length;++r<n;){let f=t[r].type;if(mN.DataType.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&&qg(f.children,e)}return e}wn.prototype.fields=null;wn.prototype.metadata=null;wn.prototype.dictionaries=null;Wi.prototype.type=null;Wi.prototype.name=null;Wi.prototype.nullable=null;Wi.prototype.metadata=null});var _g=k(bd=>{"use strict";Object.defineProperty(bd,"__esModule",{value:!0});bd.ListBuilder=void 0;var wN=jg(),hN=er(),bN=$e(),gN=Sf(),yN=It(),_B=class extends yN.VariableWidthBuilder{constructor(e){super(e);this._run=new wN.Run,this._offsets=new gN.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 bN.List(new hN.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,f=0,o;for([f,o]of e)o===void 0?n.set(f,0):(n.set(f,o.length),i(this,f,r.bind(o)))}};bd.ListBuilder=_B});var vg=k(gd=>{"use strict";Object.defineProperty(gd,"__esModule",{value:!0});gd.FixedSizeListBuilder=void 0;var jN=jg(),qN=er(),_N=It(),vN=$e(),vB=class extends _N.Builder{constructor(){super(...arguments);this._run=new jN.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 vN.FixedSizeList(this.type.listSize,new qN.Field(r,e.type,!0)),n}clear(){return this._run.clear(),super.clear()}};gd.FixedSizeListBuilder=vB});var Tg=k(yd=>{"use strict";Object.defineProperty(yd,"__esModule",{value:!0});yd.MapBuilder=void 0;var TN=er(),kN=$e(),BN=It(),TB=class extends BN.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 kN.Map_(new TN.Field(r,e.type,!0),this.type.keysSorted),this.numChildren-1}_flushPending(e){let r=this._offsets,n=this._setValue;e.forEach((i,f)=>{i===void 0?r.set(f,0):(r.set(f,i.size),n(this,f,i))})}};yd.MapBuilder=TB});var kg=k(jd=>{"use strict";Object.defineProperty(jd,"__esModule",{value:!0});jd.StructBuilder=void 0;var IN=er(),xN=It(),SN=$e(),kB=class extends xN.Builder{addChild(e,r=`${this.numChildren}`){let n=this.children.push(e);return this.type=new SN.Struct([...this.type.children,new IN.Field(r,e.type,!0)]),n}};jd.StructBuilder=kB});var Bg=k(Ff=>{"use strict";Object.defineProperty(Ff,"__esModule",{value:!0});Ff.DenseUnionBuilder=Ff.SparseUnionBuilder=Ff.UnionBuilder=void 0;var EN=er(),BB=Sf(),AN=It(),ON=$e(),qd=class extends AN.Builder{constructor(e){super(e);this._typeIds=new BB.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:f,typeIds:o}}=this,s=[...i,new EN.Field(r,e.type)];return this.type=new ON.Union(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.")}};Ff.UnionBuilder=qd;var IB=class extends qd{};Ff.SparseUnionBuilder=IB;var xB=class extends qd{constructor(e){super(e);this._offsets=new BB.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)}};Ff.DenseUnionBuilder=xB});var sr=k(_d=>{"use strict";Object.defineProperty(_d,"__esModule",{value:!0});_d.Visitor=void 0;var FN=Dn(),DN=Nt(),A=dt(),NN=$e(),lt=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 RN(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}};_d.Visitor=lt;function RN(t,e,r=!0){let n=null,i=A.Type.NONE;switch(e instanceof FN.Data||e instanceof DN.Vector?i=Ig(e.type):e instanceof NN.DataType?i=Ig(e):typeof(i=e)!="number"&&(i=A.Type[e]),i){case A.Type.Null:n=t.visitNull;break;case A.Type.Bool:n=t.visitBool;break;case A.Type.Int:n=t.visitInt;break;case A.Type.Int8:n=t.visitInt8||t.visitInt;break;case A.Type.Int16:n=t.visitInt16||t.visitInt;break;case A.Type.Int32:n=t.visitInt32||t.visitInt;break;case A.Type.Int64:n=t.visitInt64||t.visitInt;break;case A.Type.Uint8:n=t.visitUint8||t.visitInt;break;case A.Type.Uint16:n=t.visitUint16||t.visitInt;break;case A.Type.Uint32:n=t.visitUint32||t.visitInt;break;case A.Type.Uint64:n=t.visitUint64||t.visitInt;break;case A.Type.Float:n=t.visitFloat;break;case A.Type.Float16:n=t.visitFloat16||t.visitFloat;break;case A.Type.Float32:n=t.visitFloat32||t.visitFloat;break;case A.Type.Float64:n=t.visitFloat64||t.visitFloat;break;case A.Type.Utf8:n=t.visitUtf8;break;case A.Type.Binary:n=t.visitBinary;break;case A.Type.FixedSizeBinary:n=t.visitFixedSizeBinary;break;case A.Type.Date:n=t.visitDate;break;case A.Type.DateDay:n=t.visitDateDay||t.visitDate;break;case A.Type.DateMillisecond:n=t.visitDateMillisecond||t.visitDate;break;case A.Type.Timestamp:n=t.visitTimestamp;break;case A.Type.TimestampSecond:n=t.visitTimestampSecond||t.visitTimestamp;break;case A.Type.TimestampMillisecond:n=t.visitTimestampMillisecond||t.visitTimestamp;break;case A.Type.TimestampMicrosecond:n=t.visitTimestampMicrosecond||t.visitTimestamp;break;case A.Type.TimestampNanosecond:n=t.visitTimestampNanosecond||t.visitTimestamp;break;case A.Type.Time:n=t.visitTime;break;case A.Type.TimeSecond:n=t.visitTimeSecond||t.visitTime;break;case A.Type.TimeMillisecond:n=t.visitTimeMillisecond||t.visitTime;break;case A.Type.TimeMicrosecond:n=t.visitTimeMicrosecond||t.visitTime;break;case A.Type.TimeNanosecond:n=t.visitTimeNanosecond||t.visitTime;break;case A.Type.Decimal:n=t.visitDecimal;break;case A.Type.List:n=t.visitList;break;case A.Type.Struct:n=t.visitStruct;break;case A.Type.Union:n=t.visitUnion;break;case A.Type.DenseUnion:n=t.visitDenseUnion||t.visitUnion;break;case A.Type.SparseUnion:n=t.visitSparseUnion||t.visitUnion;break;case A.Type.Dictionary:n=t.visitDictionary;break;case A.Type.Interval:n=t.visitInterval;break;case A.Type.IntervalDayTime:n=t.visitIntervalDayTime||t.visitInterval;break;case A.Type.IntervalYearMonth:n=t.visitIntervalYearMonth||t.visitInterval;break;case A.Type.FixedSizeList:n=t.visitFixedSizeList;break;case A.Type.Map:n=t.visitMap;break}if(typeof n=="function")return n;if(!r)return()=>null;throw new Error(`Unrecognized type '${A.Type[i]}'`)}function Ig(t){switch(t.typeId){case A.Type.Null:return A.Type.Null;case A.Type.Int:{let{bitWidth:e,isSigned:r}=t;switch(e){case 8:return r?A.Type.Int8:A.Type.Uint8;case 16:return r?A.Type.Int16:A.Type.Uint16;case 32:return r?A.Type.Int32:A.Type.Uint32;case 64:return r?A.Type.Int64:A.Type.Uint64}return A.Type.Int}case A.Type.Float:switch(t.precision){case A.Precision.HALF:return A.Type.Float16;case A.Precision.SINGLE:return A.Type.Float32;case A.Precision.DOUBLE:return A.Type.Float64}return A.Type.Float;case A.Type.Binary:return A.Type.Binary;case A.Type.Utf8:return A.Type.Utf8;case A.Type.Bool:return A.Type.Bool;case A.Type.Decimal:return A.Type.Decimal;case A.Type.Time:switch(t.unit){case A.TimeUnit.SECOND:return A.Type.TimeSecond;case A.TimeUnit.MILLISECOND:return A.Type.TimeMillisecond;case A.TimeUnit.MICROSECOND:return A.Type.TimeMicrosecond;case A.TimeUnit.NANOSECOND:return A.Type.TimeNanosecond}return A.Type.Time;case A.Type.Timestamp:switch(t.unit){case A.TimeUnit.SECOND:return A.Type.TimestampSecond;case A.TimeUnit.MILLISECOND:return A.Type.TimestampMillisecond;case A.TimeUnit.MICROSECOND:return A.Type.TimestampMicrosecond;case A.TimeUnit.NANOSECOND:return A.Type.TimestampNanosecond}return A.Type.Timestamp;case A.Type.Date:switch(t.unit){case A.DateUnit.DAY:return A.Type.DateDay;case A.DateUnit.MILLISECOND:return A.Type.DateMillisecond}return A.Type.Date;case A.Type.Interval:switch(t.unit){case A.IntervalUnit.DAY_TIME:return A.Type.IntervalDayTime;case A.IntervalUnit.YEAR_MONTH:return A.Type.IntervalYearMonth}return A.Type.Interval;case A.Type.Map:return A.Type.Map;case A.Type.List:return A.Type.List;case A.Type.Struct:return A.Type.Struct;case A.Type.Union:switch(t.mode){case A.UnionMode.Dense:return A.Type.DenseUnion;case A.UnionMode.Sparse:return A.Type.SparseUnion}return A.Type.Union;case A.Type.FixedSizeBinary:return A.Type.FixedSizeBinary;case A.Type.FixedSizeList:return A.Type.FixedSizeList;case A.Type.Dictionary:return A.Type.Dictionary}throw new Error(`Unrecognized type '${A.Type[t.typeId]}'`)}lt.prototype.visitInt8=null;lt.prototype.visitInt16=null;lt.prototype.visitInt32=null;lt.prototype.visitInt64=null;lt.prototype.visitUint8=null;lt.prototype.visitUint16=null;lt.prototype.visitUint32=null;lt.prototype.visitUint64=null;lt.prototype.visitFloat16=null;lt.prototype.visitFloat32=null;lt.prototype.visitFloat64=null;lt.prototype.visitDateDay=null;lt.prototype.visitDateMillisecond=null;lt.prototype.visitTimestampSecond=null;lt.prototype.visitTimestampMillisecond=null;lt.prototype.visitTimestampMicrosecond=null;lt.prototype.visitTimestampNanosecond=null;lt.prototype.visitTimeSecond=null;lt.prototype.visitTimeMillisecond=null;lt.prototype.visitTimeMicrosecond=null;lt.prototype.visitTimeNanosecond=null;lt.prototype.visitDenseUnion=null;lt.prototype.visitSparseUnion=null;lt.prototype.visitIntervalDayTime=null;lt.prototype.visitIntervalYearMonth=null});var Eg=k(Ks=>{"use strict";Object.defineProperty(Ks,"__esModule",{value:!0});Ks.instance=Ks.SetVisitor=void 0;var PN=Nt(),HN=sr(),MN=Io(),zN=fu(),UN=Gt(),hn=dt(),ke=class extends HN.Visitor{};Ks.SetVisitor=ke;var LN=(t,e,r)=>{t[e]=r/864e5|0},xg=(t,e,r)=>{t[e]=r%4294967296|0,t[e+1]=r/4294967296|0},VN=(t,e,r)=>{t[e]=r*1e3%4294967296|0,t[e+1]=r*1e3/4294967296|0},CN=(t,e,r)=>{t[e]=r*1e6%4294967296|0,t[e+1]=r*1e6/4294967296|0},SB=(t,e,r,n)=>{let{[r]:i,[r+1]:f}=e;i!=null&&f!=null&&t.set(n.subarray(0,f-i),i)},WN=({offset:t,values:e},r,n)=>{let i=t+r;n?e[i>>3]|=1<<i%8:e[i>>3]&=~(1<<i%8)},EB=({values:t},e,r)=>{LN(t,e,r.valueOf())},AB=({values:t},e,r)=>{xg(t,e*2,r.valueOf())},ui=({stride:t,values:e},r,n)=>{e[t*r]=n},OB=({stride:t,values:e},r,n)=>{e[t*r]=zN.float64ToUint16(n)},Sg=(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:f}=t,o=UN.toArrayBufferView(f,n);t.values.set(o.subarray(0,i),i*e)}}},KN=({stride:t,values:e},r,n)=>{e.set(n.subarray(0,t),t*r)},YN=({values:t,valueOffsets:e},r,n)=>SB(t,e,r,n),GN=({values:t,valueOffsets:e},r,n)=>{SB(t,e,r,MN.encodeUtf8(n))},ZN=(t,e,r)=>{t.type.bitWidth<64?ui(t,e,r):Sg(t,e,r)},JN=(t,e,r)=>{t.type.precision!==hn.Precision.HALF?ui(t,e,r):OB(t,e,r)},QN=(t,e,r)=>{t.type.unit===hn.DateUnit.DAY?EB(t,e,r):AB(t,e,r)},FB=({values:t},e,r)=>xg(t,e*2,r/1e3),DB=({values:t},e,r)=>xg(t,e*2,r),NB=({values:t},e,r)=>VN(t,e*2,r),RB=({values:t},e,r)=>CN(t,e*2,r),XN=(t,e,r)=>{switch(t.type.unit){case hn.TimeUnit.SECOND:return FB(t,e,r);case hn.TimeUnit.MILLISECOND:return DB(t,e,r);case hn.TimeUnit.MICROSECOND:return NB(t,e,r);case hn.TimeUnit.NANOSECOND:return RB(t,e,r)}},PB=({values:t,stride:e},r,n)=>{t[e*r]=n},HB=({values:t,stride:e},r,n)=>{t[e*r]=n},MB=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},zB=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},$N=(t,e,r)=>{switch(t.type.unit){case hn.TimeUnit.SECOND:return PB(t,e,r);case hn.TimeUnit.MILLISECOND:return HB(t,e,r);case hn.TimeUnit.MICROSECOND:return MB(t,e,r);case hn.TimeUnit.NANOSECOND:return zB(t,e,r)}},eR=({values:t},e,r)=>{t.set(r.subarray(0,4),4*e)},tR=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets;for(let f=-1,o=i[e],s=i[e+1];o<s;)n.set(o++,r.get(++f))},rR=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets,f=r instanceof Map?[...r]:Object.entries(r);for(let o=-1,s=i[e],u=i[e+1];s<u;)n.set(s++,f[++o])},nR=(t,e)=>(r,n,i)=>r&&r.set(t,e[i]),iR=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(i)),fR=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(n.name)),oR=(t,e)=>(r,n,i)=>r&&r.set(t,e[n.name]),sR=(t,e,r)=>{let n=r instanceof Map?fR(e,r):r instanceof PN.Vector?iR(e,r):Array.isArray(r)?nR(e,r):oR(e,r);t.type.children.forEach((i,f)=>n(t.getChildAt(f),i,f))},aR=(t,e,r)=>{t.type.mode===hn.UnionMode.Dense?UB(t,e,r):LB(t,e,r)},UB=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(t.valueOffsets[e],r)},LB=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(e,r)},lR=(t,e,r)=>{let n=t.getKey(e);n!==null&&t.setValue(n,r)},uR=(t,e,r)=>{t.type.unit===hn.IntervalUnit.DAY_TIME?VB(t,e,r):CB(t,e,r)},VB=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},CB=({values:t},e,r)=>{t[e]=r[0]*12+r[1]%12},cR=(t,e,r)=>{let n=t.getChildAt(0),{stride:i}=t;for(let f=-1,o=e*i;++f<i;)n.set(o+f,r.get(f))};ke.prototype.visitBool=WN;ke.prototype.visitInt=ZN;ke.prototype.visitInt8=ui;ke.prototype.visitInt16=ui;ke.prototype.visitInt32=ui;ke.prototype.visitInt64=Sg;ke.prototype.visitUint8=ui;ke.prototype.visitUint16=ui;ke.prototype.visitUint32=ui;ke.prototype.visitUint64=Sg;ke.prototype.visitFloat=JN;ke.prototype.visitFloat16=OB;ke.prototype.visitFloat32=ui;ke.prototype.visitFloat64=ui;ke.prototype.visitUtf8=GN;ke.prototype.visitBinary=YN;ke.prototype.visitFixedSizeBinary=KN;ke.prototype.visitDate=QN;ke.prototype.visitDateDay=EB;ke.prototype.visitDateMillisecond=AB;ke.prototype.visitTimestamp=XN;ke.prototype.visitTimestampSecond=FB;ke.prototype.visitTimestampMillisecond=DB;ke.prototype.visitTimestampMicrosecond=NB;ke.prototype.visitTimestampNanosecond=RB;ke.prototype.visitTime=$N;ke.prototype.visitTimeSecond=PB;ke.prototype.visitTimeMillisecond=HB;ke.prototype.visitTimeMicrosecond=MB;ke.prototype.visitTimeNanosecond=zB;ke.prototype.visitDecimal=eR;ke.prototype.visitList=tR;ke.prototype.visitStruct=sR;ke.prototype.visitUnion=aR;ke.prototype.visitDenseUnion=UB;ke.prototype.visitSparseUnion=LB;ke.prototype.visitDictionary=lR;ke.prototype.visitInterval=uR;ke.prototype.visitIntervalDayTime=VB;ke.prototype.visitIntervalYearMonth=CB;ke.prototype.visitFixedSizeList=cR;ke.prototype.visitMap=rR;Ks.instance=new ke});var WB=k(Ys=>{"use strict";Object.defineProperty(Ys,"__esModule",{value:!0});Ys.instance=Ys.GetBuilderCtor=void 0;var pR=sr(),dR=pd(),mR=og(),Ag=ag(),wR=lg(),hR=cg(),bR=pg(),gR=vg(),vd=dg(),Og=gg(),Ki=wg(),yR=_g(),jR=Tg(),qR=sg(),_R=kg(),uu=bg(),cu=hg(),Fg=Bg(),vR=md(),Dg=class extends pR.Visitor{visitNull(){return qR.NullBuilder}visitBool(){return mR.BoolBuilder}visitInt(){return Ki.IntBuilder}visitInt8(){return Ki.Int8Builder}visitInt16(){return Ki.Int16Builder}visitInt32(){return Ki.Int32Builder}visitInt64(){return Ki.Int64Builder}visitUint8(){return Ki.Uint8Builder}visitUint16(){return Ki.Uint16Builder}visitUint32(){return Ki.Uint32Builder}visitUint64(){return Ki.Uint64Builder}visitFloat(){return vd.FloatBuilder}visitFloat16(){return vd.Float16Builder}visitFloat32(){return vd.Float32Builder}visitFloat64(){return vd.Float64Builder}visitUtf8(){return vR.Utf8Builder}visitBinary(){return dR.BinaryBuilder}visitFixedSizeBinary(){return bR.FixedSizeBinaryBuilder}visitDate(){return Ag.DateBuilder}visitDateDay(){return Ag.DateDayBuilder}visitDateMillisecond(){return Ag.DateMillisecondBuilder}visitTimestamp(){return uu.TimestampBuilder}visitTimestampSecond(){return uu.TimestampSecondBuilder}visitTimestampMillisecond(){return uu.TimestampMillisecondBuilder}visitTimestampMicrosecond(){return uu.TimestampMicrosecondBuilder}visitTimestampNanosecond(){return uu.TimestampNanosecondBuilder}visitTime(){return cu.TimeBuilder}visitTimeSecond(){return cu.TimeSecondBuilder}visitTimeMillisecond(){return cu.TimeMillisecondBuilder}visitTimeMicrosecond(){return cu.TimeMicrosecondBuilder}visitTimeNanosecond(){return cu.TimeNanosecondBuilder}visitDecimal(){return wR.DecimalBuilder}visitList(){return yR.ListBuilder}visitStruct(){return _R.StructBuilder}visitUnion(){return Fg.UnionBuilder}visitDenseUnion(){return Fg.DenseUnionBuilder}visitSparseUnion(){return Fg.SparseUnionBuilder}visitDictionary(){return hR.DictionaryBuilder}visitInterval(){return Og.IntervalBuilder}visitIntervalDayTime(){return Og.IntervalDayTimeBuilder}visitIntervalYearMonth(){return Og.IntervalYearMonthBuilder}visitFixedSizeList(){return gR.FixedSizeListBuilder}visitMap(){return jR.MapBuilder}};Ys.GetBuilderCtor=Dg;Ys.instance=new Dg});var kd=k(K=>{"use strict";Object.defineProperty(K,"__esModule",{value:!0});K.DenseUnionBuilder=K.SparseUnionBuilder=K.UnionBuilder=K.StructBuilder=K.MapBuilder=K.FixedSizeListBuilder=K.ListBuilder=K.BinaryBuilder=K.Utf8Builder=K.IntervalYearMonthBuilder=K.IntervalDayTimeBuilder=K.IntervalBuilder=K.TimestampNanosecondBuilder=K.TimestampMicrosecondBuilder=K.TimestampMillisecondBuilder=K.TimestampSecondBuilder=K.TimestampBuilder=K.TimeNanosecondBuilder=K.TimeMicrosecondBuilder=K.TimeMillisecondBuilder=K.TimeSecondBuilder=K.TimeBuilder=K.Uint64Builder=K.Uint32Builder=K.Uint16Builder=K.Uint8Builder=K.Int64Builder=K.Int32Builder=K.Int16Builder=K.Int8Builder=K.IntBuilder=K.Float64Builder=K.Float32Builder=K.Float16Builder=K.FloatBuilder=K.FixedSizeBinaryBuilder=K.DictionaryBuilder=K.DecimalBuilder=K.DateMillisecondBuilder=K.DateDayBuilder=K.DateBuilder=K.NullBuilder=K.BoolBuilder=K.Builder=void 0;var TR=It();Object.defineProperty(K,"Builder",{enumerable:!0,get:function(){return TR.Builder}});var kR=og();Object.defineProperty(K,"BoolBuilder",{enumerable:!0,get:function(){return kR.BoolBuilder}});var BR=sg();Object.defineProperty(K,"NullBuilder",{enumerable:!0,get:function(){return BR.NullBuilder}});var Ng=ag();Object.defineProperty(K,"DateBuilder",{enumerable:!0,get:function(){return Ng.DateBuilder}});Object.defineProperty(K,"DateDayBuilder",{enumerable:!0,get:function(){return Ng.DateDayBuilder}});Object.defineProperty(K,"DateMillisecondBuilder",{enumerable:!0,get:function(){return Ng.DateMillisecondBuilder}});var IR=lg();Object.defineProperty(K,"DecimalBuilder",{enumerable:!0,get:function(){return IR.DecimalBuilder}});var xR=cg();Object.defineProperty(K,"DictionaryBuilder",{enumerable:!0,get:function(){return xR.DictionaryBuilder}});var SR=pg();Object.defineProperty(K,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return SR.FixedSizeBinaryBuilder}});var Td=dg();Object.defineProperty(K,"FloatBuilder",{enumerable:!0,get:function(){return Td.FloatBuilder}});Object.defineProperty(K,"Float16Builder",{enumerable:!0,get:function(){return Td.Float16Builder}});Object.defineProperty(K,"Float32Builder",{enumerable:!0,get:function(){return Td.Float32Builder}});Object.defineProperty(K,"Float64Builder",{enumerable:!0,get:function(){return Td.Float64Builder}});var Yi=wg();Object.defineProperty(K,"IntBuilder",{enumerable:!0,get:function(){return Yi.IntBuilder}});Object.defineProperty(K,"Int8Builder",{enumerable:!0,get:function(){return Yi.Int8Builder}});Object.defineProperty(K,"Int16Builder",{enumerable:!0,get:function(){return Yi.Int16Builder}});Object.defineProperty(K,"Int32Builder",{enumerable:!0,get:function(){return Yi.Int32Builder}});Object.defineProperty(K,"Int64Builder",{enumerable:!0,get:function(){return Yi.Int64Builder}});Object.defineProperty(K,"Uint8Builder",{enumerable:!0,get:function(){return Yi.Uint8Builder}});Object.defineProperty(K,"Uint16Builder",{enumerable:!0,get:function(){return Yi.Uint16Builder}});Object.defineProperty(K,"Uint32Builder",{enumerable:!0,get:function(){return Yi.Uint32Builder}});Object.defineProperty(K,"Uint64Builder",{enumerable:!0,get:function(){return Yi.Uint64Builder}});var pu=hg();Object.defineProperty(K,"TimeBuilder",{enumerable:!0,get:function(){return pu.TimeBuilder}});Object.defineProperty(K,"TimeSecondBuilder",{enumerable:!0,get:function(){return pu.TimeSecondBuilder}});Object.defineProperty(K,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return pu.TimeMillisecondBuilder}});Object.defineProperty(K,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return pu.TimeMicrosecondBuilder}});Object.defineProperty(K,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return pu.TimeNanosecondBuilder}});var du=bg();Object.defineProperty(K,"TimestampBuilder",{enumerable:!0,get:function(){return du.TimestampBuilder}});Object.defineProperty(K,"TimestampSecondBuilder",{enumerable:!0,get:function(){return du.TimestampSecondBuilder}});Object.defineProperty(K,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return du.TimestampMillisecondBuilder}});Object.defineProperty(K,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return du.TimestampMicrosecondBuilder}});Object.defineProperty(K,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return du.TimestampNanosecondBuilder}});var Rg=gg();Object.defineProperty(K,"IntervalBuilder",{enumerable:!0,get:function(){return Rg.IntervalBuilder}});Object.defineProperty(K,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return Rg.IntervalDayTimeBuilder}});Object.defineProperty(K,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return Rg.IntervalYearMonthBuilder}});var ER=md();Object.defineProperty(K,"Utf8Builder",{enumerable:!0,get:function(){return ER.Utf8Builder}});var AR=pd();Object.defineProperty(K,"BinaryBuilder",{enumerable:!0,get:function(){return AR.BinaryBuilder}});var OR=_g();Object.defineProperty(K,"ListBuilder",{enumerable:!0,get:function(){return OR.ListBuilder}});var FR=vg();Object.defineProperty(K,"FixedSizeListBuilder",{enumerable:!0,get:function(){return FR.FixedSizeListBuilder}});var DR=Tg();Object.defineProperty(K,"MapBuilder",{enumerable:!0,get:function(){return DR.MapBuilder}});var NR=kg();Object.defineProperty(K,"StructBuilder",{enumerable:!0,get:function(){return NR.StructBuilder}});var Pg=Bg();Object.defineProperty(K,"UnionBuilder",{enumerable:!0,get:function(){return Pg.UnionBuilder}});Object.defineProperty(K,"SparseUnionBuilder",{enumerable:!0,get:function(){return Pg.SparseUnionBuilder}});Object.defineProperty(K,"DenseUnionBuilder",{enumerable:!0,get:function(){return Pg.DenseUnionBuilder}});var Hg=dt(),RR=md(),PR=It(),KB=Eg(),YB=WB();PR.Builder.new=GB;function GB(t){let e=t.type,r=new(YB.instance.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;e.children.forEach((o,s)=>{let{type:u}=o,l=f(o,s);r.children.push(GB({...l,type:u}))})}return r}Object.keys(Hg.Type).map(t=>Hg.Type[t]).filter(t=>typeof t=="number"&&t!==Hg.Type.NONE).forEach(t=>{let e=YB.instance.visit(t);e.prototype._setValue=KB.instance.getVisitFn(t)});RR.Utf8Builder.prototype._setValue=KB.instance.visitBinary});var ZB=k(Gs=>{"use strict";Object.defineProperty(Gs,"__esModule",{value:!0});Gs.Block=Gs.Footer=void 0;var HR=zi(),Bd=Bf(),bn=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 bn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFooter(e,r){return e.setPosition(e.position()+HR.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):Bd.MetadataVersion.V1}schema(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new Bd.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 Id).__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 Id).__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 Bd.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,Bd.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,f,o){return bn.startFooter(e),bn.addVersion(e,r),bn.addSchema(e,n),bn.addDictionaries(e,i),bn.addRecordBatches(e,f),bn.addCustomMetadata(e,o),bn.endFooter(e)}};Gs.Footer=bn;var Id=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()}};Gs.Block=Id});var Ug=k(Zs=>{"use strict";Object.defineProperty(Zs,"__esModule",{value:!0});Zs.FileBlock=Zs.Footer=void 0;var Rn=ZB(),Mg=zi(),JB=Mg.flatbuffers.Long,MR=Mg.flatbuffers.Builder,zR=Mg.flatbuffers.ByteBuffer,QB=er(),XB=dt(),UR=Gt(),zg=class{constructor(e,r=XB.MetadataVersion.V4,n,i){this.schema=e,this.version=r,n&&(this._recordBatches=n),i&&(this._dictionaryBatches=i)}static decode(e){e=new zR(UR.toUint8Array(e));let r=Rn.Footer.getRootAsFooter(e),n=QB.Schema.decode(r.schema());return new $B(n,r)}static encode(e){let r=new MR,n=QB.Schema.encode(r,e.schema);Rn.Footer.startRecordBatchesVector(r,e.numRecordBatches),[...e.recordBatches()].slice().reverse().forEach(o=>Df.encode(r,o));let i=r.endVector();Rn.Footer.startDictionariesVector(r,e.numDictionaries),[...e.dictionaryBatches()].slice().reverse().forEach(o=>Df.encode(r,o));let f=r.endVector();return Rn.Footer.startFooter(r),Rn.Footer.addSchema(r,n),Rn.Footer.addVersion(r,XB.MetadataVersion.V4),Rn.Footer.addRecordBatches(r,i),Rn.Footer.addDictionaries(r,f),Rn.Footer.finishFooterBuffer(r,Rn.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}};Zs.Footer=zg;var $B=class extends zg{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 Df.decode(r)}return null}getDictionaryBatch(e){if(e>=0&&e<this.numDictionaries){let r=this._footer.dictionaries(e);if(r)return Df.decode(r)}return null}},Df=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 Df(e.metaDataLength(),e.bodyLength(),e.offset())}static encode(e,r){let{metaDataLength:n}=r,i=new JB(r.offset,0),f=new JB(r.bodyLength,0);return Rn.Block.createBlock(e,i,n,f)}};Zs.FileBlock=Df});var Hf=k(Pf=>{"use strict";Object.defineProperty(Pf,"__esModule",{value:!0});Pf.AsyncByteStream=Pf.ByteStream=Pf.AsyncByteQueue=void 0;var Nf=nu(),eI=Io(),mu=Os(),Lg=Gt(),Js=mr(),Vg=class extends mu.AsyncQueue{write(e){if((e=Lg.toUint8Array(e)).byteLength>0)return super.write(e)}toString(e=!1){return e?eI.decodeUtf8(this.toUint8Array(!0)):this.toUint8Array(!1).then(eI.decodeUtf8)}toUint8Array(e=!1){return e?Lg.joinUint8Arrays(this._values)[0]:(async()=>{let r=[],n=0;for await(let i of this)r.push(i),n+=i.byteLength;return Lg.joinUint8Arrays(r,n)[0]})()}};Pf.AsyncByteQueue=Vg;var tI=class{constructor(e){e&&(this.source=new rI(Nf.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)}};Pf.ByteStream=tI;var xd=class{constructor(e){e instanceof xd?this.source=e.source:e instanceof Vg?this.source=new Rf(Nf.default.fromAsyncIterable(e)):Js.isReadableNodeStream(e)?this.source=new Rf(Nf.default.fromNodeStream(e)):Js.isReadableDOMStream(e)?this.source=new Rf(Nf.default.fromDOMStream(e)):Js.isFetchResponse(e)?this.source=new Rf(Nf.default.fromDOMStream(e.body)):Js.isIterable(e)?this.source=new Rf(Nf.default.fromIterable(e)):Js.isPromise(e)?this.source=new Rf(Nf.default.fromAsyncIterable(e)):Js.isAsyncIterable(e)&&(this.source=new Rf(Nf.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)}};Pf.AsyncByteStream=xd;var rI=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)||mu.ITERATOR_DONE)}return(e){return Object.create(this.source.return&&this.source.return(e)||mu.ITERATOR_DONE)}},Rf=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)||mu.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)||mu.ITERATOR_DONE;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)}}});var Cg=k(Qs=>{"use strict";Object.defineProperty(Qs,"__esModule",{value:!0});Qs.AsyncRandomAccessFile=Qs.RandomAccessFile=void 0;var nI=Hf(),LR=Gt(),iI=class extends nI.ByteStream{constructor(e,r){super();this.position=0,this.buffer=LR.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}}};Qs.RandomAccessFile=iI;var fI=class extends nI.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 f=i,o=0,s=0,u=Math.min(n,f+Math.min(n-f,e)),l=new Uint8Array(Math.max(0,(this.position=u)-f));for(;(f+=s)<u&&(o+=s)<l.byteLength;)({bytesRead:s}=await r.read(l,o,l.byteLength-o,f));return l}return null}async readAt(e,r){this._pending&&await 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(await n.read(o,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}}};Qs.AsyncRandomAccessFile=fI});var Kg=k(ci=>{"use strict";Object.defineProperty(ci,"__esModule",{value:!0});ci.Int128=ci.Int64=ci.Uint64=ci.BaseInt64=void 0;var VR=1<<16;function Xs(t){return t<0&&(t=4294967295+t+1),`0x${t.toString(16)}`}var $s=8,Wg=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8],Sd=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?VR: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`${Xs(this.buffer[1])} ${Xs(this.buffer[0])}`}};ci.BaseInt64=Sd;var et=class extends Sd{times(e){return this._times(e),this}plus(e){return this._plus(e),this}static from(e,r=new Uint32Array(2)){return et.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return et.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.length,i=new et(r);for(let f=0;f<n;){let o=$s<n-f?$s:n-f,s=new et(new Uint32Array([parseInt(e.substr(f,o),10),0])),u=new et(new Uint32Array([Wg[o],0]));i.times(u),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;)et.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new et(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new et(new Uint32Array(e.buffer)).plus(r)}};ci.Uint64=et;var Cr=class extends Sd{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 Cr.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return Cr.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.startsWith("-"),i=e.length,f=new Cr(r);for(let o=n?1:0;o<i;){let s=$s<i-o?$s:i-o,u=new Cr(new Uint32Array([parseInt(e.substr(o,s),10),0])),l=new Cr(new Uint32Array([Wg[s],0]));f.times(l),f.plus(u),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;)Cr.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new Cr(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new Cr(new Uint32Array(e.buffer)).plus(r)}};ci.Int64=Cr;var Pn=class{constructor(e){this.buffer=e}high(){return new Cr(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2))}low(){return new Cr(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 et(new Uint32Array([this.buffer[3],0])),n=new et(new Uint32Array([this.buffer[2],0])),i=new et(new Uint32Array([this.buffer[1],0])),f=new et(new Uint32Array([this.buffer[0],0])),o=new et(new Uint32Array([e.buffer[3],0])),s=new et(new Uint32Array([e.buffer[2],0])),u=new et(new Uint32Array([e.buffer[1],0])),l=new et(new Uint32Array([e.buffer[0],0])),c=et.multiply(f,l);this.buffer[0]=c.low();let w=new et(new Uint32Array([c.high(),0]));return c=et.multiply(i,l),w.plus(c),c=et.multiply(f,u),w.plus(c),this.buffer[1]=w.low(),this.buffer[3]=w.lessThan(c)?1:0,this.buffer[2]=w.high(),new et(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2)).plus(et.multiply(n,l)).plus(et.multiply(i,u)).plus(et.multiply(f,s)),this.buffer[3]+=et.multiply(r,l).plus(et.multiply(n,u)).plus(et.multiply(i,s)).plus(et.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`${Xs(this.buffer[3])} ${Xs(this.buffer[2])} ${Xs(this.buffer[1])} ${Xs(this.buffer[0])}`}static multiply(e,r){return new Pn(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new Pn(new Uint32Array(e.buffer)).plus(r)}static from(e,r=new Uint32Array(4)){return Pn.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(4)){return Pn.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(4)){let n=e.startsWith("-"),i=e.length,f=new Pn(r);for(let o=n?1:0;o<i;){let s=$s<i-o?$s:i-o,u=new Pn(new Uint32Array([parseInt(e.substr(o,s),10),0,0,0])),l=new Pn(new Uint32Array([Wg[s],0,0,0]));f.times(l),f.plus(u),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;)Pn.from(e[n],new Uint32Array(r.buffer,r.byteOffset+4*4*n,4));return r}};ci.Int128=Pn});var lI=k(ea=>{"use strict";Object.defineProperty(ea,"__esModule",{value:!0});ea.JSONVectorLoader=ea.VectorLoader=void 0;var Jt=Dn(),CR=er(),Gi=$e(),WR=sr(),oI=si(),KR=Io(),Ed=Kg(),sI=dt(),pi=Gt(),Yg=class extends WR.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 CR.Field?e.type:e)}visitNull(e,{length:r}=this.nextFieldNode()){return Jt.Data.Null(e,0,r)}visitBool(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Bool(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitInt(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Int(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFloat(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Float(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitUtf8(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.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 Jt.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 Jt.Data.FixedSizeBinary(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDate(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Date(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTimestamp(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Timestamp(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTime(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Time(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDecimal(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Decimal(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitList(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.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 Jt.Data.Struct(e,0,r,n,this.readNullBitmap(e,n),this.visitMany(e.children))}visitUnion(e){return e.mode===sI.UnionMode.Sparse?this.visitSparseUnion(e):this.visitDenseUnion(e)}visitDenseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.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 Jt.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 Jt.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 Jt.Data.Interval(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFixedSizeList(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.FixedSizeList(e,0,r,n,this.readNullBitmap(e,n),this.visit(e.children[0]))}visitMap(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.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)}};ea.VectorLoader=Yg;var aI=class extends Yg{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):oI.packBools(this.sources[n])}readOffsets(e,{offset:r}=this.nextBufferRange()){return pi.toArrayBufferView(Uint8Array,pi.toArrayBufferView(Int32Array,this.sources[r]))}readTypeIds(e,{offset:r}=this.nextBufferRange()){return pi.toArrayBufferView(Uint8Array,pi.toArrayBufferView(e.ArrayType,this.sources[r]))}readData(e,{offset:r}=this.nextBufferRange()){let{sources:n}=this;return Gi.DataType.isTimestamp(e)||(Gi.DataType.isInt(e)||Gi.DataType.isTime(e))&&e.bitWidth===64||Gi.DataType.isDate(e)&&e.unit===sI.DateUnit.MILLISECOND?pi.toArrayBufferView(Uint8Array,Ed.Int64.convertArray(n[r])):Gi.DataType.isDecimal(e)?pi.toArrayBufferView(Uint8Array,Ed.Int128.convertArray(n[r])):Gi.DataType.isBinary(e)||Gi.DataType.isFixedSizeBinary(e)?YR(n[r]):Gi.DataType.isBool(e)?oI.packBools(n[r]):Gi.DataType.isUtf8(e)?KR.encodeUtf8(n[r].join("")):pi.toArrayBufferView(Uint8Array,pi.toArrayBufferView(e.ArrayType,n[r].map(i=>+i)))}};ea.JSONVectorLoader=aI;function YR(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 wu=k(ra=>{"use strict";Object.defineProperty(ra,"__esModule",{value:!0});ra.StructRow=ra.MapRow=void 0;var uI=tg(),ar=Symbol.for("parent"),ta=Symbol.for("rowIndex"),Wr=Symbol.for("keyToIdx"),Kr=Symbol.for("idxToVal"),Gg=Symbol.for("nodejs.util.inspect.custom"),di=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[Wr]||(this[Wr]=new Map),i=n.get(e);if(i!==void 0){let f=this[Kr]||(this[Kr]=new Array(this.size));(r=f[i])!==void 0||(f[i]=r=this.getValue(i))}else if((i=this.getIndex(e))>-1){n.set(e,i);let f=this[Kr]||(this[Kr]=new Array(this.size));(r=f[i])!==void 0||(f[i]=r=this.getValue(i))}}return r}set(e,r){if(e!=null){let n=this[Wr]||(this[Wr]=new Map),i=n.get(e);if(i===void 0&&n.set(e,i=this.getIndex(e)),i>-1){let f=this[Kr]||(this[Kr]=new Array(this.size));f[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[Wr]||(this[Wr]=new Map),i=this[Kr]||(this[Kr]=new Array(this.size));for(let f,o,s=0,u,l;!((u=e.next()).done||(l=r.next()).done);++s)f=u.value,o=l.value,i[s]=o,n.has(f)||n.set(f,s),yield[f,o]}forEach(e,r){let n=this.keys(),i=this.values(),f=r===void 0?e:(u,l,c)=>e.call(r,u,l,c),o=this[Wr]||(this[Wr]=new Map),s=this[Kr]||(this[Kr]=new Array(this.size));for(let u,l,c=0,w,p;!((w=n.next()).done||(p=i.next()).done);++c)u=w.value,l=p.value,s[c]=l,o.has(u)||o.set(u,c),f(l,u,this)}toArray(){return[...this.values()]}toJSON(){let e={};return this.forEach((r,n)=>e[n]=r),e}inspect(){return this.toString()}[Gg](){return this.toString()}toString(){let e=[];return this.forEach((r,n)=>{n=uI.valueToString(n),r=uI.valueToString(r),e.push(`${n}: ${r}`)}),`{ ${e.join(", ")} }`}};di[Symbol.toStringTag]=(t=>(Object.defineProperties(t,{size:{writable:!0,enumerable:!1,configurable:!1,value:0},[ar]:{writable:!0,enumerable:!1,configurable:!1,value:null},[ta]:{writable:!0,enumerable:!1,configurable:!1,value:-1}}),t[Symbol.toStringTag]="Row"))(di.prototype);var cI=class extends di{constructor(e){super(e,e.length);return GR(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)}};ra.MapRow=cI;var pI=class extends di{constructor(e){super(e,e.type.children.length);return dI(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[ta])}setValue(e,r){return this[ar].getChildAt(e).set(this[ta],r)}};ra.StructRow=pI;Object.setPrototypeOf(di.prototype,Map.prototype);var dI=(()=>{let t={enumerable:!0,configurable:!1,get:null,set:null};return e=>{let r=-1,n=e[Wr]||(e[Wr]=new Map),i=o=>function(){return this.get(o)},f=o=>function(s){return this.set(o,s)};for(let o of e.keys())n.set(o,++r),t.get=i(o),t.set=f(o),Object.prototype.hasOwnProperty.call(e,o)||(t.enumerable=!0,Object.defineProperty(e,o,t)),Object.prototype.hasOwnProperty.call(e,r)||(t.enumerable=!1,Object.defineProperty(e,r,t));return t.get=t.set=null,e}})(),GR=(()=>{if(typeof Proxy=="undefined")return dI;let t=di.prototype.has,e=di.prototype.get,r=di.prototype.set,n=di.prototype.getKey,i={isExtensible(){return!1},deleteProperty(){return!1},preventExtensions(){return!0},ownKeys(f){return[...f.keys()].map(o=>`${o}`)},has(f,o){switch(o){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 ta:case Kr:case Wr:case Gg:return!0}return typeof o=="number"&&!f.has(o)&&(o=f.getKey(o)),f.has(o)},get(f,o,s){switch(o){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 ta:case Kr:case Wr:case Gg:return Reflect.get(f,o,s)}return typeof o=="number"&&!t.call(s,o)&&(o=n.call(s,o)),e.call(s,o)},set(f,o,s,u){switch(o){case ar:case ta:case Kr:case Wr:return Reflect.set(f,o,s,u);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 o=="number"&&!t.call(u,o)&&(o=n.call(u,o)),t.call(u,o)?!!r.call(u,o,s):!1}};return f=>new Proxy(f,i)})()});var bu=k(Mf=>{"use strict";Object.defineProperty(Mf,"__esModule",{value:!0});Mf.createElementComparator=Mf.clampRange=Mf.clampIndex=void 0;var mI=Nt(),wI=wu(),ZR=Gt(),hI=mr();function JR(t,e,r){let n=t.length,i=e>-1?e:n+e%n;return r?r(t,i):i}Mf.clampIndex=JR;var bI;function QR(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&&(bI=f,f=o,o=bI),o>i&&(o=i),n?n(t,f,o):[f,o]}Mf.clampRange=QR;var XR=hI.BigIntAvailable?hI.BigInt(0):0,gI=t=>t!==t;function hu(t){let e=typeof t;if(e!=="object"||t===null)return gI(t)?gI:e!=="bigint"?r=>r===t:r=>XR+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?ZR.compareArrayLike(t,r):!1:t instanceof Map?eP(t):Array.isArray(t)?$R(t):t instanceof mI.Vector?tP(t):rP(t)}Mf.createElementComparator=hu;function $R(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=hu(t[r]);return Ad(e)}function eP(t){let e=-1,r=[];return t.forEach(n=>r[++e]=hu(n)),Ad(r)}function tP(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=hu(t.get(r));return Ad(e)}function rP(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]=hu(t[e[n]]);return Ad(r,e)}function Ad(t,e){return r=>{if(!r||typeof r!="object")return!1;switch(r.constructor){case Array:return nP(t,r);case Map:case wI.MapRow:case wI.StructRow:return yI(t,r,r.keys());case Object:case void 0:return yI(t,r,e||Object.keys(r))}return r instanceof mI.Vector?iP(t,r):!1}}function nP(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 iP(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 yI(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,u=f.next(),l=n.next(),c=i.next();for(;o<s&&!l.done&&!c.done&&!u.done&&!(l.value!==c.value||!t[o](u.value));++o,l=n.next(),c=i.next(),u=f.next());return o===s&&l.done&&c.done&&u.done?!0:(n.return&&n.return(),i.return&&i.return(),f.return&&f.return(),!1)}});var na=k(Rr=>{"use strict";Object.defineProperty(Rr,"__esModule",{value:!0});Rr.selectColumnChildrenArgs=Rr.selectVectorChildrenArgs=Rr.selectChunkArgs=Rr.selectFieldArgs=Rr.selectColumnArgs=Rr.selectArgs=void 0;var jI=Dn(),qI=er(),zf=ia(),gu=Nt(),_I=$e(),fP=Lf(),Uf=Array.isArray;Rr.selectArgs=(t,e)=>Od(t,e,[],0);Rr.selectColumnArgs=t=>{let[e,r]=Jg(t,[[],[]]);return r.map((n,i)=>n instanceof zf.Column?zf.Column.new(n.field.clone(e[i]),n):n instanceof gu.Vector?zf.Column.new(e[i],n):zf.Column.new(e[i],[]))};Rr.selectFieldArgs=t=>Jg(t,[[],[]]);Rr.selectChunkArgs=(t,e)=>Zg(t,e,[],0);Rr.selectVectorChildrenArgs=(t,e)=>vI(t,e,[],0);Rr.selectColumnChildrenArgs=(t,e)=>TI(t,e,[],0);function Od(t,e,r,n){let i,f=n,o=-1,s=e.length;for(;++o<s;)Uf(i=e[o])?f=Od(t,i,r,f).length:i instanceof t&&(r[f++]=i);return r}function Zg(t,e,r,n){let i,f=n,o=-1,s=e.length;for(;++o<s;)Uf(i=e[o])?f=Zg(t,i,r,f).length:i instanceof fP.Chunked?f=Zg(t,i.chunks,r,f).length:i instanceof t&&(r[f++]=i);return r}function vI(t,e,r,n){let i,f=n,o=-1,s=e.length;for(;++o<s;)Uf(i=e[o])?f=vI(t,i,r,f).length:i instanceof t?f=Od(gu.Vector,i.schema.fields.map((u,l)=>i.getChildAt(l)),r,f).length:i instanceof gu.Vector&&(r[f++]=i);return r}function TI(t,e,r,n){let i,f=n,o=-1,s=e.length;for(;++o<s;)Uf(i=e[o])?f=TI(t,i,r,f).length:i instanceof t?f=Od(zf.Column,i.schema.fields.map((u,l)=>zf.Column.new(u,i.getChildAt(l))),r,f).length:i instanceof zf.Column&&(r[f++]=i);return r}var oP=(t,[e,r],n)=>(t[0][n]=e,t[1][n]=r,t);function Jg(t,e){let r,n;switch(n=t.length){case 0:return e;case 1:if(r=e[0],!t[0])return e;if(Uf(t[0]))return Jg(t[0],e);t[0]instanceof jI.Data||t[0]instanceof gu.Vector||t[0]instanceof _I.DataType||([r,t]=Object.entries(t[0]).reduce(oP,e));break;default:Uf(r=t[n-1])?t=Uf(t[0])?t[0]:t.slice(0,n-1):(t=Uf(t[0])?t[0]:t,r=[])}let i=-1,f=-1,o=-1,s=t.length,u,l,[c,w]=e;for(;++o<s;)l=t[o],l instanceof zf.Column&&(w[++f]=l)?c[++i]=l.field.clone(r[o],l.type,!0):({[o]:u=o}=r,l instanceof _I.DataType&&(w[++f]=l)?c[++i]=qI.Field.new(u,l,!0):l&&l.type&&(w[++f]=l)&&(l instanceof jI.Data&&(w[f]=l=gu.Vector.new(l)),c[++i]=qI.Field.new(u,l.type,!0)));return e}});var Lf=k(Fd=>{"use strict";Object.defineProperty(Fd,"__esModule",{value:!0});Fd.Chunked=void 0;var sP=bu(),kI=$e(),aP=na(),BI=Nt(),II=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}},Zi=class extends BI.AbstractVector{constructor(e,r=[],n=lP(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 aP.selectChunkArgs(BI.Vector,e)}static concat(...e){let r=Zi.flatten(...e);return new Zi(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(kI.DataType.isDictionary(this._type)){if(!this._indices){let e=this._chunks;this._indices=e.length===1?e[0].indices:Zi.concat(...e.map(r=>r.indices))}return this._indices}return null}get dictionary(){return kI.DataType.isDictionary(this._type)?this._chunks[this._chunks.length-1].data.dictionary:null}[Symbol.iterator](){return new II(this._chunks)}clone(e=this._chunks){return new Zi(this._type,e)}concat(...e){return this.clone(Zi.flatten(this,...e))}slice(e,r){return sP.clampRange(this,e,r,this._sliceInternal)}getChildAt(e){if(e<0||e>=this._numChildren)return null;let r=this._children||(this._children=[]),n,i,f;return(n=r[e])?n:(i=(this._type.children||[])[e])&&(f=this._chunks.map(o=>o.getChildAt(e)).filter(o=>o!=null),f.length>0)?r[e]=new Zi(i.type,f):null}search(e,r){let n=e,i=this._chunkOffsets,f=i.length-1;if(n<0||n>=i[f])return null;if(f<=1)return r?r(this,0,n):[0,n];let o=0,s=0,u=0;do{if(o+1===f)return r?r(this,o,n-s):[o,n-s];u=o+(f-o)/2|0,n>=i[u]?o=u:f=u}while(n<i[f]&&n>=(s=i[o]));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,f)=>n[i].set(f,r))}indexOf(e,r){return r&&typeof r=="number"?this.search(r,(n,i,f)=>this.indexOfInternal(n,i,f,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,f=new Array(r);for(let u=-1;++u<r;)i+=(f[u]=e[u].toArray()).length;n!==f[0].constructor&&(n=f[0].constructor);let o=new n(i),s=n===Array?cP:uP;for(let u=-1,l=0;++u<r;)l=s(f[u],o,l);return o}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 f=r-1,o=e.length,s=n,u=0,l=-1;for(;++f<o;){if(~(l=e[f].indexOf(i,s)))return u+l;s=0,u+=e[f].length}return-1}_sliceInternal(e,r,n){let i=[],{chunks:f,_chunkOffsets:o}=e;for(let s=-1,u=f.length;++s<u;){let l=f[s],c=l.length,w=o[s];if(w>=n)break;if(r>=w+c)continue;if(w>=r&&w+c<=n){i.push(l);continue}let p=Math.max(0,r-w),g=Math.min(n-w,c);i.push(l.slice(p,g))}return e.clone(i)}};Fd.Chunked=Zi;function lP(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 uP=(t,e,r)=>(e.set(t,r),r+t.length),cP=(t,e,r)=>{let n=r;for(let i=-1,f=t.length;++i<f;)e[n++]=t[i];return n}});var ia=k(Dd=>{"use strict";Object.defineProperty(Dd,"__esModule",{value:!0});Dd.Column=void 0;var xI=er(),SI=Nt(),Qg=Lf(),Uo=class extends Qg.Chunked{constructor(e,r=[],n){r=Qg.Chunked.flatten(...r);super(e.type,r,n);if(this._field=e,r.length===1&&!(this instanceof Xg))return new Xg(e,r[0],this._chunkOffsets)}static new(...e){let[r,n,...i]=e;typeof r!="string"&&!(r instanceof xI.Field)&&(n=r,r="");let f=Qg.Chunked.flatten(Array.isArray(n)?[...n,...i]:n instanceof SI.Vector?[n,...i]:[SI.Vector.new(n,...i)]);if(typeof r=="string"){let o=f[0].data.type;r=new xI.Field(r,o,!0)}else!r.nullable&&f.some(({nullCount:o})=>o>0)&&(r=r.clone({nullable:!0}));return new Uo(r,f)}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 Uo(this._field,e)}getChildAt(e){if(e<0||e>=this.numChildren)return null;let r=this._children||(this._children=[]),n,i,f;return(n=r[e])?n:(i=(this.type.children||[])[e])&&(f=this._chunks.map(o=>o.getChildAt(e)).filter(o=>o!=null),f.length>0)?r[e]=new Uo(i,f):null}};Dd.Column=Uo;var Xg=class extends Uo{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 EI=k(fa=>{"use strict";Object.defineProperty(fa,"__esModule",{value:!0});fa.instance=fa.TypeAssembler=void 0;var pP=zi(),dP=pP.flatbuffers.Long,mP=sr(),se=Bf(),$g=class extends mP.Visitor{visit(e,r){return e==null||r==null?void 0:super.visit(e,r)}visitNull(e,r){return se.Null.startNull(r),se.Null.endNull(r)}visitInt(e,r){return se.Int.startInt(r),se.Int.addBitWidth(r,e.bitWidth),se.Int.addIsSigned(r,e.isSigned),se.Int.endInt(r)}visitFloat(e,r){return se.FloatingPoint.startFloatingPoint(r),se.FloatingPoint.addPrecision(r,e.precision),se.FloatingPoint.endFloatingPoint(r)}visitBinary(e,r){return se.Binary.startBinary(r),se.Binary.endBinary(r)}visitBool(e,r){return se.Bool.startBool(r),se.Bool.endBool(r)}visitUtf8(e,r){return se.Utf8.startUtf8(r),se.Utf8.endUtf8(r)}visitDecimal(e,r){return se.Decimal.startDecimal(r),se.Decimal.addScale(r,e.scale),se.Decimal.addPrecision(r,e.precision),se.Decimal.endDecimal(r)}visitDate(e,r){return se.Date.startDate(r),se.Date.addUnit(r,e.unit),se.Date.endDate(r)}visitTime(e,r){return se.Time.startTime(r),se.Time.addUnit(r,e.unit),se.Time.addBitWidth(r,e.bitWidth),se.Time.endTime(r)}visitTimestamp(e,r){let n=e.timezone&&r.createString(e.timezone)||void 0;return se.Timestamp.startTimestamp(r),se.Timestamp.addUnit(r,e.unit),n!==void 0&&se.Timestamp.addTimezone(r,n),se.Timestamp.endTimestamp(r)}visitInterval(e,r){return se.Interval.startInterval(r),se.Interval.addUnit(r,e.unit),se.Interval.endInterval(r)}visitList(e,r){return se.List.startList(r),se.List.endList(r)}visitStruct(e,r){return se.Struct_.startStruct_(r),se.Struct_.endStruct_(r)}visitUnion(e,r){se.Union.startTypeIdsVector(r,e.typeIds.length);let n=se.Union.createTypeIdsVector(r,e.typeIds);return se.Union.startUnion(r),se.Union.addMode(r,e.mode),se.Union.addTypeIds(r,n),se.Union.endUnion(r)}visitDictionary(e,r){let n=this.visit(e.indices,r);return se.DictionaryEncoding.startDictionaryEncoding(r),se.DictionaryEncoding.addId(r,new dP(e.id,0)),se.DictionaryEncoding.addIsOrdered(r,e.isOrdered),n!==void 0&&se.DictionaryEncoding.addIndexType(r,n),se.DictionaryEncoding.endDictionaryEncoding(r)}visitFixedSizeBinary(e,r){return se.FixedSizeBinary.startFixedSizeBinary(r),se.FixedSizeBinary.addByteWidth(r,e.byteWidth),se.FixedSizeBinary.endFixedSizeBinary(r)}visitFixedSizeList(e,r){return se.FixedSizeList.startFixedSizeList(r),se.FixedSizeList.addListSize(r,e.listSize),se.FixedSizeList.endFixedSizeList(r)}visitMap(e,r){return se.Map.startMap(r),se.Map.addKeysSorted(r,e.keysSorted),se.Map.endMap(r)}};fa.TypeAssembler=$g;fa.instance=new $g});var PI=k(mi=>{"use strict";Object.defineProperty(mi,"__esModule",{value:!0});mi.fieldFromJSON=mi.dictionaryBatchFromJSON=mi.recordBatchFromJSON=mi.schemaFromJSON=void 0;var oa=er(),gt=$e(),Lo=Vo(),sa=dt();function wP(t,e=new Map){return new oa.Schema(bP(t,e),Nd(t.customMetadata),e)}mi.schemaFromJSON=wP;function AI(t){return new Lo.RecordBatch(t.count,FI(t.columns),DI(t.columns))}mi.recordBatchFromJSON=AI;function hP(t){return new Lo.DictionaryBatch(AI(t.data),t.id,t.isDelta)}mi.dictionaryBatchFromJSON=hP;function bP(t,e){return(t.fields||[]).filter(Boolean).map(r=>oa.Field.fromJSON(r,e))}function OI(t,e){return(t.children||[]).filter(Boolean).map(r=>oa.Field.fromJSON(r,e))}function FI(t){return(t||[]).reduce((e,r)=>[...e,new Lo.FieldNode(r.count,gP(r.VALIDITY)),...FI(r.children)],[])}function DI(t,e=[]){for(let r=-1,n=(t||[]).length;++r<n;){let i=t[r];i.VALIDITY&&e.push(new Lo.BufferRegion(e.length,i.VALIDITY.length)),i.TYPE&&e.push(new Lo.BufferRegion(e.length,i.TYPE.length)),i.OFFSET&&e.push(new Lo.BufferRegion(e.length,i.OFFSET.length)),i.DATA&&e.push(new Lo.BufferRegion(e.length,i.DATA.length)),e=DI(i.children,e)}return e}function gP(t){return(t||[]).reduce((e,r)=>e+ +(r===0),0)}function yP(t,e){let r,n,i,f,o,s;return!e||!(f=t.dictionary)?(o=RI(t,OI(t,e)),i=new oa.Field(t.name,o,t.nullable,Nd(t.customMetadata))):e.has(r=f.id)?(n=(n=f.indexType)?NI(n):new gt.Int32,s=new gt.Dictionary(e.get(r),n,r,f.isOrdered),i=new oa.Field(t.name,s,t.nullable,Nd(t.customMetadata))):(n=(n=f.indexType)?NI(n):new gt.Int32,e.set(r,o=RI(t,OI(t,e))),s=new gt.Dictionary(o,n,r,f.isOrdered),i=new oa.Field(t.name,s,t.nullable,Nd(t.customMetadata))),i||null}mi.fieldFromJSON=yP;function Nd(t){return new Map(Object.entries(t||{}))}function NI(t){return new gt.Int(t.isSigned,t.bitWidth)}function RI(t,e){let r=t.type.name;switch(r){case"NONE":return new gt.Null;case"null":return new gt.Null;case"binary":return new gt.Binary;case"utf8":return new gt.Utf8;case"bool":return new gt.Bool;case"list":return new gt.List((e||[])[0]);case"struct":return new gt.Struct(e||[]);case"struct_":return new gt.Struct(e||[])}switch(r){case"int":{let n=t.type;return new gt.Int(n.isSigned,n.bitWidth)}case"floatingpoint":{let n=t.type;return new gt.Float(sa.Precision[n.precision])}case"decimal":{let n=t.type;return new gt.Decimal(n.scale,n.precision)}case"date":{let n=t.type;return new gt.Date_(sa.DateUnit[n.unit])}case"time":{let n=t.type;return new gt.Time(sa.TimeUnit[n.unit],n.bitWidth)}case"timestamp":{let n=t.type;return new gt.Timestamp(sa.TimeUnit[n.unit],n.timezone)}case"interval":{let n=t.type;return new gt.Interval(sa.IntervalUnit[n.unit])}case"union":{let n=t.type;return new gt.Union(sa.UnionMode[n.mode],n.typeIds||[],e||[])}case"fixedsizebinary":{let n=t.type;return new gt.FixedSizeBinary(n.byteWidth)}case"fixedsizelist":{let n=t.type;return new gt.FixedSizeList(n.listSize,(e||[])[0])}case"map":{let n=t.type;return new gt.Map_((e||[])[0],n.keysSorted)}}throw new Error(`Unrecognized type: "${r}"`)}});var Vo=k(yn=>{"use strict";Object.defineProperty(yn,"__esModule",{value:!0});yn.FieldNode=yn.BufferRegion=yn.DictionaryBatch=yn.RecordBatch=yn.Message=void 0;var ey=zi(),fe=Bf(),jt=Mp(),tr=er(),jP=Gt(),xt=dt(),ty=EI(),Rd=PI(),Co=ey.flatbuffers.Long,qP=ey.flatbuffers.Builder,_P=ey.flatbuffers.ByteBuffer,yt=$e(),Vf=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 Vf(0,xt.MetadataVersion.V4,r);return n._createHeader=vP(e,r),n}static decode(e){e=new _P(jP.toUint8Array(e));let r=jt.Message.getRootAsMessage(e),n=r.bodyLength(),i=r.version(),f=r.headerType(),o=new Vf(n,i,f);return o._createHeader=TP(r,f),o}static encode(e){let r=new qP,n=-1;return e.isSchema()?n=tr.Schema.encode(r,e.header()):e.isRecordBatch()?n=gn.encode(r,e.header()):e.isDictionaryBatch()&&(n=wi.encode(r,e.header())),jt.Message.startMessage(r),jt.Message.addVersion(r,xt.MetadataVersion.V4),jt.Message.addHeader(r,n),jt.Message.addHeaderType(r,e.headerType),jt.Message.addBodyLength(r,new Co(e.bodyLength,0)),jt.Message.finishMessageBuffer(r,jt.Message.endMessage(r)),r.asUint8Array()}static from(e,r=0){if(e instanceof tr.Schema)return new Vf(0,xt.MetadataVersion.V4,xt.MessageHeader.Schema,e);if(e instanceof gn)return new Vf(r,xt.MetadataVersion.V4,xt.MessageHeader.RecordBatch,e);if(e instanceof wi)return new Vf(r,xt.MetadataVersion.V4,xt.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===xt.MessageHeader.Schema}isRecordBatch(){return this.headerType===xt.MessageHeader.RecordBatch}isDictionaryBatch(){return this.headerType===xt.MessageHeader.DictionaryBatch}};yn.Message=Vf;var gn=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}};yn.RecordBatch=gn;var wi=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}};yn.DictionaryBatch=wi;var Wo=class{constructor(e,r){this.offset=typeof e=="number"?e:e.low,this.length=typeof r=="number"?r:r.low}};yn.BufferRegion=Wo;var Ko=class{constructor(e,r){this.length=typeof e=="number"?e:e.low,this.nullCount=typeof r=="number"?r:r.low}};yn.FieldNode=Ko;function vP(t,e){return()=>{switch(e){case xt.MessageHeader.Schema:return tr.Schema.fromJSON(t);case xt.MessageHeader.RecordBatch:return gn.fromJSON(t);case xt.MessageHeader.DictionaryBatch:return wi.fromJSON(t)}throw new Error(`Unrecognized Message type: { name: ${xt.MessageHeader[e]}, type: ${e} }`)}}function TP(t,e){return()=>{switch(e){case xt.MessageHeader.Schema:return tr.Schema.decode(t.header(new fe.Schema));case xt.MessageHeader.RecordBatch:return gn.decode(t.header(new jt.RecordBatch),t.version());case xt.MessageHeader.DictionaryBatch:return wi.decode(t.header(new jt.DictionaryBatch),t.version())}throw new Error(`Unrecognized Message type: { name: ${xt.MessageHeader[e]}, type: ${e} }`)}}tr.Field.encode=NP;tr.Field.decode=FP;tr.Field.fromJSON=Rd.fieldFromJSON;tr.Schema.encode=DP;tr.Schema.decode=kP;tr.Schema.fromJSON=Rd.schemaFromJSON;gn.encode=RP;gn.decode=BP;gn.fromJSON=Rd.recordBatchFromJSON;wi.encode=PP;wi.decode=IP;wi.fromJSON=Rd.dictionaryBatchFromJSON;Ko.encode=HP;Ko.decode=SP;Wo.encode=MP;Wo.decode=xP;function kP(t,e=new Map){let r=OP(t,e);return new tr.Schema(r,Pd(t),e)}function BP(t,e=xt.MetadataVersion.V4){return new gn(t.length(),EP(t),AP(t,e))}function IP(t,e=xt.MetadataVersion.V4){return new wi(gn.decode(t.data(),e),t.id(),t.isDelta())}function xP(t){return new Wo(t.offset(),t.length())}function SP(t){return new Ko(t.length(),t.nullCount())}function EP(t){let e=[];for(let r,n=-1,i=-1,f=t.nodesLength();++n<f;)(r=t.nodes(n))&&(e[++i]=Ko.decode(r));return e}function AP(t,e){let r=[];for(let n,i=-1,f=-1,o=t.buffersLength();++i<o;)(n=t.buffers(i))&&(e<xt.MetadataVersion.V4&&(n.bb_pos+=8*(i+1)),r[++f]=Wo.decode(n));return r}function OP(t,e){let r=[];for(let n,i=-1,f=-1,o=t.fieldsLength();++i<o;)(n=t.fields(i))&&(r[++f]=tr.Field.decode(n,e));return r}function HI(t,e){let r=[];for(let n,i=-1,f=-1,o=t.childrenLength();++i<o;)(n=t.children(i))&&(r[++f]=tr.Field.decode(n,e));return r}function FP(t,e){let r,n,i,f,o,s;return!e||!(s=t.dictionary())?(i=zI(t,HI(t,e)),n=new tr.Field(t.name(),i,t.nullable(),Pd(t))):e.has(r=s.id().low)?(f=(f=s.indexType())?MI(f):new yt.Int32,o=new yt.Dictionary(e.get(r),f,r,s.isOrdered()),n=new tr.Field(t.name(),o,t.nullable(),Pd(t))):(f=(f=s.indexType())?MI(f):new yt.Int32,e.set(r,i=zI(t,HI(t,e))),o=new yt.Dictionary(i,f,r,s.isOrdered()),n=new tr.Field(t.name(),o,t.nullable(),Pd(t))),n||null}function Pd(t){let e=new Map;if(t)for(let r,n,i=-1,f=t.customMetadataLength()|0;++i<f;)(r=t.customMetadata(i))&&(n=r.key())!=null&&e.set(n,r.value());return e}function MI(t){return new yt.Int(t.isSigned(),t.bitWidth())}function zI(t,e){let r=t.typeType();switch(r){case fe.Type.NONE:return new yt.Null;case fe.Type.Null:return new yt.Null;case fe.Type.Binary:return new yt.Binary;case fe.Type.Utf8:return new yt.Utf8;case fe.Type.Bool:return new yt.Bool;case fe.Type.List:return new yt.List((e||[])[0]);case fe.Type.Struct_:return new yt.Struct(e||[])}switch(r){case fe.Type.Int:{let n=t.type(new fe.Int);return new yt.Int(n.isSigned(),n.bitWidth())}case fe.Type.FloatingPoint:{let n=t.type(new fe.FloatingPoint);return new yt.Float(n.precision())}case fe.Type.Decimal:{let n=t.type(new fe.Decimal);return new yt.Decimal(n.scale(),n.precision())}case fe.Type.Date:{let n=t.type(new fe.Date);return new yt.Date_(n.unit())}case fe.Type.Time:{let n=t.type(new fe.Time);return new yt.Time(n.unit(),n.bitWidth())}case fe.Type.Timestamp:{let n=t.type(new fe.Timestamp);return new yt.Timestamp(n.unit(),n.timezone())}case fe.Type.Interval:{let n=t.type(new fe.Interval);return new yt.Interval(n.unit())}case fe.Type.Union:{let n=t.type(new fe.Union);return new yt.Union(n.mode(),n.typeIdsArray()||[],e||[])}case fe.Type.FixedSizeBinary:{let n=t.type(new fe.FixedSizeBinary);return new yt.FixedSizeBinary(n.byteWidth())}case fe.Type.FixedSizeList:{let n=t.type(new fe.FixedSizeList);return new yt.FixedSizeList(n.listSize(),(e||[])[0])}case fe.Type.Map:{let n=t.type(new fe.Map);return new yt.Map_((e||[])[0],n.keysSorted())}}throw new Error(`Unrecognized type: "${fe.Type[r]}" (${r})`)}function DP(t,e){let r=e.fields.map(f=>tr.Field.encode(t,f));fe.Schema.startFieldsVector(t,r.length);let n=fe.Schema.createFieldsVector(t,r),i=e.metadata&&e.metadata.size>0?fe.Schema.createCustomMetadataVector(t,[...e.metadata].map(([f,o])=>{let s=t.createString(`${f}`),u=t.createString(`${o}`);return fe.KeyValue.startKeyValue(t),fe.KeyValue.addKey(t,s),fe.KeyValue.addValue(t,u),fe.KeyValue.endKeyValue(t)})):-1;return fe.Schema.startSchema(t),fe.Schema.addFields(t,n),fe.Schema.addEndianness(t,zP?fe.Endianness.Little:fe.Endianness.Big),i!==-1&&fe.Schema.addCustomMetadata(t,i),fe.Schema.endSchema(t)}function NP(t,e){let r=-1,n=-1,i=-1,f=e.type,o=e.typeId;yt.DataType.isDictionary(f)?(o=f.dictionary.typeId,i=ty.instance.visit(f,t),n=ty.instance.visit(f.dictionary,t)):n=ty.instance.visit(f,t);let s=(f.children||[]).map(c=>tr.Field.encode(t,c)),u=fe.Field.createChildrenVector(t,s),l=e.metadata&&e.metadata.size>0?fe.Field.createCustomMetadataVector(t,[...e.metadata].map(([c,w])=>{let p=t.createString(`${c}`),g=t.createString(`${w}`);return fe.KeyValue.startKeyValue(t),fe.KeyValue.addKey(t,p),fe.KeyValue.addValue(t,g),fe.KeyValue.endKeyValue(t)})):-1;return e.name&&(r=t.createString(e.name)),fe.Field.startField(t),fe.Field.addType(t,n),fe.Field.addTypeType(t,o),fe.Field.addChildren(t,u),fe.Field.addNullable(t,!!e.nullable),r!==-1&&fe.Field.addName(t,r),i!==-1&&fe.Field.addDictionary(t,i),l!==-1&&fe.Field.addCustomMetadata(t,l),fe.Field.endField(t)}function RP(t,e){let r=e.nodes||[],n=e.buffers||[];jt.RecordBatch.startNodesVector(t,r.length),r.slice().reverse().forEach(o=>Ko.encode(t,o));let i=t.endVector();jt.RecordBatch.startBuffersVector(t,n.length),n.slice().reverse().forEach(o=>Wo.encode(t,o));let f=t.endVector();return jt.RecordBatch.startRecordBatch(t),jt.RecordBatch.addLength(t,new Co(e.length,0)),jt.RecordBatch.addNodes(t,i),jt.RecordBatch.addBuffers(t,f),jt.RecordBatch.endRecordBatch(t)}function PP(t,e){let r=gn.encode(t,e.data);return jt.DictionaryBatch.startDictionaryBatch(t),jt.DictionaryBatch.addId(t,new Co(e.id,0)),jt.DictionaryBatch.addIsDelta(t,e.isDelta),jt.DictionaryBatch.addData(t,r),jt.DictionaryBatch.endDictionaryBatch(t)}function HP(t,e){return jt.FieldNode.createFieldNode(t,new Co(e.length,0),new Co(e.nullCount,0))}function MP(t,e){return fe.Buffer.createBuffer(t,new Co(e.offset,0),new Co(e.length,0))}var zP=function(){let t=new ArrayBuffer(2);return new DataView(t).setInt16(0,256,!0),new Int16Array(t)[0]===256}()});var Md=k(Ke=>{"use strict";Object.defineProperty(Ke,"__esModule",{value:!0});Ke.magicX2AndPadding=Ke.magicAndPadding=Ke.magicLength=Ke.checkForMagicArrowString=Ke.MAGIC=Ke.MAGIC_STR=Ke.PADDING=Ke.JSONMessageReader=Ke.AsyncMessageReader=Ke.MessageReader=void 0;var Cf=dt(),UP=zi(),UI=UP.flatbuffers.ByteBuffer,yu=Vo(),LP=mr(),VP=Cg(),LI=Gt(),Hd=Hf(),Hn=Os(),ry=t=>`Expected ${Cf.MessageHeader[t]} Message in stream, but was null or length 0.`,ny=t=>`Header pointer of flatbuffer-encoded ${Cf.MessageHeader[t]} Message is null or length 0.`,VI=(t,e)=>`Expected to read ${t} metadata bytes, but only read ${e}.`,CI=(t,e)=>`Expected to read ${t} bytes for message body, but only read ${e}.`,iy=class{constructor(e){this.source=e instanceof Hd.ByteStream?e:new Hd.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?Hn.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(ry(e));return r.value}readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=LI.toUint8Array(this.source.read(e));if(r.byteLength<e)throw new Error(CI(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}readSchema(e=!1){let r=Cf.MessageHeader.Schema,n=this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error(ny(r));return i}readMetadataLength(){let e=this.source.read(Ke.PADDING),r=e&&new UI(e),n=r&&r.readInt32(0)||0;return{done:n===0,value:n}}readMetadata(e){let r=this.source.read(e);if(!r)return Hn.ITERATOR_DONE;if(r.byteLength<e)throw new Error(VI(e,r.byteLength));return{done:!1,value:yu.Message.decode(r)}}};Ke.MessageReader=iy;var WI=class{constructor(e,r){this.source=e instanceof Hd.AsyncByteStream?e:LP.isFileHandle(e)?new VP.AsyncRandomAccessFile(e,r):new Hd.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?Hn.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(ry(e));return r.value}async readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=LI.toUint8Array(await this.source.read(e));if(r.byteLength<e)throw new Error(CI(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}async readSchema(e=!1){let r=Cf.MessageHeader.Schema,n=await this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error(ny(r));return i}async readMetadataLength(){let e=await this.source.read(Ke.PADDING),r=e&&new UI(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 Hn.ITERATOR_DONE;if(r.byteLength<e)throw new Error(VI(e,r.byteLength));return{done:!1,value:yu.Message.decode(r)}}};Ke.AsyncMessageReader=WI;var KI=class extends iy{constructor(e){super(new Uint8Array(0));this._schema=!1,this._body=[],this._batchIndex=0,this._dictionaryIndex=0,this._json=e instanceof Hn.ArrowJSON?e:new Hn.ArrowJSON(e)}next(){let{_json:e}=this;if(!this._schema){this._schema=!0;let r=yu.Message.fromJSON(e.schema,Cf.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=yu.Message.fromJSON(r,Cf.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=yu.Message.fromJSON(r,Cf.MessageHeader.RecordBatch);return{done:!1,value:n}}return this._body=[],Hn.ITERATOR_DONE}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(ry(e));return r.value}readSchema(){let e=Cf.MessageHeader.Schema,r=this.readMessage(e),n=r&&r.header();if(!r||!n)throw new Error(ny(e));return n}};Ke.JSONMessageReader=KI;Ke.PADDING=4;Ke.MAGIC_STR="ARROW1";Ke.MAGIC=new Uint8Array(Ke.MAGIC_STR.length);for(let t=0;t<Ke.MAGIC_STR.length;t+=1|0)Ke.MAGIC[t]=Ke.MAGIC_STR.charCodeAt(t);function CP(t,e=0){for(let r=-1,n=Ke.MAGIC.length;++r<n;)if(Ke.MAGIC[r]!==t[e+r])return!1;return!0}Ke.checkForMagicArrowString=CP;Ke.magicLength=Ke.MAGIC.length;Ke.magicAndPadding=Ke.magicLength+Ke.PADDING;Ke.magicX2AndPadding=Ke.magicLength*2+Ke.PADDING});var ay=k(St=>{"use strict";Object.defineProperty(St,"__esModule",{value:!0});St.compareTypes=St.compareFields=St.compareSchemas=St.instance=St.TypeComparator=void 0;var WP=sr(),ge=class extends WP.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)}};St.TypeComparator=ge;function Pr(t,e){return e instanceof t.constructor}function ju(t,e){return t===e||Pr(t,e)}function Ji(t,e){return t===e||Pr(t,e)&&t.bitWidth===e.bitWidth&&t.isSigned===e.isSigned}function zd(t,e){return t===e||Pr(t,e)&&t.precision===e.precision}function KP(t,e){return t===e||Pr(t,e)&&t.byteWidth===e.byteWidth}function fy(t,e){return t===e||Pr(t,e)&&t.unit===e.unit}function qu(t,e){return t===e||Pr(t,e)&&t.unit===e.unit&&t.timezone===e.timezone}function _u(t,e){return t===e||Pr(t,e)&&t.unit===e.unit&&t.bitWidth===e.bitWidth}function YP(t,e){return t===e||Pr(t,e)&&t.children.length===e.children.length&&St.instance.compareManyFields(t.children,e.children)}function GP(t,e){return t===e||Pr(t,e)&&t.children.length===e.children.length&&St.instance.compareManyFields(t.children,e.children)}function oy(t,e){return t===e||Pr(t,e)&&t.mode===e.mode&&t.typeIds.every((r,n)=>r===e.typeIds[n])&&St.instance.compareManyFields(t.children,e.children)}function ZP(t,e){return t===e||Pr(t,e)&&t.id===e.id&&t.isOrdered===e.isOrdered&&St.instance.visit(t.indices,e.indices)&&St.instance.visit(t.dictionary,e.dictionary)}function sy(t,e){return t===e||Pr(t,e)&&t.unit===e.unit}function JP(t,e){return t===e||Pr(t,e)&&t.listSize===e.listSize&&t.children.length===e.children.length&&St.instance.compareManyFields(t.children,e.children)}function QP(t,e){return t===e||Pr(t,e)&&t.keysSorted===e.keysSorted&&t.children.length===e.children.length&&St.instance.compareManyFields(t.children,e.children)}ge.prototype.visitNull=ju;ge.prototype.visitBool=ju;ge.prototype.visitInt=Ji;ge.prototype.visitInt8=Ji;ge.prototype.visitInt16=Ji;ge.prototype.visitInt32=Ji;ge.prototype.visitInt64=Ji;ge.prototype.visitUint8=Ji;ge.prototype.visitUint16=Ji;ge.prototype.visitUint32=Ji;ge.prototype.visitUint64=Ji;ge.prototype.visitFloat=zd;ge.prototype.visitFloat16=zd;ge.prototype.visitFloat32=zd;ge.prototype.visitFloat64=zd;ge.prototype.visitUtf8=ju;ge.prototype.visitBinary=ju;ge.prototype.visitFixedSizeBinary=KP;ge.prototype.visitDate=fy;ge.prototype.visitDateDay=fy;ge.prototype.visitDateMillisecond=fy;ge.prototype.visitTimestamp=qu;ge.prototype.visitTimestampSecond=qu;ge.prototype.visitTimestampMillisecond=qu;ge.prototype.visitTimestampMicrosecond=qu;ge.prototype.visitTimestampNanosecond=qu;ge.prototype.visitTime=_u;ge.prototype.visitTimeSecond=_u;ge.prototype.visitTimeMillisecond=_u;ge.prototype.visitTimeMicrosecond=_u;ge.prototype.visitTimeNanosecond=_u;ge.prototype.visitDecimal=ju;ge.prototype.visitList=YP;ge.prototype.visitStruct=GP;ge.prototype.visitUnion=oy;ge.prototype.visitDenseUnion=oy;ge.prototype.visitSparseUnion=oy;ge.prototype.visitDictionary=ZP;ge.prototype.visitInterval=sy;ge.prototype.visitIntervalDayTime=sy;ge.prototype.visitIntervalYearMonth=sy;ge.prototype.visitFixedSizeList=JP;ge.prototype.visitMap=QP;St.instance=new ge;function XP(t,e){return St.instance.compareSchemas(t,e)}St.compareSchemas=XP;function $P(t,e){return St.instance.compareFields(t,e)}St.compareFields=$P;function eH(t,e){return St.instance.visit(t,e)}St.compareTypes=eH});var QI=k(Ud=>{"use strict";Object.defineProperty(Ud,"__esModule",{value:!0});Ud.VectorAssembler=void 0;var tH=sr(),YI=dt(),rH=Qi(),ly=Gt(),uy=si(),nH=na(),GI=Vo(),ZI=$e(),Vt=class extends tH.Visitor{constructor(){super();this._byteLength=0,this._nodes=[],this._buffers=[],this._bufferRegions=[]}static assemble(...e){let r=new Vt,n=nH.selectVectorChildrenArgs(rH.RecordBatch,e),[i=r]=r.visitMany(n);return i}visit(e){if(!ZI.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");ZI.DataType.isNull(e.type)||Mn.call(this,i<=0?new Uint8Array(0):uy.truncateBitmap(r.offset,n,r.nullBitmap)),this.nodes.push(new GI.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}};Ud.VectorAssembler=Vt;function Mn(t){let e=t.byteLength+7&~7;return this.buffers.push(t),this.bufferRegions.push(new GI.BufferRegion(this._byteLength,e)),this._byteLength+=e,this}function iH(t){let{type:e,length:r,typeIds:n,valueOffsets:i}=t;if(Mn.call(this,n),e.mode===YI.UnionMode.Sparse)return py.call(this,t);if(e.mode===YI.UnionMode.Dense){if(t.offset<=0)return Mn.call(this,i),py.call(this,t);{let f=n.reduce((c,w)=>Math.max(c,w),n[0]),o=new Int32Array(f+1),s=new Int32Array(f+1).fill(-1),u=new Int32Array(r),l=ly.rebaseValueOffsets(-i[0],r,i);for(let c,w,p=-1;++p<r;)(w=s[c=n[p]])===-1&&(w=s[c]=l[c]),u[p]=l[p]-w,++o[c];Mn.call(this,u);for(let c,w=-1,p=e.children.length;++w<p;)if(c=t.getChildAt(w)){let g=e.typeIds[w],v=Math.min(r,o[g]);this.visit(c.slice(s[g],v))}}}return this}function fH(t){let e;return t.nullCount>=t.length?Mn.call(this,new Uint8Array(0)):(e=t.values)instanceof Uint8Array?Mn.call(this,uy.truncateBitmap(t.offset,t.length,e)):Mn.call(this,uy.packBools(t))}function Wf(t){return Mn.call(this,t.values.subarray(0,t.length*t.stride))}function JI(t){let{length:e,values:r,valueOffsets:n}=t,i=n[0],f=n[e],o=Math.min(f-i,r.byteLength-i);return Mn.call(this,ly.rebaseValueOffsets(-n[0],e,n)),Mn.call(this,r.subarray(i,i+o)),this}function cy(t){let{length:e,valueOffsets:r}=t;return r&&Mn.call(this,ly.rebaseValueOffsets(r[0],e,r)),this.visit(t.getChildAt(0))}function py(t){return this.visitMany(t.type.children.map((e,r)=>t.getChildAt(r)).filter(Boolean))[0]}Vt.prototype.visitBool=fH;Vt.prototype.visitInt=Wf;Vt.prototype.visitFloat=Wf;Vt.prototype.visitUtf8=JI;Vt.prototype.visitBinary=JI;Vt.prototype.visitFixedSizeBinary=Wf;Vt.prototype.visitDate=Wf;Vt.prototype.visitTimestamp=Wf;Vt.prototype.visitTime=Wf;Vt.prototype.visitDecimal=Wf;Vt.prototype.visitList=cy;Vt.prototype.visitStruct=py;Vt.prototype.visitUnion=iH;Vt.prototype.visitInterval=Wf;Vt.prototype.visitFixedSizeList=cy;Vt.prototype.visitMap=cy});var $I=k(Ld=>{"use strict";Object.defineProperty(Ld,"__esModule",{value:!0});Ld.JSONTypeAssembler=void 0;var oH=sr(),lr=Bf(),aa=dt(),XI=class extends oH.Visitor{visit(e){return e==null?void 0:super.visit(e)}visitNull({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitInt({typeId:e,bitWidth:r,isSigned:n}){return{name:lr.Type[e].toLowerCase(),bitWidth:r,isSigned:n}}visitFloat({typeId:e,precision:r}){return{name:lr.Type[e].toLowerCase(),precision:aa.Precision[r]}}visitBinary({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitBool({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitUtf8({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitDecimal({typeId:e,scale:r,precision:n}){return{name:lr.Type[e].toLowerCase(),scale:r,precision:n}}visitDate({typeId:e,unit:r}){return{name:lr.Type[e].toLowerCase(),unit:aa.DateUnit[r]}}visitTime({typeId:e,unit:r,bitWidth:n}){return{name:lr.Type[e].toLowerCase(),unit:aa.TimeUnit[r],bitWidth:n}}visitTimestamp({typeId:e,timezone:r,unit:n}){return{name:lr.Type[e].toLowerCase(),unit:aa.TimeUnit[n],timezone:r}}visitInterval({typeId:e,unit:r}){return{name:lr.Type[e].toLowerCase(),unit:aa.IntervalUnit[r]}}visitList({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitStruct({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitUnion({typeId:e,mode:r,typeIds:n}){return{name:lr.Type[e].toLowerCase(),mode:aa.UnionMode[r],typeIds:[...n]}}visitDictionary(e){return this.visit(e.dictionary)}visitFixedSizeBinary({typeId:e,byteWidth:r}){return{name:lr.Type[e].toLowerCase(),byteWidth:r}}visitFixedSizeList({typeId:e,listSize:r}){return{name:lr.Type[e].toLowerCase(),listSize:r}}visitMap({typeId:e,keysSorted:r}){return{name:lr.Type[e].toLowerCase(),keysSorted:r}}};Ld.JSONTypeAssembler=XI});var r1=k(Wd=>{"use strict";Object.defineProperty(Wd,"__esModule",{value:!0});Wd.JSONVectorAssembler=void 0;var sH=lu(),vu=ia(),aH=Nt(),lH=sr(),uH=dt(),cH=Qi(),dy=dt(),Vd=si(),pH=na(),e1=$e(),Cd=class extends lH.Visitor{static assemble(...e){return new Cd().visitMany(pH.selectColumnChildrenArgs(cH.RecordBatch,e))}visit(e){let{data:r,name:n,length:i}=e,{offset:f,nullCount:o,nullBitmap:s}=r,u=e1.DataType.isDictionary(e.type)?e.type.indices:e.type,l=Object.assign([],r.buffers,{[uH.BufferType.VALIDITY]:void 0});return{name:n,count:i,VALIDITY:e1.DataType.isNull(u)?void 0:o<=0?Array.from({length:i},()=>1):[...new Vd.BitIterator(s,f,i,null,Vd.getBit)],...super.visit(aH.Vector.new(r.clone(u,f,i,0,l)))}}visitNull(){return{}}visitBool({values:e,offset:r,length:n}){return{DATA:[...new Vd.BitIterator(e,r,n,null,Vd.getBool)]}}visitInt(e){return{DATA:e.type.bitWidth<64?[...e.values]:[...Tu(e.values,2)]}}visitFloat(e){return{DATA:[...e.values]}}visitUtf8(e){return{DATA:[...e],OFFSET:[...e.valueOffsets]}}visitBinary(e){return{DATA:[...t1(e)],OFFSET:[...e.valueOffsets]}}visitFixedSizeBinary(e){return{DATA:[...t1(e)]}}visitDate(e){return{DATA:e.type.unit===dy.DateUnit.DAY?[...e.values]:[...Tu(e.values,2)]}}visitTimestamp(e){return{DATA:[...Tu(e.values,2)]}}visitTime(e){return{DATA:e.type.unit<dy.TimeUnit.MICROSECOND?[...e.values]:[...Tu(e.values,2)]}}visitDecimal(e){return{DATA:[...Tu(e.values,4)]}}visitList(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new vu.Column(r,[e.getChildAt(n)])))}}visitStruct(e){return{children:e.type.children.map((r,n)=>this.visit(new vu.Column(r,[e.getChildAt(n)])))}}visitUnion(e){return{TYPE:[...e.typeIds],OFFSET:e.type.mode===dy.UnionMode.Dense?[...e.valueOffsets]:void 0,children:e.type.children.map((r,n)=>this.visit(new vu.Column(r,[e.getChildAt(n)])))}}visitInterval(e){return{DATA:[...e.values]}}visitFixedSizeList(e){return{children:e.type.children.map((r,n)=>this.visit(new vu.Column(r,[e.getChildAt(n)])))}}visitMap(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new vu.Column(r,[e.getChildAt(n)])))}}};Wd.JSONVectorAssembler=Cd;function*t1(t){for(let e of t)yield e.reduce((r,n)=>`${r}${("0"+(n&255).toString(16)).slice(-2)}`,"").toUpperCase()}function*Tu(t,e){for(let r=-1,n=t.length/e;++r<n;)yield`${sH.BN.new(t.subarray((r+0)*e,(r+1)*e),!1)}`}});var Jd=k(bi=>{"use strict";Object.defineProperty(bi,"__esModule",{value:!0});bi.RecordBatchJSONWriter=bi.RecordBatchFileWriter=bi.RecordBatchStreamWriter=bi.RecordBatchWriter=void 0;var my=Bu(),dH=Md(),mH=ia(),wH=$e(),hH=er(),Kd=Vo(),wy=Vo(),la=Ug(),hy=dt(),n1=ay(),by=Hf(),i1=QI(),bH=$I(),f1=r1(),gH=Gt(),gy=Qi(),yH=Os(),hi=mr(),ku=class extends yH.ReadableInterop{constructor(e){super();this._position=0,this._started=!1,this._sink=new by.AsyncByteQueue,this._schema=null,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,hi.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 hi.isPromise(e)?e.then(r=>this.writeAll(r)):hi.isAsyncIterable(e)?jy(this,e):yy(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 by.AsyncByteQueue?this._sink=e:(this._sink=new by.AsyncByteQueue,e&&hi.isWritableDOMStream(e)?this.toDOMStream({type:"bytes"}).pipeTo(e):e&&hi.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||!n1.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 my.Table&&!(r=e.schema))return this.finish()&&void 0;if(e instanceof gy.RecordBatch&&!(r=e.schema))return this.finish()&&void 0}else throw new Error("RecordBatchWriter is closed");if(r&&!n1.compareSchemas(r,this._schema)){if(this._started&&this._autoDestroy)return this.close();this.reset(this._sink,r)}e instanceof gy.RecordBatch?e instanceof gy._InternalEmptyPlaceholderRecordBatch||this._writeRecordBatch(e):e instanceof my.Table?this.writeAll(e.chunks):hi.isIterable(e)&&this.writeAll(e)}_writeMessage(e,r=8){let n=r-1,i=Kd.Message.encode(e),f=i.byteLength,o=this._writeLegacyIpcFormat?4:8,s=f+o+n&~n,u=s-f-o;return e.headerType===hy.MessageHeader.RecordBatch?this._recordBatchBlocks.push(new la.FileBlock(s,e.bodyLength,this._position)):e.headerType===hy.MessageHeader.DictionaryBatch&&this._dictionaryBlocks.push(new la.FileBlock(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(u)}_write(e){if(this._started){let r=gH.toUint8Array(e);r&&r.byteLength>0&&(this._sink.write(r),this._position+=r.byteLength)}return this}_writeSchema(e){return this._writeMessage(Kd.Message.from(e))}_writeFooter(e){return this._writeLegacyIpcFormat?this._write(Int32Array.of(0)):this._write(Int32Array.of(-1,0))}_writeMagic(){return this._write(dH.MAGIC)}_writePadding(e){return e>0?this._write(new Uint8Array(e)):this}_writeRecordBatch(e){let{byteLength:r,nodes:n,bufferRegions:i,buffers:f}=i1.VectorAssembler.assemble(e),o=new wy.RecordBatch(e.length,n,i),s=Kd.Message.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}=i1.VectorAssembler.assemble(e),u=new wy.RecordBatch(e.length,f,o),l=new wy.DictionaryBatch(u,r,n),c=Kd.Message.from(l,i);return this._writeMessage(c)._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.slice(i)).length>0){let f="chunks"in n?n.chunks:[n];for(let o of f)this._writeDictionaryBatch(o,r,i>0),i+=o.length}}return this}};bi.RecordBatchWriter=ku;var Yd=class extends ku{static writeAll(e,r){let n=new Yd(r);return hi.isPromise(e)?e.then(i=>n.writeAll(i)):hi.isAsyncIterable(e)?jy(n,e):yy(n,e)}};bi.RecordBatchStreamWriter=Yd;var Gd=class extends ku{static writeAll(e){let r=new Gd;return hi.isPromise(e)?e.then(n=>r.writeAll(n)):hi.isAsyncIterable(e)?jy(r,e):yy(r,e)}constructor(){super();this._autoDestroy=!0}_writeSchema(e){return this._writeMagic()._writePadding(2)}_writeFooter(e){let r=la.Footer.encode(new la.Footer(e,hy.MetadataVersion.V4,this._recordBatchBlocks,this._dictionaryBlocks));return super._writeFooter(e)._write(r)._write(Int32Array.of(r.byteLength))._writeMagic()}};bi.RecordBatchFileWriter=Gd;var Zd=class extends ku{constructor(){super();this._autoDestroy=!0,this._recordBatches=[],this._dictionaries=[]}static writeAll(e){return new Zd().writeAll(e)}_writeMessage(){return this}_writeFooter(e){return this}_writeSchema(e){return this._write(`{
16
- "schema": ${JSON.stringify({fields:e.fields.map(o1)},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?" ":`,
17
- `),this._write(`${jH(e,r,n)}`),this._dictionaryBlocks.push(new la.FileBlock(0,0,0)),this}_writeRecordBatch(e){return this._writeDictionaries(e),this._recordBatches.push(e),this}close(){if(this._dictionaries.length>0){this._write(`,
15
+ return true;`)}Xp.createIsValidFunction=ED;function AD(t){return typeof t!="bigint"?Xb.valueToString(t):SD.BigIntAvailable?`${Xb.valueToString(t)}n`:`"${Xb.valueToString(t)}"`}});var Sf=k(cn=>{"use strict";Object.defineProperty(cn,"__esModule",{value:!0});cn.WideBufferBuilder=cn.OffsetsBufferBuilder=cn.BitmapBufferBuilder=cn.DataBufferBuilder=cn.BufferBuilder=void 0;var Ok=Gt(),$b=mr(),eg=(t,e)=>(t*e+63&~63||64)/e,OD=(t,e=0)=>t.length>=e?t.subarray(0,e):Ok.memcpy(new t.constructor(e),t,0),nu=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?eg(n*1,this.BYTES_PER_ELEMENT):eg(n*2,this.BYTES_PER_ELEMENT))}return this}flush(e=this.length){e=eg(e*this.stride,this.BYTES_PER_ELEMENT);let r=OD(this.buffer,e);return this.clear(),r}clear(){return this.length=0,this._resize(0),this}_resize(e){return this.buffer=Ok.memcpy(new this.ArrayType(e),this.buffer)}};cn.BufferBuilder=nu;nu.prototype.offset=0;var $p=class extends nu{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}};cn.DataBufferBuilder=$p;var Fk=class extends $p{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()}};cn.BitmapBufferBuilder=Fk;var Dk=class extends $p{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)}};cn.OffsetsBufferBuilder=Dk;var Nk=class extends nu{get ArrayType64(){return this._ArrayType64||(this._ArrayType64=this.buffer instanceof Int32Array?$b.BigInt64Array:$b.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 $b.BigIntAvailable&&(this.buffer64=new this.ArrayType64(r.buffer,r.byteOffset,n)),r}};cn.WideBufferBuilder=Nk});var It=k(Ef=>{"use strict";Object.defineProperty(Ef,"__esModule",{value:!0});Ef.VariableWidthBuilder=Ef.FixedWidthBuilder=Ef.Builder=void 0;var FD=Nt(),Rs=dt(),DD=Dn(),ND=Ak(),tg=Sf(),RD=$e(),pn=class{constructor({type:e,nullValues:r}){this.length=0,this.finished=!1,this.type=e,this.children=[],this.nullValues=r,this.stride=RD.strideForType(e),this._nulls=new tg.BitmapBufferBuilder,r&&r.length>0&&(this._isValid=ND.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 PD(e)}static throughAsyncIterable(e){return HD(e)}toVector(){return FD.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:f,nullCount:o}=this;i?(e[Rs.BufferType.TYPE]=i.flush(f),n&&(e[Rs.BufferType.OFFSET]=n.flush(f))):n?(r&&(e[Rs.BufferType.DATA]=r.flush(n.last())),e[Rs.BufferType.OFFSET]=n.flush(f)):r&&(e[Rs.BufferType.DATA]=r.flush(f)),o>0&&(e[Rs.BufferType.VALIDITY]=this._nulls.flush(f));let s=DD.Data.new(this.type,0,f,o,e,this.children.map(u=>u.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=pn;pn.prototype.length=1;pn.prototype.stride=1;pn.prototype.children=null;pn.prototype.finished=!1;pn.prototype.nullValues=null;pn.prototype._isValid=()=>!0;var Rk=class extends pn{constructor(e){super(e);this._values=new tg.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=Rk;var Pk=class extends pn{constructor(e){super(e);this._pendingLength=0,this._offsets=new tg.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=Pk;function PD(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return function*(i){let f=0,o=pn.new(t);for(let s of i)o.append(s)[n]>=r&&++f&&(yield o.toVector());(o.finish().length>0||f===0)&&(yield o.toVector())}}function HD(t){let{["queueingStrategy"]:e="count"}=t,{["highWaterMark"]:r=e!=="bytes"?1e3:2**14}=t,n=e!=="bytes"?"length":"byteLength";return async function*(i){let f=0,o=pn.new(t);for await(let s of i)o.append(s)[n]>=r&&++f&&(yield o.toVector());(o.finish().length>0||f===0)&&(yield o.toVector())}}});var rg=k(ed=>{"use strict";Object.defineProperty(ed,"__esModule",{value:!0});ed.BoolBuilder=void 0;var MD=Sf(),zD=It(),Hk=class extends zD.Builder{constructor(e){super(e);this._values=new MD.BitmapBufferBuilder}setValue(e,r){this._values.set(e,+r)}};ed.BoolBuilder=Hk});var ng=k(td=>{"use strict";Object.defineProperty(td,"__esModule",{value:!0});td.NullBuilder=void 0;var UD=It(),Mk=class extends UD.Builder{setValue(e,r){}setValid(e,r){return this.length=Math.max(e+1,this.length),r}};td.NullBuilder=Mk});var ig=k(Af=>{"use strict";Object.defineProperty(Af,"__esModule",{value:!0});Af.DateMillisecondBuilder=Af.DateDayBuilder=Af.DateBuilder=void 0;var LD=It(),rd=class extends LD.FixedWidthBuilder{};Af.DateBuilder=rd;var zk=class extends rd{};Af.DateDayBuilder=zk;var Uk=class extends rd{};Af.DateMillisecondBuilder=Uk});var fg=k(nd=>{"use strict";Object.defineProperty(nd,"__esModule",{value:!0});nd.DecimalBuilder=void 0;var VD=It(),Lk=class extends VD.FixedWidthBuilder{};nd.DecimalBuilder=Lk});var sg=k(id=>{"use strict";Object.defineProperty(id,"__esModule",{value:!0});id.DictionaryBuilder=void 0;var CD=$e(),og=It(),Vk=class extends og.Builder{constructor({type:e,nullValues:r,dictionaryHashFunction:n}){super({type:new CD.Dictionary(e.dictionary,e.indices,e.id,e.isOrdered)});this._nulls=null,this._dictionaryOffset=0,this._keysToIndices=Object.create(null),this.indices=og.Builder.new({type:this.type.indices,nullValues:r}),this.dictionary=og.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),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}`}};id.DictionaryBuilder=Vk});var ag=k(fd=>{"use strict";Object.defineProperty(fd,"__esModule",{value:!0});fd.FixedSizeBinaryBuilder=void 0;var WD=It(),Ck=class extends WD.FixedWidthBuilder{};fd.FixedSizeBinaryBuilder=Ck});var iu=k(Hs=>{"use strict";Object.defineProperty(Hs,"__esModule",{value:!0});Hs.float64ToUint16=Hs.uint16ToFloat64=void 0;var Wk=new Float64Array(1),Ps=new Uint32Array(Wk.buffer);function KD(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)}Hs.uint16ToFloat64=KD;function YD(t){if(t!==t)return 32256;Wk[0]=t;let e=(Ps[1]&2147483648)>>16&65535,r=Ps[1]&2146435072,n=0;return r>=1089470464?Ps[0]>0?r=31744:(r=(r&2080374784)>>16,n=(Ps[1]&1048575)>>10):r<=1056964608?(n=1048576+(Ps[1]&1048575),n=1048576+(n<<(r>>20)-998)>>21,r=0):(r=r-1056964608>>10,n=(Ps[1]&1048575)+512>>10),e|r|n&65535}Hs.float64ToUint16=YD});var lg=k(ai=>{"use strict";Object.defineProperty(ai,"__esModule",{value:!0});ai.Float64Builder=ai.Float32Builder=ai.Float16Builder=ai.FloatBuilder=void 0;var GD=iu(),ZD=It(),fu=class extends ZD.FixedWidthBuilder{};ai.FloatBuilder=fu;var Kk=class extends fu{setValue(e,r){this._values.set(e,GD.float64ToUint16(r))}};ai.Float16Builder=Kk;var Yk=class extends fu{setValue(e,r){this._values.set(e,r)}};ai.Float32Builder=Yk;var Gk=class extends fu{setValue(e,r){this._values.set(e,r)}};ai.Float64Builder=Gk});var au=k(Zt=>{"use strict";Object.defineProperty(Zt,"__esModule",{value:!0});Zt.BN=Zt.bignumToBigInt=Zt.bignumToString=Zt.isArrowBigNumSymbol=void 0;var JD=Gt(),ou=mr();Zt.isArrowBigNumSymbol=Symbol.for("isArrowBigNum");function Nn(t,...e){return e.length===0?Object.setPrototypeOf(JD.toArrayBufferView(this.TypedArray,t),this.constructor.prototype):Object.setPrototypeOf(new this.TypedArray(t,...e),this.constructor.prototype)}Nn.prototype[Zt.isArrowBigNumSymbol]=!0;Nn.prototype.toJSON=function(){return`"${Zt.bignumToString(this)}"`};Nn.prototype.valueOf=function(){return Zk(this)};Nn.prototype.toString=function(){return Zt.bignumToString(this)};Nn.prototype[Symbol.toPrimitive]=function(t="default"){switch(t){case"number":return Zk(this);case"string":return Zt.bignumToString(this);case"default":return Zt.bignumToBigInt(this)}return Zt.bignumToString(this)};function Ms(...t){return Nn.apply(this,t)}function zs(...t){return Nn.apply(this,t)}function su(...t){return Nn.apply(this,t)}Object.setPrototypeOf(Ms.prototype,Object.create(Int32Array.prototype));Object.setPrototypeOf(zs.prototype,Object.create(Uint32Array.prototype));Object.setPrototypeOf(su.prototype,Object.create(Uint32Array.prototype));Object.assign(Ms.prototype,Nn.prototype,{constructor:Ms,signed:!0,TypedArray:Int32Array,BigIntArray:ou.BigInt64Array});Object.assign(zs.prototype,Nn.prototype,{constructor:zs,signed:!1,TypedArray:Uint32Array,BigIntArray:ou.BigUint64Array});Object.assign(su.prototype,Nn.prototype,{constructor:su,signed:!0,TypedArray:Uint32Array,BigIntArray:ou.BigUint64Array});function Zk(t){let{buffer:e,byteOffset:r,length:n,signed:i}=t,f=new Int32Array(e,r,n),o=0,s=0,u=f.length,l,c;for(;s<u;)c=f[s++],l=f[s++],i||(l=l>>>0),o+=(c>>>0)+l*s**32;return o}ou.BigIntAvailable?(Zt.bignumToBigInt=t=>t.byteLength===8?new t.BigIntArray(t.buffer,t.byteOffset,1)[0]:ug(t),Zt.bignumToString=t=>t.byteLength===8?`${new t.BigIntArray(t.buffer,t.byteOffset,1)[0]}`:ug(t)):(Zt.bignumToString=ug,Zt.bignumToBigInt=Zt.bignumToString);function ug(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 od=class{static new(e,r){switch(r){case!0:return new Ms(e);case!1:return new zs(e)}switch(e.constructor){case Int8Array:case Int16Array:case Int32Array:case ou.BigInt64Array:return new Ms(e)}return e.byteLength===16?new su(e):new zs(e)}static signed(e){return new Ms(e)}static unsigned(e){return new zs(e)}static decimal(e){return new su(e)}constructor(e,r){return od.new(e,r)}};Zt.BN=od});var cg=k(Lt=>{"use strict";Object.defineProperty(Lt,"__esModule",{value:!0});Lt.Uint64Builder=Lt.Uint32Builder=Lt.Uint16Builder=Lt.Uint8Builder=Lt.Int64Builder=Lt.Int32Builder=Lt.Int16Builder=Lt.Int8Builder=Lt.IntBuilder=void 0;var QD=au(),Jk=Sf(),XD=mr(),$D=It(),li=class extends $D.FixedWidthBuilder{setValue(e,r){this._values.set(e,r)}};Lt.IntBuilder=li;var Qk=class extends li{};Lt.Int8Builder=Qk;var Xk=class extends li{};Lt.Int16Builder=Xk;var $k=class extends li{};Lt.Int32Builder=$k;var eB=class extends li{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(sd));super(e);this._values=new Jk.WideBufferBuilder(new Int32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(sd(e))}};Lt.Int64Builder=eB;var tB=class extends li{};Lt.Uint8Builder=tB;var rB=class extends li{};Lt.Uint16Builder=rB;var nB=class extends li{};Lt.Uint32Builder=nB;var iB=class extends li{constructor(e){e.nullValues&&(e.nullValues=e.nullValues.map(sd));super(e);this._values=new Jk.WideBufferBuilder(new Uint32Array(0),2)}get values64(){return this._values.buffer64}isValid(e){return super.isValid(sd(e))}};Lt.Uint64Builder=iB;var sd=(t=>e=>(ArrayBuffer.isView(e)&&(t.buffer=e.buffer,t.byteOffset=e.byteOffset,t.byteLength=e.byteLength,e=QD.bignumToBigInt(t),t.buffer=null),e))({BigIntArray:XD.BigInt64Array})});var pg=k(dn=>{"use strict";Object.defineProperty(dn,"__esModule",{value:!0});dn.TimeNanosecondBuilder=dn.TimeMicrosecondBuilder=dn.TimeMillisecondBuilder=dn.TimeSecondBuilder=dn.TimeBuilder=void 0;var eN=It(),Us=class extends eN.FixedWidthBuilder{};dn.TimeBuilder=Us;var fB=class extends Us{};dn.TimeSecondBuilder=fB;var oB=class extends Us{};dn.TimeMillisecondBuilder=oB;var sB=class extends Us{};dn.TimeMicrosecondBuilder=sB;var aB=class extends Us{};dn.TimeNanosecondBuilder=aB});var dg=k(mn=>{"use strict";Object.defineProperty(mn,"__esModule",{value:!0});mn.TimestampNanosecondBuilder=mn.TimestampMicrosecondBuilder=mn.TimestampMillisecondBuilder=mn.TimestampSecondBuilder=mn.TimestampBuilder=void 0;var tN=It(),Ls=class extends tN.FixedWidthBuilder{};mn.TimestampBuilder=Ls;var lB=class extends Ls{};mn.TimestampSecondBuilder=lB;var uB=class extends Ls{};mn.TimestampMillisecondBuilder=uB;var cB=class extends Ls{};mn.TimestampMicrosecondBuilder=cB;var pB=class extends Ls{};mn.TimestampNanosecondBuilder=pB});var mg=k(Of=>{"use strict";Object.defineProperty(Of,"__esModule",{value:!0});Of.IntervalYearMonthBuilder=Of.IntervalDayTimeBuilder=Of.IntervalBuilder=void 0;var rN=It(),ad=class extends rN.FixedWidthBuilder{};Of.IntervalBuilder=ad;var dB=class extends ad{};Of.IntervalDayTimeBuilder=dB;var mB=class extends ad{};Of.IntervalYearMonthBuilder=mB});var ud=k(ld=>{"use strict";Object.defineProperty(ld,"__esModule",{value:!0});ld.BinaryBuilder=void 0;var nN=Gt(),iN=Sf(),fN=It(),wB=class extends fN.VariableWidthBuilder{constructor(e){super(e);this._values=new iN.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,nN.toUint8Array(r))}_flushPending(e,r){let n=this._offsets,i=this._values.reserve(r).buffer,f=0,o=0,s=0,u;for([f,u]of e)u===void 0?n.set(f,0):(o=u.length,i.set(u,s),n.set(f,o),s+=o)}};ld.BinaryBuilder=wB});var pd=k(cd=>{"use strict";Object.defineProperty(cd,"__esModule",{value:!0});cd.Utf8Builder=void 0;var oN=ko(),sN=ud(),aN=Sf(),lN=It(),wg=class extends lN.VariableWidthBuilder{constructor(e){super(e);this._values=new aN.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,oN.encodeUtf8(r))}_flushPending(e,r){}};cd.Utf8Builder=wg;wg.prototype._flushPending=sN.BinaryBuilder.prototype._flushPending});var hg=k(dd=>{"use strict";Object.defineProperty(dd,"__esModule",{value:!0});dd.Run=void 0;var uN=Nt(),hB=class{get length(){return this._values.length}get(e){return this._values[e]}clear(){return this._values=null,this}bind(e){return e instanceof uN.Vector?e:(this._values=e,this)}};dd.Run=hB});var er=k(Vs=>{"use strict";Object.defineProperty(Vs,"__esModule",{value:!0});Vs.Field=Vs.Schema=void 0;var cN=$e(),wn=class{constructor(e=[],r,n){this.fields=e||[],this.metadata=r||new Map,n||(n=bg(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 wn(this.fields.filter(n=>r[n.name]),this.metadata)}selectAt(...e){return new wn(e.map(r=>this.fields[r]).filter(Boolean),this.metadata)}assign(...e){let r=e[0]instanceof wn?e[0]:Array.isArray(e[0])?new wn(e[0]):new wn(e),n=[...this.fields],i=md(md(new Map,this.metadata),r.metadata),f=r.fields.filter(s=>{let u=n.findIndex(l=>l.name===s.name);return~u?(n[u]=s.clone({metadata:md(md(new Map,n[u].metadata),s.metadata)}))&&!1:!0}),o=bg(f,new Map);return new wn([...n,...f],i,new Map([...this.dictionaries,...o]))}};Vs.Schema=wn;var Wi=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 Wi(`${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],Wi.new(r,n,i,f)}};Vs.Field=Wi;function md(t,e){return new Map([...t||new Map,...e||new Map])}function bg(t,e=new Map){for(let r=-1,n=t.length;++r<n;){let f=t[r].type;if(cN.DataType.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&&bg(f.children,e)}return e}wn.prototype.fields=null;wn.prototype.metadata=null;wn.prototype.dictionaries=null;Wi.prototype.type=null;Wi.prototype.name=null;Wi.prototype.nullable=null;Wi.prototype.metadata=null});var gg=k(wd=>{"use strict";Object.defineProperty(wd,"__esModule",{value:!0});wd.ListBuilder=void 0;var pN=hg(),dN=er(),mN=$e(),wN=Sf(),hN=It(),bB=class extends hN.VariableWidthBuilder{constructor(e){super(e);this._run=new pN.Run,this._offsets=new wN.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 mN.List(new dN.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,f=0,o;for([f,o]of e)o===void 0?n.set(f,0):(n.set(f,o.length),i(this,f,r.bind(o)))}};wd.ListBuilder=bB});var yg=k(hd=>{"use strict";Object.defineProperty(hd,"__esModule",{value:!0});hd.FixedSizeListBuilder=void 0;var bN=hg(),gN=er(),yN=It(),jN=$e(),gB=class extends yN.Builder{constructor(){super(...arguments);this._run=new bN.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 jN.FixedSizeList(this.type.listSize,new gN.Field(r,e.type,!0)),n}clear(){return this._run.clear(),super.clear()}};hd.FixedSizeListBuilder=gB});var jg=k(bd=>{"use strict";Object.defineProperty(bd,"__esModule",{value:!0});bd.MapBuilder=void 0;var qN=er(),_N=$e(),vN=It(),yB=class extends vN.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 _N.Map_(new qN.Field(r,e.type,!0),this.type.keysSorted),this.numChildren-1}_flushPending(e){let r=this._offsets,n=this._setValue;e.forEach((i,f)=>{i===void 0?r.set(f,0):(r.set(f,i.size),n(this,f,i))})}};bd.MapBuilder=yB});var qg=k(gd=>{"use strict";Object.defineProperty(gd,"__esModule",{value:!0});gd.StructBuilder=void 0;var TN=er(),kN=It(),BN=$e(),jB=class extends kN.Builder{addChild(e,r=`${this.numChildren}`){let n=this.children.push(e);return this.type=new BN.Struct([...this.type.children,new TN.Field(r,e.type,!0)]),n}};gd.StructBuilder=jB});var _g=k(Ff=>{"use strict";Object.defineProperty(Ff,"__esModule",{value:!0});Ff.DenseUnionBuilder=Ff.SparseUnionBuilder=Ff.UnionBuilder=void 0;var IN=er(),qB=Sf(),xN=It(),SN=$e(),yd=class extends xN.Builder{constructor(e){super(e);this._typeIds=new qB.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:f,typeIds:o}}=this,s=[...i,new IN.Field(r,e.type)];return this.type=new SN.Union(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.")}};Ff.UnionBuilder=yd;var _B=class extends yd{};Ff.SparseUnionBuilder=_B;var vB=class extends yd{constructor(e){super(e);this._offsets=new qB.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)}};Ff.DenseUnionBuilder=vB});var sr=k(jd=>{"use strict";Object.defineProperty(jd,"__esModule",{value:!0});jd.Visitor=void 0;var EN=Dn(),AN=Nt(),A=dt(),ON=$e(),lt=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 FN(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}};jd.Visitor=lt;function FN(t,e,r=!0){let n=null,i=A.Type.NONE;switch(e instanceof EN.Data||e instanceof AN.Vector?i=vg(e.type):e instanceof ON.DataType?i=vg(e):typeof(i=e)!="number"&&(i=A.Type[e]),i){case A.Type.Null:n=t.visitNull;break;case A.Type.Bool:n=t.visitBool;break;case A.Type.Int:n=t.visitInt;break;case A.Type.Int8:n=t.visitInt8||t.visitInt;break;case A.Type.Int16:n=t.visitInt16||t.visitInt;break;case A.Type.Int32:n=t.visitInt32||t.visitInt;break;case A.Type.Int64:n=t.visitInt64||t.visitInt;break;case A.Type.Uint8:n=t.visitUint8||t.visitInt;break;case A.Type.Uint16:n=t.visitUint16||t.visitInt;break;case A.Type.Uint32:n=t.visitUint32||t.visitInt;break;case A.Type.Uint64:n=t.visitUint64||t.visitInt;break;case A.Type.Float:n=t.visitFloat;break;case A.Type.Float16:n=t.visitFloat16||t.visitFloat;break;case A.Type.Float32:n=t.visitFloat32||t.visitFloat;break;case A.Type.Float64:n=t.visitFloat64||t.visitFloat;break;case A.Type.Utf8:n=t.visitUtf8;break;case A.Type.Binary:n=t.visitBinary;break;case A.Type.FixedSizeBinary:n=t.visitFixedSizeBinary;break;case A.Type.Date:n=t.visitDate;break;case A.Type.DateDay:n=t.visitDateDay||t.visitDate;break;case A.Type.DateMillisecond:n=t.visitDateMillisecond||t.visitDate;break;case A.Type.Timestamp:n=t.visitTimestamp;break;case A.Type.TimestampSecond:n=t.visitTimestampSecond||t.visitTimestamp;break;case A.Type.TimestampMillisecond:n=t.visitTimestampMillisecond||t.visitTimestamp;break;case A.Type.TimestampMicrosecond:n=t.visitTimestampMicrosecond||t.visitTimestamp;break;case A.Type.TimestampNanosecond:n=t.visitTimestampNanosecond||t.visitTimestamp;break;case A.Type.Time:n=t.visitTime;break;case A.Type.TimeSecond:n=t.visitTimeSecond||t.visitTime;break;case A.Type.TimeMillisecond:n=t.visitTimeMillisecond||t.visitTime;break;case A.Type.TimeMicrosecond:n=t.visitTimeMicrosecond||t.visitTime;break;case A.Type.TimeNanosecond:n=t.visitTimeNanosecond||t.visitTime;break;case A.Type.Decimal:n=t.visitDecimal;break;case A.Type.List:n=t.visitList;break;case A.Type.Struct:n=t.visitStruct;break;case A.Type.Union:n=t.visitUnion;break;case A.Type.DenseUnion:n=t.visitDenseUnion||t.visitUnion;break;case A.Type.SparseUnion:n=t.visitSparseUnion||t.visitUnion;break;case A.Type.Dictionary:n=t.visitDictionary;break;case A.Type.Interval:n=t.visitInterval;break;case A.Type.IntervalDayTime:n=t.visitIntervalDayTime||t.visitInterval;break;case A.Type.IntervalYearMonth:n=t.visitIntervalYearMonth||t.visitInterval;break;case A.Type.FixedSizeList:n=t.visitFixedSizeList;break;case A.Type.Map:n=t.visitMap;break}if(typeof n=="function")return n;if(!r)return()=>null;throw new Error(`Unrecognized type '${A.Type[i]}'`)}function vg(t){switch(t.typeId){case A.Type.Null:return A.Type.Null;case A.Type.Int:{let{bitWidth:e,isSigned:r}=t;switch(e){case 8:return r?A.Type.Int8:A.Type.Uint8;case 16:return r?A.Type.Int16:A.Type.Uint16;case 32:return r?A.Type.Int32:A.Type.Uint32;case 64:return r?A.Type.Int64:A.Type.Uint64}return A.Type.Int}case A.Type.Float:switch(t.precision){case A.Precision.HALF:return A.Type.Float16;case A.Precision.SINGLE:return A.Type.Float32;case A.Precision.DOUBLE:return A.Type.Float64}return A.Type.Float;case A.Type.Binary:return A.Type.Binary;case A.Type.Utf8:return A.Type.Utf8;case A.Type.Bool:return A.Type.Bool;case A.Type.Decimal:return A.Type.Decimal;case A.Type.Time:switch(t.unit){case A.TimeUnit.SECOND:return A.Type.TimeSecond;case A.TimeUnit.MILLISECOND:return A.Type.TimeMillisecond;case A.TimeUnit.MICROSECOND:return A.Type.TimeMicrosecond;case A.TimeUnit.NANOSECOND:return A.Type.TimeNanosecond}return A.Type.Time;case A.Type.Timestamp:switch(t.unit){case A.TimeUnit.SECOND:return A.Type.TimestampSecond;case A.TimeUnit.MILLISECOND:return A.Type.TimestampMillisecond;case A.TimeUnit.MICROSECOND:return A.Type.TimestampMicrosecond;case A.TimeUnit.NANOSECOND:return A.Type.TimestampNanosecond}return A.Type.Timestamp;case A.Type.Date:switch(t.unit){case A.DateUnit.DAY:return A.Type.DateDay;case A.DateUnit.MILLISECOND:return A.Type.DateMillisecond}return A.Type.Date;case A.Type.Interval:switch(t.unit){case A.IntervalUnit.DAY_TIME:return A.Type.IntervalDayTime;case A.IntervalUnit.YEAR_MONTH:return A.Type.IntervalYearMonth}return A.Type.Interval;case A.Type.Map:return A.Type.Map;case A.Type.List:return A.Type.List;case A.Type.Struct:return A.Type.Struct;case A.Type.Union:switch(t.mode){case A.UnionMode.Dense:return A.Type.DenseUnion;case A.UnionMode.Sparse:return A.Type.SparseUnion}return A.Type.Union;case A.Type.FixedSizeBinary:return A.Type.FixedSizeBinary;case A.Type.FixedSizeList:return A.Type.FixedSizeList;case A.Type.Dictionary:return A.Type.Dictionary}throw new Error(`Unrecognized type '${A.Type[t.typeId]}'`)}lt.prototype.visitInt8=null;lt.prototype.visitInt16=null;lt.prototype.visitInt32=null;lt.prototype.visitInt64=null;lt.prototype.visitUint8=null;lt.prototype.visitUint16=null;lt.prototype.visitUint32=null;lt.prototype.visitUint64=null;lt.prototype.visitFloat16=null;lt.prototype.visitFloat32=null;lt.prototype.visitFloat64=null;lt.prototype.visitDateDay=null;lt.prototype.visitDateMillisecond=null;lt.prototype.visitTimestampSecond=null;lt.prototype.visitTimestampMillisecond=null;lt.prototype.visitTimestampMicrosecond=null;lt.prototype.visitTimestampNanosecond=null;lt.prototype.visitTimeSecond=null;lt.prototype.visitTimeMillisecond=null;lt.prototype.visitTimeMicrosecond=null;lt.prototype.visitTimeNanosecond=null;lt.prototype.visitDenseUnion=null;lt.prototype.visitSparseUnion=null;lt.prototype.visitIntervalDayTime=null;lt.prototype.visitIntervalYearMonth=null});var Bg=k(Cs=>{"use strict";Object.defineProperty(Cs,"__esModule",{value:!0});Cs.instance=Cs.SetVisitor=void 0;var DN=Nt(),NN=sr(),RN=ko(),PN=iu(),HN=Gt(),hn=dt(),ke=class extends NN.Visitor{};Cs.SetVisitor=ke;var MN=(t,e,r)=>{t[e]=r/864e5|0},Tg=(t,e,r)=>{t[e]=r%4294967296|0,t[e+1]=r/4294967296|0},zN=(t,e,r)=>{t[e]=r*1e3%4294967296|0,t[e+1]=r*1e3/4294967296|0},UN=(t,e,r)=>{t[e]=r*1e6%4294967296|0,t[e+1]=r*1e6/4294967296|0},TB=(t,e,r,n)=>{let{[r]:i,[r+1]:f}=e;i!=null&&f!=null&&t.set(n.subarray(0,f-i),i)},LN=({offset:t,values:e},r,n)=>{let i=t+r;n?e[i>>3]|=1<<i%8:e[i>>3]&=~(1<<i%8)},kB=({values:t},e,r)=>{MN(t,e,r.valueOf())},BB=({values:t},e,r)=>{Tg(t,e*2,r.valueOf())},ui=({stride:t,values:e},r,n)=>{e[t*r]=n},IB=({stride:t,values:e},r,n)=>{e[t*r]=PN.float64ToUint16(n)},kg=(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:f}=t,o=HN.toArrayBufferView(f,n);t.values.set(o.subarray(0,i),i*e)}}},VN=({stride:t,values:e},r,n)=>{e.set(n.subarray(0,t),t*r)},CN=({values:t,valueOffsets:e},r,n)=>TB(t,e,r,n),WN=({values:t,valueOffsets:e},r,n)=>{TB(t,e,r,RN.encodeUtf8(n))},KN=(t,e,r)=>{t.type.bitWidth<64?ui(t,e,r):kg(t,e,r)},YN=(t,e,r)=>{t.type.precision!==hn.Precision.HALF?ui(t,e,r):IB(t,e,r)},GN=(t,e,r)=>{t.type.unit===hn.DateUnit.DAY?kB(t,e,r):BB(t,e,r)},xB=({values:t},e,r)=>Tg(t,e*2,r/1e3),SB=({values:t},e,r)=>Tg(t,e*2,r),EB=({values:t},e,r)=>zN(t,e*2,r),AB=({values:t},e,r)=>UN(t,e*2,r),ZN=(t,e,r)=>{switch(t.type.unit){case hn.TimeUnit.SECOND:return xB(t,e,r);case hn.TimeUnit.MILLISECOND:return SB(t,e,r);case hn.TimeUnit.MICROSECOND:return EB(t,e,r);case hn.TimeUnit.NANOSECOND:return AB(t,e,r)}},OB=({values:t,stride:e},r,n)=>{t[e*r]=n},FB=({values:t,stride:e},r,n)=>{t[e*r]=n},DB=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},NB=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},JN=(t,e,r)=>{switch(t.type.unit){case hn.TimeUnit.SECOND:return OB(t,e,r);case hn.TimeUnit.MILLISECOND:return FB(t,e,r);case hn.TimeUnit.MICROSECOND:return DB(t,e,r);case hn.TimeUnit.NANOSECOND:return NB(t,e,r)}},QN=({values:t},e,r)=>{t.set(r.subarray(0,4),4*e)},XN=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets;for(let f=-1,o=i[e],s=i[e+1];o<s;)n.set(o++,r.get(++f))},$N=(t,e,r)=>{let n=t.getChildAt(0),i=t.valueOffsets,f=r instanceof Map?[...r]:Object.entries(r);for(let o=-1,s=i[e],u=i[e+1];s<u;)n.set(s++,f[++o])},eR=(t,e)=>(r,n,i)=>r&&r.set(t,e[i]),tR=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(i)),rR=(t,e)=>(r,n,i)=>r&&r.set(t,e.get(n.name)),nR=(t,e)=>(r,n,i)=>r&&r.set(t,e[n.name]),iR=(t,e,r)=>{let n=r instanceof Map?rR(e,r):r instanceof DN.Vector?tR(e,r):Array.isArray(r)?eR(e,r):nR(e,r);t.type.children.forEach((i,f)=>n(t.getChildAt(f),i,f))},fR=(t,e,r)=>{t.type.mode===hn.UnionMode.Dense?RB(t,e,r):PB(t,e,r)},RB=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(t.valueOffsets[e],r)},PB=(t,e,r)=>{let n=t.typeIdToChildIndex[t.typeIds[e]],i=t.getChildAt(n);i&&i.set(e,r)},oR=(t,e,r)=>{let n=t.getKey(e);n!==null&&t.setValue(n,r)},sR=(t,e,r)=>{t.type.unit===hn.IntervalUnit.DAY_TIME?HB(t,e,r):MB(t,e,r)},HB=({values:t},e,r)=>{t.set(r.subarray(0,2),2*e)},MB=({values:t},e,r)=>{t[e]=r[0]*12+r[1]%12},aR=(t,e,r)=>{let n=t.getChildAt(0),{stride:i}=t;for(let f=-1,o=e*i;++f<i;)n.set(o+f,r.get(f))};ke.prototype.visitBool=LN;ke.prototype.visitInt=KN;ke.prototype.visitInt8=ui;ke.prototype.visitInt16=ui;ke.prototype.visitInt32=ui;ke.prototype.visitInt64=kg;ke.prototype.visitUint8=ui;ke.prototype.visitUint16=ui;ke.prototype.visitUint32=ui;ke.prototype.visitUint64=kg;ke.prototype.visitFloat=YN;ke.prototype.visitFloat16=IB;ke.prototype.visitFloat32=ui;ke.prototype.visitFloat64=ui;ke.prototype.visitUtf8=WN;ke.prototype.visitBinary=CN;ke.prototype.visitFixedSizeBinary=VN;ke.prototype.visitDate=GN;ke.prototype.visitDateDay=kB;ke.prototype.visitDateMillisecond=BB;ke.prototype.visitTimestamp=ZN;ke.prototype.visitTimestampSecond=xB;ke.prototype.visitTimestampMillisecond=SB;ke.prototype.visitTimestampMicrosecond=EB;ke.prototype.visitTimestampNanosecond=AB;ke.prototype.visitTime=JN;ke.prototype.visitTimeSecond=OB;ke.prototype.visitTimeMillisecond=FB;ke.prototype.visitTimeMicrosecond=DB;ke.prototype.visitTimeNanosecond=NB;ke.prototype.visitDecimal=QN;ke.prototype.visitList=XN;ke.prototype.visitStruct=iR;ke.prototype.visitUnion=fR;ke.prototype.visitDenseUnion=RB;ke.prototype.visitSparseUnion=PB;ke.prototype.visitDictionary=oR;ke.prototype.visitInterval=sR;ke.prototype.visitIntervalDayTime=HB;ke.prototype.visitIntervalYearMonth=MB;ke.prototype.visitFixedSizeList=aR;ke.prototype.visitMap=$N;Cs.instance=new ke});var zB=k(Ws=>{"use strict";Object.defineProperty(Ws,"__esModule",{value:!0});Ws.instance=Ws.GetBuilderCtor=void 0;var lR=sr(),uR=ud(),cR=rg(),Ig=ig(),pR=fg(),dR=sg(),mR=ag(),wR=yg(),qd=lg(),xg=mg(),Ki=cg(),hR=gg(),bR=jg(),gR=ng(),yR=qg(),lu=dg(),uu=pg(),Sg=_g(),jR=pd(),Eg=class extends lR.Visitor{visitNull(){return gR.NullBuilder}visitBool(){return cR.BoolBuilder}visitInt(){return Ki.IntBuilder}visitInt8(){return Ki.Int8Builder}visitInt16(){return Ki.Int16Builder}visitInt32(){return Ki.Int32Builder}visitInt64(){return Ki.Int64Builder}visitUint8(){return Ki.Uint8Builder}visitUint16(){return Ki.Uint16Builder}visitUint32(){return Ki.Uint32Builder}visitUint64(){return Ki.Uint64Builder}visitFloat(){return qd.FloatBuilder}visitFloat16(){return qd.Float16Builder}visitFloat32(){return qd.Float32Builder}visitFloat64(){return qd.Float64Builder}visitUtf8(){return jR.Utf8Builder}visitBinary(){return uR.BinaryBuilder}visitFixedSizeBinary(){return mR.FixedSizeBinaryBuilder}visitDate(){return Ig.DateBuilder}visitDateDay(){return Ig.DateDayBuilder}visitDateMillisecond(){return Ig.DateMillisecondBuilder}visitTimestamp(){return lu.TimestampBuilder}visitTimestampSecond(){return lu.TimestampSecondBuilder}visitTimestampMillisecond(){return lu.TimestampMillisecondBuilder}visitTimestampMicrosecond(){return lu.TimestampMicrosecondBuilder}visitTimestampNanosecond(){return lu.TimestampNanosecondBuilder}visitTime(){return uu.TimeBuilder}visitTimeSecond(){return uu.TimeSecondBuilder}visitTimeMillisecond(){return uu.TimeMillisecondBuilder}visitTimeMicrosecond(){return uu.TimeMicrosecondBuilder}visitTimeNanosecond(){return uu.TimeNanosecondBuilder}visitDecimal(){return pR.DecimalBuilder}visitList(){return hR.ListBuilder}visitStruct(){return yR.StructBuilder}visitUnion(){return Sg.UnionBuilder}visitDenseUnion(){return Sg.DenseUnionBuilder}visitSparseUnion(){return Sg.SparseUnionBuilder}visitDictionary(){return dR.DictionaryBuilder}visitInterval(){return xg.IntervalBuilder}visitIntervalDayTime(){return xg.IntervalDayTimeBuilder}visitIntervalYearMonth(){return xg.IntervalYearMonthBuilder}visitFixedSizeList(){return wR.FixedSizeListBuilder}visitMap(){return bR.MapBuilder}};Ws.GetBuilderCtor=Eg;Ws.instance=new Eg});var vd=k(K=>{"use strict";Object.defineProperty(K,"__esModule",{value:!0});K.DenseUnionBuilder=K.SparseUnionBuilder=K.UnionBuilder=K.StructBuilder=K.MapBuilder=K.FixedSizeListBuilder=K.ListBuilder=K.BinaryBuilder=K.Utf8Builder=K.IntervalYearMonthBuilder=K.IntervalDayTimeBuilder=K.IntervalBuilder=K.TimestampNanosecondBuilder=K.TimestampMicrosecondBuilder=K.TimestampMillisecondBuilder=K.TimestampSecondBuilder=K.TimestampBuilder=K.TimeNanosecondBuilder=K.TimeMicrosecondBuilder=K.TimeMillisecondBuilder=K.TimeSecondBuilder=K.TimeBuilder=K.Uint64Builder=K.Uint32Builder=K.Uint16Builder=K.Uint8Builder=K.Int64Builder=K.Int32Builder=K.Int16Builder=K.Int8Builder=K.IntBuilder=K.Float64Builder=K.Float32Builder=K.Float16Builder=K.FloatBuilder=K.FixedSizeBinaryBuilder=K.DictionaryBuilder=K.DecimalBuilder=K.DateMillisecondBuilder=K.DateDayBuilder=K.DateBuilder=K.NullBuilder=K.BoolBuilder=K.Builder=void 0;var qR=It();Object.defineProperty(K,"Builder",{enumerable:!0,get:function(){return qR.Builder}});var _R=rg();Object.defineProperty(K,"BoolBuilder",{enumerable:!0,get:function(){return _R.BoolBuilder}});var vR=ng();Object.defineProperty(K,"NullBuilder",{enumerable:!0,get:function(){return vR.NullBuilder}});var Ag=ig();Object.defineProperty(K,"DateBuilder",{enumerable:!0,get:function(){return Ag.DateBuilder}});Object.defineProperty(K,"DateDayBuilder",{enumerable:!0,get:function(){return Ag.DateDayBuilder}});Object.defineProperty(K,"DateMillisecondBuilder",{enumerable:!0,get:function(){return Ag.DateMillisecondBuilder}});var TR=fg();Object.defineProperty(K,"DecimalBuilder",{enumerable:!0,get:function(){return TR.DecimalBuilder}});var kR=sg();Object.defineProperty(K,"DictionaryBuilder",{enumerable:!0,get:function(){return kR.DictionaryBuilder}});var BR=ag();Object.defineProperty(K,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return BR.FixedSizeBinaryBuilder}});var _d=lg();Object.defineProperty(K,"FloatBuilder",{enumerable:!0,get:function(){return _d.FloatBuilder}});Object.defineProperty(K,"Float16Builder",{enumerable:!0,get:function(){return _d.Float16Builder}});Object.defineProperty(K,"Float32Builder",{enumerable:!0,get:function(){return _d.Float32Builder}});Object.defineProperty(K,"Float64Builder",{enumerable:!0,get:function(){return _d.Float64Builder}});var Yi=cg();Object.defineProperty(K,"IntBuilder",{enumerable:!0,get:function(){return Yi.IntBuilder}});Object.defineProperty(K,"Int8Builder",{enumerable:!0,get:function(){return Yi.Int8Builder}});Object.defineProperty(K,"Int16Builder",{enumerable:!0,get:function(){return Yi.Int16Builder}});Object.defineProperty(K,"Int32Builder",{enumerable:!0,get:function(){return Yi.Int32Builder}});Object.defineProperty(K,"Int64Builder",{enumerable:!0,get:function(){return Yi.Int64Builder}});Object.defineProperty(K,"Uint8Builder",{enumerable:!0,get:function(){return Yi.Uint8Builder}});Object.defineProperty(K,"Uint16Builder",{enumerable:!0,get:function(){return Yi.Uint16Builder}});Object.defineProperty(K,"Uint32Builder",{enumerable:!0,get:function(){return Yi.Uint32Builder}});Object.defineProperty(K,"Uint64Builder",{enumerable:!0,get:function(){return Yi.Uint64Builder}});var cu=pg();Object.defineProperty(K,"TimeBuilder",{enumerable:!0,get:function(){return cu.TimeBuilder}});Object.defineProperty(K,"TimeSecondBuilder",{enumerable:!0,get:function(){return cu.TimeSecondBuilder}});Object.defineProperty(K,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return cu.TimeMillisecondBuilder}});Object.defineProperty(K,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return cu.TimeMicrosecondBuilder}});Object.defineProperty(K,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return cu.TimeNanosecondBuilder}});var pu=dg();Object.defineProperty(K,"TimestampBuilder",{enumerable:!0,get:function(){return pu.TimestampBuilder}});Object.defineProperty(K,"TimestampSecondBuilder",{enumerable:!0,get:function(){return pu.TimestampSecondBuilder}});Object.defineProperty(K,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return pu.TimestampMillisecondBuilder}});Object.defineProperty(K,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return pu.TimestampMicrosecondBuilder}});Object.defineProperty(K,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return pu.TimestampNanosecondBuilder}});var Og=mg();Object.defineProperty(K,"IntervalBuilder",{enumerable:!0,get:function(){return Og.IntervalBuilder}});Object.defineProperty(K,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return Og.IntervalDayTimeBuilder}});Object.defineProperty(K,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return Og.IntervalYearMonthBuilder}});var IR=pd();Object.defineProperty(K,"Utf8Builder",{enumerable:!0,get:function(){return IR.Utf8Builder}});var xR=ud();Object.defineProperty(K,"BinaryBuilder",{enumerable:!0,get:function(){return xR.BinaryBuilder}});var SR=gg();Object.defineProperty(K,"ListBuilder",{enumerable:!0,get:function(){return SR.ListBuilder}});var ER=yg();Object.defineProperty(K,"FixedSizeListBuilder",{enumerable:!0,get:function(){return ER.FixedSizeListBuilder}});var AR=jg();Object.defineProperty(K,"MapBuilder",{enumerable:!0,get:function(){return AR.MapBuilder}});var OR=qg();Object.defineProperty(K,"StructBuilder",{enumerable:!0,get:function(){return OR.StructBuilder}});var Fg=_g();Object.defineProperty(K,"UnionBuilder",{enumerable:!0,get:function(){return Fg.UnionBuilder}});Object.defineProperty(K,"SparseUnionBuilder",{enumerable:!0,get:function(){return Fg.SparseUnionBuilder}});Object.defineProperty(K,"DenseUnionBuilder",{enumerable:!0,get:function(){return Fg.DenseUnionBuilder}});var Dg=dt(),FR=pd(),DR=It(),UB=Bg(),LB=zB();DR.Builder.new=VB;function VB(t){let e=t.type,r=new(LB.instance.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;e.children.forEach((o,s)=>{let{type:u}=o,l=f(o,s);r.children.push(VB({...l,type:u}))})}return r}Object.keys(Dg.Type).map(t=>Dg.Type[t]).filter(t=>typeof t=="number"&&t!==Dg.Type.NONE).forEach(t=>{let e=LB.instance.visit(t);e.prototype._setValue=UB.instance.getVisitFn(t)});FR.Utf8Builder.prototype._setValue=UB.instance.visitBinary});var CB=k(Ks=>{"use strict";Object.defineProperty(Ks,"__esModule",{value:!0});Ks.Block=Ks.Footer=void 0;var NR=zi(),Td=Bf(),bn=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 bn).__init(e.readInt32(e.position())+e.position(),e)}static getSizePrefixedRootAsFooter(e,r){return e.setPosition(e.position()+NR.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):Td.MetadataVersion.V1}schema(e){let r=this.bb.__offset(this.bb_pos,6);return r?(e||new Td.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 kd).__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 kd).__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 Td.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,Td.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,f,o){return bn.startFooter(e),bn.addVersion(e,r),bn.addSchema(e,n),bn.addDictionaries(e,i),bn.addRecordBatches(e,f),bn.addCustomMetadata(e,o),bn.endFooter(e)}};Ks.Footer=bn;var kd=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()}};Ks.Block=kd});var Pg=k(Ys=>{"use strict";Object.defineProperty(Ys,"__esModule",{value:!0});Ys.FileBlock=Ys.Footer=void 0;var Rn=CB(),Ng=zi(),WB=Ng.flatbuffers.Long,RR=Ng.flatbuffers.Builder,PR=Ng.flatbuffers.ByteBuffer,KB=er(),YB=dt(),HR=Gt(),Rg=class{constructor(e,r=YB.MetadataVersion.V4,n,i){this.schema=e,this.version=r,n&&(this._recordBatches=n),i&&(this._dictionaryBatches=i)}static decode(e){e=new PR(HR.toUint8Array(e));let r=Rn.Footer.getRootAsFooter(e),n=KB.Schema.decode(r.schema());return new GB(n,r)}static encode(e){let r=new RR,n=KB.Schema.encode(r,e.schema);Rn.Footer.startRecordBatchesVector(r,e.numRecordBatches),[...e.recordBatches()].slice().reverse().forEach(o=>Df.encode(r,o));let i=r.endVector();Rn.Footer.startDictionariesVector(r,e.numDictionaries),[...e.dictionaryBatches()].slice().reverse().forEach(o=>Df.encode(r,o));let f=r.endVector();return Rn.Footer.startFooter(r),Rn.Footer.addSchema(r,n),Rn.Footer.addVersion(r,YB.MetadataVersion.V4),Rn.Footer.addRecordBatches(r,i),Rn.Footer.addDictionaries(r,f),Rn.Footer.finishFooterBuffer(r,Rn.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}};Ys.Footer=Rg;var GB=class extends Rg{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 Df.decode(r)}return null}getDictionaryBatch(e){if(e>=0&&e<this.numDictionaries){let r=this._footer.dictionaries(e);if(r)return Df.decode(r)}return null}},Df=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 Df(e.metaDataLength(),e.bodyLength(),e.offset())}static encode(e,r){let{metaDataLength:n}=r,i=new WB(r.offset,0),f=new WB(r.bodyLength,0);return Rn.Block.createBlock(e,i,n,f)}};Ys.FileBlock=Df});var Hf=k(Pf=>{"use strict";Object.defineProperty(Pf,"__esModule",{value:!0});Pf.AsyncByteStream=Pf.ByteStream=Pf.AsyncByteQueue=void 0;var Nf=ru(),ZB=ko(),du=Es(),Hg=Gt(),Gs=mr(),Mg=class extends du.AsyncQueue{write(e){if((e=Hg.toUint8Array(e)).byteLength>0)return super.write(e)}toString(e=!1){return e?ZB.decodeUtf8(this.toUint8Array(!0)):this.toUint8Array(!1).then(ZB.decodeUtf8)}toUint8Array(e=!1){return e?Hg.joinUint8Arrays(this._values)[0]:(async()=>{let r=[],n=0;for await(let i of this)r.push(i),n+=i.byteLength;return Hg.joinUint8Arrays(r,n)[0]})()}};Pf.AsyncByteQueue=Mg;var JB=class{constructor(e){e&&(this.source=new QB(Nf.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)}};Pf.ByteStream=JB;var Bd=class{constructor(e){e instanceof Bd?this.source=e.source:e instanceof Mg?this.source=new Rf(Nf.default.fromAsyncIterable(e)):Gs.isReadableNodeStream(e)?this.source=new Rf(Nf.default.fromNodeStream(e)):Gs.isReadableDOMStream(e)?this.source=new Rf(Nf.default.fromDOMStream(e)):Gs.isFetchResponse(e)?this.source=new Rf(Nf.default.fromDOMStream(e.body)):Gs.isIterable(e)?this.source=new Rf(Nf.default.fromIterable(e)):Gs.isPromise(e)?this.source=new Rf(Nf.default.fromAsyncIterable(e)):Gs.isAsyncIterable(e)&&(this.source=new Rf(Nf.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)}};Pf.AsyncByteStream=Bd;var QB=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)||du.ITERATOR_DONE)}return(e){return Object.create(this.source.return&&this.source.return(e)||du.ITERATOR_DONE)}},Rf=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)||du.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)||du.ITERATOR_DONE;return this._closedPromiseResolve&&this._closedPromiseResolve(),this._closedPromiseResolve=void 0,Object.create(r)}}});var zg=k(Zs=>{"use strict";Object.defineProperty(Zs,"__esModule",{value:!0});Zs.AsyncRandomAccessFile=Zs.RandomAccessFile=void 0;var XB=Hf(),MR=Gt(),$B=class extends XB.ByteStream{constructor(e,r){super();this.position=0,this.buffer=MR.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}}};Zs.RandomAccessFile=$B;var eI=class extends XB.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 f=i,o=0,s=0,u=Math.min(n,f+Math.min(n-f,e)),l=new Uint8Array(Math.max(0,(this.position=u)-f));for(;(f+=s)<u&&(o+=s)<l.byteLength;)({bytesRead:s}=await r.read(l,o,l.byteLength-o,f));return l}return null}async readAt(e,r){this._pending&&await 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(await n.read(o,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}}};Zs.AsyncRandomAccessFile=eI});var Lg=k(ci=>{"use strict";Object.defineProperty(ci,"__esModule",{value:!0});ci.Int128=ci.Int64=ci.Uint64=ci.BaseInt64=void 0;var zR=1<<16;function Js(t){return t<0&&(t=4294967295+t+1),`0x${t.toString(16)}`}var Qs=8,Ug=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8],Id=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?zR: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`${Js(this.buffer[1])} ${Js(this.buffer[0])}`}};ci.BaseInt64=Id;var et=class extends Id{times(e){return this._times(e),this}plus(e){return this._plus(e),this}static from(e,r=new Uint32Array(2)){return et.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return et.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.length,i=new et(r);for(let f=0;f<n;){let o=Qs<n-f?Qs:n-f,s=new et(new Uint32Array([parseInt(e.substr(f,o),10),0])),u=new et(new Uint32Array([Ug[o],0]));i.times(u),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;)et.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new et(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new et(new Uint32Array(e.buffer)).plus(r)}};ci.Uint64=et;var Cr=class extends Id{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 Cr.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(2)){return Cr.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(2)){let n=e.startsWith("-"),i=e.length,f=new Cr(r);for(let o=n?1:0;o<i;){let s=Qs<i-o?Qs:i-o,u=new Cr(new Uint32Array([parseInt(e.substr(o,s),10),0])),l=new Cr(new Uint32Array([Ug[s],0]));f.times(l),f.plus(u),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;)Cr.from(e[n],new Uint32Array(r.buffer,r.byteOffset+2*n*4,2));return r}static multiply(e,r){return new Cr(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new Cr(new Uint32Array(e.buffer)).plus(r)}};ci.Int64=Cr;var Pn=class{constructor(e){this.buffer=e}high(){return new Cr(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2))}low(){return new Cr(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 et(new Uint32Array([this.buffer[3],0])),n=new et(new Uint32Array([this.buffer[2],0])),i=new et(new Uint32Array([this.buffer[1],0])),f=new et(new Uint32Array([this.buffer[0],0])),o=new et(new Uint32Array([e.buffer[3],0])),s=new et(new Uint32Array([e.buffer[2],0])),u=new et(new Uint32Array([e.buffer[1],0])),l=new et(new Uint32Array([e.buffer[0],0])),c=et.multiply(f,l);this.buffer[0]=c.low();let w=new et(new Uint32Array([c.high(),0]));return c=et.multiply(i,l),w.plus(c),c=et.multiply(f,u),w.plus(c),this.buffer[1]=w.low(),this.buffer[3]=w.lessThan(c)?1:0,this.buffer[2]=w.high(),new et(new Uint32Array(this.buffer.buffer,this.buffer.byteOffset+8,2)).plus(et.multiply(n,l)).plus(et.multiply(i,u)).plus(et.multiply(f,s)),this.buffer[3]+=et.multiply(r,l).plus(et.multiply(n,u)).plus(et.multiply(i,s)).plus(et.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`${Js(this.buffer[3])} ${Js(this.buffer[2])} ${Js(this.buffer[1])} ${Js(this.buffer[0])}`}static multiply(e,r){return new Pn(new Uint32Array(e.buffer)).times(r)}static add(e,r){return new Pn(new Uint32Array(e.buffer)).plus(r)}static from(e,r=new Uint32Array(4)){return Pn.fromString(typeof e=="string"?e:e.toString(),r)}static fromNumber(e,r=new Uint32Array(4)){return Pn.fromString(e.toString(),r)}static fromString(e,r=new Uint32Array(4)){let n=e.startsWith("-"),i=e.length,f=new Pn(r);for(let o=n?1:0;o<i;){let s=Qs<i-o?Qs:i-o,u=new Pn(new Uint32Array([parseInt(e.substr(o,s),10),0,0,0])),l=new Pn(new Uint32Array([Ug[s],0,0,0]));f.times(l),f.plus(u),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;)Pn.from(e[n],new Uint32Array(r.buffer,r.byteOffset+4*4*n,4));return r}};ci.Int128=Pn});var iI=k(Xs=>{"use strict";Object.defineProperty(Xs,"__esModule",{value:!0});Xs.JSONVectorLoader=Xs.VectorLoader=void 0;var Jt=Dn(),UR=er(),Gi=$e(),LR=sr(),tI=si(),VR=ko(),xd=Lg(),rI=dt(),pi=Gt(),Vg=class extends LR.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 UR.Field?e.type:e)}visitNull(e,{length:r}=this.nextFieldNode()){return Jt.Data.Null(e,0,r)}visitBool(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Bool(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitInt(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Int(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFloat(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Float(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitUtf8(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.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 Jt.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 Jt.Data.FixedSizeBinary(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDate(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Date(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTimestamp(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Timestamp(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitTime(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Time(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitDecimal(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.Decimal(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitList(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.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 Jt.Data.Struct(e,0,r,n,this.readNullBitmap(e,n),this.visitMany(e.children))}visitUnion(e){return e.mode===rI.UnionMode.Sparse?this.visitSparseUnion(e):this.visitDenseUnion(e)}visitDenseUnion(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.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 Jt.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 Jt.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 Jt.Data.Interval(e,0,r,n,this.readNullBitmap(e,n),this.readData(e))}visitFixedSizeList(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.Data.FixedSizeList(e,0,r,n,this.readNullBitmap(e,n),this.visit(e.children[0]))}visitMap(e,{length:r,nullCount:n}=this.nextFieldNode()){return Jt.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)}};Xs.VectorLoader=Vg;var nI=class extends Vg{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):tI.packBools(this.sources[n])}readOffsets(e,{offset:r}=this.nextBufferRange()){return pi.toArrayBufferView(Uint8Array,pi.toArrayBufferView(Int32Array,this.sources[r]))}readTypeIds(e,{offset:r}=this.nextBufferRange()){return pi.toArrayBufferView(Uint8Array,pi.toArrayBufferView(e.ArrayType,this.sources[r]))}readData(e,{offset:r}=this.nextBufferRange()){let{sources:n}=this;return Gi.DataType.isTimestamp(e)||(Gi.DataType.isInt(e)||Gi.DataType.isTime(e))&&e.bitWidth===64||Gi.DataType.isDate(e)&&e.unit===rI.DateUnit.MILLISECOND?pi.toArrayBufferView(Uint8Array,xd.Int64.convertArray(n[r])):Gi.DataType.isDecimal(e)?pi.toArrayBufferView(Uint8Array,xd.Int128.convertArray(n[r])):Gi.DataType.isBinary(e)||Gi.DataType.isFixedSizeBinary(e)?CR(n[r]):Gi.DataType.isBool(e)?tI.packBools(n[r]):Gi.DataType.isUtf8(e)?VR.encodeUtf8(n[r].join("")):pi.toArrayBufferView(Uint8Array,pi.toArrayBufferView(e.ArrayType,n[r].map(i=>+i)))}};Xs.JSONVectorLoader=nI;function CR(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 mu=k(ea=>{"use strict";Object.defineProperty(ea,"__esModule",{value:!0});ea.StructRow=ea.MapRow=void 0;var fI=Qb(),ar=Symbol.for("parent"),$s=Symbol.for("rowIndex"),Wr=Symbol.for("keyToIdx"),Kr=Symbol.for("idxToVal"),Cg=Symbol.for("nodejs.util.inspect.custom"),di=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[Wr]||(this[Wr]=new Map),i=n.get(e);if(i!==void 0){let f=this[Kr]||(this[Kr]=new Array(this.size));(r=f[i])!==void 0||(f[i]=r=this.getValue(i))}else if((i=this.getIndex(e))>-1){n.set(e,i);let f=this[Kr]||(this[Kr]=new Array(this.size));(r=f[i])!==void 0||(f[i]=r=this.getValue(i))}}return r}set(e,r){if(e!=null){let n=this[Wr]||(this[Wr]=new Map),i=n.get(e);if(i===void 0&&n.set(e,i=this.getIndex(e)),i>-1){let f=this[Kr]||(this[Kr]=new Array(this.size));f[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[Wr]||(this[Wr]=new Map),i=this[Kr]||(this[Kr]=new Array(this.size));for(let f,o,s=0,u,l;!((u=e.next()).done||(l=r.next()).done);++s)f=u.value,o=l.value,i[s]=o,n.has(f)||n.set(f,s),yield[f,o]}forEach(e,r){let n=this.keys(),i=this.values(),f=r===void 0?e:(u,l,c)=>e.call(r,u,l,c),o=this[Wr]||(this[Wr]=new Map),s=this[Kr]||(this[Kr]=new Array(this.size));for(let u,l,c=0,w,p;!((w=n.next()).done||(p=i.next()).done);++c)u=w.value,l=p.value,s[c]=l,o.has(u)||o.set(u,c),f(l,u,this)}toArray(){return[...this.values()]}toJSON(){let e={};return this.forEach((r,n)=>e[n]=r),e}inspect(){return this.toString()}[Cg](){return this.toString()}toString(){let e=[];return this.forEach((r,n)=>{n=fI.valueToString(n),r=fI.valueToString(r),e.push(`${n}: ${r}`)}),`{ ${e.join(", ")} }`}};di[Symbol.toStringTag]=(t=>(Object.defineProperties(t,{size:{writable:!0,enumerable:!1,configurable:!1,value:0},[ar]:{writable:!0,enumerable:!1,configurable:!1,value:null},[$s]:{writable:!0,enumerable:!1,configurable:!1,value:-1}}),t[Symbol.toStringTag]="Row"))(di.prototype);var oI=class extends di{constructor(e){super(e,e.length);return WR(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)}};ea.MapRow=oI;var sI=class extends di{constructor(e){super(e,e.type.children.length);return aI(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[$s])}setValue(e,r){return this[ar].getChildAt(e).set(this[$s],r)}};ea.StructRow=sI;Object.setPrototypeOf(di.prototype,Map.prototype);var aI=(()=>{let t={enumerable:!0,configurable:!1,get:null,set:null};return e=>{let r=-1,n=e[Wr]||(e[Wr]=new Map),i=o=>function(){return this.get(o)},f=o=>function(s){return this.set(o,s)};for(let o of e.keys())n.set(o,++r),t.get=i(o),t.set=f(o),Object.prototype.hasOwnProperty.call(e,o)||(t.enumerable=!0,Object.defineProperty(e,o,t)),Object.prototype.hasOwnProperty.call(e,r)||(t.enumerable=!1,Object.defineProperty(e,r,t));return t.get=t.set=null,e}})(),WR=(()=>{if(typeof Proxy=="undefined")return aI;let t=di.prototype.has,e=di.prototype.get,r=di.prototype.set,n=di.prototype.getKey,i={isExtensible(){return!1},deleteProperty(){return!1},preventExtensions(){return!0},ownKeys(f){return[...f.keys()].map(o=>`${o}`)},has(f,o){switch(o){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 $s:case Kr:case Wr:case Cg:return!0}return typeof o=="number"&&!f.has(o)&&(o=f.getKey(o)),f.has(o)},get(f,o,s){switch(o){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 $s:case Kr:case Wr:case Cg:return Reflect.get(f,o,s)}return typeof o=="number"&&!t.call(s,o)&&(o=n.call(s,o)),e.call(s,o)},set(f,o,s,u){switch(o){case ar:case $s:case Kr:case Wr:return Reflect.set(f,o,s,u);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 o=="number"&&!t.call(u,o)&&(o=n.call(u,o)),t.call(u,o)?!!r.call(u,o,s):!1}};return f=>new Proxy(f,i)})()});var hu=k(Mf=>{"use strict";Object.defineProperty(Mf,"__esModule",{value:!0});Mf.createElementComparator=Mf.clampRange=Mf.clampIndex=void 0;var lI=Nt(),uI=mu(),KR=Gt(),cI=mr();function YR(t,e,r){let n=t.length,i=e>-1?e:n+e%n;return r?r(t,i):i}Mf.clampIndex=YR;var pI;function GR(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&&(pI=f,f=o,o=pI),o>i&&(o=i),n?n(t,f,o):[f,o]}Mf.clampRange=GR;var ZR=cI.BigIntAvailable?cI.BigInt(0):0,dI=t=>t!==t;function wu(t){let e=typeof t;if(e!=="object"||t===null)return dI(t)?dI:e!=="bigint"?r=>r===t:r=>ZR+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?KR.compareArrayLike(t,r):!1:t instanceof Map?QR(t):Array.isArray(t)?JR(t):t instanceof lI.Vector?XR(t):$R(t)}Mf.createElementComparator=wu;function JR(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=wu(t[r]);return Sd(e)}function QR(t){let e=-1,r=[];return t.forEach(n=>r[++e]=wu(n)),Sd(r)}function XR(t){let e=[];for(let r=-1,n=t.length;++r<n;)e[r]=wu(t.get(r));return Sd(e)}function $R(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]=wu(t[e[n]]);return Sd(r,e)}function Sd(t,e){return r=>{if(!r||typeof r!="object")return!1;switch(r.constructor){case Array:return eP(t,r);case Map:case uI.MapRow:case uI.StructRow:return mI(t,r,r.keys());case Object:case void 0:return mI(t,r,e||Object.keys(r))}return r instanceof lI.Vector?tP(t,r):!1}}function eP(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 tP(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 mI(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,u=f.next(),l=n.next(),c=i.next();for(;o<s&&!l.done&&!c.done&&!u.done&&!(l.value!==c.value||!t[o](u.value));++o,l=n.next(),c=i.next(),u=f.next());return o===s&&l.done&&c.done&&u.done?!0:(n.return&&n.return(),i.return&&i.return(),f.return&&f.return(),!1)}});var ta=k(Rr=>{"use strict";Object.defineProperty(Rr,"__esModule",{value:!0});Rr.selectColumnChildrenArgs=Rr.selectVectorChildrenArgs=Rr.selectChunkArgs=Rr.selectFieldArgs=Rr.selectColumnArgs=Rr.selectArgs=void 0;var wI=Dn(),hI=er(),zf=ra(),bu=Nt(),bI=$e(),rP=Lf(),Uf=Array.isArray;Rr.selectArgs=(t,e)=>Ed(t,e,[],0);Rr.selectColumnArgs=t=>{let[e,r]=Kg(t,[[],[]]);return r.map((n,i)=>n instanceof zf.Column?zf.Column.new(n.field.clone(e[i]),n):n instanceof bu.Vector?zf.Column.new(e[i],n):zf.Column.new(e[i],[]))};Rr.selectFieldArgs=t=>Kg(t,[[],[]]);Rr.selectChunkArgs=(t,e)=>Wg(t,e,[],0);Rr.selectVectorChildrenArgs=(t,e)=>gI(t,e,[],0);Rr.selectColumnChildrenArgs=(t,e)=>yI(t,e,[],0);function Ed(t,e,r,n){let i,f=n,o=-1,s=e.length;for(;++o<s;)Uf(i=e[o])?f=Ed(t,i,r,f).length:i instanceof t&&(r[f++]=i);return r}function Wg(t,e,r,n){let i,f=n,o=-1,s=e.length;for(;++o<s;)Uf(i=e[o])?f=Wg(t,i,r,f).length:i instanceof rP.Chunked?f=Wg(t,i.chunks,r,f).length:i instanceof t&&(r[f++]=i);return r}function gI(t,e,r,n){let i,f=n,o=-1,s=e.length;for(;++o<s;)Uf(i=e[o])?f=gI(t,i,r,f).length:i instanceof t?f=Ed(bu.Vector,i.schema.fields.map((u,l)=>i.getChildAt(l)),r,f).length:i instanceof bu.Vector&&(r[f++]=i);return r}function yI(t,e,r,n){let i,f=n,o=-1,s=e.length;for(;++o<s;)Uf(i=e[o])?f=yI(t,i,r,f).length:i instanceof t?f=Ed(zf.Column,i.schema.fields.map((u,l)=>zf.Column.new(u,i.getChildAt(l))),r,f).length:i instanceof zf.Column&&(r[f++]=i);return r}var nP=(t,[e,r],n)=>(t[0][n]=e,t[1][n]=r,t);function Kg(t,e){let r,n;switch(n=t.length){case 0:return e;case 1:if(r=e[0],!t[0])return e;if(Uf(t[0]))return Kg(t[0],e);t[0]instanceof wI.Data||t[0]instanceof bu.Vector||t[0]instanceof bI.DataType||([r,t]=Object.entries(t[0]).reduce(nP,e));break;default:Uf(r=t[n-1])?t=Uf(t[0])?t[0]:t.slice(0,n-1):(t=Uf(t[0])?t[0]:t,r=[])}let i=-1,f=-1,o=-1,s=t.length,u,l,[c,w]=e;for(;++o<s;)l=t[o],l instanceof zf.Column&&(w[++f]=l)?c[++i]=l.field.clone(r[o],l.type,!0):({[o]:u=o}=r,l instanceof bI.DataType&&(w[++f]=l)?c[++i]=hI.Field.new(u,l,!0):l&&l.type&&(w[++f]=l)&&(l instanceof wI.Data&&(w[f]=l=bu.Vector.new(l)),c[++i]=hI.Field.new(u,l.type,!0)));return e}});var Lf=k(Ad=>{"use strict";Object.defineProperty(Ad,"__esModule",{value:!0});Ad.Chunked=void 0;var iP=hu(),jI=$e(),fP=ta(),qI=Nt(),_I=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}},Zi=class extends qI.AbstractVector{constructor(e,r=[],n=oP(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 fP.selectChunkArgs(qI.Vector,e)}static concat(...e){let r=Zi.flatten(...e);return new Zi(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(jI.DataType.isDictionary(this._type)){if(!this._indices){let e=this._chunks;this._indices=e.length===1?e[0].indices:Zi.concat(...e.map(r=>r.indices))}return this._indices}return null}get dictionary(){return jI.DataType.isDictionary(this._type)?this._chunks[this._chunks.length-1].data.dictionary:null}[Symbol.iterator](){return new _I(this._chunks)}clone(e=this._chunks){return new Zi(this._type,e)}concat(...e){return this.clone(Zi.flatten(this,...e))}slice(e,r){return iP.clampRange(this,e,r,this._sliceInternal)}getChildAt(e){if(e<0||e>=this._numChildren)return null;let r=this._children||(this._children=[]),n,i,f;return(n=r[e])?n:(i=(this._type.children||[])[e])&&(f=this._chunks.map(o=>o.getChildAt(e)).filter(o=>o!=null),f.length>0)?r[e]=new Zi(i.type,f):null}search(e,r){let n=e,i=this._chunkOffsets,f=i.length-1;if(n<0||n>=i[f])return null;if(f<=1)return r?r(this,0,n):[0,n];let o=0,s=0,u=0;do{if(o+1===f)return r?r(this,o,n-s):[o,n-s];u=o+(f-o)/2|0,n>=i[u]?o=u:f=u}while(n<i[f]&&n>=(s=i[o]));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,f)=>n[i].set(f,r))}indexOf(e,r){return r&&typeof r=="number"?this.search(r,(n,i,f)=>this.indexOfInternal(n,i,f,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,f=new Array(r);for(let u=-1;++u<r;)i+=(f[u]=e[u].toArray()).length;n!==f[0].constructor&&(n=f[0].constructor);let o=new n(i),s=n===Array?aP:sP;for(let u=-1,l=0;++u<r;)l=s(f[u],o,l);return o}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 f=r-1,o=e.length,s=n,u=0,l=-1;for(;++f<o;){if(~(l=e[f].indexOf(i,s)))return u+l;s=0,u+=e[f].length}return-1}_sliceInternal(e,r,n){let i=[],{chunks:f,_chunkOffsets:o}=e;for(let s=-1,u=f.length;++s<u;){let l=f[s],c=l.length,w=o[s];if(w>=n)break;if(r>=w+c)continue;if(w>=r&&w+c<=n){i.push(l);continue}let p=Math.max(0,r-w),g=Math.min(n-w,c);i.push(l.slice(p,g))}return e.clone(i)}};Ad.Chunked=Zi;function oP(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 sP=(t,e,r)=>(e.set(t,r),r+t.length),aP=(t,e,r)=>{let n=r;for(let i=-1,f=t.length;++i<f;)e[n++]=t[i];return n}});var ra=k(Od=>{"use strict";Object.defineProperty(Od,"__esModule",{value:!0});Od.Column=void 0;var vI=er(),TI=Nt(),Yg=Lf(),Mo=class extends Yg.Chunked{constructor(e,r=[],n){r=Yg.Chunked.flatten(...r);super(e.type,r,n);if(this._field=e,r.length===1&&!(this instanceof Gg))return new Gg(e,r[0],this._chunkOffsets)}static new(...e){let[r,n,...i]=e;typeof r!="string"&&!(r instanceof vI.Field)&&(n=r,r="");let f=Yg.Chunked.flatten(Array.isArray(n)?[...n,...i]:n instanceof TI.Vector?[n,...i]:[TI.Vector.new(n,...i)]);if(typeof r=="string"){let o=f[0].data.type;r=new vI.Field(r,o,!0)}else!r.nullable&&f.some(({nullCount:o})=>o>0)&&(r=r.clone({nullable:!0}));return new Mo(r,f)}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 Mo(this._field,e)}getChildAt(e){if(e<0||e>=this.numChildren)return null;let r=this._children||(this._children=[]),n,i,f;return(n=r[e])?n:(i=(this.type.children||[])[e])&&(f=this._chunks.map(o=>o.getChildAt(e)).filter(o=>o!=null),f.length>0)?r[e]=new Mo(i,f):null}};Od.Column=Mo;var Gg=class extends Mo{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 kI=k(na=>{"use strict";Object.defineProperty(na,"__esModule",{value:!0});na.instance=na.TypeAssembler=void 0;var lP=zi(),uP=lP.flatbuffers.Long,cP=sr(),se=Bf(),Zg=class extends cP.Visitor{visit(e,r){return e==null||r==null?void 0:super.visit(e,r)}visitNull(e,r){return se.Null.startNull(r),se.Null.endNull(r)}visitInt(e,r){return se.Int.startInt(r),se.Int.addBitWidth(r,e.bitWidth),se.Int.addIsSigned(r,e.isSigned),se.Int.endInt(r)}visitFloat(e,r){return se.FloatingPoint.startFloatingPoint(r),se.FloatingPoint.addPrecision(r,e.precision),se.FloatingPoint.endFloatingPoint(r)}visitBinary(e,r){return se.Binary.startBinary(r),se.Binary.endBinary(r)}visitBool(e,r){return se.Bool.startBool(r),se.Bool.endBool(r)}visitUtf8(e,r){return se.Utf8.startUtf8(r),se.Utf8.endUtf8(r)}visitDecimal(e,r){return se.Decimal.startDecimal(r),se.Decimal.addScale(r,e.scale),se.Decimal.addPrecision(r,e.precision),se.Decimal.endDecimal(r)}visitDate(e,r){return se.Date.startDate(r),se.Date.addUnit(r,e.unit),se.Date.endDate(r)}visitTime(e,r){return se.Time.startTime(r),se.Time.addUnit(r,e.unit),se.Time.addBitWidth(r,e.bitWidth),se.Time.endTime(r)}visitTimestamp(e,r){let n=e.timezone&&r.createString(e.timezone)||void 0;return se.Timestamp.startTimestamp(r),se.Timestamp.addUnit(r,e.unit),n!==void 0&&se.Timestamp.addTimezone(r,n),se.Timestamp.endTimestamp(r)}visitInterval(e,r){return se.Interval.startInterval(r),se.Interval.addUnit(r,e.unit),se.Interval.endInterval(r)}visitList(e,r){return se.List.startList(r),se.List.endList(r)}visitStruct(e,r){return se.Struct_.startStruct_(r),se.Struct_.endStruct_(r)}visitUnion(e,r){se.Union.startTypeIdsVector(r,e.typeIds.length);let n=se.Union.createTypeIdsVector(r,e.typeIds);return se.Union.startUnion(r),se.Union.addMode(r,e.mode),se.Union.addTypeIds(r,n),se.Union.endUnion(r)}visitDictionary(e,r){let n=this.visit(e.indices,r);return se.DictionaryEncoding.startDictionaryEncoding(r),se.DictionaryEncoding.addId(r,new uP(e.id,0)),se.DictionaryEncoding.addIsOrdered(r,e.isOrdered),n!==void 0&&se.DictionaryEncoding.addIndexType(r,n),se.DictionaryEncoding.endDictionaryEncoding(r)}visitFixedSizeBinary(e,r){return se.FixedSizeBinary.startFixedSizeBinary(r),se.FixedSizeBinary.addByteWidth(r,e.byteWidth),se.FixedSizeBinary.endFixedSizeBinary(r)}visitFixedSizeList(e,r){return se.FixedSizeList.startFixedSizeList(r),se.FixedSizeList.addListSize(r,e.listSize),se.FixedSizeList.endFixedSizeList(r)}visitMap(e,r){return se.Map.startMap(r),se.Map.addKeysSorted(r,e.keysSorted),se.Map.endMap(r)}};na.TypeAssembler=Zg;na.instance=new Zg});var OI=k(mi=>{"use strict";Object.defineProperty(mi,"__esModule",{value:!0});mi.fieldFromJSON=mi.dictionaryBatchFromJSON=mi.recordBatchFromJSON=mi.schemaFromJSON=void 0;var ia=er(),gt=$e(),zo=Uo(),fa=dt();function pP(t,e=new Map){return new ia.Schema(mP(t,e),Fd(t.customMetadata),e)}mi.schemaFromJSON=pP;function BI(t){return new zo.RecordBatch(t.count,xI(t.columns),SI(t.columns))}mi.recordBatchFromJSON=BI;function dP(t){return new zo.DictionaryBatch(BI(t.data),t.id,t.isDelta)}mi.dictionaryBatchFromJSON=dP;function mP(t,e){return(t.fields||[]).filter(Boolean).map(r=>ia.Field.fromJSON(r,e))}function II(t,e){return(t.children||[]).filter(Boolean).map(r=>ia.Field.fromJSON(r,e))}function xI(t){return(t||[]).reduce((e,r)=>[...e,new zo.FieldNode(r.count,wP(r.VALIDITY)),...xI(r.children)],[])}function SI(t,e=[]){for(let r=-1,n=(t||[]).length;++r<n;){let i=t[r];i.VALIDITY&&e.push(new zo.BufferRegion(e.length,i.VALIDITY.length)),i.TYPE&&e.push(new zo.BufferRegion(e.length,i.TYPE.length)),i.OFFSET&&e.push(new zo.BufferRegion(e.length,i.OFFSET.length)),i.DATA&&e.push(new zo.BufferRegion(e.length,i.DATA.length)),e=SI(i.children,e)}return e}function wP(t){return(t||[]).reduce((e,r)=>e+ +(r===0),0)}function hP(t,e){let r,n,i,f,o,s;return!e||!(f=t.dictionary)?(o=AI(t,II(t,e)),i=new ia.Field(t.name,o,t.nullable,Fd(t.customMetadata))):e.has(r=f.id)?(n=(n=f.indexType)?EI(n):new gt.Int32,s=new gt.Dictionary(e.get(r),n,r,f.isOrdered),i=new ia.Field(t.name,s,t.nullable,Fd(t.customMetadata))):(n=(n=f.indexType)?EI(n):new gt.Int32,e.set(r,o=AI(t,II(t,e))),s=new gt.Dictionary(o,n,r,f.isOrdered),i=new ia.Field(t.name,s,t.nullable,Fd(t.customMetadata))),i||null}mi.fieldFromJSON=hP;function Fd(t){return new Map(Object.entries(t||{}))}function EI(t){return new gt.Int(t.isSigned,t.bitWidth)}function AI(t,e){let r=t.type.name;switch(r){case"NONE":return new gt.Null;case"null":return new gt.Null;case"binary":return new gt.Binary;case"utf8":return new gt.Utf8;case"bool":return new gt.Bool;case"list":return new gt.List((e||[])[0]);case"struct":return new gt.Struct(e||[]);case"struct_":return new gt.Struct(e||[])}switch(r){case"int":{let n=t.type;return new gt.Int(n.isSigned,n.bitWidth)}case"floatingpoint":{let n=t.type;return new gt.Float(fa.Precision[n.precision])}case"decimal":{let n=t.type;return new gt.Decimal(n.scale,n.precision)}case"date":{let n=t.type;return new gt.Date_(fa.DateUnit[n.unit])}case"time":{let n=t.type;return new gt.Time(fa.TimeUnit[n.unit],n.bitWidth)}case"timestamp":{let n=t.type;return new gt.Timestamp(fa.TimeUnit[n.unit],n.timezone)}case"interval":{let n=t.type;return new gt.Interval(fa.IntervalUnit[n.unit])}case"union":{let n=t.type;return new gt.Union(fa.UnionMode[n.mode],n.typeIds||[],e||[])}case"fixedsizebinary":{let n=t.type;return new gt.FixedSizeBinary(n.byteWidth)}case"fixedsizelist":{let n=t.type;return new gt.FixedSizeList(n.listSize,(e||[])[0])}case"map":{let n=t.type;return new gt.Map_((e||[])[0],n.keysSorted)}}throw new Error(`Unrecognized type: "${r}"`)}});var Uo=k(yn=>{"use strict";Object.defineProperty(yn,"__esModule",{value:!0});yn.FieldNode=yn.BufferRegion=yn.DictionaryBatch=yn.RecordBatch=yn.Message=void 0;var Jg=zi(),fe=Bf(),jt=Pp(),tr=er(),bP=Gt(),xt=dt(),Qg=kI(),Dd=OI(),Lo=Jg.flatbuffers.Long,gP=Jg.flatbuffers.Builder,yP=Jg.flatbuffers.ByteBuffer,yt=$e(),Vf=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 Vf(0,xt.MetadataVersion.V4,r);return n._createHeader=jP(e,r),n}static decode(e){e=new yP(bP.toUint8Array(e));let r=jt.Message.getRootAsMessage(e),n=r.bodyLength(),i=r.version(),f=r.headerType(),o=new Vf(n,i,f);return o._createHeader=qP(r,f),o}static encode(e){let r=new gP,n=-1;return e.isSchema()?n=tr.Schema.encode(r,e.header()):e.isRecordBatch()?n=gn.encode(r,e.header()):e.isDictionaryBatch()&&(n=wi.encode(r,e.header())),jt.Message.startMessage(r),jt.Message.addVersion(r,xt.MetadataVersion.V4),jt.Message.addHeader(r,n),jt.Message.addHeaderType(r,e.headerType),jt.Message.addBodyLength(r,new Lo(e.bodyLength,0)),jt.Message.finishMessageBuffer(r,jt.Message.endMessage(r)),r.asUint8Array()}static from(e,r=0){if(e instanceof tr.Schema)return new Vf(0,xt.MetadataVersion.V4,xt.MessageHeader.Schema,e);if(e instanceof gn)return new Vf(r,xt.MetadataVersion.V4,xt.MessageHeader.RecordBatch,e);if(e instanceof wi)return new Vf(r,xt.MetadataVersion.V4,xt.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===xt.MessageHeader.Schema}isRecordBatch(){return this.headerType===xt.MessageHeader.RecordBatch}isDictionaryBatch(){return this.headerType===xt.MessageHeader.DictionaryBatch}};yn.Message=Vf;var gn=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}};yn.RecordBatch=gn;var wi=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}};yn.DictionaryBatch=wi;var Vo=class{constructor(e,r){this.offset=typeof e=="number"?e:e.low,this.length=typeof r=="number"?r:r.low}};yn.BufferRegion=Vo;var Co=class{constructor(e,r){this.length=typeof e=="number"?e:e.low,this.nullCount=typeof r=="number"?r:r.low}};yn.FieldNode=Co;function jP(t,e){return()=>{switch(e){case xt.MessageHeader.Schema:return tr.Schema.fromJSON(t);case xt.MessageHeader.RecordBatch:return gn.fromJSON(t);case xt.MessageHeader.DictionaryBatch:return wi.fromJSON(t)}throw new Error(`Unrecognized Message type: { name: ${xt.MessageHeader[e]}, type: ${e} }`)}}function qP(t,e){return()=>{switch(e){case xt.MessageHeader.Schema:return tr.Schema.decode(t.header(new fe.Schema));case xt.MessageHeader.RecordBatch:return gn.decode(t.header(new jt.RecordBatch),t.version());case xt.MessageHeader.DictionaryBatch:return wi.decode(t.header(new jt.DictionaryBatch),t.version())}throw new Error(`Unrecognized Message type: { name: ${xt.MessageHeader[e]}, type: ${e} }`)}}tr.Field.encode=OP;tr.Field.decode=EP;tr.Field.fromJSON=Dd.fieldFromJSON;tr.Schema.encode=AP;tr.Schema.decode=_P;tr.Schema.fromJSON=Dd.schemaFromJSON;gn.encode=FP;gn.decode=vP;gn.fromJSON=Dd.recordBatchFromJSON;wi.encode=DP;wi.decode=TP;wi.fromJSON=Dd.dictionaryBatchFromJSON;Co.encode=NP;Co.decode=BP;Vo.encode=RP;Vo.decode=kP;function _P(t,e=new Map){let r=SP(t,e);return new tr.Schema(r,Nd(t),e)}function vP(t,e=xt.MetadataVersion.V4){return new gn(t.length(),IP(t),xP(t,e))}function TP(t,e=xt.MetadataVersion.V4){return new wi(gn.decode(t.data(),e),t.id(),t.isDelta())}function kP(t){return new Vo(t.offset(),t.length())}function BP(t){return new Co(t.length(),t.nullCount())}function IP(t){let e=[];for(let r,n=-1,i=-1,f=t.nodesLength();++n<f;)(r=t.nodes(n))&&(e[++i]=Co.decode(r));return e}function xP(t,e){let r=[];for(let n,i=-1,f=-1,o=t.buffersLength();++i<o;)(n=t.buffers(i))&&(e<xt.MetadataVersion.V4&&(n.bb_pos+=8*(i+1)),r[++f]=Vo.decode(n));return r}function SP(t,e){let r=[];for(let n,i=-1,f=-1,o=t.fieldsLength();++i<o;)(n=t.fields(i))&&(r[++f]=tr.Field.decode(n,e));return r}function FI(t,e){let r=[];for(let n,i=-1,f=-1,o=t.childrenLength();++i<o;)(n=t.children(i))&&(r[++f]=tr.Field.decode(n,e));return r}function EP(t,e){let r,n,i,f,o,s;return!e||!(s=t.dictionary())?(i=NI(t,FI(t,e)),n=new tr.Field(t.name(),i,t.nullable(),Nd(t))):e.has(r=s.id().low)?(f=(f=s.indexType())?DI(f):new yt.Int32,o=new yt.Dictionary(e.get(r),f,r,s.isOrdered()),n=new tr.Field(t.name(),o,t.nullable(),Nd(t))):(f=(f=s.indexType())?DI(f):new yt.Int32,e.set(r,i=NI(t,FI(t,e))),o=new yt.Dictionary(i,f,r,s.isOrdered()),n=new tr.Field(t.name(),o,t.nullable(),Nd(t))),n||null}function Nd(t){let e=new Map;if(t)for(let r,n,i=-1,f=t.customMetadataLength()|0;++i<f;)(r=t.customMetadata(i))&&(n=r.key())!=null&&e.set(n,r.value());return e}function DI(t){return new yt.Int(t.isSigned(),t.bitWidth())}function NI(t,e){let r=t.typeType();switch(r){case fe.Type.NONE:return new yt.Null;case fe.Type.Null:return new yt.Null;case fe.Type.Binary:return new yt.Binary;case fe.Type.Utf8:return new yt.Utf8;case fe.Type.Bool:return new yt.Bool;case fe.Type.List:return new yt.List((e||[])[0]);case fe.Type.Struct_:return new yt.Struct(e||[])}switch(r){case fe.Type.Int:{let n=t.type(new fe.Int);return new yt.Int(n.isSigned(),n.bitWidth())}case fe.Type.FloatingPoint:{let n=t.type(new fe.FloatingPoint);return new yt.Float(n.precision())}case fe.Type.Decimal:{let n=t.type(new fe.Decimal);return new yt.Decimal(n.scale(),n.precision())}case fe.Type.Date:{let n=t.type(new fe.Date);return new yt.Date_(n.unit())}case fe.Type.Time:{let n=t.type(new fe.Time);return new yt.Time(n.unit(),n.bitWidth())}case fe.Type.Timestamp:{let n=t.type(new fe.Timestamp);return new yt.Timestamp(n.unit(),n.timezone())}case fe.Type.Interval:{let n=t.type(new fe.Interval);return new yt.Interval(n.unit())}case fe.Type.Union:{let n=t.type(new fe.Union);return new yt.Union(n.mode(),n.typeIdsArray()||[],e||[])}case fe.Type.FixedSizeBinary:{let n=t.type(new fe.FixedSizeBinary);return new yt.FixedSizeBinary(n.byteWidth())}case fe.Type.FixedSizeList:{let n=t.type(new fe.FixedSizeList);return new yt.FixedSizeList(n.listSize(),(e||[])[0])}case fe.Type.Map:{let n=t.type(new fe.Map);return new yt.Map_((e||[])[0],n.keysSorted())}}throw new Error(`Unrecognized type: "${fe.Type[r]}" (${r})`)}function AP(t,e){let r=e.fields.map(f=>tr.Field.encode(t,f));fe.Schema.startFieldsVector(t,r.length);let n=fe.Schema.createFieldsVector(t,r),i=e.metadata&&e.metadata.size>0?fe.Schema.createCustomMetadataVector(t,[...e.metadata].map(([f,o])=>{let s=t.createString(`${f}`),u=t.createString(`${o}`);return fe.KeyValue.startKeyValue(t),fe.KeyValue.addKey(t,s),fe.KeyValue.addValue(t,u),fe.KeyValue.endKeyValue(t)})):-1;return fe.Schema.startSchema(t),fe.Schema.addFields(t,n),fe.Schema.addEndianness(t,PP?fe.Endianness.Little:fe.Endianness.Big),i!==-1&&fe.Schema.addCustomMetadata(t,i),fe.Schema.endSchema(t)}function OP(t,e){let r=-1,n=-1,i=-1,f=e.type,o=e.typeId;yt.DataType.isDictionary(f)?(o=f.dictionary.typeId,i=Qg.instance.visit(f,t),n=Qg.instance.visit(f.dictionary,t)):n=Qg.instance.visit(f,t);let s=(f.children||[]).map(c=>tr.Field.encode(t,c)),u=fe.Field.createChildrenVector(t,s),l=e.metadata&&e.metadata.size>0?fe.Field.createCustomMetadataVector(t,[...e.metadata].map(([c,w])=>{let p=t.createString(`${c}`),g=t.createString(`${w}`);return fe.KeyValue.startKeyValue(t),fe.KeyValue.addKey(t,p),fe.KeyValue.addValue(t,g),fe.KeyValue.endKeyValue(t)})):-1;return e.name&&(r=t.createString(e.name)),fe.Field.startField(t),fe.Field.addType(t,n),fe.Field.addTypeType(t,o),fe.Field.addChildren(t,u),fe.Field.addNullable(t,!!e.nullable),r!==-1&&fe.Field.addName(t,r),i!==-1&&fe.Field.addDictionary(t,i),l!==-1&&fe.Field.addCustomMetadata(t,l),fe.Field.endField(t)}function FP(t,e){let r=e.nodes||[],n=e.buffers||[];jt.RecordBatch.startNodesVector(t,r.length),r.slice().reverse().forEach(o=>Co.encode(t,o));let i=t.endVector();jt.RecordBatch.startBuffersVector(t,n.length),n.slice().reverse().forEach(o=>Vo.encode(t,o));let f=t.endVector();return jt.RecordBatch.startRecordBatch(t),jt.RecordBatch.addLength(t,new Lo(e.length,0)),jt.RecordBatch.addNodes(t,i),jt.RecordBatch.addBuffers(t,f),jt.RecordBatch.endRecordBatch(t)}function DP(t,e){let r=gn.encode(t,e.data);return jt.DictionaryBatch.startDictionaryBatch(t),jt.DictionaryBatch.addId(t,new Lo(e.id,0)),jt.DictionaryBatch.addIsDelta(t,e.isDelta),jt.DictionaryBatch.addData(t,r),jt.DictionaryBatch.endDictionaryBatch(t)}function NP(t,e){return jt.FieldNode.createFieldNode(t,new Lo(e.length,0),new Lo(e.nullCount,0))}function RP(t,e){return fe.Buffer.createBuffer(t,new Lo(e.offset,0),new Lo(e.length,0))}var PP=function(){let t=new ArrayBuffer(2);return new DataView(t).setInt16(0,256,!0),new Int16Array(t)[0]===256}()});var Pd=k(Ke=>{"use strict";Object.defineProperty(Ke,"__esModule",{value:!0});Ke.magicX2AndPadding=Ke.magicAndPadding=Ke.magicLength=Ke.checkForMagicArrowString=Ke.MAGIC=Ke.MAGIC_STR=Ke.PADDING=Ke.JSONMessageReader=Ke.AsyncMessageReader=Ke.MessageReader=void 0;var Cf=dt(),HP=zi(),RI=HP.flatbuffers.ByteBuffer,gu=Uo(),MP=mr(),zP=zg(),PI=Gt(),Rd=Hf(),Hn=Es(),Xg=t=>`Expected ${Cf.MessageHeader[t]} Message in stream, but was null or length 0.`,$g=t=>`Header pointer of flatbuffer-encoded ${Cf.MessageHeader[t]} Message is null or length 0.`,HI=(t,e)=>`Expected to read ${t} metadata bytes, but only read ${e}.`,MI=(t,e)=>`Expected to read ${t} bytes for message body, but only read ${e}.`,ey=class{constructor(e){this.source=e instanceof Rd.ByteStream?e:new Rd.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?Hn.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(Xg(e));return r.value}readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=PI.toUint8Array(this.source.read(e));if(r.byteLength<e)throw new Error(MI(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}readSchema(e=!1){let r=Cf.MessageHeader.Schema,n=this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error($g(r));return i}readMetadataLength(){let e=this.source.read(Ke.PADDING),r=e&&new RI(e),n=r&&r.readInt32(0)||0;return{done:n===0,value:n}}readMetadata(e){let r=this.source.read(e);if(!r)return Hn.ITERATOR_DONE;if(r.byteLength<e)throw new Error(HI(e,r.byteLength));return{done:!1,value:gu.Message.decode(r)}}};Ke.MessageReader=ey;var zI=class{constructor(e,r){this.source=e instanceof Rd.AsyncByteStream?e:MP.isFileHandle(e)?new zP.AsyncRandomAccessFile(e,r):new Rd.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?Hn.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(Xg(e));return r.value}async readMessageBody(e){if(e<=0)return new Uint8Array(0);let r=PI.toUint8Array(await this.source.read(e));if(r.byteLength<e)throw new Error(MI(e,r.byteLength));return r.byteOffset%8==0&&r.byteOffset+r.byteLength<=r.buffer.byteLength?r:r.slice()}async readSchema(e=!1){let r=Cf.MessageHeader.Schema,n=await this.readMessage(r),i=n&&n.header();if(e&&!i)throw new Error($g(r));return i}async readMetadataLength(){let e=await this.source.read(Ke.PADDING),r=e&&new RI(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 Hn.ITERATOR_DONE;if(r.byteLength<e)throw new Error(HI(e,r.byteLength));return{done:!1,value:gu.Message.decode(r)}}};Ke.AsyncMessageReader=zI;var UI=class extends ey{constructor(e){super(new Uint8Array(0));this._schema=!1,this._body=[],this._batchIndex=0,this._dictionaryIndex=0,this._json=e instanceof Hn.ArrowJSON?e:new Hn.ArrowJSON(e)}next(){let{_json:e}=this;if(!this._schema){this._schema=!0;let r=gu.Message.fromJSON(e.schema,Cf.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=gu.Message.fromJSON(r,Cf.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=gu.Message.fromJSON(r,Cf.MessageHeader.RecordBatch);return{done:!1,value:n}}return this._body=[],Hn.ITERATOR_DONE}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(Xg(e));return r.value}readSchema(){let e=Cf.MessageHeader.Schema,r=this.readMessage(e),n=r&&r.header();if(!r||!n)throw new Error($g(e));return n}};Ke.JSONMessageReader=UI;Ke.PADDING=4;Ke.MAGIC_STR="ARROW1";Ke.MAGIC=new Uint8Array(Ke.MAGIC_STR.length);for(let t=0;t<Ke.MAGIC_STR.length;t+=1|0)Ke.MAGIC[t]=Ke.MAGIC_STR.charCodeAt(t);function UP(t,e=0){for(let r=-1,n=Ke.MAGIC.length;++r<n;)if(Ke.MAGIC[r]!==t[e+r])return!1;return!0}Ke.checkForMagicArrowString=UP;Ke.magicLength=Ke.MAGIC.length;Ke.magicAndPadding=Ke.magicLength+Ke.PADDING;Ke.magicX2AndPadding=Ke.magicLength*2+Ke.PADDING});var iy=k(St=>{"use strict";Object.defineProperty(St,"__esModule",{value:!0});St.compareTypes=St.compareFields=St.compareSchemas=St.instance=St.TypeComparator=void 0;var LP=sr(),ge=class extends LP.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)}};St.TypeComparator=ge;function Pr(t,e){return e instanceof t.constructor}function yu(t,e){return t===e||Pr(t,e)}function Ji(t,e){return t===e||Pr(t,e)&&t.bitWidth===e.bitWidth&&t.isSigned===e.isSigned}function Hd(t,e){return t===e||Pr(t,e)&&t.precision===e.precision}function VP(t,e){return t===e||Pr(t,e)&&t.byteWidth===e.byteWidth}function ty(t,e){return t===e||Pr(t,e)&&t.unit===e.unit}function ju(t,e){return t===e||Pr(t,e)&&t.unit===e.unit&&t.timezone===e.timezone}function qu(t,e){return t===e||Pr(t,e)&&t.unit===e.unit&&t.bitWidth===e.bitWidth}function CP(t,e){return t===e||Pr(t,e)&&t.children.length===e.children.length&&St.instance.compareManyFields(t.children,e.children)}function WP(t,e){return t===e||Pr(t,e)&&t.children.length===e.children.length&&St.instance.compareManyFields(t.children,e.children)}function ry(t,e){return t===e||Pr(t,e)&&t.mode===e.mode&&t.typeIds.every((r,n)=>r===e.typeIds[n])&&St.instance.compareManyFields(t.children,e.children)}function KP(t,e){return t===e||Pr(t,e)&&t.id===e.id&&t.isOrdered===e.isOrdered&&St.instance.visit(t.indices,e.indices)&&St.instance.visit(t.dictionary,e.dictionary)}function ny(t,e){return t===e||Pr(t,e)&&t.unit===e.unit}function YP(t,e){return t===e||Pr(t,e)&&t.listSize===e.listSize&&t.children.length===e.children.length&&St.instance.compareManyFields(t.children,e.children)}function GP(t,e){return t===e||Pr(t,e)&&t.keysSorted===e.keysSorted&&t.children.length===e.children.length&&St.instance.compareManyFields(t.children,e.children)}ge.prototype.visitNull=yu;ge.prototype.visitBool=yu;ge.prototype.visitInt=Ji;ge.prototype.visitInt8=Ji;ge.prototype.visitInt16=Ji;ge.prototype.visitInt32=Ji;ge.prototype.visitInt64=Ji;ge.prototype.visitUint8=Ji;ge.prototype.visitUint16=Ji;ge.prototype.visitUint32=Ji;ge.prototype.visitUint64=Ji;ge.prototype.visitFloat=Hd;ge.prototype.visitFloat16=Hd;ge.prototype.visitFloat32=Hd;ge.prototype.visitFloat64=Hd;ge.prototype.visitUtf8=yu;ge.prototype.visitBinary=yu;ge.prototype.visitFixedSizeBinary=VP;ge.prototype.visitDate=ty;ge.prototype.visitDateDay=ty;ge.prototype.visitDateMillisecond=ty;ge.prototype.visitTimestamp=ju;ge.prototype.visitTimestampSecond=ju;ge.prototype.visitTimestampMillisecond=ju;ge.prototype.visitTimestampMicrosecond=ju;ge.prototype.visitTimestampNanosecond=ju;ge.prototype.visitTime=qu;ge.prototype.visitTimeSecond=qu;ge.prototype.visitTimeMillisecond=qu;ge.prototype.visitTimeMicrosecond=qu;ge.prototype.visitTimeNanosecond=qu;ge.prototype.visitDecimal=yu;ge.prototype.visitList=CP;ge.prototype.visitStruct=WP;ge.prototype.visitUnion=ry;ge.prototype.visitDenseUnion=ry;ge.prototype.visitSparseUnion=ry;ge.prototype.visitDictionary=KP;ge.prototype.visitInterval=ny;ge.prototype.visitIntervalDayTime=ny;ge.prototype.visitIntervalYearMonth=ny;ge.prototype.visitFixedSizeList=YP;ge.prototype.visitMap=GP;St.instance=new ge;function ZP(t,e){return St.instance.compareSchemas(t,e)}St.compareSchemas=ZP;function JP(t,e){return St.instance.compareFields(t,e)}St.compareFields=JP;function QP(t,e){return St.instance.visit(t,e)}St.compareTypes=QP});var KI=k(Md=>{"use strict";Object.defineProperty(Md,"__esModule",{value:!0});Md.VectorAssembler=void 0;var XP=sr(),LI=dt(),$P=Qi(),fy=Gt(),oy=si(),eH=ta(),VI=Uo(),CI=$e(),Vt=class extends XP.Visitor{constructor(){super();this._byteLength=0,this._nodes=[],this._buffers=[],this._bufferRegions=[]}static assemble(...e){let r=new Vt,n=eH.selectVectorChildrenArgs($P.RecordBatch,e),[i=r]=r.visitMany(n);return i}visit(e){if(!CI.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");CI.DataType.isNull(e.type)||Mn.call(this,i<=0?new Uint8Array(0):oy.truncateBitmap(r.offset,n,r.nullBitmap)),this.nodes.push(new VI.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}};Md.VectorAssembler=Vt;function Mn(t){let e=t.byteLength+7&~7;return this.buffers.push(t),this.bufferRegions.push(new VI.BufferRegion(this._byteLength,e)),this._byteLength+=e,this}function tH(t){let{type:e,length:r,typeIds:n,valueOffsets:i}=t;if(Mn.call(this,n),e.mode===LI.UnionMode.Sparse)return ay.call(this,t);if(e.mode===LI.UnionMode.Dense){if(t.offset<=0)return Mn.call(this,i),ay.call(this,t);{let f=n.reduce((c,w)=>Math.max(c,w),n[0]),o=new Int32Array(f+1),s=new Int32Array(f+1).fill(-1),u=new Int32Array(r),l=fy.rebaseValueOffsets(-i[0],r,i);for(let c,w,p=-1;++p<r;)(w=s[c=n[p]])===-1&&(w=s[c]=l[c]),u[p]=l[p]-w,++o[c];Mn.call(this,u);for(let c,w=-1,p=e.children.length;++w<p;)if(c=t.getChildAt(w)){let g=e.typeIds[w],T=Math.min(r,o[g]);this.visit(c.slice(s[g],T))}}}return this}function rH(t){let e;return t.nullCount>=t.length?Mn.call(this,new Uint8Array(0)):(e=t.values)instanceof Uint8Array?Mn.call(this,oy.truncateBitmap(t.offset,t.length,e)):Mn.call(this,oy.packBools(t))}function Wf(t){return Mn.call(this,t.values.subarray(0,t.length*t.stride))}function WI(t){let{length:e,values:r,valueOffsets:n}=t,i=n[0],f=n[e],o=Math.min(f-i,r.byteLength-i);return Mn.call(this,fy.rebaseValueOffsets(-n[0],e,n)),Mn.call(this,r.subarray(i,i+o)),this}function sy(t){let{length:e,valueOffsets:r}=t;return r&&Mn.call(this,fy.rebaseValueOffsets(r[0],e,r)),this.visit(t.getChildAt(0))}function ay(t){return this.visitMany(t.type.children.map((e,r)=>t.getChildAt(r)).filter(Boolean))[0]}Vt.prototype.visitBool=rH;Vt.prototype.visitInt=Wf;Vt.prototype.visitFloat=Wf;Vt.prototype.visitUtf8=WI;Vt.prototype.visitBinary=WI;Vt.prototype.visitFixedSizeBinary=Wf;Vt.prototype.visitDate=Wf;Vt.prototype.visitTimestamp=Wf;Vt.prototype.visitTime=Wf;Vt.prototype.visitDecimal=Wf;Vt.prototype.visitList=sy;Vt.prototype.visitStruct=ay;Vt.prototype.visitUnion=tH;Vt.prototype.visitInterval=Wf;Vt.prototype.visitFixedSizeList=sy;Vt.prototype.visitMap=sy});var GI=k(zd=>{"use strict";Object.defineProperty(zd,"__esModule",{value:!0});zd.JSONTypeAssembler=void 0;var nH=sr(),lr=Bf(),oa=dt(),YI=class extends nH.Visitor{visit(e){return e==null?void 0:super.visit(e)}visitNull({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitInt({typeId:e,bitWidth:r,isSigned:n}){return{name:lr.Type[e].toLowerCase(),bitWidth:r,isSigned:n}}visitFloat({typeId:e,precision:r}){return{name:lr.Type[e].toLowerCase(),precision:oa.Precision[r]}}visitBinary({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitBool({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitUtf8({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitDecimal({typeId:e,scale:r,precision:n}){return{name:lr.Type[e].toLowerCase(),scale:r,precision:n}}visitDate({typeId:e,unit:r}){return{name:lr.Type[e].toLowerCase(),unit:oa.DateUnit[r]}}visitTime({typeId:e,unit:r,bitWidth:n}){return{name:lr.Type[e].toLowerCase(),unit:oa.TimeUnit[r],bitWidth:n}}visitTimestamp({typeId:e,timezone:r,unit:n}){return{name:lr.Type[e].toLowerCase(),unit:oa.TimeUnit[n],timezone:r}}visitInterval({typeId:e,unit:r}){return{name:lr.Type[e].toLowerCase(),unit:oa.IntervalUnit[r]}}visitList({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitStruct({typeId:e}){return{name:lr.Type[e].toLowerCase()}}visitUnion({typeId:e,mode:r,typeIds:n}){return{name:lr.Type[e].toLowerCase(),mode:oa.UnionMode[r],typeIds:[...n]}}visitDictionary(e){return this.visit(e.dictionary)}visitFixedSizeBinary({typeId:e,byteWidth:r}){return{name:lr.Type[e].toLowerCase(),byteWidth:r}}visitFixedSizeList({typeId:e,listSize:r}){return{name:lr.Type[e].toLowerCase(),listSize:r}}visitMap({typeId:e,keysSorted:r}){return{name:lr.Type[e].toLowerCase(),keysSorted:r}}};zd.JSONTypeAssembler=YI});var QI=k(Vd=>{"use strict";Object.defineProperty(Vd,"__esModule",{value:!0});Vd.JSONVectorAssembler=void 0;var iH=au(),_u=ra(),fH=Nt(),oH=sr(),sH=dt(),aH=Qi(),ly=dt(),Ud=si(),lH=ta(),ZI=$e(),Ld=class extends oH.Visitor{static assemble(...e){return new Ld().visitMany(lH.selectColumnChildrenArgs(aH.RecordBatch,e))}visit(e){let{data:r,name:n,length:i}=e,{offset:f,nullCount:o,nullBitmap:s}=r,u=ZI.DataType.isDictionary(e.type)?e.type.indices:e.type,l=Object.assign([],r.buffers,{[sH.BufferType.VALIDITY]:void 0});return{name:n,count:i,VALIDITY:ZI.DataType.isNull(u)?void 0:o<=0?Array.from({length:i},()=>1):[...new Ud.BitIterator(s,f,i,null,Ud.getBit)],...super.visit(fH.Vector.new(r.clone(u,f,i,0,l)))}}visitNull(){return{}}visitBool({values:e,offset:r,length:n}){return{DATA:[...new Ud.BitIterator(e,r,n,null,Ud.getBool)]}}visitInt(e){return{DATA:e.type.bitWidth<64?[...e.values]:[...vu(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===ly.DateUnit.DAY?[...e.values]:[...vu(e.values,2)]}}visitTimestamp(e){return{DATA:[...vu(e.values,2)]}}visitTime(e){return{DATA:e.type.unit<ly.TimeUnit.MICROSECOND?[...e.values]:[...vu(e.values,2)]}}visitDecimal(e){return{DATA:[...vu(e.values,4)]}}visitList(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new _u.Column(r,[e.getChildAt(n)])))}}visitStruct(e){return{children:e.type.children.map((r,n)=>this.visit(new _u.Column(r,[e.getChildAt(n)])))}}visitUnion(e){return{TYPE:[...e.typeIds],OFFSET:e.type.mode===ly.UnionMode.Dense?[...e.valueOffsets]:void 0,children:e.type.children.map((r,n)=>this.visit(new _u.Column(r,[e.getChildAt(n)])))}}visitInterval(e){return{DATA:[...e.values]}}visitFixedSizeList(e){return{children:e.type.children.map((r,n)=>this.visit(new _u.Column(r,[e.getChildAt(n)])))}}visitMap(e){return{OFFSET:[...e.valueOffsets],children:e.type.children.map((r,n)=>this.visit(new _u.Column(r,[e.getChildAt(n)])))}}};Vd.JSONVectorAssembler=Ld;function*JI(t){for(let e of t)yield e.reduce((r,n)=>`${r}${("0"+(n&255).toString(16)).slice(-2)}`,"").toUpperCase()}function*vu(t,e){for(let r=-1,n=t.length/e;++r<n;)yield`${iH.BN.new(t.subarray((r+0)*e,(r+1)*e),!1)}`}});var Gd=k(bi=>{"use strict";Object.defineProperty(bi,"__esModule",{value:!0});bi.RecordBatchJSONWriter=bi.RecordBatchFileWriter=bi.RecordBatchStreamWriter=bi.RecordBatchWriter=void 0;var uy=ku(),uH=Pd(),cH=ra(),pH=$e(),dH=er(),Cd=Uo(),cy=Uo(),sa=Pg(),py=dt(),XI=iy(),dy=Hf(),$I=KI(),mH=GI(),e1=QI(),wH=Gt(),my=Qi(),hH=Es(),hi=mr(),Tu=class extends hH.ReadableInterop{constructor(e){super();this._position=0,this._started=!1,this._sink=new dy.AsyncByteQueue,this._schema=null,this._dictionaryBlocks=[],this._recordBatchBlocks=[],this._dictionaryDeltaOffsets=new Map,hi.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 hi.isPromise(e)?e.then(r=>this.writeAll(r)):hi.isAsyncIterable(e)?hy(this,e):wy(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 dy.AsyncByteQueue?this._sink=e:(this._sink=new dy.AsyncByteQueue,e&&hi.isWritableDOMStream(e)?this.toDOMStream({type:"bytes"}).pipeTo(e):e&&hi.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||!XI.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 uy.Table&&!(r=e.schema))return this.finish()&&void 0;if(e instanceof my.RecordBatch&&!(r=e.schema))return this.finish()&&void 0}else throw new Error("RecordBatchWriter is closed");if(r&&!XI.compareSchemas(r,this._schema)){if(this._started&&this._autoDestroy)return this.close();this.reset(this._sink,r)}e instanceof my.RecordBatch?e instanceof my._InternalEmptyPlaceholderRecordBatch||this._writeRecordBatch(e):e instanceof uy.Table?this.writeAll(e.chunks):hi.isIterable(e)&&this.writeAll(e)}_writeMessage(e,r=8){let n=r-1,i=Cd.Message.encode(e),f=i.byteLength,o=this._writeLegacyIpcFormat?4:8,s=f+o+n&~n,u=s-f-o;return e.headerType===py.MessageHeader.RecordBatch?this._recordBatchBlocks.push(new sa.FileBlock(s,e.bodyLength,this._position)):e.headerType===py.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-o)),f>0&&this._write(i),this._writePadding(u)}_write(e){if(this._started){let r=wH.toUint8Array(e);r&&r.byteLength>0&&(this._sink.write(r),this._position+=r.byteLength)}return this}_writeSchema(e){return this._writeMessage(Cd.Message.from(e))}_writeFooter(e){return this._writeLegacyIpcFormat?this._write(Int32Array.of(0)):this._write(Int32Array.of(-1,0))}_writeMagic(){return this._write(uH.MAGIC)}_writePadding(e){return e>0?this._write(new Uint8Array(e)):this}_writeRecordBatch(e){let{byteLength:r,nodes:n,bufferRegions:i,buffers:f}=$I.VectorAssembler.assemble(e),o=new cy.RecordBatch(e.length,n,i),s=Cd.Message.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}=$I.VectorAssembler.assemble(e),u=new cy.RecordBatch(e.length,f,o),l=new cy.DictionaryBatch(u,r,n),c=Cd.Message.from(l,i);return this._writeMessage(c)._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.slice(i)).length>0){let f="chunks"in n?n.chunks:[n];for(let o of f)this._writeDictionaryBatch(o,r,i>0),i+=o.length}}return this}};bi.RecordBatchWriter=Tu;var Wd=class extends Tu{static writeAll(e,r){let n=new Wd(r);return hi.isPromise(e)?e.then(i=>n.writeAll(i)):hi.isAsyncIterable(e)?hy(n,e):wy(n,e)}};bi.RecordBatchStreamWriter=Wd;var Kd=class extends Tu{static writeAll(e){let r=new Kd;return hi.isPromise(e)?e.then(n=>r.writeAll(n)):hi.isAsyncIterable(e)?hy(r,e):wy(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,py.MetadataVersion.V4,this._recordBatchBlocks,this._dictionaryBlocks));return super._writeFooter(e)._write(r)._write(Int32Array.of(r.byteLength))._writeMagic()}};bi.RecordBatchFileWriter=Kd;var Yd=class extends Tu{constructor(){super();this._autoDestroy=!0,this._recordBatches=[],this._dictionaries=[]}static writeAll(e){return new Yd().writeAll(e)}_writeMessage(){return this}_writeFooter(e){return this}_writeSchema(e){return this._write(`{
16
+ "schema": ${JSON.stringify({fields:e.fields.map(t1)},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?" ":`,
17
+ `),this._write(`${bH(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(`,
18
18
  "dictionaries": [
19
19
  `);for(let e of this._dictionaries)super._writeDictionaries(e);this._write(`
20
20
  ]`)}if(this._recordBatches.length>0){for(let e=-1,r=this._recordBatches.length;++e<r;)this._write(e===0?`,
21
21
  "batches": [
22
22
  `:`,
23
- `),this._write(`${qH(this._recordBatches[e])}`),this._recordBatchBlocks.push(new la.FileBlock(0,0,0));this._write(`
23
+ `),this._write(`${gH(this._recordBatches[e])}`),this._recordBatchBlocks.push(new sa.FileBlock(0,0,0));this._write(`
24
24
  ]`)}return this._schema&&this._write(`
25
- }`),this._dictionaries=[],this._recordBatches=[],super.close()}};bi.RecordBatchJSONWriter=Zd;function yy(t,e){let r=e;e instanceof my.Table&&(r=e.chunks,t.reset(void 0,e.schema));for(let n of r)t.write(n);return t.finish()}async function jy(t,e){for await(let r of e)t.write(r);return t.finish()}function o1({name:t,type:e,nullable:r}){let n=new bH.JSONTypeAssembler;return{name:t,nullable:r,type:n.visit(e),children:(e.children||[]).map(o1),dictionary:wH.DataType.isDictionary(e)?{id:e.id,isOrdered:e.isOrdered,indexType:n.visit(e.indices)}:void 0}}function jH(t,e,r=!1){let n=new hH.Field(`${e}`,t.type,t.nullCount>0),i=f1.JSONVectorAssembler.assemble(new mH.Column(n,[t]));return JSON.stringify({id:e,isDelta:r,data:{count:t.length,columns:i}},null,2)}function qH(t){return JSON.stringify({count:t.length,columns:f1.JSONVectorAssembler.assemble(t)},null,2)}});var vy=k(Kf=>{"use strict";Object.defineProperty(Kf,"__esModule",{value:!0});Kf.distributeVectorsIntoRecordBatches=Kf.distributeColumnsIntoRecordBatches=Kf.ensureSameLengthData=void 0;var s1=Dn(),qy=er(),_H=Lf(),vH=Qi(),_y=new Uint8Array(0),a1=t=>[_y,_y,new Uint8Array(t),_y];function TH(t,e,r=e.reduce((n,i)=>Math.max(n,i.length),0)){let n,i,f=-1,o=e.length,s=[...t.fields],u=[],l=(r+63&~63)>>3;for(;++f<o;)(n=e[f])&&n.length===r?u[f]=n:((i=s[f]).nullable||(s[f]=s[f].clone({nullable:!0})),u[f]=n?n._changeLengthAndBackfillNullBitmap(r):s1.Data.new(i.type,0,r,r,a1(l)));return[new qy.Schema(s),r,u]}Kf.ensureSameLengthData=TH;function kH(t){return l1(new qy.Schema(t.map(({field:e})=>e)),t)}Kf.distributeColumnsIntoRecordBatches=kH;function l1(t,e){return BH(t,e.map(r=>r instanceof _H.Chunked?r.chunks.map(n=>n.data):[r.data]))}Kf.distributeVectorsIntoRecordBatches=l1;function BH(t,e){let r=[...t.fields],n=[],i={numBatches:e.reduce((w,p)=>Math.max(w,p.length),0)},f=0,o=0,s=-1,u=e.length,l,c=[];for(;i.numBatches-- >0;){for(o=Number.POSITIVE_INFINITY,s=-1;++s<u;)c[s]=l=e[s].shift(),o=Math.min(o,l?l.length:o);isFinite(o)&&(c=IH(r,o,c,e,i),o>0&&(n[f++]=[o,c.slice()]))}return[t=new qy.Schema(r,t.metadata),n.map(w=>new vH.RecordBatch(t,...w))]}function IH(t,e,r,n,i){let f,o,s=0,u=-1,l=n.length,c=(e+63&~63)>>3;for(;++u<l;)(f=r[u])&&(s=f.length)>=e?s===e?r[u]=f:(r[u]=f.slice(0,e),f=f.slice(e,s-e),i.numBatches=Math.max(i.numBatches,n[u].unshift(f))):((o=t[u]).nullable||(t[u]=o.clone({nullable:!0})),r[u]=f?f._changeLengthAndBackfillNullBitmap(e):s1.Data.new(o.type,0,e,e,a1(c)));return r}});var Pt=k(Qd=>{"use strict";Object.defineProperty(Qd,"__esModule",{value:!0});Qd.BaseVector=void 0;var xH=dt(),SH=Lf(),EH=bu(),Ty=Nt(),ky=class extends Ty.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`${xH.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 Ty.Vector.new(e,r)}concat(...e){return SH.Chunked.concat(this,...e)}slice(e,r){return EH.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]=Ty.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){}};Qd.BaseVector=ky;ky.prototype[Symbol.isConcatSpreadable]=!0});var By=k(Xd=>{"use strict";Object.defineProperty(Xd,"__esModule",{value:!0});Xd.BinaryVector=void 0;var AH=Nt(),OH=Pt(),FH=$e(),u1=class extends OH.BaseVector{asUtf8(){return AH.Vector.new(this.data.clone(new FH.Utf8))}};Xd.BinaryVector=u1});var Iy=k($d=>{"use strict";Object.defineProperty($d,"__esModule",{value:!0});$d.BoolVector=void 0;var DH=$e(),NH=Pt(),RH=gi(),c1=class extends NH.BaseVector{static from(e){return RH.vectorFromValuesWithType(()=>new DH.Bool,e)}};$d.BoolVector=c1});var Sy=k(Yf=>{"use strict";Object.defineProperty(Yf,"__esModule",{value:!0});Yf.DateMillisecondVector=Yf.DateDayVector=Yf.DateVector=void 0;var PH=dt(),HH=Pt(),p1=gi(),xy=$e(),em=class extends HH.BaseVector{static from(...e){return e.length===2?p1.vectorFromValuesWithType(()=>e[1]===PH.DateUnit.DAY?new xy.DateDay:new xy.DateMillisecond,e[0]):p1.vectorFromValuesWithType(()=>new xy.DateMillisecond,e[0])}};Yf.DateVector=em;var d1=class extends em{};Yf.DateDayVector=d1;var m1=class extends em{};Yf.DateMillisecondVector=m1});var Ey=k(tm=>{"use strict";Object.defineProperty(tm,"__esModule",{value:!0});tm.DecimalVector=void 0;var MH=Pt(),w1=class extends MH.BaseVector{};tm.DecimalVector=w1});var nm=k(rm=>{"use strict";Object.defineProperty(rm,"__esModule",{value:!0});rm.DictionaryVector=void 0;var zH=Dn(),h1=Nt(),UH=Pt(),LH=gi(),VH=$e(),Ay=class extends UH.BaseVector{constructor(e){super(e);this.indices=h1.Vector.new(e.clone(this.type.indices))}static from(...e){if(e.length===3){let[r,n,i]=e,f=new VH.Dictionary(r.type,n,null,null);return h1.Vector.new(zH.Data.Dictionary(f,0,i.length,0,null,i,r))}return LH.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)}};rm.DictionaryVector=Ay;Ay.prototype.indices=null});var Oy=k(im=>{"use strict";Object.defineProperty(im,"__esModule",{value:!0});im.FixedSizeBinaryVector=void 0;var CH=Pt(),b1=class extends CH.BaseVector{};im.FixedSizeBinaryVector=b1});var Fy=k(fm=>{"use strict";Object.defineProperty(fm,"__esModule",{value:!0});fm.FixedSizeListVector=void 0;var WH=Pt(),g1=class extends WH.BaseVector{};fm.FixedSizeListVector=g1});var Py=k(yi=>{"use strict";Object.defineProperty(yi,"__esModule",{value:!0});yi.Float64Vector=yi.Float32Vector=yi.Float16Vector=yi.FloatVector=void 0;var KH=Dn(),YH=Nt(),GH=Pt(),ZH=gi(),Yo=$e(),Iu=class extends GH.BaseVector{static from(e){let r=XH(this);if(e instanceof ArrayBuffer||ArrayBuffer.isView(e)){let n=QH(e.constructor)||r;if(r===null&&(r=n),r&&r===n){let i=new r,f=e.byteLength/i.ArrayType.BYTES_PER_ELEMENT;if(!JH(r,e.constructor))return YH.Vector.new(KH.Data.Float(i,0,f,0,null,e))}}if(r)return ZH.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")}};yi.FloatVector=Iu;var Dy=class extends Iu{toFloat32Array(){return new Float32Array(this)}toFloat64Array(){return new Float64Array(this)}};yi.Float16Vector=Dy;var Ny=class extends Iu{};yi.Float32Vector=Ny;var Ry=class extends Iu{};yi.Float64Vector=Ry;var JH=(t,e)=>t===Yo.Float16&&e!==Uint16Array,QH=t=>{switch(t){case Uint16Array:return Yo.Float16;case Float32Array:return Yo.Float32;case Float64Array:return Yo.Float64;default:return null}},XH=t=>{switch(t){case Dy:return Yo.Float16;case Ny:return Yo.Float32;case Ry:return Yo.Float64;default:return null}}});var Hy=k(Gf=>{"use strict";Object.defineProperty(Gf,"__esModule",{value:!0});Gf.IntervalYearMonthVector=Gf.IntervalDayTimeVector=Gf.IntervalVector=void 0;var $H=Pt(),om=class extends $H.BaseVector{};Gf.IntervalVector=om;var y1=class extends om{};Gf.IntervalDayTimeVector=y1;var j1=class extends om{};Gf.IntervalYearMonthVector=j1});var sm=k(Ct=>{"use strict";Object.defineProperty(Ct,"__esModule",{value:!0});Ct.Uint64Vector=Ct.Uint32Vector=Ct.Uint16Vector=Ct.Uint8Vector=Ct.Int64Vector=Ct.Int32Vector=Ct.Int16Vector=Ct.Int8Vector=Ct.IntVector=void 0;var e3=Dn(),t3=Nt(),r3=Pt(),n3=gi(),q1=mr(),_1=Gt(),Et=$e(),ji=class extends r3.BaseVector{static from(...e){let[r,n=!1]=e,i=o3(this,n);if(r instanceof ArrayBuffer||ArrayBuffer.isView(r)){let f=f3(r.constructor,n)||i;if(i===null&&(i=f),i&&i===f){let o=new i,s=r.byteLength/o.ArrayType.BYTES_PER_ELEMENT;return i3(i,r.constructor)&&(s*=.5),t3.Vector.new(e3.Data.Int(o,0,s,0,null,r))}}if(i)return n3.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")}};Ct.IntVector=ji;var My=class extends ji{};Ct.Int8Vector=My;var zy=class extends ji{};Ct.Int16Vector=zy;var Uy=class extends ji{};Ct.Int32Vector=Uy;var Ly=class extends ji{toBigInt64Array(){return _1.toBigInt64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigInt64Array())}};Ct.Int64Vector=Ly;var Vy=class extends ji{};Ct.Uint8Vector=Vy;var Cy=class extends ji{};Ct.Uint16Vector=Cy;var Wy=class extends ji{};Ct.Uint32Vector=Wy;var Ky=class extends ji{toBigUint64Array(){return _1.toBigUint64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigUint64Array())}};Ct.Uint64Vector=Ky;var i3=(t,e)=>(t===Et.Int64||t===Et.Uint64)&&(e===Int32Array||e===Uint32Array),f3=(t,e)=>{switch(t){case Int8Array:return Et.Int8;case Int16Array:return Et.Int16;case Int32Array:return e?Et.Int64:Et.Int32;case q1.BigInt64Array:return Et.Int64;case Uint8Array:return Et.Uint8;case Uint16Array:return Et.Uint16;case Uint32Array:return e?Et.Uint64:Et.Uint32;case q1.BigUint64Array:return Et.Uint64;default:return null}},o3=(t,e)=>{switch(t){case My:return Et.Int8;case zy:return Et.Int16;case Uy:return e?Et.Int64:Et.Int32;case Ly:return Et.Int64;case Vy:return Et.Uint8;case Cy:return Et.Uint16;case Wy:return e?Et.Uint64:Et.Uint32;case Ky:return Et.Uint64;default:return null}}});var Yy=k(am=>{"use strict";Object.defineProperty(am,"__esModule",{value:!0});am.ListVector=void 0;var s3=Pt(),v1=class extends s3.BaseVector{};am.ListVector=v1});var Gy=k(lm=>{"use strict";Object.defineProperty(lm,"__esModule",{value:!0});lm.MapVector=void 0;var a3=wu(),l3=Nt(),u3=Pt(),c3=$e(),T1=class extends u3.BaseVector{asList(){let e=this.type.children[0];return l3.Vector.new(this.data.clone(new c3.List(e)))}bind(e){let r=this.getChildAt(0),{[e]:n,[e+1]:i}=this.valueOffsets;return new a3.MapRow(r.slice(n,i))}};lm.MapVector=T1});var Zy=k(um=>{"use strict";Object.defineProperty(um,"__esModule",{value:!0});um.NullVector=void 0;var p3=Pt(),k1=class extends p3.BaseVector{};um.NullVector=k1});var Jy=k(cm=>{"use strict";Object.defineProperty(cm,"__esModule",{value:!0});cm.StructVector=void 0;var d3=wu(),m3=Pt(),w3=Symbol.for("rowIndex"),B1=class extends m3.BaseVector{bind(e){let r=this._row||(this._row=new d3.StructRow(this)),n=Object.create(r);return n[w3]=e,n}};cm.StructVector=B1});var Qy=k(jn=>{"use strict";Object.defineProperty(jn,"__esModule",{value:!0});jn.TimestampNanosecondVector=jn.TimestampMicrosecondVector=jn.TimestampMillisecondVector=jn.TimestampSecondVector=jn.TimestampVector=void 0;var h3=Pt(),ua=class extends h3.BaseVector{};jn.TimestampVector=ua;var I1=class extends ua{};jn.TimestampSecondVector=I1;var x1=class extends ua{};jn.TimestampMillisecondVector=x1;var S1=class extends ua{};jn.TimestampMicrosecondVector=S1;var E1=class extends ua{};jn.TimestampNanosecondVector=E1});var Xy=k(qn=>{"use strict";Object.defineProperty(qn,"__esModule",{value:!0});qn.TimeNanosecondVector=qn.TimeMicrosecondVector=qn.TimeMillisecondVector=qn.TimeSecondVector=qn.TimeVector=void 0;var b3=Pt(),ca=class extends b3.BaseVector{};qn.TimeVector=ca;var A1=class extends ca{};qn.TimeSecondVector=A1;var O1=class extends ca{};qn.TimeMillisecondVector=O1;var F1=class extends ca{};qn.TimeMicrosecondVector=F1;var D1=class extends ca{};qn.TimeNanosecondVector=D1});var $y=k(Zf=>{"use strict";Object.defineProperty(Zf,"__esModule",{value:!0});Zf.SparseUnionVector=Zf.DenseUnionVector=Zf.UnionVector=void 0;var g3=Pt(),pm=class extends g3.BaseVector{get typeIdToChildIndex(){return this.data.type.typeIdToChildIndex}};Zf.UnionVector=pm;var N1=class extends pm{get valueOffsets(){return this.data.valueOffsets}};Zf.DenseUnionVector=N1;var R1=class extends pm{};Zf.SparseUnionVector=R1});var ej=k(dm=>{"use strict";Object.defineProperty(dm,"__esModule",{value:!0});dm.Utf8Vector=void 0;var y3=Nt(),j3=Pt(),P1=$e(),q3=gi(),H1=class extends j3.BaseVector{static from(e){return q3.vectorFromValuesWithType(()=>new P1.Utf8,e)}asBinary(){return y3.Vector.new(this.data.clone(new P1.Binary))}};dm.Utf8Vector=H1});var M1=k(Jf=>{"use strict";Object.defineProperty(Jf,"__esModule",{value:!0});Jf.partial2=Jf.partial1=Jf.partial0=void 0;function _3(t){return function(){return t(this)}}Jf.partial0=_3;function v3(t){return function(e){return t(this,e)}}Jf.partial1=v3;function T3(t){return function(e,r){return t(this,e,r)}}Jf.partial2=T3});var nj=k(pa=>{"use strict";Object.defineProperty(pa,"__esModule",{value:!0});pa.instance=pa.GetVisitor=void 0;var mm=lu(),k3=sr(),B3=Io(),I3=fu(),_n=dt(),ye=class extends k3.Visitor{};pa.GetVisitor=ye;var x3=(t,e)=>864e5*t[e],tj=(t,e)=>4294967296*t[e+1]+(t[e]>>>0),S3=(t,e)=>4294967296*(t[e+1]/1e3)+(t[e]>>>0)/1e3,E3=(t,e)=>4294967296*(t[e+1]/1e6)+(t[e]>>>0)/1e6,z1=t=>new Date(t),A3=(t,e)=>z1(x3(t,e)),O3=(t,e)=>z1(tj(t,e)),F3=(t,e)=>null,U1=(t,e,r)=>{let{[r]:n,[r+1]:i}=e;return n!=null&&i!=null?t.subarray(n,i):null},D3=({offset:t,values:e},r)=>{let n=t+r;return(e[n>>3]&1<<n%8)!=0},L1=({values:t},e)=>A3(t,e),V1=({values:t},e)=>O3(t,e*2),qi=({stride:t,values:e},r)=>e[t*r],C1=({stride:t,values:e},r)=>I3.uint16ToFloat64(e[t*r]),rj=({stride:t,values:e,type:r},n)=>mm.BN.new(e.subarray(t*n,t*(n+1)),r.isSigned),N3=({stride:t,values:e},r)=>e.subarray(t*r,t*(r+1)),R3=({values:t,valueOffsets:e},r)=>U1(t,e,r),P3=({values:t,valueOffsets:e},r)=>{let n=U1(t,e,r);return n!==null?B3.decodeUtf8(n):null},H3=(t,e)=>t.type.bitWidth<64?qi(t,e):rj(t,e),M3=(t,e)=>t.type.precision!==_n.Precision.HALF?qi(t,e):C1(t,e),z3=(t,e)=>t.type.unit===_n.DateUnit.DAY?L1(t,e):V1(t,e),W1=({values:t},e)=>1e3*tj(t,e*2),K1=({values:t},e)=>tj(t,e*2),Y1=({values:t},e)=>S3(t,e*2),G1=({values:t},e)=>E3(t,e*2),U3=(t,e)=>{switch(t.type.unit){case _n.TimeUnit.SECOND:return W1(t,e);case _n.TimeUnit.MILLISECOND:return K1(t,e);case _n.TimeUnit.MICROSECOND:return Y1(t,e);case _n.TimeUnit.NANOSECOND:return G1(t,e)}},Z1=({values:t,stride:e},r)=>t[e*r],J1=({values:t,stride:e},r)=>t[e*r],Q1=({values:t},e)=>mm.BN.signed(t.subarray(2*e,2*(e+1))),X1=({values:t},e)=>mm.BN.signed(t.subarray(2*e,2*(e+1))),L3=(t,e)=>{switch(t.type.unit){case _n.TimeUnit.SECOND:return Z1(t,e);case _n.TimeUnit.MILLISECOND:return J1(t,e);case _n.TimeUnit.MICROSECOND:return Q1(t,e);case _n.TimeUnit.NANOSECOND:return X1(t,e)}},V3=({values:t},e)=>mm.BN.decimal(t.subarray(4*e,4*(e+1))),C3=(t,e)=>{let r=t.getChildAt(0),{valueOffsets:n,stride:i}=t;return r.slice(n[e*i],n[e*i+1])},W3=(t,e)=>t.bind(e),K3=(t,e)=>t.bind(e),Y3=(t,e)=>t.type.mode===_n.UnionMode.Dense?$1(t,e):ex(t,e),$1=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(t.valueOffsets[e]):null},ex=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(e):null},G3=(t,e)=>t.getValue(t.getKey(e)),Z3=(t,e)=>t.type.unit===_n.IntervalUnit.DAY_TIME?tx(t,e):rx(t,e),tx=({values:t},e)=>t.subarray(2*e,2*(e+1)),rx=({values:t},e)=>{let r=t[e],n=new Int32Array(2);return n[0]=r/12|0,n[1]=r%12|0,n},J3=(t,e)=>{let r=t.getChildAt(0),{stride:n}=t;return r.slice(e*n,(e+1)*n)};ye.prototype.visitNull=F3;ye.prototype.visitBool=D3;ye.prototype.visitInt=H3;ye.prototype.visitInt8=qi;ye.prototype.visitInt16=qi;ye.prototype.visitInt32=qi;ye.prototype.visitInt64=rj;ye.prototype.visitUint8=qi;ye.prototype.visitUint16=qi;ye.prototype.visitUint32=qi;ye.prototype.visitUint64=rj;ye.prototype.visitFloat=M3;ye.prototype.visitFloat16=C1;ye.prototype.visitFloat32=qi;ye.prototype.visitFloat64=qi;ye.prototype.visitUtf8=P3;ye.prototype.visitBinary=R3;ye.prototype.visitFixedSizeBinary=N3;ye.prototype.visitDate=z3;ye.prototype.visitDateDay=L1;ye.prototype.visitDateMillisecond=V1;ye.prototype.visitTimestamp=U3;ye.prototype.visitTimestampSecond=W1;ye.prototype.visitTimestampMillisecond=K1;ye.prototype.visitTimestampMicrosecond=Y1;ye.prototype.visitTimestampNanosecond=G1;ye.prototype.visitTime=L3;ye.prototype.visitTimeSecond=Z1;ye.prototype.visitTimeMillisecond=J1;ye.prototype.visitTimeMicrosecond=Q1;ye.prototype.visitTimeNanosecond=X1;ye.prototype.visitDecimal=V3;ye.prototype.visitList=C3;ye.prototype.visitStruct=K3;ye.prototype.visitUnion=Y3;ye.prototype.visitDenseUnion=$1;ye.prototype.visitSparseUnion=ex;ye.prototype.visitDictionary=G3;ye.prototype.visitInterval=Z3;ye.prototype.visitIntervalDayTime=tx;ye.prototype.visitIntervalYearMonth=rx;ye.prototype.visitFixedSizeList=J3;ye.prototype.visitMap=W3;pa.instance=new ye});var ox=k(da=>{"use strict";Object.defineProperty(da,"__esModule",{value:!0});da.instance=da.IndexOfVisitor=void 0;var Q3=sr(),nx=si(),ix=bu(),je=class extends Q3.Visitor{};da.IndexOfVisitor=je;function X3(t,e){return e===null&&t.length>0?0:-1}function $3(t,e){let{nullBitmap:r}=t.data;if(!r||t.nullCount<=0)return-1;let n=0;for(let i of new nx.BitIterator(r,t.data.offset+(e||0),t.length,r,nx.getBool)){if(!i)return n;++n}return-1}function Fe(t,e,r){if(e===void 0)return-1;if(e===null)return $3(t,r);let n=ix.createElementComparator(e);for(let i=(r||0)-1,f=t.length;++i<f;)if(n(t.get(i)))return i;return-1}function fx(t,e,r){let n=ix.createElementComparator(e);for(let i=(r||0)-1,f=t.length;++i<f;)if(n(t.get(i)))return i;return-1}je.prototype.visitNull=X3;je.prototype.visitBool=Fe;je.prototype.visitInt=Fe;je.prototype.visitInt8=Fe;je.prototype.visitInt16=Fe;je.prototype.visitInt32=Fe;je.prototype.visitInt64=Fe;je.prototype.visitUint8=Fe;je.prototype.visitUint16=Fe;je.prototype.visitUint32=Fe;je.prototype.visitUint64=Fe;je.prototype.visitFloat=Fe;je.prototype.visitFloat16=Fe;je.prototype.visitFloat32=Fe;je.prototype.visitFloat64=Fe;je.prototype.visitUtf8=Fe;je.prototype.visitBinary=Fe;je.prototype.visitFixedSizeBinary=Fe;je.prototype.visitDate=Fe;je.prototype.visitDateDay=Fe;je.prototype.visitDateMillisecond=Fe;je.prototype.visitTimestamp=Fe;je.prototype.visitTimestampSecond=Fe;je.prototype.visitTimestampMillisecond=Fe;je.prototype.visitTimestampMicrosecond=Fe;je.prototype.visitTimestampNanosecond=Fe;je.prototype.visitTime=Fe;je.prototype.visitTimeSecond=Fe;je.prototype.visitTimeMillisecond=Fe;je.prototype.visitTimeMicrosecond=Fe;je.prototype.visitTimeNanosecond=Fe;je.prototype.visitDecimal=Fe;je.prototype.visitList=Fe;je.prototype.visitStruct=Fe;je.prototype.visitUnion=Fe;je.prototype.visitDenseUnion=fx;je.prototype.visitSparseUnion=fx;je.prototype.visitDictionary=Fe;je.prototype.visitInterval=Fe;je.prototype.visitIntervalDayTime=Fe;je.prototype.visitIntervalYearMonth=Fe;je.prototype.visitFixedSizeList=Fe;je.prototype.visitMap=Fe;da.instance=new je});var ij=k(ma=>{"use strict";Object.defineProperty(ma,"__esModule",{value:!0});ma.instance=ma.IteratorVisitor=void 0;var wm=dt(),eM=sr(),tM=si(),sx=nj(),qe=class extends eM.Visitor{};ma.IteratorVisitor=qe;function rM(t){let e=sx.instance.getVisitFn(t);return new tM.BitIterator(t.data.nullBitmap,t.data.offset,t.length,t,(r,n,i,f)=>(i&1<<f)!=0?e(r,n):null)}var ax=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 Se(t){if(t.nullCount>0)return rM(t);let{type:e,typeId:r,length:n}=t;return t.stride===1&&(r===wm.Type.Timestamp||r===wm.Type.Int&&e.bitWidth!==64||r===wm.Type.Time&&e.bitWidth!==64||r===wm.Type.Float&&e.precision>0)?t.data.values.subarray(0,n)[Symbol.iterator]():new ax(t,sx.instance.getVisitFn(t))}qe.prototype.visitNull=Se;qe.prototype.visitBool=Se;qe.prototype.visitInt=Se;qe.prototype.visitInt8=Se;qe.prototype.visitInt16=Se;qe.prototype.visitInt32=Se;qe.prototype.visitInt64=Se;qe.prototype.visitUint8=Se;qe.prototype.visitUint16=Se;qe.prototype.visitUint32=Se;qe.prototype.visitUint64=Se;qe.prototype.visitFloat=Se;qe.prototype.visitFloat16=Se;qe.prototype.visitFloat32=Se;qe.prototype.visitFloat64=Se;qe.prototype.visitUtf8=Se;qe.prototype.visitBinary=Se;qe.prototype.visitFixedSizeBinary=Se;qe.prototype.visitDate=Se;qe.prototype.visitDateDay=Se;qe.prototype.visitDateMillisecond=Se;qe.prototype.visitTimestamp=Se;qe.prototype.visitTimestampSecond=Se;qe.prototype.visitTimestampMillisecond=Se;qe.prototype.visitTimestampMicrosecond=Se;qe.prototype.visitTimestampNanosecond=Se;qe.prototype.visitTime=Se;qe.prototype.visitTimeSecond=Se;qe.prototype.visitTimeMillisecond=Se;qe.prototype.visitTimeMicrosecond=Se;qe.prototype.visitTimeNanosecond=Se;qe.prototype.visitDecimal=Se;qe.prototype.visitList=Se;qe.prototype.visitStruct=Se;qe.prototype.visitUnion=Se;qe.prototype.visitDenseUnion=Se;qe.prototype.visitSparseUnion=Se;qe.prototype.visitDictionary=Se;qe.prototype.visitInterval=Se;qe.prototype.visitIntervalDayTime=Se;qe.prototype.visitIntervalYearMonth=Se;qe.prototype.visitFixedSizeList=Se;qe.prototype.visitMap=Se;ma.instance=new qe});var lx=k(wa=>{"use strict";Object.defineProperty(wa,"__esModule",{value:!0});wa.instance=wa.ToArrayVisitor=void 0;var xu=dt(),nM=sr(),iM=ij(),_e=class extends nM.Visitor{};wa.ToArrayVisitor=_e;function Ee(t){let{type:e,length:r,stride:n}=t;switch(e.typeId){case xu.Type.Int:case xu.Type.Float:case xu.Type.Decimal:case xu.Type.Time:case xu.Type.Timestamp:return t.data.values.subarray(0,r*n)}return[...iM.instance.visit(t)]}_e.prototype.visitNull=Ee;_e.prototype.visitBool=Ee;_e.prototype.visitInt=Ee;_e.prototype.visitInt8=Ee;_e.prototype.visitInt16=Ee;_e.prototype.visitInt32=Ee;_e.prototype.visitInt64=Ee;_e.prototype.visitUint8=Ee;_e.prototype.visitUint16=Ee;_e.prototype.visitUint32=Ee;_e.prototype.visitUint64=Ee;_e.prototype.visitFloat=Ee;_e.prototype.visitFloat16=Ee;_e.prototype.visitFloat32=Ee;_e.prototype.visitFloat64=Ee;_e.prototype.visitUtf8=Ee;_e.prototype.visitBinary=Ee;_e.prototype.visitFixedSizeBinary=Ee;_e.prototype.visitDate=Ee;_e.prototype.visitDateDay=Ee;_e.prototype.visitDateMillisecond=Ee;_e.prototype.visitTimestamp=Ee;_e.prototype.visitTimestampSecond=Ee;_e.prototype.visitTimestampMillisecond=Ee;_e.prototype.visitTimestampMicrosecond=Ee;_e.prototype.visitTimestampNanosecond=Ee;_e.prototype.visitTime=Ee;_e.prototype.visitTimeSecond=Ee;_e.prototype.visitTimeMillisecond=Ee;_e.prototype.visitTimeMicrosecond=Ee;_e.prototype.visitTimeNanosecond=Ee;_e.prototype.visitDecimal=Ee;_e.prototype.visitList=Ee;_e.prototype.visitStruct=Ee;_e.prototype.visitUnion=Ee;_e.prototype.visitDenseUnion=Ee;_e.prototype.visitSparseUnion=Ee;_e.prototype.visitDictionary=Ee;_e.prototype.visitInterval=Ee;_e.prototype.visitIntervalDayTime=Ee;_e.prototype.visitIntervalYearMonth=Ee;_e.prototype.visitFixedSizeList=Ee;_e.prototype.visitMap=Ee;wa.instance=new _e});var ux=k(ha=>{"use strict";Object.defineProperty(ha,"__esModule",{value:!0});ha.instance=ha.ByteWidthVisitor=void 0;var fM=sr(),oM=dt(),Su=(t,e)=>t+e,fj=t=>`Cannot compute the byte width of variable-width column ${t}`,oj=class extends fM.Visitor{visitNull(e){return 0}visitInt(e){return e.bitWidth/8}visitFloat(e){return e.ArrayType.BYTES_PER_ELEMENT}visitBinary(e){throw new Error(fj(e))}visitUtf8(e){throw new Error(fj(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===oM.TimeUnit.SECOND?4:8}visitInterval(e){return(e.unit+1)*4}visitList(e){throw new Error(fj(e))}visitStruct(e){return this.visitFields(e.children).reduce(Su,0)}visitUnion(e){return this.visitFields(e.children).reduce(Su,0)}visitFixedSizeBinary(e){return e.byteWidth}visitFixedSizeList(e){return e.listSize*this.visitFields(e.children).reduce(Su,0)}visitMap(e){return this.visitFields(e.children).reduce(Su,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(Su,0)}};ha.ByteWidthVisitor=oj;ha.instance=new oj});var cx=k(ba=>{"use strict";Object.defineProperty(ba,"__esModule",{value:!0});ba.instance=ba.GetVectorConstructor=void 0;var sM=sr(),aM=By(),lM=Iy(),sj=Sy(),uM=Ey(),cM=nm(),pM=Oy(),dM=Fy(),hm=Py(),aj=Hy(),Xi=sm(),mM=Yy(),wM=Gy(),hM=Zy(),bM=Jy(),Eu=Qy(),Au=Xy(),lj=$y(),gM=ej(),uj=class extends sM.Visitor{visitNull(){return hM.NullVector}visitBool(){return lM.BoolVector}visitInt(){return Xi.IntVector}visitInt8(){return Xi.Int8Vector}visitInt16(){return Xi.Int16Vector}visitInt32(){return Xi.Int32Vector}visitInt64(){return Xi.Int64Vector}visitUint8(){return Xi.Uint8Vector}visitUint16(){return Xi.Uint16Vector}visitUint32(){return Xi.Uint32Vector}visitUint64(){return Xi.Uint64Vector}visitFloat(){return hm.FloatVector}visitFloat16(){return hm.Float16Vector}visitFloat32(){return hm.Float32Vector}visitFloat64(){return hm.Float64Vector}visitUtf8(){return gM.Utf8Vector}visitBinary(){return aM.BinaryVector}visitFixedSizeBinary(){return pM.FixedSizeBinaryVector}visitDate(){return sj.DateVector}visitDateDay(){return sj.DateDayVector}visitDateMillisecond(){return sj.DateMillisecondVector}visitTimestamp(){return Eu.TimestampVector}visitTimestampSecond(){return Eu.TimestampSecondVector}visitTimestampMillisecond(){return Eu.TimestampMillisecondVector}visitTimestampMicrosecond(){return Eu.TimestampMicrosecondVector}visitTimestampNanosecond(){return Eu.TimestampNanosecondVector}visitTime(){return Au.TimeVector}visitTimeSecond(){return Au.TimeSecondVector}visitTimeMillisecond(){return Au.TimeMillisecondVector}visitTimeMicrosecond(){return Au.TimeMicrosecondVector}visitTimeNanosecond(){return Au.TimeNanosecondVector}visitDecimal(){return uM.DecimalVector}visitList(){return mM.ListVector}visitStruct(){return bM.StructVector}visitUnion(){return lj.UnionVector}visitDenseUnion(){return lj.DenseUnionVector}visitSparseUnion(){return lj.SparseUnionVector}visitDictionary(){return cM.DictionaryVector}visitInterval(){return aj.IntervalVector}visitIntervalDayTime(){return aj.IntervalDayTimeVector}visitIntervalYearMonth(){return aj.IntervalYearMonthVector}visitFixedSizeList(){return dM.FixedSizeListVector}visitMap(){return wM.MapVector}};ba.GetVectorConstructor=uj;ba.instance=new uj});var gi=k(V=>{"use strict";Object.defineProperty(V,"__esModule",{value:!0});V.vectorFromValuesWithType=V.StructRow=V.MapRow=V.Utf8Vector=V.SparseUnionVector=V.DenseUnionVector=V.UnionVector=V.TimeNanosecondVector=V.TimeMicrosecondVector=V.TimeMillisecondVector=V.TimeSecondVector=V.TimeVector=V.TimestampNanosecondVector=V.TimestampMicrosecondVector=V.TimestampMillisecondVector=V.TimestampSecondVector=V.TimestampVector=V.StructVector=V.NullVector=V.MapVector=V.ListVector=V.Uint64Vector=V.Uint32Vector=V.Uint16Vector=V.Uint8Vector=V.Int64Vector=V.Int32Vector=V.Int16Vector=V.Int8Vector=V.IntVector=V.IntervalYearMonthVector=V.IntervalDayTimeVector=V.IntervalVector=V.Float64Vector=V.Float32Vector=V.Float16Vector=V.FloatVector=V.FixedSizeListVector=V.FixedSizeBinaryVector=V.DictionaryVector=V.DecimalVector=V.DateMillisecondVector=V.DateDayVector=V.DateVector=V.Chunked=V.BoolVector=V.BinaryVector=V.BaseVector=V.Vector=void 0;var yM=Nt();Object.defineProperty(V,"Vector",{enumerable:!0,get:function(){return yM.Vector}});var jM=Pt();Object.defineProperty(V,"BaseVector",{enumerable:!0,get:function(){return jM.BaseVector}});var qM=By();Object.defineProperty(V,"BinaryVector",{enumerable:!0,get:function(){return qM.BinaryVector}});var _M=Iy();Object.defineProperty(V,"BoolVector",{enumerable:!0,get:function(){return _M.BoolVector}});var vM=Lf();Object.defineProperty(V,"Chunked",{enumerable:!0,get:function(){return vM.Chunked}});var cj=Sy();Object.defineProperty(V,"DateVector",{enumerable:!0,get:function(){return cj.DateVector}});Object.defineProperty(V,"DateDayVector",{enumerable:!0,get:function(){return cj.DateDayVector}});Object.defineProperty(V,"DateMillisecondVector",{enumerable:!0,get:function(){return cj.DateMillisecondVector}});var TM=Ey();Object.defineProperty(V,"DecimalVector",{enumerable:!0,get:function(){return TM.DecimalVector}});var kM=nm();Object.defineProperty(V,"DictionaryVector",{enumerable:!0,get:function(){return kM.DictionaryVector}});var BM=Oy();Object.defineProperty(V,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return BM.FixedSizeBinaryVector}});var IM=Fy();Object.defineProperty(V,"FixedSizeListVector",{enumerable:!0,get:function(){return IM.FixedSizeListVector}});var bm=Py();Object.defineProperty(V,"FloatVector",{enumerable:!0,get:function(){return bm.FloatVector}});Object.defineProperty(V,"Float16Vector",{enumerable:!0,get:function(){return bm.Float16Vector}});Object.defineProperty(V,"Float32Vector",{enumerable:!0,get:function(){return bm.Float32Vector}});Object.defineProperty(V,"Float64Vector",{enumerable:!0,get:function(){return bm.Float64Vector}});var pj=Hy();Object.defineProperty(V,"IntervalVector",{enumerable:!0,get:function(){return pj.IntervalVector}});Object.defineProperty(V,"IntervalDayTimeVector",{enumerable:!0,get:function(){return pj.IntervalDayTimeVector}});Object.defineProperty(V,"IntervalYearMonthVector",{enumerable:!0,get:function(){return pj.IntervalYearMonthVector}});var $i=sm();Object.defineProperty(V,"IntVector",{enumerable:!0,get:function(){return $i.IntVector}});Object.defineProperty(V,"Int8Vector",{enumerable:!0,get:function(){return $i.Int8Vector}});Object.defineProperty(V,"Int16Vector",{enumerable:!0,get:function(){return $i.Int16Vector}});Object.defineProperty(V,"Int32Vector",{enumerable:!0,get:function(){return $i.Int32Vector}});Object.defineProperty(V,"Int64Vector",{enumerable:!0,get:function(){return $i.Int64Vector}});Object.defineProperty(V,"Uint8Vector",{enumerable:!0,get:function(){return $i.Uint8Vector}});Object.defineProperty(V,"Uint16Vector",{enumerable:!0,get:function(){return $i.Uint16Vector}});Object.defineProperty(V,"Uint32Vector",{enumerable:!0,get:function(){return $i.Uint32Vector}});Object.defineProperty(V,"Uint64Vector",{enumerable:!0,get:function(){return $i.Uint64Vector}});var xM=Yy();Object.defineProperty(V,"ListVector",{enumerable:!0,get:function(){return xM.ListVector}});var SM=Gy();Object.defineProperty(V,"MapVector",{enumerable:!0,get:function(){return SM.MapVector}});var EM=Zy();Object.defineProperty(V,"NullVector",{enumerable:!0,get:function(){return EM.NullVector}});var AM=Jy();Object.defineProperty(V,"StructVector",{enumerable:!0,get:function(){return AM.StructVector}});var Ou=Qy();Object.defineProperty(V,"TimestampVector",{enumerable:!0,get:function(){return Ou.TimestampVector}});Object.defineProperty(V,"TimestampSecondVector",{enumerable:!0,get:function(){return Ou.TimestampSecondVector}});Object.defineProperty(V,"TimestampMillisecondVector",{enumerable:!0,get:function(){return Ou.TimestampMillisecondVector}});Object.defineProperty(V,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return Ou.TimestampMicrosecondVector}});Object.defineProperty(V,"TimestampNanosecondVector",{enumerable:!0,get:function(){return Ou.TimestampNanosecondVector}});var Fu=Xy();Object.defineProperty(V,"TimeVector",{enumerable:!0,get:function(){return Fu.TimeVector}});Object.defineProperty(V,"TimeSecondVector",{enumerable:!0,get:function(){return Fu.TimeSecondVector}});Object.defineProperty(V,"TimeMillisecondVector",{enumerable:!0,get:function(){return Fu.TimeMillisecondVector}});Object.defineProperty(V,"TimeMicrosecondVector",{enumerable:!0,get:function(){return Fu.TimeMicrosecondVector}});Object.defineProperty(V,"TimeNanosecondVector",{enumerable:!0,get:function(){return Fu.TimeNanosecondVector}});var dj=$y();Object.defineProperty(V,"UnionVector",{enumerable:!0,get:function(){return dj.UnionVector}});Object.defineProperty(V,"DenseUnionVector",{enumerable:!0,get:function(){return dj.DenseUnionVector}});Object.defineProperty(V,"SparseUnionVector",{enumerable:!0,get:function(){return dj.SparseUnionVector}});var OM=ej();Object.defineProperty(V,"Utf8Vector",{enumerable:!0,get:function(){return OM.Utf8Vector}});var px=wu();Object.defineProperty(V,"MapRow",{enumerable:!0,get:function(){return px.MapRow}});Object.defineProperty(V,"StructRow",{enumerable:!0,get:function(){return px.StructRow}});var Du=M1(),mj=dt(),ga=Nt(),dx=Lf(),Go=Pt(),FM=si(),gm=mr(),mx=It(),wx=nj(),hx=Eg(),bx=ox(),gx=lx(),yx=ij(),jx=ux(),qx=cx();ga.Vector.new=DM;ga.Vector.from=RM;function DM(t,...e){return new(qx.instance.getVisitFn(t)())(t,...e)}function NM(t,e){if(gm.isIterable(e))return ga.Vector.from({nullValues:[null,void 0],type:t(),values:e});if(gm.isAsyncIterable(e))return ga.Vector.from({nullValues:[null,void 0],type:t(),values:e});let{values:r=[],type:n=t(),nullValues:i=[null,void 0]}={...e};return gm.isIterable(r)?ga.Vector.from({nullValues:i,...e,type:n}):ga.Vector.from({nullValues:i,...e,type:n})}V.vectorFromValuesWithType=NM;function RM(t){let{values:e=[],...r}={nullValues:[null,void 0],...t};if(gm.isIterable(e)){let n=[...mx.Builder.throughIterable(r)(e)];return n.length===1?n[0]:dx.Chunked.concat(n)}return(async n=>{let i=mx.Builder.throughAsyncIterable(r);for await(let f of i(e))n.push(f);return n.length===1?n[0]:dx.Chunked.concat(n)})([])}Go.BaseVector.prototype.get=function(e){return wx.instance.visit(this,e)};Go.BaseVector.prototype.set=function(e,r){return hx.instance.visit(this,e,r)};Go.BaseVector.prototype.indexOf=function(e,r){return bx.instance.visit(this,e,r)};Go.BaseVector.prototype.toArray=function(){return gx.instance.visit(this)};Go.BaseVector.prototype.getByteWidth=function(){return jx.instance.visit(this.type)};Go.BaseVector.prototype[Symbol.iterator]=function(){return yx.instance.visit(this)};Go.BaseVector.prototype._bindDataAccessors=zM;Object.keys(mj.Type).map(t=>mj.Type[t]).filter(t=>typeof t=="number").filter(t=>t!==mj.Type.NONE).forEach(t=>{let e=qx.instance.visit(t);e.prototype.get=Du.partial1(wx.instance.getVisitFn(t)),e.prototype.set=Du.partial2(hx.instance.getVisitFn(t)),e.prototype.indexOf=Du.partial2(bx.instance.getVisitFn(t)),e.prototype.toArray=Du.partial0(gx.instance.getVisitFn(t)),e.prototype.getByteWidth=PM(jx.instance.getVisitFn(t)),e.prototype[Symbol.iterator]=Du.partial0(yx.instance.getVisitFn(t))});function PM(t){return function(){return t(this.type)}}function HM(t){return function(e){return this.isValid(e)?t.call(this,e):null}}function MM(t){return function(e,r){FM.setBool(this.nullBitmap,this.offset+e,r!=null)&&t.call(this,e,r)}}function zM(){let t=this.nullBitmap;t&&t.byteLength>0&&(this.get=HM(this.get),this.set=MM(this.set))}});var Bu=k(ym=>{"use strict";Object.defineProperty(ym,"__esModule",{value:!0});ym.Table=void 0;var UM=ia(),_x=er(),wj=Qi(),LM=Nu(),hj=$e(),vx=na(),bj=mr(),Tx=Jd(),kx=vy(),gj=gi(),rr=class extends gj.Chunked{constructor(...e){let r=null;e[0]instanceof _x.Schema&&(r=e.shift());let n=vx.selectArgs(wj.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 wj._InternalEmptyPlaceholderRecordBatch(r));super(new hj.Struct(r.fields),n);this._schema=r,this._chunks=n}static empty(e=new _x.Schema([])){return new rr(e,[])}static from(e){if(!e)return rr.empty();if(typeof e=="object"){let n=bj.isIterable(e.values)?VM(e):bj.isAsyncIterable(e.values)?CM(e):null;if(n!==null)return n}let r=LM.RecordBatchReader.from(e);return bj.isPromise(r)?(async()=>await rr.from(await r))():r.isSync()&&(r=r.open())?r.schema?new rr(r.schema,[...r]):rr.empty():(async n=>{let i=await n,f=i.schema,o=[];if(f){for await(let s of i)o.push(s);return new rr(f,o)}return rr.empty()})(r.open())}static async fromAsync(e){return await rr.from(e)}static fromStruct(e){return rr.new(e.data.childData,e.type.children)}static new(...e){return new rr(...kx.distributeColumnsIntoRecordBatches(vx.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 rr(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,f=this._children||(this._children=[]);if(n=f[e])return n;if(r=i[e]){let o=this._chunks.map(s=>s.getChildAt(e)).filter(s=>s!=null);if(o.length>0)return f[e]=new UM.Column(r,o)}return null}serialize(e="binary",r=!0){return(r?Tx.RecordBatchStreamWriter:Tx.RecordBatchFileWriter).writeAll(this).toUint8Array(!0)}count(){return this._length}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);return new rr(r,this._chunks.map(({length:n,data:{childData:i}})=>new wj.RecordBatch(r,n,e.map(f=>i[f]).filter(Boolean))))}assign(e){let r=this._schema.fields,[n,i]=e.schema.fields.reduce((s,u,l)=>{let[c,w]=s,p=r.findIndex(g=>g.name===u.name);return~p?w[p]=l:c.push(l),s},[[],[]]),f=this._schema.assign(e.schema),o=[...r.map((s,u,l,c=i[u])=>c===void 0?this.getColumnAt(u):e.getColumnAt(c)),...n.map(s=>e.getColumnAt(s))].filter(Boolean);return new rr(...kx.distributeVectorsIntoRecordBatches(f,o))}};ym.Table=rr;function VM(t){let{type:e}=t;return e instanceof hj.Struct?rr.fromStruct(gj.StructVector.from(t)):null}function CM(t){let{type:e}=t;return e instanceof hj.Struct?gj.StructVector.from(t).then(r=>rr.fromStruct(r)):null}});var Qi=k(ya=>{"use strict";Object.defineProperty(ya,"__esModule",{value:!0});ya._InternalEmptyPlaceholderRecordBatch=ya.RecordBatch=void 0;var yj=Dn(),jj=Bu(),WM=Nt(),KM=sr(),YM=er(),GM=mr(),ZM=Lf(),JM=na(),qj=$e(),QM=vy(),XM=gi(),Qf=class extends XM.StructVector{constructor(...e){let r,n=e[0],i;if(e[1]instanceof yj.Data)[,r,i]=e;else{let f=n.fields,[,o,s]=e;r=yj.Data.Struct(new qj.Struct(f),0,o,0,null,s)}super(r,i);this._schema=n}static from(e){return GM.isIterable(e.values),jj.Table.from(e)}static new(...e){let[r,n]=JM.selectFieldArgs(e),i=n.filter(f=>f instanceof WM.Vector);return new Qf(...QM.ensureSameLengthData(new YM.Schema(r),i.map(f=>f.data)))}clone(e,r=this._children){return new Qf(this._schema,e,r)}concat(...e){let r=this._schema,n=ZM.Chunked.flatten(this,...e);return new jj.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=jm.collect(this))}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=e.map(i=>this.data.childData[i]).filter(Boolean);return new Qf(r,this.length,n)}};ya.RecordBatch=Qf;var Bx=class extends Qf{constructor(e){super(e,0,e.fields.map(r=>yj.Data.new(r.type,0,0,0)))}};ya._InternalEmptyPlaceholderRecordBatch=Bx;var jm=class extends KM.Visitor{constructor(){super(...arguments);this.dictionaries=new Map}static collect(e){return new jm().visit(e.data,new qj.Struct(e.schema.fields)).dictionaries}visit(e,r){return qj.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 Nu=k(kn=>{"use strict";Object.defineProperty(kn,"__esModule",{value:!0});kn.AsyncRecordBatchFileReader=kn.RecordBatchFileReader=kn.AsyncRecordBatchStreamReader=kn.RecordBatchStreamReader=kn.RecordBatchReader=void 0;var Ix=Nt(),qm=dt(),xx=Ug(),Sx=nu(),Ex=Hf(),Ru=Cg(),Ax=lI(),_j=Qi(),Zo=Os(),vn=Md(),Tn=mr(),_i=class extends Zo.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 Tn.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 Sx.default.toDOMStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this})}toNodeStream(){return Sx.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 _i?e:Tn.isArrowJSON(e)?$M(e):Tn.isFileHandle(e)?rz(e):Tn.isPromise(e)?(async()=>await _i.from(await e))():Tn.isFetchResponse(e)||Tn.isReadableDOMStream(e)||Tn.isReadableNodeStream(e)||Tn.isAsyncIterable(e)?tz(new Ex.AsyncByteStream(e)):ez(new Ex.ByteStream(e))}static readAll(e){return e instanceof _i?e.isSync()?Nx(e):Rx(e):Tn.isArrowJSON(e)||ArrayBuffer.isView(e)||Tn.isIterable(e)||Tn.isIteratorResult(e)?Nx(e):Rx(e)}};kn.RecordBatchReader=_i;var ja=class extends _i{constructor(e){super(e);this._impl=e}[Symbol.iterator](){return this._impl[Symbol.iterator]()}async*[Symbol.asyncIterator](){yield*this[Symbol.iterator]()}};kn.RecordBatchStreamReader=ja;var qa=class extends _i{constructor(e){super(e);this._impl=e}[Symbol.iterator](){throw new Error("AsyncRecordBatchStreamReader is not Iterable")}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}};kn.AsyncRecordBatchStreamReader=qa;var _m=class extends ja{constructor(e){super(e);this._impl=e}};kn.RecordBatchFileReader=_m;var vj=class extends qa{constructor(e){super(e);this._impl=e}};kn.AsyncRecordBatchFileReader=vj;var Tj=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 _j.RecordBatch(this.schema,e.length,this._loadVectors(e,r,this.schema.fields))}_loadDictionaryBatch(e,r){let{id:n,isDelta:i,data:f}=e,{dictionaries:o,schema:s}=this,u=o.get(n);if(i||!u){let l=s.dictionaries.get(n);return u&&i?u.concat(Ix.Vector.new(this._loadVectors(f,r,[l])[0])):Ix.Vector.new(this._loadVectors(f,r,[l])[0])}return u}_loadVectors(e,r,n){return new Ax.VectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}},Pu=class extends Tj{constructor(e,r){super(r);this._reader=Tn.isArrowJSON(e)?new vn.JSONMessageReader(this._handle=e):new vn.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=Dx(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):Zo.ITERATOR_DONE}return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.return(e):Zo.ITERATOR_DONE}next(){if(this.closed)return Zo.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),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 _j._InternalEmptyPlaceholderRecordBatch(this.schema)}):this.return()}_readNextMessageAndValidate(e){return this._reader.readMessage(e)}},Hu=class extends Tj{constructor(e,r){super(r);this._reader=new vn.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=Dx(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):Zo.ITERATOR_DONE}async return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?await this.reset()._reader.return(e):Zo.ITERATOR_DONE}async next(){if(this.closed)return Zo.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),f=this._loadRecordBatch(n,i);return{done:!1,value:f}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=await 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 _j._InternalEmptyPlaceholderRecordBatch(this.schema)}):await this.return()}async _readNextMessageAndValidate(e){return await this._reader.readMessage(e)}},kj=class extends Pu{constructor(e,r){super(e instanceof Ru.RandomAccessFile?e:new Ru.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(qm.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),f=this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,f)}}return null}_readDictionaryBatch(e){let r=this._footer&&this._footer.getDictionaryBatch(e);if(r&&this._handle.seek(r.offset)){let n=this._reader.readMessage(qm.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),f=this._reader.readMessageBody(n.bodyLength),o=this._loadDictionaryBatch(i,f);this.dictionaries.set(i.id,o)}}}_readFooter(){let{_handle:e}=this,r=e.size-vn.magicAndPadding,n=e.readInt32(r),i=e.readAt(r-n,n);return xx.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}},Ox=class extends Hu{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 Ru.AsyncRandomAccessFile?e:new Ru.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(qm.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),f=await this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,f)}}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(qm.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),f=await this._reader.readMessageBody(n.bodyLength),o=this._loadDictionaryBatch(i,f);this.dictionaries.set(i.id,o)}}}async _readFooter(){let{_handle:e}=this;e._pending&&await e._pending;let r=e.size-vn.magicAndPadding,n=await e.readInt32(r),i=await e.readAt(r-n,n);return xx.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}},Fx=class extends Pu{constructor(e,r){super(e,r)}_loadVectors(e,r,n){return new Ax.JSONVectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}};function Dx(t,e){return e&&typeof e.autoDestroy=="boolean"?e.autoDestroy:t.autoDestroy}function*Nx(t){let e=_i.from(t);try{if(!e.open({autoDestroy:!1}).closed)do yield e;while(!e.reset().open().closed)}finally{e.cancel()}}async function*Rx(t){let e=await _i.from(t);try{if(!(await e.open({autoDestroy:!1})).closed)do yield e;while(!(await e.reset().open()).closed)}finally{await e.cancel()}}function $M(t){return new ja(new Fx(t))}function ez(t){let e=t.peek(vn.magicLength+7&~7);return e&&e.byteLength>=4?vn.checkForMagicArrowString(e)?new _m(new kj(t.read())):new ja(new Pu(t)):new ja(new Pu(function*(){}()))}async function tz(t){let e=await t.peek(vn.magicLength+7&~7);return e&&e.byteLength>=4?vn.checkForMagicArrowString(e)?new _m(new kj(await t.read())):new qa(new Hu(t)):new qa(new Hu(async function*(){}()))}async function rz(t){let{size:e}=await t.stat(),r=new Ru.AsyncRandomAccessFile(t,e);return e>=vn.magicX2AndPadding&&vn.checkForMagicArrowString(await r.readAt(0,vn.magicLength+7&~7))?new vj(new Ox(r)):new qa(new Hu(r))}});var Mx=k(vm=>{"use strict";Object.defineProperty(vm,"__esModule",{value:!0});vm.toDOMStream=void 0;var Px=Gt(),Hx=mr();function nz(t,e){if(Hx.isAsyncIterable(t))return fz(t,e);if(Hx.isIterable(t))return iz(t,e);throw new Error("toDOMStream() must be called with an Iterable or AsyncIterable")}vm.toDOMStream=nz;function iz(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,start(o){f(o,r||(r=t[Symbol.iterator]()))},pull(o){r?f(o,r):o.close()},cancel(){(r&&r.return&&r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});function f(o,s){let u,l=null,c=o.desiredSize||null;for(;!(l=s.next(n?c:null)).done;)if(ArrayBuffer.isView(l.value)&&(u=Px.toUint8Array(l.value))&&(c!=null&&n&&(c=c-u.byteLength+1),l.value=u),o.enqueue(l.value),c!=null&&--c<=0)return;o.close()}}function fz(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,async start(o){await f(o,r||(r=t[Symbol.asyncIterator]()))},async pull(o){r?await f(o,r):o.close()},async cancel(){(r&&r.return&&await r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});async function f(o,s){let u,l=null,c=o.desiredSize||null;for(;!(l=await s.next(n?c:null)).done;)if(ArrayBuffer.isView(l.value)&&(u=Px.toUint8Array(l.value))&&(c!=null&&n&&(c=c-u.byteLength+1),l.value=u),o.enqueue(l.value),c!=null&&--c<=0)return;o.close()}}});var Lx=k(_a=>{"use strict";Object.defineProperty(_a,"__esModule",{value:!0});_a.BuilderTransform=_a.builderThroughDOMStream=void 0;var oz=kd();function sz(t){return new Bj(t)}_a.builderThroughDOMStream=sz;var Bj=class{constructor(e){this._numChunks=0,this._finished=!1,this._bufferedSize=0;let{["readableStrategy"]:r,["writableStrategy"]:n,["queueingStrategy"]:i="count",...f}=e;this._controller=null,this._builder=oz.Builder.new(f),this._getSize=i!=="bytes"?zx:Ux;let{["highWaterMark"]:o=i==="bytes"?2**14:1e3}={...r},{["highWaterMark"]:s=i==="bytes"?2**14:1e3}={...n};this.readable=new ReadableStream({cancel:()=>{this._builder.clear()},pull:u=>{this._maybeFlush(this._builder,this._controller=u)},start:u=>{this._maybeFlush(this._builder,this._controller=u)}},{highWaterMark:o,size:i!=="bytes"?zx:Ux}),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:u=>this._writeValueAndReturnChunkSize(u)})}_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)}};_a.BuilderTransform=Bj;var zx=t=>t.length,Ux=t=>t.byteLength});var Vx=k(Tm=>{"use strict";Object.defineProperty(Tm,"__esModule",{value:!0});Tm.recordBatchReaderThroughDOMStream=void 0;var az=Hf(),lz=Nu();function uz(t,e){let r=new az.AsyncByteQueue,n=null,i=new ReadableStream({async cancel(){await r.close()},async start(s){await o(s,n||(n=await f()))},async pull(s){n?await o(s,n):s.close()}});return{writable:new WritableStream(r,{highWaterMark:2**14,...t}),readable:i};async function f(){return await(await lz.RecordBatchReader.from(r)).open(e)}async function o(s,u){let l=s.desiredSize,c=null;for(;!(c=await u.next()).done;)if(s.enqueue(c.value),l!=null&&--l<=0)return;s.close()}}Tm.recordBatchReaderThroughDOMStream=uz});var Cx=k(km=>{"use strict";Object.defineProperty(km,"__esModule",{value:!0});km.recordBatchWriterThroughDOMStream=void 0;var cz=Hf();function pz(t,e){let r=new this(t),n=new cz.AsyncByteStream(r),i=new ReadableStream({type:"bytes",async cancel(){await n.cancel()},async pull(o){await f(o)},async start(o){await f(o)}},{highWaterMark:2**14,...e});return{writable:new WritableStream(r,t),readable:i};async function f(o){let s=null,u=o.desiredSize;for(;s=await n.read(u||null);)if(o.enqueue(s),u!=null&&(u-=s.byteLength)<=0)return;o.close()}}km.recordBatchWriterThroughDOMStream=pz});var Oj=k(He=>{"use strict";Object.defineProperty(He,"__esModule",{value:!0});He.custom=He.or=He.and=He.col=He.lit=He.CustomPredicate=He.Not=He.GTeq=He.LTeq=He.Equals=He.Or=He.And=He.CombinationPredicate=He.ComparisonPredicate=He.Predicate=He.Col=He.Literal=He.Value=void 0;var dz=nm(),Xf=class{eq(e){return e instanceof Xf||(e=new ef(e)),new xj(this,e)}le(e){return e instanceof Xf||(e=new ef(e)),new Sj(this,e)}ge(e){return e instanceof Xf||(e=new ef(e)),new Ej(this,e)}lt(e){return new Ba(this.ge(e))}gt(e){return new Ba(this.le(e))}ne(e){return new Ba(this.eq(e))}};He.Value=Xf;var ef=class extends Xf{constructor(e){super();this.v=e}};He.Literal=ef;var Ij=class extends Xf{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)}};He.Col=Ij;var va=class{and(...e){return new Ta(this,...e)}or(...e){return new ka(this,...e)}not(){return new Ba(this)}};He.Predicate=va;var Mu=class extends va{constructor(e,r){super();this.left=e,this.right=r}bind(e){return this.left instanceof ef?this.right instanceof ef?this._bindLitLit(e,this.left,this.right):this._bindLitCol(e,this.left,this.right):this.right instanceof ef?this._bindColLit(e,this.left,this.right):this._bindColCol(e,this.left,this.right)}};He.ComparisonPredicate=Mu;var zu=class extends va{constructor(...e){super();this.children=e}};He.CombinationPredicate=zu;zu.prototype.children=Object.freeze([]);var Ta=class extends zu{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof Ta?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.every(f=>f(n,i))}};He.And=Ta;var ka=class extends zu{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof ka?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.some(f=>f(n,i))}};He.Or=ka;var xj=class extends Mu{_bindLitLit(e,r,n){let i=r.v==n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),f=n.bind(e);return(o,s)=>i(o,s)==f(o,s)}_bindColLit(e,r,n){let i=r.bind(e);if(r.vector instanceof dz.DictionaryVector){let f,o=r.vector;return o.dictionary!==this.lastDictionary?(f=o.reverseLookup(n.v),this.lastDictionary=o.dictionary,this.lastKey=f):f=this.lastKey,f===-1?()=>!1:s=>o.getKey(s)===f}else return(f,o)=>i(f,o)==n.v}_bindLitCol(e,r,n){return this._bindColLit(e,n,r)}};He.Equals=xj;var Sj=class extends Mu{_bindLitLit(e,r,n){let i=r.v<=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),f=n.bind(e);return(o,s)=>i(o,s)<=f(o,s)}_bindColLit(e,r,n){let i=r.bind(e);return(f,o)=>i(f,o)<=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(f,o)=>r.v<=i(f,o)}};He.LTeq=Sj;var Ej=class extends Mu{_bindLitLit(e,r,n){let i=r.v>=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),f=n.bind(e);return(o,s)=>i(o,s)>=f(o,s)}_bindColLit(e,r,n){let i=r.bind(e);return(f,o)=>i(f,o)>=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(f,o)=>r.v>=i(f,o)}};He.GTeq=Ej;var Ba=class extends va{constructor(e){super();this.child=e}bind(e){let r=this.child.bind(e);return(n,i)=>!r(n,i)}};He.Not=Ba;var Aj=class extends va{constructor(e,r){super();this.next=e,this.bind_=r}bind(e){return this.bind_(e),this.next}};He.CustomPredicate=Aj;function mz(t){return new ef(t)}He.lit=mz;function wz(t){return new Ij(t)}He.col=wz;function hz(...t){return new Ta(...t)}He.and=hz;function bz(...t){return new ka(...t)}He.or=bz;function gz(t,e){return new Aj(t,e)}He.custom=gz});var Zx=k($f=>{"use strict";Object.defineProperty($f,"__esModule",{value:!0});$f.FilteredDataFrame=$f.CountByResult=$f.DataFrame=void 0;var Ia=Bu(),Wx=sm(),Fj=er(),Kx=Oj(),yz=Qi(),Yx=$e();Ia.Table.prototype.countBy=function(t){return new Jo(this.chunks).countBy(t)};Ia.Table.prototype.scan=function(t,e){return new Jo(this.chunks).scan(t,e)};Ia.Table.prototype.scanReverse=function(t,e){return new Jo(this.chunks).scanReverse(t,e)};Ia.Table.prototype.filter=function(t){return new Jo(this.chunks).filter(t)};var Jo=class extends Ia.Table{filter(e){return new Uu(this.chunks,e)}scan(e,r){let n=this.chunks,i=n.length;for(let f=-1;++f<i;){let o=n[f];r&&r(o);for(let s=-1,u=o.length;++s<u;)e(s,o)}}scanReverse(e,r){let n=this.chunks,i=n.length;for(let f=i;--f>=0;){let o=n[f];r&&r(o);for(let s=o.length;--s>=0;)e(s,o)}}countBy(e){let r=this.chunks,n=r.length,i=typeof e=="string"?new Kx.Col(e):e;i.bind(r[n-1]);let f=i.vector;if(!Yx.DataType.isDictionary(f.type))throw new Error("countBy currently only supports dictionary-encoded columns");let o=Math.ceil(Math.log(f.length)/Math.log(256)),s=o==4?Uint32Array:o>=2?Uint16Array:Uint8Array,u=new s(f.dictionary.length);for(let l=-1;++l<n;){let c=r[l];i.bind(c);let w=i.vector.indices;for(let p=-1,g=c.length;++p<g;){let v=w.get(p);v!==null&&u[v]++}}return new Bm(f.dictionary,Wx.IntVector.from(u))}};$f.DataFrame=Jo;var Bm=class extends Ia.Table{constructor(e,r){let n=new Fj.Schema([new Fj.Field("values",e.type),new Fj.Field("counts",r.type)]);super(new yz.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}};$f.CountByResult=Bm;var Gx=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}},Uu=class extends Jo{constructor(e,r){super(e);this._predicate=r}scan(e,r){let n=this._chunks,i=n.length;for(let f=-1;++f<i;){let o=n[f],s=this._predicate.bind(o),u=!1;for(let l=-1,c=o.length;++l<c;)s(l,o)&&(r&&!u&&(r(o),u=!0),e(l,o))}}scanReverse(e,r){let n=this._chunks,i=n.length;for(let f=i;--f>=0;){let o=n[f],s=this._predicate.bind(o),u=!1;for(let l=o.length;--l>=0;)s(l,o)&&(r&&!u&&(r(o),u=!0),e(l,o))}}count(){let e=0,r=this._chunks,n=r.length;for(let i=-1;++i<n;){let f=r[i],o=this._predicate.bind(f);for(let s=-1,u=f.length;++s<u;)o(s,f)&&++e}return e}[Symbol.iterator](){return new Gx(this._chunks,this._predicate)}filter(e){return new Uu(this._chunks,this._predicate.and(e))}countBy(e){let r=this._chunks,n=r.length,i=typeof e=="string"?new Kx.Col(e):e;i.bind(r[n-1]);let f=i.vector;if(!Yx.DataType.isDictionary(f.type))throw new Error("countBy currently only supports dictionary-encoded columns");let o=Math.ceil(Math.log(f.length)/Math.log(256)),s=o==4?Uint32Array:o>=2?Uint16Array:Uint8Array,u=new s(f.dictionary.length);for(let l=-1;++l<n;){let c=r[l],w=this._predicate.bind(c);i.bind(c);let p=i.vector.indices;for(let g=-1,v=c.length;++g<v;){let H=p.get(g);H!==null&&w(g,c)&&u[H]++}}return new Bm(f.dictionary,Wx.IntVector.from(u))}};$f.FilteredDataFrame=Uu});var Xx=k(d=>{"use strict";Object.defineProperty(d,"__esModule",{value:!0});d.util=d.predicate=d.CountByResult=d.FilteredDataFrame=d.DataFrame=d.RecordBatch=d.Message=d.JSONMessageReader=d.AsyncMessageReader=d.MessageReader=d.RecordBatchJSONWriter=d.RecordBatchStreamWriter=d.RecordBatchFileWriter=d.RecordBatchWriter=d.AsyncRecordBatchStreamReader=d.AsyncRecordBatchFileReader=d.RecordBatchStreamReader=d.RecordBatchFileReader=d.RecordBatchReader=d.AsyncByteQueue=d.AsyncByteStream=d.ByteStream=d.Utf8Builder=d.SparseUnionBuilder=d.DenseUnionBuilder=d.UnionBuilder=d.TimeNanosecondBuilder=d.TimeMicrosecondBuilder=d.TimeMillisecondBuilder=d.TimeSecondBuilder=d.TimeBuilder=d.TimestampNanosecondBuilder=d.TimestampMicrosecondBuilder=d.TimestampMillisecondBuilder=d.TimestampSecondBuilder=d.TimestampBuilder=d.StructBuilder=d.NullBuilder=d.MapBuilder=d.ListBuilder=d.Uint64Builder=d.Uint32Builder=d.Uint16Builder=d.Uint8Builder=d.Int64Builder=d.Int32Builder=d.Int16Builder=d.Int8Builder=d.IntBuilder=d.IntervalYearMonthBuilder=d.IntervalDayTimeBuilder=d.IntervalBuilder=d.Float64Builder=d.Float32Builder=d.Float16Builder=d.FloatBuilder=d.FixedSizeListBuilder=d.FixedSizeBinaryBuilder=d.DictionaryBuilder=d.DecimalBuilder=d.DateMillisecondBuilder=d.DateDayBuilder=d.DateBuilder=d.BoolBuilder=d.BinaryBuilder=d.Builder=d.Utf8Vector=d.SparseUnionVector=d.DenseUnionVector=d.UnionVector=d.TimeNanosecondVector=d.TimeMicrosecondVector=d.TimeMillisecondVector=d.TimeSecondVector=d.TimeVector=d.TimestampNanosecondVector=d.TimestampMicrosecondVector=d.TimestampMillisecondVector=d.TimestampSecondVector=d.TimestampVector=d.StructVector=d.NullVector=d.MapVector=d.ListVector=d.Uint64Vector=d.Uint32Vector=d.Uint16Vector=d.Uint8Vector=d.Int64Vector=d.Int32Vector=d.Int16Vector=d.Int8Vector=d.IntVector=d.IntervalYearMonthVector=d.IntervalDayTimeVector=d.IntervalVector=d.Float64Vector=d.Float32Vector=d.Float16Vector=d.FloatVector=d.FixedSizeListVector=d.FixedSizeBinaryVector=d.DictionaryVector=d.DecimalVector=d.DateMillisecondVector=d.DateDayVector=d.DateVector=d.Chunked=d.BoolVector=d.BinaryVector=d.BaseVector=d.Vector=d.Field=d.Schema=d.Visitor=d.Column=d.Table=d.Map_=d.FixedSizeList=d.IntervalYearMonth=d.IntervalDayTime=d.Interval=d.Dictionary=d.SparseUnion=d.DenseUnion=d.Union=d.Struct=d.List=d.Decimal=d.TimeNanosecond=d.TimeMicrosecond=d.TimeMillisecond=d.TimeSecond=d.Time=d.TimestampNanosecond=d.TimestampMicrosecond=d.TimestampMillisecond=d.TimestampSecond=d.Timestamp=d.DateMillisecond=d.DateDay=d.Date_=d.FixedSizeBinary=d.Binary=d.Utf8=d.Float64=d.Float32=d.Float16=d.Float=d.Uint64=d.Uint32=d.Uint16=d.Uint8=d.Int64=d.Int32=d.Int16=d.Int8=d.Int=d.Bool=d.Null=d.DataType=d.Data=d.BufferType=d.Type=d.MessageHeader=d.MetadataVersion=d.IntervalUnit=d.UnionMode=d.Precision=d.TimeUnit=d.DateUnit=void 0;var xa=Bf();Object.defineProperty(d,"DateUnit",{enumerable:!0,get:function(){return xa.DateUnit}});Object.defineProperty(d,"TimeUnit",{enumerable:!0,get:function(){return xa.TimeUnit}});Object.defineProperty(d,"Precision",{enumerable:!0,get:function(){return xa.Precision}});Object.defineProperty(d,"UnionMode",{enumerable:!0,get:function(){return xa.UnionMode}});Object.defineProperty(d,"IntervalUnit",{enumerable:!0,get:function(){return xa.IntervalUnit}});Object.defineProperty(d,"MetadataVersion",{enumerable:!0,get:function(){return xa.MetadataVersion}});var jz=Mp();Object.defineProperty(d,"MessageHeader",{enumerable:!0,get:function(){return jz.MessageHeader}});var Jx=dt();Object.defineProperty(d,"Type",{enumerable:!0,get:function(){return Jx.Type}});Object.defineProperty(d,"BufferType",{enumerable:!0,get:function(){return Jx.BufferType}});var qz=Dn();Object.defineProperty(d,"Data",{enumerable:!0,get:function(){return qz.Data}});var Be=$e();Object.defineProperty(d,"DataType",{enumerable:!0,get:function(){return Be.DataType}});Object.defineProperty(d,"Null",{enumerable:!0,get:function(){return Be.Null}});Object.defineProperty(d,"Bool",{enumerable:!0,get:function(){return Be.Bool}});Object.defineProperty(d,"Int",{enumerable:!0,get:function(){return Be.Int}});Object.defineProperty(d,"Int8",{enumerable:!0,get:function(){return Be.Int8}});Object.defineProperty(d,"Int16",{enumerable:!0,get:function(){return Be.Int16}});Object.defineProperty(d,"Int32",{enumerable:!0,get:function(){return Be.Int32}});Object.defineProperty(d,"Int64",{enumerable:!0,get:function(){return Be.Int64}});Object.defineProperty(d,"Uint8",{enumerable:!0,get:function(){return Be.Uint8}});Object.defineProperty(d,"Uint16",{enumerable:!0,get:function(){return Be.Uint16}});Object.defineProperty(d,"Uint32",{enumerable:!0,get:function(){return Be.Uint32}});Object.defineProperty(d,"Uint64",{enumerable:!0,get:function(){return Be.Uint64}});Object.defineProperty(d,"Float",{enumerable:!0,get:function(){return Be.Float}});Object.defineProperty(d,"Float16",{enumerable:!0,get:function(){return Be.Float16}});Object.defineProperty(d,"Float32",{enumerable:!0,get:function(){return Be.Float32}});Object.defineProperty(d,"Float64",{enumerable:!0,get:function(){return Be.Float64}});Object.defineProperty(d,"Utf8",{enumerable:!0,get:function(){return Be.Utf8}});Object.defineProperty(d,"Binary",{enumerable:!0,get:function(){return Be.Binary}});Object.defineProperty(d,"FixedSizeBinary",{enumerable:!0,get:function(){return Be.FixedSizeBinary}});Object.defineProperty(d,"Date_",{enumerable:!0,get:function(){return Be.Date_}});Object.defineProperty(d,"DateDay",{enumerable:!0,get:function(){return Be.DateDay}});Object.defineProperty(d,"DateMillisecond",{enumerable:!0,get:function(){return Be.DateMillisecond}});Object.defineProperty(d,"Timestamp",{enumerable:!0,get:function(){return Be.Timestamp}});Object.defineProperty(d,"TimestampSecond",{enumerable:!0,get:function(){return Be.TimestampSecond}});Object.defineProperty(d,"TimestampMillisecond",{enumerable:!0,get:function(){return Be.TimestampMillisecond}});Object.defineProperty(d,"TimestampMicrosecond",{enumerable:!0,get:function(){return Be.TimestampMicrosecond}});Object.defineProperty(d,"TimestampNanosecond",{enumerable:!0,get:function(){return Be.TimestampNanosecond}});Object.defineProperty(d,"Time",{enumerable:!0,get:function(){return Be.Time}});Object.defineProperty(d,"TimeSecond",{enumerable:!0,get:function(){return Be.TimeSecond}});Object.defineProperty(d,"TimeMillisecond",{enumerable:!0,get:function(){return Be.TimeMillisecond}});Object.defineProperty(d,"TimeMicrosecond",{enumerable:!0,get:function(){return Be.TimeMicrosecond}});Object.defineProperty(d,"TimeNanosecond",{enumerable:!0,get:function(){return Be.TimeNanosecond}});Object.defineProperty(d,"Decimal",{enumerable:!0,get:function(){return Be.Decimal}});Object.defineProperty(d,"List",{enumerable:!0,get:function(){return Be.List}});Object.defineProperty(d,"Struct",{enumerable:!0,get:function(){return Be.Struct}});Object.defineProperty(d,"Union",{enumerable:!0,get:function(){return Be.Union}});Object.defineProperty(d,"DenseUnion",{enumerable:!0,get:function(){return Be.DenseUnion}});Object.defineProperty(d,"SparseUnion",{enumerable:!0,get:function(){return Be.SparseUnion}});Object.defineProperty(d,"Dictionary",{enumerable:!0,get:function(){return Be.Dictionary}});Object.defineProperty(d,"Interval",{enumerable:!0,get:function(){return Be.Interval}});Object.defineProperty(d,"IntervalDayTime",{enumerable:!0,get:function(){return Be.IntervalDayTime}});Object.defineProperty(d,"IntervalYearMonth",{enumerable:!0,get:function(){return Be.IntervalYearMonth}});Object.defineProperty(d,"FixedSizeList",{enumerable:!0,get:function(){return Be.FixedSizeList}});Object.defineProperty(d,"Map_",{enumerable:!0,get:function(){return Be.Map_}});var _z=Bu();Object.defineProperty(d,"Table",{enumerable:!0,get:function(){return _z.Table}});var vz=ia();Object.defineProperty(d,"Column",{enumerable:!0,get:function(){return vz.Column}});var Tz=sr();Object.defineProperty(d,"Visitor",{enumerable:!0,get:function(){return Tz.Visitor}});var Qx=er();Object.defineProperty(d,"Schema",{enumerable:!0,get:function(){return Qx.Schema}});Object.defineProperty(d,"Field",{enumerable:!0,get:function(){return Qx.Field}});var ve=gi();Object.defineProperty(d,"Vector",{enumerable:!0,get:function(){return ve.Vector}});Object.defineProperty(d,"BaseVector",{enumerable:!0,get:function(){return ve.BaseVector}});Object.defineProperty(d,"BinaryVector",{enumerable:!0,get:function(){return ve.BinaryVector}});Object.defineProperty(d,"BoolVector",{enumerable:!0,get:function(){return ve.BoolVector}});Object.defineProperty(d,"Chunked",{enumerable:!0,get:function(){return ve.Chunked}});Object.defineProperty(d,"DateVector",{enumerable:!0,get:function(){return ve.DateVector}});Object.defineProperty(d,"DateDayVector",{enumerable:!0,get:function(){return ve.DateDayVector}});Object.defineProperty(d,"DateMillisecondVector",{enumerable:!0,get:function(){return ve.DateMillisecondVector}});Object.defineProperty(d,"DecimalVector",{enumerable:!0,get:function(){return ve.DecimalVector}});Object.defineProperty(d,"DictionaryVector",{enumerable:!0,get:function(){return ve.DictionaryVector}});Object.defineProperty(d,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return ve.FixedSizeBinaryVector}});Object.defineProperty(d,"FixedSizeListVector",{enumerable:!0,get:function(){return ve.FixedSizeListVector}});Object.defineProperty(d,"FloatVector",{enumerable:!0,get:function(){return ve.FloatVector}});Object.defineProperty(d,"Float16Vector",{enumerable:!0,get:function(){return ve.Float16Vector}});Object.defineProperty(d,"Float32Vector",{enumerable:!0,get:function(){return ve.Float32Vector}});Object.defineProperty(d,"Float64Vector",{enumerable:!0,get:function(){return ve.Float64Vector}});Object.defineProperty(d,"IntervalVector",{enumerable:!0,get:function(){return ve.IntervalVector}});Object.defineProperty(d,"IntervalDayTimeVector",{enumerable:!0,get:function(){return ve.IntervalDayTimeVector}});Object.defineProperty(d,"IntervalYearMonthVector",{enumerable:!0,get:function(){return ve.IntervalYearMonthVector}});Object.defineProperty(d,"IntVector",{enumerable:!0,get:function(){return ve.IntVector}});Object.defineProperty(d,"Int8Vector",{enumerable:!0,get:function(){return ve.Int8Vector}});Object.defineProperty(d,"Int16Vector",{enumerable:!0,get:function(){return ve.Int16Vector}});Object.defineProperty(d,"Int32Vector",{enumerable:!0,get:function(){return ve.Int32Vector}});Object.defineProperty(d,"Int64Vector",{enumerable:!0,get:function(){return ve.Int64Vector}});Object.defineProperty(d,"Uint8Vector",{enumerable:!0,get:function(){return ve.Uint8Vector}});Object.defineProperty(d,"Uint16Vector",{enumerable:!0,get:function(){return ve.Uint16Vector}});Object.defineProperty(d,"Uint32Vector",{enumerable:!0,get:function(){return ve.Uint32Vector}});Object.defineProperty(d,"Uint64Vector",{enumerable:!0,get:function(){return ve.Uint64Vector}});Object.defineProperty(d,"ListVector",{enumerable:!0,get:function(){return ve.ListVector}});Object.defineProperty(d,"MapVector",{enumerable:!0,get:function(){return ve.MapVector}});Object.defineProperty(d,"NullVector",{enumerable:!0,get:function(){return ve.NullVector}});Object.defineProperty(d,"StructVector",{enumerable:!0,get:function(){return ve.StructVector}});Object.defineProperty(d,"TimestampVector",{enumerable:!0,get:function(){return ve.TimestampVector}});Object.defineProperty(d,"TimestampSecondVector",{enumerable:!0,get:function(){return ve.TimestampSecondVector}});Object.defineProperty(d,"TimestampMillisecondVector",{enumerable:!0,get:function(){return ve.TimestampMillisecondVector}});Object.defineProperty(d,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return ve.TimestampMicrosecondVector}});Object.defineProperty(d,"TimestampNanosecondVector",{enumerable:!0,get:function(){return ve.TimestampNanosecondVector}});Object.defineProperty(d,"TimeVector",{enumerable:!0,get:function(){return ve.TimeVector}});Object.defineProperty(d,"TimeSecondVector",{enumerable:!0,get:function(){return ve.TimeSecondVector}});Object.defineProperty(d,"TimeMillisecondVector",{enumerable:!0,get:function(){return ve.TimeMillisecondVector}});Object.defineProperty(d,"TimeMicrosecondVector",{enumerable:!0,get:function(){return ve.TimeMicrosecondVector}});Object.defineProperty(d,"TimeNanosecondVector",{enumerable:!0,get:function(){return ve.TimeNanosecondVector}});Object.defineProperty(d,"UnionVector",{enumerable:!0,get:function(){return ve.UnionVector}});Object.defineProperty(d,"DenseUnionVector",{enumerable:!0,get:function(){return ve.DenseUnionVector}});Object.defineProperty(d,"SparseUnionVector",{enumerable:!0,get:function(){return ve.SparseUnionVector}});Object.defineProperty(d,"Utf8Vector",{enumerable:!0,get:function(){return ve.Utf8Vector}});var Ie=kd();Object.defineProperty(d,"Builder",{enumerable:!0,get:function(){return Ie.Builder}});Object.defineProperty(d,"BinaryBuilder",{enumerable:!0,get:function(){return Ie.BinaryBuilder}});Object.defineProperty(d,"BoolBuilder",{enumerable:!0,get:function(){return Ie.BoolBuilder}});Object.defineProperty(d,"DateBuilder",{enumerable:!0,get:function(){return Ie.DateBuilder}});Object.defineProperty(d,"DateDayBuilder",{enumerable:!0,get:function(){return Ie.DateDayBuilder}});Object.defineProperty(d,"DateMillisecondBuilder",{enumerable:!0,get:function(){return Ie.DateMillisecondBuilder}});Object.defineProperty(d,"DecimalBuilder",{enumerable:!0,get:function(){return Ie.DecimalBuilder}});Object.defineProperty(d,"DictionaryBuilder",{enumerable:!0,get:function(){return Ie.DictionaryBuilder}});Object.defineProperty(d,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return Ie.FixedSizeBinaryBuilder}});Object.defineProperty(d,"FixedSizeListBuilder",{enumerable:!0,get:function(){return Ie.FixedSizeListBuilder}});Object.defineProperty(d,"FloatBuilder",{enumerable:!0,get:function(){return Ie.FloatBuilder}});Object.defineProperty(d,"Float16Builder",{enumerable:!0,get:function(){return Ie.Float16Builder}});Object.defineProperty(d,"Float32Builder",{enumerable:!0,get:function(){return Ie.Float32Builder}});Object.defineProperty(d,"Float64Builder",{enumerable:!0,get:function(){return Ie.Float64Builder}});Object.defineProperty(d,"IntervalBuilder",{enumerable:!0,get:function(){return Ie.IntervalBuilder}});Object.defineProperty(d,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return Ie.IntervalDayTimeBuilder}});Object.defineProperty(d,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return Ie.IntervalYearMonthBuilder}});Object.defineProperty(d,"IntBuilder",{enumerable:!0,get:function(){return Ie.IntBuilder}});Object.defineProperty(d,"Int8Builder",{enumerable:!0,get:function(){return Ie.Int8Builder}});Object.defineProperty(d,"Int16Builder",{enumerable:!0,get:function(){return Ie.Int16Builder}});Object.defineProperty(d,"Int32Builder",{enumerable:!0,get:function(){return Ie.Int32Builder}});Object.defineProperty(d,"Int64Builder",{enumerable:!0,get:function(){return Ie.Int64Builder}});Object.defineProperty(d,"Uint8Builder",{enumerable:!0,get:function(){return Ie.Uint8Builder}});Object.defineProperty(d,"Uint16Builder",{enumerable:!0,get:function(){return Ie.Uint16Builder}});Object.defineProperty(d,"Uint32Builder",{enumerable:!0,get:function(){return Ie.Uint32Builder}});Object.defineProperty(d,"Uint64Builder",{enumerable:!0,get:function(){return Ie.Uint64Builder}});Object.defineProperty(d,"ListBuilder",{enumerable:!0,get:function(){return Ie.ListBuilder}});Object.defineProperty(d,"MapBuilder",{enumerable:!0,get:function(){return Ie.MapBuilder}});Object.defineProperty(d,"NullBuilder",{enumerable:!0,get:function(){return Ie.NullBuilder}});Object.defineProperty(d,"StructBuilder",{enumerable:!0,get:function(){return Ie.StructBuilder}});Object.defineProperty(d,"TimestampBuilder",{enumerable:!0,get:function(){return Ie.TimestampBuilder}});Object.defineProperty(d,"TimestampSecondBuilder",{enumerable:!0,get:function(){return Ie.TimestampSecondBuilder}});Object.defineProperty(d,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return Ie.TimestampMillisecondBuilder}});Object.defineProperty(d,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return Ie.TimestampMicrosecondBuilder}});Object.defineProperty(d,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return Ie.TimestampNanosecondBuilder}});Object.defineProperty(d,"TimeBuilder",{enumerable:!0,get:function(){return Ie.TimeBuilder}});Object.defineProperty(d,"TimeSecondBuilder",{enumerable:!0,get:function(){return Ie.TimeSecondBuilder}});Object.defineProperty(d,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return Ie.TimeMillisecondBuilder}});Object.defineProperty(d,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return Ie.TimeMicrosecondBuilder}});Object.defineProperty(d,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return Ie.TimeNanosecondBuilder}});Object.defineProperty(d,"UnionBuilder",{enumerable:!0,get:function(){return Ie.UnionBuilder}});Object.defineProperty(d,"DenseUnionBuilder",{enumerable:!0,get:function(){return Ie.DenseUnionBuilder}});Object.defineProperty(d,"SparseUnionBuilder",{enumerable:!0,get:function(){return Ie.SparseUnionBuilder}});Object.defineProperty(d,"Utf8Builder",{enumerable:!0,get:function(){return Ie.Utf8Builder}});var Dj=Hf();Object.defineProperty(d,"ByteStream",{enumerable:!0,get:function(){return Dj.ByteStream}});Object.defineProperty(d,"AsyncByteStream",{enumerable:!0,get:function(){return Dj.AsyncByteStream}});Object.defineProperty(d,"AsyncByteQueue",{enumerable:!0,get:function(){return Dj.AsyncByteQueue}});var Lu=Nu();Object.defineProperty(d,"RecordBatchReader",{enumerable:!0,get:function(){return Lu.RecordBatchReader}});Object.defineProperty(d,"RecordBatchFileReader",{enumerable:!0,get:function(){return Lu.RecordBatchFileReader}});Object.defineProperty(d,"RecordBatchStreamReader",{enumerable:!0,get:function(){return Lu.RecordBatchStreamReader}});Object.defineProperty(d,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return Lu.AsyncRecordBatchFileReader}});Object.defineProperty(d,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return Lu.AsyncRecordBatchStreamReader}});var Im=Jd();Object.defineProperty(d,"RecordBatchWriter",{enumerable:!0,get:function(){return Im.RecordBatchWriter}});Object.defineProperty(d,"RecordBatchFileWriter",{enumerable:!0,get:function(){return Im.RecordBatchFileWriter}});Object.defineProperty(d,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return Im.RecordBatchStreamWriter}});Object.defineProperty(d,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return Im.RecordBatchJSONWriter}});var Nj=Md();Object.defineProperty(d,"MessageReader",{enumerable:!0,get:function(){return Nj.MessageReader}});Object.defineProperty(d,"AsyncMessageReader",{enumerable:!0,get:function(){return Nj.AsyncMessageReader}});Object.defineProperty(d,"JSONMessageReader",{enumerable:!0,get:function(){return Nj.JSONMessageReader}});var kz=Vo();Object.defineProperty(d,"Message",{enumerable:!0,get:function(){return kz.Message}});var Bz=Qi();Object.defineProperty(d,"RecordBatch",{enumerable:!0,get:function(){return Bz.RecordBatch}});var Rj=Zx();Object.defineProperty(d,"DataFrame",{enumerable:!0,get:function(){return Rj.DataFrame}});Object.defineProperty(d,"FilteredDataFrame",{enumerable:!0,get:function(){return Rj.FilteredDataFrame}});Object.defineProperty(d,"CountByResult",{enumerable:!0,get:function(){return Rj.CountByResult}});var Iz=lu(),xz=Kg(),Sz=si(),Ez=fu(),Az=Gt(),Oz=bu(),Fz=Oj();d.predicate=Fz;var Pj=ay();d.util={...Iz,...xz,...Sz,...Ez,...Az,...Oz,compareSchemas:Pj.compareSchemas,compareFields:Pj.compareFields,compareTypes:Pj.compareTypes}});var $x=k(m=>{"use strict";Object.defineProperty(m,"__esModule",{value:!0});m.Utf8Builder=m.SparseUnionBuilder=m.DenseUnionBuilder=m.UnionBuilder=m.TimeNanosecondBuilder=m.TimeMicrosecondBuilder=m.TimeMillisecondBuilder=m.TimeSecondBuilder=m.TimeBuilder=m.TimestampNanosecondBuilder=m.TimestampMicrosecondBuilder=m.TimestampMillisecondBuilder=m.TimestampSecondBuilder=m.TimestampBuilder=m.StructBuilder=m.NullBuilder=m.MapBuilder=m.ListBuilder=m.Uint64Builder=m.Uint32Builder=m.Uint16Builder=m.Uint8Builder=m.Int64Builder=m.Int32Builder=m.Int16Builder=m.Int8Builder=m.IntBuilder=m.IntervalYearMonthBuilder=m.IntervalDayTimeBuilder=m.IntervalBuilder=m.Float64Builder=m.Float32Builder=m.Float16Builder=m.FloatBuilder=m.FixedSizeListBuilder=m.FixedSizeBinaryBuilder=m.DictionaryBuilder=m.DecimalBuilder=m.DateMillisecondBuilder=m.DateDayBuilder=m.DateBuilder=m.BoolBuilder=m.BinaryBuilder=m.Builder=m.util=m.predicate=m.CountByResult=m.FilteredDataFrame=m.DataFrame=m.RecordBatch=m.Message=m.JSONMessageReader=m.AsyncMessageReader=m.MessageReader=m.RecordBatchJSONWriter=m.RecordBatchStreamWriter=m.RecordBatchFileWriter=m.RecordBatchWriter=m.AsyncRecordBatchStreamReader=m.AsyncRecordBatchFileReader=m.RecordBatchStreamReader=m.RecordBatchFileReader=m.RecordBatchReader=m.AsyncByteQueue=m.AsyncByteStream=m.ByteStream=m.Utf8Vector=m.SparseUnionVector=m.DenseUnionVector=m.UnionVector=m.TimeNanosecondVector=m.TimeMicrosecondVector=m.TimeMillisecondVector=m.TimeSecondVector=m.TimeVector=m.TimestampNanosecondVector=m.TimestampMicrosecondVector=m.TimestampMillisecondVector=m.TimestampSecondVector=m.TimestampVector=m.StructVector=m.NullVector=m.MapVector=m.ListVector=m.Uint64Vector=m.Uint32Vector=m.Uint16Vector=m.Uint8Vector=m.Int64Vector=m.Int32Vector=m.Int16Vector=m.Int8Vector=m.IntVector=m.IntervalYearMonthVector=m.IntervalDayTimeVector=m.IntervalVector=m.Float64Vector=m.Float32Vector=m.Float16Vector=m.FloatVector=m.FixedSizeListVector=m.FixedSizeBinaryVector=m.DictionaryVector=m.DecimalVector=m.DateMillisecondVector=m.DateDayVector=m.DateVector=m.Chunked=m.BoolVector=m.BinaryVector=m.BaseVector=m.Vector=m.Visitor=m.Field=m.Schema=m.Column=m.Table=m.Map_=m.FixedSizeList=m.IntervalYearMonth=m.IntervalDayTime=m.Interval=m.Dictionary=m.SparseUnion=m.DenseUnion=m.Union=m.Struct=m.List=m.Decimal=m.TimeNanosecond=m.TimeMicrosecond=m.TimeMillisecond=m.TimeSecond=m.Time=m.TimestampNanosecond=m.TimestampMicrosecond=m.TimestampMillisecond=m.TimestampSecond=m.Timestamp=m.DateMillisecond=m.DateDay=m.Date_=m.FixedSizeBinary=m.Binary=m.Utf8=m.Float64=m.Float32=m.Float16=m.Float=m.Uint64=m.Uint32=m.Uint16=m.Uint8=m.Int64=m.Int32=m.Int16=m.Int8=m.Int=m.Bool=m.Null=m.DataType=m.Data=m.BufferType=m.UnionMode=m.Type=m.TimeUnit=m.Precision=m.MetadataVersion=m.MessageHeader=m.IntervalUnit=m.DateUnit=void 0;var Dz=nu(),Nz=kd(),Hj=Nu(),Mj=Jd(),Rz=Mx(),Pz=Lx(),zj=Vx(),Uj=Cx();Dz.default.toDOMStream=Rz.toDOMStream;Nz.Builder.throughDOM=Pz.builderThroughDOMStream;Hj.RecordBatchReader.throughDOM=zj.recordBatchReaderThroughDOMStream;Hj.RecordBatchFileReader.throughDOM=zj.recordBatchReaderThroughDOMStream;Hj.RecordBatchStreamReader.throughDOM=zj.recordBatchReaderThroughDOMStream;Mj.RecordBatchWriter.throughDOM=Uj.recordBatchWriterThroughDOMStream;Mj.RecordBatchFileWriter.throughDOM=Uj.recordBatchWriterThroughDOMStream;Mj.RecordBatchStreamWriter.throughDOM=Uj.recordBatchWriterThroughDOMStream;var B=Xx();Object.defineProperty(m,"DateUnit",{enumerable:!0,get:function(){return B.DateUnit}});Object.defineProperty(m,"IntervalUnit",{enumerable:!0,get:function(){return B.IntervalUnit}});Object.defineProperty(m,"MessageHeader",{enumerable:!0,get:function(){return B.MessageHeader}});Object.defineProperty(m,"MetadataVersion",{enumerable:!0,get:function(){return B.MetadataVersion}});Object.defineProperty(m,"Precision",{enumerable:!0,get:function(){return B.Precision}});Object.defineProperty(m,"TimeUnit",{enumerable:!0,get:function(){return B.TimeUnit}});Object.defineProperty(m,"Type",{enumerable:!0,get:function(){return B.Type}});Object.defineProperty(m,"UnionMode",{enumerable:!0,get:function(){return B.UnionMode}});Object.defineProperty(m,"BufferType",{enumerable:!0,get:function(){return B.BufferType}});Object.defineProperty(m,"Data",{enumerable:!0,get:function(){return B.Data}});Object.defineProperty(m,"DataType",{enumerable:!0,get:function(){return B.DataType}});Object.defineProperty(m,"Null",{enumerable:!0,get:function(){return B.Null}});Object.defineProperty(m,"Bool",{enumerable:!0,get:function(){return B.Bool}});Object.defineProperty(m,"Int",{enumerable:!0,get:function(){return B.Int}});Object.defineProperty(m,"Int8",{enumerable:!0,get:function(){return B.Int8}});Object.defineProperty(m,"Int16",{enumerable:!0,get:function(){return B.Int16}});Object.defineProperty(m,"Int32",{enumerable:!0,get:function(){return B.Int32}});Object.defineProperty(m,"Int64",{enumerable:!0,get:function(){return B.Int64}});Object.defineProperty(m,"Uint8",{enumerable:!0,get:function(){return B.Uint8}});Object.defineProperty(m,"Uint16",{enumerable:!0,get:function(){return B.Uint16}});Object.defineProperty(m,"Uint32",{enumerable:!0,get:function(){return B.Uint32}});Object.defineProperty(m,"Uint64",{enumerable:!0,get:function(){return B.Uint64}});Object.defineProperty(m,"Float",{enumerable:!0,get:function(){return B.Float}});Object.defineProperty(m,"Float16",{enumerable:!0,get:function(){return B.Float16}});Object.defineProperty(m,"Float32",{enumerable:!0,get:function(){return B.Float32}});Object.defineProperty(m,"Float64",{enumerable:!0,get:function(){return B.Float64}});Object.defineProperty(m,"Utf8",{enumerable:!0,get:function(){return B.Utf8}});Object.defineProperty(m,"Binary",{enumerable:!0,get:function(){return B.Binary}});Object.defineProperty(m,"FixedSizeBinary",{enumerable:!0,get:function(){return B.FixedSizeBinary}});Object.defineProperty(m,"Date_",{enumerable:!0,get:function(){return B.Date_}});Object.defineProperty(m,"DateDay",{enumerable:!0,get:function(){return B.DateDay}});Object.defineProperty(m,"DateMillisecond",{enumerable:!0,get:function(){return B.DateMillisecond}});Object.defineProperty(m,"Timestamp",{enumerable:!0,get:function(){return B.Timestamp}});Object.defineProperty(m,"TimestampSecond",{enumerable:!0,get:function(){return B.TimestampSecond}});Object.defineProperty(m,"TimestampMillisecond",{enumerable:!0,get:function(){return B.TimestampMillisecond}});Object.defineProperty(m,"TimestampMicrosecond",{enumerable:!0,get:function(){return B.TimestampMicrosecond}});Object.defineProperty(m,"TimestampNanosecond",{enumerable:!0,get:function(){return B.TimestampNanosecond}});Object.defineProperty(m,"Time",{enumerable:!0,get:function(){return B.Time}});Object.defineProperty(m,"TimeSecond",{enumerable:!0,get:function(){return B.TimeSecond}});Object.defineProperty(m,"TimeMillisecond",{enumerable:!0,get:function(){return B.TimeMillisecond}});Object.defineProperty(m,"TimeMicrosecond",{enumerable:!0,get:function(){return B.TimeMicrosecond}});Object.defineProperty(m,"TimeNanosecond",{enumerable:!0,get:function(){return B.TimeNanosecond}});Object.defineProperty(m,"Decimal",{enumerable:!0,get:function(){return B.Decimal}});Object.defineProperty(m,"List",{enumerable:!0,get:function(){return B.List}});Object.defineProperty(m,"Struct",{enumerable:!0,get:function(){return B.Struct}});Object.defineProperty(m,"Union",{enumerable:!0,get:function(){return B.Union}});Object.defineProperty(m,"DenseUnion",{enumerable:!0,get:function(){return B.DenseUnion}});Object.defineProperty(m,"SparseUnion",{enumerable:!0,get:function(){return B.SparseUnion}});Object.defineProperty(m,"Dictionary",{enumerable:!0,get:function(){return B.Dictionary}});Object.defineProperty(m,"Interval",{enumerable:!0,get:function(){return B.Interval}});Object.defineProperty(m,"IntervalDayTime",{enumerable:!0,get:function(){return B.IntervalDayTime}});Object.defineProperty(m,"IntervalYearMonth",{enumerable:!0,get:function(){return B.IntervalYearMonth}});Object.defineProperty(m,"FixedSizeList",{enumerable:!0,get:function(){return B.FixedSizeList}});Object.defineProperty(m,"Map_",{enumerable:!0,get:function(){return B.Map_}});Object.defineProperty(m,"Table",{enumerable:!0,get:function(){return B.Table}});Object.defineProperty(m,"Column",{enumerable:!0,get:function(){return B.Column}});Object.defineProperty(m,"Schema",{enumerable:!0,get:function(){return B.Schema}});Object.defineProperty(m,"Field",{enumerable:!0,get:function(){return B.Field}});Object.defineProperty(m,"Visitor",{enumerable:!0,get:function(){return B.Visitor}});Object.defineProperty(m,"Vector",{enumerable:!0,get:function(){return B.Vector}});Object.defineProperty(m,"BaseVector",{enumerable:!0,get:function(){return B.BaseVector}});Object.defineProperty(m,"BinaryVector",{enumerable:!0,get:function(){return B.BinaryVector}});Object.defineProperty(m,"BoolVector",{enumerable:!0,get:function(){return B.BoolVector}});Object.defineProperty(m,"Chunked",{enumerable:!0,get:function(){return B.Chunked}});Object.defineProperty(m,"DateVector",{enumerable:!0,get:function(){return B.DateVector}});Object.defineProperty(m,"DateDayVector",{enumerable:!0,get:function(){return B.DateDayVector}});Object.defineProperty(m,"DateMillisecondVector",{enumerable:!0,get:function(){return B.DateMillisecondVector}});Object.defineProperty(m,"DecimalVector",{enumerable:!0,get:function(){return B.DecimalVector}});Object.defineProperty(m,"DictionaryVector",{enumerable:!0,get:function(){return B.DictionaryVector}});Object.defineProperty(m,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return B.FixedSizeBinaryVector}});Object.defineProperty(m,"FixedSizeListVector",{enumerable:!0,get:function(){return B.FixedSizeListVector}});Object.defineProperty(m,"FloatVector",{enumerable:!0,get:function(){return B.FloatVector}});Object.defineProperty(m,"Float16Vector",{enumerable:!0,get:function(){return B.Float16Vector}});Object.defineProperty(m,"Float32Vector",{enumerable:!0,get:function(){return B.Float32Vector}});Object.defineProperty(m,"Float64Vector",{enumerable:!0,get:function(){return B.Float64Vector}});Object.defineProperty(m,"IntervalVector",{enumerable:!0,get:function(){return B.IntervalVector}});Object.defineProperty(m,"IntervalDayTimeVector",{enumerable:!0,get:function(){return B.IntervalDayTimeVector}});Object.defineProperty(m,"IntervalYearMonthVector",{enumerable:!0,get:function(){return B.IntervalYearMonthVector}});Object.defineProperty(m,"IntVector",{enumerable:!0,get:function(){return B.IntVector}});Object.defineProperty(m,"Int8Vector",{enumerable:!0,get:function(){return B.Int8Vector}});Object.defineProperty(m,"Int16Vector",{enumerable:!0,get:function(){return B.Int16Vector}});Object.defineProperty(m,"Int32Vector",{enumerable:!0,get:function(){return B.Int32Vector}});Object.defineProperty(m,"Int64Vector",{enumerable:!0,get:function(){return B.Int64Vector}});Object.defineProperty(m,"Uint8Vector",{enumerable:!0,get:function(){return B.Uint8Vector}});Object.defineProperty(m,"Uint16Vector",{enumerable:!0,get:function(){return B.Uint16Vector}});Object.defineProperty(m,"Uint32Vector",{enumerable:!0,get:function(){return B.Uint32Vector}});Object.defineProperty(m,"Uint64Vector",{enumerable:!0,get:function(){return B.Uint64Vector}});Object.defineProperty(m,"ListVector",{enumerable:!0,get:function(){return B.ListVector}});Object.defineProperty(m,"MapVector",{enumerable:!0,get:function(){return B.MapVector}});Object.defineProperty(m,"NullVector",{enumerable:!0,get:function(){return B.NullVector}});Object.defineProperty(m,"StructVector",{enumerable:!0,get:function(){return B.StructVector}});Object.defineProperty(m,"TimestampVector",{enumerable:!0,get:function(){return B.TimestampVector}});Object.defineProperty(m,"TimestampSecondVector",{enumerable:!0,get:function(){return B.TimestampSecondVector}});Object.defineProperty(m,"TimestampMillisecondVector",{enumerable:!0,get:function(){return B.TimestampMillisecondVector}});Object.defineProperty(m,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return B.TimestampMicrosecondVector}});Object.defineProperty(m,"TimestampNanosecondVector",{enumerable:!0,get:function(){return B.TimestampNanosecondVector}});Object.defineProperty(m,"TimeVector",{enumerable:!0,get:function(){return B.TimeVector}});Object.defineProperty(m,"TimeSecondVector",{enumerable:!0,get:function(){return B.TimeSecondVector}});Object.defineProperty(m,"TimeMillisecondVector",{enumerable:!0,get:function(){return B.TimeMillisecondVector}});Object.defineProperty(m,"TimeMicrosecondVector",{enumerable:!0,get:function(){return B.TimeMicrosecondVector}});Object.defineProperty(m,"TimeNanosecondVector",{enumerable:!0,get:function(){return B.TimeNanosecondVector}});Object.defineProperty(m,"UnionVector",{enumerable:!0,get:function(){return B.UnionVector}});Object.defineProperty(m,"DenseUnionVector",{enumerable:!0,get:function(){return B.DenseUnionVector}});Object.defineProperty(m,"SparseUnionVector",{enumerable:!0,get:function(){return B.SparseUnionVector}});Object.defineProperty(m,"Utf8Vector",{enumerable:!0,get:function(){return B.Utf8Vector}});Object.defineProperty(m,"ByteStream",{enumerable:!0,get:function(){return B.ByteStream}});Object.defineProperty(m,"AsyncByteStream",{enumerable:!0,get:function(){return B.AsyncByteStream}});Object.defineProperty(m,"AsyncByteQueue",{enumerable:!0,get:function(){return B.AsyncByteQueue}});Object.defineProperty(m,"RecordBatchReader",{enumerable:!0,get:function(){return B.RecordBatchReader}});Object.defineProperty(m,"RecordBatchFileReader",{enumerable:!0,get:function(){return B.RecordBatchFileReader}});Object.defineProperty(m,"RecordBatchStreamReader",{enumerable:!0,get:function(){return B.RecordBatchStreamReader}});Object.defineProperty(m,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return B.AsyncRecordBatchFileReader}});Object.defineProperty(m,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return B.AsyncRecordBatchStreamReader}});Object.defineProperty(m,"RecordBatchWriter",{enumerable:!0,get:function(){return B.RecordBatchWriter}});Object.defineProperty(m,"RecordBatchFileWriter",{enumerable:!0,get:function(){return B.RecordBatchFileWriter}});Object.defineProperty(m,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return B.RecordBatchStreamWriter}});Object.defineProperty(m,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return B.RecordBatchJSONWriter}});Object.defineProperty(m,"MessageReader",{enumerable:!0,get:function(){return B.MessageReader}});Object.defineProperty(m,"AsyncMessageReader",{enumerable:!0,get:function(){return B.AsyncMessageReader}});Object.defineProperty(m,"JSONMessageReader",{enumerable:!0,get:function(){return B.JSONMessageReader}});Object.defineProperty(m,"Message",{enumerable:!0,get:function(){return B.Message}});Object.defineProperty(m,"RecordBatch",{enumerable:!0,get:function(){return B.RecordBatch}});Object.defineProperty(m,"DataFrame",{enumerable:!0,get:function(){return B.DataFrame}});Object.defineProperty(m,"FilteredDataFrame",{enumerable:!0,get:function(){return B.FilteredDataFrame}});Object.defineProperty(m,"CountByResult",{enumerable:!0,get:function(){return B.CountByResult}});Object.defineProperty(m,"predicate",{enumerable:!0,get:function(){return B.predicate}});Object.defineProperty(m,"util",{enumerable:!0,get:function(){return B.util}});Object.defineProperty(m,"Builder",{enumerable:!0,get:function(){return B.Builder}});Object.defineProperty(m,"BinaryBuilder",{enumerable:!0,get:function(){return B.BinaryBuilder}});Object.defineProperty(m,"BoolBuilder",{enumerable:!0,get:function(){return B.BoolBuilder}});Object.defineProperty(m,"DateBuilder",{enumerable:!0,get:function(){return B.DateBuilder}});Object.defineProperty(m,"DateDayBuilder",{enumerable:!0,get:function(){return B.DateDayBuilder}});Object.defineProperty(m,"DateMillisecondBuilder",{enumerable:!0,get:function(){return B.DateMillisecondBuilder}});Object.defineProperty(m,"DecimalBuilder",{enumerable:!0,get:function(){return B.DecimalBuilder}});Object.defineProperty(m,"DictionaryBuilder",{enumerable:!0,get:function(){return B.DictionaryBuilder}});Object.defineProperty(m,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return B.FixedSizeBinaryBuilder}});Object.defineProperty(m,"FixedSizeListBuilder",{enumerable:!0,get:function(){return B.FixedSizeListBuilder}});Object.defineProperty(m,"FloatBuilder",{enumerable:!0,get:function(){return B.FloatBuilder}});Object.defineProperty(m,"Float16Builder",{enumerable:!0,get:function(){return B.Float16Builder}});Object.defineProperty(m,"Float32Builder",{enumerable:!0,get:function(){return B.Float32Builder}});Object.defineProperty(m,"Float64Builder",{enumerable:!0,get:function(){return B.Float64Builder}});Object.defineProperty(m,"IntervalBuilder",{enumerable:!0,get:function(){return B.IntervalBuilder}});Object.defineProperty(m,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return B.IntervalDayTimeBuilder}});Object.defineProperty(m,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return B.IntervalYearMonthBuilder}});Object.defineProperty(m,"IntBuilder",{enumerable:!0,get:function(){return B.IntBuilder}});Object.defineProperty(m,"Int8Builder",{enumerable:!0,get:function(){return B.Int8Builder}});Object.defineProperty(m,"Int16Builder",{enumerable:!0,get:function(){return B.Int16Builder}});Object.defineProperty(m,"Int32Builder",{enumerable:!0,get:function(){return B.Int32Builder}});Object.defineProperty(m,"Int64Builder",{enumerable:!0,get:function(){return B.Int64Builder}});Object.defineProperty(m,"Uint8Builder",{enumerable:!0,get:function(){return B.Uint8Builder}});Object.defineProperty(m,"Uint16Builder",{enumerable:!0,get:function(){return B.Uint16Builder}});Object.defineProperty(m,"Uint32Builder",{enumerable:!0,get:function(){return B.Uint32Builder}});Object.defineProperty(m,"Uint64Builder",{enumerable:!0,get:function(){return B.Uint64Builder}});Object.defineProperty(m,"ListBuilder",{enumerable:!0,get:function(){return B.ListBuilder}});Object.defineProperty(m,"MapBuilder",{enumerable:!0,get:function(){return B.MapBuilder}});Object.defineProperty(m,"NullBuilder",{enumerable:!0,get:function(){return B.NullBuilder}});Object.defineProperty(m,"StructBuilder",{enumerable:!0,get:function(){return B.StructBuilder}});Object.defineProperty(m,"TimestampBuilder",{enumerable:!0,get:function(){return B.TimestampBuilder}});Object.defineProperty(m,"TimestampSecondBuilder",{enumerable:!0,get:function(){return B.TimestampSecondBuilder}});Object.defineProperty(m,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return B.TimestampMillisecondBuilder}});Object.defineProperty(m,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return B.TimestampMicrosecondBuilder}});Object.defineProperty(m,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return B.TimestampNanosecondBuilder}});Object.defineProperty(m,"TimeBuilder",{enumerable:!0,get:function(){return B.TimeBuilder}});Object.defineProperty(m,"TimeSecondBuilder",{enumerable:!0,get:function(){return B.TimeSecondBuilder}});Object.defineProperty(m,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return B.TimeMillisecondBuilder}});Object.defineProperty(m,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return B.TimeMicrosecondBuilder}});Object.defineProperty(m,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return B.TimeNanosecondBuilder}});Object.defineProperty(m,"UnionBuilder",{enumerable:!0,get:function(){return B.UnionBuilder}});Object.defineProperty(m,"DenseUnionBuilder",{enumerable:!0,get:function(){return B.DenseUnionBuilder}});Object.defineProperty(m,"SparseUnionBuilder",{enumerable:!0,get:function(){return B.SparseUnionBuilder}});Object.defineProperty(m,"Utf8Builder",{enumerable:!0,get:function(){return B.Utf8Builder}})});var Vn={self:typeof self!="undefined"&&self,window:typeof window!="undefined"&&window,global:typeof global!="undefined"&&global,document:typeof document!="undefined"&&document},kS=Vn.self||Vn.window||Vn.global||{},BS=Vn.window||Vn.self||Vn.global||{},IS=Vn.global||Vn.self||Vn.window||{},xS=Vn.document||{};var xn=Boolean(typeof process!="object"||String(process)!=="[object process]"||process.browser);var Gj=typeof process!="undefined"&&process.version&&/v([0-9]*)/.exec(process.version),SS=Gj&&parseFloat(Gj[1])||0;function Rm(t,e=!0,r){let n=r||new Set;if(t){if(Zj(t))n.add(t);else if(Zj(t.buffer))n.add(t.buffer);else if(!ArrayBuffer.isView(t)){if(e&&typeof t=="object")for(let i in t)Rm(t[i],e,n)}}return r===void 0?Array.from(n):[]}function Zj(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 io(){let parentPort;try{eval("globalThis.parentPort = require('worker_threads').parentPort"),parentPort=globalThis.parentPort}catch{}return parentPort}var Pm=new Map,Gr=class{static inWorkerThread(){return typeof self!="undefined"||Boolean(io())}static set onmessage(e){function r(i){let f=io(),{type:o,payload:s}=f?i:i.data;e(o,s)}let n=io();n?(n.on("message",r),n.on("exit",()=>console.debug("Node worker closing"))):globalThis.onmessage=r}static addEventListener(e){let r=Pm.get(e);r||(r=i=>{if(!ES(i))return;let f=io(),{type:o,payload:s}=f?i:i.data;e(o,s)}),io()?console.error("not implemented"):globalThis.addEventListener("message",r)}static removeEventListener(e){let r=Pm.get(e);Pm.delete(e),io()?console.error("not implemented"):globalThis.removeEventListener("message",r)}static postMessage(e,r){let n={source:"loaders.gl",type:e,payload:r},i=Rm(r),f=io();f?f.postMessage(n,i):globalThis.postMessage(n,i)}};function ES(t){let{type:e,data:r}=t;return e==="message"&&r&&typeof r.source=="string"&&r.source.startsWith("loaders.gl")}var AS=0;function Hm(t){!Gr.inWorkerThread()||(Gr.onmessage=async(e,r)=>{switch(e){case"process":try{let{input:n,options:i={},context:f={}}=r,o=await FS({loader:t,arrayBuffer:n,options:i,context:{...f,parse:OS}});Gr.postMessage("done",{result:o})}catch(n){let i=n instanceof Error?n.message:"";Gr.postMessage("error",{error:i})}break;default:}})}function OS(t,e){return new Promise((r,n)=>{let i=AS++,f=(s,u)=>{if(u.id===i)switch(s){case"done":Gr.removeEventListener(f),r(u.result);break;case"error":Gr.removeEventListener(f),n(u.error);break;default:}};Gr.addEventListener(f);let o={id:i,input:t,options:e};Gr.postMessage("process",o)})}async function FS({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 Qu(t){return t&&typeof t=="object"&&t.isBuffer}function Xu(t){return Mm.toBuffer?Mm.toBuffer(t):t}function zm(t){return Qu(t)?new Uint8Array(t.buffer,t.byteOffset,t.length).slice().buffer:t}function Ur(t){if(Qu(t))return zm(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 Um(...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 Lm(t){let e=[];for await(let r of t)e.push(r);return Um(...e)}var DS="3.3.0-alpha.13",NS={parquet:{type:"arrow-table",wasmUrl:"https://unpkg.com/parquet-wasm@0.3.1/esm2/arrow1_bg.wasm"}},Jj={name:"Apache Parquet",id:"parquet-wasm",module:"parquet",version:DS,worker:!1,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:NS};var RS="3.3.0-alpha.13",PS={parquet:{type:"object-row-table",url:void 0}},Qj={name:"Apache Parquet",id:"parquet",module:"parquet",version:RS,worker:!0,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:PS};var rs="PAR1",Xj="PARE",$j=1,Pa="INT32",Vm="RLE";var ns;(function(u){u[u.BOOLEAN=0]="BOOLEAN",u[u.INT32=1]="INT32",u[u.INT64=2]="INT64",u[u.INT96=3]="INT96",u[u.FLOAT=4]="FLOAT",u[u.DOUBLE=5]="DOUBLE",u[u.BYTE_ARRAY=6]="BYTE_ARRAY",u[u.FIXED_LEN_BYTE_ARRAY=7]="FIXED_LEN_BYTE_ARRAY"})(ns||(ns={}));var $u;(function(F){F[F.UTF8=0]="UTF8",F[F.MAP=1]="MAP",F[F.MAP_KEY_VALUE=2]="MAP_KEY_VALUE",F[F.LIST=3]="LIST",F[F.ENUM=4]="ENUM",F[F.DECIMAL=5]="DECIMAL",F[F.DATE=6]="DATE",F[F.TIME_MILLIS=7]="TIME_MILLIS",F[F.TIME_MICROS=8]="TIME_MICROS",F[F.TIMESTAMP_MILLIS=9]="TIMESTAMP_MILLIS",F[F.TIMESTAMP_MICROS=10]="TIMESTAMP_MICROS",F[F.UINT_8=11]="UINT_8",F[F.UINT_16=12]="UINT_16",F[F.UINT_32=13]="UINT_32",F[F.UINT_64=14]="UINT_64",F[F.INT_8=15]="INT_8",F[F.INT_16=16]="INT_16",F[F.INT_32=17]="INT_32",F[F.INT_64=18]="INT_64",F[F.JSON=19]="JSON",F[F.BSON=20]="BSON",F[F.INTERVAL=21]="INTERVAL"})($u||($u={}));var ec;(function(n){n[n.REQUIRED=0]="REQUIRED",n[n.OPTIONAL=1]="OPTIONAL",n[n.REPEATED=2]="REPEATED"})(ec||(ec={}));var fo;(function(u){u[u.PLAIN=0]="PLAIN",u[u.PLAIN_DICTIONARY=2]="PLAIN_DICTIONARY",u[u.RLE=3]="RLE",u[u.BIT_PACKED=4]="BIT_PACKED",u[u.DELTA_BINARY_PACKED=5]="DELTA_BINARY_PACKED",u[u.DELTA_LENGTH_BYTE_ARRAY=6]="DELTA_LENGTH_BYTE_ARRAY",u[u.DELTA_BYTE_ARRAY=7]="DELTA_BYTE_ARRAY",u[u.RLE_DICTIONARY=8]="RLE_DICTIONARY"})(fo||(fo={}));var tc;(function(u){u[u.UNCOMPRESSED=0]="UNCOMPRESSED",u[u.SNAPPY=1]="SNAPPY",u[u.GZIP=2]="GZIP",u[u.LZO=3]="LZO",u[u.BROTLI=4]="BROTLI",u[u.LZ4=5]="LZ4",u[u.ZSTD=6]="ZSTD",u[u.LZ4_RAW=7]="LZ4_RAW"})(tc||(tc={}));var rc;(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"})(rc||(rc={}));var ww=de(Zr()),xr=de(Ve()),Ai=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",xr.Thrift.Type.STRING,1),e.writeBinary(this.max),e.writeFieldEnd()),this.min!=null&&(e.writeFieldBegin("min",xr.Thrift.Type.STRING,2),e.writeBinary(this.min),e.writeFieldEnd()),this.null_count!=null&&(e.writeFieldBegin("null_count",xr.Thrift.Type.I64,3),e.writeI64(this.null_count),e.writeFieldEnd()),this.distinct_count!=null&&(e.writeFieldBegin("distinct_count",xr.Thrift.Type.I64,4),e.writeI64(this.distinct_count),e.writeFieldEnd()),this.max_value!=null&&(e.writeFieldBegin("max_value",xr.Thrift.Type.STRING,5),e.writeBinary(this.max_value),e.writeFieldEnd()),this.min_value!=null&&(e.writeFieldBegin("min_value",xr.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===xr.Thrift.Type.STOP)break;switch(f){case 1:if(i===xr.Thrift.Type.STRING){let o=e.readBinary();r.max=o}else e.skip(i);break;case 2:if(i===xr.Thrift.Type.STRING){let o=e.readBinary();r.min=o}else e.skip(i);break;case 3:if(i===xr.Thrift.Type.I64){let o=e.readI64();r.null_count=o}else e.skip(i);break;case 4:if(i===xr.Thrift.Type.I64){let o=e.readI64();r.distinct_count=o}else e.skip(i);break;case 5:if(i===xr.Thrift.Type.STRING){let o=e.readBinary();r.max_value=o}else e.skip(i);break;case 6:if(i===xr.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 Ai(r)}};var aq=de(Ve()),Ca=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===aq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ca}};var lq=de(Ve()),Wa=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===lq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Wa}};var uq=de(Ve()),Ka=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===uq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ka}};var cq=de(Ve()),Ya=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===cq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ya}};var pq=de(Ve()),Ga=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===pq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ga}};var dq=de(Ve()),Za=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===dq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Za}};var mq=de(Ve()),Ja=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===mq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ja}};var Jr=de(Ve()),Qa=class{constructor(e){if(e!=null&&e.scale!=null)this.scale=e.scale;else throw new Jr.Thrift.TProtocolException(Jr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[scale] is unset!");if(e!=null&&e.precision!=null)this.precision=e.precision;else throw new Jr.Thrift.TProtocolException(Jr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[precision] is unset!")}write(e){e.writeStructBegin("DecimalType"),this.scale!=null&&(e.writeFieldBegin("scale",Jr.Thrift.Type.I32,1),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",Jr.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===Jr.Thrift.Type.STOP)break;switch(f){case 1:if(i===Jr.Thrift.Type.I32){let o=e.readI32();r.scale=o}else e.skip(i);break;case 2:if(i===Jr.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 Qa(r);throw new Jr.Thrift.TProtocolException(Jr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DecimalType from input")}};var wq=de(Ve()),Xa=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===wq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Xa}};var hq=de(Ve()),$a=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===hq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new $a}};var Qr=de(Ve());var cr=de(Ve());var Kn=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 cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromMILLIS(e){return new Kn({MILLIS:e})}static fromMICROS(e){return new Kn({MICROS:e})}write(e){e.writeStructBegin("TimeUnit"),this.MILLIS!=null&&(e.writeFieldBegin("MILLIS",cr.Thrift.Type.STRUCT,1),this.MILLIS.write(e),e.writeFieldEnd()),this.MICROS!=null&&(e.writeFieldBegin("MICROS",cr.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===cr.Thrift.Type.STOP)break;switch(o){case 1:if(f===cr.Thrift.Type.STRUCT){r++;let s=Xa.read(e);n=Kn.fromMILLIS(s)}else e.skip(f);break;case 2:if(f===cr.Thrift.Type.STRUCT){r++;let s=$a.read(e);n=Kn.fromMICROS(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var el=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new Qr.Thrift.TProtocolException(Qr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new Qr.Thrift.TProtocolException(Qr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimestampType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",Qr.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",Qr.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===Qr.Thrift.Type.STOP)break;switch(f){case 1:if(i===Qr.Thrift.Type.BOOL){let o=e.readBool();r.isAdjustedToUTC=o}else e.skip(i);break;case 2:if(i===Qr.Thrift.Type.STRUCT){let o=Kn.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 el(r);throw new Qr.Thrift.TProtocolException(Qr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimestampType from input")}};var Xr=de(Ve());var tl=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new Xr.Thrift.TProtocolException(Xr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new Xr.Thrift.TProtocolException(Xr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimeType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",Xr.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",Xr.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===Xr.Thrift.Type.STOP)break;switch(f){case 1:if(i===Xr.Thrift.Type.BOOL){let o=e.readBool();r.isAdjustedToUTC=o}else e.skip(i);break;case 2:if(i===Xr.Thrift.Type.STRUCT){let o=Kn.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 tl(r);throw new Xr.Thrift.TProtocolException(Xr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimeType from input")}};var $r=de(Ve()),rl=class{constructor(e){if(e!=null&&e.bitWidth!=null)this.bitWidth=e.bitWidth;else throw new $r.Thrift.TProtocolException($r.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[bitWidth] is unset!");if(e!=null&&e.isSigned!=null)this.isSigned=e.isSigned;else throw new $r.Thrift.TProtocolException($r.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isSigned] is unset!")}write(e){e.writeStructBegin("IntType"),this.bitWidth!=null&&(e.writeFieldBegin("bitWidth",$r.Thrift.Type.BYTE,1),e.writeByte(this.bitWidth),e.writeFieldEnd()),this.isSigned!=null&&(e.writeFieldBegin("isSigned",$r.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===$r.Thrift.Type.STOP)break;switch(f){case 1:if(i===$r.Thrift.Type.BYTE){let o=e.readByte();r.bitWidth=o}else e.skip(i);break;case 2:if(i===$r.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 rl(r);throw new $r.Thrift.TProtocolException($r.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read IntType from input")}};var bq=de(Ve()),nl=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===bq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new nl}};var gq=de(Ve()),il=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===gq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new il}};var ct=de(Ve());var Pe=de(Ve());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 Pe.Thrift.TProtocolException(Pe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Pe.Thrift.TProtocolException(Pe.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",Pe.Thrift.Type.STRUCT,1),this.STRING.write(e),e.writeFieldEnd()),this.MAP!=null&&(e.writeFieldBegin("MAP",Pe.Thrift.Type.STRUCT,2),this.MAP.write(e),e.writeFieldEnd()),this.LIST!=null&&(e.writeFieldBegin("LIST",Pe.Thrift.Type.STRUCT,3),this.LIST.write(e),e.writeFieldEnd()),this.ENUM!=null&&(e.writeFieldBegin("ENUM",Pe.Thrift.Type.STRUCT,4),this.ENUM.write(e),e.writeFieldEnd()),this.DECIMAL!=null&&(e.writeFieldBegin("DECIMAL",Pe.Thrift.Type.STRUCT,5),this.DECIMAL.write(e),e.writeFieldEnd()),this.DATE!=null&&(e.writeFieldBegin("DATE",Pe.Thrift.Type.STRUCT,6),this.DATE.write(e),e.writeFieldEnd()),this.TIME!=null&&(e.writeFieldBegin("TIME",Pe.Thrift.Type.STRUCT,7),this.TIME.write(e),e.writeFieldEnd()),this.TIMESTAMP!=null&&(e.writeFieldBegin("TIMESTAMP",Pe.Thrift.Type.STRUCT,8),this.TIMESTAMP.write(e),e.writeFieldEnd()),this.INTEGER!=null&&(e.writeFieldBegin("INTEGER",Pe.Thrift.Type.STRUCT,10),this.INTEGER.write(e),e.writeFieldEnd()),this.UNKNOWN!=null&&(e.writeFieldBegin("UNKNOWN",Pe.Thrift.Type.STRUCT,11),this.UNKNOWN.write(e),e.writeFieldEnd()),this.JSON!=null&&(e.writeFieldBegin("JSON",Pe.Thrift.Type.STRUCT,12),this.JSON.write(e),e.writeFieldEnd()),this.BSON!=null&&(e.writeFieldBegin("BSON",Pe.Thrift.Type.STRUCT,13),this.BSON.write(e),e.writeFieldEnd()),this.UUID!=null&&(e.writeFieldBegin("UUID",Pe.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===Pe.Thrift.Type.STOP)break;switch(o){case 1:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Ca.read(e);n=tt.fromSTRING(s)}else e.skip(f);break;case 2:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Ka.read(e);n=tt.fromMAP(s)}else e.skip(f);break;case 3:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Ya.read(e);n=tt.fromLIST(s)}else e.skip(f);break;case 4:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Ga.read(e);n=tt.fromENUM(s)}else e.skip(f);break;case 5:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Qa.read(e);n=tt.fromDECIMAL(s)}else e.skip(f);break;case 6:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Za.read(e);n=tt.fromDATE(s)}else e.skip(f);break;case 7:if(f===Pe.Thrift.Type.STRUCT){r++;let s=tl.read(e);n=tt.fromTIME(s)}else e.skip(f);break;case 8:if(f===Pe.Thrift.Type.STRUCT){r++;let s=el.read(e);n=tt.fromTIMESTAMP(s)}else e.skip(f);break;case 10:if(f===Pe.Thrift.Type.STRUCT){r++;let s=rl.read(e);n=tt.fromINTEGER(s)}else e.skip(f);break;case 11:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Ja.read(e);n=tt.fromUNKNOWN(s)}else e.skip(f);break;case 12:if(f===Pe.Thrift.Type.STRUCT){r++;let s=nl.read(e);n=tt.fromJSON(s)}else e.skip(f);break;case 13:if(f===Pe.Thrift.Type.STRUCT){r++;let s=il.read(e);n=tt.fromBSON(s)}else e.skip(f);break;case 14:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Wa.read(e);n=tt.fromUUID(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Pe.Thrift.TProtocolException(Pe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Pe.Thrift.TProtocolException(Pe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Pe.Thrift.TProtocolException(Pe.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var fl=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 ct.Thrift.TProtocolException(ct.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",ct.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.type_length!=null&&(e.writeFieldBegin("type_length",ct.Thrift.Type.I32,2),e.writeI32(this.type_length),e.writeFieldEnd()),this.repetition_type!=null&&(e.writeFieldBegin("repetition_type",ct.Thrift.Type.I32,3),e.writeI32(this.repetition_type),e.writeFieldEnd()),this.name!=null&&(e.writeFieldBegin("name",ct.Thrift.Type.STRING,4),e.writeString(this.name),e.writeFieldEnd()),this.num_children!=null&&(e.writeFieldBegin("num_children",ct.Thrift.Type.I32,5),e.writeI32(this.num_children),e.writeFieldEnd()),this.converted_type!=null&&(e.writeFieldBegin("converted_type",ct.Thrift.Type.I32,6),e.writeI32(this.converted_type),e.writeFieldEnd()),this.scale!=null&&(e.writeFieldBegin("scale",ct.Thrift.Type.I32,7),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",ct.Thrift.Type.I32,8),e.writeI32(this.precision),e.writeFieldEnd()),this.field_id!=null&&(e.writeFieldBegin("field_id",ct.Thrift.Type.I32,9),e.writeI32(this.field_id),e.writeFieldEnd()),this.logicalType!=null&&(e.writeFieldBegin("logicalType",ct.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===ct.Thrift.Type.STOP)break;switch(f){case 1:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.type_length=o}else e.skip(i);break;case 3:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.repetition_type=o}else e.skip(i);break;case 4:if(i===ct.Thrift.Type.STRING){let o=e.readString();r.name=o}else e.skip(i);break;case 5:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.num_children=o}else e.skip(i);break;case 6:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.converted_type=o}else e.skip(i);break;case 7:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.scale=o}else e.skip(i);break;case 8:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.precision=o}else e.skip(i);break;case 9:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.field_id=o}else e.skip(i);break;case 10:if(i===ct.Thrift.Type.STRUCT){let o=tt.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 fl(r);throw new ct.Thrift.TProtocolException(ct.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SchemaElement from input")}};var Tt=de(Ve());var ol=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Tt.Thrift.TProtocolException(Tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Tt.Thrift.TProtocolException(Tt.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 Tt.Thrift.TProtocolException(Tt.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 Tt.Thrift.TProtocolException(Tt.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",Tt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Tt.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_level_encoding!=null&&(e.writeFieldBegin("definition_level_encoding",Tt.Thrift.Type.I32,3),e.writeI32(this.definition_level_encoding),e.writeFieldEnd()),this.repetition_level_encoding!=null&&(e.writeFieldBegin("repetition_level_encoding",Tt.Thrift.Type.I32,4),e.writeI32(this.repetition_level_encoding),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",Tt.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===Tt.Thrift.Type.STOP)break;switch(f){case 1:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.definition_level_encoding=o}else e.skip(i);break;case 4:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.repetition_level_encoding=o}else e.skip(i);break;case 5:if(i===Tt.Thrift.Type.STRUCT){let o=Ai.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 ol(r);throw new Tt.Thrift.TProtocolException(Tt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeader from input")}};var yq=de(Ve()),sl=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===yq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new sl}};var Sr=de(Ve()),al=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Sr.Thrift.TProtocolException(Sr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Sr.Thrift.TProtocolException(Sr.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",Sr.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Sr.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.is_sorted!=null&&(e.writeFieldBegin("is_sorted",Sr.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===Sr.Thrift.Type.STOP)break;switch(f){case 1:if(i===Sr.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===Sr.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===Sr.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 al(r);throw new Sr.Thrift.TProtocolException(Sr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DictionaryPageHeader from input")}};var Je=de(Ve());var ll=class{constructor(e){this.is_compressed=!0;if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Je.Thrift.TProtocolException(Je.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 Je.Thrift.TProtocolException(Je.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 Je.Thrift.TProtocolException(Je.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Je.Thrift.TProtocolException(Je.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 Je.Thrift.TProtocolException(Je.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 Je.Thrift.TProtocolException(Je.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",Je.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.num_nulls!=null&&(e.writeFieldBegin("num_nulls",Je.Thrift.Type.I32,2),e.writeI32(this.num_nulls),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",Je.Thrift.Type.I32,3),e.writeI32(this.num_rows),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Je.Thrift.Type.I32,4),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_levels_byte_length!=null&&(e.writeFieldBegin("definition_levels_byte_length",Je.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",Je.Thrift.Type.I32,6),e.writeI32(this.repetition_levels_byte_length),e.writeFieldEnd()),this.is_compressed!=null&&(e.writeFieldBegin("is_compressed",Je.Thrift.Type.BOOL,7),e.writeBool(this.is_compressed),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",Je.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===Je.Thrift.Type.STOP)break;switch(f){case 1:if(i===Je.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===Je.Thrift.Type.I32){let o=e.readI32();r.num_nulls=o}else e.skip(i);break;case 3:if(i===Je.Thrift.Type.I32){let o=e.readI32();r.num_rows=o}else e.skip(i);break;case 4:if(i===Je.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 5:if(i===Je.Thrift.Type.I32){let o=e.readI32();r.definition_levels_byte_length=o}else e.skip(i);break;case 6:if(i===Je.Thrift.Type.I32){let o=e.readI32();r.repetition_levels_byte_length=o}else e.skip(i);break;case 7:if(i===Je.Thrift.Type.BOOL){let o=e.readBool();r.is_compressed=o}else e.skip(i);break;case 8:if(i===Je.Thrift.Type.STRUCT){let o=Ai.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 ll(r);throw new Je.Thrift.TProtocolException(Je.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeaderV2 from input")}};var pt=de(Ve());var ul=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,f=n.fid;if(i===pt.Thrift.Type.STOP)break;switch(f){case 1:if(i===pt.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===pt.Thrift.Type.I32){let o=e.readI32();r.uncompressed_page_size=o}else e.skip(i);break;case 3:if(i===pt.Thrift.Type.I32){let o=e.readI32();r.compressed_page_size=o}else e.skip(i);break;case 4:if(i===pt.Thrift.Type.I32){let o=e.readI32();r.crc=o}else e.skip(i);break;case 5:if(i===pt.Thrift.Type.STRUCT){let o=ol.read(e);r.data_page_header=o}else e.skip(i);break;case 6:if(i===pt.Thrift.Type.STRUCT){let o=sl.read(e);r.index_page_header=o}else e.skip(i);break;case 7:if(i===pt.Thrift.Type.STRUCT){let o=al.read(e);r.dictionary_page_header=o}else e.skip(i);break;case 8:if(i===pt.Thrift.Type.STRUCT){let o=ll.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 ul(r);throw new pt.Thrift.TProtocolException(pt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageHeader from input")}};var Yn=de(Ve()),so=class{constructor(e){if(e!=null&&e.key!=null)this.key=e.key;else throw new Yn.Thrift.TProtocolException(Yn.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",Yn.Thrift.Type.STRING,1),e.writeString(this.key),e.writeFieldEnd()),this.value!=null&&(e.writeFieldBegin("value",Yn.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===Yn.Thrift.Type.STOP)break;switch(f){case 1:if(i===Yn.Thrift.Type.STRING){let o=e.readString();r.key=o}else e.skip(i);break;case 2:if(i===Yn.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 so(r);throw new Yn.Thrift.TProtocolException(Yn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read KeyValue from input")}};var pr=de(Ve()),cl=class{constructor(e){if(e!=null&&e.column_idx!=null)this.column_idx=e.column_idx;else throw new pr.Thrift.TProtocolException(pr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[column_idx] is unset!");if(e!=null&&e.descending!=null)this.descending=e.descending;else throw new pr.Thrift.TProtocolException(pr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[descending] is unset!");if(e!=null&&e.nulls_first!=null)this.nulls_first=e.nulls_first;else throw new pr.Thrift.TProtocolException(pr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[nulls_first] is unset!")}write(e){e.writeStructBegin("SortingColumn"),this.column_idx!=null&&(e.writeFieldBegin("column_idx",pr.Thrift.Type.I32,1),e.writeI32(this.column_idx),e.writeFieldEnd()),this.descending!=null&&(e.writeFieldBegin("descending",pr.Thrift.Type.BOOL,2),e.writeBool(this.descending),e.writeFieldEnd()),this.nulls_first!=null&&(e.writeFieldBegin("nulls_first",pr.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===pr.Thrift.Type.STOP)break;switch(f){case 1:if(i===pr.Thrift.Type.I32){let o=e.readI32();r.column_idx=o}else e.skip(i);break;case 2:if(i===pr.Thrift.Type.BOOL){let o=e.readBool();r.descending=o}else e.skip(i);break;case 3:if(i===pr.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 cl(r);throw new pr.Thrift.TProtocolException(pr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SortingColumn from input")}};var dr=de(Ve()),pl=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,f=n.fid;if(i===dr.Thrift.Type.STOP)break;switch(f){case 1:if(i===dr.Thrift.Type.I32){let o=e.readI32();r.page_type=o}else e.skip(i);break;case 2:if(i===dr.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===dr.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 dr.Thrift.TProtocolException(dr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageEncodingStats from input")}};var ao=de(Zr()),pe=de(Ve());var dl=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new pe.Thrift.TProtocolException(pe.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.encodings!=null)this.encodings=e.encodings;else throw new pe.Thrift.TProtocolException(pe.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 pe.Thrift.TProtocolException(pe.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[path_in_schema] is unset!");if(e!=null&&e.codec!=null)this.codec=e.codec;else throw new pe.Thrift.TProtocolException(pe.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[codec] is unset!");if(e!=null&&e.num_values!=null)typeof e.num_values=="number"?this.num_values=new ao.default(e.num_values):this.num_values=e.num_values;else throw new pe.Thrift.TProtocolException(pe.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 ao.default(e.total_uncompressed_size):this.total_uncompressed_size=e.total_uncompressed_size;else throw new pe.Thrift.TProtocolException(pe.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 ao.default(e.total_compressed_size):this.total_compressed_size=e.total_compressed_size;else throw new pe.Thrift.TProtocolException(pe.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 ao.default(e.data_page_offset):this.data_page_offset=e.data_page_offset;else throw new pe.Thrift.TProtocolException(pe.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 ao.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 ao.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",pe.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.encodings!=null&&(e.writeFieldBegin("encodings",pe.Thrift.Type.LIST,2),e.writeListBegin(pe.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",pe.Thrift.Type.LIST,3),e.writeListBegin(pe.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",pe.Thrift.Type.I32,4),e.writeI32(this.codec),e.writeFieldEnd()),this.num_values!=null&&(e.writeFieldBegin("num_values",pe.Thrift.Type.I64,5),e.writeI64(this.num_values),e.writeFieldEnd()),this.total_uncompressed_size!=null&&(e.writeFieldBegin("total_uncompressed_size",pe.Thrift.Type.I64,6),e.writeI64(this.total_uncompressed_size),e.writeFieldEnd()),this.total_compressed_size!=null&&(e.writeFieldBegin("total_compressed_size",pe.Thrift.Type.I64,7),e.writeI64(this.total_compressed_size),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",pe.Thrift.Type.LIST,8),e.writeListBegin(pe.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",pe.Thrift.Type.I64,9),e.writeI64(this.data_page_offset),e.writeFieldEnd()),this.index_page_offset!=null&&(e.writeFieldBegin("index_page_offset",pe.Thrift.Type.I64,10),e.writeI64(this.index_page_offset),e.writeFieldEnd()),this.dictionary_page_offset!=null&&(e.writeFieldBegin("dictionary_page_offset",pe.Thrift.Type.I64,11),e.writeI64(this.dictionary_page_offset),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",pe.Thrift.Type.STRUCT,12),this.statistics.write(e),e.writeFieldEnd()),this.encoding_stats!=null&&(e.writeFieldBegin("encoding_stats",pe.Thrift.Type.LIST,13),e.writeListBegin(pe.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===pe.Thrift.Type.STOP)break;switch(f){case 1:if(i===pe.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===pe.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=e.readI32();o.push(c)}e.readListEnd(),r.encodings=o}else e.skip(i);break;case 3:if(i===pe.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=e.readString();o.push(c)}e.readListEnd(),r.path_in_schema=o}else e.skip(i);break;case 4:if(i===pe.Thrift.Type.I32){let o=e.readI32();r.codec=o}else e.skip(i);break;case 5:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.num_values=o}else e.skip(i);break;case 6:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.total_uncompressed_size=o}else e.skip(i);break;case 7:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.total_compressed_size=o}else e.skip(i);break;case 8:if(i===pe.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=so.read(e);o.push(c)}e.readListEnd(),r.key_value_metadata=o}else e.skip(i);break;case 9:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.data_page_offset=o}else e.skip(i);break;case 10:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.index_page_offset=o}else e.skip(i);break;case 11:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.dictionary_page_offset=o}else e.skip(i);break;case 12:if(i===pe.Thrift.Type.STRUCT){let o=Ai.read(e);r.statistics=o}else e.skip(i);break;case 13:if(i===pe.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=pl.read(e);o.push(c)}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 dl(r);throw new pe.Thrift.TProtocolException(pe.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnMetaData from input")}};var bc=de(Zr()),Mt=de(Ve());var ml=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 bc.default(e.file_offset):this.file_offset=e.file_offset;else throw new Mt.Thrift.TProtocolException(Mt.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 bc.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 bc.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",Mt.Thrift.Type.STRING,1),e.writeString(this.file_path),e.writeFieldEnd()),this.file_offset!=null&&(e.writeFieldBegin("file_offset",Mt.Thrift.Type.I64,2),e.writeI64(this.file_offset),e.writeFieldEnd()),this.meta_data!=null&&(e.writeFieldBegin("meta_data",Mt.Thrift.Type.STRUCT,3),this.meta_data.write(e),e.writeFieldEnd()),this.offset_index_offset!=null&&(e.writeFieldBegin("offset_index_offset",Mt.Thrift.Type.I64,4),e.writeI64(this.offset_index_offset),e.writeFieldEnd()),this.offset_index_length!=null&&(e.writeFieldBegin("offset_index_length",Mt.Thrift.Type.I32,5),e.writeI32(this.offset_index_length),e.writeFieldEnd()),this.column_index_offset!=null&&(e.writeFieldBegin("column_index_offset",Mt.Thrift.Type.I64,6),e.writeI64(this.column_index_offset),e.writeFieldEnd()),this.column_index_length!=null&&(e.writeFieldBegin("column_index_length",Mt.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===Mt.Thrift.Type.STOP)break;switch(f){case 1:if(i===Mt.Thrift.Type.STRING){let o=e.readString();r.file_path=o}else e.skip(i);break;case 2:if(i===Mt.Thrift.Type.I64){let o=e.readI64();r.file_offset=o}else e.skip(i);break;case 3:if(i===Mt.Thrift.Type.STRUCT){let o=dl.read(e);r.meta_data=o}else e.skip(i);break;case 4:if(i===Mt.Thrift.Type.I64){let o=e.readI64();r.offset_index_offset=o}else e.skip(i);break;case 5:if(i===Mt.Thrift.Type.I32){let o=e.readI32();r.offset_index_length=o}else e.skip(i);break;case 6:if(i===Mt.Thrift.Type.I64){let o=e.readI64();r.column_index_offset=o}else e.skip(i);break;case 7:if(i===Mt.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 ml(r);throw new Mt.Thrift.TProtocolException(Mt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnChunk from input")}};var hw=de(Zr()),zt=de(Ve());var wl=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 hw.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 hw.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,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=ml.read(e);o.push(c)}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,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=cl.read(e);o.push(c)}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 wl(r);throw new zt.Thrift.TProtocolException(zt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read RowGroup from input")}};var jq=de(Ve()),hl=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===jq.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new hl}};var qq=de(Zr()),rt=de(Ve());var Er=de(Ve());var us=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 Er.Thrift.TProtocolException(Er.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Er.Thrift.TProtocolException(Er.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromTYPE_ORDER(e){return new us({TYPE_ORDER:e})}write(e){e.writeStructBegin("ColumnOrder"),this.TYPE_ORDER!=null&&(e.writeFieldBegin("TYPE_ORDER",Er.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===Er.Thrift.Type.STOP)break;switch(o){case 1:if(f===Er.Thrift.Type.STRUCT){r++;let s=hl.read(e);n=us.fromTYPE_ORDER(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Er.Thrift.TProtocolException(Er.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Er.Thrift.TProtocolException(Er.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Er.Thrift.TProtocolException(Er.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var bl=class{constructor(e=null){if(e!=null&&e.version!=null)this.version=e.version;else throw new rt.Thrift.TProtocolException(rt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[version] is unset!");if(e!=null&&e.schema!=null)this.schema=e.schema;else throw new rt.Thrift.TProtocolException(rt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[schema] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new qq.default(e.num_rows):this.num_rows=e.num_rows;else throw new rt.Thrift.TProtocolException(rt.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 rt.Thrift.TProtocolException(rt.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",rt.Thrift.Type.I32,1),e.writeI32(this.version),e.writeFieldEnd()),this.schema!=null&&(e.writeFieldBegin("schema",rt.Thrift.Type.LIST,2),e.writeListBegin(rt.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",rt.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.row_groups!=null&&(e.writeFieldBegin("row_groups",rt.Thrift.Type.LIST,4),e.writeListBegin(rt.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",rt.Thrift.Type.LIST,5),e.writeListBegin(rt.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",rt.Thrift.Type.STRING,6),e.writeString(this.created_by),e.writeFieldEnd()),this.column_orders!=null&&(e.writeFieldBegin("column_orders",rt.Thrift.Type.LIST,7),e.writeListBegin(rt.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===rt.Thrift.Type.STOP)break;switch(f){case 1:if(i===rt.Thrift.Type.I32){let o=e.readI32();r.version=o}else e.skip(i);break;case 2:if(i===rt.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=fl.read(e);o.push(c)}e.readListEnd(),r.schema=o}else e.skip(i);break;case 3:if(i===rt.Thrift.Type.I64){let o=e.readI64();r.num_rows=o}else e.skip(i);break;case 4:if(i===rt.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=wl.read(e);o.push(c)}e.readListEnd(),r.row_groups=o}else e.skip(i);break;case 5:if(i===rt.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=so.read(e);o.push(c)}e.readListEnd(),r.key_value_metadata=o}else e.skip(i);break;case 6:if(i===rt.Thrift.Type.STRING){let o=e.readString();r.created_by=o}else e.skip(i);break;case 7:if(i===rt.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=us.read(e);o.push(c)}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 bl(r);throw new rt.Thrift.TProtocolException(rt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read FileMetaData from input")}};var cs=de(Ve());var bw=class extends cs.TFramedTransport{constructor(){super(...arguments);this.readPos=0}};function en(t,e){for(let r in t)if(t[r]===e)return r;throw new Error("Invalid ENUM value")}function _q(t,e){e||(e=0);let r=new bw(t);r.readPos=e;let n=new cs.TCompactProtocol(r),i=bl.read(n);return{length:r.readPos-e,metadata:i}}function vq(t,e){e||(e=0);let r=new bw(t);r.readPos=e;let n=new cs.TCompactProtocol(r),i=ul.read(n);return{length:r.readPos-e,pageHeader:i}}function gl(t){return t===0?0:Math.ceil(Math.log2(t+1))}function Tq(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}var ps=de(Iq());function xq(t,e,r){switch(t){case"BOOLEAN":return YE(e);case"INT32":return ZE(e);case"INT64":return QE(e);case"INT96":return $E(e);case"FLOAT":return tA(e);case"DOUBLE":return nA(e);case"BYTE_ARRAY":return fA(e);case"FIXED_LEN_BYTE_ARRAY":return sA(e,r);default:throw new Error(`unsupported type: ${t}`)}}function Sq(t,e,r,n){switch(t){case"BOOLEAN":return GE(e,r);case"INT32":return JE(e,r);case"INT64":return XE(e,r);case"INT96":return eA(e,r);case"FLOAT":return rA(e,r);case"DOUBLE":return iA(e,r);case"BYTE_ARRAY":return oA(e,r);case"FIXED_LEN_BYTE_ARRAY":return aA(e,r,n);default:throw new Error(`unsupported type: ${t}`)}}function YE(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 GE(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 ZE(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 JE(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readInt32LE(t.offset)),t.offset+=4;return r}function QE(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)ps.default.writeInt64LE(t[r],e,r*8);return e}function XE(t,e){let r=[];for(let n=0;n<e;n++)r.push(ps.default.readInt64LE(t.buffer,t.offset)),t.offset+=8;return r}function $E(t){let e=Buffer.alloc(12*t.length);for(let r=0;r<t.length;r++)t[r]>=0?(ps.default.writeInt64LE(t[r],e,r*12),e.writeUInt32LE(0,r*12+8)):(ps.default.writeInt64LE(~-t[r]+1,e,r*12),e.writeUInt32LE(4294967295,r*12+8));return e}function eA(t,e){let r=[];for(let n=0;n<e;n++){let i=ps.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 tA(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 rA(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readFloatLE(t.offset)),t.offset+=4;return r}function nA(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 iA(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readDoubleLE(t.offset)),t.offset+=8;return r}function fA(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 oA(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 sA(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 aA(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 jl=de(zq());function Uq(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,Lq(i,r)]),i=[]),f=1):f>0&&e[s]===e[s-1]?f+=1:(f&&(n=Buffer.concat([n,Vq(e[s-1],f,r)]),f=0),i.push(e[s]));if(f?n=Buffer.concat([n,Vq(e[e.length-1],f,r)]):i.length&&(n=Buffer.concat([n,Lq(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 qc(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=jl.default.decode(e.buffer,e.offset);if(e.offset+=jl.default.encodingLength(f),f&1){let o=(f>>1)*8;i.push(..._A(e,o,n))}else{let o=f>>1;i.push(...vA(e,o,n))}}if(i=i.slice(0,r),i.length!==r)throw new Error("invalid RLE encoding");return i}function _A(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 vA(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 Lq(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(jl.default.encode(t.length/8<<1|1)),n])}function Vq(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(jl.default.encode(e<<1)),i])}function yw(t,e,r,n){return n.bitWidth=e.buffer.slice(e.offset,e.offset+1).readInt8(0),e.offset+=1,qc(t,e,r,{...n,disableEnvelope:!0})}function jw(t,e,r,n){throw new Error("Encode dictionary functionality is not supported")}var ql={PLAIN:{encodeValues:xq,decodeValues:Sq},RLE:{encodeValues:Uq,decodeValues:qc},PLAIN_DICTIONARY:{encodeValues:jw,decodeValues:yw},RLE_DICTIONARY:{encodeValues:jw,decodeValues:yw}};var yr=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 Lm(e)}improveError(e){return e.message.includes(this.name)||(e.message=`${this.name} ${e.message}`),e}};var _c=class extends yr{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 Hl=de(Ev()),Pi=de(th());var rh=class extends yr{constructor(e={}){super(e);this.name="deflate";this.extensions=[];this.contentEncodings=["deflate"];this.isSupported=!0;this._chunks=[];this.options=e}async compress(e){if(!xn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await(0,Cn.promisify1)(Pi.default.gzip)(e):await(0,Cn.promisify1)(Pi.default.deflate)(e);return Ur(r)}return this.compressSync(e)}async decompress(e){if(!xn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await(0,Cn.promisify1)(Pi.default.gunzip)(e):await(0,Cn.promisify1)(Pi.default.inflate)(e);return Ur(r)}return this.decompressSync(e)}compressSync(e){if(!xn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Pi.default.gzipSync(e):Pi.default.deflateSync(e);return Ur(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return Hl.default.deflate(n,r).buffer}decompressSync(e){if(!xn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Pi.default.gunzipSync(e):Pi.default.inflateSync(e);return Ur(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return Hl.default.inflate(n,r).buffer}async*compressBatches(e){let r=this.options?.deflate||{},n=new Hl.default.Deflate(r);yield*this.transformBatches(n,e)}async*decompressBatches(e){let r=this.options?.deflate||{},n=new Hl.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 Mc=class extends rh{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 h4=407708164,Ml,zl=class extends yr{constructor(e){super(e);this.name="lz4";this.extensions=["lz4"];this.contentEncodings=["x-lz4"];this.isSupported=!0;if(this.options=e,Ml=Ml||this.options?.modules?.lz4js,!Ml)throw new Error(this.name)}compressSync(e){let r=new Uint8Array(e);return Ml.compress(r).buffer}decompressSync(e,r){try{let n=this.checkMagicNumber(e),i=new Uint8Array(e);if(n)return Ml.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),Ur(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++],u=s>>4;if(u>0){let v=u+240;for(;v===255;)v=e[o++],u+=v;let H=o+u;for(;o<H;)r[f++]=e[o++];if(o===i)return f}let l=e[o++]|e[o++]<<8;if(l===0||l>f)return-(o-2);let c=s&15,w=c+240;for(;w===255;)w=e[o++],c+=w;let p=f-l,g=f+c+4;for(;f<g;)r[f++]=r[p++]}return f}checkMagicNumber(e){return new Uint32Array(e.slice(0,4))[0]===h4}};var zc,Uc,Lc=class extends yr{constructor(e){super(e);this.name="zstd";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e,zc=this.options?.modules?.["zstd-codec"],zc||console.warn(`${this.name} library not installed`)}async preload(){!Uc&&zc&&(Uc=await new Promise(e=>zc.run(r=>e(r))))}compressSync(e){let r=new Uc.Simple,n=new Uint8Array(e);return r.compress(n).buffer}decompressSync(e){let r=new Uc.Simple,n=new Uint8Array(e);return r.decompress(n).buffer}};var Wc=de(Uv()),Kc=class extends yr{constructor(e){super(e);this.name="snappy";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return(0,Wc.compress)(e)}decompressSync(e){return(0,Wc.uncompress)(e)}};var E4=()=>{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]),u=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]),l=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);v(c);function w(a){let j=-1,b=16;for(;b>0;)a>>>b!=0&&(j+=b,a=a>>>b),b=b>>1;return j+a}function p(a,j,b){return 16+j+2*(b<<a)}function g(a,j,b){if(a<b+(2<<j))throw"maxDistance is too small";let _=(a-b>>j)+4,T=w(_)-1;return((T-1<<1|_>>T&1)-1<<j)+(1<<j)+b+16}function v(a){let j=new Int16Array(24),b=new Int16Array(24);b[0]=2;for(let _=0;_<23;++_)j[_+1]=j[_]+(1<<u[_]),b[_+1]=b[_]+(1<<l[_]);for(let _=0;_<704;++_){let T=_>>>6,N=-4;T>=2&&(T-=2,N=0);let U=(170064>>>T*2&3)<<3|_>>>3&7,Z=(156228>>>T*2&3)<<3|_&7,ae=b[Z],le=N+(ae>4?3:ae-2),ee=_*4;a[ee+0]=u[U]|l[Z]<<8,a[ee+1]=j[U],a[ee+2]=b[Z],a[ee+3]=le}}function H(a){let j=a.isLargeWindow;if(a.isLargeWindow=0,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),De(a,1)==0)return 16;let b=De(a,3);return b!=0?17+b:(b=De(a,3),b!=0?b==1?j==0||(a.isLargeWindow=1,De(a,1)==1)||(b=De(a,6),b<10||b>30)?-1:b:8+b:17)}function O(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isEager=1}function C(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isLargeWindow=1}function te(a,j){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]=j,a.cdNumChunks++,a.cdTotalSize+=j.length,a.cdChunkOffsets[a.cdNumChunks]=a.cdTotalSize}function M(a,j){if(a.runningState!=0)throw"State MUST be uninitialized";a.blockTrees=new Int32Array(3091),a.blockTrees[0]=7,a.distRbIdx=3;let b=g(2147483644,3,15<<3);a.distExtraBits=new Int8Array(b),a.distOffset=new Int32Array(b),a.input=j,h(a),a.runningState=1}function z(a){if(a.runningState==0)throw"State MUST be initialized";a.runningState!=11&&(a.runningState=11,a.input!=null&&(cS(a.input),a.input=null))}function R(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),De(a,1)!=0){let j=De(a,3);return j==0?1:De(a,j)+(1<<j)}return 0}function F(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.inputEnd=De(a,1),a.metaBlockLength=0,a.isUncompressed=0,a.isMetadata=0,a.inputEnd!=0&&De(a,1)!=0)return;let j=De(a,2)+4;if(j==7){if(a.isMetadata=1,De(a,1)!=0)throw"Corrupted reserved bit";let b=De(a,2);if(b==0)return;for(let _=0;_<b;_++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let T=De(a,8);if(T==0&&_+1==b&&b>1)throw"Exuberant nibble";a.metaBlockLength|=T<<_*8}}else for(let b=0;b<j;b++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let _=De(a,4);if(_==0&&b+1==j&&j>4)throw"Exuberant nibble";a.metaBlockLength|=_<<b*4}a.metaBlockLength++,a.inputEnd==0&&(a.isUncompressed=De(a,1))}function oe(a,j,b){let _=a[j],T=b.accumulator32>>>b.bitOffset;_+=T&255;let N=a[_]>>16,U=a[_]&65535;if(N<=8)return b.bitOffset+=N,U;_+=U;let Z=(1<<N)-1;return _+=(T&Z)>>>8,b.bitOffset+=(a[_]>>16)+8,a[_]&65535}function re(a,j,b){b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let _=oe(a,j,b),T=s[_];return b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16),o[_]+(T<=16?De(b,T):ts(b,T))}function ue(a,j){let b=a[j];for(;j>0;j--)a[j]=a[j-1];a[0]=b}function Ye(a,j){let b=new Int32Array(256);for(let _=0;_<256;_++)b[_]=_;for(let _=0;_<j;_++){let T=a[_]&255;a[_]=b[T],T!=0&&ue(b,T)}}function q(a,j,b,_){let T=0,N=8,U=0,Z=0,ae=32768,le=new Int32Array(32+1),ee=le.length-1;for(es(le,ee,5,a,18);T<j&&ae>0;){_.halfOffset>2030&&ur(_),_.bitOffset>=16&&(_.accumulator32=_.shortBuffer[_.halfOffset++]<<16|_.accumulator32>>>16,_.bitOffset-=16);let Oe=_.accumulator32>>>_.bitOffset&31;_.bitOffset+=le[Oe]>>16;let Re=le[Oe]&65535;if(Re<16)U=0,b[T++]=Re,Re!=0&&(N=Re,ae-=32768>>Re);else{let mt=Re-14,Mr=0;Re==16&&(Mr=N),Z!=Mr&&(U=0,Z=Mr);let Yr=U;U>0&&(U-=2,U<<=mt),_.bitOffset>=16&&(_.accumulator32=_.shortBuffer[_.halfOffset++]<<16|_.accumulator32>>>16,_.bitOffset-=16),U+=De(_,mt)+3;let Kt=U-Yr;if(T+Kt>j)throw"symbol + repeatDelta > numSymbols";for(let Me=0;Me<Kt;Me++)b[T++]=Z;Z!=0&&(ae-=Kt<<15-Z)}}if(ae!=0)throw"Unused space";b.fill(0,T,j)}function Ae(a,j){for(let b=0;b<j-1;++b)for(let _=b+1;_<j;++_)if(a[b]==a[_])throw"Duplicate simple Huffman code symbol"}function Ue(a,j,b,_,T){let N=new Int32Array(j),U=new Int32Array(4),Z=1+w(a-1),ae=De(T,2)+1;for(let ee=0;ee<ae;ee++){T.bitOffset>=16&&(T.accumulator32=T.shortBuffer[T.halfOffset++]<<16|T.accumulator32>>>16,T.bitOffset-=16);let Oe=De(T,Z);if(Oe>=j)throw"Can't readHuffmanCode";U[ee]=Oe}Ae(U,ae);let le=ae;switch(ae==4&&(le+=De(T,1)),le){case 1:N[U[0]]=1;break;case 2:N[U[0]]=1,N[U[1]]=1;break;case 3:N[U[0]]=1,N[U[1]]=2,N[U[2]]=2;break;case 4:N[U[0]]=2,N[U[1]]=2,N[U[2]]=2,N[U[3]]=2;break;case 5:N[U[0]]=1,N[U[1]]=2,N[U[2]]=3,N[U[3]]=3;break;default:break}return es(b,_,8,N,j)}function he(a,j,b,_,T){let N=new Int32Array(a),U=new Int32Array(18),Z=32,ae=0;for(let le=j;le<18&&Z>0;le++){let ee=r[le];T.bitOffset>=16&&(T.accumulator32=T.shortBuffer[T.halfOffset++]<<16|T.accumulator32>>>16,T.bitOffset-=16);let Oe=T.accumulator32>>>T.bitOffset&15;T.bitOffset+=f[Oe]>>16;let Re=f[Oe]&65535;U[ee]=Re,Re!=0&&(Z-=32>>Re,ae++)}if(Z!=0&&ae!=1)throw"Corrupted Huffman code histogram";return q(U,a,N,T),es(b,_,8,N,a)}function Ge(a,j,b,_,T){T.halfOffset>2030&&ur(T),T.bitOffset>=16&&(T.accumulator32=T.shortBuffer[T.halfOffset++]<<16|T.accumulator32>>>16,T.bitOffset-=16);let N=De(T,2);return N==1?Ue(a,j,b,_,T):he(j,N,b,_,T)}function $(a,j,b){b.halfOffset>2030&&ur(b);let _=R(b)+1;if(_==1)return j.fill(0,0,a),_;b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let T=De(b,1),N=0;T!=0&&(N=De(b,4)+1);let U=_+N,Z=e[U+31>>5],ae=new Int32Array(Z+1),le=ae.length-1;Ge(U,U,ae,le,b);for(let ee=0;ee<a;){b.halfOffset>2030&&ur(b),b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let Oe=oe(ae,le,b);if(Oe==0)j[ee]=0,ee++;else if(Oe<=N){b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let Re=(1<<Oe)+De(b,Oe);for(;Re!=0;){if(ee>=a)throw"Corrupted context map";j[ee]=0,ee++,Re--}}else j[ee]=Oe-N,ee++}return b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16),De(b,1)==1&&Ye(j,a),_}function qt(a,j,b){let _=a.rings,T=4+j*2;a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let N=oe(a.blockTrees,2*j,a),U=re(a.blockTrees,2*j+1,a);return N==1?N=_[T+1]+1:N==0?N=_[T]:N-=2,N>=b&&(N-=b),_[T]=_[T+1],_[T+1]=N,U}function nt(a){a.literalBlockLength=qt(a,0,a.numLiteralBlockTypes);let j=a.rings[5];a.contextMapSlice=j<<6,a.literalTreeIdx=a.contextMap[a.contextMapSlice]&255;let b=a.contextModes[j];a.contextLookupOffset1=b<<9,a.contextLookupOffset2=a.contextLookupOffset1+256}function Tr(a){a.commandBlockLength=qt(a,1,a.numCommandBlockTypes),a.commandTreeIdx=a.rings[7]}function vi(a){a.distanceBlockLength=qt(a,2,a.numDistanceBlockTypes),a.distContextMapSlice=a.rings[9]<<2}function eo(a){let j=a.maxRingBufferSize;if(j>a.expectedTotalSize){let T=a.expectedTotalSize;for(;j>>1>T;)j>>=1;a.inputEnd==0&&j<16384&&a.maxRingBufferSize>=16384&&(j=16384)}if(j<=a.ringBufferSize)return;let b=j+37,_=new Int8Array(b);a.ringBuffer.length!=0&&_.set(a.ringBuffer.subarray(0,0+a.ringBufferSize),0),a.ringBuffer=_,a.ringBufferSize=j}function to(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&&ur(a),F(a),!(a.metaBlockLength==0&&a.isMetadata==0)&&(a.isUncompressed!=0||a.isMetadata!=0?(L(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&&eo(a)))}function Bn(a,j,b){let _=a.blockTrees[2*j];if(b<=1)return a.blockTrees[2*j+1]=_,a.blockTrees[2*j+2]=_,1<<28;let T=b+2;_+=Ge(T,T,a.blockTrees,2*j,a),a.blockTrees[2*j+1]=_;let N=26;return _+=Ge(N,N,a.blockTrees,2*j+1,a),a.blockTrees[2*j+2]=_,re(a.blockTrees,2*j+1,a)}function Hr(a,j){let b=a.distExtraBits,_=a.distOffset,T=a.distancePostfixBits,N=a.numDirectDistanceCodes,U=1<<T,Z=1,ae=0,le=16;for(let ee=0;ee<N;++ee)b[le]=0,_[le]=ee+1,++le;for(;le<j;){let ee=N+((2+ae<<Z)-4<<T)+1;for(let Oe=0;Oe<U;++Oe)b[le]=Z,_[le]=ee+Oe,++le;Z=Z+ae,ae=ae^1}}function Wt(a){a.numLiteralBlockTypes=R(a)+1,a.literalBlockLength=Bn(a,0,a.numLiteralBlockTypes),a.numCommandBlockTypes=R(a)+1,a.commandBlockLength=Bn(a,1,a.numCommandBlockTypes),a.numDistanceBlockTypes=R(a)+1,a.distanceBlockLength=Bn(a,2,a.numDistanceBlockTypes),a.halfOffset>2030&&ur(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.distancePostfixBits=De(a,2),a.numDirectDistanceCodes=De(a,4)<<a.distancePostfixBits,a.contextModes=new Int8Array(a.numLiteralBlockTypes);for(let N=0;N<a.numLiteralBlockTypes;){let U=ff(N+96,a.numLiteralBlockTypes);for(;N<U;++N)a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.contextModes[N]=De(a,2);a.halfOffset>2030&&ur(a)}a.contextMap=new Int8Array(a.numLiteralBlockTypes<<6);let j=$(a.numLiteralBlockTypes<<6,a.contextMap,a);a.trivialLiteralContext=1;for(let N=0;N<a.numLiteralBlockTypes<<6;N++)if(a.contextMap[N]!=N>>6){a.trivialLiteralContext=0;break}a.distContextMap=new Int8Array(a.numDistanceBlockTypes<<2);let b=$(a.numDistanceBlockTypes<<2,a.distContextMap,a);a.literalTreeGroup=Un(256,256,j,a),a.commandTreeGroup=Un(704,704,a.numCommandBlockTypes,a);let _=p(a.distancePostfixBits,a.numDirectDistanceCodes,24),T=_;a.isLargeWindow==1&&(_=p(a.distancePostfixBits,a.numDirectDistanceCodes,62),T=g(2147483644,a.distancePostfixBits,a.numDirectDistanceCodes)),a.distanceTreeGroup=Un(_,T,b,a),Hr(a,T),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 Ti(a){let j=a.ringBuffer;if(a.metaBlockLength<=0){I(a),a.runningState=2;return}let b=ff(a.ringBufferSize-a.pos,a.metaBlockLength);if(xe(a,j,a.pos,b),a.metaBlockLength-=b,a.pos+=b,a.pos==a.ringBufferSize){a.nextRunningState=6,a.runningState=12;return}I(a),a.runningState=2}function In(a){let j=ff(a.outputLength-a.outputUsed,a.ringBufferBytesReady-a.ringBufferBytesWritten);return j!=0&&(a.output.set(a.ringBuffer.subarray(a.ringBufferBytesWritten,a.ringBufferBytesWritten+j),a.outputOffset+a.outputUsed),a.outputUsed+=j,a.ringBufferBytesWritten+=j),a.outputUsed<a.outputLength?1:0}function Un(a,j,b,_){let T=e[j+31>>5],N=new Int32Array(b+b*T),U=b;for(let Z=0;Z<b;++Z)N[Z]=U,U+=Ge(a,j,N,Z,_);return N}function Qo(a){let j=a.ringBufferSize;return a.isEager!=0&&(j=ff(j,a.ringBufferBytesWritten+a.outputLength-a.outputUsed)),j}function Xo(a,j){if(a.distance>2147483644)throw"Invalid backward reference";let b=a.distance-a.maxDistance-1-a.cdTotalSize;if(b<0)ro(a,-b-1,a.copyLength),a.runningState=14;else{let _=st,T=a.copyLength;if(T>31)throw"Invalid backward reference";let N=nf[T];if(N==0)throw"Invalid backward reference";let U=At[T],Z=(1<<N)-1,ae=b&Z,le=b>>>N;U+=ae*T;let ee=$o;if(le>=ee.numTransforms)throw"Invalid backward reference";let Oe=Nm(a.ringBuffer,a.pos,_,U,T,ee,le);if(a.pos+=Oe,a.metaBlockLength-=Oe,a.pos>=j){a.nextRunningState=4,a.runningState=12;return}a.runningState=4}}function hr(a){a.cdBlockMap=new Int8Array(256);let j=8;for(;a.cdTotalSize-1>>>j!=0;)j++;j-=8,a.cdBlockBits=j;let b=0,_=0;for(;b<a.cdTotalSize;){for(;a.cdChunkOffsets[_+1]<b;)_++;a.cdBlockMap[b>>>j]=_,b+=1<<j}}function ro(a,j,b){a.cdBlockBits==-1&&hr(a);let _=a.cdBlockMap[j>>>a.cdBlockBits];for(;j>=a.cdChunkOffsets[_+1];)_++;if(a.cdTotalSize>j+b)throw"Invalid backward reference";a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance,a.metaBlockLength-=b,a.cdBrIndex=_,a.cdBrOffset=j-a.cdChunkOffsets[_],a.cdBrLength=b,a.cdBrCopied=0}function Fa(a,j){let b=a.pos,_=b;for(;a.cdBrLength!=a.cdBrCopied;){let T=j-b,U=a.cdChunkOffsets[a.cdBrIndex+1]-a.cdChunkOffsets[a.cdBrIndex]-a.cdBrOffset,Z=a.cdBrLength-a.cdBrCopied;if(Z>U&&(Z=U),Z>T&&(Z=T),uS(a.ringBuffer,b,a.cdChunks[a.cdBrIndex],a.cdBrOffset,a.cdBrOffset+Z),b+=Z,a.cdBrOffset+=Z,a.cdBrCopied+=Z,Z==U&&(a.cdBrIndex++,a.cdBrOffset=0),b>=j)break}return b-_}function Fm(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 T=H(a);if(T==-1)throw"Invalid 'windowBits' code";a.maxRingBufferSize=1<<T,a.maxBackwardDistance=a.maxRingBufferSize-16,a.runningState=2}let j=Qo(a),b=a.ringBufferSize-1,_=a.ringBuffer;for(;a.runningState!=10;)switch(a.runningState){case 2:if(a.metaBlockLength<0)throw"Invalid metablock length";to(a),j=Qo(a),b=a.ringBufferSize-1,_=a.ringBuffer;continue;case 3:Wt(a),a.runningState=4;case 4:if(a.metaBlockLength<=0){a.runningState=2;continue}a.halfOffset>2030&&ur(a),a.commandBlockLength==0&&Tr(a),a.commandBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let T=oe(a.commandTreeGroup,a.commandTreeIdx,a)<<2,N=c[T],U=c[T+1],Z=c[T+2];a.distanceCode=c[T+3],a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let ae=N&255;a.insertLength=U+(ae<=16?De(a,ae):ts(a,ae)),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let le=N>>8;a.copyLength=Z+(le<=16?De(a,le):ts(a,le)),a.j=0,a.runningState=7;case 7:if(a.trivialLiteralContext!=0){for(;a.j<a.insertLength;)if(a.halfOffset>2030&&ur(a),a.literalBlockLength==0&&nt(a),a.literalBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),_[a.pos]=oe(a.literalTreeGroup,a.literalTreeIdx,a),a.pos++,a.j++,a.pos>=j){a.nextRunningState=7,a.runningState=12;break}}else{let Kt=_[a.pos-1&b]&255,Me=_[a.pos-2&b]&255;for(;a.j<a.insertLength;){a.halfOffset>2030&&ur(a),a.literalBlockLength==0&&nt(a);let zr=ft[a.contextLookupOffset1+Kt]|ft[a.contextLookupOffset2+Me],ki=a.contextMap[a.contextMapSlice+zr]&255;if(a.literalBlockLength--,Me=Kt,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Kt=oe(a.literalTreeGroup,ki,a),_[a.pos]=Kt,a.pos++,a.j++,a.pos>=j){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 ee=a.distanceCode;if(ee<0)a.distance=a.rings[a.distRbIdx];else{a.halfOffset>2030&&ur(a),a.distanceBlockLength==0&&vi(a),a.distanceBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let Kt=a.distContextMap[a.distContextMapSlice+ee]&255;if(ee=oe(a.distanceTreeGroup,Kt,a),ee<16){let Me=a.distRbIdx+n[ee]&3;if(a.distance=a.rings[Me]+i[ee],a.distance<0)throw"Negative distance"}else{let Me=a.distExtraBits[ee],zr;a.bitOffset+Me<=32?zr=De(a,Me):(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),zr=Me<=16?De(a,Me):ts(a,Me)),a.distance=a.distOffset[ee]+(zr<<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(ee>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 Oe=a.pos-a.distance&b,Re=a.pos,mt=a.copyLength-a.j,Mr=Oe+mt,Yr=Re+mt;if(Mr<b&&Yr<b){if(mt<12||Mr>Re&&Yr>Oe)for(let Kt=0;Kt<mt;Kt+=4)_[Re++]=_[Oe++],_[Re++]=_[Oe++],_[Re++]=_[Oe++],_[Re++]=_[Oe++];else _.copyWithin(Re,Oe,Mr);a.j+=mt,a.metaBlockLength-=mt,a.pos+=mt}else for(;a.j<a.copyLength;)if(_[a.pos]=_[a.pos-a.distance&b],a.metaBlockLength--,a.pos++,a.j++,a.pos>=j){a.nextRunningState=8,a.runningState=12;break}a.runningState==8&&(a.runningState=4);continue;case 9:Xo(a,j);continue;case 14:if(a.pos+=Fa(a,j),a.pos>=j){a.nextRunningState=14,a.runningState=12;return}a.runningState=4;continue;case 5:for(;a.metaBlockLength>0;)a.halfOffset>2030&&ur(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),De(a,8),a.metaBlockLength--;a.runningState=2;continue;case 6:Ti(a);continue;case 12:a.ringBufferBytesReady=ff(a.pos,a.ringBufferSize),a.runningState=13;case 13:if(In(a)==0)return;a.pos>=a.maxBackwardDistance&&(a.maxDistance=a.maxBackwardDistance),a.pos>=a.ringBufferSize&&(a.pos>a.ringBufferSize&&_.copyWithin(0,a.ringBufferSize,a.pos),a.pos&=b,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";L(a),Na(a,1)}}function Yu(a,j,b){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(j),this.prefixSuffixHeads=new Int32Array(b+1)}let $o=new Yu(121,167,50);function Dm(a,j,b,_,T){let N=_.length,U=1,Z=0;for(let ae=0;ae<N;++ae){let le=_.charCodeAt(ae);le==35?j[U++]=Z:a[Z++]=le}for(let ae=0;ae<363;++ae)b[ae]=T.charCodeAt(ae)-32}Dm($o.prefixSuffixStorage,$o.prefixSuffixHeads,$o.triplets,`# #s #, #e #.# the #.com/#\xC2\xA0# of # and # in # to #"#">#
25
+ }`),this._dictionaries=[],this._recordBatches=[],super.close()}};bi.RecordBatchJSONWriter=Yd;function wy(t,e){let r=e;e instanceof uy.Table&&(r=e.chunks,t.reset(void 0,e.schema));for(let n of r)t.write(n);return t.finish()}async function hy(t,e){for await(let r of e)t.write(r);return t.finish()}function t1({name:t,type:e,nullable:r}){let n=new mH.JSONTypeAssembler;return{name:t,nullable:r,type:n.visit(e),children:(e.children||[]).map(t1),dictionary:pH.DataType.isDictionary(e)?{id:e.id,isOrdered:e.isOrdered,indexType:n.visit(e.indices)}:void 0}}function bH(t,e,r=!1){let n=new dH.Field(`${e}`,t.type,t.nullCount>0),i=e1.JSONVectorAssembler.assemble(new cH.Column(n,[t]));return JSON.stringify({id:e,isDelta:r,data:{count:t.length,columns:i}},null,2)}function gH(t){return JSON.stringify({count:t.length,columns:e1.JSONVectorAssembler.assemble(t)},null,2)}});var yy=k(Kf=>{"use strict";Object.defineProperty(Kf,"__esModule",{value:!0});Kf.distributeVectorsIntoRecordBatches=Kf.distributeColumnsIntoRecordBatches=Kf.ensureSameLengthData=void 0;var r1=Dn(),by=er(),yH=Lf(),jH=Qi(),gy=new Uint8Array(0),n1=t=>[gy,gy,new Uint8Array(t),gy];function qH(t,e,r=e.reduce((n,i)=>Math.max(n,i.length),0)){let n,i,f=-1,o=e.length,s=[...t.fields],u=[],l=(r+63&~63)>>3;for(;++f<o;)(n=e[f])&&n.length===r?u[f]=n:((i=s[f]).nullable||(s[f]=s[f].clone({nullable:!0})),u[f]=n?n._changeLengthAndBackfillNullBitmap(r):r1.Data.new(i.type,0,r,r,n1(l)));return[new by.Schema(s),r,u]}Kf.ensureSameLengthData=qH;function _H(t){return i1(new by.Schema(t.map(({field:e})=>e)),t)}Kf.distributeColumnsIntoRecordBatches=_H;function i1(t,e){return vH(t,e.map(r=>r instanceof yH.Chunked?r.chunks.map(n=>n.data):[r.data]))}Kf.distributeVectorsIntoRecordBatches=i1;function vH(t,e){let r=[...t.fields],n=[],i={numBatches:e.reduce((w,p)=>Math.max(w,p.length),0)},f=0,o=0,s=-1,u=e.length,l,c=[];for(;i.numBatches-- >0;){for(o=Number.POSITIVE_INFINITY,s=-1;++s<u;)c[s]=l=e[s].shift(),o=Math.min(o,l?l.length:o);isFinite(o)&&(c=TH(r,o,c,e,i),o>0&&(n[f++]=[o,c.slice()]))}return[t=new by.Schema(r,t.metadata),n.map(w=>new jH.RecordBatch(t,...w))]}function TH(t,e,r,n,i){let f,o,s=0,u=-1,l=n.length,c=(e+63&~63)>>3;for(;++u<l;)(f=r[u])&&(s=f.length)>=e?s===e?r[u]=f:(r[u]=f.slice(0,e),f=f.slice(e,s-e),i.numBatches=Math.max(i.numBatches,n[u].unshift(f))):((o=t[u]).nullable||(t[u]=o.clone({nullable:!0})),r[u]=f?f._changeLengthAndBackfillNullBitmap(e):r1.Data.new(o.type,0,e,e,n1(c)));return r}});var Pt=k(Zd=>{"use strict";Object.defineProperty(Zd,"__esModule",{value:!0});Zd.BaseVector=void 0;var kH=dt(),BH=Lf(),IH=hu(),jy=Nt(),qy=class extends jy.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`${kH.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 jy.Vector.new(e,r)}concat(...e){return BH.Chunked.concat(this,...e)}slice(e,r){return IH.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]=jy.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){}};Zd.BaseVector=qy;qy.prototype[Symbol.isConcatSpreadable]=!0});var _y=k(Jd=>{"use strict";Object.defineProperty(Jd,"__esModule",{value:!0});Jd.BinaryVector=void 0;var xH=Nt(),SH=Pt(),EH=$e(),f1=class extends SH.BaseVector{asUtf8(){return xH.Vector.new(this.data.clone(new EH.Utf8))}};Jd.BinaryVector=f1});var vy=k(Qd=>{"use strict";Object.defineProperty(Qd,"__esModule",{value:!0});Qd.BoolVector=void 0;var AH=$e(),OH=Pt(),FH=gi(),o1=class extends OH.BaseVector{static from(e){return FH.vectorFromValuesWithType(()=>new AH.Bool,e)}};Qd.BoolVector=o1});var ky=k(Yf=>{"use strict";Object.defineProperty(Yf,"__esModule",{value:!0});Yf.DateMillisecondVector=Yf.DateDayVector=Yf.DateVector=void 0;var DH=dt(),NH=Pt(),s1=gi(),Ty=$e(),Xd=class extends NH.BaseVector{static from(...e){return e.length===2?s1.vectorFromValuesWithType(()=>e[1]===DH.DateUnit.DAY?new Ty.DateDay:new Ty.DateMillisecond,e[0]):s1.vectorFromValuesWithType(()=>new Ty.DateMillisecond,e[0])}};Yf.DateVector=Xd;var a1=class extends Xd{};Yf.DateDayVector=a1;var l1=class extends Xd{};Yf.DateMillisecondVector=l1});var By=k($d=>{"use strict";Object.defineProperty($d,"__esModule",{value:!0});$d.DecimalVector=void 0;var RH=Pt(),u1=class extends RH.BaseVector{};$d.DecimalVector=u1});var tm=k(em=>{"use strict";Object.defineProperty(em,"__esModule",{value:!0});em.DictionaryVector=void 0;var PH=Dn(),c1=Nt(),HH=Pt(),MH=gi(),zH=$e(),Iy=class extends HH.BaseVector{constructor(e){super(e);this.indices=c1.Vector.new(e.clone(this.type.indices))}static from(...e){if(e.length===3){let[r,n,i]=e,f=new zH.Dictionary(r.type,n,null,null);return c1.Vector.new(PH.Data.Dictionary(f,0,i.length,0,null,i,r))}return MH.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)}};em.DictionaryVector=Iy;Iy.prototype.indices=null});var xy=k(rm=>{"use strict";Object.defineProperty(rm,"__esModule",{value:!0});rm.FixedSizeBinaryVector=void 0;var UH=Pt(),p1=class extends UH.BaseVector{};rm.FixedSizeBinaryVector=p1});var Sy=k(nm=>{"use strict";Object.defineProperty(nm,"__esModule",{value:!0});nm.FixedSizeListVector=void 0;var LH=Pt(),d1=class extends LH.BaseVector{};nm.FixedSizeListVector=d1});var Fy=k(yi=>{"use strict";Object.defineProperty(yi,"__esModule",{value:!0});yi.Float64Vector=yi.Float32Vector=yi.Float16Vector=yi.FloatVector=void 0;var VH=Dn(),CH=Nt(),WH=Pt(),KH=gi(),Wo=$e(),Bu=class extends WH.BaseVector{static from(e){let r=ZH(this);if(e instanceof ArrayBuffer||ArrayBuffer.isView(e)){let n=GH(e.constructor)||r;if(r===null&&(r=n),r&&r===n){let i=new r,f=e.byteLength/i.ArrayType.BYTES_PER_ELEMENT;if(!YH(r,e.constructor))return CH.Vector.new(VH.Data.Float(i,0,f,0,null,e))}}if(r)return KH.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")}};yi.FloatVector=Bu;var Ey=class extends Bu{toFloat32Array(){return new Float32Array(this)}toFloat64Array(){return new Float64Array(this)}};yi.Float16Vector=Ey;var Ay=class extends Bu{};yi.Float32Vector=Ay;var Oy=class extends Bu{};yi.Float64Vector=Oy;var YH=(t,e)=>t===Wo.Float16&&e!==Uint16Array,GH=t=>{switch(t){case Uint16Array:return Wo.Float16;case Float32Array:return Wo.Float32;case Float64Array:return Wo.Float64;default:return null}},ZH=t=>{switch(t){case Ey:return Wo.Float16;case Ay:return Wo.Float32;case Oy:return Wo.Float64;default:return null}}});var Dy=k(Gf=>{"use strict";Object.defineProperty(Gf,"__esModule",{value:!0});Gf.IntervalYearMonthVector=Gf.IntervalDayTimeVector=Gf.IntervalVector=void 0;var JH=Pt(),im=class extends JH.BaseVector{};Gf.IntervalVector=im;var m1=class extends im{};Gf.IntervalDayTimeVector=m1;var w1=class extends im{};Gf.IntervalYearMonthVector=w1});var fm=k(Ct=>{"use strict";Object.defineProperty(Ct,"__esModule",{value:!0});Ct.Uint64Vector=Ct.Uint32Vector=Ct.Uint16Vector=Ct.Uint8Vector=Ct.Int64Vector=Ct.Int32Vector=Ct.Int16Vector=Ct.Int8Vector=Ct.IntVector=void 0;var QH=Dn(),XH=Nt(),$H=Pt(),e3=gi(),h1=mr(),b1=Gt(),Et=$e(),ji=class extends $H.BaseVector{static from(...e){let[r,n=!1]=e,i=n3(this,n);if(r instanceof ArrayBuffer||ArrayBuffer.isView(r)){let f=r3(r.constructor,n)||i;if(i===null&&(i=f),i&&i===f){let o=new i,s=r.byteLength/o.ArrayType.BYTES_PER_ELEMENT;return t3(i,r.constructor)&&(s*=.5),XH.Vector.new(QH.Data.Int(o,0,s,0,null,r))}}if(i)return e3.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")}};Ct.IntVector=ji;var Ny=class extends ji{};Ct.Int8Vector=Ny;var Ry=class extends ji{};Ct.Int16Vector=Ry;var Py=class extends ji{};Ct.Int32Vector=Py;var Hy=class extends ji{toBigInt64Array(){return b1.toBigInt64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigInt64Array())}};Ct.Int64Vector=Hy;var My=class extends ji{};Ct.Uint8Vector=My;var zy=class extends ji{};Ct.Uint16Vector=zy;var Uy=class extends ji{};Ct.Uint32Vector=Uy;var Ly=class extends ji{toBigUint64Array(){return b1.toBigUint64Array(this.values)}get values64(){return this._values64||(this._values64=this.toBigUint64Array())}};Ct.Uint64Vector=Ly;var t3=(t,e)=>(t===Et.Int64||t===Et.Uint64)&&(e===Int32Array||e===Uint32Array),r3=(t,e)=>{switch(t){case Int8Array:return Et.Int8;case Int16Array:return Et.Int16;case Int32Array:return e?Et.Int64:Et.Int32;case h1.BigInt64Array:return Et.Int64;case Uint8Array:return Et.Uint8;case Uint16Array:return Et.Uint16;case Uint32Array:return e?Et.Uint64:Et.Uint32;case h1.BigUint64Array:return Et.Uint64;default:return null}},n3=(t,e)=>{switch(t){case Ny:return Et.Int8;case Ry:return Et.Int16;case Py:return e?Et.Int64:Et.Int32;case Hy:return Et.Int64;case My:return Et.Uint8;case zy:return Et.Uint16;case Uy:return e?Et.Uint64:Et.Uint32;case Ly:return Et.Uint64;default:return null}}});var Vy=k(om=>{"use strict";Object.defineProperty(om,"__esModule",{value:!0});om.ListVector=void 0;var i3=Pt(),g1=class extends i3.BaseVector{};om.ListVector=g1});var Cy=k(sm=>{"use strict";Object.defineProperty(sm,"__esModule",{value:!0});sm.MapVector=void 0;var f3=mu(),o3=Nt(),s3=Pt(),a3=$e(),y1=class extends s3.BaseVector{asList(){let e=this.type.children[0];return o3.Vector.new(this.data.clone(new a3.List(e)))}bind(e){let r=this.getChildAt(0),{[e]:n,[e+1]:i}=this.valueOffsets;return new f3.MapRow(r.slice(n,i))}};sm.MapVector=y1});var Wy=k(am=>{"use strict";Object.defineProperty(am,"__esModule",{value:!0});am.NullVector=void 0;var l3=Pt(),j1=class extends l3.BaseVector{};am.NullVector=j1});var Ky=k(lm=>{"use strict";Object.defineProperty(lm,"__esModule",{value:!0});lm.StructVector=void 0;var u3=mu(),c3=Pt(),p3=Symbol.for("rowIndex"),q1=class extends c3.BaseVector{bind(e){let r=this._row||(this._row=new u3.StructRow(this)),n=Object.create(r);return n[p3]=e,n}};lm.StructVector=q1});var Yy=k(jn=>{"use strict";Object.defineProperty(jn,"__esModule",{value:!0});jn.TimestampNanosecondVector=jn.TimestampMicrosecondVector=jn.TimestampMillisecondVector=jn.TimestampSecondVector=jn.TimestampVector=void 0;var d3=Pt(),aa=class extends d3.BaseVector{};jn.TimestampVector=aa;var _1=class extends aa{};jn.TimestampSecondVector=_1;var v1=class extends aa{};jn.TimestampMillisecondVector=v1;var T1=class extends aa{};jn.TimestampMicrosecondVector=T1;var k1=class extends aa{};jn.TimestampNanosecondVector=k1});var Gy=k(qn=>{"use strict";Object.defineProperty(qn,"__esModule",{value:!0});qn.TimeNanosecondVector=qn.TimeMicrosecondVector=qn.TimeMillisecondVector=qn.TimeSecondVector=qn.TimeVector=void 0;var m3=Pt(),la=class extends m3.BaseVector{};qn.TimeVector=la;var B1=class extends la{};qn.TimeSecondVector=B1;var I1=class extends la{};qn.TimeMillisecondVector=I1;var x1=class extends la{};qn.TimeMicrosecondVector=x1;var S1=class extends la{};qn.TimeNanosecondVector=S1});var Zy=k(Zf=>{"use strict";Object.defineProperty(Zf,"__esModule",{value:!0});Zf.SparseUnionVector=Zf.DenseUnionVector=Zf.UnionVector=void 0;var w3=Pt(),um=class extends w3.BaseVector{get typeIdToChildIndex(){return this.data.type.typeIdToChildIndex}};Zf.UnionVector=um;var E1=class extends um{get valueOffsets(){return this.data.valueOffsets}};Zf.DenseUnionVector=E1;var A1=class extends um{};Zf.SparseUnionVector=A1});var Jy=k(cm=>{"use strict";Object.defineProperty(cm,"__esModule",{value:!0});cm.Utf8Vector=void 0;var h3=Nt(),b3=Pt(),O1=$e(),g3=gi(),F1=class extends b3.BaseVector{static from(e){return g3.vectorFromValuesWithType(()=>new O1.Utf8,e)}asBinary(){return h3.Vector.new(this.data.clone(new O1.Binary))}};cm.Utf8Vector=F1});var D1=k(Jf=>{"use strict";Object.defineProperty(Jf,"__esModule",{value:!0});Jf.partial2=Jf.partial1=Jf.partial0=void 0;function y3(t){return function(){return t(this)}}Jf.partial0=y3;function j3(t){return function(e){return t(this,e)}}Jf.partial1=j3;function q3(t){return function(e,r){return t(this,e,r)}}Jf.partial2=q3});var $y=k(ua=>{"use strict";Object.defineProperty(ua,"__esModule",{value:!0});ua.instance=ua.GetVisitor=void 0;var pm=au(),_3=sr(),v3=ko(),T3=iu(),_n=dt(),ye=class extends _3.Visitor{};ua.GetVisitor=ye;var k3=(t,e)=>864e5*t[e],Qy=(t,e)=>4294967296*t[e+1]+(t[e]>>>0),B3=(t,e)=>4294967296*(t[e+1]/1e3)+(t[e]>>>0)/1e3,I3=(t,e)=>4294967296*(t[e+1]/1e6)+(t[e]>>>0)/1e6,N1=t=>new Date(t),x3=(t,e)=>N1(k3(t,e)),S3=(t,e)=>N1(Qy(t,e)),E3=(t,e)=>null,R1=(t,e,r)=>{let{[r]:n,[r+1]:i}=e;return n!=null&&i!=null?t.subarray(n,i):null},A3=({offset:t,values:e},r)=>{let n=t+r;return(e[n>>3]&1<<n%8)!=0},P1=({values:t},e)=>x3(t,e),H1=({values:t},e)=>S3(t,e*2),qi=({stride:t,values:e},r)=>e[t*r],M1=({stride:t,values:e},r)=>T3.uint16ToFloat64(e[t*r]),Xy=({stride:t,values:e,type:r},n)=>pm.BN.new(e.subarray(t*n,t*(n+1)),r.isSigned),O3=({stride:t,values:e},r)=>e.subarray(t*r,t*(r+1)),F3=({values:t,valueOffsets:e},r)=>R1(t,e,r),D3=({values:t,valueOffsets:e},r)=>{let n=R1(t,e,r);return n!==null?v3.decodeUtf8(n):null},N3=(t,e)=>t.type.bitWidth<64?qi(t,e):Xy(t,e),R3=(t,e)=>t.type.precision!==_n.Precision.HALF?qi(t,e):M1(t,e),P3=(t,e)=>t.type.unit===_n.DateUnit.DAY?P1(t,e):H1(t,e),z1=({values:t},e)=>1e3*Qy(t,e*2),U1=({values:t},e)=>Qy(t,e*2),L1=({values:t},e)=>B3(t,e*2),V1=({values:t},e)=>I3(t,e*2),H3=(t,e)=>{switch(t.type.unit){case _n.TimeUnit.SECOND:return z1(t,e);case _n.TimeUnit.MILLISECOND:return U1(t,e);case _n.TimeUnit.MICROSECOND:return L1(t,e);case _n.TimeUnit.NANOSECOND:return V1(t,e)}},C1=({values:t,stride:e},r)=>t[e*r],W1=({values:t,stride:e},r)=>t[e*r],K1=({values:t},e)=>pm.BN.signed(t.subarray(2*e,2*(e+1))),Y1=({values:t},e)=>pm.BN.signed(t.subarray(2*e,2*(e+1))),M3=(t,e)=>{switch(t.type.unit){case _n.TimeUnit.SECOND:return C1(t,e);case _n.TimeUnit.MILLISECOND:return W1(t,e);case _n.TimeUnit.MICROSECOND:return K1(t,e);case _n.TimeUnit.NANOSECOND:return Y1(t,e)}},z3=({values:t},e)=>pm.BN.decimal(t.subarray(4*e,4*(e+1))),U3=(t,e)=>{let r=t.getChildAt(0),{valueOffsets:n,stride:i}=t;return r.slice(n[e*i],n[e*i+1])},L3=(t,e)=>t.bind(e),V3=(t,e)=>t.bind(e),C3=(t,e)=>t.type.mode===_n.UnionMode.Dense?G1(t,e):Z1(t,e),G1=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(t.valueOffsets[e]):null},Z1=(t,e)=>{let r=t.typeIdToChildIndex[t.typeIds[e]],n=t.getChildAt(r);return n?n.get(e):null},W3=(t,e)=>t.getValue(t.getKey(e)),K3=(t,e)=>t.type.unit===_n.IntervalUnit.DAY_TIME?J1(t,e):Q1(t,e),J1=({values:t},e)=>t.subarray(2*e,2*(e+1)),Q1=({values:t},e)=>{let r=t[e],n=new Int32Array(2);return n[0]=r/12|0,n[1]=r%12|0,n},Y3=(t,e)=>{let r=t.getChildAt(0),{stride:n}=t;return r.slice(e*n,(e+1)*n)};ye.prototype.visitNull=E3;ye.prototype.visitBool=A3;ye.prototype.visitInt=N3;ye.prototype.visitInt8=qi;ye.prototype.visitInt16=qi;ye.prototype.visitInt32=qi;ye.prototype.visitInt64=Xy;ye.prototype.visitUint8=qi;ye.prototype.visitUint16=qi;ye.prototype.visitUint32=qi;ye.prototype.visitUint64=Xy;ye.prototype.visitFloat=R3;ye.prototype.visitFloat16=M1;ye.prototype.visitFloat32=qi;ye.prototype.visitFloat64=qi;ye.prototype.visitUtf8=D3;ye.prototype.visitBinary=F3;ye.prototype.visitFixedSizeBinary=O3;ye.prototype.visitDate=P3;ye.prototype.visitDateDay=P1;ye.prototype.visitDateMillisecond=H1;ye.prototype.visitTimestamp=H3;ye.prototype.visitTimestampSecond=z1;ye.prototype.visitTimestampMillisecond=U1;ye.prototype.visitTimestampMicrosecond=L1;ye.prototype.visitTimestampNanosecond=V1;ye.prototype.visitTime=M3;ye.prototype.visitTimeSecond=C1;ye.prototype.visitTimeMillisecond=W1;ye.prototype.visitTimeMicrosecond=K1;ye.prototype.visitTimeNanosecond=Y1;ye.prototype.visitDecimal=z3;ye.prototype.visitList=U3;ye.prototype.visitStruct=V3;ye.prototype.visitUnion=C3;ye.prototype.visitDenseUnion=G1;ye.prototype.visitSparseUnion=Z1;ye.prototype.visitDictionary=W3;ye.prototype.visitInterval=K3;ye.prototype.visitIntervalDayTime=J1;ye.prototype.visitIntervalYearMonth=Q1;ye.prototype.visitFixedSizeList=Y3;ye.prototype.visitMap=L3;ua.instance=new ye});var tx=k(ca=>{"use strict";Object.defineProperty(ca,"__esModule",{value:!0});ca.instance=ca.IndexOfVisitor=void 0;var G3=sr(),X1=si(),$1=hu(),je=class extends G3.Visitor{};ca.IndexOfVisitor=je;function Z3(t,e){return e===null&&t.length>0?0:-1}function J3(t,e){let{nullBitmap:r}=t.data;if(!r||t.nullCount<=0)return-1;let n=0;for(let i of new X1.BitIterator(r,t.data.offset+(e||0),t.length,r,X1.getBool)){if(!i)return n;++n}return-1}function Fe(t,e,r){if(e===void 0)return-1;if(e===null)return J3(t,r);let n=$1.createElementComparator(e);for(let i=(r||0)-1,f=t.length;++i<f;)if(n(t.get(i)))return i;return-1}function ex(t,e,r){let n=$1.createElementComparator(e);for(let i=(r||0)-1,f=t.length;++i<f;)if(n(t.get(i)))return i;return-1}je.prototype.visitNull=Z3;je.prototype.visitBool=Fe;je.prototype.visitInt=Fe;je.prototype.visitInt8=Fe;je.prototype.visitInt16=Fe;je.prototype.visitInt32=Fe;je.prototype.visitInt64=Fe;je.prototype.visitUint8=Fe;je.prototype.visitUint16=Fe;je.prototype.visitUint32=Fe;je.prototype.visitUint64=Fe;je.prototype.visitFloat=Fe;je.prototype.visitFloat16=Fe;je.prototype.visitFloat32=Fe;je.prototype.visitFloat64=Fe;je.prototype.visitUtf8=Fe;je.prototype.visitBinary=Fe;je.prototype.visitFixedSizeBinary=Fe;je.prototype.visitDate=Fe;je.prototype.visitDateDay=Fe;je.prototype.visitDateMillisecond=Fe;je.prototype.visitTimestamp=Fe;je.prototype.visitTimestampSecond=Fe;je.prototype.visitTimestampMillisecond=Fe;je.prototype.visitTimestampMicrosecond=Fe;je.prototype.visitTimestampNanosecond=Fe;je.prototype.visitTime=Fe;je.prototype.visitTimeSecond=Fe;je.prototype.visitTimeMillisecond=Fe;je.prototype.visitTimeMicrosecond=Fe;je.prototype.visitTimeNanosecond=Fe;je.prototype.visitDecimal=Fe;je.prototype.visitList=Fe;je.prototype.visitStruct=Fe;je.prototype.visitUnion=Fe;je.prototype.visitDenseUnion=ex;je.prototype.visitSparseUnion=ex;je.prototype.visitDictionary=Fe;je.prototype.visitInterval=Fe;je.prototype.visitIntervalDayTime=Fe;je.prototype.visitIntervalYearMonth=Fe;je.prototype.visitFixedSizeList=Fe;je.prototype.visitMap=Fe;ca.instance=new je});var ej=k(pa=>{"use strict";Object.defineProperty(pa,"__esModule",{value:!0});pa.instance=pa.IteratorVisitor=void 0;var dm=dt(),Q3=sr(),X3=si(),rx=$y(),qe=class extends Q3.Visitor{};pa.IteratorVisitor=qe;function $3(t){let e=rx.instance.getVisitFn(t);return new X3.BitIterator(t.data.nullBitmap,t.data.offset,t.length,t,(r,n,i,f)=>(i&1<<f)!=0?e(r,n):null)}var nx=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 Se(t){if(t.nullCount>0)return $3(t);let{type:e,typeId:r,length:n}=t;return t.stride===1&&(r===dm.Type.Timestamp||r===dm.Type.Int&&e.bitWidth!==64||r===dm.Type.Time&&e.bitWidth!==64||r===dm.Type.Float&&e.precision>0)?t.data.values.subarray(0,n)[Symbol.iterator]():new nx(t,rx.instance.getVisitFn(t))}qe.prototype.visitNull=Se;qe.prototype.visitBool=Se;qe.prototype.visitInt=Se;qe.prototype.visitInt8=Se;qe.prototype.visitInt16=Se;qe.prototype.visitInt32=Se;qe.prototype.visitInt64=Se;qe.prototype.visitUint8=Se;qe.prototype.visitUint16=Se;qe.prototype.visitUint32=Se;qe.prototype.visitUint64=Se;qe.prototype.visitFloat=Se;qe.prototype.visitFloat16=Se;qe.prototype.visitFloat32=Se;qe.prototype.visitFloat64=Se;qe.prototype.visitUtf8=Se;qe.prototype.visitBinary=Se;qe.prototype.visitFixedSizeBinary=Se;qe.prototype.visitDate=Se;qe.prototype.visitDateDay=Se;qe.prototype.visitDateMillisecond=Se;qe.prototype.visitTimestamp=Se;qe.prototype.visitTimestampSecond=Se;qe.prototype.visitTimestampMillisecond=Se;qe.prototype.visitTimestampMicrosecond=Se;qe.prototype.visitTimestampNanosecond=Se;qe.prototype.visitTime=Se;qe.prototype.visitTimeSecond=Se;qe.prototype.visitTimeMillisecond=Se;qe.prototype.visitTimeMicrosecond=Se;qe.prototype.visitTimeNanosecond=Se;qe.prototype.visitDecimal=Se;qe.prototype.visitList=Se;qe.prototype.visitStruct=Se;qe.prototype.visitUnion=Se;qe.prototype.visitDenseUnion=Se;qe.prototype.visitSparseUnion=Se;qe.prototype.visitDictionary=Se;qe.prototype.visitInterval=Se;qe.prototype.visitIntervalDayTime=Se;qe.prototype.visitIntervalYearMonth=Se;qe.prototype.visitFixedSizeList=Se;qe.prototype.visitMap=Se;pa.instance=new qe});var ix=k(da=>{"use strict";Object.defineProperty(da,"__esModule",{value:!0});da.instance=da.ToArrayVisitor=void 0;var Iu=dt(),eM=sr(),tM=ej(),_e=class extends eM.Visitor{};da.ToArrayVisitor=_e;function Ee(t){let{type:e,length:r,stride:n}=t;switch(e.typeId){case Iu.Type.Int:case Iu.Type.Float:case Iu.Type.Decimal:case Iu.Type.Time:case Iu.Type.Timestamp:return t.data.values.subarray(0,r*n)}return[...tM.instance.visit(t)]}_e.prototype.visitNull=Ee;_e.prototype.visitBool=Ee;_e.prototype.visitInt=Ee;_e.prototype.visitInt8=Ee;_e.prototype.visitInt16=Ee;_e.prototype.visitInt32=Ee;_e.prototype.visitInt64=Ee;_e.prototype.visitUint8=Ee;_e.prototype.visitUint16=Ee;_e.prototype.visitUint32=Ee;_e.prototype.visitUint64=Ee;_e.prototype.visitFloat=Ee;_e.prototype.visitFloat16=Ee;_e.prototype.visitFloat32=Ee;_e.prototype.visitFloat64=Ee;_e.prototype.visitUtf8=Ee;_e.prototype.visitBinary=Ee;_e.prototype.visitFixedSizeBinary=Ee;_e.prototype.visitDate=Ee;_e.prototype.visitDateDay=Ee;_e.prototype.visitDateMillisecond=Ee;_e.prototype.visitTimestamp=Ee;_e.prototype.visitTimestampSecond=Ee;_e.prototype.visitTimestampMillisecond=Ee;_e.prototype.visitTimestampMicrosecond=Ee;_e.prototype.visitTimestampNanosecond=Ee;_e.prototype.visitTime=Ee;_e.prototype.visitTimeSecond=Ee;_e.prototype.visitTimeMillisecond=Ee;_e.prototype.visitTimeMicrosecond=Ee;_e.prototype.visitTimeNanosecond=Ee;_e.prototype.visitDecimal=Ee;_e.prototype.visitList=Ee;_e.prototype.visitStruct=Ee;_e.prototype.visitUnion=Ee;_e.prototype.visitDenseUnion=Ee;_e.prototype.visitSparseUnion=Ee;_e.prototype.visitDictionary=Ee;_e.prototype.visitInterval=Ee;_e.prototype.visitIntervalDayTime=Ee;_e.prototype.visitIntervalYearMonth=Ee;_e.prototype.visitFixedSizeList=Ee;_e.prototype.visitMap=Ee;da.instance=new _e});var fx=k(ma=>{"use strict";Object.defineProperty(ma,"__esModule",{value:!0});ma.instance=ma.ByteWidthVisitor=void 0;var rM=sr(),nM=dt(),xu=(t,e)=>t+e,tj=t=>`Cannot compute the byte width of variable-width column ${t}`,rj=class extends rM.Visitor{visitNull(e){return 0}visitInt(e){return e.bitWidth/8}visitFloat(e){return e.ArrayType.BYTES_PER_ELEMENT}visitBinary(e){throw new Error(tj(e))}visitUtf8(e){throw new Error(tj(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===nM.TimeUnit.SECOND?4:8}visitInterval(e){return(e.unit+1)*4}visitList(e){throw new Error(tj(e))}visitStruct(e){return this.visitFields(e.children).reduce(xu,0)}visitUnion(e){return this.visitFields(e.children).reduce(xu,0)}visitFixedSizeBinary(e){return e.byteWidth}visitFixedSizeList(e){return e.listSize*this.visitFields(e.children).reduce(xu,0)}visitMap(e){return this.visitFields(e.children).reduce(xu,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(xu,0)}};ma.ByteWidthVisitor=rj;ma.instance=new rj});var ox=k(wa=>{"use strict";Object.defineProperty(wa,"__esModule",{value:!0});wa.instance=wa.GetVectorConstructor=void 0;var iM=sr(),fM=_y(),oM=vy(),nj=ky(),sM=By(),aM=tm(),lM=xy(),uM=Sy(),mm=Fy(),ij=Dy(),Xi=fm(),cM=Vy(),pM=Cy(),dM=Wy(),mM=Ky(),Su=Yy(),Eu=Gy(),fj=Zy(),wM=Jy(),oj=class extends iM.Visitor{visitNull(){return dM.NullVector}visitBool(){return oM.BoolVector}visitInt(){return Xi.IntVector}visitInt8(){return Xi.Int8Vector}visitInt16(){return Xi.Int16Vector}visitInt32(){return Xi.Int32Vector}visitInt64(){return Xi.Int64Vector}visitUint8(){return Xi.Uint8Vector}visitUint16(){return Xi.Uint16Vector}visitUint32(){return Xi.Uint32Vector}visitUint64(){return Xi.Uint64Vector}visitFloat(){return mm.FloatVector}visitFloat16(){return mm.Float16Vector}visitFloat32(){return mm.Float32Vector}visitFloat64(){return mm.Float64Vector}visitUtf8(){return wM.Utf8Vector}visitBinary(){return fM.BinaryVector}visitFixedSizeBinary(){return lM.FixedSizeBinaryVector}visitDate(){return nj.DateVector}visitDateDay(){return nj.DateDayVector}visitDateMillisecond(){return nj.DateMillisecondVector}visitTimestamp(){return Su.TimestampVector}visitTimestampSecond(){return Su.TimestampSecondVector}visitTimestampMillisecond(){return Su.TimestampMillisecondVector}visitTimestampMicrosecond(){return Su.TimestampMicrosecondVector}visitTimestampNanosecond(){return Su.TimestampNanosecondVector}visitTime(){return Eu.TimeVector}visitTimeSecond(){return Eu.TimeSecondVector}visitTimeMillisecond(){return Eu.TimeMillisecondVector}visitTimeMicrosecond(){return Eu.TimeMicrosecondVector}visitTimeNanosecond(){return Eu.TimeNanosecondVector}visitDecimal(){return sM.DecimalVector}visitList(){return cM.ListVector}visitStruct(){return mM.StructVector}visitUnion(){return fj.UnionVector}visitDenseUnion(){return fj.DenseUnionVector}visitSparseUnion(){return fj.SparseUnionVector}visitDictionary(){return aM.DictionaryVector}visitInterval(){return ij.IntervalVector}visitIntervalDayTime(){return ij.IntervalDayTimeVector}visitIntervalYearMonth(){return ij.IntervalYearMonthVector}visitFixedSizeList(){return uM.FixedSizeListVector}visitMap(){return pM.MapVector}};wa.GetVectorConstructor=oj;wa.instance=new oj});var gi=k(V=>{"use strict";Object.defineProperty(V,"__esModule",{value:!0});V.vectorFromValuesWithType=V.StructRow=V.MapRow=V.Utf8Vector=V.SparseUnionVector=V.DenseUnionVector=V.UnionVector=V.TimeNanosecondVector=V.TimeMicrosecondVector=V.TimeMillisecondVector=V.TimeSecondVector=V.TimeVector=V.TimestampNanosecondVector=V.TimestampMicrosecondVector=V.TimestampMillisecondVector=V.TimestampSecondVector=V.TimestampVector=V.StructVector=V.NullVector=V.MapVector=V.ListVector=V.Uint64Vector=V.Uint32Vector=V.Uint16Vector=V.Uint8Vector=V.Int64Vector=V.Int32Vector=V.Int16Vector=V.Int8Vector=V.IntVector=V.IntervalYearMonthVector=V.IntervalDayTimeVector=V.IntervalVector=V.Float64Vector=V.Float32Vector=V.Float16Vector=V.FloatVector=V.FixedSizeListVector=V.FixedSizeBinaryVector=V.DictionaryVector=V.DecimalVector=V.DateMillisecondVector=V.DateDayVector=V.DateVector=V.Chunked=V.BoolVector=V.BinaryVector=V.BaseVector=V.Vector=void 0;var hM=Nt();Object.defineProperty(V,"Vector",{enumerable:!0,get:function(){return hM.Vector}});var bM=Pt();Object.defineProperty(V,"BaseVector",{enumerable:!0,get:function(){return bM.BaseVector}});var gM=_y();Object.defineProperty(V,"BinaryVector",{enumerable:!0,get:function(){return gM.BinaryVector}});var yM=vy();Object.defineProperty(V,"BoolVector",{enumerable:!0,get:function(){return yM.BoolVector}});var jM=Lf();Object.defineProperty(V,"Chunked",{enumerable:!0,get:function(){return jM.Chunked}});var sj=ky();Object.defineProperty(V,"DateVector",{enumerable:!0,get:function(){return sj.DateVector}});Object.defineProperty(V,"DateDayVector",{enumerable:!0,get:function(){return sj.DateDayVector}});Object.defineProperty(V,"DateMillisecondVector",{enumerable:!0,get:function(){return sj.DateMillisecondVector}});var qM=By();Object.defineProperty(V,"DecimalVector",{enumerable:!0,get:function(){return qM.DecimalVector}});var _M=tm();Object.defineProperty(V,"DictionaryVector",{enumerable:!0,get:function(){return _M.DictionaryVector}});var vM=xy();Object.defineProperty(V,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return vM.FixedSizeBinaryVector}});var TM=Sy();Object.defineProperty(V,"FixedSizeListVector",{enumerable:!0,get:function(){return TM.FixedSizeListVector}});var wm=Fy();Object.defineProperty(V,"FloatVector",{enumerable:!0,get:function(){return wm.FloatVector}});Object.defineProperty(V,"Float16Vector",{enumerable:!0,get:function(){return wm.Float16Vector}});Object.defineProperty(V,"Float32Vector",{enumerable:!0,get:function(){return wm.Float32Vector}});Object.defineProperty(V,"Float64Vector",{enumerable:!0,get:function(){return wm.Float64Vector}});var aj=Dy();Object.defineProperty(V,"IntervalVector",{enumerable:!0,get:function(){return aj.IntervalVector}});Object.defineProperty(V,"IntervalDayTimeVector",{enumerable:!0,get:function(){return aj.IntervalDayTimeVector}});Object.defineProperty(V,"IntervalYearMonthVector",{enumerable:!0,get:function(){return aj.IntervalYearMonthVector}});var $i=fm();Object.defineProperty(V,"IntVector",{enumerable:!0,get:function(){return $i.IntVector}});Object.defineProperty(V,"Int8Vector",{enumerable:!0,get:function(){return $i.Int8Vector}});Object.defineProperty(V,"Int16Vector",{enumerable:!0,get:function(){return $i.Int16Vector}});Object.defineProperty(V,"Int32Vector",{enumerable:!0,get:function(){return $i.Int32Vector}});Object.defineProperty(V,"Int64Vector",{enumerable:!0,get:function(){return $i.Int64Vector}});Object.defineProperty(V,"Uint8Vector",{enumerable:!0,get:function(){return $i.Uint8Vector}});Object.defineProperty(V,"Uint16Vector",{enumerable:!0,get:function(){return $i.Uint16Vector}});Object.defineProperty(V,"Uint32Vector",{enumerable:!0,get:function(){return $i.Uint32Vector}});Object.defineProperty(V,"Uint64Vector",{enumerable:!0,get:function(){return $i.Uint64Vector}});var kM=Vy();Object.defineProperty(V,"ListVector",{enumerable:!0,get:function(){return kM.ListVector}});var BM=Cy();Object.defineProperty(V,"MapVector",{enumerable:!0,get:function(){return BM.MapVector}});var IM=Wy();Object.defineProperty(V,"NullVector",{enumerable:!0,get:function(){return IM.NullVector}});var xM=Ky();Object.defineProperty(V,"StructVector",{enumerable:!0,get:function(){return xM.StructVector}});var Au=Yy();Object.defineProperty(V,"TimestampVector",{enumerable:!0,get:function(){return Au.TimestampVector}});Object.defineProperty(V,"TimestampSecondVector",{enumerable:!0,get:function(){return Au.TimestampSecondVector}});Object.defineProperty(V,"TimestampMillisecondVector",{enumerable:!0,get:function(){return Au.TimestampMillisecondVector}});Object.defineProperty(V,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return Au.TimestampMicrosecondVector}});Object.defineProperty(V,"TimestampNanosecondVector",{enumerable:!0,get:function(){return Au.TimestampNanosecondVector}});var Ou=Gy();Object.defineProperty(V,"TimeVector",{enumerable:!0,get:function(){return Ou.TimeVector}});Object.defineProperty(V,"TimeSecondVector",{enumerable:!0,get:function(){return Ou.TimeSecondVector}});Object.defineProperty(V,"TimeMillisecondVector",{enumerable:!0,get:function(){return Ou.TimeMillisecondVector}});Object.defineProperty(V,"TimeMicrosecondVector",{enumerable:!0,get:function(){return Ou.TimeMicrosecondVector}});Object.defineProperty(V,"TimeNanosecondVector",{enumerable:!0,get:function(){return Ou.TimeNanosecondVector}});var lj=Zy();Object.defineProperty(V,"UnionVector",{enumerable:!0,get:function(){return lj.UnionVector}});Object.defineProperty(V,"DenseUnionVector",{enumerable:!0,get:function(){return lj.DenseUnionVector}});Object.defineProperty(V,"SparseUnionVector",{enumerable:!0,get:function(){return lj.SparseUnionVector}});var SM=Jy();Object.defineProperty(V,"Utf8Vector",{enumerable:!0,get:function(){return SM.Utf8Vector}});var sx=mu();Object.defineProperty(V,"MapRow",{enumerable:!0,get:function(){return sx.MapRow}});Object.defineProperty(V,"StructRow",{enumerable:!0,get:function(){return sx.StructRow}});var Fu=D1(),uj=dt(),ha=Nt(),ax=Lf(),Ko=Pt(),EM=si(),hm=mr(),lx=It(),ux=$y(),cx=Bg(),px=tx(),dx=ix(),mx=ej(),wx=fx(),hx=ox();ha.Vector.new=AM;ha.Vector.from=FM;function AM(t,...e){return new(hx.instance.getVisitFn(t)())(t,...e)}function OM(t,e){if(hm.isIterable(e))return ha.Vector.from({nullValues:[null,void 0],type:t(),values:e});if(hm.isAsyncIterable(e))return ha.Vector.from({nullValues:[null,void 0],type:t(),values:e});let{values:r=[],type:n=t(),nullValues:i=[null,void 0]}={...e};return hm.isIterable(r)?ha.Vector.from({nullValues:i,...e,type:n}):ha.Vector.from({nullValues:i,...e,type:n})}V.vectorFromValuesWithType=OM;function FM(t){let{values:e=[],...r}={nullValues:[null,void 0],...t};if(hm.isIterable(e)){let n=[...lx.Builder.throughIterable(r)(e)];return n.length===1?n[0]:ax.Chunked.concat(n)}return(async n=>{let i=lx.Builder.throughAsyncIterable(r);for await(let f of i(e))n.push(f);return n.length===1?n[0]:ax.Chunked.concat(n)})([])}Ko.BaseVector.prototype.get=function(e){return ux.instance.visit(this,e)};Ko.BaseVector.prototype.set=function(e,r){return cx.instance.visit(this,e,r)};Ko.BaseVector.prototype.indexOf=function(e,r){return px.instance.visit(this,e,r)};Ko.BaseVector.prototype.toArray=function(){return dx.instance.visit(this)};Ko.BaseVector.prototype.getByteWidth=function(){return wx.instance.visit(this.type)};Ko.BaseVector.prototype[Symbol.iterator]=function(){return mx.instance.visit(this)};Ko.BaseVector.prototype._bindDataAccessors=PM;Object.keys(uj.Type).map(t=>uj.Type[t]).filter(t=>typeof t=="number").filter(t=>t!==uj.Type.NONE).forEach(t=>{let e=hx.instance.visit(t);e.prototype.get=Fu.partial1(ux.instance.getVisitFn(t)),e.prototype.set=Fu.partial2(cx.instance.getVisitFn(t)),e.prototype.indexOf=Fu.partial2(px.instance.getVisitFn(t)),e.prototype.toArray=Fu.partial0(dx.instance.getVisitFn(t)),e.prototype.getByteWidth=DM(wx.instance.getVisitFn(t)),e.prototype[Symbol.iterator]=Fu.partial0(mx.instance.getVisitFn(t))});function DM(t){return function(){return t(this.type)}}function NM(t){return function(e){return this.isValid(e)?t.call(this,e):null}}function RM(t){return function(e,r){EM.setBool(this.nullBitmap,this.offset+e,r!=null)&&t.call(this,e,r)}}function PM(){let t=this.nullBitmap;t&&t.byteLength>0&&(this.get=NM(this.get),this.set=RM(this.set))}});var ku=k(bm=>{"use strict";Object.defineProperty(bm,"__esModule",{value:!0});bm.Table=void 0;var HM=ra(),bx=er(),cj=Qi(),MM=Du(),pj=$e(),gx=ta(),dj=mr(),yx=Gd(),jx=yy(),mj=gi(),rr=class extends mj.Chunked{constructor(...e){let r=null;e[0]instanceof bx.Schema&&(r=e.shift());let n=gx.selectArgs(cj.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 cj._InternalEmptyPlaceholderRecordBatch(r));super(new pj.Struct(r.fields),n);this._schema=r,this._chunks=n}static empty(e=new bx.Schema([])){return new rr(e,[])}static from(e){if(!e)return rr.empty();if(typeof e=="object"){let n=dj.isIterable(e.values)?zM(e):dj.isAsyncIterable(e.values)?UM(e):null;if(n!==null)return n}let r=MM.RecordBatchReader.from(e);return dj.isPromise(r)?(async()=>await rr.from(await r))():r.isSync()&&(r=r.open())?r.schema?new rr(r.schema,[...r]):rr.empty():(async n=>{let i=await n,f=i.schema,o=[];if(f){for await(let s of i)o.push(s);return new rr(f,o)}return rr.empty()})(r.open())}static async fromAsync(e){return await rr.from(e)}static fromStruct(e){return rr.new(e.data.childData,e.type.children)}static new(...e){return new rr(...jx.distributeColumnsIntoRecordBatches(gx.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 rr(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,f=this._children||(this._children=[]);if(n=f[e])return n;if(r=i[e]){let o=this._chunks.map(s=>s.getChildAt(e)).filter(s=>s!=null);if(o.length>0)return f[e]=new HM.Column(r,o)}return null}serialize(e="binary",r=!0){return(r?yx.RecordBatchStreamWriter:yx.RecordBatchFileWriter).writeAll(this).toUint8Array(!0)}count(){return this._length}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);return new rr(r,this._chunks.map(({length:n,data:{childData:i}})=>new cj.RecordBatch(r,n,e.map(f=>i[f]).filter(Boolean))))}assign(e){let r=this._schema.fields,[n,i]=e.schema.fields.reduce((s,u,l)=>{let[c,w]=s,p=r.findIndex(g=>g.name===u.name);return~p?w[p]=l:c.push(l),s},[[],[]]),f=this._schema.assign(e.schema),o=[...r.map((s,u,l,c=i[u])=>c===void 0?this.getColumnAt(u):e.getColumnAt(c)),...n.map(s=>e.getColumnAt(s))].filter(Boolean);return new rr(...jx.distributeVectorsIntoRecordBatches(f,o))}};bm.Table=rr;function zM(t){let{type:e}=t;return e instanceof pj.Struct?rr.fromStruct(mj.StructVector.from(t)):null}function UM(t){let{type:e}=t;return e instanceof pj.Struct?mj.StructVector.from(t).then(r=>rr.fromStruct(r)):null}});var Qi=k(ba=>{"use strict";Object.defineProperty(ba,"__esModule",{value:!0});ba._InternalEmptyPlaceholderRecordBatch=ba.RecordBatch=void 0;var wj=Dn(),hj=ku(),LM=Nt(),VM=sr(),CM=er(),WM=mr(),KM=Lf(),YM=ta(),bj=$e(),GM=yy(),ZM=gi(),Qf=class extends ZM.StructVector{constructor(...e){let r,n=e[0],i;if(e[1]instanceof wj.Data)[,r,i]=e;else{let f=n.fields,[,o,s]=e;r=wj.Data.Struct(new bj.Struct(f),0,o,0,null,s)}super(r,i);this._schema=n}static from(e){return WM.isIterable(e.values),hj.Table.from(e)}static new(...e){let[r,n]=YM.selectFieldArgs(e),i=n.filter(f=>f instanceof LM.Vector);return new Qf(...GM.ensureSameLengthData(new CM.Schema(r),i.map(f=>f.data)))}clone(e,r=this._children){return new Qf(this._schema,e,r)}concat(...e){let r=this._schema,n=KM.Chunked.flatten(this,...e);return new hj.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=gm.collect(this))}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=e.map(i=>this.data.childData[i]).filter(Boolean);return new Qf(r,this.length,n)}};ba.RecordBatch=Qf;var qx=class extends Qf{constructor(e){super(e,0,e.fields.map(r=>wj.Data.new(r.type,0,0,0)))}};ba._InternalEmptyPlaceholderRecordBatch=qx;var gm=class extends VM.Visitor{constructor(){super(...arguments);this.dictionaries=new Map}static collect(e){return new gm().visit(e.data,new bj.Struct(e.schema.fields)).dictionaries}visit(e,r){return bj.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 Du=k(kn=>{"use strict";Object.defineProperty(kn,"__esModule",{value:!0});kn.AsyncRecordBatchFileReader=kn.RecordBatchFileReader=kn.AsyncRecordBatchStreamReader=kn.RecordBatchStreamReader=kn.RecordBatchReader=void 0;var _x=Nt(),ym=dt(),vx=Pg(),Tx=ru(),kx=Hf(),Nu=zg(),Bx=iI(),gj=Qi(),Yo=Es(),vn=Pd(),Tn=mr(),_i=class extends Yo.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 Tn.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 Tx.default.toDOMStream(this.isSync()?{[Symbol.iterator]:()=>this}:{[Symbol.asyncIterator]:()=>this})}toNodeStream(){return Tx.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 _i?e:Tn.isArrowJSON(e)?JM(e):Tn.isFileHandle(e)?$M(e):Tn.isPromise(e)?(async()=>await _i.from(await e))():Tn.isFetchResponse(e)||Tn.isReadableDOMStream(e)||Tn.isReadableNodeStream(e)||Tn.isAsyncIterable(e)?XM(new kx.AsyncByteStream(e)):QM(new kx.ByteStream(e))}static readAll(e){return e instanceof _i?e.isSync()?Ex(e):Ax(e):Tn.isArrowJSON(e)||ArrayBuffer.isView(e)||Tn.isIterable(e)||Tn.isIteratorResult(e)?Ex(e):Ax(e)}};kn.RecordBatchReader=_i;var ga=class extends _i{constructor(e){super(e);this._impl=e}[Symbol.iterator](){return this._impl[Symbol.iterator]()}async*[Symbol.asyncIterator](){yield*this[Symbol.iterator]()}};kn.RecordBatchStreamReader=ga;var ya=class extends _i{constructor(e){super(e);this._impl=e}[Symbol.iterator](){throw new Error("AsyncRecordBatchStreamReader is not Iterable")}[Symbol.asyncIterator](){return this._impl[Symbol.asyncIterator]()}};kn.AsyncRecordBatchStreamReader=ya;var jm=class extends ga{constructor(e){super(e);this._impl=e}};kn.RecordBatchFileReader=jm;var yj=class extends ya{constructor(e){super(e);this._impl=e}};kn.AsyncRecordBatchFileReader=yj;var jj=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 gj.RecordBatch(this.schema,e.length,this._loadVectors(e,r,this.schema.fields))}_loadDictionaryBatch(e,r){let{id:n,isDelta:i,data:f}=e,{dictionaries:o,schema:s}=this,u=o.get(n);if(i||!u){let l=s.dictionaries.get(n);return u&&i?u.concat(_x.Vector.new(this._loadVectors(f,r,[l])[0])):_x.Vector.new(this._loadVectors(f,r,[l])[0])}return u}_loadVectors(e,r,n){return new Bx.VectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}},Ru=class extends jj{constructor(e,r){super(r);this._reader=Tn.isArrowJSON(e)?new vn.JSONMessageReader(this._handle=e):new vn.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=Sx(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):Yo.ITERATOR_DONE}return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?this.reset()._reader.return(e):Yo.ITERATOR_DONE}next(){if(this.closed)return Yo.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),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 gj._InternalEmptyPlaceholderRecordBatch(this.schema)}):this.return()}_readNextMessageAndValidate(e){return this._reader.readMessage(e)}},Pu=class extends jj{constructor(e,r){super(r);this._reader=new vn.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=Sx(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):Yo.ITERATOR_DONE}async return(e){return!this.closed&&this.autoDestroy&&(this.closed=!0)?await this.reset()._reader.return(e):Yo.ITERATOR_DONE}async next(){if(this.closed)return Yo.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),f=this._loadRecordBatch(n,i);return{done:!1,value:f}}else if(e.isDictionaryBatch()){this._dictionaryIndex++;let n=e.header(),i=await 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 gj._InternalEmptyPlaceholderRecordBatch(this.schema)}):await this.return()}async _readNextMessageAndValidate(e){return await this._reader.readMessage(e)}},qj=class extends Ru{constructor(e,r){super(e instanceof Nu.RandomAccessFile?e:new Nu.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(ym.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),f=this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,f)}}return null}_readDictionaryBatch(e){let r=this._footer&&this._footer.getDictionaryBatch(e);if(r&&this._handle.seek(r.offset)){let n=this._reader.readMessage(ym.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),f=this._reader.readMessageBody(n.bodyLength),o=this._loadDictionaryBatch(i,f);this.dictionaries.set(i.id,o)}}}_readFooter(){let{_handle:e}=this,r=e.size-vn.magicAndPadding,n=e.readInt32(r),i=e.readAt(r-n,n);return vx.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}},Ix=class extends Pu{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 Nu.AsyncRandomAccessFile?e:new Nu.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(ym.MessageHeader.RecordBatch);if(n&&n.isRecordBatch()){let i=n.header(),f=await this._reader.readMessageBody(n.bodyLength);return this._loadRecordBatch(i,f)}}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(ym.MessageHeader.DictionaryBatch);if(n&&n.isDictionaryBatch()){let i=n.header(),f=await this._reader.readMessageBody(n.bodyLength),o=this._loadDictionaryBatch(i,f);this.dictionaries.set(i.id,o)}}}async _readFooter(){let{_handle:e}=this;e._pending&&await e._pending;let r=e.size-vn.magicAndPadding,n=await e.readInt32(r),i=await e.readAt(r-n,n);return vx.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}},xx=class extends Ru{constructor(e,r){super(e,r)}_loadVectors(e,r,n){return new Bx.JSONVectorLoader(r,e.nodes,e.buffers,this.dictionaries).visitMany(n)}};function Sx(t,e){return e&&typeof e.autoDestroy=="boolean"?e.autoDestroy:t.autoDestroy}function*Ex(t){let e=_i.from(t);try{if(!e.open({autoDestroy:!1}).closed)do yield e;while(!e.reset().open().closed)}finally{e.cancel()}}async function*Ax(t){let e=await _i.from(t);try{if(!(await e.open({autoDestroy:!1})).closed)do yield e;while(!(await e.reset().open()).closed)}finally{await e.cancel()}}function JM(t){return new ga(new xx(t))}function QM(t){let e=t.peek(vn.magicLength+7&~7);return e&&e.byteLength>=4?vn.checkForMagicArrowString(e)?new jm(new qj(t.read())):new ga(new Ru(t)):new ga(new Ru(function*(){}()))}async function XM(t){let e=await t.peek(vn.magicLength+7&~7);return e&&e.byteLength>=4?vn.checkForMagicArrowString(e)?new jm(new qj(await t.read())):new ya(new Pu(t)):new ya(new Pu(async function*(){}()))}async function $M(t){let{size:e}=await t.stat(),r=new Nu.AsyncRandomAccessFile(t,e);return e>=vn.magicX2AndPadding&&vn.checkForMagicArrowString(await r.readAt(0,vn.magicLength+7&~7))?new yj(new Ix(r)):new ya(new Pu(r))}});var Dx=k(qm=>{"use strict";Object.defineProperty(qm,"__esModule",{value:!0});qm.toDOMStream=void 0;var Ox=Gt(),Fx=mr();function ez(t,e){if(Fx.isAsyncIterable(t))return rz(t,e);if(Fx.isIterable(t))return tz(t,e);throw new Error("toDOMStream() must be called with an Iterable or AsyncIterable")}qm.toDOMStream=ez;function tz(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,start(o){f(o,r||(r=t[Symbol.iterator]()))},pull(o){r?f(o,r):o.close()},cancel(){(r&&r.return&&r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});function f(o,s){let u,l=null,c=o.desiredSize||null;for(;!(l=s.next(n?c:null)).done;)if(ArrayBuffer.isView(l.value)&&(u=Ox.toUint8Array(l.value))&&(c!=null&&n&&(c=c-u.byteLength+1),l.value=u),o.enqueue(l.value),c!=null&&--c<=0)return;o.close()}}function rz(t,e){let r=null,n=e&&e.type==="bytes"||!1,i=e&&e.highWaterMark||2**24;return new ReadableStream({...e,async start(o){await f(o,r||(r=t[Symbol.asyncIterator]()))},async pull(o){r?await f(o,r):o.close()},async cancel(){(r&&r.return&&await r.return()||!0)&&(r=null)}},{highWaterMark:n?i:void 0,...e});async function f(o,s){let u,l=null,c=o.desiredSize||null;for(;!(l=await s.next(n?c:null)).done;)if(ArrayBuffer.isView(l.value)&&(u=Ox.toUint8Array(l.value))&&(c!=null&&n&&(c=c-u.byteLength+1),l.value=u),o.enqueue(l.value),c!=null&&--c<=0)return;o.close()}}});var Px=k(ja=>{"use strict";Object.defineProperty(ja,"__esModule",{value:!0});ja.BuilderTransform=ja.builderThroughDOMStream=void 0;var nz=vd();function iz(t){return new _j(t)}ja.builderThroughDOMStream=iz;var _j=class{constructor(e){this._numChunks=0,this._finished=!1,this._bufferedSize=0;let{["readableStrategy"]:r,["writableStrategy"]:n,["queueingStrategy"]:i="count",...f}=e;this._controller=null,this._builder=nz.Builder.new(f),this._getSize=i!=="bytes"?Nx:Rx;let{["highWaterMark"]:o=i==="bytes"?2**14:1e3}={...r},{["highWaterMark"]:s=i==="bytes"?2**14:1e3}={...n};this.readable=new ReadableStream({cancel:()=>{this._builder.clear()},pull:u=>{this._maybeFlush(this._builder,this._controller=u)},start:u=>{this._maybeFlush(this._builder,this._controller=u)}},{highWaterMark:o,size:i!=="bytes"?Nx:Rx}),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:u=>this._writeValueAndReturnChunkSize(u)})}_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)}};ja.BuilderTransform=_j;var Nx=t=>t.length,Rx=t=>t.byteLength});var Hx=k(_m=>{"use strict";Object.defineProperty(_m,"__esModule",{value:!0});_m.recordBatchReaderThroughDOMStream=void 0;var fz=Hf(),oz=Du();function sz(t,e){let r=new fz.AsyncByteQueue,n=null,i=new ReadableStream({async cancel(){await r.close()},async start(s){await o(s,n||(n=await f()))},async pull(s){n?await o(s,n):s.close()}});return{writable:new WritableStream(r,{highWaterMark:2**14,...t}),readable:i};async function f(){return await(await oz.RecordBatchReader.from(r)).open(e)}async function o(s,u){let l=s.desiredSize,c=null;for(;!(c=await u.next()).done;)if(s.enqueue(c.value),l!=null&&--l<=0)return;s.close()}}_m.recordBatchReaderThroughDOMStream=sz});var Mx=k(vm=>{"use strict";Object.defineProperty(vm,"__esModule",{value:!0});vm.recordBatchWriterThroughDOMStream=void 0;var az=Hf();function lz(t,e){let r=new this(t),n=new az.AsyncByteStream(r),i=new ReadableStream({type:"bytes",async cancel(){await n.cancel()},async pull(o){await f(o)},async start(o){await f(o)}},{highWaterMark:2**14,...e});return{writable:new WritableStream(r,t),readable:i};async function f(o){let s=null,u=o.desiredSize;for(;s=await n.read(u||null);)if(o.enqueue(s),u!=null&&(u-=s.byteLength)<=0)return;o.close()}}vm.recordBatchWriterThroughDOMStream=lz});var xj=k(He=>{"use strict";Object.defineProperty(He,"__esModule",{value:!0});He.custom=He.or=He.and=He.col=He.lit=He.CustomPredicate=He.Not=He.GTeq=He.LTeq=He.Equals=He.Or=He.And=He.CombinationPredicate=He.ComparisonPredicate=He.Predicate=He.Col=He.Literal=He.Value=void 0;var uz=tm(),Xf=class{eq(e){return e instanceof Xf||(e=new ef(e)),new Tj(this,e)}le(e){return e instanceof Xf||(e=new ef(e)),new kj(this,e)}ge(e){return e instanceof Xf||(e=new ef(e)),new Bj(this,e)}lt(e){return new Ta(this.ge(e))}gt(e){return new Ta(this.le(e))}ne(e){return new Ta(this.eq(e))}};He.Value=Xf;var ef=class extends Xf{constructor(e){super();this.v=e}};He.Literal=ef;var vj=class extends Xf{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)}};He.Col=vj;var qa=class{and(...e){return new _a(this,...e)}or(...e){return new va(this,...e)}not(){return new Ta(this)}};He.Predicate=qa;var Hu=class extends qa{constructor(e,r){super();this.left=e,this.right=r}bind(e){return this.left instanceof ef?this.right instanceof ef?this._bindLitLit(e,this.left,this.right):this._bindLitCol(e,this.left,this.right):this.right instanceof ef?this._bindColLit(e,this.left,this.right):this._bindColCol(e,this.left,this.right)}};He.ComparisonPredicate=Hu;var Mu=class extends qa{constructor(...e){super();this.children=e}};He.CombinationPredicate=Mu;Mu.prototype.children=Object.freeze([]);var _a=class extends Mu{constructor(...e){e=e.reduce((r,n)=>r.concat(n instanceof _a?n.children:n),[]);super(...e)}bind(e){let r=this.children.map(n=>n.bind(e));return(n,i)=>r.every(f=>f(n,i))}};He.And=_a;var va=class extends Mu{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.some(f=>f(n,i))}};He.Or=va;var Tj=class extends Hu{_bindLitLit(e,r,n){let i=r.v==n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),f=n.bind(e);return(o,s)=>i(o,s)==f(o,s)}_bindColLit(e,r,n){let i=r.bind(e);if(r.vector instanceof uz.DictionaryVector){let f,o=r.vector;return o.dictionary!==this.lastDictionary?(f=o.reverseLookup(n.v),this.lastDictionary=o.dictionary,this.lastKey=f):f=this.lastKey,f===-1?()=>!1:s=>o.getKey(s)===f}else return(f,o)=>i(f,o)==n.v}_bindLitCol(e,r,n){return this._bindColLit(e,n,r)}};He.Equals=Tj;var kj=class extends Hu{_bindLitLit(e,r,n){let i=r.v<=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),f=n.bind(e);return(o,s)=>i(o,s)<=f(o,s)}_bindColLit(e,r,n){let i=r.bind(e);return(f,o)=>i(f,o)<=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(f,o)=>r.v<=i(f,o)}};He.LTeq=kj;var Bj=class extends Hu{_bindLitLit(e,r,n){let i=r.v>=n.v;return()=>i}_bindColCol(e,r,n){let i=r.bind(e),f=n.bind(e);return(o,s)=>i(o,s)>=f(o,s)}_bindColLit(e,r,n){let i=r.bind(e);return(f,o)=>i(f,o)>=n.v}_bindLitCol(e,r,n){let i=n.bind(e);return(f,o)=>r.v>=i(f,o)}};He.GTeq=Bj;var Ta=class extends qa{constructor(e){super();this.child=e}bind(e){let r=this.child.bind(e);return(n,i)=>!r(n,i)}};He.Not=Ta;var Ij=class extends qa{constructor(e,r){super();this.next=e,this.bind_=r}bind(e){return this.bind_(e),this.next}};He.CustomPredicate=Ij;function cz(t){return new ef(t)}He.lit=cz;function pz(t){return new vj(t)}He.col=pz;function dz(...t){return new _a(...t)}He.and=dz;function mz(...t){return new va(...t)}He.or=mz;function wz(t,e){return new Ij(t,e)}He.custom=wz});var Cx=k($f=>{"use strict";Object.defineProperty($f,"__esModule",{value:!0});$f.FilteredDataFrame=$f.CountByResult=$f.DataFrame=void 0;var ka=ku(),zx=fm(),Sj=er(),Ux=xj(),hz=Qi(),Lx=$e();ka.Table.prototype.countBy=function(t){return new Go(this.chunks).countBy(t)};ka.Table.prototype.scan=function(t,e){return new Go(this.chunks).scan(t,e)};ka.Table.prototype.scanReverse=function(t,e){return new Go(this.chunks).scanReverse(t,e)};ka.Table.prototype.filter=function(t){return new Go(this.chunks).filter(t)};var Go=class extends ka.Table{filter(e){return new zu(this.chunks,e)}scan(e,r){let n=this.chunks,i=n.length;for(let f=-1;++f<i;){let o=n[f];r&&r(o);for(let s=-1,u=o.length;++s<u;)e(s,o)}}scanReverse(e,r){let n=this.chunks,i=n.length;for(let f=i;--f>=0;){let o=n[f];r&&r(o);for(let s=o.length;--s>=0;)e(s,o)}}countBy(e){let r=this.chunks,n=r.length,i=typeof e=="string"?new Ux.Col(e):e;i.bind(r[n-1]);let f=i.vector;if(!Lx.DataType.isDictionary(f.type))throw new Error("countBy currently only supports dictionary-encoded columns");let o=Math.ceil(Math.log(f.length)/Math.log(256)),s=o==4?Uint32Array:o>=2?Uint16Array:Uint8Array,u=new s(f.dictionary.length);for(let l=-1;++l<n;){let c=r[l];i.bind(c);let w=i.vector.indices;for(let p=-1,g=c.length;++p<g;){let T=w.get(p);T!==null&&u[T]++}}return new Tm(f.dictionary,zx.IntVector.from(u))}};$f.DataFrame=Go;var Tm=class extends ka.Table{constructor(e,r){let n=new Sj.Schema([new Sj.Field("values",e.type),new Sj.Field("counts",r.type)]);super(new hz.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}};$f.CountByResult=Tm;var Vx=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}},zu=class extends Go{constructor(e,r){super(e);this._predicate=r}scan(e,r){let n=this._chunks,i=n.length;for(let f=-1;++f<i;){let o=n[f],s=this._predicate.bind(o),u=!1;for(let l=-1,c=o.length;++l<c;)s(l,o)&&(r&&!u&&(r(o),u=!0),e(l,o))}}scanReverse(e,r){let n=this._chunks,i=n.length;for(let f=i;--f>=0;){let o=n[f],s=this._predicate.bind(o),u=!1;for(let l=o.length;--l>=0;)s(l,o)&&(r&&!u&&(r(o),u=!0),e(l,o))}}count(){let e=0,r=this._chunks,n=r.length;for(let i=-1;++i<n;){let f=r[i],o=this._predicate.bind(f);for(let s=-1,u=f.length;++s<u;)o(s,f)&&++e}return e}[Symbol.iterator](){return new Vx(this._chunks,this._predicate)}filter(e){return new zu(this._chunks,this._predicate.and(e))}countBy(e){let r=this._chunks,n=r.length,i=typeof e=="string"?new Ux.Col(e):e;i.bind(r[n-1]);let f=i.vector;if(!Lx.DataType.isDictionary(f.type))throw new Error("countBy currently only supports dictionary-encoded columns");let o=Math.ceil(Math.log(f.length)/Math.log(256)),s=o==4?Uint32Array:o>=2?Uint16Array:Uint8Array,u=new s(f.dictionary.length);for(let l=-1;++l<n;){let c=r[l],w=this._predicate.bind(c);i.bind(c);let p=i.vector.indices;for(let g=-1,T=c.length;++g<T;){let L=p.get(g);L!==null&&w(g,c)&&u[L]++}}return new Tm(f.dictionary,zx.IntVector.from(u))}};$f.FilteredDataFrame=zu});var Yx=k(d=>{"use strict";Object.defineProperty(d,"__esModule",{value:!0});d.util=d.predicate=d.CountByResult=d.FilteredDataFrame=d.DataFrame=d.RecordBatch=d.Message=d.JSONMessageReader=d.AsyncMessageReader=d.MessageReader=d.RecordBatchJSONWriter=d.RecordBatchStreamWriter=d.RecordBatchFileWriter=d.RecordBatchWriter=d.AsyncRecordBatchStreamReader=d.AsyncRecordBatchFileReader=d.RecordBatchStreamReader=d.RecordBatchFileReader=d.RecordBatchReader=d.AsyncByteQueue=d.AsyncByteStream=d.ByteStream=d.Utf8Builder=d.SparseUnionBuilder=d.DenseUnionBuilder=d.UnionBuilder=d.TimeNanosecondBuilder=d.TimeMicrosecondBuilder=d.TimeMillisecondBuilder=d.TimeSecondBuilder=d.TimeBuilder=d.TimestampNanosecondBuilder=d.TimestampMicrosecondBuilder=d.TimestampMillisecondBuilder=d.TimestampSecondBuilder=d.TimestampBuilder=d.StructBuilder=d.NullBuilder=d.MapBuilder=d.ListBuilder=d.Uint64Builder=d.Uint32Builder=d.Uint16Builder=d.Uint8Builder=d.Int64Builder=d.Int32Builder=d.Int16Builder=d.Int8Builder=d.IntBuilder=d.IntervalYearMonthBuilder=d.IntervalDayTimeBuilder=d.IntervalBuilder=d.Float64Builder=d.Float32Builder=d.Float16Builder=d.FloatBuilder=d.FixedSizeListBuilder=d.FixedSizeBinaryBuilder=d.DictionaryBuilder=d.DecimalBuilder=d.DateMillisecondBuilder=d.DateDayBuilder=d.DateBuilder=d.BoolBuilder=d.BinaryBuilder=d.Builder=d.Utf8Vector=d.SparseUnionVector=d.DenseUnionVector=d.UnionVector=d.TimeNanosecondVector=d.TimeMicrosecondVector=d.TimeMillisecondVector=d.TimeSecondVector=d.TimeVector=d.TimestampNanosecondVector=d.TimestampMicrosecondVector=d.TimestampMillisecondVector=d.TimestampSecondVector=d.TimestampVector=d.StructVector=d.NullVector=d.MapVector=d.ListVector=d.Uint64Vector=d.Uint32Vector=d.Uint16Vector=d.Uint8Vector=d.Int64Vector=d.Int32Vector=d.Int16Vector=d.Int8Vector=d.IntVector=d.IntervalYearMonthVector=d.IntervalDayTimeVector=d.IntervalVector=d.Float64Vector=d.Float32Vector=d.Float16Vector=d.FloatVector=d.FixedSizeListVector=d.FixedSizeBinaryVector=d.DictionaryVector=d.DecimalVector=d.DateMillisecondVector=d.DateDayVector=d.DateVector=d.Chunked=d.BoolVector=d.BinaryVector=d.BaseVector=d.Vector=d.Field=d.Schema=d.Visitor=d.Column=d.Table=d.Map_=d.FixedSizeList=d.IntervalYearMonth=d.IntervalDayTime=d.Interval=d.Dictionary=d.SparseUnion=d.DenseUnion=d.Union=d.Struct=d.List=d.Decimal=d.TimeNanosecond=d.TimeMicrosecond=d.TimeMillisecond=d.TimeSecond=d.Time=d.TimestampNanosecond=d.TimestampMicrosecond=d.TimestampMillisecond=d.TimestampSecond=d.Timestamp=d.DateMillisecond=d.DateDay=d.Date_=d.FixedSizeBinary=d.Binary=d.Utf8=d.Float64=d.Float32=d.Float16=d.Float=d.Uint64=d.Uint32=d.Uint16=d.Uint8=d.Int64=d.Int32=d.Int16=d.Int8=d.Int=d.Bool=d.Null=d.DataType=d.Data=d.BufferType=d.Type=d.MessageHeader=d.MetadataVersion=d.IntervalUnit=d.UnionMode=d.Precision=d.TimeUnit=d.DateUnit=void 0;var Ba=Bf();Object.defineProperty(d,"DateUnit",{enumerable:!0,get:function(){return Ba.DateUnit}});Object.defineProperty(d,"TimeUnit",{enumerable:!0,get:function(){return Ba.TimeUnit}});Object.defineProperty(d,"Precision",{enumerable:!0,get:function(){return Ba.Precision}});Object.defineProperty(d,"UnionMode",{enumerable:!0,get:function(){return Ba.UnionMode}});Object.defineProperty(d,"IntervalUnit",{enumerable:!0,get:function(){return Ba.IntervalUnit}});Object.defineProperty(d,"MetadataVersion",{enumerable:!0,get:function(){return Ba.MetadataVersion}});var bz=Pp();Object.defineProperty(d,"MessageHeader",{enumerable:!0,get:function(){return bz.MessageHeader}});var Wx=dt();Object.defineProperty(d,"Type",{enumerable:!0,get:function(){return Wx.Type}});Object.defineProperty(d,"BufferType",{enumerable:!0,get:function(){return Wx.BufferType}});var gz=Dn();Object.defineProperty(d,"Data",{enumerable:!0,get:function(){return gz.Data}});var Be=$e();Object.defineProperty(d,"DataType",{enumerable:!0,get:function(){return Be.DataType}});Object.defineProperty(d,"Null",{enumerable:!0,get:function(){return Be.Null}});Object.defineProperty(d,"Bool",{enumerable:!0,get:function(){return Be.Bool}});Object.defineProperty(d,"Int",{enumerable:!0,get:function(){return Be.Int}});Object.defineProperty(d,"Int8",{enumerable:!0,get:function(){return Be.Int8}});Object.defineProperty(d,"Int16",{enumerable:!0,get:function(){return Be.Int16}});Object.defineProperty(d,"Int32",{enumerable:!0,get:function(){return Be.Int32}});Object.defineProperty(d,"Int64",{enumerable:!0,get:function(){return Be.Int64}});Object.defineProperty(d,"Uint8",{enumerable:!0,get:function(){return Be.Uint8}});Object.defineProperty(d,"Uint16",{enumerable:!0,get:function(){return Be.Uint16}});Object.defineProperty(d,"Uint32",{enumerable:!0,get:function(){return Be.Uint32}});Object.defineProperty(d,"Uint64",{enumerable:!0,get:function(){return Be.Uint64}});Object.defineProperty(d,"Float",{enumerable:!0,get:function(){return Be.Float}});Object.defineProperty(d,"Float16",{enumerable:!0,get:function(){return Be.Float16}});Object.defineProperty(d,"Float32",{enumerable:!0,get:function(){return Be.Float32}});Object.defineProperty(d,"Float64",{enumerable:!0,get:function(){return Be.Float64}});Object.defineProperty(d,"Utf8",{enumerable:!0,get:function(){return Be.Utf8}});Object.defineProperty(d,"Binary",{enumerable:!0,get:function(){return Be.Binary}});Object.defineProperty(d,"FixedSizeBinary",{enumerable:!0,get:function(){return Be.FixedSizeBinary}});Object.defineProperty(d,"Date_",{enumerable:!0,get:function(){return Be.Date_}});Object.defineProperty(d,"DateDay",{enumerable:!0,get:function(){return Be.DateDay}});Object.defineProperty(d,"DateMillisecond",{enumerable:!0,get:function(){return Be.DateMillisecond}});Object.defineProperty(d,"Timestamp",{enumerable:!0,get:function(){return Be.Timestamp}});Object.defineProperty(d,"TimestampSecond",{enumerable:!0,get:function(){return Be.TimestampSecond}});Object.defineProperty(d,"TimestampMillisecond",{enumerable:!0,get:function(){return Be.TimestampMillisecond}});Object.defineProperty(d,"TimestampMicrosecond",{enumerable:!0,get:function(){return Be.TimestampMicrosecond}});Object.defineProperty(d,"TimestampNanosecond",{enumerable:!0,get:function(){return Be.TimestampNanosecond}});Object.defineProperty(d,"Time",{enumerable:!0,get:function(){return Be.Time}});Object.defineProperty(d,"TimeSecond",{enumerable:!0,get:function(){return Be.TimeSecond}});Object.defineProperty(d,"TimeMillisecond",{enumerable:!0,get:function(){return Be.TimeMillisecond}});Object.defineProperty(d,"TimeMicrosecond",{enumerable:!0,get:function(){return Be.TimeMicrosecond}});Object.defineProperty(d,"TimeNanosecond",{enumerable:!0,get:function(){return Be.TimeNanosecond}});Object.defineProperty(d,"Decimal",{enumerable:!0,get:function(){return Be.Decimal}});Object.defineProperty(d,"List",{enumerable:!0,get:function(){return Be.List}});Object.defineProperty(d,"Struct",{enumerable:!0,get:function(){return Be.Struct}});Object.defineProperty(d,"Union",{enumerable:!0,get:function(){return Be.Union}});Object.defineProperty(d,"DenseUnion",{enumerable:!0,get:function(){return Be.DenseUnion}});Object.defineProperty(d,"SparseUnion",{enumerable:!0,get:function(){return Be.SparseUnion}});Object.defineProperty(d,"Dictionary",{enumerable:!0,get:function(){return Be.Dictionary}});Object.defineProperty(d,"Interval",{enumerable:!0,get:function(){return Be.Interval}});Object.defineProperty(d,"IntervalDayTime",{enumerable:!0,get:function(){return Be.IntervalDayTime}});Object.defineProperty(d,"IntervalYearMonth",{enumerable:!0,get:function(){return Be.IntervalYearMonth}});Object.defineProperty(d,"FixedSizeList",{enumerable:!0,get:function(){return Be.FixedSizeList}});Object.defineProperty(d,"Map_",{enumerable:!0,get:function(){return Be.Map_}});var yz=ku();Object.defineProperty(d,"Table",{enumerable:!0,get:function(){return yz.Table}});var jz=ra();Object.defineProperty(d,"Column",{enumerable:!0,get:function(){return jz.Column}});var qz=sr();Object.defineProperty(d,"Visitor",{enumerable:!0,get:function(){return qz.Visitor}});var Kx=er();Object.defineProperty(d,"Schema",{enumerable:!0,get:function(){return Kx.Schema}});Object.defineProperty(d,"Field",{enumerable:!0,get:function(){return Kx.Field}});var ve=gi();Object.defineProperty(d,"Vector",{enumerable:!0,get:function(){return ve.Vector}});Object.defineProperty(d,"BaseVector",{enumerable:!0,get:function(){return ve.BaseVector}});Object.defineProperty(d,"BinaryVector",{enumerable:!0,get:function(){return ve.BinaryVector}});Object.defineProperty(d,"BoolVector",{enumerable:!0,get:function(){return ve.BoolVector}});Object.defineProperty(d,"Chunked",{enumerable:!0,get:function(){return ve.Chunked}});Object.defineProperty(d,"DateVector",{enumerable:!0,get:function(){return ve.DateVector}});Object.defineProperty(d,"DateDayVector",{enumerable:!0,get:function(){return ve.DateDayVector}});Object.defineProperty(d,"DateMillisecondVector",{enumerable:!0,get:function(){return ve.DateMillisecondVector}});Object.defineProperty(d,"DecimalVector",{enumerable:!0,get:function(){return ve.DecimalVector}});Object.defineProperty(d,"DictionaryVector",{enumerable:!0,get:function(){return ve.DictionaryVector}});Object.defineProperty(d,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return ve.FixedSizeBinaryVector}});Object.defineProperty(d,"FixedSizeListVector",{enumerable:!0,get:function(){return ve.FixedSizeListVector}});Object.defineProperty(d,"FloatVector",{enumerable:!0,get:function(){return ve.FloatVector}});Object.defineProperty(d,"Float16Vector",{enumerable:!0,get:function(){return ve.Float16Vector}});Object.defineProperty(d,"Float32Vector",{enumerable:!0,get:function(){return ve.Float32Vector}});Object.defineProperty(d,"Float64Vector",{enumerable:!0,get:function(){return ve.Float64Vector}});Object.defineProperty(d,"IntervalVector",{enumerable:!0,get:function(){return ve.IntervalVector}});Object.defineProperty(d,"IntervalDayTimeVector",{enumerable:!0,get:function(){return ve.IntervalDayTimeVector}});Object.defineProperty(d,"IntervalYearMonthVector",{enumerable:!0,get:function(){return ve.IntervalYearMonthVector}});Object.defineProperty(d,"IntVector",{enumerable:!0,get:function(){return ve.IntVector}});Object.defineProperty(d,"Int8Vector",{enumerable:!0,get:function(){return ve.Int8Vector}});Object.defineProperty(d,"Int16Vector",{enumerable:!0,get:function(){return ve.Int16Vector}});Object.defineProperty(d,"Int32Vector",{enumerable:!0,get:function(){return ve.Int32Vector}});Object.defineProperty(d,"Int64Vector",{enumerable:!0,get:function(){return ve.Int64Vector}});Object.defineProperty(d,"Uint8Vector",{enumerable:!0,get:function(){return ve.Uint8Vector}});Object.defineProperty(d,"Uint16Vector",{enumerable:!0,get:function(){return ve.Uint16Vector}});Object.defineProperty(d,"Uint32Vector",{enumerable:!0,get:function(){return ve.Uint32Vector}});Object.defineProperty(d,"Uint64Vector",{enumerable:!0,get:function(){return ve.Uint64Vector}});Object.defineProperty(d,"ListVector",{enumerable:!0,get:function(){return ve.ListVector}});Object.defineProperty(d,"MapVector",{enumerable:!0,get:function(){return ve.MapVector}});Object.defineProperty(d,"NullVector",{enumerable:!0,get:function(){return ve.NullVector}});Object.defineProperty(d,"StructVector",{enumerable:!0,get:function(){return ve.StructVector}});Object.defineProperty(d,"TimestampVector",{enumerable:!0,get:function(){return ve.TimestampVector}});Object.defineProperty(d,"TimestampSecondVector",{enumerable:!0,get:function(){return ve.TimestampSecondVector}});Object.defineProperty(d,"TimestampMillisecondVector",{enumerable:!0,get:function(){return ve.TimestampMillisecondVector}});Object.defineProperty(d,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return ve.TimestampMicrosecondVector}});Object.defineProperty(d,"TimestampNanosecondVector",{enumerable:!0,get:function(){return ve.TimestampNanosecondVector}});Object.defineProperty(d,"TimeVector",{enumerable:!0,get:function(){return ve.TimeVector}});Object.defineProperty(d,"TimeSecondVector",{enumerable:!0,get:function(){return ve.TimeSecondVector}});Object.defineProperty(d,"TimeMillisecondVector",{enumerable:!0,get:function(){return ve.TimeMillisecondVector}});Object.defineProperty(d,"TimeMicrosecondVector",{enumerable:!0,get:function(){return ve.TimeMicrosecondVector}});Object.defineProperty(d,"TimeNanosecondVector",{enumerable:!0,get:function(){return ve.TimeNanosecondVector}});Object.defineProperty(d,"UnionVector",{enumerable:!0,get:function(){return ve.UnionVector}});Object.defineProperty(d,"DenseUnionVector",{enumerable:!0,get:function(){return ve.DenseUnionVector}});Object.defineProperty(d,"SparseUnionVector",{enumerable:!0,get:function(){return ve.SparseUnionVector}});Object.defineProperty(d,"Utf8Vector",{enumerable:!0,get:function(){return ve.Utf8Vector}});var Ie=vd();Object.defineProperty(d,"Builder",{enumerable:!0,get:function(){return Ie.Builder}});Object.defineProperty(d,"BinaryBuilder",{enumerable:!0,get:function(){return Ie.BinaryBuilder}});Object.defineProperty(d,"BoolBuilder",{enumerable:!0,get:function(){return Ie.BoolBuilder}});Object.defineProperty(d,"DateBuilder",{enumerable:!0,get:function(){return Ie.DateBuilder}});Object.defineProperty(d,"DateDayBuilder",{enumerable:!0,get:function(){return Ie.DateDayBuilder}});Object.defineProperty(d,"DateMillisecondBuilder",{enumerable:!0,get:function(){return Ie.DateMillisecondBuilder}});Object.defineProperty(d,"DecimalBuilder",{enumerable:!0,get:function(){return Ie.DecimalBuilder}});Object.defineProperty(d,"DictionaryBuilder",{enumerable:!0,get:function(){return Ie.DictionaryBuilder}});Object.defineProperty(d,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return Ie.FixedSizeBinaryBuilder}});Object.defineProperty(d,"FixedSizeListBuilder",{enumerable:!0,get:function(){return Ie.FixedSizeListBuilder}});Object.defineProperty(d,"FloatBuilder",{enumerable:!0,get:function(){return Ie.FloatBuilder}});Object.defineProperty(d,"Float16Builder",{enumerable:!0,get:function(){return Ie.Float16Builder}});Object.defineProperty(d,"Float32Builder",{enumerable:!0,get:function(){return Ie.Float32Builder}});Object.defineProperty(d,"Float64Builder",{enumerable:!0,get:function(){return Ie.Float64Builder}});Object.defineProperty(d,"IntervalBuilder",{enumerable:!0,get:function(){return Ie.IntervalBuilder}});Object.defineProperty(d,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return Ie.IntervalDayTimeBuilder}});Object.defineProperty(d,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return Ie.IntervalYearMonthBuilder}});Object.defineProperty(d,"IntBuilder",{enumerable:!0,get:function(){return Ie.IntBuilder}});Object.defineProperty(d,"Int8Builder",{enumerable:!0,get:function(){return Ie.Int8Builder}});Object.defineProperty(d,"Int16Builder",{enumerable:!0,get:function(){return Ie.Int16Builder}});Object.defineProperty(d,"Int32Builder",{enumerable:!0,get:function(){return Ie.Int32Builder}});Object.defineProperty(d,"Int64Builder",{enumerable:!0,get:function(){return Ie.Int64Builder}});Object.defineProperty(d,"Uint8Builder",{enumerable:!0,get:function(){return Ie.Uint8Builder}});Object.defineProperty(d,"Uint16Builder",{enumerable:!0,get:function(){return Ie.Uint16Builder}});Object.defineProperty(d,"Uint32Builder",{enumerable:!0,get:function(){return Ie.Uint32Builder}});Object.defineProperty(d,"Uint64Builder",{enumerable:!0,get:function(){return Ie.Uint64Builder}});Object.defineProperty(d,"ListBuilder",{enumerable:!0,get:function(){return Ie.ListBuilder}});Object.defineProperty(d,"MapBuilder",{enumerable:!0,get:function(){return Ie.MapBuilder}});Object.defineProperty(d,"NullBuilder",{enumerable:!0,get:function(){return Ie.NullBuilder}});Object.defineProperty(d,"StructBuilder",{enumerable:!0,get:function(){return Ie.StructBuilder}});Object.defineProperty(d,"TimestampBuilder",{enumerable:!0,get:function(){return Ie.TimestampBuilder}});Object.defineProperty(d,"TimestampSecondBuilder",{enumerable:!0,get:function(){return Ie.TimestampSecondBuilder}});Object.defineProperty(d,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return Ie.TimestampMillisecondBuilder}});Object.defineProperty(d,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return Ie.TimestampMicrosecondBuilder}});Object.defineProperty(d,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return Ie.TimestampNanosecondBuilder}});Object.defineProperty(d,"TimeBuilder",{enumerable:!0,get:function(){return Ie.TimeBuilder}});Object.defineProperty(d,"TimeSecondBuilder",{enumerable:!0,get:function(){return Ie.TimeSecondBuilder}});Object.defineProperty(d,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return Ie.TimeMillisecondBuilder}});Object.defineProperty(d,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return Ie.TimeMicrosecondBuilder}});Object.defineProperty(d,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return Ie.TimeNanosecondBuilder}});Object.defineProperty(d,"UnionBuilder",{enumerable:!0,get:function(){return Ie.UnionBuilder}});Object.defineProperty(d,"DenseUnionBuilder",{enumerable:!0,get:function(){return Ie.DenseUnionBuilder}});Object.defineProperty(d,"SparseUnionBuilder",{enumerable:!0,get:function(){return Ie.SparseUnionBuilder}});Object.defineProperty(d,"Utf8Builder",{enumerable:!0,get:function(){return Ie.Utf8Builder}});var Ej=Hf();Object.defineProperty(d,"ByteStream",{enumerable:!0,get:function(){return Ej.ByteStream}});Object.defineProperty(d,"AsyncByteStream",{enumerable:!0,get:function(){return Ej.AsyncByteStream}});Object.defineProperty(d,"AsyncByteQueue",{enumerable:!0,get:function(){return Ej.AsyncByteQueue}});var Uu=Du();Object.defineProperty(d,"RecordBatchReader",{enumerable:!0,get:function(){return Uu.RecordBatchReader}});Object.defineProperty(d,"RecordBatchFileReader",{enumerable:!0,get:function(){return Uu.RecordBatchFileReader}});Object.defineProperty(d,"RecordBatchStreamReader",{enumerable:!0,get:function(){return Uu.RecordBatchStreamReader}});Object.defineProperty(d,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return Uu.AsyncRecordBatchFileReader}});Object.defineProperty(d,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return Uu.AsyncRecordBatchStreamReader}});var km=Gd();Object.defineProperty(d,"RecordBatchWriter",{enumerable:!0,get:function(){return km.RecordBatchWriter}});Object.defineProperty(d,"RecordBatchFileWriter",{enumerable:!0,get:function(){return km.RecordBatchFileWriter}});Object.defineProperty(d,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return km.RecordBatchStreamWriter}});Object.defineProperty(d,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return km.RecordBatchJSONWriter}});var Aj=Pd();Object.defineProperty(d,"MessageReader",{enumerable:!0,get:function(){return Aj.MessageReader}});Object.defineProperty(d,"AsyncMessageReader",{enumerable:!0,get:function(){return Aj.AsyncMessageReader}});Object.defineProperty(d,"JSONMessageReader",{enumerable:!0,get:function(){return Aj.JSONMessageReader}});var _z=Uo();Object.defineProperty(d,"Message",{enumerable:!0,get:function(){return _z.Message}});var vz=Qi();Object.defineProperty(d,"RecordBatch",{enumerable:!0,get:function(){return vz.RecordBatch}});var Oj=Cx();Object.defineProperty(d,"DataFrame",{enumerable:!0,get:function(){return Oj.DataFrame}});Object.defineProperty(d,"FilteredDataFrame",{enumerable:!0,get:function(){return Oj.FilteredDataFrame}});Object.defineProperty(d,"CountByResult",{enumerable:!0,get:function(){return Oj.CountByResult}});var Tz=au(),kz=Lg(),Bz=si(),Iz=iu(),xz=Gt(),Sz=hu(),Ez=xj();d.predicate=Ez;var Fj=iy();d.util={...Tz,...kz,...Bz,...Iz,...xz,...Sz,compareSchemas:Fj.compareSchemas,compareFields:Fj.compareFields,compareTypes:Fj.compareTypes}});var Gx=k(m=>{"use strict";Object.defineProperty(m,"__esModule",{value:!0});m.Utf8Builder=m.SparseUnionBuilder=m.DenseUnionBuilder=m.UnionBuilder=m.TimeNanosecondBuilder=m.TimeMicrosecondBuilder=m.TimeMillisecondBuilder=m.TimeSecondBuilder=m.TimeBuilder=m.TimestampNanosecondBuilder=m.TimestampMicrosecondBuilder=m.TimestampMillisecondBuilder=m.TimestampSecondBuilder=m.TimestampBuilder=m.StructBuilder=m.NullBuilder=m.MapBuilder=m.ListBuilder=m.Uint64Builder=m.Uint32Builder=m.Uint16Builder=m.Uint8Builder=m.Int64Builder=m.Int32Builder=m.Int16Builder=m.Int8Builder=m.IntBuilder=m.IntervalYearMonthBuilder=m.IntervalDayTimeBuilder=m.IntervalBuilder=m.Float64Builder=m.Float32Builder=m.Float16Builder=m.FloatBuilder=m.FixedSizeListBuilder=m.FixedSizeBinaryBuilder=m.DictionaryBuilder=m.DecimalBuilder=m.DateMillisecondBuilder=m.DateDayBuilder=m.DateBuilder=m.BoolBuilder=m.BinaryBuilder=m.Builder=m.util=m.predicate=m.CountByResult=m.FilteredDataFrame=m.DataFrame=m.RecordBatch=m.Message=m.JSONMessageReader=m.AsyncMessageReader=m.MessageReader=m.RecordBatchJSONWriter=m.RecordBatchStreamWriter=m.RecordBatchFileWriter=m.RecordBatchWriter=m.AsyncRecordBatchStreamReader=m.AsyncRecordBatchFileReader=m.RecordBatchStreamReader=m.RecordBatchFileReader=m.RecordBatchReader=m.AsyncByteQueue=m.AsyncByteStream=m.ByteStream=m.Utf8Vector=m.SparseUnionVector=m.DenseUnionVector=m.UnionVector=m.TimeNanosecondVector=m.TimeMicrosecondVector=m.TimeMillisecondVector=m.TimeSecondVector=m.TimeVector=m.TimestampNanosecondVector=m.TimestampMicrosecondVector=m.TimestampMillisecondVector=m.TimestampSecondVector=m.TimestampVector=m.StructVector=m.NullVector=m.MapVector=m.ListVector=m.Uint64Vector=m.Uint32Vector=m.Uint16Vector=m.Uint8Vector=m.Int64Vector=m.Int32Vector=m.Int16Vector=m.Int8Vector=m.IntVector=m.IntervalYearMonthVector=m.IntervalDayTimeVector=m.IntervalVector=m.Float64Vector=m.Float32Vector=m.Float16Vector=m.FloatVector=m.FixedSizeListVector=m.FixedSizeBinaryVector=m.DictionaryVector=m.DecimalVector=m.DateMillisecondVector=m.DateDayVector=m.DateVector=m.Chunked=m.BoolVector=m.BinaryVector=m.BaseVector=m.Vector=m.Visitor=m.Field=m.Schema=m.Column=m.Table=m.Map_=m.FixedSizeList=m.IntervalYearMonth=m.IntervalDayTime=m.Interval=m.Dictionary=m.SparseUnion=m.DenseUnion=m.Union=m.Struct=m.List=m.Decimal=m.TimeNanosecond=m.TimeMicrosecond=m.TimeMillisecond=m.TimeSecond=m.Time=m.TimestampNanosecond=m.TimestampMicrosecond=m.TimestampMillisecond=m.TimestampSecond=m.Timestamp=m.DateMillisecond=m.DateDay=m.Date_=m.FixedSizeBinary=m.Binary=m.Utf8=m.Float64=m.Float32=m.Float16=m.Float=m.Uint64=m.Uint32=m.Uint16=m.Uint8=m.Int64=m.Int32=m.Int16=m.Int8=m.Int=m.Bool=m.Null=m.DataType=m.Data=m.BufferType=m.UnionMode=m.Type=m.TimeUnit=m.Precision=m.MetadataVersion=m.MessageHeader=m.IntervalUnit=m.DateUnit=void 0;var Az=ru(),Oz=vd(),Dj=Du(),Nj=Gd(),Fz=Dx(),Dz=Px(),Rj=Hx(),Pj=Mx();Az.default.toDOMStream=Fz.toDOMStream;Oz.Builder.throughDOM=Dz.builderThroughDOMStream;Dj.RecordBatchReader.throughDOM=Rj.recordBatchReaderThroughDOMStream;Dj.RecordBatchFileReader.throughDOM=Rj.recordBatchReaderThroughDOMStream;Dj.RecordBatchStreamReader.throughDOM=Rj.recordBatchReaderThroughDOMStream;Nj.RecordBatchWriter.throughDOM=Pj.recordBatchWriterThroughDOMStream;Nj.RecordBatchFileWriter.throughDOM=Pj.recordBatchWriterThroughDOMStream;Nj.RecordBatchStreamWriter.throughDOM=Pj.recordBatchWriterThroughDOMStream;var B=Yx();Object.defineProperty(m,"DateUnit",{enumerable:!0,get:function(){return B.DateUnit}});Object.defineProperty(m,"IntervalUnit",{enumerable:!0,get:function(){return B.IntervalUnit}});Object.defineProperty(m,"MessageHeader",{enumerable:!0,get:function(){return B.MessageHeader}});Object.defineProperty(m,"MetadataVersion",{enumerable:!0,get:function(){return B.MetadataVersion}});Object.defineProperty(m,"Precision",{enumerable:!0,get:function(){return B.Precision}});Object.defineProperty(m,"TimeUnit",{enumerable:!0,get:function(){return B.TimeUnit}});Object.defineProperty(m,"Type",{enumerable:!0,get:function(){return B.Type}});Object.defineProperty(m,"UnionMode",{enumerable:!0,get:function(){return B.UnionMode}});Object.defineProperty(m,"BufferType",{enumerable:!0,get:function(){return B.BufferType}});Object.defineProperty(m,"Data",{enumerable:!0,get:function(){return B.Data}});Object.defineProperty(m,"DataType",{enumerable:!0,get:function(){return B.DataType}});Object.defineProperty(m,"Null",{enumerable:!0,get:function(){return B.Null}});Object.defineProperty(m,"Bool",{enumerable:!0,get:function(){return B.Bool}});Object.defineProperty(m,"Int",{enumerable:!0,get:function(){return B.Int}});Object.defineProperty(m,"Int8",{enumerable:!0,get:function(){return B.Int8}});Object.defineProperty(m,"Int16",{enumerable:!0,get:function(){return B.Int16}});Object.defineProperty(m,"Int32",{enumerable:!0,get:function(){return B.Int32}});Object.defineProperty(m,"Int64",{enumerable:!0,get:function(){return B.Int64}});Object.defineProperty(m,"Uint8",{enumerable:!0,get:function(){return B.Uint8}});Object.defineProperty(m,"Uint16",{enumerable:!0,get:function(){return B.Uint16}});Object.defineProperty(m,"Uint32",{enumerable:!0,get:function(){return B.Uint32}});Object.defineProperty(m,"Uint64",{enumerable:!0,get:function(){return B.Uint64}});Object.defineProperty(m,"Float",{enumerable:!0,get:function(){return B.Float}});Object.defineProperty(m,"Float16",{enumerable:!0,get:function(){return B.Float16}});Object.defineProperty(m,"Float32",{enumerable:!0,get:function(){return B.Float32}});Object.defineProperty(m,"Float64",{enumerable:!0,get:function(){return B.Float64}});Object.defineProperty(m,"Utf8",{enumerable:!0,get:function(){return B.Utf8}});Object.defineProperty(m,"Binary",{enumerable:!0,get:function(){return B.Binary}});Object.defineProperty(m,"FixedSizeBinary",{enumerable:!0,get:function(){return B.FixedSizeBinary}});Object.defineProperty(m,"Date_",{enumerable:!0,get:function(){return B.Date_}});Object.defineProperty(m,"DateDay",{enumerable:!0,get:function(){return B.DateDay}});Object.defineProperty(m,"DateMillisecond",{enumerable:!0,get:function(){return B.DateMillisecond}});Object.defineProperty(m,"Timestamp",{enumerable:!0,get:function(){return B.Timestamp}});Object.defineProperty(m,"TimestampSecond",{enumerable:!0,get:function(){return B.TimestampSecond}});Object.defineProperty(m,"TimestampMillisecond",{enumerable:!0,get:function(){return B.TimestampMillisecond}});Object.defineProperty(m,"TimestampMicrosecond",{enumerable:!0,get:function(){return B.TimestampMicrosecond}});Object.defineProperty(m,"TimestampNanosecond",{enumerable:!0,get:function(){return B.TimestampNanosecond}});Object.defineProperty(m,"Time",{enumerable:!0,get:function(){return B.Time}});Object.defineProperty(m,"TimeSecond",{enumerable:!0,get:function(){return B.TimeSecond}});Object.defineProperty(m,"TimeMillisecond",{enumerable:!0,get:function(){return B.TimeMillisecond}});Object.defineProperty(m,"TimeMicrosecond",{enumerable:!0,get:function(){return B.TimeMicrosecond}});Object.defineProperty(m,"TimeNanosecond",{enumerable:!0,get:function(){return B.TimeNanosecond}});Object.defineProperty(m,"Decimal",{enumerable:!0,get:function(){return B.Decimal}});Object.defineProperty(m,"List",{enumerable:!0,get:function(){return B.List}});Object.defineProperty(m,"Struct",{enumerable:!0,get:function(){return B.Struct}});Object.defineProperty(m,"Union",{enumerable:!0,get:function(){return B.Union}});Object.defineProperty(m,"DenseUnion",{enumerable:!0,get:function(){return B.DenseUnion}});Object.defineProperty(m,"SparseUnion",{enumerable:!0,get:function(){return B.SparseUnion}});Object.defineProperty(m,"Dictionary",{enumerable:!0,get:function(){return B.Dictionary}});Object.defineProperty(m,"Interval",{enumerable:!0,get:function(){return B.Interval}});Object.defineProperty(m,"IntervalDayTime",{enumerable:!0,get:function(){return B.IntervalDayTime}});Object.defineProperty(m,"IntervalYearMonth",{enumerable:!0,get:function(){return B.IntervalYearMonth}});Object.defineProperty(m,"FixedSizeList",{enumerable:!0,get:function(){return B.FixedSizeList}});Object.defineProperty(m,"Map_",{enumerable:!0,get:function(){return B.Map_}});Object.defineProperty(m,"Table",{enumerable:!0,get:function(){return B.Table}});Object.defineProperty(m,"Column",{enumerable:!0,get:function(){return B.Column}});Object.defineProperty(m,"Schema",{enumerable:!0,get:function(){return B.Schema}});Object.defineProperty(m,"Field",{enumerable:!0,get:function(){return B.Field}});Object.defineProperty(m,"Visitor",{enumerable:!0,get:function(){return B.Visitor}});Object.defineProperty(m,"Vector",{enumerable:!0,get:function(){return B.Vector}});Object.defineProperty(m,"BaseVector",{enumerable:!0,get:function(){return B.BaseVector}});Object.defineProperty(m,"BinaryVector",{enumerable:!0,get:function(){return B.BinaryVector}});Object.defineProperty(m,"BoolVector",{enumerable:!0,get:function(){return B.BoolVector}});Object.defineProperty(m,"Chunked",{enumerable:!0,get:function(){return B.Chunked}});Object.defineProperty(m,"DateVector",{enumerable:!0,get:function(){return B.DateVector}});Object.defineProperty(m,"DateDayVector",{enumerable:!0,get:function(){return B.DateDayVector}});Object.defineProperty(m,"DateMillisecondVector",{enumerable:!0,get:function(){return B.DateMillisecondVector}});Object.defineProperty(m,"DecimalVector",{enumerable:!0,get:function(){return B.DecimalVector}});Object.defineProperty(m,"DictionaryVector",{enumerable:!0,get:function(){return B.DictionaryVector}});Object.defineProperty(m,"FixedSizeBinaryVector",{enumerable:!0,get:function(){return B.FixedSizeBinaryVector}});Object.defineProperty(m,"FixedSizeListVector",{enumerable:!0,get:function(){return B.FixedSizeListVector}});Object.defineProperty(m,"FloatVector",{enumerable:!0,get:function(){return B.FloatVector}});Object.defineProperty(m,"Float16Vector",{enumerable:!0,get:function(){return B.Float16Vector}});Object.defineProperty(m,"Float32Vector",{enumerable:!0,get:function(){return B.Float32Vector}});Object.defineProperty(m,"Float64Vector",{enumerable:!0,get:function(){return B.Float64Vector}});Object.defineProperty(m,"IntervalVector",{enumerable:!0,get:function(){return B.IntervalVector}});Object.defineProperty(m,"IntervalDayTimeVector",{enumerable:!0,get:function(){return B.IntervalDayTimeVector}});Object.defineProperty(m,"IntervalYearMonthVector",{enumerable:!0,get:function(){return B.IntervalYearMonthVector}});Object.defineProperty(m,"IntVector",{enumerable:!0,get:function(){return B.IntVector}});Object.defineProperty(m,"Int8Vector",{enumerable:!0,get:function(){return B.Int8Vector}});Object.defineProperty(m,"Int16Vector",{enumerable:!0,get:function(){return B.Int16Vector}});Object.defineProperty(m,"Int32Vector",{enumerable:!0,get:function(){return B.Int32Vector}});Object.defineProperty(m,"Int64Vector",{enumerable:!0,get:function(){return B.Int64Vector}});Object.defineProperty(m,"Uint8Vector",{enumerable:!0,get:function(){return B.Uint8Vector}});Object.defineProperty(m,"Uint16Vector",{enumerable:!0,get:function(){return B.Uint16Vector}});Object.defineProperty(m,"Uint32Vector",{enumerable:!0,get:function(){return B.Uint32Vector}});Object.defineProperty(m,"Uint64Vector",{enumerable:!0,get:function(){return B.Uint64Vector}});Object.defineProperty(m,"ListVector",{enumerable:!0,get:function(){return B.ListVector}});Object.defineProperty(m,"MapVector",{enumerable:!0,get:function(){return B.MapVector}});Object.defineProperty(m,"NullVector",{enumerable:!0,get:function(){return B.NullVector}});Object.defineProperty(m,"StructVector",{enumerable:!0,get:function(){return B.StructVector}});Object.defineProperty(m,"TimestampVector",{enumerable:!0,get:function(){return B.TimestampVector}});Object.defineProperty(m,"TimestampSecondVector",{enumerable:!0,get:function(){return B.TimestampSecondVector}});Object.defineProperty(m,"TimestampMillisecondVector",{enumerable:!0,get:function(){return B.TimestampMillisecondVector}});Object.defineProperty(m,"TimestampMicrosecondVector",{enumerable:!0,get:function(){return B.TimestampMicrosecondVector}});Object.defineProperty(m,"TimestampNanosecondVector",{enumerable:!0,get:function(){return B.TimestampNanosecondVector}});Object.defineProperty(m,"TimeVector",{enumerable:!0,get:function(){return B.TimeVector}});Object.defineProperty(m,"TimeSecondVector",{enumerable:!0,get:function(){return B.TimeSecondVector}});Object.defineProperty(m,"TimeMillisecondVector",{enumerable:!0,get:function(){return B.TimeMillisecondVector}});Object.defineProperty(m,"TimeMicrosecondVector",{enumerable:!0,get:function(){return B.TimeMicrosecondVector}});Object.defineProperty(m,"TimeNanosecondVector",{enumerable:!0,get:function(){return B.TimeNanosecondVector}});Object.defineProperty(m,"UnionVector",{enumerable:!0,get:function(){return B.UnionVector}});Object.defineProperty(m,"DenseUnionVector",{enumerable:!0,get:function(){return B.DenseUnionVector}});Object.defineProperty(m,"SparseUnionVector",{enumerable:!0,get:function(){return B.SparseUnionVector}});Object.defineProperty(m,"Utf8Vector",{enumerable:!0,get:function(){return B.Utf8Vector}});Object.defineProperty(m,"ByteStream",{enumerable:!0,get:function(){return B.ByteStream}});Object.defineProperty(m,"AsyncByteStream",{enumerable:!0,get:function(){return B.AsyncByteStream}});Object.defineProperty(m,"AsyncByteQueue",{enumerable:!0,get:function(){return B.AsyncByteQueue}});Object.defineProperty(m,"RecordBatchReader",{enumerable:!0,get:function(){return B.RecordBatchReader}});Object.defineProperty(m,"RecordBatchFileReader",{enumerable:!0,get:function(){return B.RecordBatchFileReader}});Object.defineProperty(m,"RecordBatchStreamReader",{enumerable:!0,get:function(){return B.RecordBatchStreamReader}});Object.defineProperty(m,"AsyncRecordBatchFileReader",{enumerable:!0,get:function(){return B.AsyncRecordBatchFileReader}});Object.defineProperty(m,"AsyncRecordBatchStreamReader",{enumerable:!0,get:function(){return B.AsyncRecordBatchStreamReader}});Object.defineProperty(m,"RecordBatchWriter",{enumerable:!0,get:function(){return B.RecordBatchWriter}});Object.defineProperty(m,"RecordBatchFileWriter",{enumerable:!0,get:function(){return B.RecordBatchFileWriter}});Object.defineProperty(m,"RecordBatchStreamWriter",{enumerable:!0,get:function(){return B.RecordBatchStreamWriter}});Object.defineProperty(m,"RecordBatchJSONWriter",{enumerable:!0,get:function(){return B.RecordBatchJSONWriter}});Object.defineProperty(m,"MessageReader",{enumerable:!0,get:function(){return B.MessageReader}});Object.defineProperty(m,"AsyncMessageReader",{enumerable:!0,get:function(){return B.AsyncMessageReader}});Object.defineProperty(m,"JSONMessageReader",{enumerable:!0,get:function(){return B.JSONMessageReader}});Object.defineProperty(m,"Message",{enumerable:!0,get:function(){return B.Message}});Object.defineProperty(m,"RecordBatch",{enumerable:!0,get:function(){return B.RecordBatch}});Object.defineProperty(m,"DataFrame",{enumerable:!0,get:function(){return B.DataFrame}});Object.defineProperty(m,"FilteredDataFrame",{enumerable:!0,get:function(){return B.FilteredDataFrame}});Object.defineProperty(m,"CountByResult",{enumerable:!0,get:function(){return B.CountByResult}});Object.defineProperty(m,"predicate",{enumerable:!0,get:function(){return B.predicate}});Object.defineProperty(m,"util",{enumerable:!0,get:function(){return B.util}});Object.defineProperty(m,"Builder",{enumerable:!0,get:function(){return B.Builder}});Object.defineProperty(m,"BinaryBuilder",{enumerable:!0,get:function(){return B.BinaryBuilder}});Object.defineProperty(m,"BoolBuilder",{enumerable:!0,get:function(){return B.BoolBuilder}});Object.defineProperty(m,"DateBuilder",{enumerable:!0,get:function(){return B.DateBuilder}});Object.defineProperty(m,"DateDayBuilder",{enumerable:!0,get:function(){return B.DateDayBuilder}});Object.defineProperty(m,"DateMillisecondBuilder",{enumerable:!0,get:function(){return B.DateMillisecondBuilder}});Object.defineProperty(m,"DecimalBuilder",{enumerable:!0,get:function(){return B.DecimalBuilder}});Object.defineProperty(m,"DictionaryBuilder",{enumerable:!0,get:function(){return B.DictionaryBuilder}});Object.defineProperty(m,"FixedSizeBinaryBuilder",{enumerable:!0,get:function(){return B.FixedSizeBinaryBuilder}});Object.defineProperty(m,"FixedSizeListBuilder",{enumerable:!0,get:function(){return B.FixedSizeListBuilder}});Object.defineProperty(m,"FloatBuilder",{enumerable:!0,get:function(){return B.FloatBuilder}});Object.defineProperty(m,"Float16Builder",{enumerable:!0,get:function(){return B.Float16Builder}});Object.defineProperty(m,"Float32Builder",{enumerable:!0,get:function(){return B.Float32Builder}});Object.defineProperty(m,"Float64Builder",{enumerable:!0,get:function(){return B.Float64Builder}});Object.defineProperty(m,"IntervalBuilder",{enumerable:!0,get:function(){return B.IntervalBuilder}});Object.defineProperty(m,"IntervalDayTimeBuilder",{enumerable:!0,get:function(){return B.IntervalDayTimeBuilder}});Object.defineProperty(m,"IntervalYearMonthBuilder",{enumerable:!0,get:function(){return B.IntervalYearMonthBuilder}});Object.defineProperty(m,"IntBuilder",{enumerable:!0,get:function(){return B.IntBuilder}});Object.defineProperty(m,"Int8Builder",{enumerable:!0,get:function(){return B.Int8Builder}});Object.defineProperty(m,"Int16Builder",{enumerable:!0,get:function(){return B.Int16Builder}});Object.defineProperty(m,"Int32Builder",{enumerable:!0,get:function(){return B.Int32Builder}});Object.defineProperty(m,"Int64Builder",{enumerable:!0,get:function(){return B.Int64Builder}});Object.defineProperty(m,"Uint8Builder",{enumerable:!0,get:function(){return B.Uint8Builder}});Object.defineProperty(m,"Uint16Builder",{enumerable:!0,get:function(){return B.Uint16Builder}});Object.defineProperty(m,"Uint32Builder",{enumerable:!0,get:function(){return B.Uint32Builder}});Object.defineProperty(m,"Uint64Builder",{enumerable:!0,get:function(){return B.Uint64Builder}});Object.defineProperty(m,"ListBuilder",{enumerable:!0,get:function(){return B.ListBuilder}});Object.defineProperty(m,"MapBuilder",{enumerable:!0,get:function(){return B.MapBuilder}});Object.defineProperty(m,"NullBuilder",{enumerable:!0,get:function(){return B.NullBuilder}});Object.defineProperty(m,"StructBuilder",{enumerable:!0,get:function(){return B.StructBuilder}});Object.defineProperty(m,"TimestampBuilder",{enumerable:!0,get:function(){return B.TimestampBuilder}});Object.defineProperty(m,"TimestampSecondBuilder",{enumerable:!0,get:function(){return B.TimestampSecondBuilder}});Object.defineProperty(m,"TimestampMillisecondBuilder",{enumerable:!0,get:function(){return B.TimestampMillisecondBuilder}});Object.defineProperty(m,"TimestampMicrosecondBuilder",{enumerable:!0,get:function(){return B.TimestampMicrosecondBuilder}});Object.defineProperty(m,"TimestampNanosecondBuilder",{enumerable:!0,get:function(){return B.TimestampNanosecondBuilder}});Object.defineProperty(m,"TimeBuilder",{enumerable:!0,get:function(){return B.TimeBuilder}});Object.defineProperty(m,"TimeSecondBuilder",{enumerable:!0,get:function(){return B.TimeSecondBuilder}});Object.defineProperty(m,"TimeMillisecondBuilder",{enumerable:!0,get:function(){return B.TimeMillisecondBuilder}});Object.defineProperty(m,"TimeMicrosecondBuilder",{enumerable:!0,get:function(){return B.TimeMicrosecondBuilder}});Object.defineProperty(m,"TimeNanosecondBuilder",{enumerable:!0,get:function(){return B.TimeNanosecondBuilder}});Object.defineProperty(m,"UnionBuilder",{enumerable:!0,get:function(){return B.UnionBuilder}});Object.defineProperty(m,"DenseUnionBuilder",{enumerable:!0,get:function(){return B.DenseUnionBuilder}});Object.defineProperty(m,"SparseUnionBuilder",{enumerable:!0,get:function(){return B.SparseUnionBuilder}});Object.defineProperty(m,"Utf8Builder",{enumerable:!0,get:function(){return B.Utf8Builder}})});var Vn={self:typeof self!="undefined"&&self,window:typeof window!="undefined"&&window,global:typeof global!="undefined"&&global,document:typeof document!="undefined"&&document},jS=Vn.self||Vn.window||Vn.global||{},qS=Vn.window||Vn.self||Vn.global||{},_S=Vn.global||Vn.self||Vn.window||{},vS=Vn.document||{};var xn=Boolean(typeof process!="object"||String(process)!=="[object process]"||process.browser);var Cj=typeof process!="undefined"&&process.version&&/v([0-9]*)/.exec(process.version),TS=Cj&&parseFloat(Cj[1])||0;function Dm(t,e=!0,r){let n=r||new Set;if(t){if(Wj(t))n.add(t);else if(Wj(t.buffer))n.add(t.buffer);else if(!ArrayBuffer.isView(t)){if(e&&typeof t=="object")for(let i in t)Dm(t[i],e,n)}}return r===void 0?Array.from(n):[]}function Wj(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 io(){let parentPort;try{eval("globalThis.parentPort = require('worker_threads').parentPort"),parentPort=globalThis.parentPort}catch{}return parentPort}var Nm=new Map,Gr=class{static inWorkerThread(){return typeof self!="undefined"||Boolean(io())}static set onmessage(e){function r(i){let f=io(),{type:o,payload:s}=f?i:i.data;e(o,s)}let n=io();n?(n.on("message",r),n.on("exit",()=>console.debug("Node worker closing"))):globalThis.onmessage=r}static addEventListener(e){let r=Nm.get(e);r||(r=i=>{if(!kS(i))return;let f=io(),{type:o,payload:s}=f?i:i.data;e(o,s)}),io()?console.error("not implemented"):globalThis.addEventListener("message",r)}static removeEventListener(e){let r=Nm.get(e);Nm.delete(e),io()?console.error("not implemented"):globalThis.removeEventListener("message",r)}static postMessage(e,r){let n={source:"loaders.gl",type:e,payload:r},i=Dm(r),f=io();f?f.postMessage(n,i):globalThis.postMessage(n,i)}};function kS(t){let{type:e,data:r}=t;return e==="message"&&r&&typeof r.source=="string"&&r.source.startsWith("loaders.gl")}var BS=0;function Rm(t){!Gr.inWorkerThread()||(Gr.onmessage=async(e,r)=>{switch(e){case"process":try{let{input:n,options:i={},context:f={}}=r,o=await xS({loader:t,arrayBuffer:n,options:i,context:{...f,parse:IS}});Gr.postMessage("done",{result:o})}catch(n){let i=n instanceof Error?n.message:"";Gr.postMessage("error",{error:i})}break;default:}})}function IS(t,e){return new Promise((r,n)=>{let i=BS++,f=(s,u)=>{if(u.id===i)switch(s){case"done":Gr.removeEventListener(f),r(u.result);break;case"error":Gr.removeEventListener(f),n(u.error);break;default:}};Gr.addEventListener(f);let o={id:i,input:t,options:e};Gr.postMessage("process",o)})}async function xS({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 Kj(...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 Pm(t){let e=[];for await(let r of t)e.push(r);return Kj(...e)}function Yj(t){return t&&typeof t=="object"&&t.isBuffer}function Ju(t){return Na.toBuffer?Na.toBuffer(t):t}function Ur(t){if(Yj(t))return Na.toArrayBuffer(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 Hm(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 SS="3.3.0-alpha.14",ES={parquet:{type:"arrow-table",wasmUrl:"https://unpkg.com/parquet-wasm@0.3.1/esm2/arrow1_bg.wasm"}},Gj={name:"Apache Parquet",id:"parquet-wasm",module:"parquet",version:SS,worker:!1,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:ES};var AS="3.3.0-alpha.14",OS={parquet:{type:"object-row-table",url:void 0,columnList:[]}},Zj={name:"Apache Parquet",id:"parquet",module:"parquet",version:AS,worker:!0,category:"table",extensions:["parquet"],mimeTypes:["application/octet-stream"],binary:!0,tests:["PAR1","PARE"],options:OS};var es=de(Xj());function $j(t,e,r){switch(t){case"BOOLEAN":return DS(e);case"INT32":return RS(e);case"INT64":return HS(e);case"INT96":return zS(e);case"FLOAT":return LS(e);case"DOUBLE":return CS(e);case"BYTE_ARRAY":return KS(e);case"FIXED_LEN_BYTE_ARRAY":return GS(e,r);default:throw new Error(`unsupported type: ${t}`)}}function e0(t,e,r,n){switch(t){case"BOOLEAN":return NS(e,r);case"INT32":return PS(e,r);case"INT64":return MS(e,r);case"INT96":return US(e,r);case"FLOAT":return VS(e,r);case"DOUBLE":return WS(e,r);case"BYTE_ARRAY":return YS(e,r);case"FIXED_LEN_BYTE_ARRAY":return ZS(e,r,n);default:throw new Error(`unsupported type: ${t}`)}}function DS(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 NS(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 RS(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 PS(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readInt32LE(t.offset)),t.offset+=4;return r}function HS(t){let e=Buffer.alloc(8*t.length);for(let r=0;r<t.length;r++)es.default.writeInt64LE(t[r],e,r*8);return e}function MS(t,e){let r=[];for(let n=0;n<e;n++)r.push(es.default.readInt64LE(t.buffer,t.offset)),t.offset+=8;return r}function zS(t){let e=Buffer.alloc(12*t.length);for(let r=0;r<t.length;r++)t[r]>=0?(es.default.writeInt64LE(t[r],e,r*12),e.writeUInt32LE(0,r*12+8)):(es.default.writeInt64LE(~-t[r]+1,e,r*12),e.writeUInt32LE(4294967295,r*12+8));return e}function US(t,e){let r=[];for(let n=0;n<e;n++){let i=es.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 LS(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 VS(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readFloatLE(t.offset)),t.offset+=4;return r}function CS(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 WS(t,e){let r=[];for(let n=0;n<e;n++)r.push(t.buffer.readDoubleLE(t.offset)),t.offset+=8;return r}function KS(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 YS(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 GS(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 ZS(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 Pa=de(c0());function p0(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,d0(i,r)]),i=[]),f=1):f>0&&e[s]===e[s-1]?f+=1:(f&&(n=Buffer.concat([n,m0(e[s-1],f,r)]),f=0),i.push(e[s]));if(f?n=Buffer.concat([n,m0(e[e.length-1],f,r)]):i.length&&(n=Buffer.concat([n,d0(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 ec(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=Pa.default.decode(e.buffer,e.offset);if(e.offset+=Pa.default.encodingLength(f),f&1){let o=(f>>1)*8;i.push(...lE(e,o,n))}else{let o=f>>1;i.push(...uE(e,o,n))}}if(i=i.slice(0,r),i.length!==r)throw new Error("invalid RLE encoding");return i}function lE(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 uE(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 d0(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(Pa.default.encode(t.length/8<<1|1)),n])}function m0(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(Pa.default.encode(e<<1)),i])}function zm(t,e,r,n){return n.bitWidth=e.buffer.slice(e.offset,e.offset+1).readInt8(0),e.offset+=1,ec(t,e,r,{...n,disableEnvelope:!0})}function Um(t,e,r,n){throw new Error("Encode dictionary functionality is not supported")}var Ha={PLAIN:{encodeValues:$j,decodeValues:e0},RLE:{encodeValues:p0,decodeValues:ec},PLAIN_DICTIONARY:{encodeValues:Um,decodeValues:zm},RLE_DICTIONARY:{encodeValues:Um,decodeValues:zm}};var br=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 Pm(e)}improveError(e){return e.message.includes(this.name)||(e.message=`${this.name} ${e.message}`),e}};var tc=class extends br{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=de(t_()),Oi=de(_w());var vw=class extends br{constructor(e={}){super(e);this.name="deflate";this.extensions=[];this.contentEncodings=["deflate"];this.isSupported=!0;this._chunks=[];this.options=e}async compress(e){if(!xn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await(0,Cn.promisify1)(Oi.default.gzip)(e):await(0,Cn.promisify1)(Oi.default.deflate)(e);return Ur(r)}return this.compressSync(e)}async decompress(e){if(!xn&&this.options.deflate?.useZlib){let r=this.options.deflate?.gzip?await(0,Cn.promisify1)(Oi.default.gunzip)(e):await(0,Cn.promisify1)(Oi.default.inflate)(e);return Ur(r)}return this.decompressSync(e)}compressSync(e){if(!xn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Oi.default.gzipSync(e):Oi.default.deflateSync(e);return Ur(i)}let r=this.options?.deflate||{},n=new Uint8Array(e);return tl.default.deflate(n,r).buffer}decompressSync(e){if(!xn&&this.options.deflate?.useZlib){let i=this.options.deflate?.gzip?Oi.default.gunzipSync(e):Oi.default.inflateSync(e);return Ur(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 gc=class extends vw{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 nO=407708164,rl,nl=class extends br{constructor(e){super(e);this.name="lz4";this.extensions=["lz4"];this.contentEncodings=["x-lz4"];this.isSupported=!0;if(this.options=e,rl=rl||this.options?.modules?.lz4js,!rl)throw new Error(this.name)}compressSync(e){let r=new Uint8Array(e);return rl.compress(r).buffer}decompressSync(e,r){try{let n=this.checkMagicNumber(e),i=new Uint8Array(e);if(n)return rl.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),Ur(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++],u=s>>4;if(u>0){let T=u+240;for(;T===255;)T=e[o++],u+=T;let L=o+u;for(;o<L;)r[f++]=e[o++];if(o===i)return f}let l=e[o++]|e[o++]<<8;if(l===0||l>f)return-(o-2);let c=s&15,w=c+240;for(;w===255;)w=e[o++],c+=w;let p=f-l,g=f+c+4;for(;f<g;)r[f++]=r[p++]}return f}checkMagicNumber(e){return new Uint32Array(e.slice(0,4))[0]===nO}};var yc,jc,qc=class extends br{constructor(e){super(e);this.name="zstd";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e,yc=this.options?.modules?.["zstd-codec"],yc||console.warn(`${this.name} library not installed`)}async preload(){!jc&&yc&&(jc=await new Promise(e=>yc.run(r=>e(r))))}compressSync(e){let r=new jc.Simple,n=new Uint8Array(e);return r.compress(n).buffer}decompressSync(e){let r=new jc.Simple,n=new Uint8Array(e);return r.decompress(n).buffer}};var Tc=de(p_()),kc=class extends br{constructor(e){super(e);this.name="snappy";this.extensions=[];this.contentEncodings=[];this.isSupported=!0;this.options=e||{}}compressSync(e){return(0,Tc.compress)(e)}decompressSync(e){return(0,Tc.uncompress)(e)}};var bO=()=>{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]),u=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]),l=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);T(c);function w(a){let j=-1,b=16;for(;b>0;)a>>>b!=0&&(j+=b,a=a>>>b),b=b>>1;return j+a}function p(a,j,b){return 16+j+2*(b<<a)}function g(a,j,b){if(a<b+(2<<j))throw"maxDistance is too small";let _=(a-b>>j)+4,v=w(_)-1;return((v-1<<1|_>>v&1)-1<<j)+(1<<j)+b+16}function T(a){let j=new Int16Array(24),b=new Int16Array(24);b[0]=2;for(let _=0;_<23;++_)j[_+1]=j[_]+(1<<u[_]),b[_+1]=b[_]+(1<<l[_]);for(let _=0;_<704;++_){let v=_>>>6,N=-4;v>=2&&(v-=2,N=0);let z=(170064>>>v*2&3)<<3|_>>>3&7,Z=(156228>>>v*2&3)<<3|_&7,ae=b[Z],le=N+(ae>4?3:ae-2),ee=_*4;a[ee+0]=u[z]|l[Z]<<8,a[ee+1]=j[z],a[ee+2]=b[Z],a[ee+3]=le}}function L(a){let j=a.isLargeWindow;if(a.isLargeWindow=0,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),De(a,1)==0)return 16;let b=De(a,3);return b!=0?17+b:(b=De(a,3),b!=0?b==1?j==0||(a.isLargeWindow=1,De(a,1)==1)||(b=De(a,6),b<10||b>30)?-1:b:8+b:17)}function O(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isEager=1}function C(a){if(a.runningState!=1)throw"State MUST be freshly initialized";a.isLargeWindow=1}function te(a,j){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]=j,a.cdNumChunks++,a.cdTotalSize+=j.length,a.cdChunkOffsets[a.cdNumChunks]=a.cdTotalSize}function H(a,j){if(a.runningState!=0)throw"State MUST be uninitialized";a.blockTrees=new Int32Array(3091),a.blockTrees[0]=7,a.distRbIdx=3;let b=g(2147483644,3,15<<3);a.distExtraBits=new Int8Array(b),a.distOffset=new Int32Array(b),a.input=j,h(a),a.runningState=1}function M(a){if(a.runningState==0)throw"State MUST be initialized";a.runningState!=11&&(a.runningState=11,a.input!=null&&(oS(a.input),a.input=null))}function R(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),De(a,1)!=0){let j=De(a,3);return j==0?1:De(a,j)+(1<<j)}return 0}function F(a){if(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.inputEnd=De(a,1),a.metaBlockLength=0,a.isUncompressed=0,a.isMetadata=0,a.inputEnd!=0&&De(a,1)!=0)return;let j=De(a,2)+4;if(j==7){if(a.isMetadata=1,De(a,1)!=0)throw"Corrupted reserved bit";let b=De(a,2);if(b==0)return;for(let _=0;_<b;_++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let v=De(a,8);if(v==0&&_+1==b&&b>1)throw"Exuberant nibble";a.metaBlockLength|=v<<_*8}}else for(let b=0;b<j;b++){a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let _=De(a,4);if(_==0&&b+1==j&&j>4)throw"Exuberant nibble";a.metaBlockLength|=_<<b*4}a.metaBlockLength++,a.inputEnd==0&&(a.isUncompressed=De(a,1))}function oe(a,j,b){let _=a[j],v=b.accumulator32>>>b.bitOffset;_+=v&255;let N=a[_]>>16,z=a[_]&65535;if(N<=8)return b.bitOffset+=N,z;_+=z;let Z=(1<<N)-1;return _+=(v&Z)>>>8,b.bitOffset+=(a[_]>>16)+8,a[_]&65535}function re(a,j,b){b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let _=oe(a,j,b),v=s[_];return b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16),o[_]+(v<=16?De(b,v):$o(b,v))}function ue(a,j){let b=a[j];for(;j>0;j--)a[j]=a[j-1];a[0]=b}function Ye(a,j){let b=new Int32Array(256);for(let _=0;_<256;_++)b[_]=_;for(let _=0;_<j;_++){let v=a[_]&255;a[_]=b[v],v!=0&&ue(b,v)}}function q(a,j,b,_){let v=0,N=8,z=0,Z=0,ae=32768,le=new Int32Array(32+1),ee=le.length-1;for(Xo(le,ee,5,a,18);v<j&&ae>0;){_.halfOffset>2030&&ur(_),_.bitOffset>=16&&(_.accumulator32=_.shortBuffer[_.halfOffset++]<<16|_.accumulator32>>>16,_.bitOffset-=16);let Oe=_.accumulator32>>>_.bitOffset&31;_.bitOffset+=le[Oe]>>16;let Re=le[Oe]&65535;if(Re<16)z=0,b[v++]=Re,Re!=0&&(N=Re,ae-=32768>>Re);else{let mt=Re-14,Mr=0;Re==16&&(Mr=N),Z!=Mr&&(z=0,Z=Mr);let Yr=z;z>0&&(z-=2,z<<=mt),_.bitOffset>=16&&(_.accumulator32=_.shortBuffer[_.halfOffset++]<<16|_.accumulator32>>>16,_.bitOffset-=16),z+=De(_,mt)+3;let Kt=z-Yr;if(v+Kt>j)throw"symbol + repeatDelta > numSymbols";for(let Me=0;Me<Kt;Me++)b[v++]=Z;Z!=0&&(ae-=Kt<<15-Z)}}if(ae!=0)throw"Unused space";b.fill(0,v,j)}function Ae(a,j){for(let b=0;b<j-1;++b)for(let _=b+1;_<j;++_)if(a[b]==a[_])throw"Duplicate simple Huffman code symbol"}function Ue(a,j,b,_,v){let N=new Int32Array(j),z=new Int32Array(4),Z=1+w(a-1),ae=De(v,2)+1;for(let ee=0;ee<ae;ee++){v.bitOffset>=16&&(v.accumulator32=v.shortBuffer[v.halfOffset++]<<16|v.accumulator32>>>16,v.bitOffset-=16);let Oe=De(v,Z);if(Oe>=j)throw"Can't readHuffmanCode";z[ee]=Oe}Ae(z,ae);let le=ae;switch(ae==4&&(le+=De(v,1)),le){case 1:N[z[0]]=1;break;case 2:N[z[0]]=1,N[z[1]]=1;break;case 3:N[z[0]]=1,N[z[1]]=2,N[z[2]]=2;break;case 4:N[z[0]]=2,N[z[1]]=2,N[z[2]]=2,N[z[3]]=2;break;case 5:N[z[0]]=1,N[z[1]]=2,N[z[2]]=3,N[z[3]]=3;break;default:break}return Xo(b,_,8,N,j)}function he(a,j,b,_,v){let N=new Int32Array(a),z=new Int32Array(18),Z=32,ae=0;for(let le=j;le<18&&Z>0;le++){let ee=r[le];v.bitOffset>=16&&(v.accumulator32=v.shortBuffer[v.halfOffset++]<<16|v.accumulator32>>>16,v.bitOffset-=16);let Oe=v.accumulator32>>>v.bitOffset&15;v.bitOffset+=f[Oe]>>16;let Re=f[Oe]&65535;z[ee]=Re,Re!=0&&(Z-=32>>Re,ae++)}if(Z!=0&&ae!=1)throw"Corrupted Huffman code histogram";return q(z,a,N,v),Xo(b,_,8,N,a)}function Ge(a,j,b,_,v){v.halfOffset>2030&&ur(v),v.bitOffset>=16&&(v.accumulator32=v.shortBuffer[v.halfOffset++]<<16|v.accumulator32>>>16,v.bitOffset-=16);let N=De(v,2);return N==1?Ue(a,j,b,_,v):he(j,N,b,_,v)}function $(a,j,b){b.halfOffset>2030&&ur(b);let _=R(b)+1;if(_==1)return j.fill(0,0,a),_;b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let v=De(b,1),N=0;v!=0&&(N=De(b,4)+1);let z=_+N,Z=e[z+31>>5],ae=new Int32Array(Z+1),le=ae.length-1;Ge(z,z,ae,le,b);for(let ee=0;ee<a;){b.halfOffset>2030&&ur(b),b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let Oe=oe(ae,le,b);if(Oe==0)j[ee]=0,ee++;else if(Oe<=N){b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16);let Re=(1<<Oe)+De(b,Oe);for(;Re!=0;){if(ee>=a)throw"Corrupted context map";j[ee]=0,ee++,Re--}}else j[ee]=Oe-N,ee++}return b.bitOffset>=16&&(b.accumulator32=b.shortBuffer[b.halfOffset++]<<16|b.accumulator32>>>16,b.bitOffset-=16),De(b,1)==1&&Ye(j,a),_}function qt(a,j,b){let _=a.rings,v=4+j*2;a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let N=oe(a.blockTrees,2*j,a),z=re(a.blockTrees,2*j+1,a);return N==1?N=_[v+1]+1:N==0?N=_[v]:N-=2,N>=b&&(N-=b),_[v]=_[v+1],_[v+1]=N,z}function nt(a){a.literalBlockLength=qt(a,0,a.numLiteralBlockTypes);let j=a.rings[5];a.contextMapSlice=j<<6,a.literalTreeIdx=a.contextMap[a.contextMapSlice]&255;let b=a.contextModes[j];a.contextLookupOffset1=b<<9,a.contextLookupOffset2=a.contextLookupOffset1+256}function Tr(a){a.commandBlockLength=qt(a,1,a.numCommandBlockTypes),a.commandTreeIdx=a.rings[7]}function vi(a){a.distanceBlockLength=qt(a,2,a.numDistanceBlockTypes),a.distContextMapSlice=a.rings[9]<<2}function eo(a){let j=a.maxRingBufferSize;if(j>a.expectedTotalSize){let v=a.expectedTotalSize;for(;j>>1>v;)j>>=1;a.inputEnd==0&&j<16384&&a.maxRingBufferSize>=16384&&(j=16384)}if(j<=a.ringBufferSize)return;let b=j+37,_=new Int8Array(b);a.ringBuffer.length!=0&&_.set(a.ringBuffer.subarray(0,0+a.ringBufferSize),0),a.ringBuffer=_,a.ringBufferSize=j}function to(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&&ur(a),F(a),!(a.metaBlockLength==0&&a.isMetadata==0)&&(a.isUncompressed!=0||a.isMetadata!=0?(U(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&&eo(a)))}function Bn(a,j,b){let _=a.blockTrees[2*j];if(b<=1)return a.blockTrees[2*j+1]=_,a.blockTrees[2*j+2]=_,1<<28;let v=b+2;_+=Ge(v,v,a.blockTrees,2*j,a),a.blockTrees[2*j+1]=_;let N=26;return _+=Ge(N,N,a.blockTrees,2*j+1,a),a.blockTrees[2*j+2]=_,re(a.blockTrees,2*j+1,a)}function Hr(a,j){let b=a.distExtraBits,_=a.distOffset,v=a.distancePostfixBits,N=a.numDirectDistanceCodes,z=1<<v,Z=1,ae=0,le=16;for(let ee=0;ee<N;++ee)b[le]=0,_[le]=ee+1,++le;for(;le<j;){let ee=N+((2+ae<<Z)-4<<v)+1;for(let Oe=0;Oe<z;++Oe)b[le]=Z,_[le]=ee+Oe,++le;Z=Z+ae,ae=ae^1}}function Wt(a){a.numLiteralBlockTypes=R(a)+1,a.literalBlockLength=Bn(a,0,a.numLiteralBlockTypes),a.numCommandBlockTypes=R(a)+1,a.commandBlockLength=Bn(a,1,a.numCommandBlockTypes),a.numDistanceBlockTypes=R(a)+1,a.distanceBlockLength=Bn(a,2,a.numDistanceBlockTypes),a.halfOffset>2030&&ur(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.distancePostfixBits=De(a,2),a.numDirectDistanceCodes=De(a,4)<<a.distancePostfixBits,a.contextModes=new Int8Array(a.numLiteralBlockTypes);for(let N=0;N<a.numLiteralBlockTypes;){let z=ff(N+96,a.numLiteralBlockTypes);for(;N<z;++N)a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),a.contextModes[N]=De(a,2);a.halfOffset>2030&&ur(a)}a.contextMap=new Int8Array(a.numLiteralBlockTypes<<6);let j=$(a.numLiteralBlockTypes<<6,a.contextMap,a);a.trivialLiteralContext=1;for(let N=0;N<a.numLiteralBlockTypes<<6;N++)if(a.contextMap[N]!=N>>6){a.trivialLiteralContext=0;break}a.distContextMap=new Int8Array(a.numDistanceBlockTypes<<2);let b=$(a.numDistanceBlockTypes<<2,a.distContextMap,a);a.literalTreeGroup=Un(256,256,j,a),a.commandTreeGroup=Un(704,704,a.numCommandBlockTypes,a);let _=p(a.distancePostfixBits,a.numDirectDistanceCodes,24),v=_;a.isLargeWindow==1&&(_=p(a.distancePostfixBits,a.numDirectDistanceCodes,62),v=g(2147483644,a.distancePostfixBits,a.numDirectDistanceCodes)),a.distanceTreeGroup=Un(_,v,b,a),Hr(a,v),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 Ti(a){let j=a.ringBuffer;if(a.metaBlockLength<=0){I(a),a.runningState=2;return}let b=ff(a.ringBufferSize-a.pos,a.metaBlockLength);if(xe(a,j,a.pos,b),a.metaBlockLength-=b,a.pos+=b,a.pos==a.ringBufferSize){a.nextRunningState=6,a.runningState=12;return}I(a),a.runningState=2}function In(a){let j=ff(a.outputLength-a.outputUsed,a.ringBufferBytesReady-a.ringBufferBytesWritten);return j!=0&&(a.output.set(a.ringBuffer.subarray(a.ringBufferBytesWritten,a.ringBufferBytesWritten+j),a.outputOffset+a.outputUsed),a.outputUsed+=j,a.ringBufferBytesWritten+=j),a.outputUsed<a.outputLength?1:0}function Un(a,j,b,_){let v=e[j+31>>5],N=new Int32Array(b+b*v),z=b;for(let Z=0;Z<b;++Z)N[Z]=z,z+=Ge(a,j,N,Z,_);return N}function Zo(a){let j=a.ringBufferSize;return a.isEager!=0&&(j=ff(j,a.ringBufferBytesWritten+a.outputLength-a.outputUsed)),j}function Jo(a,j){if(a.distance>2147483644)throw"Invalid backward reference";let b=a.distance-a.maxDistance-1-a.cdTotalSize;if(b<0)ro(a,-b-1,a.copyLength),a.runningState=14;else{let _=st,v=a.copyLength;if(v>31)throw"Invalid backward reference";let N=nf[v];if(N==0)throw"Invalid backward reference";let z=At[v],Z=(1<<N)-1,ae=b&Z,le=b>>>N;z+=ae*v;let ee=Qo;if(le>=ee.numTransforms)throw"Invalid backward reference";let Oe=Fm(a.ringBuffer,a.pos,_,z,v,ee,le);if(a.pos+=Oe,a.metaBlockLength-=Oe,a.pos>=j){a.nextRunningState=4,a.runningState=12;return}a.runningState=4}}function hr(a){a.cdBlockMap=new Int8Array(256);let j=8;for(;a.cdTotalSize-1>>>j!=0;)j++;j-=8,a.cdBlockBits=j;let b=0,_=0;for(;b<a.cdTotalSize;){for(;a.cdChunkOffsets[_+1]<b;)_++;a.cdBlockMap[b>>>j]=_,b+=1<<j}}function ro(a,j,b){a.cdBlockBits==-1&&hr(a);let _=a.cdBlockMap[j>>>a.cdBlockBits];for(;j>=a.cdChunkOffsets[_+1];)_++;if(a.cdTotalSize>j+b)throw"Invalid backward reference";a.distRbIdx=a.distRbIdx+1&3,a.rings[a.distRbIdx]=a.distance,a.metaBlockLength-=b,a.cdBrIndex=_,a.cdBrOffset=j-a.cdChunkOffsets[_],a.cdBrLength=b,a.cdBrCopied=0}function Aa(a,j){let b=a.pos,_=b;for(;a.cdBrLength!=a.cdBrCopied;){let v=j-b,z=a.cdChunkOffsets[a.cdBrIndex+1]-a.cdChunkOffsets[a.cdBrIndex]-a.cdBrOffset,Z=a.cdBrLength-a.cdBrCopied;if(Z>z&&(Z=z),Z>v&&(Z=v),fS(a.ringBuffer,b,a.cdChunks[a.cdBrIndex],a.cdBrOffset,a.cdBrOffset+Z),b+=Z,a.cdBrOffset+=Z,a.cdBrCopied+=Z,Z==z&&(a.cdBrIndex++,a.cdBrOffset=0),b>=j)break}return b-_}function Am(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 v=L(a);if(v==-1)throw"Invalid 'windowBits' code";a.maxRingBufferSize=1<<v,a.maxBackwardDistance=a.maxRingBufferSize-16,a.runningState=2}let j=Zo(a),b=a.ringBufferSize-1,_=a.ringBuffer;for(;a.runningState!=10;)switch(a.runningState){case 2:if(a.metaBlockLength<0)throw"Invalid metablock length";to(a),j=Zo(a),b=a.ringBufferSize-1,_=a.ringBuffer;continue;case 3:Wt(a),a.runningState=4;case 4:if(a.metaBlockLength<=0){a.runningState=2;continue}a.halfOffset>2030&&ur(a),a.commandBlockLength==0&&Tr(a),a.commandBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let v=oe(a.commandTreeGroup,a.commandTreeIdx,a)<<2,N=c[v],z=c[v+1],Z=c[v+2];a.distanceCode=c[v+3],a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let ae=N&255;a.insertLength=z+(ae<=16?De(a,ae):$o(a,ae)),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let le=N>>8;a.copyLength=Z+(le<=16?De(a,le):$o(a,le)),a.j=0,a.runningState=7;case 7:if(a.trivialLiteralContext!=0){for(;a.j<a.insertLength;)if(a.halfOffset>2030&&ur(a),a.literalBlockLength==0&&nt(a),a.literalBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),_[a.pos]=oe(a.literalTreeGroup,a.literalTreeIdx,a),a.pos++,a.j++,a.pos>=j){a.nextRunningState=7,a.runningState=12;break}}else{let Kt=_[a.pos-1&b]&255,Me=_[a.pos-2&b]&255;for(;a.j<a.insertLength;){a.halfOffset>2030&&ur(a),a.literalBlockLength==0&&nt(a);let zr=ft[a.contextLookupOffset1+Kt]|ft[a.contextLookupOffset2+Me],ki=a.contextMap[a.contextMapSlice+zr]&255;if(a.literalBlockLength--,Me=Kt,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),Kt=oe(a.literalTreeGroup,ki,a),_[a.pos]=Kt,a.pos++,a.j++,a.pos>=j){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 ee=a.distanceCode;if(ee<0)a.distance=a.rings[a.distRbIdx];else{a.halfOffset>2030&&ur(a),a.distanceBlockLength==0&&vi(a),a.distanceBlockLength--,a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);let Kt=a.distContextMap[a.distContextMapSlice+ee]&255;if(ee=oe(a.distanceTreeGroup,Kt,a),ee<16){let Me=a.distRbIdx+n[ee]&3;if(a.distance=a.rings[Me]+i[ee],a.distance<0)throw"Negative distance"}else{let Me=a.distExtraBits[ee],zr;a.bitOffset+Me<=32?zr=De(a,Me):(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),zr=Me<=16?De(a,Me):$o(a,Me)),a.distance=a.distOffset[ee]+(zr<<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(ee>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 Oe=a.pos-a.distance&b,Re=a.pos,mt=a.copyLength-a.j,Mr=Oe+mt,Yr=Re+mt;if(Mr<b&&Yr<b){if(mt<12||Mr>Re&&Yr>Oe)for(let Kt=0;Kt<mt;Kt+=4)_[Re++]=_[Oe++],_[Re++]=_[Oe++],_[Re++]=_[Oe++],_[Re++]=_[Oe++];else _.copyWithin(Re,Oe,Mr);a.j+=mt,a.metaBlockLength-=mt,a.pos+=mt}else for(;a.j<a.copyLength;)if(_[a.pos]=_[a.pos-a.distance&b],a.metaBlockLength--,a.pos++,a.j++,a.pos>=j){a.nextRunningState=8,a.runningState=12;break}a.runningState==8&&(a.runningState=4);continue;case 9:Jo(a,j);continue;case 14:if(a.pos+=Aa(a,j),a.pos>=j){a.nextRunningState=14,a.runningState=12;return}a.runningState=4;continue;case 5:for(;a.metaBlockLength>0;)a.halfOffset>2030&&ur(a),a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16),De(a,8),a.metaBlockLength--;a.runningState=2;continue;case 6:Ti(a);continue;case 12:a.ringBufferBytesReady=ff(a.pos,a.ringBufferSize),a.runningState=13;case 13:if(In(a)==0)return;a.pos>=a.maxBackwardDistance&&(a.maxDistance=a.maxBackwardDistance),a.pos>=a.ringBufferSize&&(a.pos>a.ringBufferSize&&_.copyWithin(0,a.ringBufferSize,a.pos),a.pos&=b,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";U(a),Fa(a,1)}}function Ku(a,j,b){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(j),this.prefixSuffixHeads=new Int32Array(b+1)}let Qo=new Ku(121,167,50);function Om(a,j,b,_,v){let N=_.length,z=1,Z=0;for(let ae=0;ae<N;++ae){let le=_.charCodeAt(ae);le==35?j[z++]=Z:a[Z++]=le}for(let ae=0;ae<363;++ae)b[ae]=v.charCodeAt(ae)-32}Om(Qo.prefixSuffixStorage,Qo.prefixSuffixHeads,Qo.triplets,`# #s #, #e #.# the #.com/#\xC2\xA0# of # and # in # to #"#">#
26
26
  #]# for # a # that #. # with #'# from # by #. The # on # as # is #ing #
27
- #:#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 Nm(a,j,b,_,T,N,U){let Z=j,ae=N.triplets,le=N.prefixSuffixStorage,ee=N.prefixSuffixHeads,Oe=3*U,Re=ae[Oe],mt=ae[Oe+1],Mr=ae[Oe+2],Yr=ee[Re],Kt=ee[Re+1],Me=ee[Mr],zr=ee[Mr+1],ki=mt-11,Zu=mt-0;for((ki<1||ki>9)&&(ki=0),(Zu<1||Zu>9)&&(Zu=0);Yr!=Kt;)a[Z++]=le[Yr++];ki>T&&(ki=T),_+=ki,T-=ki,T-=Zu;let Wj=T;for(;Wj>0;)a[Z++]=b[_++],Wj--;if(mt==10||mt==11){let ut=Z-T;for(mt==10&&(T=1);T>0;){let no=a[ut]&255;no<192?(no>=97&&no<=122&&(a[ut]^=32),ut+=1,T-=1):no<224?(a[ut+1]^=32,ut+=2,T-=2):(a[ut+2]^=5,ut+=3,T-=3)}}else if(mt==21||mt==22){let ut=Z-T,no=N.params[U],kr=(no&32767)+(16777216-(no&32768));for(;T>0;){let of=1,Bi=a[ut]&255;if(Bi<128)kr+=Bi,a[ut]=kr&127;else if(!(Bi<192)){if(Bi<224)if(T>=2){let sf=a[ut+1];kr+=sf&63|(Bi&31)<<6,a[ut]=192|kr>>6&31,a[ut+1]=sf&192|kr&63,of=2}else of=T;else if(Bi<240)if(T>=3){let sf=a[ut+1],Ra=a[ut+2];kr+=Ra&63|(sf&63)<<6|(Bi&15)<<12,a[ut]=224|kr>>12&15,a[ut+1]=sf&192|kr>>6&63,a[ut+2]=Ra&192|kr&63,of=3}else of=T;else if(Bi<248)if(T>=4){let sf=a[ut+1],Ra=a[ut+2],Kj=a[ut+3];kr+=Kj&63|(Ra&63)<<6|(sf&63)<<12|(Bi&7)<<18,a[ut]=240|kr>>18&7,a[ut+1]=sf&192|kr>>12&63,a[ut+2]=Ra&192|kr>>6&63,a[ut+3]=Kj&192|kr&63,of=4}else of=T}ut+=of,T-=of,mt==21&&(T=0)}}for(;Me!=zr;)a[Z++]=le[Me++];return Z-j}function Gu(a,j){let b=1<<j-1;for(;(a&b)!=0;)b>>=1;return(a&b-1)+b}function Da(a,j,b,_,T){do _-=b,a[j+_]=T;while(_>0)}function rf(a,j,b){let _=1<<j-b;for(;j<15&&(_-=a[j],!(_<=0));)j++,_<<=1;return j-b}function es(a,j,b,_,T){let N=a[j],U,Z=new Int32Array(T),ae=new Int32Array(16),le=new Int32Array(16),ee;for(ee=0;ee<T;ee++)ae[_[ee]]++;le[1]=0;for(let Me=1;Me<15;Me++)le[Me+1]=le[Me]+ae[Me];for(ee=0;ee<T;ee++)_[ee]!=0&&(Z[le[_[ee]]++]=ee);let Oe=b,Re=1<<Oe,mt=Re;if(le[15]==1){for(U=0;U<mt;U++)a[N+U]=Z[0];return mt}U=0,ee=0;for(let Me=1,zr=2;Me<=b;Me++,zr<<=1)for(;ae[Me]>0;ae[Me]--)Da(a,N+U,zr,Re,Me<<16|Z[ee++]),U=Gu(U,Me);let Mr=mt-1,Yr=-1,Kt=N;for(let Me=b+1,zr=2;Me<=15;Me++,zr<<=1)for(;ae[Me]>0;ae[Me]--)(U&Mr)!=Yr&&(Kt+=Re,Oe=rf(ae,Me,b),Re=1<<Oe,mt+=Re,Yr=U&Mr,a[N+Yr]=Oe+b<<16|Kt-N-Yr),Da(a,Kt+(U>>b),zr,Re,Me-b<<16|Z[ee++]),U=Gu(U,Me);return mt}function ur(a){if(a.endOfStreamReached!=0){if(ce(a)>=-2)return;throw"No more input"}let j=a.halfOffset<<1,b=4096-j;for(a.byteBuffer.copyWithin(0,j,4096),a.halfOffset=0;b<4096;){let _=4096-b,T=Cj(a.input,a.byteBuffer,b,_);if(T<=0){a.endOfStreamReached=1,a.tailBytes=b,b+=1;break}b+=T}we(a,b)}function Na(a,j){if(a.endOfStreamReached==0)return;let b=(a.halfOffset<<1)+(a.bitOffset+7>>3)-4;if(b>a.tailBytes)throw"Read after end";if(j!=0&&b!=a.tailBytes)throw"Unused bytes after end"}function Vj(a){if(a.bitOffset>32)throw"Accumulator underloaded: "+a.bitOffset}function De(a,j){let b=a.accumulator32>>>a.bitOffset&(1<<j)-1;return a.bitOffset+=j,b}function ts(a,j){let b=De(a,16);return a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,b|De(a,j-16)<<16}function h(a){a.byteBuffer=new Int8Array(4160),a.accumulator32=0,a.shortBuffer=new Int16Array(2080),a.bitOffset=32,a.halfOffset=2048,a.endOfStreamReached=0,y(a)}function y(a){a.halfOffset>2030&&ur(a),Na(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 I(a){a.bitOffset==32&&y(a)}function L(a){let j=32-a.bitOffset&7;if(j!=0&&De(a,j)!=0)throw"Corrupted padding bits"}function ce(a){let j=2048;return a.endOfStreamReached!=0&&(j=a.tailBytes+1>>1),j-a.halfOffset}function xe(a,j,b,_){if((a.bitOffset&7)!=0)throw"Unaligned copyBytes";for(;a.bitOffset!=32&&_!=0;)j[b++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,_--;if(_==0)return;let T=ff(ce(a),_>>1);if(T>0){let N=a.halfOffset<<1,U=T<<1;j.set(a.byteBuffer.subarray(N,N+U),b),b+=U,_-=U,a.halfOffset+=T}if(_!=0){if(ce(a)>0){for(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);_!=0;)j[b++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,_--;Na(a,0);return}for(;_>0;){let N=Cj(a.input,j,b,_);if(N==-1)throw"Unexpected end of input";b+=N,_-=N}}}function we(a,j){let b=a.byteBuffer,_=j>>1,T=a.shortBuffer;for(let N=0;N<_;++N)T[N]=b[N*2]&255|(b[N*2+1]&255)<<8}let ft=new Int32Array(2048);function Xe(a,j,b){for(let T=0;T<256;++T)a[T]=T&63,a[512+T]=T>>2,a[1792+T]=2+(T>>6);for(let T=0;T<128;++T)a[1024+T]=4*(j.charCodeAt(T)-32);for(let T=0;T<64;++T)a[1152+T]=T&1,a[1216+T]=2+(T&1);let _=1280;for(let T=0;T<19;++T){let N=T&3,U=b.charCodeAt(T)-32;for(let Z=0;Z<U;++Z)a[_++]=N}for(let T=0;T<16;++T)a[1792+T]=1,a[2032+T]=6;a[1792]=0,a[2047]=7;for(let T=0;T<256;++T)a[1536+T]=a[1792+T]<<3}Xe(ft,` !! ! "#$##%#$&'##(#)#++++++++++((&*'##,---,---,-----,-----,-----&#'###.///.///./////./////./////&#'# `,"A/* ': & : $ \x81 @");function ot(){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 st=null,At=new Int32Array(32),nf=new Int32Array(32);function aS(a,j){if(mS(a)==0||dS(a)==0)throw"newData must be a direct read-only byte buffer";if(j.length>31)throw"sizeBits length must be at most "+31;for(let U=0;U<4;++U)if(j[U]!=0)throw"first "+4+" must be 0";let b=At,_=nf;_.set(j.subarray(0,0+j.length),0);let T=0,N=a.length;for(let U=0;U<j.length;++U){b[U]=T;let Z=_[U];if(Z!=0){if(Z>=31)throw"newSizeBits values must be less than 31";if(T+=U<<Z,T<=0||T>N)throw"newSizeBits is inconsistent: overflow"}}for(let U=j.length;U<32;++U)b[U]=T;if(T!=N)throw"newSizeBits is inconsistent: underflow";st=a}function lS(a,j,b,_,T,N){let U=hS(j+b);if(U.length!=a.length)throw"Corrupted brotli dictionary";let Z=0,ae=_.length;for(let le=0;le<ae;le+=2){let ee=_.charCodeAt(le)-36,Oe=_.charCodeAt(le+1)-36;for(let Re=0;Re<ee;++Re)U[Z]^=3,Z++;for(let Re=0;Re<Oe;++Re)U[Z]^=236,Z++}for(let le=0;le<N.length;++le)T[le]=N.charCodeAt(le)-65;a.set(U)}{let a=new Int8Array(122784),j=new Int32Array(25);lS(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",j,"AAAAKKLLKKKKKJJIHHIHHGGFF"),wS(a),aS(pS(a),j)}function ff(a,j){return a<=j?a:j}function uS(a,j,b,_,T){a.set(b.slice(_,T),j)}function Cj(a,j,b,_){if(a==null)return-1;let T=ff(a.offset+_,a.data.length),N=T-a.offset;return j.set(a.data.subarray(a.offset,T),b),a.offset+=N,N}function cS(a){return 0}function pS(a){return a}function dS(a){return 1}function mS(a){return 1}function wS(a){}function hS(a){let j=a.length,b=new Int8Array(j);for(let _=0;_<j;++_)b[_]=a.charCodeAt(_);return b}function bS(a,j){let b=new ot;if(M(b,new t(a)),j){let Z=j.customDictionary;Z&&te(b,Z)}let _=0,T=[];for(;;){let Z=new Int8Array(16384);if(T.push(Z),b.output=Z,b.outputOffset=0,b.outputLength=16384,b.outputUsed=0,Fm(b),_+=b.outputUsed,b.outputUsed<16384)break}z(b);let N=new Int8Array(_),U=0;for(let Z=0;Z<T.length;++Z){let ae=T[Z],ee=ff(_,U+16384)-U;ee<16384?N.set(ae.subarray(0,ee),U):N.set(ae,U),U+=ee}return N}return bS},Lv=E4();var Vl=de(th());var Vv={brotli:{mode:0,quality:8,lgwin:22}},go,Yc=class extends yr{constructor(e){super(e);this.name="brotli";this.extensions=["br"];this.contentEncodings=["br"];this.isSupported=!0;this.options=e}async preload(){go=go||this.options?.modules?.brotli,go||console.warn(`${this.name} library not installed`)}async compress(e){if(!xn&&this.options.brotli?.useZlib){let r=await(0,Cn.promisify1)(Vl.default.brotliCompress)(e);return Ur(r)}return this.compressSync(e)}compressSync(e){if(!xn&&this.options.brotli?.useZlib){let f=Vl.default.brotliCompressSync(e);return Ur(f)}let r={...Vv.brotli,...this.options?.brotli},n=new Uint8Array(e);if(!go)throw new Error("brotli compression: brotli module not installed");return go.compress(n,r).buffer}async decompress(e){if(!xn&&this.options.brotli?.useZlib){let r=await(0,Cn.promisify1)(Vl.default.brotliDecompress)(e);return Ur(r)}return this.decompressSync(e)}decompressSync(e){if(!xn&&this.options.brotli?.useZlib){let f=Vl.default.brotliDecompressSync(e);return Ur(f)}let r={...Vv.brotli,...this.options?.brotli},n=new Uint8Array(e);return go?go.decompress(n,r).buffer:Lv(n,void 0).buffer}};var Cl,Gc=class extends yr{constructor(e){super(e);this.name="lzo";this.extensions=[];this.contentEncodings=[];this.isSupported=!1;if(this.options=e,Cl=Cl||this.options?.modules?.lzo,!Cl)throw new Error(this.name)}async preload(){}async compress(e){await this.preload();let r=Xu(e);return Cl.compress(r).buffer}async decompress(e){try{await this.preload();let r=Xu(e);return Cl.decompress(r).buffer}catch(r){throw r}}};function Cv(t){return Buffer.isBuffer(t)?new Uint8Array(t.buffer,t.byteOffset,t.length).slice().buffer:t}function Wv(t){return Buffer.from(t)}var sT=de(fT()),aT=de(oT()),Yl={lz4js:sT.default,lzo:aT.default},hh={UNCOMPRESSED:new _c,GZIP:new Mc,SNAPPY:new Kc,BROTLI:new Yc({modules:Yl}),LZ4:new zl({modules:Yl}),LZ4_RAW:new zl({modules:Yl}),LZO:new Gc({modules:Yl}),ZSTD:new Lc({modules:Yl})};async function tp(t,e,r){let n=hh[t];if(!n)throw new Error(`parquet: invalid compression method: ${t}`);let i=Cv(e),f=await n.decompress(i,r);return Wv(f)}async function lT(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 bh(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 bh(t,e){let r,{pageHeader:n,length:i}=vq(t.buffer,t.offset);t.offset+=i;let f=en(rc,n.type);switch(f){case"DATA_PAGE":r=await L4(t,n,e);break;case"DATA_PAGE_V2":r=await V4(t,n,e);break;case"DICTIONARY_PAGE":r={dictionary:await C4(t,n,e),pageHeader:n};break;default:throw new Error(`invalid page type: ${f}`)}return r}function gh(t,e,r){let n={},i=e;for(let f=0;f<r;f++){let o=t[i],s=i>0?en(ec,o.repetition_type):"ROOT",u=!1,l=!1;switch(s){case"REQUIRED":break;case"OPTIONAL":u=!0;break;case"REPEATED":l=!0;break;default:throw new Error("parquet: unknown repetition type")}if(o.num_children>0){let c=gh(t,i+1,o.num_children);i=c.next,n[o.name]={optional:u,repeated:l,fields:c.schema}}else{let c=en(ns,o.type),w=c;switch(o.converted_type&&(w=en($u,o.converted_type)),w){case"DECIMAL":w=`${w}_${c}`;break;default:}n[o.name]={type:w,typeLength:o.type_length,presision:o.precision,scale:o.scale,optional:u,repeated:l},i++}}return{schema:n,offset:e,next:i}}function qo(t,e,r,n,i){if(!(e in ql))throw new Error(`invalid encoding: ${e}`);return ql[e].decodeValues(t,r,n,i)}async function L4(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 v=await tp(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);f={buffer:v,offset:0,size:v.length},t.offset=n}let o=en(fo,e.data_page_header?.repetition_level_encoding),s=new Array(i);r.column.rLevelMax>0?s=qo(Pa,o,f,i,{bitWidth:gl(r.column.rLevelMax),disableEnvelope:!1}):s.fill(0);let u=en(fo,e.data_page_header?.definition_level_encoding),l=new Array(i);r.column.dLevelMax>0?l=qo(Pa,u,f,i,{bitWidth:gl(r.column.dLevelMax),disableEnvelope:!1}):l.fill(0);let c=0;for(let v of l)v===r.column.dLevelMax&&c++;let w=en(fo,e.data_page_header?.encoding),p={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},g=qo(r.column.primitiveType,w,f,c,p);return{dlevels:l,rlevels:s,values:g,count:i,pageHeader:e}}async function V4(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=en(fo,e.data_page_header_v2?.encoding),s=new Array(i);r.column.rLevelMax>0?s=qo(Pa,Vm,t,i,{bitWidth:gl(r.column.rLevelMax),disableEnvelope:!0}):s.fill(0);let u=new Array(i);r.column.dLevelMax>0?u=qo(Pa,Vm,t,i,{bitWidth:gl(r.column.dLevelMax),disableEnvelope:!0}):u.fill(0);let l=t;if(e.data_page_header_v2?.is_compressed){let p=await tp(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);l={buffer:p,offset:0,size:p.length},t.offset=n}let c={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},w=qo(r.column.primitiveType,o,l,f,c);return{dlevels:u,rlevels:s,values:w,count:i,pageHeader:e}}async function C4(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 tp(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 qo(r.column.primitiveType,r.column.encoding,i,f,r).map(o=>o.toString())}var W4=1e6,_o=class{static async openBuffer(e){let r=(i,f)=>Promise.resolve(e.slice(i,i+f)),n=()=>Promise.resolve();return new _o(r,n,e.length)}constructor(e,r,n,i){this.read=e,this.close=r,this.fileSize=n,this.defaultDictionarySize=i?.defaultDictionarySize||W4}async readHeader(){let r=(await this.read(0,rs.length)).toString();switch(r){case rs:break;case Xj:throw new Error("Encrypted parquet file not supported");default:throw new Error(`Invalid parquet file (magic=${r})`)}}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&&Tq(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=en(ns,r.meta_data?.type);if(i!==n.primitiveType)throw new Error(`chunk type not matching schema: ${i}`);let f=en(tc,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.fileSize-o,Number(r.meta_data?.total_compressed_size)));let u={type:i,rLevelMax:n.rLevelMax,dLevelMax:n.dLevelMax,compression:f,column:n,numValues:r.meta_data?.num_values,dictionary:[]},l,c=r?.meta_data?.dictionary_page_offset;if(c){let p=Number(c);l=await this.getDictionary(p,u,o)}l=u.dictionary?.length?u.dictionary:l;let w=await this.read(o,s);return await lT(w,{...u,dictionary:l})}async getDictionary(e,r,n){if(e===0)return[];let i=Math.min(this.fileSize-e,this.defaultDictionarySize),f=await this.read(e,i),o={buffer:f,offset:0,size:f.length};return(await bh(o,r)).dictionary}async readFooter(){let e=rs.length+4,r=await this.read(this.fileSize-e,e),n=r.slice(4).toString();if(n!==rs)throw new Error(`Not a valid parquet file (magic="${n})`);let i=r.readUInt32LE(0),f=this.fileSize-i-e;if(f<rs.length)throw new Error(`Invalid metadata size ${f}`);let o=await this.read(f,i),{metadata:s}=_q(o);return s}};var wb=de(GT()),ko={BOOLEAN:{primitiveType:"BOOLEAN",toPrimitive:yF,fromPrimitive:jF},INT32:{primitiveType:"INT32",toPrimitive:QT},INT64:{primitiveType:"INT64",toPrimitive:XT},INT96:{primitiveType:"INT96",toPrimitive:AF},FLOAT:{primitiveType:"FLOAT",toPrimitive:qF},DOUBLE:{primitiveType:"DOUBLE",toPrimitive:_F},BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",toPrimitive:$T},FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",toPrimitive:$T},UTF8:{primitiveType:"BYTE_ARRAY",originalType:"UTF8",toPrimitive:OF,fromPrimitive:FF},TIME_MILLIS:{primitiveType:"INT32",originalType:"TIME_MILLIS",toPrimitive:HF},TIME_MICROS:{primitiveType:"INT64",originalType:"TIME_MICROS",toPrimitive:MF},DATE:{primitiveType:"INT32",originalType:"DATE",toPrimitive:zF,fromPrimitive:UF},TIMESTAMP_MILLIS:{primitiveType:"INT64",originalType:"TIMESTAMP_MILLIS",toPrimitive:LF,fromPrimitive:VF},TIMESTAMP_MICROS:{primitiveType:"INT64",originalType:"TIMESTAMP_MICROS",toPrimitive:CF,fromPrimitive:WF},UINT_8:{primitiveType:"INT32",originalType:"UINT_8",toPrimitive:TF},UINT_16:{primitiveType:"INT32",originalType:"UINT_16",toPrimitive:BF},UINT_32:{primitiveType:"INT32",originalType:"UINT_32",toPrimitive:xF},UINT_64:{primitiveType:"INT64",originalType:"UINT_64",toPrimitive:EF},INT_8:{primitiveType:"INT32",originalType:"INT_8",toPrimitive:vF},INT_16:{primitiveType:"INT32",originalType:"INT_16",toPrimitive:kF},INT_32:{primitiveType:"INT32",originalType:"INT_32",toPrimitive:QT},INT_64:{primitiveType:"INT64",originalType:"INT_64",toPrimitive:XT},JSON:{primitiveType:"BYTE_ARRAY",originalType:"JSON",toPrimitive:DF,fromPrimitive:NF},BSON:{primitiveType:"BYTE_ARRAY",originalType:"BSON",toPrimitive:RF,fromPrimitive:PF},INTERVAL:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"INTERVAL",typeLength:12,toPrimitive:KF,fromPrimitive:YF},DECIMAL_INT32:{primitiveType:"INT32",originalType:"DECIMAL_INT32",toPrimitive:IF,fromPrimitive:rk},DECIMAL_INT64:{primitiveType:"INT64",originalType:"DECIMAL_INT64",toPrimitive:SF,fromPrimitive:rk},DECIMAL_BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",originalType:"DECIMAL_BYTE_ARRAY",toPrimitive:ek,fromPrimitive:nk},DECIMAL_FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"DECIMAL_FIXED_LEN_BYTE_ARRAY",toPrimitive:ek,fromPrimitive:nk}};function ZT(t,e,r){if(!(t in ko))throw new Error(`invalid type: ${t}`);return ko[t].toPrimitive(e,r)}function JT(t,e,r){if(!(t in ko))throw new Error(`invalid type: ${t}`);return"fromPrimitive"in ko[t]?ko[t].fromPrimitive?.(e,r):e}function yF(t){return Boolean(t)}function jF(t){return Boolean(t)}function qF(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for FLOAT: ${t}`);return e}function _F(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for DOUBLE: ${t}`);return e}function vF(t){let e=parseInt(t,10);if(e<-128||e>127||isNaN(e))throw new Error(`invalid value for INT8: ${t}`);return e}function TF(t){let e=parseInt(t,10);if(e<0||e>255||isNaN(e))throw new Error(`invalid value for UINT8: ${t}`);return e}function kF(t){let e=parseInt(t,10);if(e<-32768||e>32767||isNaN(e))throw new Error(`invalid value for INT16: ${t}`);return e}function BF(t){let e=parseInt(t,10);if(e<0||e>65535||isNaN(e))throw new Error(`invalid value for UINT16: ${t}`);return e}function QT(t){let e=parseInt(t,10);if(e<-2147483648||e>2147483647||isNaN(e))throw new Error(`invalid value for INT32: ${t}`);return e}function IF(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 xF(t){let e=parseInt(t,10);if(e<0||e>281474976710655||isNaN(e))throw new Error(`invalid value for UINT32: ${t}`);return e}function XT(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT64: ${t}`);return e}function SF(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 EF(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for UINT64: ${t}`);return e}function AF(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT96: ${t}`);return e}function $T(t){return Buffer.from(t)}function ek(t){return Buffer.from(t)}function OF(t){return Buffer.from(t,"utf8")}function FF(t){return t.toString()}function DF(t){return Buffer.from(JSON.stringify(t))}function NF(t){return JSON.parse(t)}function RF(t){return Buffer.from(wb.default.serialize(t))}function PF(t){return wb.default.deserialize(t)}function HF(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 MF(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIME_MICROS: ${t}`);return e}var tk=864e5;function zF(t){if(t instanceof Date)return t.getTime()/tk;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for DATE: ${t}`);return e}}function UF(t){return new Date(t*tk)}function LF(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 VF(t){return new Date(t)}function CF(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 WF(t){return new Date(t/1e3)}function KF(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 YF(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 rk(t,e){return Math.round(t*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}function nk(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 hb(t){let e={};for(let r of t.fieldList)e[r.key]={dlevels:[],rlevels:[],values:[],pageHeaders:[],count:0};return{rowCount:0,columnData:e}}function ik(t,e,r){let n=hb(t).columnData;if(bb(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 bb(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?bb(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 u=0;u<s.length;u++){let l=u===0?n:o.rLevelMax;o.isNested?bb(o.fields,s[u],r,l,o.dLevelMax):(r[o.key].count+=1,r[o.key].rlevels.push(l),r[o.key].dlevels.push(o.dLevelMax),r[o.key].values.push(ZT(o.originalType||o.primitiveType,s[u])))}}}function xp(t,e){let r=[];for(let n=0;n<e.rowCount;n++)r.push({});for(let n in e.columnData)GF(t,e,n,r);return r}function GF(t,e,r,n){let i=e.columnData[r];if(!i.count)return;let f=t.findField(r),o=t.findFieldBranch(r),s=new Array(f.rLevelMax+1).fill(0),u=0;for(let l=0;l<i.count;l++){let c=i.dlevels[l],w=i.rlevels[l];s[w]++,s.fill(0,w+1);let p=0,g=n[s[p++]-1];for(let v of o){if(v===f||c<v.dLevelMax)break;if(v.repetitionType==="REPEATED"){v.name in g||(g[v.name]=[]);let H=s[p++];for(;g[v.name].length<=H;)g[v.name].push({});g=g[v.name][H]}else g[v.name]=g[v.name]||{},g=g[v.name]}if(c===f.dLevelMax){let v=JT(f.originalType||f.primitiveType,i.values[u],f);if(u++,f.repetitionType==="REPEATED"){f.name in g||(g[f.name]=[]);let H=s[p];for(;g[f.name].length<=H;)g[f.name].push(null);g[f.name][H]=v}else g[f.name]=v}}}var gb=class{constructor(e){this.schema=e,this.fields=fk(e,0,0,[]),this.fieldList=ok(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){ik(this,e,r)}materializeRecords(e){return xp(this,e)}compress(e){return yb(this.schema,e),yb(this.fields,e),this}buffer(){return hb(this)}};function yb(t,e){for(let r in t){let n=t[r];n.fields?yb(n.fields,e):n.compression=e}}function fk(t,e,r,n){let i={};for(let f in t){let o=t[f],s=!o.optional,u=Boolean(o.repeated),l=e,c=r,w="REQUIRED";if(s||(w="OPTIONAL",c++),u&&(w="REPEATED",l++,s&&c++),o.fields){let v=n.concat([f]);i[f]={name:f,path:v,key:v.join(),repetitionType:w,rLevelMax:l,dLevelMax:c,isNested:!0,fieldCount:Object.keys(o.fields).length,fields:fk(o.fields,l,c,v)};continue}let p=ko[o.type];if(!p)throw new Error(`invalid parquet type: ${o.type}`);if(o.encoding=o.encoding||"PLAIN",!(o.encoding in ql))throw new Error(`unsupported parquet encoding: ${o.encoding}`);if(o.compression=o.compression||"UNCOMPRESSED",!(o.compression in hh))throw new Error(`unsupported compression method: ${o.compression}`);let g=n.concat([f]);i[f]={name:f,primitiveType:p.primitiveType,originalType:p.originalType,path:g,key:g.join(),repetitionType:w,encoding:o.encoding,compression:o.compression,typeLength:o.typeLength||p.typeLength,presision:o.presision,scale:o.scale,rLevelMax:l,dLevelMax:c}}return i}function ok(t){let e=[];for(let r in t)e.push(t[r]),t[r].isNested&&(e=e.concat(ok(t[r].fields)));return e}var jb=class{constructor(e,r,n,i){this.rowGroup=[];this.metadata=e,this.envelopeReader=r,this.schema=n,this.columnList=i,this.rowGroupIndex=0}async next(){if(this.rowGroup.length===0){if(this.rowGroupIndex>=this.metadata.row_groups.length)return null;let e=await this.envelopeReader.readRowGroup(this.schema,this.metadata.row_groups[this.rowGroupIndex],this.columnList);this.rowGroup=xp(this.schema,e),this.rowGroupIndex++}return this.rowGroup.shift()}rewind(){this.rowGroup=[],this.rowGroupIndex=0}[Symbol.asyncIterator](){let e=!1;return{next:async()=>{if(e)return{done:e,value:null};let r=await this.next();return r===null?{done:!0,value:r}:{done:!1,value:r}},return:async()=>(e=!0,{done:e,value:null}),throw:async()=>(e=!0,{done:!0,value:null})}}};var Bo=class{static async openBlob(e){let r=async(o,s)=>{let u=await e.slice(o,o+s).arrayBuffer();return Buffer.from(u)},n=async()=>{},i=e.size,f=new _o(r,n,i);try{await f.readHeader();let o=await f.readFooter();return new Bo(o,f)}catch(o){throw await f.close(),o}}static async openArrayBuffer(e){let r=async(o,s)=>Buffer.from(e,o,s),n=async()=>{},i=e.byteLength,f=new _o(r,n,i);try{await f.readHeader();let o=await f.readFooter();return new Bo(o,f)}catch(o){throw await f.close(),o}}static async openBuffer(e){let r=await _o.openBuffer(e);try{await r.readHeader();let n=await r.readFooter();return new Bo(n,r)}catch(n){throw await r.close(),n}}constructor(e,r){if(e.version!==$j)throw new Error("invalid parquet version");this.metadata=e,this.envelopeReader=r;let n=this.metadata.schema[0],{schema:i}=gh(this.metadata.schema,1,n.num_children);this.schema=new gb(i)}async close(){await this.envelopeReader.close()}getCursor(e){return e||(e=[]),e=e.map(r=>Array.isArray(r)?r:[r]),new jb(this.metadata,this.envelopeReader,this.schema,e)}getRowCount(){return Number(this.metadata.num_rows)}getSchema(){return this.schema}getMetadata(){let e={};for(let r of this.metadata.key_value_metadata)e[r.key]=r.value;return e}[Symbol.asyncIterator](){return this.getCursor()[Symbol.asyncIterator]()}};async function sk(t,e){let r=new Blob([t]);for await(let n of qb(r,e))return n;return null}async function*qb(t,e){let r=await Bo.openBlob(t),n=[];try{let i=r.getCursor(),f;for(;f=await i.next();)n.push(f)}finally{await r.close()}yield n}var Om=de($x());var Am={};vS(Am,{Compression:()=>Vz,Encoding:()=>Cz,WriterProperties:()=>Oa,WriterPropertiesBuilder:()=>Ht,WriterVersion:()=>Wz,default:()=>iS,readParquet:()=>zz,writeParquet:()=>Lz});var be,eS=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0});eS.decode();var xm=null;function Vu(){return(xm===null||xm.buffer!==be.memory.buffer)&&(xm=new Uint8Array(be.memory.buffer)),xm}function tS(t,e){return eS.decode(Vu().subarray(t,t+e))}var tf=new Array(32).fill(void 0);tf.push(void 0,null,!0,!1);var Cu=tf.length;function Wu(t){Cu===tf.length&&tf.push(tf.length+1);let e=Cu;return Cu=tf[e],tf[e]=t,e}function Sa(t){return tf[t]}function Hz(t){t<36||(tf[t]=Cu,Cu=t)}function Ku(t){let e=Sa(t);return Hz(t),e}var zn=0,Sm=new TextEncoder("utf-8"),Mz=typeof Sm.encodeInto=="function"?function(t,e){return Sm.encodeInto(t,e)}:function(t,e){let r=Sm.encode(t);return e.set(r),{read:t.length,written:r.length}};function Ea(t,e,r){if(r===void 0){let s=Sm.encode(t),u=e(s.length);return Vu().subarray(u,u+s.length).set(s),zn=s.length,u}let n=t.length,i=e(n),f=Vu(),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=Vu().subarray(i+o,i+n);o+=Mz(t,s).written}return zn=o,i}function rS(t,e){let r=e(t.length*1);return Vu().set(t,r/1),zn=t.length,r}var Em=null;function Aa(){return(Em===null||Em.buffer!==be.memory.buffer)&&(Em=new Int32Array(be.memory.buffer)),Em}function zz(t){try{let i=be.__wbindgen_add_to_stack_pointer(-16),f=rS(t,be.__wbindgen_malloc),o=zn;be.readParquet(i,f,o);var e=Aa()[i/4+0],r=Aa()[i/4+1],n=Aa()[i/4+2];if(n)throw Ku(r);return Ku(e)}finally{be.__wbindgen_add_to_stack_pointer(16)}}function Uz(t,e){if(!(t instanceof e))throw new Error(`expected instance of ${e.name}`);return t.ptr}function Lz(t,e){try{let o=be.__wbindgen_add_to_stack_pointer(-16),s=rS(t,be.__wbindgen_malloc),u=zn;Uz(e,Oa);var r=e.ptr;e.ptr=0,be.writeParquet(o,s,u,r);var n=Aa()[o/4+0],i=Aa()[o/4+1],f=Aa()[o/4+2];if(f)throw Ku(i);return Ku(n)}finally{be.__wbindgen_add_to_stack_pointer(16)}}var Vz=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"}),Cz=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"}),Wz=Object.freeze({V1:0,"0":"V1",V2:1,"1":"V2"}),Oa=class{static __wrap(e){let r=Object.create(Oa.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)}},Ht=class{static __wrap(e){let r=Object.create(Ht.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 Ht.__wrap(e)}build(){let e=this.__destroy_into_raw(),r=be.writerpropertiesbuilder_build(e);return Oa.__wrap(r)}setWriterVersion(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setWriterVersion(r,e);return Ht.__wrap(n)}setDataPagesizeLimit(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setDataPagesizeLimit(r,e);return Ht.__wrap(n)}setDictionaryPagesizeLimit(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setDictionaryPagesizeLimit(r,e);return Ht.__wrap(n)}setWriteBatchSize(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setWriteBatchSize(r,e);return Ht.__wrap(n)}setMaxRowGroupSize(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setMaxRowGroupSize(r,e);return Ht.__wrap(n)}setCreatedBy(e){let r=this.__destroy_into_raw(),n=Ea(e,be.__wbindgen_malloc,be.__wbindgen_realloc),i=zn,f=be.writerpropertiesbuilder_setCreatedBy(r,n,i);return Ht.__wrap(f)}setEncoding(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setEncoding(r,e);return Ht.__wrap(n)}setCompression(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setCompression(r,e);return Ht.__wrap(n)}setDictionaryEnabled(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setDictionaryEnabled(r,e);return Ht.__wrap(n)}setStatisticsEnabled(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setStatisticsEnabled(r,e);return Ht.__wrap(n)}setMaxStatisticsSize(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setMaxStatisticsSize(r,e);return Ht.__wrap(n)}setColumnEncoding(e,r){let n=this.__destroy_into_raw(),i=Ea(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnEncoding(n,i,f,r);return Ht.__wrap(o)}setColumnCompression(e,r){let n=this.__destroy_into_raw(),i=Ea(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnCompression(n,i,f,r);return Ht.__wrap(o)}setColumnDictionaryEnabled(e,r){let n=this.__destroy_into_raw(),i=Ea(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnDictionaryEnabled(n,i,f,r);return Ht.__wrap(o)}setColumnStatisticsEnabled(e,r){let n=this.__destroy_into_raw(),i=Ea(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnStatisticsEnabled(n,i,f,r);return Ht.__wrap(o)}setColumnMaxStatisticsSize(e,r){let n=this.__destroy_into_raw(),i=Ea(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnMaxStatisticsSize(n,i,f,r);return Ht.__wrap(o)}};async function Kz(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 nS(t){let e={};e.wbg={},e.wbg.__wbindgen_string_new=function(i,f){let o=tS(i,f);return Wu(o)},e.wbg.__wbindgen_object_drop_ref=function(i){Ku(i)},e.wbg.__wbg_buffer_7af23f65f6c64548=function(i){let f=Sa(i).buffer;return Wu(f)},e.wbg.__wbg_newwithbyteoffsetandlength_ce1e75f0ce5f7974=function(i,f,o){let s=new Uint8Array(Sa(i),f>>>0,o>>>0);return Wu(s)},e.wbg.__wbg_set_f25e869e4565d2a2=function(i,f,o){Sa(i).set(Sa(f),o>>>0)},e.wbg.__wbg_length_0acb1cf9bbaf8519=function(i){return Sa(i).length},e.wbg.__wbg_newwithlength_8f0657faca9f1422=function(i){let f=new Uint8Array(i>>>0);return Wu(f)},e.wbg.__wbindgen_throw=function(i,f){throw new Error(tS(i,f))},e.wbg.__wbindgen_memory=function(){let i=be.memory;return Wu(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 Kz(await t,e);return be=r.exports,nS.__wbindgen_wasm_module=n,be}var iS=nS;var Lj=null;async function fS(t){return Lj!==null?Lj:(await iS(t),Lj=Am,Am)}async function oS(t,e){let r=e?.parquet?.wasmUrl,n=await fS(r),i=new Uint8Array(t),f=n.readParquet(i),o=f.buffer.slice(f.byteOffset,f.byteLength+f.byteOffset);return Yz(o)}function Yz(t){let e=Om.RecordBatchStreamReader.from(t),r=[];for(let n of e)r.push(n);return new Om.Table(r)}var sS={...Qj,parse:sk,parseFileInBatches:qb},K5={...Jj,parse:oS};Hm(sS);})();
27
+ #:#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 Fm(a,j,b,_,v,N,z){let Z=j,ae=N.triplets,le=N.prefixSuffixStorage,ee=N.prefixSuffixHeads,Oe=3*z,Re=ae[Oe],mt=ae[Oe+1],Mr=ae[Oe+2],Yr=ee[Re],Kt=ee[Re+1],Me=ee[Mr],zr=ee[Mr+1],ki=mt-11,Gu=mt-0;for((ki<1||ki>9)&&(ki=0),(Gu<1||Gu>9)&&(Gu=0);Yr!=Kt;)a[Z++]=le[Yr++];ki>v&&(ki=v),_+=ki,v-=ki,v-=Gu;let Uj=v;for(;Uj>0;)a[Z++]=b[_++],Uj--;if(mt==10||mt==11){let ut=Z-v;for(mt==10&&(v=1);v>0;){let no=a[ut]&255;no<192?(no>=97&&no<=122&&(a[ut]^=32),ut+=1,v-=1):no<224?(a[ut+1]^=32,ut+=2,v-=2):(a[ut+2]^=5,ut+=3,v-=3)}}else if(mt==21||mt==22){let ut=Z-v,no=N.params[z],kr=(no&32767)+(16777216-(no&32768));for(;v>0;){let of=1,Bi=a[ut]&255;if(Bi<128)kr+=Bi,a[ut]=kr&127;else if(!(Bi<192)){if(Bi<224)if(v>=2){let sf=a[ut+1];kr+=sf&63|(Bi&31)<<6,a[ut]=192|kr>>6&31,a[ut+1]=sf&192|kr&63,of=2}else of=v;else if(Bi<240)if(v>=3){let sf=a[ut+1],Da=a[ut+2];kr+=Da&63|(sf&63)<<6|(Bi&15)<<12,a[ut]=224|kr>>12&15,a[ut+1]=sf&192|kr>>6&63,a[ut+2]=Da&192|kr&63,of=3}else of=v;else if(Bi<248)if(v>=4){let sf=a[ut+1],Da=a[ut+2],Lj=a[ut+3];kr+=Lj&63|(Da&63)<<6|(sf&63)<<12|(Bi&7)<<18,a[ut]=240|kr>>18&7,a[ut+1]=sf&192|kr>>12&63,a[ut+2]=Da&192|kr>>6&63,a[ut+3]=Lj&192|kr&63,of=4}else of=v}ut+=of,v-=of,mt==21&&(v=0)}}for(;Me!=zr;)a[Z++]=le[Me++];return Z-j}function Yu(a,j){let b=1<<j-1;for(;(a&b)!=0;)b>>=1;return(a&b-1)+b}function Oa(a,j,b,_,v){do _-=b,a[j+_]=v;while(_>0)}function rf(a,j,b){let _=1<<j-b;for(;j<15&&(_-=a[j],!(_<=0));)j++,_<<=1;return j-b}function Xo(a,j,b,_,v){let N=a[j],z,Z=new Int32Array(v),ae=new Int32Array(16),le=new Int32Array(16),ee;for(ee=0;ee<v;ee++)ae[_[ee]]++;le[1]=0;for(let Me=1;Me<15;Me++)le[Me+1]=le[Me]+ae[Me];for(ee=0;ee<v;ee++)_[ee]!=0&&(Z[le[_[ee]]++]=ee);let Oe=b,Re=1<<Oe,mt=Re;if(le[15]==1){for(z=0;z<mt;z++)a[N+z]=Z[0];return mt}z=0,ee=0;for(let Me=1,zr=2;Me<=b;Me++,zr<<=1)for(;ae[Me]>0;ae[Me]--)Oa(a,N+z,zr,Re,Me<<16|Z[ee++]),z=Yu(z,Me);let Mr=mt-1,Yr=-1,Kt=N;for(let Me=b+1,zr=2;Me<=15;Me++,zr<<=1)for(;ae[Me]>0;ae[Me]--)(z&Mr)!=Yr&&(Kt+=Re,Oe=rf(ae,Me,b),Re=1<<Oe,mt+=Re,Yr=z&Mr,a[N+Yr]=Oe+b<<16|Kt-N-Yr),Oa(a,Kt+(z>>b),zr,Re,Me-b<<16|Z[ee++]),z=Yu(z,Me);return mt}function ur(a){if(a.endOfStreamReached!=0){if(ce(a)>=-2)return;throw"No more input"}let j=a.halfOffset<<1,b=4096-j;for(a.byteBuffer.copyWithin(0,j,4096),a.halfOffset=0;b<4096;){let _=4096-b,v=zj(a.input,a.byteBuffer,b,_);if(v<=0){a.endOfStreamReached=1,a.tailBytes=b,b+=1;break}b+=v}we(a,b)}function Fa(a,j){if(a.endOfStreamReached==0)return;let b=(a.halfOffset<<1)+(a.bitOffset+7>>3)-4;if(b>a.tailBytes)throw"Read after end";if(j!=0&&b!=a.tailBytes)throw"Unused bytes after end"}function Mj(a){if(a.bitOffset>32)throw"Accumulator underloaded: "+a.bitOffset}function De(a,j){let b=a.accumulator32>>>a.bitOffset&(1<<j)-1;return a.bitOffset+=j,b}function $o(a,j){let b=De(a,16);return a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16,b|De(a,j-16)<<16}function h(a){a.byteBuffer=new Int8Array(4160),a.accumulator32=0,a.shortBuffer=new Int16Array(2080),a.bitOffset=32,a.halfOffset=2048,a.endOfStreamReached=0,y(a)}function y(a){a.halfOffset>2030&&ur(a),Fa(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 I(a){a.bitOffset==32&&y(a)}function U(a){let j=32-a.bitOffset&7;if(j!=0&&De(a,j)!=0)throw"Corrupted padding bits"}function ce(a){let j=2048;return a.endOfStreamReached!=0&&(j=a.tailBytes+1>>1),j-a.halfOffset}function xe(a,j,b,_){if((a.bitOffset&7)!=0)throw"Unaligned copyBytes";for(;a.bitOffset!=32&&_!=0;)j[b++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,_--;if(_==0)return;let v=ff(ce(a),_>>1);if(v>0){let N=a.halfOffset<<1,z=v<<1;j.set(a.byteBuffer.subarray(N,N+z),b),b+=z,_-=z,a.halfOffset+=v}if(_!=0){if(ce(a)>0){for(a.bitOffset>=16&&(a.accumulator32=a.shortBuffer[a.halfOffset++]<<16|a.accumulator32>>>16,a.bitOffset-=16);_!=0;)j[b++]=a.accumulator32>>>a.bitOffset,a.bitOffset+=8,_--;Fa(a,0);return}for(;_>0;){let N=zj(a.input,j,b,_);if(N==-1)throw"Unexpected end of input";b+=N,_-=N}}}function we(a,j){let b=a.byteBuffer,_=j>>1,v=a.shortBuffer;for(let N=0;N<_;++N)v[N]=b[N*2]&255|(b[N*2+1]&255)<<8}let ft=new Int32Array(2048);function Xe(a,j,b){for(let v=0;v<256;++v)a[v]=v&63,a[512+v]=v>>2,a[1792+v]=2+(v>>6);for(let v=0;v<128;++v)a[1024+v]=4*(j.charCodeAt(v)-32);for(let v=0;v<64;++v)a[1152+v]=v&1,a[1216+v]=2+(v&1);let _=1280;for(let v=0;v<19;++v){let N=v&3,z=b.charCodeAt(v)-32;for(let Z=0;Z<z;++Z)a[_++]=N}for(let v=0;v<16;++v)a[1792+v]=1,a[2032+v]=6;a[1792]=0,a[2047]=7;for(let v=0;v<256;++v)a[1536+v]=a[1792+v]<<3}Xe(ft,` !! ! "#$##%#$&'##(#)#++++++++++((&*'##,---,---,-----,-----,-----&#'###.///.///./////./////./////&#'# `,"A/* ': & : $ \x81 @");function ot(){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 st=null,At=new Int32Array(32),nf=new Int32Array(32);function nS(a,j){if(lS(a)==0||aS(a)==0)throw"newData must be a direct read-only byte buffer";if(j.length>31)throw"sizeBits length must be at most "+31;for(let z=0;z<4;++z)if(j[z]!=0)throw"first "+4+" must be 0";let b=At,_=nf;_.set(j.subarray(0,0+j.length),0);let v=0,N=a.length;for(let z=0;z<j.length;++z){b[z]=v;let Z=_[z];if(Z!=0){if(Z>=31)throw"newSizeBits values must be less than 31";if(v+=z<<Z,v<=0||v>N)throw"newSizeBits is inconsistent: overflow"}}for(let z=j.length;z<32;++z)b[z]=v;if(v!=N)throw"newSizeBits is inconsistent: underflow";st=a}function iS(a,j,b,_,v,N){let z=cS(j+b);if(z.length!=a.length)throw"Corrupted brotli dictionary";let Z=0,ae=_.length;for(let le=0;le<ae;le+=2){let ee=_.charCodeAt(le)-36,Oe=_.charCodeAt(le+1)-36;for(let Re=0;Re<ee;++Re)z[Z]^=3,Z++;for(let Re=0;Re<Oe;++Re)z[Z]^=236,Z++}for(let le=0;le<N.length;++le)v[le]=N.charCodeAt(le)-65;a.set(z)}{let a=new Int8Array(122784),j=new Int32Array(25);iS(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",j,"AAAAKKLLKKKKKJJIHHIHHGGFF"),uS(a),nS(sS(a),j)}function ff(a,j){return a<=j?a:j}function fS(a,j,b,_,v){a.set(b.slice(_,v),j)}function zj(a,j,b,_){if(a==null)return-1;let v=ff(a.offset+_,a.data.length),N=v-a.offset;return j.set(a.data.subarray(a.offset,v),b),a.offset+=N,N}function oS(a){return 0}function sS(a){return a}function aS(a){return 1}function lS(a){return 1}function uS(a){}function cS(a){let j=a.length,b=new Int8Array(j);for(let _=0;_<j;++_)b[_]=a.charCodeAt(_);return b}function pS(a,j){let b=new ot;if(H(b,new t(a)),j){let Z=j.customDictionary;Z&&te(b,Z)}let _=0,v=[];for(;;){let Z=new Int8Array(16384);if(v.push(Z),b.output=Z,b.outputOffset=0,b.outputLength=16384,b.outputUsed=0,Am(b),_+=b.outputUsed,b.outputUsed<16384)break}M(b);let N=new Int8Array(_),z=0;for(let Z=0;Z<v.length;++Z){let ae=v[Z],ee=ff(_,z+16384)-z;ee<16384?N.set(ae.subarray(0,ee),z):N.set(ae,z),z+=ee}return N}return pS},d_=bO();var ol=de(_w());var m_={brotli:{mode:0,quality:8,lgwin:22}},mo,Bc=class extends br{constructor(e){super(e);this.name="brotli";this.extensions=["br"];this.contentEncodings=["br"];this.isSupported=!0;this.options=e}async preload(){mo=mo||this.options?.modules?.brotli,mo||console.warn(`${this.name} library not installed`)}async compress(e){if(!xn&&this.options.brotli?.useZlib){let r=await(0,Cn.promisify1)(ol.default.brotliCompress)(e);return Ur(r)}return this.compressSync(e)}compressSync(e){if(!xn&&this.options.brotli?.useZlib){let f=ol.default.brotliCompressSync(e);return Ur(f)}let r={...m_.brotli,...this.options?.brotli},n=new Uint8Array(e);if(!mo)throw new Error("brotli compression: brotli module not installed");return mo.compress(n,r).buffer}async decompress(e){if(!xn&&this.options.brotli?.useZlib){let r=await(0,Cn.promisify1)(ol.default.brotliDecompress)(e);return Ur(r)}return this.decompressSync(e)}decompressSync(e){if(!xn&&this.options.brotli?.useZlib){let f=ol.default.brotliDecompressSync(e);return Ur(f)}let r={...m_.brotli,...this.options?.brotli},n=new Uint8Array(e);return mo?mo.decompress(n,r).buffer:d_(n,void 0).buffer}};var sl,Ic=class extends br{constructor(e){super(e);this.name="lzo";this.extensions=[];this.contentEncodings=[];this.isSupported=!1;if(this.options=e,sl=sl||this.options?.modules?.lzo,!sl)throw new Error(this.name)}async preload(){}async compress(e){await this.preload();let r=Ju(e);return sl.compress(r).buffer}async decompress(e){try{await this.preload();let r=Ju(e);return sl.decompress(r).buffer}catch(r){throw r}}};var E_=de(x_()),A_=de(S_());function SO(t){return Buffer.from(t)}function EO(t){return Buffer.isBuffer(t)?new Uint8Array(t.buffer,t.byteOffset,t.length).slice().buffer:t}var ul={lz4js:E_.default,lzo:A_.default},Pw={UNCOMPRESSED:new tc,GZIP:new gc,SNAPPY:new kc,BROTLI:new Bc({modules:ul}),LZ4:new nl({modules:ul}),LZ4_RAW:new nl({modules:ul}),LZO:new Ic({modules:ul}),ZSTD:new qc({modules:ul})};async function Dc(t,e,r){let n=Pw[t];if(!n)throw new Error(`parquet: invalid compression method: ${t}`);let i=EO(e),f=await n.decompress(i,r);return SO(f)}var Dh=de(hv()),yo={BOOLEAN:{primitiveType:"BOOLEAN",toPrimitive:i2,fromPrimitive:f2},INT32:{primitiveType:"INT32",toPrimitive:yv},INT64:{primitiveType:"INT64",toPrimitive:jv},INT96:{primitiveType:"INT96",toPrimitive:h2},FLOAT:{primitiveType:"FLOAT",toPrimitive:o2},DOUBLE:{primitiveType:"DOUBLE",toPrimitive:s2},BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",toPrimitive:qv},FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",toPrimitive:qv},UTF8:{primitiveType:"BYTE_ARRAY",originalType:"UTF8",toPrimitive:b2,fromPrimitive:g2},TIME_MILLIS:{primitiveType:"INT32",originalType:"TIME_MILLIS",toPrimitive:v2},TIME_MICROS:{primitiveType:"INT64",originalType:"TIME_MICROS",toPrimitive:T2},DATE:{primitiveType:"INT32",originalType:"DATE",toPrimitive:k2,fromPrimitive:B2},TIMESTAMP_MILLIS:{primitiveType:"INT64",originalType:"TIMESTAMP_MILLIS",toPrimitive:I2,fromPrimitive:x2},TIMESTAMP_MICROS:{primitiveType:"INT64",originalType:"TIMESTAMP_MICROS",toPrimitive:S2,fromPrimitive:E2},UINT_8:{primitiveType:"INT32",originalType:"UINT_8",toPrimitive:l2},UINT_16:{primitiveType:"INT32",originalType:"UINT_16",toPrimitive:c2},UINT_32:{primitiveType:"INT32",originalType:"UINT_32",toPrimitive:d2},UINT_64:{primitiveType:"INT64",originalType:"UINT_64",toPrimitive:w2},INT_8:{primitiveType:"INT32",originalType:"INT_8",toPrimitive:a2},INT_16:{primitiveType:"INT32",originalType:"INT_16",toPrimitive:u2},INT_32:{primitiveType:"INT32",originalType:"INT_32",toPrimitive:yv},INT_64:{primitiveType:"INT64",originalType:"INT_64",toPrimitive:jv},JSON:{primitiveType:"BYTE_ARRAY",originalType:"JSON",toPrimitive:y2,fromPrimitive:j2},BSON:{primitiveType:"BYTE_ARRAY",originalType:"BSON",toPrimitive:q2,fromPrimitive:_2},INTERVAL:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"INTERVAL",typeLength:12,toPrimitive:A2,fromPrimitive:O2},DECIMAL_INT32:{primitiveType:"INT32",originalType:"DECIMAL_INT32",toPrimitive:p2,fromPrimitive:Tv},DECIMAL_INT64:{primitiveType:"INT64",originalType:"DECIMAL_INT64",toPrimitive:m2,fromPrimitive:Tv},DECIMAL_BYTE_ARRAY:{primitiveType:"BYTE_ARRAY",originalType:"DECIMAL_BYTE_ARRAY",toPrimitive:_v,fromPrimitive:kv},DECIMAL_FIXED_LEN_BYTE_ARRAY:{primitiveType:"FIXED_LEN_BYTE_ARRAY",originalType:"DECIMAL_FIXED_LEN_BYTE_ARRAY",toPrimitive:_v,fromPrimitive:kv}};function bv(t,e,r){if(!(t in yo))throw new Error(`invalid type: ${t}`);return yo[t].toPrimitive(e,r)}function gv(t,e,r){if(!(t in yo))throw new Error(`invalid type: ${t}`);return"fromPrimitive"in yo[t]?yo[t].fromPrimitive?.(e,r):e}function i2(t){return Boolean(t)}function f2(t){return Boolean(t)}function o2(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for FLOAT: ${t}`);return e}function s2(t){let e=parseFloat(t);if(isNaN(e))throw new Error(`invalid value for DOUBLE: ${t}`);return e}function a2(t){let e=parseInt(t,10);if(e<-128||e>127||isNaN(e))throw new Error(`invalid value for INT8: ${t}`);return e}function l2(t){let e=parseInt(t,10);if(e<0||e>255||isNaN(e))throw new Error(`invalid value for UINT8: ${t}`);return e}function u2(t){let e=parseInt(t,10);if(e<-32768||e>32767||isNaN(e))throw new Error(`invalid value for INT16: ${t}`);return e}function c2(t){let e=parseInt(t,10);if(e<0||e>65535||isNaN(e))throw new Error(`invalid value for UINT16: ${t}`);return e}function yv(t){let e=parseInt(t,10);if(e<-2147483648||e>2147483647||isNaN(e))throw new Error(`invalid value for INT32: ${t}`);return e}function p2(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 d2(t){let e=parseInt(t,10);if(e<0||e>281474976710655||isNaN(e))throw new Error(`invalid value for UINT32: ${t}`);return e}function jv(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT64: ${t}`);return e}function m2(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 w2(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for UINT64: ${t}`);return e}function h2(t){let e=parseInt(t,10);if(isNaN(e))throw new Error(`invalid value for INT96: ${t}`);return e}function qv(t){return Buffer.from(t)}function _v(t){return Buffer.from(t)}function b2(t){return Buffer.from(t,"utf8")}function g2(t){return t.toString()}function y2(t){return Buffer.from(JSON.stringify(t))}function j2(t){return JSON.parse(t)}function q2(t){return Buffer.from(Dh.default.serialize(t))}function _2(t){return Dh.default.deserialize(t)}function v2(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 T2(t){let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for TIME_MICROS: ${t}`);return e}var vv=864e5;function k2(t){if(t instanceof Date)return t.getTime()/vv;{let e=parseInt(t,10);if(e<0||isNaN(e))throw new Error(`invalid value for DATE: ${t}`);return e}}function B2(t){return new Date(t*vv)}function I2(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 x2(t){return new Date(t)}function S2(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 E2(t){return new Date(t/1e3)}function A2(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 O2(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 Tv(t,e){return Math.round(t*10**-e.presision%1*10**e.presision)*10**-(e.scale||0)}function kv(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 Nh(t){let e={};for(let r of t.fieldList)e[r.key]={dlevels:[],rlevels:[],values:[],pageHeaders:[],count:0};return{rowCount:0,columnData:e}}function Bv(t,e,r){let n=Nh(t).columnData;if(Rh(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 Rh(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?Rh(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 u=0;u<s.length;u++){let l=u===0?n:o.rLevelMax;o.isNested?Rh(o.fields,s[u],r,l,o.dLevelMax):(r[o.key].count+=1,r[o.key].rlevels.push(l),r[o.key].dlevels.push(o.dLevelMax),r[o.key].values.push(bv(o.originalType||o.primitiveType,s[u])))}}}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&&F2(t,i,n,r)}return r}function F2(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 u=0;u<e.count;u++){let l=e.dlevels[u],c=e.rlevels[u];o[c]++,o.fill(0,c+1);let w=0,p=n[o[w++]-1];for(let g of f){if(g===i||l<g.dLevelMax)break;switch(g.repetitionType){case"REPEATED":g.name in p||(p[g.name]=[]);let T=o[w++];for(;p[g.name].length<=T;)p[g.name].push({});p=p[g.name][T];break;default:p[g.name]=p[g.name]||{},p=p[g.name]}}if(l===i.dLevelMax){let g=gv(i.originalType||i.primitiveType,e.values[s],i);switch(s++,i.repetitionType){case"REPEATED":i.name in p||(p[i.name]=[]);let T=o[w];for(;p[i.name].length<=T;)p[i.name].push(null);p[i.name][T]=g;break;default:p[i.name]=g}}}}var Ph=class{constructor(e){this.schema=e,this.fields=Iv(e,0,0,[]),this.fieldList=xv(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){Bv(this,e,r)}materializeRecords(e){return sp(this,e)}compress(e){return Hh(this.schema,e),Hh(this.fields,e),this}buffer(){return Nh(this)}};function Hh(t,e){for(let r in t){let n=t[r];n.fields?Hh(n.fields,e):n.compression=e}}function Iv(t,e,r,n){let i={};for(let f in t){let o=t[f],s=!o.optional,u=Boolean(o.repeated),l=e,c=r,w="REQUIRED";if(s||(w="OPTIONAL",c++),u&&(w="REPEATED",l++,s&&c++),o.fields){let T=n.concat([f]);i[f]={name:f,path:T,key:T.join(),repetitionType:w,rLevelMax:l,dLevelMax:c,isNested:!0,fieldCount:Object.keys(o.fields).length,fields:Iv(o.fields,l,c,T)};continue}let p=yo[o.type];if(!p)throw new Error(`invalid parquet type: ${o.type}`);if(o.encoding=o.encoding||"PLAIN",!(o.encoding in Ha))throw new Error(`unsupported parquet encoding: ${o.encoding}`);if(o.compression=o.compression||"UNCOMPRESSED",!(o.compression in Pw))throw new Error(`unsupported compression method: ${o.compression}`);let g=n.concat([f]);i[f]={name:f,primitiveType:p.primitiveType,originalType:p.originalType,path:g,key:g.join(),repetitionType:w,encoding:o.encoding,compression:o.compression,typeLength:o.typeLength||p.typeLength,presision:o.presision,scale:o.scale,rLevelMax:l,dLevelMax:c}}return i}function xv(t){let e=[];for(let r in t)e.push(t[r]),t[r].isNested&&(e=e.concat(xv(t[r].fields)));return e}var gs;(function(u){u[u.BOOLEAN=0]="BOOLEAN",u[u.INT32=1]="INT32",u[u.INT64=2]="INT64",u[u.INT96=3]="INT96",u[u.FLOAT=4]="FLOAT",u[u.DOUBLE=5]="DOUBLE",u[u.BYTE_ARRAY=6]="BYTE_ARRAY",u[u.FIXED_LEN_BYTE_ARRAY=7]="FIXED_LEN_BYTE_ARRAY"})(gs||(gs={}));var ap;(function(F){F[F.UTF8=0]="UTF8",F[F.MAP=1]="MAP",F[F.MAP_KEY_VALUE=2]="MAP_KEY_VALUE",F[F.LIST=3]="LIST",F[F.ENUM=4]="ENUM",F[F.DECIMAL=5]="DECIMAL",F[F.DATE=6]="DATE",F[F.TIME_MILLIS=7]="TIME_MILLIS",F[F.TIME_MICROS=8]="TIME_MICROS",F[F.TIMESTAMP_MILLIS=9]="TIMESTAMP_MILLIS",F[F.TIMESTAMP_MICROS=10]="TIMESTAMP_MICROS",F[F.UINT_8=11]="UINT_8",F[F.UINT_16=12]="UINT_16",F[F.UINT_32=13]="UINT_32",F[F.UINT_64=14]="UINT_64",F[F.INT_8=15]="INT_8",F[F.INT_16=16]="INT_16",F[F.INT_32=17]="INT_32",F[F.INT_64=18]="INT_64",F[F.JSON=19]="JSON",F[F.BSON=20]="BSON",F[F.INTERVAL=21]="INTERVAL"})(ap||(ap={}));var lp;(function(n){n[n.REQUIRED=0]="REQUIRED",n[n.OPTIONAL=1]="OPTIONAL",n[n.REPEATED=2]="REPEATED"})(lp||(lp={}));var jo;(function(u){u[u.PLAIN=0]="PLAIN",u[u.PLAIN_DICTIONARY=2]="PLAIN_DICTIONARY",u[u.RLE=3]="RLE",u[u.BIT_PACKED=4]="BIT_PACKED",u[u.DELTA_BINARY_PACKED=5]="DELTA_BINARY_PACKED",u[u.DELTA_LENGTH_BYTE_ARRAY=6]="DELTA_LENGTH_BYTE_ARRAY",u[u.DELTA_BYTE_ARRAY=7]="DELTA_BYTE_ARRAY",u[u.RLE_DICTIONARY=8]="RLE_DICTIONARY"})(jo||(jo={}));var up;(function(u){u[u.UNCOMPRESSED=0]="UNCOMPRESSED",u[u.SNAPPY=1]="SNAPPY",u[u.GZIP=2]="GZIP",u[u.LZO=3]="LZO",u[u.BROTLI=4]="BROTLI",u[u.LZ4=5]="LZ4",u[u.ZSTD=6]="ZSTD",u[u.LZ4_RAW=7]="LZ4_RAW"})(up||(up={}));var cp;(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"})(cp||(cp={}));var ub=de(en()),Or=de(Ce()),Mi=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 ub.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 ub.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",Or.Thrift.Type.STRING,1),e.writeBinary(this.max),e.writeFieldEnd()),this.min!=null&&(e.writeFieldBegin("min",Or.Thrift.Type.STRING,2),e.writeBinary(this.min),e.writeFieldEnd()),this.null_count!=null&&(e.writeFieldBegin("null_count",Or.Thrift.Type.I64,3),e.writeI64(this.null_count),e.writeFieldEnd()),this.distinct_count!=null&&(e.writeFieldBegin("distinct_count",Or.Thrift.Type.I64,4),e.writeI64(this.distinct_count),e.writeFieldEnd()),this.max_value!=null&&(e.writeFieldBegin("max_value",Or.Thrift.Type.STRING,5),e.writeBinary(this.max_value),e.writeFieldEnd()),this.min_value!=null&&(e.writeFieldBegin("min_value",Or.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===Or.Thrift.Type.STOP)break;switch(f){case 1:if(i===Or.Thrift.Type.STRING){let o=e.readBinary();r.max=o}else e.skip(i);break;case 2:if(i===Or.Thrift.Type.STRING){let o=e.readBinary();r.min=o}else e.skip(i);break;case 3:if(i===Or.Thrift.Type.I64){let o=e.readI64();r.null_count=o}else e.skip(i);break;case 4:if(i===Or.Thrift.Type.I64){let o=e.readI64();r.distinct_count=o}else e.skip(i);break;case 5:if(i===Or.Thrift.Type.STRING){let o=e.readBinary();r.max_value=o}else e.skip(i);break;case 6:if(i===Or.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 Mi(r)}};var PT=de(Ce()),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===PT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Bl}};var HT=de(Ce()),Il=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===HT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Il}};var MT=de(Ce()),xl=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===MT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new xl}};var zT=de(Ce()),Sl=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===zT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Sl}};var UT=de(Ce()),El=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===UT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new El}};var LT=de(Ce()),Al=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===LT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Al}};var VT=de(Ce()),Ol=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===VT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ol}};var tn=de(Ce()),Fl=class{constructor(e){if(e!=null&&e.scale!=null)this.scale=e.scale;else throw new tn.Thrift.TProtocolException(tn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[scale] is unset!");if(e!=null&&e.precision!=null)this.precision=e.precision;else throw new tn.Thrift.TProtocolException(tn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[precision] is unset!")}write(e){e.writeStructBegin("DecimalType"),this.scale!=null&&(e.writeFieldBegin("scale",tn.Thrift.Type.I32,1),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",tn.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===tn.Thrift.Type.STOP)break;switch(f){case 1:if(i===tn.Thrift.Type.I32){let o=e.readI32();r.scale=o}else e.skip(i);break;case 2:if(i===tn.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 Fl(r);throw new tn.Thrift.TProtocolException(tn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DecimalType from input")}};var CT=de(Ce()),Dl=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===CT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Dl}};var WT=de(Ce()),Nl=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===WT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Nl}};var rn=de(Ce());var cr=de(Ce());var ei=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 cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromMILLIS(e){return new ei({MILLIS:e})}static fromMICROS(e){return new ei({MICROS:e})}write(e){e.writeStructBegin("TimeUnit"),this.MILLIS!=null&&(e.writeFieldBegin("MILLIS",cr.Thrift.Type.STRUCT,1),this.MILLIS.write(e),e.writeFieldEnd()),this.MICROS!=null&&(e.writeFieldBegin("MICROS",cr.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===cr.Thrift.Type.STOP)break;switch(o){case 1:if(f===cr.Thrift.Type.STRUCT){r++;let s=Dl.read(e);n=ei.fromMILLIS(s)}else e.skip(f);break;case 2:if(f===cr.Thrift.Type.STRUCT){r++;let s=Nl.read(e);n=ei.fromMICROS(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new cr.Thrift.TProtocolException(cr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var Rl=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new rn.Thrift.TProtocolException(rn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new rn.Thrift.TProtocolException(rn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimestampType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",rn.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",rn.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===rn.Thrift.Type.STOP)break;switch(f){case 1:if(i===rn.Thrift.Type.BOOL){let o=e.readBool();r.isAdjustedToUTC=o}else e.skip(i);break;case 2:if(i===rn.Thrift.Type.STRUCT){let o=ei.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 Rl(r);throw new rn.Thrift.TProtocolException(rn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimestampType from input")}};var nn=de(Ce());var Pl=class{constructor(e){if(e!=null&&e.isAdjustedToUTC!=null)this.isAdjustedToUTC=e.isAdjustedToUTC;else throw new nn.Thrift.TProtocolException(nn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isAdjustedToUTC] is unset!");if(e!=null&&e.unit!=null)this.unit=e.unit;else throw new nn.Thrift.TProtocolException(nn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[unit] is unset!")}write(e){e.writeStructBegin("TimeType"),this.isAdjustedToUTC!=null&&(e.writeFieldBegin("isAdjustedToUTC",nn.Thrift.Type.BOOL,1),e.writeBool(this.isAdjustedToUTC),e.writeFieldEnd()),this.unit!=null&&(e.writeFieldBegin("unit",nn.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===nn.Thrift.Type.STOP)break;switch(f){case 1:if(i===nn.Thrift.Type.BOOL){let o=e.readBool();r.isAdjustedToUTC=o}else e.skip(i);break;case 2:if(i===nn.Thrift.Type.STRUCT){let o=ei.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 Pl(r);throw new nn.Thrift.TProtocolException(nn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read TimeType from input")}};var fn=de(Ce()),Hl=class{constructor(e){if(e!=null&&e.bitWidth!=null)this.bitWidth=e.bitWidth;else throw new fn.Thrift.TProtocolException(fn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[bitWidth] is unset!");if(e!=null&&e.isSigned!=null)this.isSigned=e.isSigned;else throw new fn.Thrift.TProtocolException(fn.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[isSigned] is unset!")}write(e){e.writeStructBegin("IntType"),this.bitWidth!=null&&(e.writeFieldBegin("bitWidth",fn.Thrift.Type.BYTE,1),e.writeByte(this.bitWidth),e.writeFieldEnd()),this.isSigned!=null&&(e.writeFieldBegin("isSigned",fn.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===fn.Thrift.Type.STOP)break;switch(f){case 1:if(i===fn.Thrift.Type.BYTE){let o=e.readByte();r.bitWidth=o}else e.skip(i);break;case 2:if(i===fn.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 Hl(r);throw new fn.Thrift.TProtocolException(fn.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read IntType from input")}};var KT=de(Ce()),Ml=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===KT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Ml}};var YT=de(Ce()),zl=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===YT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new zl}};var ct=de(Ce());var Pe=de(Ce());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 Pe.Thrift.TProtocolException(Pe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Pe.Thrift.TProtocolException(Pe.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",Pe.Thrift.Type.STRUCT,1),this.STRING.write(e),e.writeFieldEnd()),this.MAP!=null&&(e.writeFieldBegin("MAP",Pe.Thrift.Type.STRUCT,2),this.MAP.write(e),e.writeFieldEnd()),this.LIST!=null&&(e.writeFieldBegin("LIST",Pe.Thrift.Type.STRUCT,3),this.LIST.write(e),e.writeFieldEnd()),this.ENUM!=null&&(e.writeFieldBegin("ENUM",Pe.Thrift.Type.STRUCT,4),this.ENUM.write(e),e.writeFieldEnd()),this.DECIMAL!=null&&(e.writeFieldBegin("DECIMAL",Pe.Thrift.Type.STRUCT,5),this.DECIMAL.write(e),e.writeFieldEnd()),this.DATE!=null&&(e.writeFieldBegin("DATE",Pe.Thrift.Type.STRUCT,6),this.DATE.write(e),e.writeFieldEnd()),this.TIME!=null&&(e.writeFieldBegin("TIME",Pe.Thrift.Type.STRUCT,7),this.TIME.write(e),e.writeFieldEnd()),this.TIMESTAMP!=null&&(e.writeFieldBegin("TIMESTAMP",Pe.Thrift.Type.STRUCT,8),this.TIMESTAMP.write(e),e.writeFieldEnd()),this.INTEGER!=null&&(e.writeFieldBegin("INTEGER",Pe.Thrift.Type.STRUCT,10),this.INTEGER.write(e),e.writeFieldEnd()),this.UNKNOWN!=null&&(e.writeFieldBegin("UNKNOWN",Pe.Thrift.Type.STRUCT,11),this.UNKNOWN.write(e),e.writeFieldEnd()),this.JSON!=null&&(e.writeFieldBegin("JSON",Pe.Thrift.Type.STRUCT,12),this.JSON.write(e),e.writeFieldEnd()),this.BSON!=null&&(e.writeFieldBegin("BSON",Pe.Thrift.Type.STRUCT,13),this.BSON.write(e),e.writeFieldEnd()),this.UUID!=null&&(e.writeFieldBegin("UUID",Pe.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===Pe.Thrift.Type.STOP)break;switch(o){case 1:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Bl.read(e);n=tt.fromSTRING(s)}else e.skip(f);break;case 2:if(f===Pe.Thrift.Type.STRUCT){r++;let s=xl.read(e);n=tt.fromMAP(s)}else e.skip(f);break;case 3:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Sl.read(e);n=tt.fromLIST(s)}else e.skip(f);break;case 4:if(f===Pe.Thrift.Type.STRUCT){r++;let s=El.read(e);n=tt.fromENUM(s)}else e.skip(f);break;case 5:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Fl.read(e);n=tt.fromDECIMAL(s)}else e.skip(f);break;case 6:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Al.read(e);n=tt.fromDATE(s)}else e.skip(f);break;case 7:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Pl.read(e);n=tt.fromTIME(s)}else e.skip(f);break;case 8:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Rl.read(e);n=tt.fromTIMESTAMP(s)}else e.skip(f);break;case 10:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Hl.read(e);n=tt.fromINTEGER(s)}else e.skip(f);break;case 11:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Ol.read(e);n=tt.fromUNKNOWN(s)}else e.skip(f);break;case 12:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Ml.read(e);n=tt.fromJSON(s)}else e.skip(f);break;case 13:if(f===Pe.Thrift.Type.STRUCT){r++;let s=zl.read(e);n=tt.fromBSON(s)}else e.skip(f);break;case 14:if(f===Pe.Thrift.Type.STRUCT){r++;let s=Il.read(e);n=tt.fromUUID(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Pe.Thrift.TProtocolException(Pe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Pe.Thrift.TProtocolException(Pe.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Pe.Thrift.TProtocolException(Pe.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var Ul=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 ct.Thrift.TProtocolException(ct.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",ct.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.type_length!=null&&(e.writeFieldBegin("type_length",ct.Thrift.Type.I32,2),e.writeI32(this.type_length),e.writeFieldEnd()),this.repetition_type!=null&&(e.writeFieldBegin("repetition_type",ct.Thrift.Type.I32,3),e.writeI32(this.repetition_type),e.writeFieldEnd()),this.name!=null&&(e.writeFieldBegin("name",ct.Thrift.Type.STRING,4),e.writeString(this.name),e.writeFieldEnd()),this.num_children!=null&&(e.writeFieldBegin("num_children",ct.Thrift.Type.I32,5),e.writeI32(this.num_children),e.writeFieldEnd()),this.converted_type!=null&&(e.writeFieldBegin("converted_type",ct.Thrift.Type.I32,6),e.writeI32(this.converted_type),e.writeFieldEnd()),this.scale!=null&&(e.writeFieldBegin("scale",ct.Thrift.Type.I32,7),e.writeI32(this.scale),e.writeFieldEnd()),this.precision!=null&&(e.writeFieldBegin("precision",ct.Thrift.Type.I32,8),e.writeI32(this.precision),e.writeFieldEnd()),this.field_id!=null&&(e.writeFieldBegin("field_id",ct.Thrift.Type.I32,9),e.writeI32(this.field_id),e.writeFieldEnd()),this.logicalType!=null&&(e.writeFieldBegin("logicalType",ct.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===ct.Thrift.Type.STOP)break;switch(f){case 1:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.type_length=o}else e.skip(i);break;case 3:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.repetition_type=o}else e.skip(i);break;case 4:if(i===ct.Thrift.Type.STRING){let o=e.readString();r.name=o}else e.skip(i);break;case 5:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.num_children=o}else e.skip(i);break;case 6:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.converted_type=o}else e.skip(i);break;case 7:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.scale=o}else e.skip(i);break;case 8:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.precision=o}else e.skip(i);break;case 9:if(i===ct.Thrift.Type.I32){let o=e.readI32();r.field_id=o}else e.skip(i);break;case 10:if(i===ct.Thrift.Type.STRUCT){let o=tt.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 Ul(r);throw new ct.Thrift.TProtocolException(ct.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SchemaElement from input")}};var Tt=de(Ce());var Ll=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Tt.Thrift.TProtocolException(Tt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Tt.Thrift.TProtocolException(Tt.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 Tt.Thrift.TProtocolException(Tt.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 Tt.Thrift.TProtocolException(Tt.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",Tt.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Tt.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_level_encoding!=null&&(e.writeFieldBegin("definition_level_encoding",Tt.Thrift.Type.I32,3),e.writeI32(this.definition_level_encoding),e.writeFieldEnd()),this.repetition_level_encoding!=null&&(e.writeFieldBegin("repetition_level_encoding",Tt.Thrift.Type.I32,4),e.writeI32(this.repetition_level_encoding),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",Tt.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===Tt.Thrift.Type.STOP)break;switch(f){case 1:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.definition_level_encoding=o}else e.skip(i);break;case 4:if(i===Tt.Thrift.Type.I32){let o=e.readI32();r.repetition_level_encoding=o}else e.skip(i);break;case 5:if(i===Tt.Thrift.Type.STRUCT){let o=Mi.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 Ll(r);throw new Tt.Thrift.TProtocolException(Tt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeader from input")}};var GT=de(Ce()),Vl=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===GT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Vl}};var Fr=de(Ce()),Cl=class{constructor(e){if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Fr.Thrift.TProtocolException(Fr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_values] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Fr.Thrift.TProtocolException(Fr.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",Fr.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Fr.Thrift.Type.I32,2),e.writeI32(this.encoding),e.writeFieldEnd()),this.is_sorted!=null&&(e.writeFieldBegin("is_sorted",Fr.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===Fr.Thrift.Type.STOP)break;switch(f){case 1:if(i===Fr.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===Fr.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===Fr.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 Cl(r);throw new Fr.Thrift.TProtocolException(Fr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DictionaryPageHeader from input")}};var Qe=de(Ce());var Wl=class{constructor(e){this.is_compressed=!0;if(e!=null&&e.num_values!=null)this.num_values=e.num_values;else throw new Qe.Thrift.TProtocolException(Qe.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 Qe.Thrift.TProtocolException(Qe.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 Qe.Thrift.TProtocolException(Qe.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[num_rows] is unset!");if(e!=null&&e.encoding!=null)this.encoding=e.encoding;else throw new Qe.Thrift.TProtocolException(Qe.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 Qe.Thrift.TProtocolException(Qe.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 Qe.Thrift.TProtocolException(Qe.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",Qe.Thrift.Type.I32,1),e.writeI32(this.num_values),e.writeFieldEnd()),this.num_nulls!=null&&(e.writeFieldBegin("num_nulls",Qe.Thrift.Type.I32,2),e.writeI32(this.num_nulls),e.writeFieldEnd()),this.num_rows!=null&&(e.writeFieldBegin("num_rows",Qe.Thrift.Type.I32,3),e.writeI32(this.num_rows),e.writeFieldEnd()),this.encoding!=null&&(e.writeFieldBegin("encoding",Qe.Thrift.Type.I32,4),e.writeI32(this.encoding),e.writeFieldEnd()),this.definition_levels_byte_length!=null&&(e.writeFieldBegin("definition_levels_byte_length",Qe.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",Qe.Thrift.Type.I32,6),e.writeI32(this.repetition_levels_byte_length),e.writeFieldEnd()),this.is_compressed!=null&&(e.writeFieldBegin("is_compressed",Qe.Thrift.Type.BOOL,7),e.writeBool(this.is_compressed),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",Qe.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===Qe.Thrift.Type.STOP)break;switch(f){case 1:if(i===Qe.Thrift.Type.I32){let o=e.readI32();r.num_values=o}else e.skip(i);break;case 2:if(i===Qe.Thrift.Type.I32){let o=e.readI32();r.num_nulls=o}else e.skip(i);break;case 3:if(i===Qe.Thrift.Type.I32){let o=e.readI32();r.num_rows=o}else e.skip(i);break;case 4:if(i===Qe.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 5:if(i===Qe.Thrift.Type.I32){let o=e.readI32();r.definition_levels_byte_length=o}else e.skip(i);break;case 6:if(i===Qe.Thrift.Type.I32){let o=e.readI32();r.repetition_levels_byte_length=o}else e.skip(i);break;case 7:if(i===Qe.Thrift.Type.BOOL){let o=e.readBool();r.is_compressed=o}else e.skip(i);break;case 8:if(i===Qe.Thrift.Type.STRUCT){let o=Mi.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 Wl(r);throw new Qe.Thrift.TProtocolException(Qe.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read DataPageHeaderV2 from input")}};var pt=de(Ce());var Kl=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,f=n.fid;if(i===pt.Thrift.Type.STOP)break;switch(f){case 1:if(i===pt.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===pt.Thrift.Type.I32){let o=e.readI32();r.uncompressed_page_size=o}else e.skip(i);break;case 3:if(i===pt.Thrift.Type.I32){let o=e.readI32();r.compressed_page_size=o}else e.skip(i);break;case 4:if(i===pt.Thrift.Type.I32){let o=e.readI32();r.crc=o}else e.skip(i);break;case 5:if(i===pt.Thrift.Type.STRUCT){let o=Ll.read(e);r.data_page_header=o}else e.skip(i);break;case 6:if(i===pt.Thrift.Type.STRUCT){let o=Vl.read(e);r.index_page_header=o}else e.skip(i);break;case 7:if(i===pt.Thrift.Type.STRUCT){let o=Cl.read(e);r.dictionary_page_header=o}else e.skip(i);break;case 8:if(i===pt.Thrift.Type.STRUCT){let o=Wl.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 Kl(r);throw new pt.Thrift.TProtocolException(pt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageHeader from input")}};var ti=de(Ce()),_o=class{constructor(e){if(e!=null&&e.key!=null)this.key=e.key;else throw new ti.Thrift.TProtocolException(ti.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",ti.Thrift.Type.STRING,1),e.writeString(this.key),e.writeFieldEnd()),this.value!=null&&(e.writeFieldBegin("value",ti.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===ti.Thrift.Type.STOP)break;switch(f){case 1:if(i===ti.Thrift.Type.STRING){let o=e.readString();r.key=o}else e.skip(i);break;case 2:if(i===ti.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 _o(r);throw new ti.Thrift.TProtocolException(ti.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read KeyValue from input")}};var pr=de(Ce()),Yl=class{constructor(e){if(e!=null&&e.column_idx!=null)this.column_idx=e.column_idx;else throw new pr.Thrift.TProtocolException(pr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[column_idx] is unset!");if(e!=null&&e.descending!=null)this.descending=e.descending;else throw new pr.Thrift.TProtocolException(pr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[descending] is unset!");if(e!=null&&e.nulls_first!=null)this.nulls_first=e.nulls_first;else throw new pr.Thrift.TProtocolException(pr.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[nulls_first] is unset!")}write(e){e.writeStructBegin("SortingColumn"),this.column_idx!=null&&(e.writeFieldBegin("column_idx",pr.Thrift.Type.I32,1),e.writeI32(this.column_idx),e.writeFieldEnd()),this.descending!=null&&(e.writeFieldBegin("descending",pr.Thrift.Type.BOOL,2),e.writeBool(this.descending),e.writeFieldEnd()),this.nulls_first!=null&&(e.writeFieldBegin("nulls_first",pr.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===pr.Thrift.Type.STOP)break;switch(f){case 1:if(i===pr.Thrift.Type.I32){let o=e.readI32();r.column_idx=o}else e.skip(i);break;case 2:if(i===pr.Thrift.Type.BOOL){let o=e.readBool();r.descending=o}else e.skip(i);break;case 3:if(i===pr.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 Yl(r);throw new pr.Thrift.TProtocolException(pr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read SortingColumn from input")}};var dr=de(Ce()),Gl=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,f=n.fid;if(i===dr.Thrift.Type.STOP)break;switch(f){case 1:if(i===dr.Thrift.Type.I32){let o=e.readI32();r.page_type=o}else e.skip(i);break;case 2:if(i===dr.Thrift.Type.I32){let o=e.readI32();r.encoding=o}else e.skip(i);break;case 3:if(i===dr.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 Gl(r);throw new dr.Thrift.TProtocolException(dr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read PageEncodingStats from input")}};var vo=de(en()),pe=de(Ce());var Zl=class{constructor(e){if(e!=null&&e.type!=null)this.type=e.type;else throw new pe.Thrift.TProtocolException(pe.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[type] is unset!");if(e!=null&&e.encodings!=null)this.encodings=e.encodings;else throw new pe.Thrift.TProtocolException(pe.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 pe.Thrift.TProtocolException(pe.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[path_in_schema] is unset!");if(e!=null&&e.codec!=null)this.codec=e.codec;else throw new pe.Thrift.TProtocolException(pe.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[codec] is unset!");if(e!=null&&e.num_values!=null)typeof e.num_values=="number"?this.num_values=new vo.default(e.num_values):this.num_values=e.num_values;else throw new pe.Thrift.TProtocolException(pe.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 vo.default(e.total_uncompressed_size):this.total_uncompressed_size=e.total_uncompressed_size;else throw new pe.Thrift.TProtocolException(pe.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 vo.default(e.total_compressed_size):this.total_compressed_size=e.total_compressed_size;else throw new pe.Thrift.TProtocolException(pe.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 vo.default(e.data_page_offset):this.data_page_offset=e.data_page_offset;else throw new pe.Thrift.TProtocolException(pe.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 vo.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 vo.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",pe.Thrift.Type.I32,1),e.writeI32(this.type),e.writeFieldEnd()),this.encodings!=null&&(e.writeFieldBegin("encodings",pe.Thrift.Type.LIST,2),e.writeListBegin(pe.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",pe.Thrift.Type.LIST,3),e.writeListBegin(pe.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",pe.Thrift.Type.I32,4),e.writeI32(this.codec),e.writeFieldEnd()),this.num_values!=null&&(e.writeFieldBegin("num_values",pe.Thrift.Type.I64,5),e.writeI64(this.num_values),e.writeFieldEnd()),this.total_uncompressed_size!=null&&(e.writeFieldBegin("total_uncompressed_size",pe.Thrift.Type.I64,6),e.writeI64(this.total_uncompressed_size),e.writeFieldEnd()),this.total_compressed_size!=null&&(e.writeFieldBegin("total_compressed_size",pe.Thrift.Type.I64,7),e.writeI64(this.total_compressed_size),e.writeFieldEnd()),this.key_value_metadata!=null&&(e.writeFieldBegin("key_value_metadata",pe.Thrift.Type.LIST,8),e.writeListBegin(pe.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",pe.Thrift.Type.I64,9),e.writeI64(this.data_page_offset),e.writeFieldEnd()),this.index_page_offset!=null&&(e.writeFieldBegin("index_page_offset",pe.Thrift.Type.I64,10),e.writeI64(this.index_page_offset),e.writeFieldEnd()),this.dictionary_page_offset!=null&&(e.writeFieldBegin("dictionary_page_offset",pe.Thrift.Type.I64,11),e.writeI64(this.dictionary_page_offset),e.writeFieldEnd()),this.statistics!=null&&(e.writeFieldBegin("statistics",pe.Thrift.Type.STRUCT,12),this.statistics.write(e),e.writeFieldEnd()),this.encoding_stats!=null&&(e.writeFieldBegin("encoding_stats",pe.Thrift.Type.LIST,13),e.writeListBegin(pe.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===pe.Thrift.Type.STOP)break;switch(f){case 1:if(i===pe.Thrift.Type.I32){let o=e.readI32();r.type=o}else e.skip(i);break;case 2:if(i===pe.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=e.readI32();o.push(c)}e.readListEnd(),r.encodings=o}else e.skip(i);break;case 3:if(i===pe.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=e.readString();o.push(c)}e.readListEnd(),r.path_in_schema=o}else e.skip(i);break;case 4:if(i===pe.Thrift.Type.I32){let o=e.readI32();r.codec=o}else e.skip(i);break;case 5:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.num_values=o}else e.skip(i);break;case 6:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.total_uncompressed_size=o}else e.skip(i);break;case 7:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.total_compressed_size=o}else e.skip(i);break;case 8:if(i===pe.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=_o.read(e);o.push(c)}e.readListEnd(),r.key_value_metadata=o}else e.skip(i);break;case 9:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.data_page_offset=o}else e.skip(i);break;case 10:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.index_page_offset=o}else e.skip(i);break;case 11:if(i===pe.Thrift.Type.I64){let o=e.readI64();r.dictionary_page_offset=o}else e.skip(i);break;case 12:if(i===pe.Thrift.Type.STRUCT){let o=Mi.read(e);r.statistics=o}else e.skip(i);break;case 13:if(i===pe.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Gl.read(e);o.push(c)}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 Zl(r);throw new pe.Thrift.TProtocolException(pe.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnMetaData from input")}};var Bp=de(en()),Mt=de(Ce());var Jl=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 Bp.default(e.file_offset):this.file_offset=e.file_offset;else throw new Mt.Thrift.TProtocolException(Mt.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 Bp.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 Bp.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",Mt.Thrift.Type.STRING,1),e.writeString(this.file_path),e.writeFieldEnd()),this.file_offset!=null&&(e.writeFieldBegin("file_offset",Mt.Thrift.Type.I64,2),e.writeI64(this.file_offset),e.writeFieldEnd()),this.meta_data!=null&&(e.writeFieldBegin("meta_data",Mt.Thrift.Type.STRUCT,3),this.meta_data.write(e),e.writeFieldEnd()),this.offset_index_offset!=null&&(e.writeFieldBegin("offset_index_offset",Mt.Thrift.Type.I64,4),e.writeI64(this.offset_index_offset),e.writeFieldEnd()),this.offset_index_length!=null&&(e.writeFieldBegin("offset_index_length",Mt.Thrift.Type.I32,5),e.writeI32(this.offset_index_length),e.writeFieldEnd()),this.column_index_offset!=null&&(e.writeFieldBegin("column_index_offset",Mt.Thrift.Type.I64,6),e.writeI64(this.column_index_offset),e.writeFieldEnd()),this.column_index_length!=null&&(e.writeFieldBegin("column_index_length",Mt.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===Mt.Thrift.Type.STOP)break;switch(f){case 1:if(i===Mt.Thrift.Type.STRING){let o=e.readString();r.file_path=o}else e.skip(i);break;case 2:if(i===Mt.Thrift.Type.I64){let o=e.readI64();r.file_offset=o}else e.skip(i);break;case 3:if(i===Mt.Thrift.Type.STRUCT){let o=Zl.read(e);r.meta_data=o}else e.skip(i);break;case 4:if(i===Mt.Thrift.Type.I64){let o=e.readI64();r.offset_index_offset=o}else e.skip(i);break;case 5:if(i===Mt.Thrift.Type.I32){let o=e.readI32();r.offset_index_length=o}else e.skip(i);break;case 6:if(i===Mt.Thrift.Type.I64){let o=e.readI64();r.column_index_offset=o}else e.skip(i);break;case 7:if(i===Mt.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 Jl(r);throw new Mt.Thrift.TProtocolException(Mt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read ColumnChunk from input")}};var cb=de(en()),zt=de(Ce());var Ql=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 cb.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 cb.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,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Jl.read(e);o.push(c)}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,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Yl.read(e);o.push(c)}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 Ql(r);throw new zt.Thrift.TProtocolException(zt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read RowGroup from input")}};var ZT=de(Ce()),Xl=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===ZT.Thrift.Type.STOP)break;switch(i){default:e.skip(n)}e.readFieldEnd()}return e.readStructEnd(),new Xl}};var JT=de(en()),rt=de(Ce());var Dr=de(Ce());var ks=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 Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!")}}static fromTYPE_ORDER(e){return new ks({TYPE_ORDER:e})}write(e){e.writeStructBegin("ColumnOrder"),this.TYPE_ORDER!=null&&(e.writeFieldBegin("TYPE_ORDER",Dr.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===Dr.Thrift.Type.STOP)break;switch(o){case 1:if(f===Dr.Thrift.Type.STRUCT){r++;let s=Xl.read(e);n=ks.fromTYPE_ORDER(s)}else e.skip(f);break;default:e.skip(f)}e.readFieldEnd()}if(e.readStructEnd(),r>1)throw new Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with more than one set value!");if(r<1)throw new Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.INVALID_DATA,"Cannot read a TUnion with no set value!");if(n!==null)return n;throw new Dr.Thrift.TProtocolException(Dr.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read data for TUnion")}};var $l=class{constructor(e=null){if(e!=null&&e.version!=null)this.version=e.version;else throw new rt.Thrift.TProtocolException(rt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[version] is unset!");if(e!=null&&e.schema!=null)this.schema=e.schema;else throw new rt.Thrift.TProtocolException(rt.Thrift.TProtocolExceptionType.UNKNOWN,"Required field[schema] is unset!");if(e!=null&&e.num_rows!=null)typeof e.num_rows=="number"?this.num_rows=new JT.default(e.num_rows):this.num_rows=e.num_rows;else throw new rt.Thrift.TProtocolException(rt.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 rt.Thrift.TProtocolException(rt.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",rt.Thrift.Type.I32,1),e.writeI32(this.version),e.writeFieldEnd()),this.schema!=null&&(e.writeFieldBegin("schema",rt.Thrift.Type.LIST,2),e.writeListBegin(rt.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",rt.Thrift.Type.I64,3),e.writeI64(this.num_rows),e.writeFieldEnd()),this.row_groups!=null&&(e.writeFieldBegin("row_groups",rt.Thrift.Type.LIST,4),e.writeListBegin(rt.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",rt.Thrift.Type.LIST,5),e.writeListBegin(rt.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",rt.Thrift.Type.STRING,6),e.writeString(this.created_by),e.writeFieldEnd()),this.column_orders!=null&&(e.writeFieldBegin("column_orders",rt.Thrift.Type.LIST,7),e.writeListBegin(rt.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===rt.Thrift.Type.STOP)break;switch(f){case 1:if(i===rt.Thrift.Type.I32){let o=e.readI32();r.version=o}else e.skip(i);break;case 2:if(i===rt.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Ul.read(e);o.push(c)}e.readListEnd(),r.schema=o}else e.skip(i);break;case 3:if(i===rt.Thrift.Type.I64){let o=e.readI64();r.num_rows=o}else e.skip(i);break;case 4:if(i===rt.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=Ql.read(e);o.push(c)}e.readListEnd(),r.row_groups=o}else e.skip(i);break;case 5:if(i===rt.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=_o.read(e);o.push(c)}e.readListEnd(),r.key_value_metadata=o}else e.skip(i);break;case 6:if(i===rt.Thrift.Type.STRING){let o=e.readString();r.created_by=o}else e.skip(i);break;case 7:if(i===rt.Thrift.Type.LIST){let o=new Array,u=e.readListBegin().size;for(let l=0;l<u;l++){let c=ks.read(e);o.push(c)}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 $l(r);throw new rt.Thrift.TProtocolException(rt.Thrift.TProtocolExceptionType.UNKNOWN,"Unable to read FileMetaData from input")}};var Bs="PAR1",QT="PARE";var eu="INT32",pb="RLE";var Is=de(Ce());var db=class extends Is.TFramedTransport{constructor(){super(...arguments);this.readPos=0}};function on(t,e){for(let r in t)if(t[r]===e)return r;throw new Error("Invalid ENUM value")}function XT(t,e){e||(e=0);let r=new db(t);r.readPos=e;let n=new Is.TCompactProtocol(r),i=$l.read(n);return{length:r.readPos-e,metadata:i}}function $T(t,e){e||(e=0);let r=new db(t);r.readPos=e;let n=new Is.TCompactProtocol(r),i=Kl.read(n);return{length:r.readPos-e,pageHeader:i}}function tu(t){return t===0?0:Math.ceil(Math.log2(t+1))}function ek(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 tk(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 mb(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 mb(t,e){let r,{pageHeader:n,length:i}=$T(t.buffer,t.offset);t.offset+=i;let f=on(cp,n.type);switch(f){case"DATA_PAGE":r=await LF(t,n,e);break;case"DATA_PAGE_V2":r=await VF(t,n,e);break;case"DICTIONARY_PAGE":r={dictionary:await CF(t,n,e),pageHeader:n};break;default:throw new Error(`invalid page type: ${f}`)}return r}function wb(t,e,r){let n={},i=e;for(let f=0;f<r;f++){let o=t[i],s=i>0?on(lp,o.repetition_type):"ROOT",u=!1,l=!1;switch(s){case"REQUIRED":break;case"OPTIONAL":u=!0;break;case"REPEATED":l=!0;break;default:throw new Error("parquet: unknown repetition type")}if(o.num_children>0){let c=wb(t,i+1,o.num_children);i=c.next,n[o.name]={optional:u,repeated:l,fields:c.schema}}else{let c=on(gs,o.type),w=c;switch(o.converted_type&&(w=on(ap,o.converted_type)),w){case"DECIMAL":w=`${w}_${c}`;break;default:}n[o.name]={type:w,typeLength:o.type_length,presision:o.precision,scale:o.scale,optional:u,repeated:l},i++}}return{schema:n,offset:e,next:i}}function To(t,e,r,n,i){if(!(e in Ha))throw new Error(`invalid encoding: ${e}`);return Ha[e].decodeValues(t,r,n,i)}async function LF(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 Dc(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=on(jo,e.data_page_header?.repetition_level_encoding),s=new Array(i);r.column.rLevelMax>0?s=To(eu,o,f,i,{bitWidth:tu(r.column.rLevelMax),disableEnvelope:!1}):s.fill(0);let u=on(jo,e.data_page_header?.definition_level_encoding),l=new Array(i);r.column.dLevelMax>0?l=To(eu,u,f,i,{bitWidth:tu(r.column.dLevelMax),disableEnvelope:!1}):l.fill(0);let c=0;for(let T of l)T===r.column.dLevelMax&&c++;let w=on(jo,e.data_page_header?.encoding),p={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},g=To(r.column.primitiveType,w,f,c,p);return{dlevels:l,rlevels:s,values:g,count:i,pageHeader:e}}async function VF(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=on(jo,e.data_page_header_v2?.encoding),s=new Array(i);r.column.rLevelMax>0?s=To(eu,pb,t,i,{bitWidth:tu(r.column.rLevelMax),disableEnvelope:!0}):s.fill(0);let u=new Array(i);r.column.dLevelMax>0?u=To(eu,pb,t,i,{bitWidth:tu(r.column.dLevelMax),disableEnvelope:!0}):u.fill(0);let l=t;if(e.data_page_header_v2?.is_compressed){let p=await Dc(r.compression,t.buffer.slice(t.offset,n),e.uncompressed_page_size);l={buffer:p,offset:0,size:p.length},t.offset=n}let c={typeLength:r.column.typeLength,bitWidth:r.column.typeLength},w=To(r.column.primitiveType,o,l,f,c);return{dlevels:u,rlevels:s,values:w,count:i,pageHeader:e}}async function CF(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 Dc(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 To(r.column.primitiveType,r.column.encoding,i,f,r).map(o=>o.toString())}var WF={defaultDictionarySize:1e6},hb=class{constructor(e,r){this.metadata=null;this.file=e,this.props={...WF,...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}=wb(e.schema,1,r.num_children);return new Ph(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,Bs.length)).toString();switch(r){case Bs:break;case QT:throw new Error("Encrypted parquet file not supported");default:throw new Error(`Invalid parquet file (magic=${r})`)}}async readFooter(){let e=Bs.length+4,r=await this.file.read(this.file.size-e,e),n=r.slice(4).toString();if(n!==Bs)throw new Error(`Not a valid parquet file (magic="${n})`);let i=r.readUInt32LE(0),f=this.file.size-i-e;if(f<Bs.length)throw new Error(`Invalid metadata size ${f}`);let o=await this.file.read(f,i),{metadata:s}=XT(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&&ek(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=on(gs,r.meta_data?.type);if(i!==n.primitiveType)throw new Error(`chunk type not matching schema: ${i}`);let f=on(up,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 u={type:i,rLevelMax:n.rLevelMax,dLevelMax:n.dLevelMax,compression:f,column:n,numValues:r.meta_data?.num_values,dictionary:[]},l,c=r?.meta_data?.dictionary_page_offset;if(c){let p=Number(c);l=await this.getDictionary(p,u,o)}l=u.dictionary?.length?u.dictionary:l;let w=await this.file.read(o,s);return await tk(w,{...u,dictionary:l})}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 mb(o,r)).dictionary}};async function rk(t,e){let r=new Blob([t]);for await(let n of bb(r,e))return n;return null}async function*bb(t,e){let r=Hm(t),i=new hb(r).rowBatchIterator(e?.parquet);for await(let f of i)yield f}var Em=de(Gx());var Sm={};gS(Sm,{Compression:()=>zz,Encoding:()=>Uz,WriterProperties:()=>Ea,WriterPropertiesBuilder:()=>Ht,WriterVersion:()=>Lz,default:()=>$x,readParquet:()=>Pz,writeParquet:()=>Mz});var be,Zx=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0});Zx.decode();var Bm=null;function Lu(){return(Bm===null||Bm.buffer!==be.memory.buffer)&&(Bm=new Uint8Array(be.memory.buffer)),Bm}function Jx(t,e){return Zx.decode(Lu().subarray(t,t+e))}var tf=new Array(32).fill(void 0);tf.push(void 0,null,!0,!1);var Vu=tf.length;function Cu(t){Vu===tf.length&&tf.push(tf.length+1);let e=Vu;return Vu=tf[e],tf[e]=t,e}function Ia(t){return tf[t]}function Nz(t){t<36||(tf[t]=Vu,Vu=t)}function Wu(t){let e=Ia(t);return Nz(t),e}var zn=0,Im=new TextEncoder("utf-8"),Rz=typeof Im.encodeInto=="function"?function(t,e){return Im.encodeInto(t,e)}:function(t,e){let r=Im.encode(t);return e.set(r),{read:t.length,written:r.length}};function xa(t,e,r){if(r===void 0){let s=Im.encode(t),u=e(s.length);return Lu().subarray(u,u+s.length).set(s),zn=s.length,u}let n=t.length,i=e(n),f=Lu(),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=Lu().subarray(i+o,i+n);o+=Rz(t,s).written}return zn=o,i}function Qx(t,e){let r=e(t.length*1);return Lu().set(t,r/1),zn=t.length,r}var xm=null;function Sa(){return(xm===null||xm.buffer!==be.memory.buffer)&&(xm=new Int32Array(be.memory.buffer)),xm}function Pz(t){try{let i=be.__wbindgen_add_to_stack_pointer(-16),f=Qx(t,be.__wbindgen_malloc),o=zn;be.readParquet(i,f,o);var e=Sa()[i/4+0],r=Sa()[i/4+1],n=Sa()[i/4+2];if(n)throw Wu(r);return Wu(e)}finally{be.__wbindgen_add_to_stack_pointer(16)}}function Hz(t,e){if(!(t instanceof e))throw new Error(`expected instance of ${e.name}`);return t.ptr}function Mz(t,e){try{let o=be.__wbindgen_add_to_stack_pointer(-16),s=Qx(t,be.__wbindgen_malloc),u=zn;Hz(e,Ea);var r=e.ptr;e.ptr=0,be.writeParquet(o,s,u,r);var n=Sa()[o/4+0],i=Sa()[o/4+1],f=Sa()[o/4+2];if(f)throw Wu(i);return Wu(n)}finally{be.__wbindgen_add_to_stack_pointer(16)}}var zz=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"}),Uz=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"}),Lz=Object.freeze({V1:0,"0":"V1",V2:1,"1":"V2"}),Ea=class{static __wrap(e){let r=Object.create(Ea.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)}},Ht=class{static __wrap(e){let r=Object.create(Ht.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 Ht.__wrap(e)}build(){let e=this.__destroy_into_raw(),r=be.writerpropertiesbuilder_build(e);return Ea.__wrap(r)}setWriterVersion(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setWriterVersion(r,e);return Ht.__wrap(n)}setDataPagesizeLimit(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setDataPagesizeLimit(r,e);return Ht.__wrap(n)}setDictionaryPagesizeLimit(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setDictionaryPagesizeLimit(r,e);return Ht.__wrap(n)}setWriteBatchSize(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setWriteBatchSize(r,e);return Ht.__wrap(n)}setMaxRowGroupSize(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setMaxRowGroupSize(r,e);return Ht.__wrap(n)}setCreatedBy(e){let r=this.__destroy_into_raw(),n=xa(e,be.__wbindgen_malloc,be.__wbindgen_realloc),i=zn,f=be.writerpropertiesbuilder_setCreatedBy(r,n,i);return Ht.__wrap(f)}setEncoding(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setEncoding(r,e);return Ht.__wrap(n)}setCompression(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setCompression(r,e);return Ht.__wrap(n)}setDictionaryEnabled(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setDictionaryEnabled(r,e);return Ht.__wrap(n)}setStatisticsEnabled(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setStatisticsEnabled(r,e);return Ht.__wrap(n)}setMaxStatisticsSize(e){let r=this.__destroy_into_raw(),n=be.writerpropertiesbuilder_setMaxStatisticsSize(r,e);return Ht.__wrap(n)}setColumnEncoding(e,r){let n=this.__destroy_into_raw(),i=xa(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnEncoding(n,i,f,r);return Ht.__wrap(o)}setColumnCompression(e,r){let n=this.__destroy_into_raw(),i=xa(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnCompression(n,i,f,r);return Ht.__wrap(o)}setColumnDictionaryEnabled(e,r){let n=this.__destroy_into_raw(),i=xa(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnDictionaryEnabled(n,i,f,r);return Ht.__wrap(o)}setColumnStatisticsEnabled(e,r){let n=this.__destroy_into_raw(),i=xa(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnStatisticsEnabled(n,i,f,r);return Ht.__wrap(o)}setColumnMaxStatisticsSize(e,r){let n=this.__destroy_into_raw(),i=xa(e,be.__wbindgen_malloc,be.__wbindgen_realloc),f=zn,o=be.writerpropertiesbuilder_setColumnMaxStatisticsSize(n,i,f,r);return Ht.__wrap(o)}};async function Vz(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 Xx(t){let e={};e.wbg={},e.wbg.__wbindgen_string_new=function(i,f){let o=Jx(i,f);return Cu(o)},e.wbg.__wbindgen_object_drop_ref=function(i){Wu(i)},e.wbg.__wbg_buffer_7af23f65f6c64548=function(i){let f=Ia(i).buffer;return Cu(f)},e.wbg.__wbg_newwithbyteoffsetandlength_ce1e75f0ce5f7974=function(i,f,o){let s=new Uint8Array(Ia(i),f>>>0,o>>>0);return Cu(s)},e.wbg.__wbg_set_f25e869e4565d2a2=function(i,f,o){Ia(i).set(Ia(f),o>>>0)},e.wbg.__wbg_length_0acb1cf9bbaf8519=function(i){return Ia(i).length},e.wbg.__wbg_newwithlength_8f0657faca9f1422=function(i){let f=new Uint8Array(i>>>0);return Cu(f)},e.wbg.__wbindgen_throw=function(i,f){throw new Error(Jx(i,f))},e.wbg.__wbindgen_memory=function(){let i=be.memory;return Cu(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 Vz(await t,e);return be=r.exports,Xx.__wbindgen_wasm_module=n,be}var $x=Xx;var Hj=null;async function eS(t){return Hj!==null?Hj:(await $x(t),Hj=Sm,Sm)}async function tS(t,e){let r=e?.parquet?.wasmUrl,n=await eS(r),i=new Uint8Array(t),f=n.readParquet(i),o=f.buffer.slice(f.byteOffset,f.byteLength+f.byteOffset);return Cz(o)}function Cz(t){let e=Em.RecordBatchStreamReader.from(t),r=[];for(let n of e)r.push(n);return new Em.Table(r)}var rS={...Zj,parse:rk,parseFileInBatches:bb},D5={...Gj,parse:tS};Rm(rS);})();
28
28
  /*!
29
29
  *
30
30
  * Copyright 2009-2017 Kris Kowal under the terms of the MIT