@streamlayer/sdk-web 0.28.18 → 0.28.20
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.
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +9 -9
- package/package.json +9 -9
package/lib/cjs/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @author Feross Aboukhadijeh <https://feross.org>
|
|
5
5
|
* @license MIT
|
|
6
|
-
*/(function(t){const e=Ct,r=lr,o=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;t.Buffer=l,t.SlowBuffer=_,t.INSPECT_MAX_BYTES=50;const s=2147483647;t.kMaxLength=s,l.TYPED_ARRAY_SUPPORT=u(),!l.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&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 u(){try{const a=new Uint8Array(1),n={foo:function(){return 42}};return Object.setPrototypeOf(n,Uint8Array.prototype),Object.setPrototypeOf(a,n),a.foo()===42}catch{return!1}}Object.defineProperty(l.prototype,"parent",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.buffer}}),Object.defineProperty(l.prototype,"offset",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.byteOffset}});function f(a){if(a>s)throw new RangeError('The value "'+a+'" is invalid for option "size"');const n=new Uint8Array(a);return Object.setPrototypeOf(n,l.prototype),n}function l(a,n,i){if(typeof a=="number"){if(typeof n=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return b(a)}return p(a,n,i)}l.poolSize=8192;function p(a,n,i){if(typeof a=="string")return E(a,n);if(ArrayBuffer.isView(a))return N(a);if(a==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof a);if(me(a,ArrayBuffer)||a&&me(a.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(me(a,SharedArrayBuffer)||a&&me(a.buffer,SharedArrayBuffer)))return P(a,n,i);if(typeof a=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const c=a.valueOf&&a.valueOf();if(c!=null&&c!==a)return l.from(c,n,i);const h=K(a);if(h)return h;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof a[Symbol.toPrimitive]=="function")return l.from(a[Symbol.toPrimitive]("string"),n,i);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof a)}l.from=function(a,n,i){return p(a,n,i)},Object.setPrototypeOf(l.prototype,Uint8Array.prototype),Object.setPrototypeOf(l,Uint8Array);function v(a){if(typeof a!="number")throw new TypeError('"size" argument must be of type number');if(a<0)throw new RangeError('The value "'+a+'" is invalid for option "size"')}function g(a,n,i){return v(a),a<=0?f(a):n!==void 0?typeof i=="string"?f(a).fill(n,i):f(a).fill(n):f(a)}l.alloc=function(a,n,i){return g(a,n,i)};function b(a){return v(a),f(a<0?0:I(a)|0)}l.allocUnsafe=function(a){return b(a)},l.allocUnsafeSlow=function(a){return b(a)};function E(a,n){if((typeof n!="string"||n==="")&&(n="utf8"),!l.isEncoding(n))throw new TypeError("Unknown encoding: "+n);const i=j(a,n)|0;let c=f(i);const h=c.write(a,n);return h!==i&&(c=c.slice(0,h)),c}function T(a){const n=a.length<0?0:I(a.length)|0,i=f(n);for(let c=0;c<n;c+=1)i[c]=a[c]&255;return i}function N(a){if(me(a,Uint8Array)){const n=new Uint8Array(a);return P(n.buffer,n.byteOffset,n.byteLength)}return T(a)}function P(a,n,i){if(n<0||a.byteLength<n)throw new RangeError('"offset" is outside of buffer bounds');if(a.byteLength<n+(i||0))throw new RangeError('"length" is outside of buffer bounds');let c;return n===void 0&&i===void 0?c=new Uint8Array(a):i===void 0?c=new Uint8Array(a,n):c=new Uint8Array(a,n,i),Object.setPrototypeOf(c,l.prototype),c}function K(a){if(l.isBuffer(a)){const n=I(a.length)|0,i=f(n);return i.length===0||a.copy(i,0,0,n),i}if(a.length!==void 0)return typeof a.length!="number"||Rt(a.length)?f(0):T(a);if(a.type==="Buffer"&&Array.isArray(a.data))return T(a.data)}function I(a){if(a>=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return a|0}function _(a){return+a!=a&&(a=0),l.alloc(+a)}l.isBuffer=function(n){return n!=null&&n._isBuffer===!0&&n!==l.prototype},l.compare=function(n,i){if(me(n,Uint8Array)&&(n=l.from(n,n.offset,n.byteLength)),me(i,Uint8Array)&&(i=l.from(i,i.offset,i.byteLength)),!l.isBuffer(n)||!l.isBuffer(i))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(n===i)return 0;let c=n.length,h=i.length;for(let y=0,m=Math.min(c,h);y<m;++y)if(n[y]!==i[y]){c=n[y],h=i[y];break}return c<h?-1:h<c?1:0},l.isEncoding=function(n){switch(String(n).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}},l.concat=function(n,i){if(!Array.isArray(n))throw new TypeError('"list" argument must be an Array of Buffers');if(n.length===0)return l.alloc(0);let c;if(i===void 0)for(i=0,c=0;c<n.length;++c)i+=n[c].length;const h=l.allocUnsafe(i);let y=0;for(c=0;c<n.length;++c){let m=n[c];if(me(m,Uint8Array))y+m.length>h.length?(l.isBuffer(m)||(m=l.from(m)),m.copy(h,y)):Uint8Array.prototype.set.call(h,m,y);else if(l.isBuffer(m))m.copy(h,y);else throw new TypeError('"list" argument must be an Array of Buffers');y+=m.length}return h};function j(a,n){if(l.isBuffer(a))return a.length;if(ArrayBuffer.isView(a)||me(a,ArrayBuffer))return a.byteLength;if(typeof a!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof a);const i=a.length,c=arguments.length>2&&arguments[2]===!0;if(!c&&i===0)return 0;let h=!1;for(;;)switch(n){case"ascii":case"latin1":case"binary":return i;case"utf8":case"utf-8":return ot(a).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return i*2;case"hex":return i>>>1;case"base64":return pt(a).length;default:if(h)return c?-1:ot(a).length;n=(""+n).toLowerCase(),h=!0}}l.byteLength=j;function U(a,n,i){let c=!1;if((n===void 0||n<0)&&(n=0),n>this.length||((i===void 0||i>this.length)&&(i=this.length),i<=0)||(i>>>=0,n>>>=0,i<=n))return"";for(a||(a="utf8");;)switch(a){case"hex":return he(this,n,i);case"utf8":case"utf-8":return fe(this,n,i);case"ascii":return it(this,n,i);case"latin1":case"binary":return ke(this,n,i);case"base64":return nt(this,n,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Pe(this,n,i);default:if(c)throw new TypeError("Unknown encoding: "+a);a=(a+"").toLowerCase(),c=!0}}l.prototype._isBuffer=!0;function F(a,n,i){const c=a[n];a[n]=a[i],a[i]=c}l.prototype.swap16=function(){const n=this.length;if(n%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let i=0;i<n;i+=2)F(this,i,i+1);return this},l.prototype.swap32=function(){const n=this.length;if(n%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let i=0;i<n;i+=4)F(this,i,i+3),F(this,i+1,i+2);return this},l.prototype.swap64=function(){const n=this.length;if(n%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let i=0;i<n;i+=8)F(this,i,i+7),F(this,i+1,i+6),F(this,i+2,i+5),F(this,i+3,i+4);return this},l.prototype.toString=function(){const n=this.length;return n===0?"":arguments.length===0?fe(this,0,n):U.apply(this,arguments)},l.prototype.toLocaleString=l.prototype.toString,l.prototype.equals=function(n){if(!l.isBuffer(n))throw new TypeError("Argument must be a Buffer");return this===n?!0:l.compare(this,n)===0},l.prototype.inspect=function(){let n="";const i=t.INSPECT_MAX_BYTES;return n=this.toString("hex",0,i).replace(/(.{2})/g,"$1 ").trim(),this.length>i&&(n+=" ... "),"<Buffer "+n+">"},o&&(l.prototype[o]=l.prototype.inspect),l.prototype.compare=function(n,i,c,h,y){if(me(n,Uint8Array)&&(n=l.from(n,n.offset,n.byteLength)),!l.isBuffer(n))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof n);if(i===void 0&&(i=0),c===void 0&&(c=n?n.length:0),h===void 0&&(h=0),y===void 0&&(y=this.length),i<0||c>n.length||h<0||y>this.length)throw new RangeError("out of range index");if(h>=y&&i>=c)return 0;if(h>=y)return-1;if(i>=c)return 1;if(i>>>=0,c>>>=0,h>>>=0,y>>>=0,this===n)return 0;let m=y-h,R=c-i;const W=Math.min(m,R),z=this.slice(h,y),J=n.slice(i,c);for(let Q=0;Q<W;++Q)if(z[Q]!==J[Q]){m=z[Q],R=J[Q];break}return m<R?-1:R<m?1:0};function x(a,n,i,c,h){if(a.length===0)return-1;if(typeof i=="string"?(c=i,i=0):i>2147483647?i=2147483647:i<-2147483648&&(i=-2147483648),i=+i,Rt(i)&&(i=h?0:a.length-1),i<0&&(i=a.length+i),i>=a.length){if(h)return-1;i=a.length-1}else if(i<0)if(h)i=0;else return-1;if(typeof n=="string"&&(n=l.from(n,c)),l.isBuffer(n))return n.length===0?-1:k(a,n,i,c,h);if(typeof n=="number")return n=n&255,typeof Uint8Array.prototype.indexOf=="function"?h?Uint8Array.prototype.indexOf.call(a,n,i):Uint8Array.prototype.lastIndexOf.call(a,n,i):k(a,[n],i,c,h);throw new TypeError("val must be string, number or Buffer")}function k(a,n,i,c,h){let y=1,m=a.length,R=n.length;if(c!==void 0&&(c=String(c).toLowerCase(),c==="ucs2"||c==="ucs-2"||c==="utf16le"||c==="utf-16le")){if(a.length<2||n.length<2)return-1;y=2,m/=2,R/=2,i/=2}function W(J,Q){return y===1?J[Q]:J.readUInt16BE(Q*y)}let z;if(h){let J=-1;for(z=i;z<m;z++)if(W(a,z)===W(n,J===-1?0:z-J)){if(J===-1&&(J=z),z-J+1===R)return J*y}else J!==-1&&(z-=z-J),J=-1}else for(i+R>m&&(i=m-R),z=i;z>=0;z--){let J=!0;for(let Q=0;Q<R;Q++)if(W(a,z+Q)!==W(n,Q)){J=!1;break}if(J)return z}return-1}l.prototype.includes=function(n,i,c){return this.indexOf(n,i,c)!==-1},l.prototype.indexOf=function(n,i,c){return x(this,n,i,c,!0)},l.prototype.lastIndexOf=function(n,i,c){return x(this,n,i,c,!1)};function G(a,n,i,c){i=Number(i)||0;const h=a.length-i;c?(c=Number(c),c>h&&(c=h)):c=h;const y=n.length;c>y/2&&(c=y/2);let m;for(m=0;m<c;++m){const R=parseInt(n.substr(m*2,2),16);if(Rt(R))return m;a[i+m]=R}return m}function oe(a,n,i,c){return st(ot(n,a.length-i),a,i,c)}function Oe(a,n,i,c){return st(Pt(n),a,i,c)}function Ae(a,n,i,c){return st(pt(n),a,i,c)}function le(a,n,i,c){return st(S(n,a.length-i),a,i,c)}l.prototype.write=function(n,i,c,h){if(i===void 0)h="utf8",c=this.length,i=0;else if(c===void 0&&typeof i=="string")h=i,c=this.length,i=0;else if(isFinite(i))i=i>>>0,isFinite(c)?(c=c>>>0,h===void 0&&(h="utf8")):(h=c,c=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const y=this.length-i;if((c===void 0||c>y)&&(c=y),n.length>0&&(c<0||i<0)||i>this.length)throw new RangeError("Attempt to write outside buffer bounds");h||(h="utf8");let m=!1;for(;;)switch(h){case"hex":return G(this,n,i,c);case"utf8":case"utf-8":return oe(this,n,i,c);case"ascii":case"latin1":case"binary":return Oe(this,n,i,c);case"base64":return Ae(this,n,i,c);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return le(this,n,i,c);default:if(m)throw new TypeError("Unknown encoding: "+h);h=(""+h).toLowerCase(),m=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function nt(a,n,i){return n===0&&i===a.length?e.fromByteArray(a):e.fromByteArray(a.slice(n,i))}function fe(a,n,i){i=Math.min(a.length,i);const c=[];let h=n;for(;h<i;){const y=a[h];let m=null,R=y>239?4:y>223?3:y>191?2:1;if(h+R<=i){let W,z,J,Q;switch(R){case 1:y<128&&(m=y);break;case 2:W=a[h+1],(W&192)===128&&(Q=(y&31)<<6|W&63,Q>127&&(m=Q));break;case 3:W=a[h+1],z=a[h+2],(W&192)===128&&(z&192)===128&&(Q=(y&15)<<12|(W&63)<<6|z&63,Q>2047&&(Q<55296||Q>57343)&&(m=Q));break;case 4:W=a[h+1],z=a[h+2],J=a[h+3],(W&192)===128&&(z&192)===128&&(J&192)===128&&(Q=(y&15)<<18|(W&63)<<12|(z&63)<<6|J&63,Q>65535&&Q<1114112&&(m=Q))}}m===null?(m=65533,R=1):m>65535&&(m-=65536,c.push(m>>>10&1023|55296),m=56320|m&1023),c.push(m),h+=R}return Be(c)}const xe=4096;function Be(a){const n=a.length;if(n<=xe)return String.fromCharCode.apply(String,a);let i="",c=0;for(;c<n;)i+=String.fromCharCode.apply(String,a.slice(c,c+=xe));return i}function it(a,n,i){let c="";i=Math.min(a.length,i);for(let h=n;h<i;++h)c+=String.fromCharCode(a[h]&127);return c}function ke(a,n,i){let c="";i=Math.min(a.length,i);for(let h=n;h<i;++h)c+=String.fromCharCode(a[h]);return c}function he(a,n,i){const c=a.length;(!n||n<0)&&(n=0),(!i||i<0||i>c)&&(i=c);let h="";for(let y=n;y<i;++y)h+=jn[a[y]];return h}function Pe(a,n,i){const c=a.slice(n,i);let h="";for(let y=0;y<c.length-1;y+=2)h+=String.fromCharCode(c[y]+c[y+1]*256);return h}l.prototype.slice=function(n,i){const c=this.length;n=~~n,i=i===void 0?c:~~i,n<0?(n+=c,n<0&&(n=0)):n>c&&(n=c),i<0?(i+=c,i<0&&(i=0)):i>c&&(i=c),i<n&&(i=n);const h=this.subarray(n,i);return Object.setPrototypeOf(h,l.prototype),h};function H(a,n,i){if(a%1!==0||a<0)throw new RangeError("offset is not uint");if(a+n>i)throw new RangeError("Trying to access beyond buffer length")}l.prototype.readUintLE=l.prototype.readUIntLE=function(n,i,c){n=n>>>0,i=i>>>0,c||H(n,i,this.length);let h=this[n],y=1,m=0;for(;++m<i&&(y*=256);)h+=this[n+m]*y;return h},l.prototype.readUintBE=l.prototype.readUIntBE=function(n,i,c){n=n>>>0,i=i>>>0,c||H(n,i,this.length);let h=this[n+--i],y=1;for(;i>0&&(y*=256);)h+=this[n+--i]*y;return h},l.prototype.readUint8=l.prototype.readUInt8=function(n,i){return n=n>>>0,i||H(n,1,this.length),this[n]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(n,i){return n=n>>>0,i||H(n,2,this.length),this[n]|this[n+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(n,i){return n=n>>>0,i||H(n,2,this.length),this[n]<<8|this[n+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(n,i){return n=n>>>0,i||H(n,4,this.length),(this[n]|this[n+1]<<8|this[n+2]<<16)+this[n+3]*16777216},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(n,i){return n=n>>>0,i||H(n,4,this.length),this[n]*16777216+(this[n+1]<<16|this[n+2]<<8|this[n+3])},l.prototype.readBigUInt64LE=Re(function(n){n=n>>>0,pe(n,"offset");const i=this[n],c=this[n+7];(i===void 0||c===void 0)&&se(n,this.length-8);const h=i+this[++n]*2**8+this[++n]*2**16+this[++n]*2**24,y=this[++n]+this[++n]*2**8+this[++n]*2**16+c*2**24;return BigInt(h)+(BigInt(y)<<BigInt(32))}),l.prototype.readBigUInt64BE=Re(function(n){n=n>>>0,pe(n,"offset");const i=this[n],c=this[n+7];(i===void 0||c===void 0)&&se(n,this.length-8);const h=i*2**24+this[++n]*2**16+this[++n]*2**8+this[++n],y=this[++n]*2**24+this[++n]*2**16+this[++n]*2**8+c;return(BigInt(h)<<BigInt(32))+BigInt(y)}),l.prototype.readIntLE=function(n,i,c){n=n>>>0,i=i>>>0,c||H(n,i,this.length);let h=this[n],y=1,m=0;for(;++m<i&&(y*=256);)h+=this[n+m]*y;return y*=128,h>=y&&(h-=Math.pow(2,8*i)),h},l.prototype.readIntBE=function(n,i,c){n=n>>>0,i=i>>>0,c||H(n,i,this.length);let h=i,y=1,m=this[n+--h];for(;h>0&&(y*=256);)m+=this[n+--h]*y;return y*=128,m>=y&&(m-=Math.pow(2,8*i)),m},l.prototype.readInt8=function(n,i){return n=n>>>0,i||H(n,1,this.length),this[n]&128?(255-this[n]+1)*-1:this[n]},l.prototype.readInt16LE=function(n,i){n=n>>>0,i||H(n,2,this.length);const c=this[n]|this[n+1]<<8;return c&32768?c|4294901760:c},l.prototype.readInt16BE=function(n,i){n=n>>>0,i||H(n,2,this.length);const c=this[n+1]|this[n]<<8;return c&32768?c|4294901760:c},l.prototype.readInt32LE=function(n,i){return n=n>>>0,i||H(n,4,this.length),this[n]|this[n+1]<<8|this[n+2]<<16|this[n+3]<<24},l.prototype.readInt32BE=function(n,i){return n=n>>>0,i||H(n,4,this.length),this[n]<<24|this[n+1]<<16|this[n+2]<<8|this[n+3]},l.prototype.readBigInt64LE=Re(function(n){n=n>>>0,pe(n,"offset");const i=this[n],c=this[n+7];(i===void 0||c===void 0)&&se(n,this.length-8);const h=this[n+4]+this[n+5]*2**8+this[n+6]*2**16+(c<<24);return(BigInt(h)<<BigInt(32))+BigInt(i+this[++n]*2**8+this[++n]*2**16+this[++n]*2**24)}),l.prototype.readBigInt64BE=Re(function(n){n=n>>>0,pe(n,"offset");const i=this[n],c=this[n+7];(i===void 0||c===void 0)&&se(n,this.length-8);const h=(i<<24)+this[++n]*2**16+this[++n]*2**8+this[++n];return(BigInt(h)<<BigInt(32))+BigInt(this[++n]*2**24+this[++n]*2**16+this[++n]*2**8+c)}),l.prototype.readFloatLE=function(n,i){return n=n>>>0,i||H(n,4,this.length),r.read(this,n,!0,23,4)},l.prototype.readFloatBE=function(n,i){return n=n>>>0,i||H(n,4,this.length),r.read(this,n,!1,23,4)},l.prototype.readDoubleLE=function(n,i){return n=n>>>0,i||H(n,8,this.length),r.read(this,n,!0,52,8)},l.prototype.readDoubleBE=function(n,i){return n=n>>>0,i||H(n,8,this.length),r.read(this,n,!1,52,8)};function d(a,n,i,c,h,y){if(!l.isBuffer(a))throw new TypeError('"buffer" argument must be a Buffer instance');if(n>h||n<y)throw new RangeError('"value" argument is out of bounds');if(i+c>a.length)throw new RangeError("Index out of range")}l.prototype.writeUintLE=l.prototype.writeUIntLE=function(n,i,c,h){if(n=+n,i=i>>>0,c=c>>>0,!h){const R=Math.pow(2,8*c)-1;d(this,n,i,c,R,0)}let y=1,m=0;for(this[i]=n&255;++m<c&&(y*=256);)this[i+m]=n/y&255;return i+c},l.prototype.writeUintBE=l.prototype.writeUIntBE=function(n,i,c,h){if(n=+n,i=i>>>0,c=c>>>0,!h){const R=Math.pow(2,8*c)-1;d(this,n,i,c,R,0)}let y=c-1,m=1;for(this[i+y]=n&255;--y>=0&&(m*=256);)this[i+y]=n/m&255;return i+c},l.prototype.writeUint8=l.prototype.writeUInt8=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,1,255,0),this[i]=n&255,i+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,2,65535,0),this[i]=n&255,this[i+1]=n>>>8,i+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,2,65535,0),this[i]=n>>>8,this[i+1]=n&255,i+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,4,4294967295,0),this[i+3]=n>>>24,this[i+2]=n>>>16,this[i+1]=n>>>8,this[i]=n&255,i+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,4,4294967295,0),this[i]=n>>>24,this[i+1]=n>>>16,this[i+2]=n>>>8,this[i+3]=n&255,i+4};function w(a,n,i,c,h){ge(n,c,h,a,i,7);let y=Number(n&BigInt(4294967295));a[i++]=y,y=y>>8,a[i++]=y,y=y>>8,a[i++]=y,y=y>>8,a[i++]=y;let m=Number(n>>BigInt(32)&BigInt(4294967295));return a[i++]=m,m=m>>8,a[i++]=m,m=m>>8,a[i++]=m,m=m>>8,a[i++]=m,i}function A(a,n,i,c,h){ge(n,c,h,a,i,7);let y=Number(n&BigInt(4294967295));a[i+7]=y,y=y>>8,a[i+6]=y,y=y>>8,a[i+5]=y,y=y>>8,a[i+4]=y;let m=Number(n>>BigInt(32)&BigInt(4294967295));return a[i+3]=m,m=m>>8,a[i+2]=m,m=m>>8,a[i+1]=m,m=m>>8,a[i]=m,i+8}l.prototype.writeBigUInt64LE=Re(function(n,i=0){return w(this,n,i,BigInt(0),BigInt("0xffffffffffffffff"))}),l.prototype.writeBigUInt64BE=Re(function(n,i=0){return A(this,n,i,BigInt(0),BigInt("0xffffffffffffffff"))}),l.prototype.writeIntLE=function(n,i,c,h){if(n=+n,i=i>>>0,!h){const W=Math.pow(2,8*c-1);d(this,n,i,c,W-1,-W)}let y=0,m=1,R=0;for(this[i]=n&255;++y<c&&(m*=256);)n<0&&R===0&&this[i+y-1]!==0&&(R=1),this[i+y]=(n/m>>0)-R&255;return i+c},l.prototype.writeIntBE=function(n,i,c,h){if(n=+n,i=i>>>0,!h){const W=Math.pow(2,8*c-1);d(this,n,i,c,W-1,-W)}let y=c-1,m=1,R=0;for(this[i+y]=n&255;--y>=0&&(m*=256);)n<0&&R===0&&this[i+y+1]!==0&&(R=1),this[i+y]=(n/m>>0)-R&255;return i+c},l.prototype.writeInt8=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,1,127,-128),n<0&&(n=255+n+1),this[i]=n&255,i+1},l.prototype.writeInt16LE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,2,32767,-32768),this[i]=n&255,this[i+1]=n>>>8,i+2},l.prototype.writeInt16BE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,2,32767,-32768),this[i]=n>>>8,this[i+1]=n&255,i+2},l.prototype.writeInt32LE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,4,2147483647,-2147483648),this[i]=n&255,this[i+1]=n>>>8,this[i+2]=n>>>16,this[i+3]=n>>>24,i+4},l.prototype.writeInt32BE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,4,2147483647,-2147483648),n<0&&(n=4294967295+n+1),this[i]=n>>>24,this[i+1]=n>>>16,this[i+2]=n>>>8,this[i+3]=n&255,i+4},l.prototype.writeBigInt64LE=Re(function(n,i=0){return w(this,n,i,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),l.prototype.writeBigInt64BE=Re(function(n,i=0){return A(this,n,i,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function C(a,n,i,c,h,y){if(i+c>a.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("Index out of range")}function D(a,n,i,c,h){return n=+n,i=i>>>0,h||C(a,n,i,4),r.write(a,n,i,c,23,4),i+4}l.prototype.writeFloatLE=function(n,i,c){return D(this,n,i,!0,c)},l.prototype.writeFloatBE=function(n,i,c){return D(this,n,i,!1,c)};function V(a,n,i,c,h){return n=+n,i=i>>>0,h||C(a,n,i,8),r.write(a,n,i,c,52,8),i+8}l.prototype.writeDoubleLE=function(n,i,c){return V(this,n,i,!0,c)},l.prototype.writeDoubleBE=function(n,i,c){return V(this,n,i,!1,c)},l.prototype.copy=function(n,i,c,h){if(!l.isBuffer(n))throw new TypeError("argument should be a Buffer");if(c||(c=0),!h&&h!==0&&(h=this.length),i>=n.length&&(i=n.length),i||(i=0),h>0&&h<c&&(h=c),h===c||n.length===0||this.length===0)return 0;if(i<0)throw new RangeError("targetStart out of bounds");if(c<0||c>=this.length)throw new RangeError("Index out of range");if(h<0)throw new RangeError("sourceEnd out of bounds");h>this.length&&(h=this.length),n.length-i<h-c&&(h=n.length-i+c);const y=h-c;return this===n&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(i,c,h):Uint8Array.prototype.set.call(n,this.subarray(c,h),i),y},l.prototype.fill=function(n,i,c,h){if(typeof n=="string"){if(typeof i=="string"?(h=i,i=0,c=this.length):typeof c=="string"&&(h=c,c=this.length),h!==void 0&&typeof h!="string")throw new TypeError("encoding must be a string");if(typeof h=="string"&&!l.isEncoding(h))throw new TypeError("Unknown encoding: "+h);if(n.length===1){const m=n.charCodeAt(0);(h==="utf8"&&m<128||h==="latin1")&&(n=m)}}else typeof n=="number"?n=n&255:typeof n=="boolean"&&(n=Number(n));if(i<0||this.length<i||this.length<c)throw new RangeError("Out of range index");if(c<=i)return this;i=i>>>0,c=c===void 0?this.length:c>>>0,n||(n=0);let y;if(typeof n=="number")for(y=i;y<c;++y)this[y]=n;else{const m=l.isBuffer(n)?n:l.from(n,h),R=m.length;if(R===0)throw new TypeError('The value "'+n+'" is invalid for argument "value"');for(y=0;y<c-i;++y)this[y+i]=m[y%R]}return this};const B={};function L(a,n,i){B[a]=class extends i{constructor(){super(),Object.defineProperty(this,"message",{value:n.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${a}]`,this.stack,delete this.name}get code(){return a}set code(h){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:h,writable:!0})}toString(){return`${this.name} [${a}]: ${this.message}`}}}L("ERR_BUFFER_OUT_OF_BOUNDS",function(a){return a?`${a} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),L("ERR_INVALID_ARG_TYPE",function(a,n){return`The "${a}" argument must be of type number. Received type ${typeof n}`},TypeError),L("ERR_OUT_OF_RANGE",function(a,n,i){let c=`The value of "${a}" is out of range.`,h=i;return Number.isInteger(i)&&Math.abs(i)>2**32?h=M(String(i)):typeof i=="bigint"&&(h=String(i),(i>BigInt(2)**BigInt(32)||i<-(BigInt(2)**BigInt(32)))&&(h=M(h)),h+="n"),c+=` It must be ${n}. Received ${h}`,c},RangeError);function M(a){let n="",i=a.length;const c=a[0]==="-"?1:0;for(;i>=c+4;i-=3)n=`_${a.slice(i-3,i)}${n}`;return`${a.slice(0,i)}${n}`}function te(a,n,i){pe(n,"offset"),(a[n]===void 0||a[n+i]===void 0)&&se(n,a.length-(i+1))}function ge(a,n,i,c,h,y){if(a>i||a<n){const m=typeof n=="bigint"?"n":"";let R;throw y>3?n===0||n===BigInt(0)?R=`>= 0${m} and < 2${m} ** ${(y+1)*8}${m}`:R=`>= -(2${m} ** ${(y+1)*8-1}${m}) and < 2 ** ${(y+1)*8-1}${m}`:R=`>= ${n}${m} and <= ${i}${m}`,new B.ERR_OUT_OF_RANGE("value",R,a)}te(c,h,y)}function pe(a,n){if(typeof a!="number")throw new B.ERR_INVALID_ARG_TYPE(n,"number",a)}function se(a,n,i){throw Math.floor(a)!==a?(pe(a,i),new B.ERR_OUT_OF_RANGE(i||"offset","an integer",a)):n<0?new B.ERR_BUFFER_OUT_OF_BOUNDS:new B.ERR_OUT_OF_RANGE(i||"offset",`>= ${i?1:0} and <= ${n}`,a)}const qe=/[^+/0-9A-Za-z-_]/g;function ht(a){if(a=a.split("=")[0],a=a.trim().replace(qe,""),a.length<2)return"";for(;a.length%4!==0;)a=a+"=";return a}function ot(a,n){n=n||1/0;let i;const c=a.length;let h=null;const y=[];for(let m=0;m<c;++m){if(i=a.charCodeAt(m),i>55295&&i<57344){if(!h){if(i>56319){(n-=3)>-1&&y.push(239,191,189);continue}else if(m+1===c){(n-=3)>-1&&y.push(239,191,189);continue}h=i;continue}if(i<56320){(n-=3)>-1&&y.push(239,191,189),h=i;continue}i=(h-55296<<10|i-56320)+65536}else h&&(n-=3)>-1&&y.push(239,191,189);if(h=null,i<128){if((n-=1)<0)break;y.push(i)}else if(i<2048){if((n-=2)<0)break;y.push(i>>6|192,i&63|128)}else if(i<65536){if((n-=3)<0)break;y.push(i>>12|224,i>>6&63|128,i&63|128)}else if(i<1114112){if((n-=4)<0)break;y.push(i>>18|240,i>>12&63|128,i>>6&63|128,i&63|128)}else throw new Error("Invalid code point")}return y}function Pt(a){const n=[];for(let i=0;i<a.length;++i)n.push(a.charCodeAt(i)&255);return n}function S(a,n){let i,c,h;const y=[];for(let m=0;m<a.length&&!((n-=2)<0);++m)i=a.charCodeAt(m),c=i>>8,h=i%256,y.push(h),y.push(c);return y}function pt(a){return e.toByteArray(ht(a))}function st(a,n,i,c){let h;for(h=0;h<c&&!(h+i>=n.length||h>=a.length);++h)n[h+i]=a[h];return h}function me(a,n){return a instanceof n||a!=null&&a.constructor!=null&&a.constructor.name!=null&&a.constructor.name===n.name}function Rt(a){return a!==a}const jn=function(){const a="0123456789abcdef",n=new Array(256);for(let i=0;i<16;++i){const c=i*16;for(let h=0;h<16;++h)n[c+h]=a[i]+a[h]}return n}();function Re(a){return typeof BigInt>"u"?Dn:a}function Dn(){throw new Error("BigInt not supported")}})(Jr);var Xr={exports:{}},Y=Xr.exports={},be,we;function Xt(){throw new Error("setTimeout has not been defined")}function Zt(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?be=setTimeout:be=Xt}catch{be=Xt}try{typeof clearTimeout=="function"?we=clearTimeout:we=Zt}catch{we=Zt}})();function Zr(t){if(be===setTimeout)return setTimeout(t,0);if((be===Xt||!be)&&setTimeout)return be=setTimeout,setTimeout(t,0);try{return be(t,0)}catch{try{return be.call(null,t,0)}catch{return be.call(this,t,0)}}}function ei(t){if(we===clearTimeout)return clearTimeout(t);if((we===Zt||!we)&&clearTimeout)return we=clearTimeout,clearTimeout(t);try{return we(t)}catch{try{return we.call(null,t)}catch{return we.call(this,t)}}}var _e=[],Je=!1,Le,dt=-1;function ti(){!Je||!Le||(Je=!1,Le.length?_e=Le.concat(_e):dt=-1,_e.length&&en())}function en(){if(!Je){var t=Zr(ti);Je=!0;for(var e=_e.length;e;){for(Le=_e,_e=[];++dt<e;)Le&&Le[dt].run();dt=-1,e=_e.length}Le=null,Je=!1,ei(t)}}Y.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];_e.push(new tn(t,e)),_e.length===1&&!Je&&Zr(en)};function tn(t,e){this.fun=t,this.array=e}tn.prototype.run=function(){this.fun.apply(null,this.array)};Y.title="browser";Y.browser=!0;Y.env={};Y.argv=[];Y.version="";Y.versions={};function Ce(){}Y.on=Ce;Y.addListener=Ce;Y.once=Ce;Y.off=Ce;Y.removeListener=Ce;Y.removeAllListeners=Ce;Y.emit=Ce;Y.prependListener=Ce;Y.prependOnceListener=Ce;Y.listeners=function(t){return[]};Y.binding=function(t){throw new Error("process.binding is not supported")};Y.cwd=function(){return"/"};Y.chdir=function(t){throw new Error("process.chdir is not supported")};Y.umask=function(){return 0};var ri=Xr.exports;(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const e=Jr,r=ri,o=f=>f&&f.__esModule?f:{default:f},s=o(r),u=globalThis||void 0||self;Object.defineProperty(t,"Buffer",{enumerable:!0,get:()=>e.Buffer}),Object.defineProperty(t,"process",{enumerable:!0,get:()=>s.default}),t.global=u})(O);class ni{}window.slStore=Object.create(null);class Ot{store;name;constructor(e,r){this.store=e,this.name=r}getStore(){return this.store}}const ii=t=>{const e=Object.keys(t);return Me.computed(e.map(r=>t[r].getStore()),(...r)=>Object.fromEntries(e.map((o,s)=>[o,r[s]])))};class ut extends Ot{getValues=()=>this.getStore().get();getValue=e=>this.getStore().get()[e];setValue=(e,r)=>this.getStore().setKey(e,r);subscribe=(...e)=>this.getStore().subscribe(...e);unsubscribe=()=>this.getStore().off()}const Ue=t=>Me.map(t);var Te;(function(t){t.ORGANIZATION="ORGANIZATION",t.STREAM="STREAM"})(Te||(Te={}));const oi={[ce.SdkOverlayType.BETTING]:"betting",[ce.SdkOverlayType.GAMES]:"games",[ce.SdkOverlayType.PUBLIC_CHAT]:"publicChat",[ce.SdkOverlayType.TWITTER]:"twitter"};var $e;(function(t){t.Ready="ready",t.Suspended="suspended"})($e||($e={}));class fr{status;source;config;settings;listeners=new Set;settingsKey;constructor({settings:e,...r},o){this.settingsKey=oi[r.type],this.status=Me.atom($e.Suspended),this.config=new ut(Ue(r),`feature:config:${this.settingsKey}`),this.settingsKey!==void 0&&e?.overlaySettings.case===this.settingsKey?this.settings=new ut(Ue(e.overlaySettings.value),`feature:settings:${this.settingsKey}`):this.settings=new ut(Ue({}),`feature:settings:${this.settingsKey}`),this.source=o}get featureConfig(){return this.config.getStore()}get featureSettings(){return this.settings.getStore()}registerEventListener(e){this.listeners.add(e)}enable=()=>{this.status.set($e.Ready)};disable=()=>{this.status.set($e.Suspended)};setFeatureConfig=({settings:e,...r})=>{let o;for(o in r)this.config.setValue(o,r[o]);if(e?.overlaySettings.case===this.settingsKey){const s=e.overlaySettings.value;if(s!==void 0){let u;for(u in s)console.log(u,s[u]),s[u]!==0&&s[u]!==""&&this.settings.setValue(u,s[u])}}};update=(e,r)=>{this.source===Te.STREAM&&r===Te.ORGANIZATION||(this.setFeatureConfig(e),this.source=r)};fireEvent(e){for(const r of this.listeners.values())try{r.onEvent(e)}catch(o){console.error(o)}}}class ye extends Ot{getValue=()=>this.getStore().get();getValues(){throw new Error("not implemented")}setValue=e=>this.getStore().set(e);subscribe=e=>this.getStore().subscribe(e);unsubscribe=()=>this.getStore().off();listen(e){return this.getStore().listen(e)}get(){return this.getStore().get()}}const ne=t=>Me.atom(t);class de extends Ot{atomStore;constructor(e,r,o){super(e,`api:${r}`),this.atomStore=Me.atom(),o&&e.subscribe(s=>{this.atomStore.set(o(s))})}getAtomStore=()=>this.atomStore;getValue=async()=>{const e=this.getStore();if(e.value===void 0)throw new Error("no store");return await e.value.promise,e.get().data};getValues=()=>{throw new Error("not implemented")};setValue=e=>this.getStore().set({loading:!1,data:e?.data});subscribe=e=>this.getStore().subscribe(e);unsubscribe=()=>{throw new Error("not implemented")};invalidate=()=>{this.store.invalidate()};listen=e=>this.getStore().listen(e);get(){throw new Error("not implemented")}key=()=>this.getStore().key;off=()=>this.getStore().off()}async function*si(t,e){for await(const r of e){t.response.message=r,t.received_at=Date.now();const o={type:"__GRPC_DEVTOOLS_EXTENSION__",data:t};window.postMessage(o),yield r}}const ai=()=>t=>async e=>{const r={name:e.url,request:{},response:{}};r.request.header=Object.fromEntries(e.header.entries()),r.sent_at=Date.now();try{const o=await t(e);if(r.received_at=Date.now(),r.stream=o.stream,r.response.header=Object.fromEntries(o.header.entries()),r.response.trailer=Object.fromEntries(o.trailer.entries()),o.stream)return{...o,message:si(r,o.message)};{r.request.message=e.message,r.response.message=o.message,r.latency=r.received_at-r.sent_at;const s={type:"__GRPC_DEVTOOLS_EXTENSION__",data:r};window.postMessage(s)}return o}catch(o){r.received_at=Date.now(),r.request.message=e.message,r.response.trailer={"grpc-status":o.code,"grpc-message":o.rawMessage},r.response.message=o.rawMessage,r.latency=r.received_at-r.sent_at;const s={type:"__GRPC_DEVTOOLS_EXTENSION__",data:r};throw window.postMessage(s),o}};window.dispatchEvent(new CustomEvent("grpc_devtools_loaded"));var Ee;(function(t){t.Init="init",t.Ready="ready",t.Connecting="connecting",t.Connected="connected",t.Disconnected="disconnected",t.Failed="failed",t.Reconnecting="reconnecting"})(Ee||(Ee={}));class ui{params;stream;method;name;headers;listeners;state;store;constructor(e,r,o,s){const u={status:Ee.Init,ts:new Date,log:[]};this.state=new ut(Ue(u),`subscription:${s.name}:state`),this.name=s.name,this.headers=e,this.listeners=new Map,this.params=o,this.method=r,s.withStore&&(this.store=new ye(ne(null),`subscription:${s.name}:store`)),"subscribe"in o&&typeof o.subscribe=="function"&&o.subscribe(()=>{this.reconnect()}),this.updateState(Ee.Ready)}updateState=e=>{this.state.setValue("status",e),this.state.setValue("ts",new Date),this.addStateLog(`status => ${e}`)};addStateLog=e=>{const r=this.state.getStore().get().log;this.state.setValue("log",[...r,`${new Date().toLocaleString()}: ${e}`])};addListener=(e,r)=>this.listeners.has(e)?(this.addStateLog(`listener '${e}' not added`),!1):(this.listeners.set(e,r),this.addStateLog(`listener '${e}' added`),!0);removeListener=e=>{this.listeners.delete(e),this.addStateLog(`listener '${e}' removed`)};connect=()=>{this.updateState(Ee.Connecting),this.stream&&(this.addStateLog("disconnect prev connection"),this.stream());const e="get"in this.params&&typeof this.params.get=="function"?this.params.get():this.params;this.stream=this.method(e,this.onData,this.onStreamError,{headers:this.headers.getValues()}),this.updateState(Ee.Connected)};disconnect=()=>{this.stream&&this.stream(),this.listeners.clear(),this.updateState(Ee.Disconnected)};reconnect=()=>{this.updateState(Ee.Reconnecting),this.connect()};getStore=()=>this.store?.getStore();onData=e=>{this.addStateLog(`received data => ${JSON.stringify(e)}`),this.store&&this.store.setValue(e);for(const[,r]of this.listeners)r(e);this.addStateLog(`data routed to ${this.listeners.size} listeners`)};onStreamError=e=>{e!==void 0&&(e.code!==Yt.Code.Canceled&&e.rawMessage!=="[canceled] BodyStreamBuffer was aborted"?(this.updateState(Ee.Failed),this.state.setValue("error",e)):this.disconnect())}}class ci{toJsonOptions={emitDefaultValues:!1,enumAsInteger:!0,useProtoFieldName:!1};transport;nanoquery;host;interceptors=[];$headers;clients;callbackClients;subscriptions;constructor(e){this.host=e,this.$headers=new ut(Ue({"sl-device-id":O.process?.env?.NX_DEVICE_ID||"sdk-web-dev"}),"transport:headers"),this.initInterceptors(),this.clients=new Map,this.callbackClients=new Map,this.subscriptions=new Map;const[r,o,s]=Mn.nanoquery();this.nanoquery={createFetcherStore:r,createMutatorStore:o,utils:s},this.transport=Vn.createGrpcWebTransport({baseUrl:e,interceptors:this.interceptors,useBinaryFormat:!0})}addSubscription=(e,r,o)=>{const s=this.subscriptions.get(r);if(s)return s;const u=new ui(this.$headers,e,r,o);return this.subscriptions.set(r,u),u};removeSubscription=e=>{e.disconnect(),this.subscriptions.delete(e.params)};disconnect=()=>{for(const[e,r]of this.subscriptions)r.disconnect(),this.subscriptions.delete(e)};registerInterceptor=e=>{this.interceptors.push(e)};removeInterceptor=e=>{this.interceptors=this.interceptors.filter(r=>r!==e)};getClient=e=>{const r=e.typeName;if(this.clients.has(r))return this.clients.get(r);const o=Yt.createPromiseClient(e,this.transport);return this.clients.set(r,o),o};getCallbackClient=e=>{const r=e.typeName;if(this.callbackClients.has(r))return this.callbackClients.get(r);const o=Yt.createCallbackClient(e,this.transport);return this.callbackClients.set(r,o),o};createPromiseClient=(e,{params:r=[],method:o})=>{const s=this.getClient(e),u=e.methods[o].name,f=[e.typeName,u.charAt(0).toLowerCase()+u.slice(1),...Array.isArray(r)?r:[r]],l=[e.typeName,u.charAt(0).toLowerCase()+u.slice(1)];return{client:s,queryKey:f,queryKeyStr:l.join("")}};createCallbackClient=e=>({client:this.getCallbackClient(e)});setSdkKey=e=>{this.$headers.setValue("sdk",e)};setAuth=(e,r)=>{this.$headers.setValue("authorization",e),this.$headers.setValue("sl-user-id",r)};setHeader=(e,r)=>this.$headers.setValue(e,r);getHeader=e=>this.$headers.getValue(e);getHeaders=()=>this.$headers.getValues();initInterceptors=()=>{if(this.interceptors.length!==0)return;const e=r=>o=>{const s=this.$headers.getValues();for(const u in s)o.header.set(u,s[u]);return r(o)};this.interceptors.push(e),this.interceptors.push(ai())}}const li=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(qn.Events,{method:"retrieveEventId",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>{if(!f||typeof f!="string")return"";try{return(await r.retrieveEventId({id:f})).data?.id||""}catch{return""}}})},fi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(_t.Client,{method:"getStream",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>f?(await r.getStream({id:f})).data?.attributes:void 0})},hi=(t,e)=>{const{queryKey:r,client:o}=e.createPromiseClient(Kr.Users,{method:"me",params:[t]});return e.nanoquery.createFetcherStore(r,{fetcher:()=>o.me({})})},pi=t=>{const{client:e}=t.createPromiseClient(Kr.Users,{method:"bypassAuth"});return({userKey:r,schema:o,init:s})=>e.bypassAuth({userKey:r,schema:o,init:s})},di=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(_t.Client,{method:"get",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async()=>(await r.get({})).data?.attributes})},yi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(_t.Client,{method:"getOrganization",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async()=>{const s=await r.getOrganization({});return s.data?{...s.data.attributes,id:s.data.id}:void 0}})},gi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(_t.Client,{method:"getOrganizationAdvertising",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async()=>(await r.getOrganizationAdvertising({})).data?.attributes})},mi=(t,e,r)=>{t.transport=new ci(e.host),t.sdk.host=t.transport.host,t.transport.setSdkKey(e.sdkKey),r()};class hr{delimiter=":";prefix;constructor(e="main"){this.prefix=`sl-sdk${this.delimiter}${e}`}clear=()=>{for(const e in window.localStorage)e.startsWith(this.prefix)&&window.localStorage.removeItem(e)};generateKey=e=>`${this.prefix}${this.delimiter}${e.join(this.delimiter)}`;write=(...e)=>{const r=e.pop()||"";window.localStorage.setItem(this.generateKey(e),r)};read=(...e)=>{const r=window.localStorage.getItem(this.generateKey(e));return r===null?void 0:r};remove=(...e)=>{window.localStorage.removeItem(this.generateKey(e))}}var Ie;(function(t){t.SCHEMA="schema",t.EXTERNAL_TOKEN="eToken",t.TOKEN="token"})(Ie||(Ie={}));class He extends hr{constructor(){super("user")}setSchema=e=>{this.write(Ie.SCHEMA,e)};getSchema=()=>this.read(Ie.SCHEMA);setToken=e=>{this.write(Ie.TOKEN,e)};getToken=()=>this.read(Ie.TOKEN);setExternalToken=e=>{this.write(Ie.EXTERNAL_TOKEN,e)};getExternalToken=()=>this.read(Ie.EXTERNAL_TOKEN);removeToken=()=>{this.remove(Ie.TOKEN)}}var Fe;(function(t){t.DISABLED="disabled",t.INITIALIZATION="initialization",t.READY="ready",t.FAILED="failed",t.SUSPENDED="suspended"})(Fe||(Fe={}));const bi=t=>{const e=new He,r=new ye(ne(e.getExternalToken()),"userKey"),o=new ye(ne(e.getToken()),"userToken"),s=new de(hi(o.getStore(),t),"user",f=>f?.data?.data?.id),u=new de(di(o.getStore(),t),"userSettings");return{userKey:r,userToken:o,user:s,userSettings:u}},wi=t=>{const e=new ye(ne(void 0),"providerStreamId"),r=new de(li(e.getStore(),t),"slStreamId",s=>s?.data),o=new de(fi(r.getAtomStore(),t),"streamSettings");return r.getAtomStore().listen(s=>{(s===""||s===void 0)&&o.getStore().mutate(void 0)}),{providerStreamId:e,slStreamId:r,streamSettings:o}},vi=t=>{const e=new ye(ne(void 0),"enabled"),r=new ye(ne(Fe.DISABLED),"status"),o=new de(yi(e.getStore(),t),"organizationSettings",l=>l?.data?.id),s=new de(gi(o.getAtomStore(),t),"organizationAdvertising"),u=bi(t),f=wi(t);return{enabled:e,status:r,providerStreamId:f.providerStreamId,slStreamId:f.slStreamId,streamSettings:f.streamSettings,user:u.user,userKey:u.userKey,userToken:u.userToken,userSettings:u.userSettings,organizationSettings:o,organizationAdvertising:s}};class Si extends Ot{stores;constructor(e){const r=vi(e),o=ii(r);super(o,"core"),this.stores=r}getValue(){throw new Error("Not implemented")}getValues(){return this.stores}setValue(){throw new Error("Not implemented")}subscribe=e=>{let r;for(r in this.stores){const o=e[r];r in e&&o!==void 0&&this.stores[r].subscribe(e[r])}};unsubscribe=()=>this.getStore().off()}class Ai extends ni{$coreStore;transport;bypassLogin;constructor(e,r){super(),this.$coreStore=e,this.transport=r,this.bypassLogin=pi(this.transport),this.connect()}me=async()=>(this.$coreStore.getValues().user.invalidate(),(await this.$coreStore.getValues().user.getValue())?.data);login=async(e,r)=>{this.$coreStore.getValues().userKey.setValue(r);const o=await this.bypassLogin({schema:e,userKey:r,init:!1}),s=o.meta?.jwt,u=o.data?.id;if(!s||!u)throw new Error("internal: token missing");return this.$coreStore.getValues().user.getStore().mutate(o),this.saveUser(s,u),s};isAuthenticated=()=>this.me();logout=()=>{this.$coreStore.getValues().user.setValue(),this.$coreStore.getValues().userKey.setValue(),this.$coreStore.getValues().userToken.setValue(),this.transport.setAuth("",""),new He().clear()};softLogout=()=>{const e=new He;this.$coreStore.getValues().user.setValue(),this.$coreStore.getValues().userToken.setValue(),this.transport.setAuth("",""),e.setToken(""),this.reLogin()};reLogin=()=>{const e=new He,r=e.getToken(),o=e.getExternalToken();if(this.$coreStore.getValues().userKey.setValue(o),this.$coreStore.getValues().userToken.setValue(r),r)return this.saveUser(r,""),this.me().then(s=>{if(console.log("user",s),s?.id){const u=s.id;this.saveUser(r,u)}});if(o&&!r){const s=e.getSchema();s&&o&&this.login(s,o).catch(()=>{this.logout()})}};saveUser=(e,r)=>{this.transport.setAuth(e,r),this.$coreStore.getValues().userToken.setValue(e),new He().setToken(e)};connect=()=>{this.transport.registerInterceptor(e=>async r=>{try{return await e(r)}catch(o){throw o.code&&(o.code===7||o.code===16)&&this.transport.getHeader("authorization")&&this.softLogout(),o}})}}const at=new He,Ei=(t,e,r)=>{t.auth=new Ai(t.store,t.transport),t.stores.status.listen(o=>{o===Fe.READY&&t.auth.reLogin()}),t.sdk.authorizationBypass=async(o,s)=>{at.getSchema()===o&&at.getExternalToken()===s&&t.transport.getHeader("authorization")||(await t.auth.login(o,s),at.setSchema(o),at.setExternalToken(s))},t.sdk.logout=()=>{t.auth.logout(),at.clear()},t.sdk.getUserStore=()=>t.stores.user.getStore(),t.sdk.isUserAuthorized=()=>t.auth.isAuthenticated(),r()},Ii=(t,e,r)=>{t.store=new Si(t.transport),t.stores=t.store.getValues(),t.sdk.enabled=t.stores.enabled.getStore(),t.sdk.status=t.stores.status.getStore(),t.sdk.sdkStore=t.store.getStore(),t.sdk.organizationStore=()=>t.stores.organizationSettings.getStore(),t.sdk.streamStore=()=>t.stores.streamSettings.getStore(),t.storeUnsubscribe=()=>{t.store.unsubscribe()},r()},Ti=(t,e,r)=>{t.sdk=Object.create(null),t.sdk.initializeApp=async()=>{if(t.stores.enabled.get()==="on")return{enabled:!0};t.storeSubscribe(),t.stores.enabled.setValue("on"),t.stores.status.setValue(Fe.INITIALIZATION);try{const o=await t.stores.organizationSettings.getValue();return o?(t.stores.status.setValue(Fe.READY),{enabled:!!o}):(t.stores.status.setValue(Fe.FAILED),{err:"failed"})}catch(o){return t.stores.enabled.setValue(),t.stores.status.setValue(Fe.FAILED),{err:`${o}`}}},t.sdk.disableApp=()=>{t.stores.enabled.get()==="on"&&(t.stores.enabled.setValue(),t.stores.status.setValue(Fe.DISABLED),t.storeUnsubscribe())},t.sdk.createEventSession=o=>{t.stores.providerStreamId.setValue(o)},r()},Fi=Qn.pino({level:"trace"}),rn=(t,e)=>Fi.child({name:t},e),_i=(t,e,r)=>{const{client:o,queryKey:s}=r.createPromiseClient(Hr.Leaderboard,{method:"summary",params:[t,e]});return r.nanoquery.createFetcherStore(s,{fetcher:async(u,f,l,p)=>(await o.summary({eventId:l,userId:p})).data?.attributes})},Ci=t=>{const{client:e}=t.createPromiseClient(Hr.Leaderboard,{method:"list"});return r=>e.list(r)},Oi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(Se.Feed,{method:"get",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>(await r.get({eventId:f})).data?.attributes})},xi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(Se.Feed,{method:"syncQuestion",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>f?(await r.syncQuestion({filter:{eventId:f}})).data?.attributes:void 0})},Bi=(t,e)=>{const{client:r}=e.createCallbackClient(Se.Feed),o=Me.atom({eventId:t.get()||"",feedId:""});return t.subscribe((u="")=>{o.set({eventId:u,feedId:""})}),e.addSubscription(r.subscription,o,{name:"feedSubscription"})},ki=(t,e)=>{const{client:r}=e.createCallbackClient(Se.Feed);return e.addSubscription(r.questionSubscription,{questionId:t},{name:"questionSubscription"})},nn=async(t,e)=>{const{client:r}=e.createPromiseClient(Se.Feed,{method:"questionByUser",params:[t]});return(await r.questionByUser({questionId:t})).data?.attributes?.question},Pi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(Se.Feed,{method:"list",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>f?(await r.list({eventId:f})).data:[]})},Ri=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(Se.Feed,{method:"insightHistory",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>f?(await r.insightHistory({eventId:f})).data?.map(({attributes:p})=>p):void 0})};var pr={exports:{}};const Ni=Object.getPrototypeOf({});function dr(t){function e(I){return I!=="constructor"&&I!=="prototype"&&I!=="__proto__"}function r(I){let _=0;const j=I.length,U=new Array(j);for(_=0;_<j;++_)U[_]=T(I[_]);return U}function o(I){const _={};if(p&&Object.getPrototypeOf(I)!==Ni)return p(I);const j=l(I);let U,F,x;for(U=0,F=j.length;U<F;++U)e(x=j[U])&&(_[x]=T(I[x]));return _}function s(I,_){const j=I.length,U=_.length;let F=0;const x=new Array(j+U);for(F=0;F<j;++F)x[F]=T(I[F]);for(F=0;F<U;++F)x[F+j]=T(_[F]);return x}const u=Object.prototype.propertyIsEnumerable;function f(I){const _=Object.keys(I),j=Object.getOwnPropertySymbols(I);for(let U=0,F=j.length;U<F;++U)u.call(I,j[U])&&_.push(j[U]);return _}const l=t&&t.symbols?f:Object.keys,p=typeof t?.cloneProtoObject=="function"?t.cloneProtoObject:void 0;function v(I){return typeof I=="object"&&I!==null&&!(I instanceof RegExp)&&!(I instanceof Date)}function g(I){return typeof I!="object"||I===null}const b=typeof O.Buffer<"u"?I=>typeof I!="object"||I===null||I instanceof RegExp||I instanceof Date||I instanceof O.Buffer:I=>typeof I!="object"||I===null||I instanceof RegExp||I instanceof Date,E=t&&typeof t.mergeArray=="function"?t.mergeArray({clone:T,deepmerge:P,getKeys:l,isMergeableObject:v}):s;function T(I){return v(I)?Array.isArray(I)?r(I):o(I):I}function N(I,_){const j={},U=l(I),F=l(_);let x,k,G;for(x=0,k=U.length;x<k;++x)e(G=U[x])&&F.indexOf(G)===-1&&(j[G]=T(I[G]));for(x=0,k=F.length;x<k;++x)e(G=F[x])&&(G in I&&(U.indexOf(G)!==-1&&(j[G]=P(I[G],_[G])),!0)||(j[G]=T(_[G])));return j}function P(I,_){const j=Array.isArray(_),U=Array.isArray(I);return g(_)?_:b(I)?T(_):j&&U?E(I,_):j!==U?T(_):N(I,_)}function K(){switch(arguments.length){case 0:return{};case 1:return T(arguments[0]);case 2:return P(arguments[0],arguments[1])}let I;for(let _=0,j=arguments.length;_<j;++_)I=P(I,arguments[_]);return I}return t&&t.all?K:P}pr.exports=dr;pr.exports.default=dr;var Li=pr.exports.deepmerge=dr;const Ui=t=>(e,r)=>{let o=0;const s=e.length,u=r.length,f=Math.max(s,u),l=new Array(f);for(o=0;o<f;++o)o<u?l[o]=t.deepmerge(e[o],r[o]):l[o]=t.clone(e[o]);return l},$i=Li({mergeArray:Ui}),ji=(t,e,r)=>{const o=Me.computed([e,r],(f,l)=>{if(f&&l.data)return l.data.find(p=>p.id===f)}),s=Ue({data:void 0,loading:void 0,error:void 0});return o.subscribe(async f=>{if(f&&f.type==="question"){s.setKey("loading",!0);const l=await nn(f.id,t);s.set({data:l,loading:!1});return}s.set({data:void 0,loading:!1})}),{$store:o,$extendedStore:s,updateExtendedQuestion:f=>{const l=s.get().data;if(l)for(const p of f?.answers||[])p.youVoted!==!0&&delete p.youVoted;s.set({data:$i(l,f)})}}},on=t=>(t.gamification||(t.gamification=new Di(t)),t.gamification);class Di{slStreamId;organizationId;userId;openedQuestionId;openedQuestion;activeQuestionId;feedList;moderationId;moderation;feedSubscription;questionSubscription;notifications;log;constructor(e){if(e.gamification)throw new Error("GamificationBackground Singleton error");this.log=rn("gamification-background"),this.slStreamId=e.stores.slStreamId.getAtomStore(),this.organizationId=e.stores.organizationSettings.getAtomStore(),this.userId=e.stores.user.getAtomStore(),this.moderationId=new ye(ne(void 0),"moderationId").getStore(),this.openedQuestionId=new ye(ne(void 0),"openedQuestionId").getStore(),this.notifications=e.notifications,this.moderation=new de(Oi(this.slStreamId,e.transport),"gamification:moderation"),this.feedList=new de(Pi(this.slStreamId,e.transport),"gamification:feedList"),this.activeQuestionId=new de(xi(this.slStreamId,e.transport),"gamification:activeQuestionId"),this.openedQuestion=ji(e.transport,this.openedQuestionId,this.feedList.getStore()),this.openedQuestionId.listen(r=>{this.log.debug({questionId:r},"received question"),r?(this.questionSubscription=ki(r,e.transport),this.questionSubscription.addListener("feed-subscription-opened-question",o=>{window.requestAnimationFrame(()=>{this.openedQuestion.updateExtendedQuestion(o.data?.attributes?.question)})}),this.questionSubscription.connect()):(this.log.info("cleanup on close question"),this.questionSubscription!==void 0&&(e.transport.removeSubscription(this.questionSubscription),this.questionSubscription=void 0))}),this.feedSubscription=Bi(this.slStreamId,e.transport),this.feedSubscription.addListener("feed-subscription-active-question",r=>{window.requestAnimationFrame(()=>{const o=this.activeQuestionId.getStore();o&&o.mutate(r.data?.attributes)})})}getCurrentSessionId=e=>{const r=e.eventId||this.slStreamId.get()||"",o=e.userId||this.userId.get()||"",s=e.organizationId||this.organizationId.get()||"",u=e.entity||"",f=e.prefix||"";return[s,r,o,f,u].join(":")};disconnect=()=>{this.feedSubscription?.disconnect()};openQuestion=e=>{this.openedQuestionId.set(e),this.notifications.markAsViewed(this.getCurrentSessionId({prefix:"notification",entity:e}))};closeQuestion=e=>{this.openedQuestionId.set(void 0),e&&this.notifications.markAsViewed(this.getCurrentSessionId({prefix:"notification",entity:e}))}}class Vi{notificationsList;notifications;store;timeouts;waitingQueue;activeQueue;options;logger;constructor(e){this.options=e,this.logger=rn("notifications"),this.store=new Map,this.timeouts=new Map,this.waitingQueue=new Set,this.activeQueue=new Set,this.notifications=new ye(ne(new Map),"notifications-queue"),this.notificationsList=this.notifications.getStore()}addToQueue=e=>{if(this.store.has(e.id)){this.logger.debug({notification:e},"skip existed notification: %o");return}const r=e.close,o=e.action;this.store.set(e.id,{...e,close:(...s)=>{r&&r(...s),this.closeNotification(e.id)},action:(...s)=>{o&&o(...s),this.closeNotification(e.id)}}),this.waitingQueue.add(e.id),this.logger.debug({notification:e},"notification added to waiting queue"),this.tickWaitingQueue()};tickWaitingQueue=()=>{if(this.activeQueue.size<this.options.concurrency){const[e]=this.waitingQueue;if(!e)return;this.activeQueue.add(e),this.waitingQueue.delete(e),this.logger.debug({job:e},"waiting queue tick"),this.tickActiveQueue(e)}else this.logger.debug({queueSize:this.activeQueue.size,concurrency:this.options.concurrency},"waiting queue tick skipped")};tickActiveQueue=e=>{if(!e)return;const r=this.store.get(e);if(!r){this.logger.debug({notificationId:e},"active queue tick skipped, notification not exist");return}const o=setTimeout(()=>{const s=e,u=new Map(this.notifications.getValue());u.set(r.id,r),this.notifications.setValue(u);const f=setTimeout(()=>{this.logger.debug({notificationId:s,delay:r.autoHideDuration||5e3},"notification hiding by autoHideDuration"),this.closeNotification(s)},r.autoHideDuration||5e3);this.timeouts.set(s,f),this.logger.debug({notificationId:s,queue:[...u.values()]},"notification displayed")},r.delay||0);this.timeouts.set(e,o),this.logger.debug({notificationId:e},"active queue tick completed"),this.tickWaitingQueue()};closeNotification=e=>{const r=new Map(this.notifications.getValue()),o=r.get(e);if(o){o.hiding=!0,this.notifications.setValue(r);const s=setTimeout(()=>{const u=new Map(this.notifications.getValue());u.delete(e),this.notifications.setValue(u);const f=this.timeouts.get(e);f!==void 0&&(clearTimeout(f),this.timeouts.delete(e)),this.logger.debug({notificationId:e},"notification hidden")},this.options.animationDelay||0);this.timeouts.set(e,s)}this.store.delete(e),this.activeQueue.delete(e),this.waitingQueue.delete(e),this.tickWaitingQueue(),this.logger.debug({notificationId:e},"notification hiding")}}var vt;(function(t){t.OPENED="opened"})(vt||(vt={}));class Mi extends hr{constructor(){super("notification")}setOpened=e=>{this.write(vt.OPENED,e,"true")};isOpened=e=>this.read(vt.OPENED,e);clearNotification=()=>{this.clear()}}var je;(function(t){t[t.ONBOARDING=1]="ONBOARDING",t[t.QUESTION=2]="QUESTION",t[t.QUESTION_RESOLVED=3]="QUESTION_RESOLVED"})(je||(je={}));class qi{queue;storage;constructor(e={}){this.storage=new Mi,this.queue=new Vi({concurrency:1,animationDelay:1600,...e})}add=e=>{this.storage.isOpened(e.id)||this.queue.addToQueue(e)};close=e=>{this.queue.closeNotification(e),this.markAsViewed(e)};getQueueStore=()=>this.queue.notificationsList;markAsViewed=e=>{this.storage.setOpened(e)}}const Qi=(t,e,r)=>{t.notifications=new qi,t.addNotification=t.notifications.add,t.sdk.getNotificationsStore=()=>t.notifications.getQueueStore(),r()},Gi=(t,e)=>{const{client:r}=t.createPromiseClient(Se.Feed,{method:"submitAnswer"});return r.submitAnswer({data:e})},zi=(t,e)=>{const{client:r}=t.createPromiseClient(Se.Feed,{method:"submitInplay"});return r.submitInplay({data:{eventId:+e}})},Ki=(t,e)=>{const{client:r}=t.createPromiseClient(Se.Feed,{method:"skipQuestion"});return r.skipQuestion({data:{id:e}})};var St;(function(t){t.ONBOARDING="onboarding"})(St||(St={}));class sn extends hr{constructor(){super("gamification")}saveOnboardingStatus=({userId:e,eventId:r,organizationId:o},s)=>{this.write(St.ONBOARDING,o,e,r,s)};getOnboardingStatus=({userId:e,eventId:r,organizationId:o})=>this.read(St.ONBOARDING,o,e,r)}const Tr={pageSize:10},Hi=(t,e,r)=>{const o=ne({pageSize:r?.pageSize||Tr.pageSize,page:0}),s=Ue({data:[],loading:void 0,error:void 0}),u=Ci(t),f=async v=>{if(v){s.setKey("loading",!0);const g={eventId:v,pagination:{page:0,pageSize:r?.pageSize||Tr.pageSize}},b=await u(g);s.set({data:b.data.map(E=>E.attributes),loading:!1}),o.set(g.pagination)}};e.listen(f);const l=()=>{f(e.get())};return o.listen(async v=>{const g=e.get(),b=s.get().data?.length||0;if(v.page>0&&g&&b>=v.page*v.pageSize){s.setKey("loading",!0);const T=await u({eventId:g,pagination:v}),N=s.get().data||[];s.set({data:[...N,...T.data.map(P=>P.attributes)],loading:!1})}}),{$store:s,fetchMore:()=>{const v=o.get();o.set({...v,page:v.page+1})},invalidate:l}};var re;(function(t){t.Unset="unset",t.Required="required",t.Optional="optional",t.Completed="completed",t.Disabled="disabled",t.Unavailable="unavailable"})(re||(re={}));const Wi=(t,e,r,o)=>{const s=new sn,u=ne(re.Unset),f=()=>{const{inplayGame:v={}}=t.featureSettings.get(),g=e.getCurrentSessionId({prefix:"onboarding"});o.add({type:je.ONBOARDING,id:g,action:t.openFeature,close:()=>{o.markAsViewed(g)},autoHideDuration:1e6,data:{questionType:ie.QuestionType.UNSET,onboarding:{...v}}})};u.subscribe(v=>{(v===re.Optional||re.Required)&&f(),v===re.Completed&&e.activeQuestionId.invalidate()});const l=async()=>{const v=e.userId.get();if(!v)return;s.getOnboardingStatus({userId:v,organizationId:e.organizationId.get()||"",eventId:e.slStreamId.get()||""})===re.Completed&&u.set(re.Completed);const b=await e.moderation.getValue();if(u.get()===re.Completed)return;const E=!!(b?.options?.onboardingEnabled&&t.featureSettings.get().inplayGame?.onboarding?.completed),T=!!t.featureSettings.get().inplayGame?.titleCard?.optIn;E?T?u.set(re.Required):u.set(re.Optional):T?u.set(re.Unavailable):u.set(re.Disabled)};return l(),e.userId.subscribe(v=>{v&&l()}),e.moderation.subscribe(v=>{v.data&&l()}),{$store:u,submitInplay:async()=>{const v=e.slStreamId.get();v&&(await zi(r,v),u.set(re.Completed),s.saveOnboardingStatus({organizationId:e.organizationId.get()||"",userId:e.userId.get()||"",eventId:v},re.Completed))}}},Ji=new Set([ie.QuestionType.POLL,ie.QuestionType.PREDICTION,ie.QuestionType.TRIVIA]);class Yi extends fr{userSummary;feedList;leaderboardId;leaderboardList;onboardingStatus;openedQuestion;openedUser;closeFeature;openFeature;notifications;transport;background;storage;constructor(e,r,o){super(e,r),this.background=on(o),this.storage=new sn,this.userSummary=new de(_i(this.background.slStreamId,this.background.userId,o.transport),"gamification:userSummary"),this.feedList=this.background.feedList,this.openedUser=ne(void 0),this.leaderboardId=new ye(ne(this.settings.getValue("pinnedLeaderboardId")),"pinnedLeaderboardId").getStore(),this.onboardingStatus=Wi(this,this.background,o.transport,o.notifications),this.notifications=o.notifications,this.transport=o.transport,this.closeFeature=o.sdk.closeFeature,this.openFeature=()=>o.sdk.openFeature(ce.SdkOverlayType.GAMES),this.openedQuestion=this.background.openedQuestion,this.leaderboardList=Hi(this.transport,this.background.slStreamId),this.status.subscribe(s=>{s===$e.Ready?this.connect(o.transport):this.disconnect()}),this.background.activeQuestionId.listen(s=>{if(s&&s.data&&this.onboardingStatus.$store.get()&&s.data.question?.id!==void 0&&s.data.question.notification!==void 0&&s.data.moderation?.bypassNotifications?.inAppSilence!==ie.SilenceSetting.ON&&s.data.question.status===ie.QuestionStatus.ACTIVE){if(Ji.has(s.data.question.type))this.notifications.add({type:je.QUESTION,action:()=>s.data?.question&&this.openQuestion(s.data.question.id),close:()=>s.data?.question&&this.closeQuestion(s.data.question.id),autoHideDuration:1e3*+(s.data.question?.appearance?.autoHideInterval||"5"),id:this.background.getCurrentSessionId({prefix:"notification",entity:s.data.question.id}),data:{questionType:s.data.question.type,question:{title:s.data.question.notification.title}}});else if(s.data.question.type===ie.QuestionType.FACTOID){const u={heading:"",body:"",image:"",video:{id:"",url:"",thumbnailUrl:""},webLink:{label:"",url:""}};this.notifications.add({type:je.QUESTION,action:()=>s.data?.question&&this.openQuestion(s.data.question.id),close:()=>s.data?.question&&this.closeQuestion(s.data.question.id),autoHideDuration:1e3*+(s.data.question?.appearance?.autoHideInterval||"5"),id:this.background.getCurrentSessionId({prefix:"notification",entity:s.data.question.id}),data:{questionType:s.data.question.type,insight:u}})}}})}connect=e=>{this.userSummary.invalidate(),this.leaderboardList.invalidate(),this.feedList.invalidate(),this.background.feedSubscription.addListener("feed-subscription-prediction-close",r=>{window.requestAnimationFrame(async()=>{const o=r.data?.attributes?.question;if(!o)return;const{status:s,type:u,id:f}=o;if(s===ie.QuestionStatus.RESOLVED&&u===ie.QuestionType.PREDICTION){const l=this.background.getCurrentSessionId({prefix:`notification-id:${f}`}),v=(await nn(f,e))?.answers.find(({correct:g})=>g);this.notifications.add({type:je.QUESTION_RESOLVED,action:()=>this.openQuestion(f),close:()=>this.closeQuestion(f),autoHideDuration:5e3,id:l,data:{questionType:ie.QuestionType.PREDICTION,question:{title:v?.youVoted?`Congratulations! You answered correctly! You won ${v.points} pts!`:`Better luck next time! Correct: ${v?.text}!`}}})}})}),this.background.feedSubscription.addListener("feed-subscription-questions-list",()=>{window.requestAnimationFrame(()=>{this.feedList?.invalidate()})})};disconnect=()=>{this.background.feedSubscription.removeListener("feed-subscription-questions-list")};submitAnswer=async(e,r)=>{await Gi(this.transport,{questionId:e,answerId:r}),this.feedList?.invalidate()};skipQuestion=async e=>{await Ki(this.transport,e),this.feedList?.invalidate()};openQuestion=e=>(this.openFeature(),this.background.openQuestion(e));closeQuestion=e=>this.background.closeQuestion(e);openUser=e=>{const r=this.leaderboardList.$store.get().data?.find(o=>o.userId===e);this.openedUser.set(r)};closeUser=()=>{this.openedUser.set(void 0)}}class Xi extends fr{insights;closeFeature;openFeature;openedInsight;notifications;transport;background;constructor(e,r,o){super(e,r),this.background=on(o),this.notifications=o.notifications,this.transport=o.transport,this.closeFeature=o.sdk.closeFeature,this.openFeature=()=>o.sdk.openFeature(ce.SdkOverlayType.HIGHLIGHTS),this.status.subscribe(s=>{s===$e.Ready?this.connect():this.disconnect()}),this.background.activeQuestionId.listen(s=>{s?.data?.question?.id&&s?.data?.question?.notification&&s.data.moderation?.bypassNotifications?.inAppSilence!==ie.SilenceSetting.ON&&s.data.question.type===ie.QuestionType.FACTOID&&s.data.question.status===ie.QuestionStatus.ACTIVE&&this.notifications.add({type:je.QUESTION,action:()=>s.data?.question&&this.openHighlight(s.data.question.id),close:()=>s.data?.question&&this.closeHighlight(s.data.question.id),autoHideDuration:1e3*+(s.data.question?.appearance?.autoHideInterval||"5"),id:this.background.getCurrentSessionId({prefix:"notification",entity:s.data.question.id}),data:{questionType:s.data.question.type,question:{title:s.data.question.notification.title}}})}),this.openedInsight=this.background.openedQuestion}connect=()=>{this.insights?this.insights.invalidate():this.insights=new de(Ri(this.background.slStreamId,this.transport),"gamification:insights"),this.background.feedSubscription.addListener("feed-subscription-insights-list",()=>{window.requestAnimationFrame(()=>{this.insights?.invalidate()})})};disconnect=()=>{this.background.feedSubscription.removeListener("feed-subscription-insights-list")};openHighlight=e=>(this.openFeature(),this.background.openQuestion(e));closeHighlight=e=>this.background.closeQuestion(e)}ce.SdkOverlayType.GAMES+"",ce.SdkOverlayType.HIGHLIGHTS+"";class Zi extends fr{constructor(e,r){super(e,r)}}const eo=(t,e,r)=>t.type===ce.SdkOverlayType.GAMES?new Yi(t,e,r):t.type===ce.SdkOverlayType.HIGHLIGHTS?new Xi(t,e,r):new Zi(t,e),to=(t,e,r)=>{t.features=new Map,t.activeFeature=new ye(ne(ce.SdkOverlayType.UNSET),"activeFeature"),t.sdk.getFeatures=()=>t.features,t.sdk.getFeature=o=>t.features.get(o),t.sdk.getActiveFeature=()=>t.activeFeature.getStore(),t.sdk.openFeature=o=>{t.activeFeature.setValue(o)},t.sdk.closeFeature=()=>{t.activeFeature.setValue(ce.SdkOverlayType.UNSET)},t.initFeature=(o,s=Te.ORGANIZATION)=>{const u=eo(o,s,t);t.features.set(o.type,u)},t.updateFeature=(o,s)=>{t.features.get(o.type)?.update(o,s)},t.destroyFeature=o=>{t.features.delete(o.type)},t.reinitializeFeatures=async()=>{const o=await t.stores.organizationSettings.getValue();t.features.clear();for(const s of o?.overlays||[])t.initFeature(s,Te.ORGANIZATION)},t.stores.providerStreamId.listen(o=>{o||t.reinitializeFeatures()}),t.storeSubscribe=()=>{const o=(u,f)=>{if(f?.overlays){u===Te.STREAM&&t.features.clear();for(const l of f.overlays)l.sdkEnable===!0&&(t.features.has(l.type)?t.updateFeature(l,u):t.initFeature(l,u))}},s={organizationSettings:u=>{if(u.data)try{o(Te.ORGANIZATION,u.data)}catch(f){console.log(f)}},streamSettings:u=>{if(u.data)try{o(Te.STREAM,u.data)}catch(f){console.log(f)}}};t.store.subscribe(s)},r()};var yr={exports:{}},gr={exports:{}};function ro(t){var e=new t,r=e;function o(){var u=e;return u.next?e=u.next:(e=new t,r=e),u.next=null,u}function s(u){r.next=u,r=u}return{get:o,release:s}}var no=ro,io=no;function an(t,e,r){if(typeof t=="function"&&(r=e,e=t,t=null),r<1)throw new Error("fastqueue concurrency must be greater than 1");var o=io(oo),s=null,u=null,f=0,l=null,p={push:P,drain:ue,saturated:ue,pause:g,paused:!1,concurrency:r,running:v,resume:T,idle:N,length:b,getQueue:E,unshift:K,empty:ue,kill:_,killAndDrain:j,error:U};return p;function v(){return f}function g(){p.paused=!0}function b(){for(var F=s,x=0;F;)F=F.next,x++;return x}function E(){for(var F=s,x=[];F;)x.push(F.value),F=F.next;return x}function T(){if(p.paused){p.paused=!1;for(var F=0;F<p.concurrency;F++)f++,I()}}function N(){return f===0&&p.length()===0}function P(F,x){var k=o.get();k.context=t,k.release=I,k.value=F,k.callback=x||ue,k.errorHandler=l,f===p.concurrency||p.paused?u?(u.next=k,u=k):(s=k,u=k,p.saturated()):(f++,e.call(t,k.value,k.worked))}function K(F,x){var k=o.get();k.context=t,k.release=I,k.value=F,k.callback=x||ue,f===p.concurrency||p.paused?s?(k.next=s,s=k):(s=k,u=k,p.saturated()):(f++,e.call(t,k.value,k.worked))}function I(F){F&&o.release(F);var x=s;x?p.paused?f--:(u===s&&(u=null),s=x.next,x.next=null,e.call(t,x.value,x.worked),u===null&&p.empty()):--f===0&&p.drain()}function _(){s=null,u=null,p.drain=ue}function j(){s=null,u=null,p.drain(),p.drain=ue}function U(F){l=F}}function ue(){}function oo(){this.value=null,this.callback=ue,this.next=null,this.release=ue,this.context=null,this.errorHandler=null;var t=this;this.worked=function(r,o){var s=t.callback,u=t.errorHandler,f=t.value;t.value=null,t.callback=ue,t.errorHandler&&u(r,f),s.call(t.context,r,o),t.release(t)}}function so(t,e,r){typeof t=="function"&&(r=e,e=t,t=null);function o(g,b){e.call(this,g).then(function(E){b(null,E)},b)}var s=an(t,o,r),u=s.push,f=s.unshift;return s.push=l,s.unshift=p,s.drained=v,s;function l(g){var b=new Promise(function(E,T){u(g,function(N,P){if(N){T(N);return}E(P)})});return b.catch(ue),b}function p(g){var b=new Promise(function(E,T){f(g,function(N,P){if(N){T(N);return}E(P)})});return b.catch(ue),b}function v(){if(s.idle())return new Promise(function(E){E()});var g=s.drain,b=new Promise(function(E){s.drain=function(){g(),E()}});return b}}gr.exports=an;gr.exports.promise=so;var un=gr.exports,mr={exports:{}},Ye=typeof Reflect=="object"?Reflect:null,Fr=Ye&&typeof Ye.apply=="function"?Ye.apply:function(e,r,o){return Function.prototype.apply.call(e,r,o)},yt;Ye&&typeof Ye.ownKeys=="function"?yt=Ye.ownKeys:Object.getOwnPropertySymbols?yt=function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:yt=function(e){return Object.getOwnPropertyNames(e)};function ao(t){console&&console.warn&&console.warn(t)}var cn=Number.isNaN||function(e){return e!==e};function q(){q.init.call(this)}mr.exports=q;mr.exports.once=fo;q.EventEmitter=q;q.prototype._events=void 0;q.prototype._eventsCount=0;q.prototype._maxListeners=void 0;var _r=10;function xt(t){if(typeof t!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}Object.defineProperty(q,"defaultMaxListeners",{enumerable:!0,get:function(){return _r},set:function(t){if(typeof t!="number"||t<0||cn(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");_r=t}});q.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};q.prototype.setMaxListeners=function(e){if(typeof e!="number"||e<0||cn(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 ln(t){return t._maxListeners===void 0?q.defaultMaxListeners:t._maxListeners}q.prototype.getMaxListeners=function(){return ln(this)};q.prototype.emit=function(e){for(var r=[],o=1;o<arguments.length;o++)r.push(arguments[o]);var s=e==="error",u=this._events;if(u!==void 0)s=s&&u.error===void 0;else if(!s)return!1;if(s){var f;if(r.length>0&&(f=r[0]),f instanceof Error)throw f;var l=new Error("Unhandled error."+(f?" ("+f.message+")":""));throw l.context=f,l}var p=u[e];if(p===void 0)return!1;if(typeof p=="function")Fr(p,this,r);else for(var v=p.length,g=yn(p,v),o=0;o<v;++o)Fr(g[o],this,r);return!0};function fn(t,e,r,o){var s,u,f;if(xt(r),u=t._events,u===void 0?(u=t._events=Object.create(null),t._eventsCount=0):(u.newListener!==void 0&&(t.emit("newListener",e,r.listener?r.listener:r),u=t._events),f=u[e]),f===void 0)f=u[e]=r,++t._eventsCount;else if(typeof f=="function"?f=u[e]=o?[r,f]:[f,r]:o?f.unshift(r):f.push(r),s=ln(t),s>0&&f.length>s&&!f.warned){f.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+f.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=t,l.type=e,l.count=f.length,ao(l)}return t}q.prototype.addListener=function(e,r){return fn(this,e,r,!1)};q.prototype.on=q.prototype.addListener;q.prototype.prependListener=function(e,r){return fn(this,e,r,!0)};function uo(){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 hn(t,e,r){var o={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},s=uo.bind(o);return s.listener=r,o.wrapFn=s,s}q.prototype.once=function(e,r){return xt(r),this.on(e,hn(this,e,r)),this};q.prototype.prependOnceListener=function(e,r){return xt(r),this.prependListener(e,hn(this,e,r)),this};q.prototype.removeListener=function(e,r){var o,s,u,f,l;if(xt(r),s=this._events,s===void 0)return this;if(o=s[e],o===void 0)return this;if(o===r||o.listener===r)--this._eventsCount===0?this._events=Object.create(null):(delete s[e],s.removeListener&&this.emit("removeListener",e,o.listener||r));else if(typeof o!="function"){for(u=-1,f=o.length-1;f>=0;f--)if(o[f]===r||o[f].listener===r){l=o[f].listener,u=f;break}if(u<0)return this;u===0?o.shift():co(o,u),o.length===1&&(s[e]=o[0]),s.removeListener!==void 0&&this.emit("removeListener",e,l||r)}return this};q.prototype.off=q.prototype.removeListener;q.prototype.removeAllListeners=function(e){var r,o,s;if(o=this._events,o===void 0)return this;if(o.removeListener===void 0)return arguments.length===0?(this._events=Object.create(null),this._eventsCount=0):o[e]!==void 0&&(--this._eventsCount===0?this._events=Object.create(null):delete o[e]),this;if(arguments.length===0){var u=Object.keys(o),f;for(s=0;s<u.length;++s)f=u[s],f!=="removeListener"&&this.removeAllListeners(f);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(r=o[e],typeof r=="function")this.removeListener(e,r);else if(r!==void 0)for(s=r.length-1;s>=0;s--)this.removeListener(e,r[s]);return this};function pn(t,e,r){var o=t._events;if(o===void 0)return[];var s=o[e];return s===void 0?[]:typeof s=="function"?r?[s.listener||s]:[s]:r?lo(s):yn(s,s.length)}q.prototype.listeners=function(e){return pn(this,e,!0)};q.prototype.rawListeners=function(e){return pn(this,e,!1)};q.listenerCount=function(t,e){return typeof t.listenerCount=="function"?t.listenerCount(e):dn.call(t,e)};q.prototype.listenerCount=dn;function dn(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}q.prototype.eventNames=function(){return this._eventsCount>0?yt(this._events):[]};function yn(t,e){for(var r=new Array(e),o=0;o<e;++o)r[o]=t[o];return r}function co(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function lo(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}function fo(t,e){return new Promise(function(r,o){function s(f){t.removeListener(e,u),o(f)}function u(){typeof t.removeListener=="function"&&t.removeListener("error",s),r([].slice.call(arguments))}gn(t,e,u,{once:!0}),e!=="error"&&ho(t,s,{once:!0})})}function ho(t,e,r){typeof t.on=="function"&&gn(t,"error",e,r)}function gn(t,e,r,o){if(typeof t.on=="function")o.once?t.once(e,r):t.on(e,r);else if(typeof t.addEventListener=="function")t.addEventListener(e,function s(u){o.once&&t.removeEventListener(e,s),r(u)});else throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t)}var mn=mr.exports,Bt={},bn={},wn=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var e={},r=Symbol("test"),o=Object(r);if(typeof r=="string"||Object.prototype.toString.call(r)!=="[object Symbol]"||Object.prototype.toString.call(o)!=="[object Symbol]")return!1;var s=42;e[r]=s;for(r in e)return!1;if(typeof Object.keys=="function"&&Object.keys(e).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(e).length!==0)return!1;var u=Object.getOwnPropertySymbols(e);if(u.length!==1||u[0]!==r||!Object.prototype.propertyIsEnumerable.call(e,r))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var f=Object.getOwnPropertyDescriptor(e,r);if(f.value!==s||f.enumerable!==!0)return!1}return!0},po=wn,br=function(){return po()&&!!Symbol.toStringTag},Cr=typeof Symbol<"u"&&Symbol,yo=wn,go=function(){return typeof Cr!="function"||typeof Symbol!="function"||typeof Cr("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:yo()},Or={foo:{}},mo=Object,bo=function(){return{__proto__:Or}.foo===Or.foo&&!({__proto__:null}instanceof mo)},wo="Function.prototype.bind called on incompatible ",vo=Object.prototype.toString,So=Math.max,Ao="[object Function]",xr=function(e,r){for(var o=[],s=0;s<e.length;s+=1)o[s]=e[s];for(var u=0;u<r.length;u+=1)o[u+e.length]=r[u];return o},Eo=function(e,r){for(var o=[],s=r||0,u=0;s<e.length;s+=1,u+=1)o[u]=e[s];return o},Io=function(t,e){for(var r="",o=0;o<t.length;o+=1)r+=t[o],o+1<t.length&&(r+=e);return r},To=function(e){var r=this;if(typeof r!="function"||vo.apply(r)!==Ao)throw new TypeError(wo+r);for(var o=Eo(arguments,1),s,u=function(){if(this instanceof s){var g=r.apply(this,xr(o,arguments));return Object(g)===g?g:this}return r.apply(e,xr(o,arguments))},f=So(0,r.length-o.length),l=[],p=0;p<f;p++)l[p]="$"+p;if(s=Function("binder","return function ("+Io(l,",")+"){ return binder.apply(this,arguments); }")(u),r.prototype){var v=function(){};v.prototype=r.prototype,s.prototype=new v,v.prototype=null}return s},Fo=To,vn=Function.prototype.bind||Fo,Br={}.hasOwnProperty,Lt=Function.prototype.call,_o=Lt.bind?Lt.bind(Br):function(t,e){return Lt.call(Br,t,e)},$,Ze=SyntaxError,Sn=Function,Xe=TypeError,Ut=function(t){try{return Sn('"use strict"; return ('+t+").constructor;")()}catch{}},De=Object.getOwnPropertyDescriptor;if(De)try{De({},"")}catch{De=null}var $t=function(){throw new Xe},Co=De?function(){try{return arguments.callee,$t}catch{try{return De(arguments,"callee").get}catch{return $t}}}():$t,Ge=go(),Oo=bo(),X=Object.getPrototypeOf||(Oo?function(t){return t.__proto__}:null),Ke={},xo=typeof Uint8Array>"u"||!X?$:X(Uint8Array),Ve={"%AggregateError%":typeof AggregateError>"u"?$:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?$:ArrayBuffer,"%ArrayIteratorPrototype%":Ge&&X?X([][Symbol.iterator]()):$,"%AsyncFromSyncIteratorPrototype%":$,"%AsyncFunction%":Ke,"%AsyncGenerator%":Ke,"%AsyncGeneratorFunction%":Ke,"%AsyncIteratorPrototype%":Ke,"%Atomics%":typeof Atomics>"u"?$:Atomics,"%BigInt%":typeof BigInt>"u"?$:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?$:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?$:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?$:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":typeof Float32Array>"u"?$:Float32Array,"%Float64Array%":typeof Float64Array>"u"?$:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?$:FinalizationRegistry,"%Function%":Sn,"%GeneratorFunction%":Ke,"%Int8Array%":typeof Int8Array>"u"?$:Int8Array,"%Int16Array%":typeof Int16Array>"u"?$:Int16Array,"%Int32Array%":typeof Int32Array>"u"?$:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":Ge&&X?X(X([][Symbol.iterator]())):$,"%JSON%":typeof JSON=="object"?JSON:$,"%Map%":typeof Map>"u"?$:Map,"%MapIteratorPrototype%":typeof Map>"u"||!Ge||!X?$:X(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?$:Promise,"%Proxy%":typeof Proxy>"u"?$:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":typeof Reflect>"u"?$:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?$:Set,"%SetIteratorPrototype%":typeof Set>"u"||!Ge||!X?$:X(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?$:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":Ge&&X?X(""[Symbol.iterator]()):$,"%Symbol%":Ge?Symbol:$,"%SyntaxError%":Ze,"%ThrowTypeError%":Co,"%TypedArray%":xo,"%TypeError%":Xe,"%Uint8Array%":typeof Uint8Array>"u"?$:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?$:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?$:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?$:Uint32Array,"%URIError%":URIError,"%WeakMap%":typeof WeakMap>"u"?$:WeakMap,"%WeakRef%":typeof WeakRef>"u"?$:WeakRef,"%WeakSet%":typeof WeakSet>"u"?$:WeakSet};if(X)try{null.error}catch(t){var Bo=X(X(t));Ve["%Error.prototype%"]=Bo}var ko=function t(e){var r;if(e==="%AsyncFunction%")r=Ut("async function () {}");else if(e==="%GeneratorFunction%")r=Ut("function* () {}");else if(e==="%AsyncGeneratorFunction%")r=Ut("async function* () {}");else if(e==="%AsyncGenerator%"){var o=t("%AsyncGeneratorFunction%");o&&(r=o.prototype)}else if(e==="%AsyncIteratorPrototype%"){var s=t("%AsyncGenerator%");s&&X&&(r=X(s.prototype))}return Ve[e]=r,r},kr={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},ft=vn,At=_o,Po=ft.call(Function.call,Array.prototype.concat),Ro=ft.call(Function.apply,Array.prototype.splice),Pr=ft.call(Function.call,String.prototype.replace),Et=ft.call(Function.call,String.prototype.slice),No=ft.call(Function.call,RegExp.prototype.exec),Lo=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,Uo=/\\(\\)?/g,$o=function(e){var r=Et(e,0,1),o=Et(e,-1);if(r==="%"&&o!=="%")throw new Ze("invalid intrinsic syntax, expected closing `%`");if(o==="%"&&r!=="%")throw new Ze("invalid intrinsic syntax, expected opening `%`");var s=[];return Pr(e,Lo,function(u,f,l,p){s[s.length]=l?Pr(p,Uo,"$1"):f||u}),s},jo=function(e,r){var o=e,s;if(At(kr,o)&&(s=kr[o],o="%"+s[0]+"%"),At(Ve,o)){var u=Ve[o];if(u===Ke&&(u=ko(o)),typeof u>"u"&&!r)throw new Xe("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:s,name:o,value:u}}throw new Ze("intrinsic "+e+" does not exist!")},tt=function(e,r){if(typeof e!="string"||e.length===0)throw new Xe("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof r!="boolean")throw new Xe('"allowMissing" argument must be a boolean');if(No(/^%?[^%]*%?$/,e)===null)throw new Ze("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var o=$o(e),s=o.length>0?o[0]:"",u=jo("%"+s+"%",r),f=u.name,l=u.value,p=!1,v=u.alias;v&&(s=v[0],Ro(o,Po([0,1],v)));for(var g=1,b=!0;g<o.length;g+=1){var E=o[g],T=Et(E,0,1),N=Et(E,-1);if((T==='"'||T==="'"||T==="`"||N==='"'||N==="'"||N==="`")&&T!==N)throw new Ze("property names with quotes must have matching quotes");if((E==="constructor"||!b)&&(p=!0),s+="."+E,f="%"+s+"%",At(Ve,f))l=Ve[f];else if(l!=null){if(!(E in l)){if(!r)throw new Xe("base intrinsic for "+e+" exists, but the property is not available.");return}if(De&&g+1>=o.length){var P=De(l,E);b=!!P,b&&"get"in P&&!("originalValue"in P.get)?l=P.get:l=l[E]}else b=At(l,E),l=l[E];b&&!p&&(Ve[f]=l)}}return l},An={exports:{}},Do=tt,er=Do("%Object.defineProperty%",!0),tr=function(){if(er)try{return er({},"a",{value:1}),!0}catch{return!1}return!1};tr.hasArrayLengthDefineBug=function(){if(!tr())return null;try{return er([],"length",{value:1}).length!==1}catch{return!0}};var En=tr,Vo=tt,gt=Vo("%Object.getOwnPropertyDescriptor%",!0);if(gt)try{gt([],"length")}catch{gt=null}var wr=gt,Mo=En(),vr=tt,ct=Mo&&vr("%Object.defineProperty%",!0);if(ct)try{ct({},"a",{value:1})}catch{ct=!1}var qo=vr("%SyntaxError%"),ze=vr("%TypeError%"),Rr=wr,Qo=function(e,r,o){if(!e||typeof e!="object"&&typeof e!="function")throw new ze("`obj` must be an object or a function`");if(typeof r!="string"&&typeof r!="symbol")throw new ze("`property` must be a string or a symbol`");if(arguments.length>3&&typeof arguments[3]!="boolean"&&arguments[3]!==null)throw new ze("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&typeof arguments[4]!="boolean"&&arguments[4]!==null)throw new ze("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&typeof arguments[5]!="boolean"&&arguments[5]!==null)throw new ze("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&typeof arguments[6]!="boolean")throw new ze("`loose`, if provided, must be a boolean");var s=arguments.length>3?arguments[3]:null,u=arguments.length>4?arguments[4]:null,f=arguments.length>5?arguments[5]:null,l=arguments.length>6?arguments[6]:!1,p=!!Rr&&Rr(e,r);if(ct)ct(e,r,{configurable:f===null&&p?p.configurable:!f,enumerable:s===null&&p?p.enumerable:!s,value:o,writable:u===null&&p?p.writable:!u});else if(l||!s&&!u&&!f)e[r]=o;else throw new qo("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.")},In=tt,Nr=Qo,Go=En(),Lr=wr,Ur=In("%TypeError%"),zo=In("%Math.floor%"),Ko=function(e,r){if(typeof e!="function")throw new Ur("`fn` is not a function");if(typeof r!="number"||r<0||r>4294967295||zo(r)!==r)throw new Ur("`length` must be a positive 32-bit integer");var o=arguments.length>2&&!!arguments[2],s=!0,u=!0;if("length"in e&&Lr){var f=Lr(e,"length");f&&!f.configurable&&(s=!1),f&&!f.writable&&(u=!1)}return(s||u||!o)&&(Go?Nr(e,"length",r,!0,!0):Nr(e,"length",r)),e};(function(t){var e=vn,r=tt,o=Ko,s=r("%TypeError%"),u=r("%Function.prototype.apply%"),f=r("%Function.prototype.call%"),l=r("%Reflect.apply%",!0)||e.call(f,u),p=r("%Object.defineProperty%",!0),v=r("%Math.max%");if(p)try{p({},"a",{value:1})}catch{p=null}t.exports=function(E){if(typeof E!="function")throw new s("a function is required");var T=l(e,f,arguments);return o(T,1+v(0,E.length-(arguments.length-1)),!0)};var g=function(){return l(e,u,arguments)};p?p(t.exports,"apply",{value:g}):t.exports.apply=g})(An);var Tn=An.exports,Fn=tt,_n=Tn,Ho=_n(Fn("String.prototype.indexOf")),Cn=function(e,r){var o=Fn(e,!!r);return typeof o=="function"&&Ho(e,".prototype.")>-1?_n(o):o},Wo=br(),Jo=Cn,rr=Jo("Object.prototype.toString"),kt=function(e){return Wo&&e&&typeof e=="object"&&Symbol.toStringTag in e?!1:rr(e)==="[object Arguments]"},On=function(e){return kt(e)?!0:e!==null&&typeof e=="object"&&typeof e.length=="number"&&e.length>=0&&rr(e)!=="[object Array]"&&rr(e.callee)==="[object Function]"},Yo=function(){return kt(arguments)}();kt.isLegacyArguments=On;var Xo=Yo?kt:On,Zo=Object.prototype.toString,es=Function.prototype.toString,ts=/^\s*(?:function)?\*/,xn=br(),jt=Object.getPrototypeOf,rs=function(){if(!xn)return!1;try{return Function("return function*() {}")()}catch{}},Dt,ns=function(e){if(typeof e!="function")return!1;if(ts.test(es.call(e)))return!0;if(!xn){var r=Zo.call(e);return r==="[object GeneratorFunction]"}if(!jt)return!1;if(typeof Dt>"u"){var o=rs();Dt=o?jt(o):!1}return jt(e)===Dt},Bn=Function.prototype.toString,We=typeof Reflect=="object"&&Reflect!==null&&Reflect.apply,nr,mt;if(typeof We=="function"&&typeof Object.defineProperty=="function")try{nr=Object.defineProperty({},"length",{get:function(){throw mt}}),mt={},We(function(){throw 42},null,nr)}catch(t){t!==mt&&(We=null)}else We=null;var is=/^\s*class\b/,ir=function(e){try{var r=Bn.call(e);return is.test(r)}catch{return!1}},Vt=function(e){try{return ir(e)?!1:(Bn.call(e),!0)}catch{return!1}},bt=Object.prototype.toString,os="[object Object]",ss="[object Function]",as="[object GeneratorFunction]",us="[object HTMLAllCollection]",cs="[object HTML document.all class]",ls="[object HTMLCollection]",fs=typeof Symbol=="function"&&!!Symbol.toStringTag,hs=!(0 in[,]),or=function(){return!1};if(typeof document=="object"){var ps=document.all;bt.call(ps)===bt.call(document.all)&&(or=function(e){if((hs||!e)&&(typeof e>"u"||typeof e=="object"))try{var r=bt.call(e);return(r===us||r===cs||r===ls||r===os)&&e("")==null}catch{}return!1})}var ds=We?function(e){if(or(e))return!0;if(!e||typeof e!="function"&&typeof e!="object")return!1;try{We(e,null,nr)}catch(r){if(r!==mt)return!1}return!ir(e)&&Vt(e)}:function(e){if(or(e))return!0;if(!e||typeof e!="function"&&typeof e!="object")return!1;if(fs)return Vt(e);if(ir(e))return!1;var r=bt.call(e);return r!==ss&&r!==as&&!/^\[object HTML/.test(r)?!1:Vt(e)},ys=ds,gs=Object.prototype.toString,kn=Object.prototype.hasOwnProperty,ms=function(e,r,o){for(var s=0,u=e.length;s<u;s++)kn.call(e,s)&&(o==null?r(e[s],s,e):r.call(o,e[s],s,e))},bs=function(e,r,o){for(var s=0,u=e.length;s<u;s++)o==null?r(e.charAt(s),s,e):r.call(o,e.charAt(s),s,e)},ws=function(e,r,o){for(var s in e)kn.call(e,s)&&(o==null?r(e[s],s,e):r.call(o,e[s],s,e))},vs=function(e,r,o){if(!ys(r))throw new TypeError("iterator must be a function");var s;arguments.length>=3&&(s=o),gs.call(e)==="[object Array]"?ms(e,r,s):typeof e=="string"?bs(e,r,s):ws(e,r,s)},Ss=vs,Mt=["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],As=typeof globalThis>"u"?Wr:globalThis,Es=function(){for(var e=[],r=0;r<Mt.length;r++)typeof As[Mt[r]]=="function"&&(e[e.length]=Mt[r]);return e},It=Ss,Is=Es,$r=Tn,Sr=Cn,wt=wr,Ts=Sr("Object.prototype.toString"),Pn=br(),jr=typeof globalThis>"u"?Wr:globalThis,sr=Is(),Ar=Sr("String.prototype.slice"),qt=Object.getPrototypeOf,Fs=Sr("Array.prototype.indexOf",!0)||function(e,r){for(var o=0;o<e.length;o+=1)if(e[o]===r)return o;return-1},Tt={__proto__:null};Pn&&wt&&qt?It(sr,function(t){var e=new jr[t];if(Symbol.toStringTag in e){var r=qt(e),o=wt(r,Symbol.toStringTag);if(!o){var s=qt(r);o=wt(s,Symbol.toStringTag)}Tt["$"+t]=$r(o.get)}}):It(sr,function(t){var e=new jr[t],r=e.slice||e.set;r&&(Tt["$"+t]=$r(r))});var _s=function(e){var r=!1;return It(Tt,function(o,s){if(!r)try{"$"+o(e)===s&&(r=Ar(s,1))}catch{}}),r},Cs=function(e){var r=!1;return It(Tt,function(o,s){if(!r)try{o(e),r=Ar(s,1)}catch{}}),r},Rn=function(e){if(!e||typeof e!="object")return!1;if(!Pn){var r=Ar(Ts(e),8,-1);return Fs(sr,r)>-1?r:r!=="Object"?!1:Cs(e)}return wt?_s(e):null},Os=Rn,xs=function(e){return!!Os(e)};(function(t){var e=Xo,r=ns,o=Rn,s=xs;function u(S){return S.call.bind(S)}var f=typeof BigInt<"u",l=typeof Symbol<"u",p=u(Object.prototype.toString),v=u(Number.prototype.valueOf),g=u(String.prototype.valueOf),b=u(Boolean.prototype.valueOf);if(f)var E=u(BigInt.prototype.valueOf);if(l)var T=u(Symbol.prototype.valueOf);function N(S,pt){if(typeof S!="object")return!1;try{return pt(S),!0}catch{return!1}}t.isArgumentsObject=e,t.isGeneratorFunction=r,t.isTypedArray=s;function P(S){return typeof Promise<"u"&&S instanceof Promise||S!==null&&typeof S=="object"&&typeof S.then=="function"&&typeof S.catch=="function"}t.isPromise=P;function K(S){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(S):s(S)||w(S)}t.isArrayBufferView=K;function I(S){return o(S)==="Uint8Array"}t.isUint8Array=I;function _(S){return o(S)==="Uint8ClampedArray"}t.isUint8ClampedArray=_;function j(S){return o(S)==="Uint16Array"}t.isUint16Array=j;function U(S){return o(S)==="Uint32Array"}t.isUint32Array=U;function F(S){return o(S)==="Int8Array"}t.isInt8Array=F;function x(S){return o(S)==="Int16Array"}t.isInt16Array=x;function k(S){return o(S)==="Int32Array"}t.isInt32Array=k;function G(S){return o(S)==="Float32Array"}t.isFloat32Array=G;function oe(S){return o(S)==="Float64Array"}t.isFloat64Array=oe;function Oe(S){return o(S)==="BigInt64Array"}t.isBigInt64Array=Oe;function Ae(S){return o(S)==="BigUint64Array"}t.isBigUint64Array=Ae;function le(S){return p(S)==="[object Map]"}le.working=typeof Map<"u"&&le(new Map);function nt(S){return typeof Map>"u"?!1:le.working?le(S):S instanceof Map}t.isMap=nt;function fe(S){return p(S)==="[object Set]"}fe.working=typeof Set<"u"&&fe(new Set);function xe(S){return typeof Set>"u"?!1:fe.working?fe(S):S instanceof Set}t.isSet=xe;function Be(S){return p(S)==="[object WeakMap]"}Be.working=typeof WeakMap<"u"&&Be(new WeakMap);function it(S){return typeof WeakMap>"u"?!1:Be.working?Be(S):S instanceof WeakMap}t.isWeakMap=it;function ke(S){return p(S)==="[object WeakSet]"}ke.working=typeof WeakSet<"u"&&ke(new WeakSet);function he(S){return ke(S)}t.isWeakSet=he;function Pe(S){return p(S)==="[object ArrayBuffer]"}Pe.working=typeof ArrayBuffer<"u"&&Pe(new ArrayBuffer);function H(S){return typeof ArrayBuffer>"u"?!1:Pe.working?Pe(S):S instanceof ArrayBuffer}t.isArrayBuffer=H;function d(S){return p(S)==="[object DataView]"}d.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&d(new DataView(new ArrayBuffer(1),0,1));function w(S){return typeof DataView>"u"?!1:d.working?d(S):S instanceof DataView}t.isDataView=w;var A=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function C(S){return p(S)==="[object SharedArrayBuffer]"}function D(S){return typeof A>"u"?!1:(typeof C.working>"u"&&(C.working=C(new A)),C.working?C(S):S instanceof A)}t.isSharedArrayBuffer=D;function V(S){return p(S)==="[object AsyncFunction]"}t.isAsyncFunction=V;function B(S){return p(S)==="[object Map Iterator]"}t.isMapIterator=B;function L(S){return p(S)==="[object Set Iterator]"}t.isSetIterator=L;function M(S){return p(S)==="[object Generator]"}t.isGeneratorObject=M;function te(S){return p(S)==="[object WebAssembly.Module]"}t.isWebAssemblyCompiledModule=te;function ge(S){return N(S,v)}t.isNumberObject=ge;function pe(S){return N(S,g)}t.isStringObject=pe;function se(S){return N(S,b)}t.isBooleanObject=se;function qe(S){return f&&N(S,E)}t.isBigIntObject=qe;function ht(S){return l&&N(S,T)}t.isSymbolObject=ht;function ot(S){return ge(S)||pe(S)||se(S)||qe(S)||ht(S)}t.isBoxedPrimitive=ot;function Pt(S){return typeof Uint8Array<"u"&&(H(S)||D(S))}t.isAnyArrayBuffer=Pt,["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(S){Object.defineProperty(t,S,{enumerable:!1,value:function(){throw new Error(S+" is not supported in userland")}})})})(bn);var Bs=function(e){return e&&typeof e=="object"&&typeof e.copy=="function"&&typeof e.fill=="function"&&typeof e.readUInt8=="function"},ar={exports:{}};typeof Object.create=="function"?ar.exports=function(e,r){r&&(e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:ar.exports=function(e,r){if(r){e.super_=r;var o=function(){};o.prototype=r.prototype,e.prototype=new o,e.prototype.constructor=e}};var ks=ar.exports;(function(t){var e=Object.getOwnPropertyDescriptors||function(w){for(var A=Object.keys(w),C={},D=0;D<A.length;D++)C[A[D]]=Object.getOwnPropertyDescriptor(w,A[D]);return C},r=/%[sdj%]/g;t.format=function(d){if(!F(d)){for(var w=[],A=0;A<arguments.length;A++)w.push(f(arguments[A]));return w.join(" ")}for(var A=1,C=arguments,D=C.length,V=String(d).replace(r,function(L){if(L==="%%")return"%";if(A>=D)return L;switch(L){case"%s":return String(C[A++]);case"%d":return Number(C[A++]);case"%j":try{return JSON.stringify(C[A++])}catch{return"[Circular]"}default:return L}}),B=C[A];A<D;B=C[++A])_(B)||!oe(B)?V+=" "+B:V+=" "+f(B);return V},t.deprecate=function(d,w){if(typeof O.process<"u"&&O.process.noDeprecation===!0)return d;if(typeof O.process>"u")return function(){return t.deprecate(d,w).apply(this,arguments)};var A=!1;function C(){if(!A){if(O.process.throwDeprecation)throw new Error(w);O.process.traceDeprecation?console.trace(w):console.error(w),A=!0}return d.apply(this,arguments)}return C};var o={},s=/^$/;if(O.process.env.NODE_DEBUG){var u=O.process.env.NODE_DEBUG;u=u.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),s=new RegExp("^"+u+"$","i")}t.debuglog=function(d){if(d=d.toUpperCase(),!o[d])if(s.test(d)){var w=O.process.pid;o[d]=function(){var A=t.format.apply(t,arguments);console.error("%s %d: %s",d,w,A)}}else o[d]=function(){};return o[d]};function f(d,w){var A={seen:[],stylize:p};return arguments.length>=3&&(A.depth=arguments[2]),arguments.length>=4&&(A.colors=arguments[3]),I(w)?A.showHidden=w:w&&t._extend(A,w),k(A.showHidden)&&(A.showHidden=!1),k(A.depth)&&(A.depth=2),k(A.colors)&&(A.colors=!1),k(A.customInspect)&&(A.customInspect=!0),A.colors&&(A.stylize=l),g(A,d,A.depth)}t.inspect=f,f.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},f.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function l(d,w){var A=f.styles[w];return A?"\x1B["+f.colors[A][0]+"m"+d+"\x1B["+f.colors[A][1]+"m":d}function p(d,w){return d}function v(d){var w={};return d.forEach(function(A,C){w[A]=!0}),w}function g(d,w,A){if(d.customInspect&&w&&le(w.inspect)&&w.inspect!==t.inspect&&!(w.constructor&&w.constructor.prototype===w)){var C=w.inspect(A,d);return F(C)||(C=g(d,C,A)),C}var D=b(d,w);if(D)return D;var V=Object.keys(w),B=v(V);if(d.showHidden&&(V=Object.getOwnPropertyNames(w)),Ae(w)&&(V.indexOf("message")>=0||V.indexOf("description")>=0))return E(w);if(V.length===0){if(le(w)){var L=w.name?": "+w.name:"";return d.stylize("[Function"+L+"]","special")}if(G(w))return d.stylize(RegExp.prototype.toString.call(w),"regexp");if(Oe(w))return d.stylize(Date.prototype.toString.call(w),"date");if(Ae(w))return E(w)}var M="",te=!1,ge=["{","}"];if(K(w)&&(te=!0,ge=["[","]"]),le(w)){var pe=w.name?": "+w.name:"";M=" [Function"+pe+"]"}if(G(w)&&(M=" "+RegExp.prototype.toString.call(w)),Oe(w)&&(M=" "+Date.prototype.toUTCString.call(w)),Ae(w)&&(M=" "+E(w)),V.length===0&&(!te||w.length==0))return ge[0]+M+ge[1];if(A<0)return G(w)?d.stylize(RegExp.prototype.toString.call(w),"regexp"):d.stylize("[Object]","special");d.seen.push(w);var se;return te?se=T(d,w,A,B,V):se=V.map(function(qe){return N(d,w,A,B,qe,te)}),d.seen.pop(),P(se,M,ge)}function b(d,w){if(k(w))return d.stylize("undefined","undefined");if(F(w)){var A="'"+JSON.stringify(w).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return d.stylize(A,"string")}if(U(w))return d.stylize(""+w,"number");if(I(w))return d.stylize(""+w,"boolean");if(_(w))return d.stylize("null","null")}function E(d){return"["+Error.prototype.toString.call(d)+"]"}function T(d,w,A,C,D){for(var V=[],B=0,L=w.length;B<L;++B)ke(w,String(B))?V.push(N(d,w,A,C,String(B),!0)):V.push("");return D.forEach(function(M){M.match(/^\d+$/)||V.push(N(d,w,A,C,M,!0))}),V}function N(d,w,A,C,D,V){var B,L,M;if(M=Object.getOwnPropertyDescriptor(w,D)||{value:w[D]},M.get?M.set?L=d.stylize("[Getter/Setter]","special"):L=d.stylize("[Getter]","special"):M.set&&(L=d.stylize("[Setter]","special")),ke(C,D)||(B="["+D+"]"),L||(d.seen.indexOf(M.value)<0?(_(A)?L=g(d,M.value,null):L=g(d,M.value,A-1),L.indexOf(`
|
|
6
|
+
*/(function(t){const e=Ct,r=lr,o=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;t.Buffer=l,t.SlowBuffer=_,t.INSPECT_MAX_BYTES=50;const s=2147483647;t.kMaxLength=s,l.TYPED_ARRAY_SUPPORT=u(),!l.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&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 u(){try{const a=new Uint8Array(1),n={foo:function(){return 42}};return Object.setPrototypeOf(n,Uint8Array.prototype),Object.setPrototypeOf(a,n),a.foo()===42}catch{return!1}}Object.defineProperty(l.prototype,"parent",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.buffer}}),Object.defineProperty(l.prototype,"offset",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.byteOffset}});function f(a){if(a>s)throw new RangeError('The value "'+a+'" is invalid for option "size"');const n=new Uint8Array(a);return Object.setPrototypeOf(n,l.prototype),n}function l(a,n,i){if(typeof a=="number"){if(typeof n=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return b(a)}return p(a,n,i)}l.poolSize=8192;function p(a,n,i){if(typeof a=="string")return E(a,n);if(ArrayBuffer.isView(a))return N(a);if(a==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof a);if(me(a,ArrayBuffer)||a&&me(a.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(me(a,SharedArrayBuffer)||a&&me(a.buffer,SharedArrayBuffer)))return P(a,n,i);if(typeof a=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const c=a.valueOf&&a.valueOf();if(c!=null&&c!==a)return l.from(c,n,i);const h=K(a);if(h)return h;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof a[Symbol.toPrimitive]=="function")return l.from(a[Symbol.toPrimitive]("string"),n,i);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof a)}l.from=function(a,n,i){return p(a,n,i)},Object.setPrototypeOf(l.prototype,Uint8Array.prototype),Object.setPrototypeOf(l,Uint8Array);function v(a){if(typeof a!="number")throw new TypeError('"size" argument must be of type number');if(a<0)throw new RangeError('The value "'+a+'" is invalid for option "size"')}function g(a,n,i){return v(a),a<=0?f(a):n!==void 0?typeof i=="string"?f(a).fill(n,i):f(a).fill(n):f(a)}l.alloc=function(a,n,i){return g(a,n,i)};function b(a){return v(a),f(a<0?0:I(a)|0)}l.allocUnsafe=function(a){return b(a)},l.allocUnsafeSlow=function(a){return b(a)};function E(a,n){if((typeof n!="string"||n==="")&&(n="utf8"),!l.isEncoding(n))throw new TypeError("Unknown encoding: "+n);const i=j(a,n)|0;let c=f(i);const h=c.write(a,n);return h!==i&&(c=c.slice(0,h)),c}function T(a){const n=a.length<0?0:I(a.length)|0,i=f(n);for(let c=0;c<n;c+=1)i[c]=a[c]&255;return i}function N(a){if(me(a,Uint8Array)){const n=new Uint8Array(a);return P(n.buffer,n.byteOffset,n.byteLength)}return T(a)}function P(a,n,i){if(n<0||a.byteLength<n)throw new RangeError('"offset" is outside of buffer bounds');if(a.byteLength<n+(i||0))throw new RangeError('"length" is outside of buffer bounds');let c;return n===void 0&&i===void 0?c=new Uint8Array(a):i===void 0?c=new Uint8Array(a,n):c=new Uint8Array(a,n,i),Object.setPrototypeOf(c,l.prototype),c}function K(a){if(l.isBuffer(a)){const n=I(a.length)|0,i=f(n);return i.length===0||a.copy(i,0,0,n),i}if(a.length!==void 0)return typeof a.length!="number"||Rt(a.length)?f(0):T(a);if(a.type==="Buffer"&&Array.isArray(a.data))return T(a.data)}function I(a){if(a>=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return a|0}function _(a){return+a!=a&&(a=0),l.alloc(+a)}l.isBuffer=function(n){return n!=null&&n._isBuffer===!0&&n!==l.prototype},l.compare=function(n,i){if(me(n,Uint8Array)&&(n=l.from(n,n.offset,n.byteLength)),me(i,Uint8Array)&&(i=l.from(i,i.offset,i.byteLength)),!l.isBuffer(n)||!l.isBuffer(i))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(n===i)return 0;let c=n.length,h=i.length;for(let y=0,m=Math.min(c,h);y<m;++y)if(n[y]!==i[y]){c=n[y],h=i[y];break}return c<h?-1:h<c?1:0},l.isEncoding=function(n){switch(String(n).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}},l.concat=function(n,i){if(!Array.isArray(n))throw new TypeError('"list" argument must be an Array of Buffers');if(n.length===0)return l.alloc(0);let c;if(i===void 0)for(i=0,c=0;c<n.length;++c)i+=n[c].length;const h=l.allocUnsafe(i);let y=0;for(c=0;c<n.length;++c){let m=n[c];if(me(m,Uint8Array))y+m.length>h.length?(l.isBuffer(m)||(m=l.from(m)),m.copy(h,y)):Uint8Array.prototype.set.call(h,m,y);else if(l.isBuffer(m))m.copy(h,y);else throw new TypeError('"list" argument must be an Array of Buffers');y+=m.length}return h};function j(a,n){if(l.isBuffer(a))return a.length;if(ArrayBuffer.isView(a)||me(a,ArrayBuffer))return a.byteLength;if(typeof a!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof a);const i=a.length,c=arguments.length>2&&arguments[2]===!0;if(!c&&i===0)return 0;let h=!1;for(;;)switch(n){case"ascii":case"latin1":case"binary":return i;case"utf8":case"utf-8":return ot(a).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return i*2;case"hex":return i>>>1;case"base64":return pt(a).length;default:if(h)return c?-1:ot(a).length;n=(""+n).toLowerCase(),h=!0}}l.byteLength=j;function U(a,n,i){let c=!1;if((n===void 0||n<0)&&(n=0),n>this.length||((i===void 0||i>this.length)&&(i=this.length),i<=0)||(i>>>=0,n>>>=0,i<=n))return"";for(a||(a="utf8");;)switch(a){case"hex":return he(this,n,i);case"utf8":case"utf-8":return fe(this,n,i);case"ascii":return it(this,n,i);case"latin1":case"binary":return ke(this,n,i);case"base64":return nt(this,n,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Pe(this,n,i);default:if(c)throw new TypeError("Unknown encoding: "+a);a=(a+"").toLowerCase(),c=!0}}l.prototype._isBuffer=!0;function F(a,n,i){const c=a[n];a[n]=a[i],a[i]=c}l.prototype.swap16=function(){const n=this.length;if(n%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let i=0;i<n;i+=2)F(this,i,i+1);return this},l.prototype.swap32=function(){const n=this.length;if(n%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let i=0;i<n;i+=4)F(this,i,i+3),F(this,i+1,i+2);return this},l.prototype.swap64=function(){const n=this.length;if(n%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let i=0;i<n;i+=8)F(this,i,i+7),F(this,i+1,i+6),F(this,i+2,i+5),F(this,i+3,i+4);return this},l.prototype.toString=function(){const n=this.length;return n===0?"":arguments.length===0?fe(this,0,n):U.apply(this,arguments)},l.prototype.toLocaleString=l.prototype.toString,l.prototype.equals=function(n){if(!l.isBuffer(n))throw new TypeError("Argument must be a Buffer");return this===n?!0:l.compare(this,n)===0},l.prototype.inspect=function(){let n="";const i=t.INSPECT_MAX_BYTES;return n=this.toString("hex",0,i).replace(/(.{2})/g,"$1 ").trim(),this.length>i&&(n+=" ... "),"<Buffer "+n+">"},o&&(l.prototype[o]=l.prototype.inspect),l.prototype.compare=function(n,i,c,h,y){if(me(n,Uint8Array)&&(n=l.from(n,n.offset,n.byteLength)),!l.isBuffer(n))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof n);if(i===void 0&&(i=0),c===void 0&&(c=n?n.length:0),h===void 0&&(h=0),y===void 0&&(y=this.length),i<0||c>n.length||h<0||y>this.length)throw new RangeError("out of range index");if(h>=y&&i>=c)return 0;if(h>=y)return-1;if(i>=c)return 1;if(i>>>=0,c>>>=0,h>>>=0,y>>>=0,this===n)return 0;let m=y-h,R=c-i;const W=Math.min(m,R),z=this.slice(h,y),J=n.slice(i,c);for(let Q=0;Q<W;++Q)if(z[Q]!==J[Q]){m=z[Q],R=J[Q];break}return m<R?-1:R<m?1:0};function x(a,n,i,c,h){if(a.length===0)return-1;if(typeof i=="string"?(c=i,i=0):i>2147483647?i=2147483647:i<-2147483648&&(i=-2147483648),i=+i,Rt(i)&&(i=h?0:a.length-1),i<0&&(i=a.length+i),i>=a.length){if(h)return-1;i=a.length-1}else if(i<0)if(h)i=0;else return-1;if(typeof n=="string"&&(n=l.from(n,c)),l.isBuffer(n))return n.length===0?-1:k(a,n,i,c,h);if(typeof n=="number")return n=n&255,typeof Uint8Array.prototype.indexOf=="function"?h?Uint8Array.prototype.indexOf.call(a,n,i):Uint8Array.prototype.lastIndexOf.call(a,n,i):k(a,[n],i,c,h);throw new TypeError("val must be string, number or Buffer")}function k(a,n,i,c,h){let y=1,m=a.length,R=n.length;if(c!==void 0&&(c=String(c).toLowerCase(),c==="ucs2"||c==="ucs-2"||c==="utf16le"||c==="utf-16le")){if(a.length<2||n.length<2)return-1;y=2,m/=2,R/=2,i/=2}function W(J,Q){return y===1?J[Q]:J.readUInt16BE(Q*y)}let z;if(h){let J=-1;for(z=i;z<m;z++)if(W(a,z)===W(n,J===-1?0:z-J)){if(J===-1&&(J=z),z-J+1===R)return J*y}else J!==-1&&(z-=z-J),J=-1}else for(i+R>m&&(i=m-R),z=i;z>=0;z--){let J=!0;for(let Q=0;Q<R;Q++)if(W(a,z+Q)!==W(n,Q)){J=!1;break}if(J)return z}return-1}l.prototype.includes=function(n,i,c){return this.indexOf(n,i,c)!==-1},l.prototype.indexOf=function(n,i,c){return x(this,n,i,c,!0)},l.prototype.lastIndexOf=function(n,i,c){return x(this,n,i,c,!1)};function G(a,n,i,c){i=Number(i)||0;const h=a.length-i;c?(c=Number(c),c>h&&(c=h)):c=h;const y=n.length;c>y/2&&(c=y/2);let m;for(m=0;m<c;++m){const R=parseInt(n.substr(m*2,2),16);if(Rt(R))return m;a[i+m]=R}return m}function oe(a,n,i,c){return st(ot(n,a.length-i),a,i,c)}function Oe(a,n,i,c){return st(Pt(n),a,i,c)}function Ae(a,n,i,c){return st(pt(n),a,i,c)}function le(a,n,i,c){return st(S(n,a.length-i),a,i,c)}l.prototype.write=function(n,i,c,h){if(i===void 0)h="utf8",c=this.length,i=0;else if(c===void 0&&typeof i=="string")h=i,c=this.length,i=0;else if(isFinite(i))i=i>>>0,isFinite(c)?(c=c>>>0,h===void 0&&(h="utf8")):(h=c,c=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const y=this.length-i;if((c===void 0||c>y)&&(c=y),n.length>0&&(c<0||i<0)||i>this.length)throw new RangeError("Attempt to write outside buffer bounds");h||(h="utf8");let m=!1;for(;;)switch(h){case"hex":return G(this,n,i,c);case"utf8":case"utf-8":return oe(this,n,i,c);case"ascii":case"latin1":case"binary":return Oe(this,n,i,c);case"base64":return Ae(this,n,i,c);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return le(this,n,i,c);default:if(m)throw new TypeError("Unknown encoding: "+h);h=(""+h).toLowerCase(),m=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function nt(a,n,i){return n===0&&i===a.length?e.fromByteArray(a):e.fromByteArray(a.slice(n,i))}function fe(a,n,i){i=Math.min(a.length,i);const c=[];let h=n;for(;h<i;){const y=a[h];let m=null,R=y>239?4:y>223?3:y>191?2:1;if(h+R<=i){let W,z,J,Q;switch(R){case 1:y<128&&(m=y);break;case 2:W=a[h+1],(W&192)===128&&(Q=(y&31)<<6|W&63,Q>127&&(m=Q));break;case 3:W=a[h+1],z=a[h+2],(W&192)===128&&(z&192)===128&&(Q=(y&15)<<12|(W&63)<<6|z&63,Q>2047&&(Q<55296||Q>57343)&&(m=Q));break;case 4:W=a[h+1],z=a[h+2],J=a[h+3],(W&192)===128&&(z&192)===128&&(J&192)===128&&(Q=(y&15)<<18|(W&63)<<12|(z&63)<<6|J&63,Q>65535&&Q<1114112&&(m=Q))}}m===null?(m=65533,R=1):m>65535&&(m-=65536,c.push(m>>>10&1023|55296),m=56320|m&1023),c.push(m),h+=R}return Be(c)}const xe=4096;function Be(a){const n=a.length;if(n<=xe)return String.fromCharCode.apply(String,a);let i="",c=0;for(;c<n;)i+=String.fromCharCode.apply(String,a.slice(c,c+=xe));return i}function it(a,n,i){let c="";i=Math.min(a.length,i);for(let h=n;h<i;++h)c+=String.fromCharCode(a[h]&127);return c}function ke(a,n,i){let c="";i=Math.min(a.length,i);for(let h=n;h<i;++h)c+=String.fromCharCode(a[h]);return c}function he(a,n,i){const c=a.length;(!n||n<0)&&(n=0),(!i||i<0||i>c)&&(i=c);let h="";for(let y=n;y<i;++y)h+=jn[a[y]];return h}function Pe(a,n,i){const c=a.slice(n,i);let h="";for(let y=0;y<c.length-1;y+=2)h+=String.fromCharCode(c[y]+c[y+1]*256);return h}l.prototype.slice=function(n,i){const c=this.length;n=~~n,i=i===void 0?c:~~i,n<0?(n+=c,n<0&&(n=0)):n>c&&(n=c),i<0?(i+=c,i<0&&(i=0)):i>c&&(i=c),i<n&&(i=n);const h=this.subarray(n,i);return Object.setPrototypeOf(h,l.prototype),h};function H(a,n,i){if(a%1!==0||a<0)throw new RangeError("offset is not uint");if(a+n>i)throw new RangeError("Trying to access beyond buffer length")}l.prototype.readUintLE=l.prototype.readUIntLE=function(n,i,c){n=n>>>0,i=i>>>0,c||H(n,i,this.length);let h=this[n],y=1,m=0;for(;++m<i&&(y*=256);)h+=this[n+m]*y;return h},l.prototype.readUintBE=l.prototype.readUIntBE=function(n,i,c){n=n>>>0,i=i>>>0,c||H(n,i,this.length);let h=this[n+--i],y=1;for(;i>0&&(y*=256);)h+=this[n+--i]*y;return h},l.prototype.readUint8=l.prototype.readUInt8=function(n,i){return n=n>>>0,i||H(n,1,this.length),this[n]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(n,i){return n=n>>>0,i||H(n,2,this.length),this[n]|this[n+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(n,i){return n=n>>>0,i||H(n,2,this.length),this[n]<<8|this[n+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(n,i){return n=n>>>0,i||H(n,4,this.length),(this[n]|this[n+1]<<8|this[n+2]<<16)+this[n+3]*16777216},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(n,i){return n=n>>>0,i||H(n,4,this.length),this[n]*16777216+(this[n+1]<<16|this[n+2]<<8|this[n+3])},l.prototype.readBigUInt64LE=Re(function(n){n=n>>>0,pe(n,"offset");const i=this[n],c=this[n+7];(i===void 0||c===void 0)&&se(n,this.length-8);const h=i+this[++n]*2**8+this[++n]*2**16+this[++n]*2**24,y=this[++n]+this[++n]*2**8+this[++n]*2**16+c*2**24;return BigInt(h)+(BigInt(y)<<BigInt(32))}),l.prototype.readBigUInt64BE=Re(function(n){n=n>>>0,pe(n,"offset");const i=this[n],c=this[n+7];(i===void 0||c===void 0)&&se(n,this.length-8);const h=i*2**24+this[++n]*2**16+this[++n]*2**8+this[++n],y=this[++n]*2**24+this[++n]*2**16+this[++n]*2**8+c;return(BigInt(h)<<BigInt(32))+BigInt(y)}),l.prototype.readIntLE=function(n,i,c){n=n>>>0,i=i>>>0,c||H(n,i,this.length);let h=this[n],y=1,m=0;for(;++m<i&&(y*=256);)h+=this[n+m]*y;return y*=128,h>=y&&(h-=Math.pow(2,8*i)),h},l.prototype.readIntBE=function(n,i,c){n=n>>>0,i=i>>>0,c||H(n,i,this.length);let h=i,y=1,m=this[n+--h];for(;h>0&&(y*=256);)m+=this[n+--h]*y;return y*=128,m>=y&&(m-=Math.pow(2,8*i)),m},l.prototype.readInt8=function(n,i){return n=n>>>0,i||H(n,1,this.length),this[n]&128?(255-this[n]+1)*-1:this[n]},l.prototype.readInt16LE=function(n,i){n=n>>>0,i||H(n,2,this.length);const c=this[n]|this[n+1]<<8;return c&32768?c|4294901760:c},l.prototype.readInt16BE=function(n,i){n=n>>>0,i||H(n,2,this.length);const c=this[n+1]|this[n]<<8;return c&32768?c|4294901760:c},l.prototype.readInt32LE=function(n,i){return n=n>>>0,i||H(n,4,this.length),this[n]|this[n+1]<<8|this[n+2]<<16|this[n+3]<<24},l.prototype.readInt32BE=function(n,i){return n=n>>>0,i||H(n,4,this.length),this[n]<<24|this[n+1]<<16|this[n+2]<<8|this[n+3]},l.prototype.readBigInt64LE=Re(function(n){n=n>>>0,pe(n,"offset");const i=this[n],c=this[n+7];(i===void 0||c===void 0)&&se(n,this.length-8);const h=this[n+4]+this[n+5]*2**8+this[n+6]*2**16+(c<<24);return(BigInt(h)<<BigInt(32))+BigInt(i+this[++n]*2**8+this[++n]*2**16+this[++n]*2**24)}),l.prototype.readBigInt64BE=Re(function(n){n=n>>>0,pe(n,"offset");const i=this[n],c=this[n+7];(i===void 0||c===void 0)&&se(n,this.length-8);const h=(i<<24)+this[++n]*2**16+this[++n]*2**8+this[++n];return(BigInt(h)<<BigInt(32))+BigInt(this[++n]*2**24+this[++n]*2**16+this[++n]*2**8+c)}),l.prototype.readFloatLE=function(n,i){return n=n>>>0,i||H(n,4,this.length),r.read(this,n,!0,23,4)},l.prototype.readFloatBE=function(n,i){return n=n>>>0,i||H(n,4,this.length),r.read(this,n,!1,23,4)},l.prototype.readDoubleLE=function(n,i){return n=n>>>0,i||H(n,8,this.length),r.read(this,n,!0,52,8)},l.prototype.readDoubleBE=function(n,i){return n=n>>>0,i||H(n,8,this.length),r.read(this,n,!1,52,8)};function d(a,n,i,c,h,y){if(!l.isBuffer(a))throw new TypeError('"buffer" argument must be a Buffer instance');if(n>h||n<y)throw new RangeError('"value" argument is out of bounds');if(i+c>a.length)throw new RangeError("Index out of range")}l.prototype.writeUintLE=l.prototype.writeUIntLE=function(n,i,c,h){if(n=+n,i=i>>>0,c=c>>>0,!h){const R=Math.pow(2,8*c)-1;d(this,n,i,c,R,0)}let y=1,m=0;for(this[i]=n&255;++m<c&&(y*=256);)this[i+m]=n/y&255;return i+c},l.prototype.writeUintBE=l.prototype.writeUIntBE=function(n,i,c,h){if(n=+n,i=i>>>0,c=c>>>0,!h){const R=Math.pow(2,8*c)-1;d(this,n,i,c,R,0)}let y=c-1,m=1;for(this[i+y]=n&255;--y>=0&&(m*=256);)this[i+y]=n/m&255;return i+c},l.prototype.writeUint8=l.prototype.writeUInt8=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,1,255,0),this[i]=n&255,i+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,2,65535,0),this[i]=n&255,this[i+1]=n>>>8,i+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,2,65535,0),this[i]=n>>>8,this[i+1]=n&255,i+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,4,4294967295,0),this[i+3]=n>>>24,this[i+2]=n>>>16,this[i+1]=n>>>8,this[i]=n&255,i+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,4,4294967295,0),this[i]=n>>>24,this[i+1]=n>>>16,this[i+2]=n>>>8,this[i+3]=n&255,i+4};function w(a,n,i,c,h){ge(n,c,h,a,i,7);let y=Number(n&BigInt(4294967295));a[i++]=y,y=y>>8,a[i++]=y,y=y>>8,a[i++]=y,y=y>>8,a[i++]=y;let m=Number(n>>BigInt(32)&BigInt(4294967295));return a[i++]=m,m=m>>8,a[i++]=m,m=m>>8,a[i++]=m,m=m>>8,a[i++]=m,i}function A(a,n,i,c,h){ge(n,c,h,a,i,7);let y=Number(n&BigInt(4294967295));a[i+7]=y,y=y>>8,a[i+6]=y,y=y>>8,a[i+5]=y,y=y>>8,a[i+4]=y;let m=Number(n>>BigInt(32)&BigInt(4294967295));return a[i+3]=m,m=m>>8,a[i+2]=m,m=m>>8,a[i+1]=m,m=m>>8,a[i]=m,i+8}l.prototype.writeBigUInt64LE=Re(function(n,i=0){return w(this,n,i,BigInt(0),BigInt("0xffffffffffffffff"))}),l.prototype.writeBigUInt64BE=Re(function(n,i=0){return A(this,n,i,BigInt(0),BigInt("0xffffffffffffffff"))}),l.prototype.writeIntLE=function(n,i,c,h){if(n=+n,i=i>>>0,!h){const W=Math.pow(2,8*c-1);d(this,n,i,c,W-1,-W)}let y=0,m=1,R=0;for(this[i]=n&255;++y<c&&(m*=256);)n<0&&R===0&&this[i+y-1]!==0&&(R=1),this[i+y]=(n/m>>0)-R&255;return i+c},l.prototype.writeIntBE=function(n,i,c,h){if(n=+n,i=i>>>0,!h){const W=Math.pow(2,8*c-1);d(this,n,i,c,W-1,-W)}let y=c-1,m=1,R=0;for(this[i+y]=n&255;--y>=0&&(m*=256);)n<0&&R===0&&this[i+y+1]!==0&&(R=1),this[i+y]=(n/m>>0)-R&255;return i+c},l.prototype.writeInt8=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,1,127,-128),n<0&&(n=255+n+1),this[i]=n&255,i+1},l.prototype.writeInt16LE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,2,32767,-32768),this[i]=n&255,this[i+1]=n>>>8,i+2},l.prototype.writeInt16BE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,2,32767,-32768),this[i]=n>>>8,this[i+1]=n&255,i+2},l.prototype.writeInt32LE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,4,2147483647,-2147483648),this[i]=n&255,this[i+1]=n>>>8,this[i+2]=n>>>16,this[i+3]=n>>>24,i+4},l.prototype.writeInt32BE=function(n,i,c){return n=+n,i=i>>>0,c||d(this,n,i,4,2147483647,-2147483648),n<0&&(n=4294967295+n+1),this[i]=n>>>24,this[i+1]=n>>>16,this[i+2]=n>>>8,this[i+3]=n&255,i+4},l.prototype.writeBigInt64LE=Re(function(n,i=0){return w(this,n,i,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),l.prototype.writeBigInt64BE=Re(function(n,i=0){return A(this,n,i,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function C(a,n,i,c,h,y){if(i+c>a.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("Index out of range")}function D(a,n,i,c,h){return n=+n,i=i>>>0,h||C(a,n,i,4),r.write(a,n,i,c,23,4),i+4}l.prototype.writeFloatLE=function(n,i,c){return D(this,n,i,!0,c)},l.prototype.writeFloatBE=function(n,i,c){return D(this,n,i,!1,c)};function V(a,n,i,c,h){return n=+n,i=i>>>0,h||C(a,n,i,8),r.write(a,n,i,c,52,8),i+8}l.prototype.writeDoubleLE=function(n,i,c){return V(this,n,i,!0,c)},l.prototype.writeDoubleBE=function(n,i,c){return V(this,n,i,!1,c)},l.prototype.copy=function(n,i,c,h){if(!l.isBuffer(n))throw new TypeError("argument should be a Buffer");if(c||(c=0),!h&&h!==0&&(h=this.length),i>=n.length&&(i=n.length),i||(i=0),h>0&&h<c&&(h=c),h===c||n.length===0||this.length===0)return 0;if(i<0)throw new RangeError("targetStart out of bounds");if(c<0||c>=this.length)throw new RangeError("Index out of range");if(h<0)throw new RangeError("sourceEnd out of bounds");h>this.length&&(h=this.length),n.length-i<h-c&&(h=n.length-i+c);const y=h-c;return this===n&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(i,c,h):Uint8Array.prototype.set.call(n,this.subarray(c,h),i),y},l.prototype.fill=function(n,i,c,h){if(typeof n=="string"){if(typeof i=="string"?(h=i,i=0,c=this.length):typeof c=="string"&&(h=c,c=this.length),h!==void 0&&typeof h!="string")throw new TypeError("encoding must be a string");if(typeof h=="string"&&!l.isEncoding(h))throw new TypeError("Unknown encoding: "+h);if(n.length===1){const m=n.charCodeAt(0);(h==="utf8"&&m<128||h==="latin1")&&(n=m)}}else typeof n=="number"?n=n&255:typeof n=="boolean"&&(n=Number(n));if(i<0||this.length<i||this.length<c)throw new RangeError("Out of range index");if(c<=i)return this;i=i>>>0,c=c===void 0?this.length:c>>>0,n||(n=0);let y;if(typeof n=="number")for(y=i;y<c;++y)this[y]=n;else{const m=l.isBuffer(n)?n:l.from(n,h),R=m.length;if(R===0)throw new TypeError('The value "'+n+'" is invalid for argument "value"');for(y=0;y<c-i;++y)this[y+i]=m[y%R]}return this};const B={};function L(a,n,i){B[a]=class extends i{constructor(){super(),Object.defineProperty(this,"message",{value:n.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${a}]`,this.stack,delete this.name}get code(){return a}set code(h){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:h,writable:!0})}toString(){return`${this.name} [${a}]: ${this.message}`}}}L("ERR_BUFFER_OUT_OF_BOUNDS",function(a){return a?`${a} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),L("ERR_INVALID_ARG_TYPE",function(a,n){return`The "${a}" argument must be of type number. Received type ${typeof n}`},TypeError),L("ERR_OUT_OF_RANGE",function(a,n,i){let c=`The value of "${a}" is out of range.`,h=i;return Number.isInteger(i)&&Math.abs(i)>2**32?h=M(String(i)):typeof i=="bigint"&&(h=String(i),(i>BigInt(2)**BigInt(32)||i<-(BigInt(2)**BigInt(32)))&&(h=M(h)),h+="n"),c+=` It must be ${n}. Received ${h}`,c},RangeError);function M(a){let n="",i=a.length;const c=a[0]==="-"?1:0;for(;i>=c+4;i-=3)n=`_${a.slice(i-3,i)}${n}`;return`${a.slice(0,i)}${n}`}function te(a,n,i){pe(n,"offset"),(a[n]===void 0||a[n+i]===void 0)&&se(n,a.length-(i+1))}function ge(a,n,i,c,h,y){if(a>i||a<n){const m=typeof n=="bigint"?"n":"";let R;throw y>3?n===0||n===BigInt(0)?R=`>= 0${m} and < 2${m} ** ${(y+1)*8}${m}`:R=`>= -(2${m} ** ${(y+1)*8-1}${m}) and < 2 ** ${(y+1)*8-1}${m}`:R=`>= ${n}${m} and <= ${i}${m}`,new B.ERR_OUT_OF_RANGE("value",R,a)}te(c,h,y)}function pe(a,n){if(typeof a!="number")throw new B.ERR_INVALID_ARG_TYPE(n,"number",a)}function se(a,n,i){throw Math.floor(a)!==a?(pe(a,i),new B.ERR_OUT_OF_RANGE(i||"offset","an integer",a)):n<0?new B.ERR_BUFFER_OUT_OF_BOUNDS:new B.ERR_OUT_OF_RANGE(i||"offset",`>= ${i?1:0} and <= ${n}`,a)}const qe=/[^+/0-9A-Za-z-_]/g;function ht(a){if(a=a.split("=")[0],a=a.trim().replace(qe,""),a.length<2)return"";for(;a.length%4!==0;)a=a+"=";return a}function ot(a,n){n=n||1/0;let i;const c=a.length;let h=null;const y=[];for(let m=0;m<c;++m){if(i=a.charCodeAt(m),i>55295&&i<57344){if(!h){if(i>56319){(n-=3)>-1&&y.push(239,191,189);continue}else if(m+1===c){(n-=3)>-1&&y.push(239,191,189);continue}h=i;continue}if(i<56320){(n-=3)>-1&&y.push(239,191,189),h=i;continue}i=(h-55296<<10|i-56320)+65536}else h&&(n-=3)>-1&&y.push(239,191,189);if(h=null,i<128){if((n-=1)<0)break;y.push(i)}else if(i<2048){if((n-=2)<0)break;y.push(i>>6|192,i&63|128)}else if(i<65536){if((n-=3)<0)break;y.push(i>>12|224,i>>6&63|128,i&63|128)}else if(i<1114112){if((n-=4)<0)break;y.push(i>>18|240,i>>12&63|128,i>>6&63|128,i&63|128)}else throw new Error("Invalid code point")}return y}function Pt(a){const n=[];for(let i=0;i<a.length;++i)n.push(a.charCodeAt(i)&255);return n}function S(a,n){let i,c,h;const y=[];for(let m=0;m<a.length&&!((n-=2)<0);++m)i=a.charCodeAt(m),c=i>>8,h=i%256,y.push(h),y.push(c);return y}function pt(a){return e.toByteArray(ht(a))}function st(a,n,i,c){let h;for(h=0;h<c&&!(h+i>=n.length||h>=a.length);++h)n[h+i]=a[h];return h}function me(a,n){return a instanceof n||a!=null&&a.constructor!=null&&a.constructor.name!=null&&a.constructor.name===n.name}function Rt(a){return a!==a}const jn=function(){const a="0123456789abcdef",n=new Array(256);for(let i=0;i<16;++i){const c=i*16;for(let h=0;h<16;++h)n[c+h]=a[i]+a[h]}return n}();function Re(a){return typeof BigInt>"u"?Dn:a}function Dn(){throw new Error("BigInt not supported")}})(Jr);var Xr={exports:{}},Y=Xr.exports={},be,we;function Xt(){throw new Error("setTimeout has not been defined")}function Zt(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?be=setTimeout:be=Xt}catch{be=Xt}try{typeof clearTimeout=="function"?we=clearTimeout:we=Zt}catch{we=Zt}})();function Zr(t){if(be===setTimeout)return setTimeout(t,0);if((be===Xt||!be)&&setTimeout)return be=setTimeout,setTimeout(t,0);try{return be(t,0)}catch{try{return be.call(null,t,0)}catch{return be.call(this,t,0)}}}function ei(t){if(we===clearTimeout)return clearTimeout(t);if((we===Zt||!we)&&clearTimeout)return we=clearTimeout,clearTimeout(t);try{return we(t)}catch{try{return we.call(null,t)}catch{return we.call(this,t)}}}var _e=[],Je=!1,Le,dt=-1;function ti(){!Je||!Le||(Je=!1,Le.length?_e=Le.concat(_e):dt=-1,_e.length&&en())}function en(){if(!Je){var t=Zr(ti);Je=!0;for(var e=_e.length;e;){for(Le=_e,_e=[];++dt<e;)Le&&Le[dt].run();dt=-1,e=_e.length}Le=null,Je=!1,ei(t)}}Y.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];_e.push(new tn(t,e)),_e.length===1&&!Je&&Zr(en)};function tn(t,e){this.fun=t,this.array=e}tn.prototype.run=function(){this.fun.apply(null,this.array)};Y.title="browser";Y.browser=!0;Y.env={};Y.argv=[];Y.version="";Y.versions={};function Ce(){}Y.on=Ce;Y.addListener=Ce;Y.once=Ce;Y.off=Ce;Y.removeListener=Ce;Y.removeAllListeners=Ce;Y.emit=Ce;Y.prependListener=Ce;Y.prependOnceListener=Ce;Y.listeners=function(t){return[]};Y.binding=function(t){throw new Error("process.binding is not supported")};Y.cwd=function(){return"/"};Y.chdir=function(t){throw new Error("process.chdir is not supported")};Y.umask=function(){return 0};var ri=Xr.exports;(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const e=Jr,r=ri,o=f=>f&&f.__esModule?f:{default:f},s=o(r),u=globalThis||void 0||self;Object.defineProperty(t,"Buffer",{enumerable:!0,get:()=>e.Buffer}),Object.defineProperty(t,"process",{enumerable:!0,get:()=>s.default}),t.global=u})(O);class ni{}window.slStore=Object.create(null);class Ot{store;name;constructor(e,r){this.store=e,this.name=r}getStore(){return this.store}}const ii=t=>{const e=Object.keys(t);return Me.computed(e.map(r=>t[r].getStore()),(...r)=>Object.fromEntries(e.map((o,s)=>[o,r[s]])))};class ut extends Ot{getValues=()=>this.getStore().get();getValue=e=>this.getStore().get()[e];setValue=(e,r)=>this.getStore().setKey(e,r);subscribe=(...e)=>this.getStore().subscribe(...e);unsubscribe=()=>this.getStore().off()}const Ue=t=>Me.map(t);var Te;(function(t){t.ORGANIZATION="ORGANIZATION",t.STREAM="STREAM"})(Te||(Te={}));const oi={[ce.SdkOverlayType.BETTING]:"betting",[ce.SdkOverlayType.GAMES]:"games",[ce.SdkOverlayType.PUBLIC_CHAT]:"publicChat",[ce.SdkOverlayType.TWITTER]:"twitter"};var $e;(function(t){t.Ready="ready",t.Suspended="suspended"})($e||($e={}));class fr{status;source;config;settings;listeners=new Set;settingsKey;constructor({settings:e,...r},o){this.settingsKey=oi[r.type],this.status=Me.atom($e.Suspended),this.config=new ut(Ue(r),`feature:config:${this.settingsKey}`),this.settingsKey!==void 0&&e?.overlaySettings.case===this.settingsKey?this.settings=new ut(Ue(e.overlaySettings.value),`feature:settings:${this.settingsKey}`):this.settings=new ut(Ue({}),`feature:settings:${this.settingsKey}`),this.source=o}get featureConfig(){return this.config.getStore()}get featureSettings(){return this.settings.getStore()}registerEventListener(e){this.listeners.add(e)}enable=()=>{this.status.set($e.Ready)};disable=()=>{this.status.set($e.Suspended)};setFeatureConfig=({settings:e,...r})=>{let o;for(o in r)this.config.setValue(o,r[o]);if(e?.overlaySettings.case===this.settingsKey){const s=e.overlaySettings.value;if(s!==void 0){let u;for(u in s)console.log(u,s[u]),s[u]!==0&&s[u]!==""&&this.settings.setValue(u,s[u])}}};update=(e,r)=>{this.source===Te.STREAM&&r===Te.ORGANIZATION||(this.setFeatureConfig(e),this.source=r)};fireEvent(e){for(const r of this.listeners.values())try{r.onEvent(e)}catch(o){console.error(o)}}}class ye extends Ot{getValue=()=>this.getStore().get();getValues(){throw new Error("not implemented")}setValue=e=>this.getStore().set(e);subscribe=e=>this.getStore().subscribe(e);unsubscribe=()=>this.getStore().off();listen(e){return this.getStore().listen(e)}get(){return this.getStore().get()}}const ne=t=>Me.atom(t);class de extends Ot{atomStore;constructor(e,r,o){super(e,`api:${r}`),this.atomStore=Me.atom(),o&&e.subscribe(s=>{this.atomStore.set(o(s))})}getAtomStore=()=>this.atomStore;getValue=async()=>{const e=this.getStore();if(e.value===void 0)throw new Error("no store");return await e.value.promise,e.get().data};getValues=()=>{throw new Error("not implemented")};setValue=e=>this.getStore().set({loading:!1,data:e?.data});subscribe=e=>this.getStore().subscribe(e);unsubscribe=()=>{throw new Error("not implemented")};invalidate=()=>{this.store.invalidate()};listen=e=>this.getStore().listen(e);get(){throw new Error("not implemented")}key=()=>this.getStore().key;off=()=>this.getStore().off()}async function*si(t,e){for await(const r of e){t.response.message=r,t.received_at=Date.now();const o={type:"__GRPC_DEVTOOLS_EXTENSION__",data:t};window.postMessage(o),yield r}}const ai=()=>t=>async e=>{const r={name:e.url,request:{},response:{}};r.request.header=Object.fromEntries(e.header.entries()),r.sent_at=Date.now();try{const o=await t(e);if(r.received_at=Date.now(),r.stream=o.stream,r.response.header=Object.fromEntries(o.header.entries()),r.response.trailer=Object.fromEntries(o.trailer.entries()),o.stream)return{...o,message:si(r,o.message)};{r.request.message=e.message,r.response.message=o.message,r.latency=r.received_at-r.sent_at;const s={type:"__GRPC_DEVTOOLS_EXTENSION__",data:r};window.postMessage(s)}return o}catch(o){r.received_at=Date.now(),r.request.message=e.message,r.response.trailer={"grpc-status":o.code,"grpc-message":o.rawMessage},r.response.message=o.rawMessage,r.latency=r.received_at-r.sent_at;const s={type:"__GRPC_DEVTOOLS_EXTENSION__",data:r};throw window.postMessage(s),o}};window.dispatchEvent(new CustomEvent("grpc_devtools_loaded"));var Ee;(function(t){t.Init="init",t.Ready="ready",t.Connecting="connecting",t.Connected="connected",t.Disconnected="disconnected",t.Failed="failed",t.Reconnecting="reconnecting"})(Ee||(Ee={}));class ui{params;stream;method;name;headers;listeners;state;store;constructor(e,r,o,s){const u={status:Ee.Init,ts:new Date,log:[]};this.state=new ut(Ue(u),`subscription:${s.name}:state`),this.name=s.name,this.headers=e,this.listeners=new Map,this.params=o,this.method=r,s.withStore&&(this.store=new ye(ne(null),`subscription:${s.name}:store`)),"subscribe"in o&&typeof o.subscribe=="function"&&o.subscribe(()=>{this.reconnect()}),this.updateState(Ee.Ready)}updateState=e=>{this.state.setValue("status",e),this.state.setValue("ts",new Date),this.addStateLog(`status => ${e}`)};addStateLog=e=>{const r=this.state.getStore().get().log;this.state.setValue("log",[...r,`${new Date().toLocaleString()}: ${e}`])};addListener=(e,r)=>this.listeners.has(e)?(this.addStateLog(`listener '${e}' not added`),!1):(this.listeners.set(e,r),this.addStateLog(`listener '${e}' added`),!0);removeListener=e=>{this.listeners.delete(e),this.addStateLog(`listener '${e}' removed`)};connect=()=>{this.updateState(Ee.Connecting),this.stream&&(this.addStateLog("disconnect prev connection"),this.stream());const e="get"in this.params&&typeof this.params.get=="function"?this.params.get():this.params;this.stream=this.method(e,this.onData,this.onStreamError,{headers:this.headers.getValues()}),this.updateState(Ee.Connected)};disconnect=()=>{this.stream&&this.stream(),this.listeners.clear(),this.updateState(Ee.Disconnected)};reconnect=()=>{this.updateState(Ee.Reconnecting),this.connect()};getStore=()=>this.store?.getStore();onData=e=>{this.addStateLog(`received data => ${JSON.stringify(e)}`),this.store&&this.store.setValue(e);for(const[,r]of this.listeners)r(e);this.addStateLog(`data routed to ${this.listeners.size} listeners`)};onStreamError=e=>{e!==void 0&&(e.code!==Yt.Code.Canceled&&e.rawMessage!=="[canceled] BodyStreamBuffer was aborted"?(this.updateState(Ee.Failed),this.state.setValue("error",e)):this.disconnect())}}class ci{toJsonOptions={emitDefaultValues:!1,enumAsInteger:!0,useProtoFieldName:!1};transport;nanoquery;host;interceptors=[];$headers;clients;callbackClients;subscriptions;constructor(e){this.host=e,this.$headers=new ut(Ue({"sl-device-id":O.process?.env?.NX_DEVICE_ID||"sdk-web-dev"}),"transport:headers"),this.initInterceptors(),this.clients=new Map,this.callbackClients=new Map,this.subscriptions=new Map;const[r,o,s]=Mn.nanoquery();this.nanoquery={createFetcherStore:r,createMutatorStore:o,utils:s},this.transport=Vn.createGrpcWebTransport({baseUrl:e,interceptors:this.interceptors,useBinaryFormat:!0})}addSubscription=(e,r,o)=>{const s=this.subscriptions.get(r);if(s)return s;const u=new ui(this.$headers,e,r,o);return this.subscriptions.set(r,u),u};removeSubscription=e=>{e.disconnect(),this.subscriptions.delete(e.params)};disconnect=()=>{for(const[e,r]of this.subscriptions)r.disconnect(),this.subscriptions.delete(e)};registerInterceptor=e=>{this.interceptors.push(e)};removeInterceptor=e=>{this.interceptors=this.interceptors.filter(r=>r!==e)};getClient=e=>{const r=e.typeName;if(this.clients.has(r))return this.clients.get(r);const o=Yt.createPromiseClient(e,this.transport);return this.clients.set(r,o),o};getCallbackClient=e=>{const r=e.typeName;if(this.callbackClients.has(r))return this.callbackClients.get(r);const o=Yt.createCallbackClient(e,this.transport);return this.callbackClients.set(r,o),o};createPromiseClient=(e,{params:r=[],method:o})=>{const s=this.getClient(e),u=e.methods[o].name,f=[e.typeName,u.charAt(0).toLowerCase()+u.slice(1),...Array.isArray(r)?r:[r]],l=[e.typeName,u.charAt(0).toLowerCase()+u.slice(1)];return{client:s,queryKey:f,queryKeyStr:l.join("")}};createCallbackClient=e=>({client:this.getCallbackClient(e)});setSdkKey=e=>{this.$headers.setValue("sdk",e)};setAuth=(e,r)=>{this.$headers.setValue("authorization",e),this.$headers.setValue("sl-user-id",r)};setHeader=(e,r)=>this.$headers.setValue(e,r);getHeader=e=>this.$headers.getValue(e);getHeaders=()=>this.$headers.getValues();initInterceptors=()=>{if(this.interceptors.length!==0)return;const e=r=>o=>{const s=this.$headers.getValues();for(const u in s)o.header.set(u,s[u]);return r(o)};this.interceptors.push(e),this.interceptors.push(ai())}}const li=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(qn.Events,{method:"retrieveEventId",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>{if(!f||typeof f!="string")return"";try{return(await r.retrieveEventId({id:f})).data?.id||""}catch{return""}}})},fi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(_t.Client,{method:"getStream",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>f?(await r.getStream({id:f})).data?.attributes:void 0})},hi=(t,e)=>{const{queryKey:r,client:o}=e.createPromiseClient(Kr.Users,{method:"me",params:[t]});return e.nanoquery.createFetcherStore(r,{fetcher:()=>o.me({})})},pi=t=>{const{client:e}=t.createPromiseClient(Kr.Users,{method:"bypassAuth"});return({userKey:r,schema:o,init:s})=>e.bypassAuth({userKey:r,schema:o,init:s})},di=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(_t.Client,{method:"get",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async()=>(await r.get({})).data?.attributes})},yi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(_t.Client,{method:"getOrganization",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async()=>{const s=await r.getOrganization({});return s.data?{...s.data.attributes,id:s.data.id}:void 0}})},gi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(_t.Client,{method:"getOrganizationAdvertising",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async()=>(await r.getOrganizationAdvertising({})).data?.attributes})},mi=(t,e,r)=>{t.transport=new ci(e.host),t.sdk.host=t.transport.host,t.transport.setSdkKey(e.sdkKey),r()};class hr{delimiter=":";prefix;constructor(e="main"){this.prefix=`sl-sdk${this.delimiter}${e}`}clear=()=>{for(const e in window.localStorage)e.startsWith(this.prefix)&&window.localStorage.removeItem(e)};generateKey=e=>`${this.prefix}${this.delimiter}${e.join(this.delimiter)}`;write=(...e)=>{const r=e.pop()||"";window.localStorage.setItem(this.generateKey(e),r)};read=(...e)=>{const r=window.localStorage.getItem(this.generateKey(e));return r===null?void 0:r};remove=(...e)=>{window.localStorage.removeItem(this.generateKey(e))}}var Ie;(function(t){t.SCHEMA="schema",t.EXTERNAL_TOKEN="eToken",t.TOKEN="token"})(Ie||(Ie={}));class He extends hr{constructor(){super("user")}setSchema=e=>{this.write(Ie.SCHEMA,e)};getSchema=()=>this.read(Ie.SCHEMA);setToken=e=>{this.write(Ie.TOKEN,e)};getToken=()=>this.read(Ie.TOKEN);setExternalToken=e=>{this.write(Ie.EXTERNAL_TOKEN,e)};getExternalToken=()=>this.read(Ie.EXTERNAL_TOKEN);removeToken=()=>{this.remove(Ie.TOKEN)}}var Fe;(function(t){t.DISABLED="disabled",t.INITIALIZATION="initialization",t.READY="ready",t.FAILED="failed",t.SUSPENDED="suspended"})(Fe||(Fe={}));const bi=t=>{const e=new He,r=new ye(ne(e.getExternalToken()),"userKey"),o=new ye(ne(e.getToken()),"userToken"),s=new de(hi(o.getStore(),t),"user",f=>f?.data?.data?.id),u=new de(di(o.getStore(),t),"userSettings");return{userKey:r,userToken:o,user:s,userSettings:u}},wi=t=>{const e=new ye(ne(void 0),"providerStreamId"),r=new de(li(e.getStore(),t),"slStreamId",s=>s?.data),o=new de(fi(r.getAtomStore(),t),"streamSettings");return r.getAtomStore().listen(s=>{(s===""||s===void 0)&&o.getStore().mutate(void 0)}),{providerStreamId:e,slStreamId:r,streamSettings:o}},vi=t=>{const e=new ye(ne(void 0),"enabled"),r=new ye(ne(Fe.DISABLED),"status"),o=new de(yi(e.getStore(),t),"organizationSettings",l=>l?.data?.id),s=new de(gi(o.getAtomStore(),t),"organizationAdvertising"),u=bi(t),f=wi(t);return{enabled:e,status:r,providerStreamId:f.providerStreamId,slStreamId:f.slStreamId,streamSettings:f.streamSettings,user:u.user,userKey:u.userKey,userToken:u.userToken,userSettings:u.userSettings,organizationSettings:o,organizationAdvertising:s}};class Si extends Ot{stores;constructor(e){const r=vi(e),o=ii(r);super(o,"core"),this.stores=r}getValue(){throw new Error("Not implemented")}getValues(){return this.stores}setValue(){throw new Error("Not implemented")}subscribe=e=>{let r;for(r in this.stores){const o=e[r];r in e&&o!==void 0&&this.stores[r].subscribe(e[r])}};unsubscribe=()=>this.getStore().off()}class Ai extends ni{$coreStore;transport;bypassLogin;constructor(e,r){super(),this.$coreStore=e,this.transport=r,this.bypassLogin=pi(this.transport),this.connect()}me=async()=>(this.$coreStore.getValues().user.invalidate(),(await this.$coreStore.getValues().user.getValue())?.data);login=async(e,r)=>{this.$coreStore.getValues().userKey.setValue(r);const o=await this.bypassLogin({schema:e,userKey:r,init:!1}),s=o.meta?.jwt,u=o.data?.id;if(!s||!u)throw new Error("internal: token missing");return this.$coreStore.getValues().user.getStore().mutate(o),this.saveUser(s,u),s};isAuthenticated=()=>this.me();logout=()=>{this.$coreStore.getValues().user.setValue(),this.$coreStore.getValues().userKey.setValue(),this.$coreStore.getValues().userToken.setValue(),this.transport.setAuth("",""),new He().clear()};softLogout=()=>{const e=new He;this.$coreStore.getValues().user.setValue(),this.$coreStore.getValues().userToken.setValue(),this.transport.setAuth("",""),e.setToken(""),this.reLogin()};reLogin=()=>{const e=new He,r=e.getToken(),o=e.getExternalToken();if(this.$coreStore.getValues().userKey.setValue(o),this.$coreStore.getValues().userToken.setValue(r),r)return this.saveUser(r,""),this.me().then(s=>{if(console.log("user",s),s?.id){const u=s.id;this.saveUser(r,u)}});if(o&&!r){const s=e.getSchema();s&&o&&this.login(s,o).catch(()=>{this.logout()})}};saveUser=(e,r)=>{this.transport.setAuth(e,r),this.$coreStore.getValues().userToken.setValue(e),new He().setToken(e)};connect=()=>{this.transport.registerInterceptor(e=>async r=>{try{return await e(r)}catch(o){throw o.code&&(o.code===7||o.code===16)&&this.transport.getHeader("authorization")&&this.softLogout(),o}})}}const at=new He,Ei=(t,e,r)=>{t.auth=new Ai(t.store,t.transport),t.stores.status.listen(o=>{o===Fe.READY&&t.auth.reLogin()}),t.sdk.authorizationBypass=async(o,s)=>{at.getSchema()===o&&at.getExternalToken()===s&&t.transport.getHeader("authorization")||(await t.auth.login(o,s),at.setSchema(o),at.setExternalToken(s))},t.sdk.logout=()=>{t.auth.logout(),at.clear()},t.sdk.getUserStore=()=>t.stores.user.getStore(),t.sdk.isUserAuthorized=()=>t.auth.isAuthenticated(),r()},Ii=(t,e,r)=>{t.store=new Si(t.transport),t.stores=t.store.getValues(),t.sdk.enabled=t.stores.enabled.getStore(),t.sdk.status=t.stores.status.getStore(),t.sdk.sdkStore=t.store.getStore(),t.sdk.organizationStore=()=>t.stores.organizationSettings.getStore(),t.sdk.streamStore=()=>t.stores.streamSettings.getStore(),t.storeUnsubscribe=()=>{t.store.unsubscribe()},r()},Ti=(t,e,r)=>{t.sdk=Object.create(null),t.sdk.initializeApp=async()=>{if(t.stores.enabled.get()==="on")return{enabled:!0};t.storeSubscribe(),t.stores.enabled.setValue("on"),t.stores.status.setValue(Fe.INITIALIZATION);try{const o=await t.stores.organizationSettings.getValue();return o?(t.stores.status.setValue(Fe.READY),{enabled:!!o}):(t.stores.status.setValue(Fe.FAILED),{err:"failed"})}catch(o){return t.stores.enabled.setValue(),t.stores.status.setValue(Fe.FAILED),{err:`${o}`}}},t.sdk.disableApp=()=>{t.stores.enabled.get()==="on"&&(t.stores.enabled.setValue(),t.stores.status.setValue(Fe.DISABLED),t.storeUnsubscribe())},t.sdk.createEventSession=o=>{t.stores.providerStreamId.setValue(o)},r()},Fi=Qn.pino({level:"trace"}),rn=(t,e)=>Fi.child({name:t},e),_i=(t,e,r)=>{const{client:o,queryKey:s}=r.createPromiseClient(Hr.Leaderboard,{method:"summary",params:[t,e]});return r.nanoquery.createFetcherStore(s,{fetcher:async(u,f,l,p)=>(await o.summary({eventId:l,userId:p})).data?.attributes})},Ci=t=>{const{client:e}=t.createPromiseClient(Hr.Leaderboard,{method:"list"});return r=>e.list(r)},Oi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(Se.Feed,{method:"get",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>(await r.get({eventId:f})).data?.attributes})},xi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(Se.Feed,{method:"syncQuestion",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>f?(await r.syncQuestion({filter:{eventId:f}})).data?.attributes:void 0})},Bi=(t,e)=>{const{client:r}=e.createCallbackClient(Se.Feed),o=Me.atom({eventId:t.get()||"",feedId:""});return t.subscribe((u="")=>{o.set({eventId:u,feedId:""})}),e.addSubscription(r.subscription,o,{name:"feedSubscription"})},ki=(t,e)=>{const{client:r}=e.createCallbackClient(Se.Feed);return e.addSubscription(r.questionSubscription,{questionId:t},{name:"questionSubscription"})},nn=async(t,e)=>{const{client:r}=e.createPromiseClient(Se.Feed,{method:"questionByUser",params:[t]});return(await r.questionByUser({questionId:t})).data?.attributes?.question},Pi=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(Se.Feed,{method:"list",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>f?(await r.list({eventId:f})).data:[]})},Ri=(t,e)=>{const{client:r,queryKey:o}=e.createPromiseClient(Se.Feed,{method:"insightHistory",params:[t]});return e.nanoquery.createFetcherStore(o,{fetcher:async(s,u,f)=>f?(await r.insightHistory({eventId:f})).data?.map(({attributes:p})=>p):void 0})};var pr={exports:{}};const Ni=Object.getPrototypeOf({});function dr(t){function e(I){return I!=="constructor"&&I!=="prototype"&&I!=="__proto__"}function r(I){let _=0;const j=I.length,U=new Array(j);for(_=0;_<j;++_)U[_]=T(I[_]);return U}function o(I){const _={};if(p&&Object.getPrototypeOf(I)!==Ni)return p(I);const j=l(I);let U,F,x;for(U=0,F=j.length;U<F;++U)e(x=j[U])&&(_[x]=T(I[x]));return _}function s(I,_){const j=I.length,U=_.length;let F=0;const x=new Array(j+U);for(F=0;F<j;++F)x[F]=T(I[F]);for(F=0;F<U;++F)x[F+j]=T(_[F]);return x}const u=Object.prototype.propertyIsEnumerable;function f(I){const _=Object.keys(I),j=Object.getOwnPropertySymbols(I);for(let U=0,F=j.length;U<F;++U)u.call(I,j[U])&&_.push(j[U]);return _}const l=t&&t.symbols?f:Object.keys,p=typeof t?.cloneProtoObject=="function"?t.cloneProtoObject:void 0;function v(I){return typeof I=="object"&&I!==null&&!(I instanceof RegExp)&&!(I instanceof Date)}function g(I){return typeof I!="object"||I===null}const b=typeof O.Buffer<"u"?I=>typeof I!="object"||I===null||I instanceof RegExp||I instanceof Date||I instanceof O.Buffer:I=>typeof I!="object"||I===null||I instanceof RegExp||I instanceof Date,E=t&&typeof t.mergeArray=="function"?t.mergeArray({clone:T,deepmerge:P,getKeys:l,isMergeableObject:v}):s;function T(I){return v(I)?Array.isArray(I)?r(I):o(I):I}function N(I,_){const j={},U=l(I),F=l(_);let x,k,G;for(x=0,k=U.length;x<k;++x)e(G=U[x])&&F.indexOf(G)===-1&&(j[G]=T(I[G]));for(x=0,k=F.length;x<k;++x)e(G=F[x])&&(G in I&&(U.indexOf(G)!==-1&&(j[G]=P(I[G],_[G])),!0)||(j[G]=T(_[G])));return j}function P(I,_){const j=Array.isArray(_),U=Array.isArray(I);return g(_)?_:b(I)?T(_):j&&U?E(I,_):j!==U?T(_):N(I,_)}function K(){switch(arguments.length){case 0:return{};case 1:return T(arguments[0]);case 2:return P(arguments[0],arguments[1])}let I;for(let _=0,j=arguments.length;_<j;++_)I=P(I,arguments[_]);return I}return t&&t.all?K:P}pr.exports=dr;pr.exports.default=dr;var Li=pr.exports.deepmerge=dr;const Ui=t=>(e,r)=>{let o=0;const s=e.length,u=r.length,f=Math.max(s,u),l=new Array(f);for(o=0;o<f;++o)o<u?l[o]=t.deepmerge(e[o],r[o]):l[o]=t.clone(e[o]);return l},$i=Li({mergeArray:Ui}),ji=(t,e,r)=>{const o=Me.computed([e,r],(f,l)=>{if(f&&l.data)return l.data.find(p=>p.id===f)}),s=Ue({data:void 0,loading:void 0,error:void 0});return o.subscribe(async f=>{if(f&&f.type==="question"){s.setKey("loading",!0);const l=await nn(f.id,t);s.set({data:l,loading:!1});return}s.set({data:void 0,loading:!1})}),{$store:o,$extendedStore:s,updateExtendedQuestion:f=>{const l=s.get().data;if(l)for(const p of f?.answers||[])p.youVoted!==!0&&delete p.youVoted;s.set({data:$i(l,f)})}}},on=t=>(t.gamification||(t.gamification=new Di(t)),t.gamification);class Di{slStreamId;organizationId;userId;openedQuestionId;openedQuestion;activeQuestionId;feedList;moderationId;moderation;feedSubscription;questionSubscription;notifications;log;constructor(e){if(e.gamification)throw new Error("GamificationBackground Singleton error");this.log=rn("gamification-background"),this.slStreamId=e.stores.slStreamId.getAtomStore(),this.organizationId=e.stores.organizationSettings.getAtomStore(),this.userId=e.stores.user.getAtomStore(),this.moderationId=new ye(ne(void 0),"moderationId").getStore(),this.openedQuestionId=new ye(ne(void 0),"openedQuestionId").getStore(),this.notifications=e.notifications,this.moderation=new de(Oi(this.slStreamId,e.transport),"gamification:moderation"),this.feedList=new de(Pi(this.slStreamId,e.transport),"gamification:feedList"),this.activeQuestionId=new de(xi(this.slStreamId,e.transport),"gamification:activeQuestionId"),this.openedQuestion=ji(e.transport,this.openedQuestionId,this.feedList.getStore()),this.openedQuestionId.listen(r=>{this.log.debug({questionId:r},"received question"),r?(this.questionSubscription=ki(r,e.transport),this.questionSubscription.addListener("feed-subscription-opened-question",o=>{window.requestAnimationFrame(()=>{this.openedQuestion.updateExtendedQuestion(o.data?.attributes?.question)})}),this.questionSubscription.connect()):(this.log.info("cleanup on close question"),this.questionSubscription!==void 0&&(e.transport.removeSubscription(this.questionSubscription),this.questionSubscription=void 0))}),this.feedSubscription=Bi(this.slStreamId,e.transport),this.feedSubscription.addListener("feed-subscription-active-question",r=>{window.requestAnimationFrame(()=>{const o=this.activeQuestionId.getStore();o&&o.mutate(r.data?.attributes)})})}getCurrentSessionId=e=>{const r=e.eventId||this.slStreamId.get()||"",o=e.userId||this.userId.get()||"",s=e.organizationId||this.organizationId.get()||"",u=e.entity||"",f=e.prefix||"";return[s,r,o,f,u].join(":")};disconnect=()=>{this.feedSubscription?.disconnect()};openQuestion=e=>{this.openedQuestionId.set(e),this.notifications.markAsViewed(this.getCurrentSessionId({prefix:"notification",entity:e}))};closeQuestion=e=>{this.openedQuestionId.set(void 0),e&&this.notifications.markAsViewed(this.getCurrentSessionId({prefix:"notification",entity:e}))}}class Vi{notificationsList;notifications;store;timeouts;waitingQueue;activeQueue;options;logger;constructor(e){this.options=e,this.logger=rn("notifications"),this.store=new Map,this.timeouts=new Map,this.waitingQueue=new Set,this.activeQueue=new Set,this.notifications=new ye(ne(new Map),"notifications-queue"),this.notificationsList=this.notifications.getStore()}addToQueue=e=>{if(this.store.has(e.id)){this.logger.debug({notification:e},"skip existed notification: %o");return}const r=e.close,o=e.action;this.store.set(e.id,{...e,close:(...s)=>{r&&r(...s),this.closeNotification(e.id)},action:(...s)=>{o&&o(...s),this.closeNotification(e.id)}}),this.waitingQueue.add(e.id),this.logger.debug({notification:e},"notification added to waiting queue"),this.tickWaitingQueue()};tickWaitingQueue=()=>{if(this.activeQueue.size<this.options.concurrency){const[e]=this.waitingQueue;if(!e)return;this.activeQueue.add(e),this.waitingQueue.delete(e),this.logger.debug({job:e},"waiting queue tick"),this.tickActiveQueue(e)}else this.logger.debug({queueSize:this.activeQueue.size,concurrency:this.options.concurrency},"waiting queue tick skipped")};tickActiveQueue=e=>{if(!e)return;const r=this.store.get(e);if(!r){this.logger.debug({notificationId:e},"active queue tick skipped, notification not exist");return}const o=setTimeout(()=>{const s=e,u=new Map(this.notifications.getValue());u.set(r.id,r),this.notifications.setValue(u);const f=setTimeout(()=>{this.logger.debug({notificationId:s,delay:r.autoHideDuration||5e3},"notification hiding by autoHideDuration"),this.closeNotification(s)},r.autoHideDuration||5e3);this.timeouts.set(s,f),this.logger.debug({notificationId:s,queue:[...u.values()]},"notification displayed")},r.delay||0);this.timeouts.set(e,o),this.logger.debug({notificationId:e},"active queue tick completed"),this.tickWaitingQueue()};closeNotification=e=>{const r=new Map(this.notifications.getValue()),o=r.get(e);if(o){o.hiding=!0,this.notifications.setValue(r);const s=setTimeout(()=>{const u=new Map(this.notifications.getValue());u.delete(e),this.notifications.setValue(u);const f=this.timeouts.get(e);f!==void 0&&(clearTimeout(f),this.timeouts.delete(e)),this.logger.debug({notificationId:e},"notification hidden")},this.options.animationDelay||0);this.timeouts.set(e,s)}this.store.delete(e),this.activeQueue.delete(e),this.waitingQueue.delete(e),this.tickWaitingQueue(),this.logger.debug({notificationId:e},"notification hiding")}}var vt;(function(t){t.OPENED="opened"})(vt||(vt={}));class Mi extends hr{constructor(){super("notification")}setOpened=e=>{this.write(vt.OPENED,e,"true")};isOpened=e=>this.read(vt.OPENED,e);clearNotification=()=>{this.clear()}}var je;(function(t){t[t.ONBOARDING=1]="ONBOARDING",t[t.QUESTION=2]="QUESTION",t[t.QUESTION_RESOLVED=3]="QUESTION_RESOLVED"})(je||(je={}));class qi{queue;storage;constructor(e={}){this.storage=new Mi,this.queue=new Vi({concurrency:1,animationDelay:1600,...e})}add=e=>{this.storage.isOpened(e.id)||this.queue.addToQueue(e)};close=e=>{this.queue.closeNotification(e),this.markAsViewed(e)};getQueueStore=()=>this.queue.notificationsList;markAsViewed=e=>{this.storage.setOpened(e)}}const Qi=(t,e,r)=>{t.notifications=new qi,t.addNotification=t.notifications.add,t.sdk.getNotificationsStore=()=>t.notifications.getQueueStore(),r()},Gi=(t,e)=>{const{client:r}=t.createPromiseClient(Se.Feed,{method:"submitAnswer"});return r.submitAnswer({data:e})},zi=(t,e)=>{const{client:r}=t.createPromiseClient(Se.Feed,{method:"submitInplay"});return r.submitInplay({data:{eventId:+e}})},Ki=(t,e)=>{const{client:r}=t.createPromiseClient(Se.Feed,{method:"skipQuestion"});return r.skipQuestion({data:{id:e}})};var St;(function(t){t.ONBOARDING="onboarding"})(St||(St={}));class sn extends hr{constructor(){super("gamification")}saveOnboardingStatus=({userId:e,eventId:r,organizationId:o},s)=>{this.write(St.ONBOARDING,o,e,r,s)};getOnboardingStatus=({userId:e,eventId:r,organizationId:o})=>this.read(St.ONBOARDING,o,e,r)}const Tr={pageSize:10},Hi=(t,e,r)=>{const o=ne({pageSize:r?.pageSize||Tr.pageSize,page:0}),s=Ue({data:[],loading:void 0,error:void 0}),u=Ci(t),f=async v=>{if(v){s.setKey("loading",!0);const g={eventId:v,pagination:{page:0,pageSize:r?.pageSize||Tr.pageSize}},b=await u(g);s.set({data:b.data.map(E=>E.attributes),loading:!1}),o.set(g.pagination)}};e.listen(f);const l=()=>{f(e.get())};return o.listen(async v=>{const g=e.get(),b=s.get().data?.length||0;if(v.page>0&&g&&b>=v.page*v.pageSize){s.setKey("loading",!0);const T=await u({eventId:g,pagination:v}),N=s.get().data||[];s.set({data:[...N,...T.data.map(P=>P.attributes)],loading:!1})}}),{$store:s,fetchMore:()=>{const v=o.get();o.set({...v,page:v.page+1})},invalidate:l}};var re;(function(t){t.Unset="unset",t.Required="required",t.Optional="optional",t.Completed="completed",t.Disabled="disabled",t.Unavailable="unavailable"})(re||(re={}));const Wi=(t,e,r,o)=>{const s=new sn,u=ne(re.Completed),f=()=>{const{inplayGame:v={}}=t.featureSettings.get(),g=e.getCurrentSessionId({prefix:"onboarding"});o.add({type:je.ONBOARDING,id:g,action:t.openFeature,close:()=>{o.markAsViewed(g)},autoHideDuration:1e6,data:{questionType:ie.QuestionType.UNSET,onboarding:{...v}}})};u.subscribe(v=>{(v===re.Optional||re.Required)&&f(),v===re.Completed&&e.activeQuestionId.invalidate()});const l=async()=>{const v=e.userId.get();if(!v)return;s.getOnboardingStatus({userId:v,organizationId:e.organizationId.get()||"",eventId:e.slStreamId.get()||""})===re.Completed&&u.set(re.Completed);const b=await e.moderation.getValue();if(u.get()===re.Completed)return;const E=!!(b?.options?.onboardingEnabled&&t.featureSettings.get().inplayGame?.onboarding?.completed),T=!!t.featureSettings.get().inplayGame?.titleCard?.optIn;E?T?u.set(re.Required):u.set(re.Optional):T?u.set(re.Unavailable):u.set(re.Disabled)};return l(),e.userId.subscribe(v=>{v&&l()}),e.moderation.subscribe(v=>{v.data&&l()}),{$store:u,submitInplay:async()=>{const v=e.slStreamId.get();v&&(await zi(r,v),u.set(re.Completed),s.saveOnboardingStatus({organizationId:e.organizationId.get()||"",userId:e.userId.get()||"",eventId:v},re.Completed))}}},Ji=new Set([ie.QuestionType.POLL,ie.QuestionType.PREDICTION,ie.QuestionType.TRIVIA]);class Yi extends fr{userSummary;feedList;leaderboardId;leaderboardList;onboardingStatus;openedQuestion;openedUser;closeFeature;openFeature;notifications;transport;background;storage;constructor(e,r,o){super(e,r),this.background=on(o),this.storage=new sn,this.userSummary=new de(_i(this.background.slStreamId,this.background.userId,o.transport),"gamification:userSummary"),this.feedList=this.background.feedList,this.openedUser=ne(void 0),this.leaderboardId=new ye(ne(this.settings.getValue("pinnedLeaderboardId")),"pinnedLeaderboardId").getStore(),this.onboardingStatus=Wi(this,this.background,o.transport,o.notifications),this.notifications=o.notifications,this.transport=o.transport,this.closeFeature=o.sdk.closeFeature,this.openFeature=()=>o.sdk.openFeature(ce.SdkOverlayType.GAMES),this.openedQuestion=this.background.openedQuestion,this.leaderboardList=Hi(this.transport,this.background.slStreamId),this.status.subscribe(s=>{s===$e.Ready?this.connect(o.transport):this.disconnect()}),this.background.activeQuestionId.listen(s=>{if(s&&s.data&&this.onboardingStatus.$store.get()&&s.data.question?.id!==void 0&&s.data.question.notification!==void 0&&s.data.moderation?.bypassNotifications?.inAppSilence!==ie.SilenceSetting.ON&&s.data.question.status===ie.QuestionStatus.ACTIVE){if(Ji.has(s.data.question.type))this.notifications.add({type:je.QUESTION,action:()=>s.data?.question&&this.openQuestion(s.data.question.id),close:()=>s.data?.question&&this.closeQuestion(s.data.question.id),autoHideDuration:1e3*+(s.data.question?.appearance?.autoHideInterval||"5"),id:this.background.getCurrentSessionId({prefix:"notification",entity:s.data.question.id}),data:{questionType:s.data.question.type,question:{title:s.data.question.notification.title}}});else if(s.data.question.type===ie.QuestionType.FACTOID){const u=s.data.question.options?.options.value,f={heading:s.data.question.notification.title,body:s.data.question.notification.body,image:s.data.question.notification.image,video:{id:u?.video?.id||"",url:u?.video?.url||"",thumbnailUrl:u?.video?.thumbnailUrl||""},webLink:{label:"",url:""}};this.notifications.add({type:je.QUESTION,action:()=>s.data?.question&&this.openQuestion(s.data.question.id),close:()=>s.data?.question&&this.closeQuestion(s.data.question.id),autoHideDuration:1e3*+(s.data.question?.appearance?.autoHideInterval||"5"),id:this.background.getCurrentSessionId({prefix:"notification",entity:s.data.question.id}),data:{questionType:s.data.question.type,insight:f}})}}})}connect=e=>{this.userSummary.invalidate(),this.leaderboardList.invalidate(),this.feedList.invalidate(),this.background.feedSubscription.addListener("feed-subscription-prediction-close",r=>{window.requestAnimationFrame(async()=>{const o=r.data?.attributes?.question;if(!o)return;const{status:s,type:u,id:f}=o;if(s===ie.QuestionStatus.RESOLVED&&u===ie.QuestionType.PREDICTION){const l=this.background.getCurrentSessionId({prefix:`notification-id:${f}`}),v=(await nn(f,e))?.answers.find(({correct:g})=>g);this.notifications.add({type:je.QUESTION_RESOLVED,action:()=>this.openQuestion(f),close:()=>this.closeQuestion(f),autoHideDuration:5e3,id:l,data:{questionType:ie.QuestionType.PREDICTION,question:{title:v?.youVoted?`Congratulations! You answered correctly! You won ${v.points} pts!`:`Better luck next time! Correct: ${v?.text}!`}}})}})}),this.background.feedSubscription.addListener("feed-subscription-questions-list",()=>{window.requestAnimationFrame(()=>{this.feedList?.invalidate()})})};disconnect=()=>{this.background.feedSubscription.removeListener("feed-subscription-questions-list")};submitAnswer=async(e,r)=>{await Gi(this.transport,{questionId:e,answerId:r}),this.feedList?.invalidate()};skipQuestion=async e=>{await Ki(this.transport,e),this.feedList?.invalidate()};openQuestion=e=>(this.openFeature(),this.background.openQuestion(e));closeQuestion=e=>this.background.closeQuestion(e);openUser=e=>{const r=this.leaderboardList.$store.get().data?.find(o=>o.userId===e);this.openedUser.set(r)};closeUser=()=>{this.openedUser.set(void 0)}}class Xi extends fr{insights;closeFeature;openFeature;openedInsight;notifications;transport;background;constructor(e,r,o){super(e,r),this.background=on(o),this.notifications=o.notifications,this.transport=o.transport,this.closeFeature=o.sdk.closeFeature,this.openFeature=()=>o.sdk.openFeature(ce.SdkOverlayType.HIGHLIGHTS),this.status.subscribe(s=>{s===$e.Ready?this.connect():this.disconnect()}),this.background.activeQuestionId.listen(s=>{s?.data?.question?.id&&s?.data?.question?.notification&&s.data.moderation?.bypassNotifications?.inAppSilence!==ie.SilenceSetting.ON&&s.data.question.type===ie.QuestionType.FACTOID&&s.data.question.status===ie.QuestionStatus.ACTIVE&&this.notifications.add({type:je.QUESTION,action:()=>s.data?.question&&this.openHighlight(s.data.question.id),close:()=>s.data?.question&&this.closeHighlight(s.data.question.id),autoHideDuration:1e3*+(s.data.question?.appearance?.autoHideInterval||"5"),id:this.background.getCurrentSessionId({prefix:"notification",entity:s.data.question.id}),data:{questionType:s.data.question.type,question:{title:s.data.question.notification.title}}})}),this.openedInsight=this.background.openedQuestion}connect=()=>{this.insights?this.insights.invalidate():this.insights=new de(Ri(this.background.slStreamId,this.transport),"gamification:insights"),this.background.feedSubscription.addListener("feed-subscription-insights-list",()=>{window.requestAnimationFrame(()=>{this.insights?.invalidate()})})};disconnect=()=>{this.background.feedSubscription.removeListener("feed-subscription-insights-list")};openHighlight=e=>(this.openFeature(),this.background.openQuestion(e));closeHighlight=e=>this.background.closeQuestion(e)}ce.SdkOverlayType.GAMES+"",ce.SdkOverlayType.HIGHLIGHTS+"";class Zi extends fr{constructor(e,r){super(e,r)}}const eo=(t,e,r)=>t.type===ce.SdkOverlayType.GAMES?new Yi(t,e,r):t.type===ce.SdkOverlayType.HIGHLIGHTS?new Xi(t,e,r):new Zi(t,e),to=(t,e,r)=>{t.features=new Map,t.activeFeature=new ye(ne(ce.SdkOverlayType.UNSET),"activeFeature"),t.sdk.getFeatures=()=>t.features,t.sdk.getFeature=o=>t.features.get(o),t.sdk.getActiveFeature=()=>t.activeFeature.getStore(),t.sdk.openFeature=o=>{t.activeFeature.setValue(o)},t.sdk.closeFeature=()=>{t.activeFeature.setValue(ce.SdkOverlayType.UNSET)},t.initFeature=(o,s=Te.ORGANIZATION)=>{const u=eo(o,s,t);t.features.set(o.type,u)},t.updateFeature=(o,s)=>{t.features.get(o.type)?.update(o,s)},t.destroyFeature=o=>{t.features.delete(o.type)},t.reinitializeFeatures=async()=>{const o=await t.stores.organizationSettings.getValue();t.features.clear();for(const s of o?.overlays||[])t.initFeature(s,Te.ORGANIZATION)},t.stores.providerStreamId.listen(o=>{o||t.reinitializeFeatures()}),t.storeSubscribe=()=>{const o=(u,f)=>{if(f?.overlays){u===Te.STREAM&&t.features.clear();for(const l of f.overlays)l.sdkEnable===!0&&(t.features.has(l.type)?t.updateFeature(l,u):t.initFeature(l,u))}},s={organizationSettings:u=>{if(u.data)try{o(Te.ORGANIZATION,u.data)}catch(f){console.log(f)}},streamSettings:u=>{if(u.data)try{o(Te.STREAM,u.data)}catch(f){console.log(f)}}};t.store.subscribe(s)},r()};var yr={exports:{}},gr={exports:{}};function ro(t){var e=new t,r=e;function o(){var u=e;return u.next?e=u.next:(e=new t,r=e),u.next=null,u}function s(u){r.next=u,r=u}return{get:o,release:s}}var no=ro,io=no;function an(t,e,r){if(typeof t=="function"&&(r=e,e=t,t=null),r<1)throw new Error("fastqueue concurrency must be greater than 1");var o=io(oo),s=null,u=null,f=0,l=null,p={push:P,drain:ue,saturated:ue,pause:g,paused:!1,concurrency:r,running:v,resume:T,idle:N,length:b,getQueue:E,unshift:K,empty:ue,kill:_,killAndDrain:j,error:U};return p;function v(){return f}function g(){p.paused=!0}function b(){for(var F=s,x=0;F;)F=F.next,x++;return x}function E(){for(var F=s,x=[];F;)x.push(F.value),F=F.next;return x}function T(){if(p.paused){p.paused=!1;for(var F=0;F<p.concurrency;F++)f++,I()}}function N(){return f===0&&p.length()===0}function P(F,x){var k=o.get();k.context=t,k.release=I,k.value=F,k.callback=x||ue,k.errorHandler=l,f===p.concurrency||p.paused?u?(u.next=k,u=k):(s=k,u=k,p.saturated()):(f++,e.call(t,k.value,k.worked))}function K(F,x){var k=o.get();k.context=t,k.release=I,k.value=F,k.callback=x||ue,f===p.concurrency||p.paused?s?(k.next=s,s=k):(s=k,u=k,p.saturated()):(f++,e.call(t,k.value,k.worked))}function I(F){F&&o.release(F);var x=s;x?p.paused?f--:(u===s&&(u=null),s=x.next,x.next=null,e.call(t,x.value,x.worked),u===null&&p.empty()):--f===0&&p.drain()}function _(){s=null,u=null,p.drain=ue}function j(){s=null,u=null,p.drain(),p.drain=ue}function U(F){l=F}}function ue(){}function oo(){this.value=null,this.callback=ue,this.next=null,this.release=ue,this.context=null,this.errorHandler=null;var t=this;this.worked=function(r,o){var s=t.callback,u=t.errorHandler,f=t.value;t.value=null,t.callback=ue,t.errorHandler&&u(r,f),s.call(t.context,r,o),t.release(t)}}function so(t,e,r){typeof t=="function"&&(r=e,e=t,t=null);function o(g,b){e.call(this,g).then(function(E){b(null,E)},b)}var s=an(t,o,r),u=s.push,f=s.unshift;return s.push=l,s.unshift=p,s.drained=v,s;function l(g){var b=new Promise(function(E,T){u(g,function(N,P){if(N){T(N);return}E(P)})});return b.catch(ue),b}function p(g){var b=new Promise(function(E,T){f(g,function(N,P){if(N){T(N);return}E(P)})});return b.catch(ue),b}function v(){if(s.idle())return new Promise(function(E){E()});var g=s.drain,b=new Promise(function(E){s.drain=function(){g(),E()}});return b}}gr.exports=an;gr.exports.promise=so;var un=gr.exports,mr={exports:{}},Ye=typeof Reflect=="object"?Reflect:null,Fr=Ye&&typeof Ye.apply=="function"?Ye.apply:function(e,r,o){return Function.prototype.apply.call(e,r,o)},yt;Ye&&typeof Ye.ownKeys=="function"?yt=Ye.ownKeys:Object.getOwnPropertySymbols?yt=function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:yt=function(e){return Object.getOwnPropertyNames(e)};function ao(t){console&&console.warn&&console.warn(t)}var cn=Number.isNaN||function(e){return e!==e};function q(){q.init.call(this)}mr.exports=q;mr.exports.once=fo;q.EventEmitter=q;q.prototype._events=void 0;q.prototype._eventsCount=0;q.prototype._maxListeners=void 0;var _r=10;function xt(t){if(typeof t!="function")throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}Object.defineProperty(q,"defaultMaxListeners",{enumerable:!0,get:function(){return _r},set:function(t){if(typeof t!="number"||t<0||cn(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");_r=t}});q.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};q.prototype.setMaxListeners=function(e){if(typeof e!="number"||e<0||cn(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 ln(t){return t._maxListeners===void 0?q.defaultMaxListeners:t._maxListeners}q.prototype.getMaxListeners=function(){return ln(this)};q.prototype.emit=function(e){for(var r=[],o=1;o<arguments.length;o++)r.push(arguments[o]);var s=e==="error",u=this._events;if(u!==void 0)s=s&&u.error===void 0;else if(!s)return!1;if(s){var f;if(r.length>0&&(f=r[0]),f instanceof Error)throw f;var l=new Error("Unhandled error."+(f?" ("+f.message+")":""));throw l.context=f,l}var p=u[e];if(p===void 0)return!1;if(typeof p=="function")Fr(p,this,r);else for(var v=p.length,g=yn(p,v),o=0;o<v;++o)Fr(g[o],this,r);return!0};function fn(t,e,r,o){var s,u,f;if(xt(r),u=t._events,u===void 0?(u=t._events=Object.create(null),t._eventsCount=0):(u.newListener!==void 0&&(t.emit("newListener",e,r.listener?r.listener:r),u=t._events),f=u[e]),f===void 0)f=u[e]=r,++t._eventsCount;else if(typeof f=="function"?f=u[e]=o?[r,f]:[f,r]:o?f.unshift(r):f.push(r),s=ln(t),s>0&&f.length>s&&!f.warned){f.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+f.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=t,l.type=e,l.count=f.length,ao(l)}return t}q.prototype.addListener=function(e,r){return fn(this,e,r,!1)};q.prototype.on=q.prototype.addListener;q.prototype.prependListener=function(e,r){return fn(this,e,r,!0)};function uo(){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 hn(t,e,r){var o={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},s=uo.bind(o);return s.listener=r,o.wrapFn=s,s}q.prototype.once=function(e,r){return xt(r),this.on(e,hn(this,e,r)),this};q.prototype.prependOnceListener=function(e,r){return xt(r),this.prependListener(e,hn(this,e,r)),this};q.prototype.removeListener=function(e,r){var o,s,u,f,l;if(xt(r),s=this._events,s===void 0)return this;if(o=s[e],o===void 0)return this;if(o===r||o.listener===r)--this._eventsCount===0?this._events=Object.create(null):(delete s[e],s.removeListener&&this.emit("removeListener",e,o.listener||r));else if(typeof o!="function"){for(u=-1,f=o.length-1;f>=0;f--)if(o[f]===r||o[f].listener===r){l=o[f].listener,u=f;break}if(u<0)return this;u===0?o.shift():co(o,u),o.length===1&&(s[e]=o[0]),s.removeListener!==void 0&&this.emit("removeListener",e,l||r)}return this};q.prototype.off=q.prototype.removeListener;q.prototype.removeAllListeners=function(e){var r,o,s;if(o=this._events,o===void 0)return this;if(o.removeListener===void 0)return arguments.length===0?(this._events=Object.create(null),this._eventsCount=0):o[e]!==void 0&&(--this._eventsCount===0?this._events=Object.create(null):delete o[e]),this;if(arguments.length===0){var u=Object.keys(o),f;for(s=0;s<u.length;++s)f=u[s],f!=="removeListener"&&this.removeAllListeners(f);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(r=o[e],typeof r=="function")this.removeListener(e,r);else if(r!==void 0)for(s=r.length-1;s>=0;s--)this.removeListener(e,r[s]);return this};function pn(t,e,r){var o=t._events;if(o===void 0)return[];var s=o[e];return s===void 0?[]:typeof s=="function"?r?[s.listener||s]:[s]:r?lo(s):yn(s,s.length)}q.prototype.listeners=function(e){return pn(this,e,!0)};q.prototype.rawListeners=function(e){return pn(this,e,!1)};q.listenerCount=function(t,e){return typeof t.listenerCount=="function"?t.listenerCount(e):dn.call(t,e)};q.prototype.listenerCount=dn;function dn(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}q.prototype.eventNames=function(){return this._eventsCount>0?yt(this._events):[]};function yn(t,e){for(var r=new Array(e),o=0;o<e;++o)r[o]=t[o];return r}function co(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function lo(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}function fo(t,e){return new Promise(function(r,o){function s(f){t.removeListener(e,u),o(f)}function u(){typeof t.removeListener=="function"&&t.removeListener("error",s),r([].slice.call(arguments))}gn(t,e,u,{once:!0}),e!=="error"&&ho(t,s,{once:!0})})}function ho(t,e,r){typeof t.on=="function"&&gn(t,"error",e,r)}function gn(t,e,r,o){if(typeof t.on=="function")o.once?t.once(e,r):t.on(e,r);else if(typeof t.addEventListener=="function")t.addEventListener(e,function s(u){o.once&&t.removeEventListener(e,s),r(u)});else throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t)}var mn=mr.exports,Bt={},bn={},wn=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var e={},r=Symbol("test"),o=Object(r);if(typeof r=="string"||Object.prototype.toString.call(r)!=="[object Symbol]"||Object.prototype.toString.call(o)!=="[object Symbol]")return!1;var s=42;e[r]=s;for(r in e)return!1;if(typeof Object.keys=="function"&&Object.keys(e).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(e).length!==0)return!1;var u=Object.getOwnPropertySymbols(e);if(u.length!==1||u[0]!==r||!Object.prototype.propertyIsEnumerable.call(e,r))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var f=Object.getOwnPropertyDescriptor(e,r);if(f.value!==s||f.enumerable!==!0)return!1}return!0},po=wn,br=function(){return po()&&!!Symbol.toStringTag},Cr=typeof Symbol<"u"&&Symbol,yo=wn,go=function(){return typeof Cr!="function"||typeof Symbol!="function"||typeof Cr("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:yo()},Or={foo:{}},mo=Object,bo=function(){return{__proto__:Or}.foo===Or.foo&&!({__proto__:null}instanceof mo)},wo="Function.prototype.bind called on incompatible ",vo=Object.prototype.toString,So=Math.max,Ao="[object Function]",xr=function(e,r){for(var o=[],s=0;s<e.length;s+=1)o[s]=e[s];for(var u=0;u<r.length;u+=1)o[u+e.length]=r[u];return o},Eo=function(e,r){for(var o=[],s=r||0,u=0;s<e.length;s+=1,u+=1)o[u]=e[s];return o},Io=function(t,e){for(var r="",o=0;o<t.length;o+=1)r+=t[o],o+1<t.length&&(r+=e);return r},To=function(e){var r=this;if(typeof r!="function"||vo.apply(r)!==Ao)throw new TypeError(wo+r);for(var o=Eo(arguments,1),s,u=function(){if(this instanceof s){var g=r.apply(this,xr(o,arguments));return Object(g)===g?g:this}return r.apply(e,xr(o,arguments))},f=So(0,r.length-o.length),l=[],p=0;p<f;p++)l[p]="$"+p;if(s=Function("binder","return function ("+Io(l,",")+"){ return binder.apply(this,arguments); }")(u),r.prototype){var v=function(){};v.prototype=r.prototype,s.prototype=new v,v.prototype=null}return s},Fo=To,vn=Function.prototype.bind||Fo,Br={}.hasOwnProperty,Lt=Function.prototype.call,_o=Lt.bind?Lt.bind(Br):function(t,e){return Lt.call(Br,t,e)},$,Ze=SyntaxError,Sn=Function,Xe=TypeError,Ut=function(t){try{return Sn('"use strict"; return ('+t+").constructor;")()}catch{}},De=Object.getOwnPropertyDescriptor;if(De)try{De({},"")}catch{De=null}var $t=function(){throw new Xe},Co=De?function(){try{return arguments.callee,$t}catch{try{return De(arguments,"callee").get}catch{return $t}}}():$t,Ge=go(),Oo=bo(),X=Object.getPrototypeOf||(Oo?function(t){return t.__proto__}:null),Ke={},xo=typeof Uint8Array>"u"||!X?$:X(Uint8Array),Ve={"%AggregateError%":typeof AggregateError>"u"?$:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?$:ArrayBuffer,"%ArrayIteratorPrototype%":Ge&&X?X([][Symbol.iterator]()):$,"%AsyncFromSyncIteratorPrototype%":$,"%AsyncFunction%":Ke,"%AsyncGenerator%":Ke,"%AsyncGeneratorFunction%":Ke,"%AsyncIteratorPrototype%":Ke,"%Atomics%":typeof Atomics>"u"?$:Atomics,"%BigInt%":typeof BigInt>"u"?$:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?$:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?$:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?$:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":typeof Float32Array>"u"?$:Float32Array,"%Float64Array%":typeof Float64Array>"u"?$:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?$:FinalizationRegistry,"%Function%":Sn,"%GeneratorFunction%":Ke,"%Int8Array%":typeof Int8Array>"u"?$:Int8Array,"%Int16Array%":typeof Int16Array>"u"?$:Int16Array,"%Int32Array%":typeof Int32Array>"u"?$:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":Ge&&X?X(X([][Symbol.iterator]())):$,"%JSON%":typeof JSON=="object"?JSON:$,"%Map%":typeof Map>"u"?$:Map,"%MapIteratorPrototype%":typeof Map>"u"||!Ge||!X?$:X(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?$:Promise,"%Proxy%":typeof Proxy>"u"?$:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":typeof Reflect>"u"?$:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?$:Set,"%SetIteratorPrototype%":typeof Set>"u"||!Ge||!X?$:X(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?$:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":Ge&&X?X(""[Symbol.iterator]()):$,"%Symbol%":Ge?Symbol:$,"%SyntaxError%":Ze,"%ThrowTypeError%":Co,"%TypedArray%":xo,"%TypeError%":Xe,"%Uint8Array%":typeof Uint8Array>"u"?$:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?$:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?$:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?$:Uint32Array,"%URIError%":URIError,"%WeakMap%":typeof WeakMap>"u"?$:WeakMap,"%WeakRef%":typeof WeakRef>"u"?$:WeakRef,"%WeakSet%":typeof WeakSet>"u"?$:WeakSet};if(X)try{null.error}catch(t){var Bo=X(X(t));Ve["%Error.prototype%"]=Bo}var ko=function t(e){var r;if(e==="%AsyncFunction%")r=Ut("async function () {}");else if(e==="%GeneratorFunction%")r=Ut("function* () {}");else if(e==="%AsyncGeneratorFunction%")r=Ut("async function* () {}");else if(e==="%AsyncGenerator%"){var o=t("%AsyncGeneratorFunction%");o&&(r=o.prototype)}else if(e==="%AsyncIteratorPrototype%"){var s=t("%AsyncGenerator%");s&&X&&(r=X(s.prototype))}return Ve[e]=r,r},kr={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},ft=vn,At=_o,Po=ft.call(Function.call,Array.prototype.concat),Ro=ft.call(Function.apply,Array.prototype.splice),Pr=ft.call(Function.call,String.prototype.replace),Et=ft.call(Function.call,String.prototype.slice),No=ft.call(Function.call,RegExp.prototype.exec),Lo=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,Uo=/\\(\\)?/g,$o=function(e){var r=Et(e,0,1),o=Et(e,-1);if(r==="%"&&o!=="%")throw new Ze("invalid intrinsic syntax, expected closing `%`");if(o==="%"&&r!=="%")throw new Ze("invalid intrinsic syntax, expected opening `%`");var s=[];return Pr(e,Lo,function(u,f,l,p){s[s.length]=l?Pr(p,Uo,"$1"):f||u}),s},jo=function(e,r){var o=e,s;if(At(kr,o)&&(s=kr[o],o="%"+s[0]+"%"),At(Ve,o)){var u=Ve[o];if(u===Ke&&(u=ko(o)),typeof u>"u"&&!r)throw new Xe("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:s,name:o,value:u}}throw new Ze("intrinsic "+e+" does not exist!")},tt=function(e,r){if(typeof e!="string"||e.length===0)throw new Xe("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof r!="boolean")throw new Xe('"allowMissing" argument must be a boolean');if(No(/^%?[^%]*%?$/,e)===null)throw new Ze("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var o=$o(e),s=o.length>0?o[0]:"",u=jo("%"+s+"%",r),f=u.name,l=u.value,p=!1,v=u.alias;v&&(s=v[0],Ro(o,Po([0,1],v)));for(var g=1,b=!0;g<o.length;g+=1){var E=o[g],T=Et(E,0,1),N=Et(E,-1);if((T==='"'||T==="'"||T==="`"||N==='"'||N==="'"||N==="`")&&T!==N)throw new Ze("property names with quotes must have matching quotes");if((E==="constructor"||!b)&&(p=!0),s+="."+E,f="%"+s+"%",At(Ve,f))l=Ve[f];else if(l!=null){if(!(E in l)){if(!r)throw new Xe("base intrinsic for "+e+" exists, but the property is not available.");return}if(De&&g+1>=o.length){var P=De(l,E);b=!!P,b&&"get"in P&&!("originalValue"in P.get)?l=P.get:l=l[E]}else b=At(l,E),l=l[E];b&&!p&&(Ve[f]=l)}}return l},An={exports:{}},Do=tt,er=Do("%Object.defineProperty%",!0),tr=function(){if(er)try{return er({},"a",{value:1}),!0}catch{return!1}return!1};tr.hasArrayLengthDefineBug=function(){if(!tr())return null;try{return er([],"length",{value:1}).length!==1}catch{return!0}};var En=tr,Vo=tt,gt=Vo("%Object.getOwnPropertyDescriptor%",!0);if(gt)try{gt([],"length")}catch{gt=null}var wr=gt,Mo=En(),vr=tt,ct=Mo&&vr("%Object.defineProperty%",!0);if(ct)try{ct({},"a",{value:1})}catch{ct=!1}var qo=vr("%SyntaxError%"),ze=vr("%TypeError%"),Rr=wr,Qo=function(e,r,o){if(!e||typeof e!="object"&&typeof e!="function")throw new ze("`obj` must be an object or a function`");if(typeof r!="string"&&typeof r!="symbol")throw new ze("`property` must be a string or a symbol`");if(arguments.length>3&&typeof arguments[3]!="boolean"&&arguments[3]!==null)throw new ze("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&typeof arguments[4]!="boolean"&&arguments[4]!==null)throw new ze("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&typeof arguments[5]!="boolean"&&arguments[5]!==null)throw new ze("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&typeof arguments[6]!="boolean")throw new ze("`loose`, if provided, must be a boolean");var s=arguments.length>3?arguments[3]:null,u=arguments.length>4?arguments[4]:null,f=arguments.length>5?arguments[5]:null,l=arguments.length>6?arguments[6]:!1,p=!!Rr&&Rr(e,r);if(ct)ct(e,r,{configurable:f===null&&p?p.configurable:!f,enumerable:s===null&&p?p.enumerable:!s,value:o,writable:u===null&&p?p.writable:!u});else if(l||!s&&!u&&!f)e[r]=o;else throw new qo("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.")},In=tt,Nr=Qo,Go=En(),Lr=wr,Ur=In("%TypeError%"),zo=In("%Math.floor%"),Ko=function(e,r){if(typeof e!="function")throw new Ur("`fn` is not a function");if(typeof r!="number"||r<0||r>4294967295||zo(r)!==r)throw new Ur("`length` must be a positive 32-bit integer");var o=arguments.length>2&&!!arguments[2],s=!0,u=!0;if("length"in e&&Lr){var f=Lr(e,"length");f&&!f.configurable&&(s=!1),f&&!f.writable&&(u=!1)}return(s||u||!o)&&(Go?Nr(e,"length",r,!0,!0):Nr(e,"length",r)),e};(function(t){var e=vn,r=tt,o=Ko,s=r("%TypeError%"),u=r("%Function.prototype.apply%"),f=r("%Function.prototype.call%"),l=r("%Reflect.apply%",!0)||e.call(f,u),p=r("%Object.defineProperty%",!0),v=r("%Math.max%");if(p)try{p({},"a",{value:1})}catch{p=null}t.exports=function(E){if(typeof E!="function")throw new s("a function is required");var T=l(e,f,arguments);return o(T,1+v(0,E.length-(arguments.length-1)),!0)};var g=function(){return l(e,u,arguments)};p?p(t.exports,"apply",{value:g}):t.exports.apply=g})(An);var Tn=An.exports,Fn=tt,_n=Tn,Ho=_n(Fn("String.prototype.indexOf")),Cn=function(e,r){var o=Fn(e,!!r);return typeof o=="function"&&Ho(e,".prototype.")>-1?_n(o):o},Wo=br(),Jo=Cn,rr=Jo("Object.prototype.toString"),kt=function(e){return Wo&&e&&typeof e=="object"&&Symbol.toStringTag in e?!1:rr(e)==="[object Arguments]"},On=function(e){return kt(e)?!0:e!==null&&typeof e=="object"&&typeof e.length=="number"&&e.length>=0&&rr(e)!=="[object Array]"&&rr(e.callee)==="[object Function]"},Yo=function(){return kt(arguments)}();kt.isLegacyArguments=On;var Xo=Yo?kt:On,Zo=Object.prototype.toString,es=Function.prototype.toString,ts=/^\s*(?:function)?\*/,xn=br(),jt=Object.getPrototypeOf,rs=function(){if(!xn)return!1;try{return Function("return function*() {}")()}catch{}},Dt,ns=function(e){if(typeof e!="function")return!1;if(ts.test(es.call(e)))return!0;if(!xn){var r=Zo.call(e);return r==="[object GeneratorFunction]"}if(!jt)return!1;if(typeof Dt>"u"){var o=rs();Dt=o?jt(o):!1}return jt(e)===Dt},Bn=Function.prototype.toString,We=typeof Reflect=="object"&&Reflect!==null&&Reflect.apply,nr,mt;if(typeof We=="function"&&typeof Object.defineProperty=="function")try{nr=Object.defineProperty({},"length",{get:function(){throw mt}}),mt={},We(function(){throw 42},null,nr)}catch(t){t!==mt&&(We=null)}else We=null;var is=/^\s*class\b/,ir=function(e){try{var r=Bn.call(e);return is.test(r)}catch{return!1}},Vt=function(e){try{return ir(e)?!1:(Bn.call(e),!0)}catch{return!1}},bt=Object.prototype.toString,os="[object Object]",ss="[object Function]",as="[object GeneratorFunction]",us="[object HTMLAllCollection]",cs="[object HTML document.all class]",ls="[object HTMLCollection]",fs=typeof Symbol=="function"&&!!Symbol.toStringTag,hs=!(0 in[,]),or=function(){return!1};if(typeof document=="object"){var ps=document.all;bt.call(ps)===bt.call(document.all)&&(or=function(e){if((hs||!e)&&(typeof e>"u"||typeof e=="object"))try{var r=bt.call(e);return(r===us||r===cs||r===ls||r===os)&&e("")==null}catch{}return!1})}var ds=We?function(e){if(or(e))return!0;if(!e||typeof e!="function"&&typeof e!="object")return!1;try{We(e,null,nr)}catch(r){if(r!==mt)return!1}return!ir(e)&&Vt(e)}:function(e){if(or(e))return!0;if(!e||typeof e!="function"&&typeof e!="object")return!1;if(fs)return Vt(e);if(ir(e))return!1;var r=bt.call(e);return r!==ss&&r!==as&&!/^\[object HTML/.test(r)?!1:Vt(e)},ys=ds,gs=Object.prototype.toString,kn=Object.prototype.hasOwnProperty,ms=function(e,r,o){for(var s=0,u=e.length;s<u;s++)kn.call(e,s)&&(o==null?r(e[s],s,e):r.call(o,e[s],s,e))},bs=function(e,r,o){for(var s=0,u=e.length;s<u;s++)o==null?r(e.charAt(s),s,e):r.call(o,e.charAt(s),s,e)},ws=function(e,r,o){for(var s in e)kn.call(e,s)&&(o==null?r(e[s],s,e):r.call(o,e[s],s,e))},vs=function(e,r,o){if(!ys(r))throw new TypeError("iterator must be a function");var s;arguments.length>=3&&(s=o),gs.call(e)==="[object Array]"?ms(e,r,s):typeof e=="string"?bs(e,r,s):ws(e,r,s)},Ss=vs,Mt=["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],As=typeof globalThis>"u"?Wr:globalThis,Es=function(){for(var e=[],r=0;r<Mt.length;r++)typeof As[Mt[r]]=="function"&&(e[e.length]=Mt[r]);return e},It=Ss,Is=Es,$r=Tn,Sr=Cn,wt=wr,Ts=Sr("Object.prototype.toString"),Pn=br(),jr=typeof globalThis>"u"?Wr:globalThis,sr=Is(),Ar=Sr("String.prototype.slice"),qt=Object.getPrototypeOf,Fs=Sr("Array.prototype.indexOf",!0)||function(e,r){for(var o=0;o<e.length;o+=1)if(e[o]===r)return o;return-1},Tt={__proto__:null};Pn&&wt&&qt?It(sr,function(t){var e=new jr[t];if(Symbol.toStringTag in e){var r=qt(e),o=wt(r,Symbol.toStringTag);if(!o){var s=qt(r);o=wt(s,Symbol.toStringTag)}Tt["$"+t]=$r(o.get)}}):It(sr,function(t){var e=new jr[t],r=e.slice||e.set;r&&(Tt["$"+t]=$r(r))});var _s=function(e){var r=!1;return It(Tt,function(o,s){if(!r)try{"$"+o(e)===s&&(r=Ar(s,1))}catch{}}),r},Cs=function(e){var r=!1;return It(Tt,function(o,s){if(!r)try{o(e),r=Ar(s,1)}catch{}}),r},Rn=function(e){if(!e||typeof e!="object")return!1;if(!Pn){var r=Ar(Ts(e),8,-1);return Fs(sr,r)>-1?r:r!=="Object"?!1:Cs(e)}return wt?_s(e):null},Os=Rn,xs=function(e){return!!Os(e)};(function(t){var e=Xo,r=ns,o=Rn,s=xs;function u(S){return S.call.bind(S)}var f=typeof BigInt<"u",l=typeof Symbol<"u",p=u(Object.prototype.toString),v=u(Number.prototype.valueOf),g=u(String.prototype.valueOf),b=u(Boolean.prototype.valueOf);if(f)var E=u(BigInt.prototype.valueOf);if(l)var T=u(Symbol.prototype.valueOf);function N(S,pt){if(typeof S!="object")return!1;try{return pt(S),!0}catch{return!1}}t.isArgumentsObject=e,t.isGeneratorFunction=r,t.isTypedArray=s;function P(S){return typeof Promise<"u"&&S instanceof Promise||S!==null&&typeof S=="object"&&typeof S.then=="function"&&typeof S.catch=="function"}t.isPromise=P;function K(S){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(S):s(S)||w(S)}t.isArrayBufferView=K;function I(S){return o(S)==="Uint8Array"}t.isUint8Array=I;function _(S){return o(S)==="Uint8ClampedArray"}t.isUint8ClampedArray=_;function j(S){return o(S)==="Uint16Array"}t.isUint16Array=j;function U(S){return o(S)==="Uint32Array"}t.isUint32Array=U;function F(S){return o(S)==="Int8Array"}t.isInt8Array=F;function x(S){return o(S)==="Int16Array"}t.isInt16Array=x;function k(S){return o(S)==="Int32Array"}t.isInt32Array=k;function G(S){return o(S)==="Float32Array"}t.isFloat32Array=G;function oe(S){return o(S)==="Float64Array"}t.isFloat64Array=oe;function Oe(S){return o(S)==="BigInt64Array"}t.isBigInt64Array=Oe;function Ae(S){return o(S)==="BigUint64Array"}t.isBigUint64Array=Ae;function le(S){return p(S)==="[object Map]"}le.working=typeof Map<"u"&&le(new Map);function nt(S){return typeof Map>"u"?!1:le.working?le(S):S instanceof Map}t.isMap=nt;function fe(S){return p(S)==="[object Set]"}fe.working=typeof Set<"u"&&fe(new Set);function xe(S){return typeof Set>"u"?!1:fe.working?fe(S):S instanceof Set}t.isSet=xe;function Be(S){return p(S)==="[object WeakMap]"}Be.working=typeof WeakMap<"u"&&Be(new WeakMap);function it(S){return typeof WeakMap>"u"?!1:Be.working?Be(S):S instanceof WeakMap}t.isWeakMap=it;function ke(S){return p(S)==="[object WeakSet]"}ke.working=typeof WeakSet<"u"&&ke(new WeakSet);function he(S){return ke(S)}t.isWeakSet=he;function Pe(S){return p(S)==="[object ArrayBuffer]"}Pe.working=typeof ArrayBuffer<"u"&&Pe(new ArrayBuffer);function H(S){return typeof ArrayBuffer>"u"?!1:Pe.working?Pe(S):S instanceof ArrayBuffer}t.isArrayBuffer=H;function d(S){return p(S)==="[object DataView]"}d.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&d(new DataView(new ArrayBuffer(1),0,1));function w(S){return typeof DataView>"u"?!1:d.working?d(S):S instanceof DataView}t.isDataView=w;var A=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function C(S){return p(S)==="[object SharedArrayBuffer]"}function D(S){return typeof A>"u"?!1:(typeof C.working>"u"&&(C.working=C(new A)),C.working?C(S):S instanceof A)}t.isSharedArrayBuffer=D;function V(S){return p(S)==="[object AsyncFunction]"}t.isAsyncFunction=V;function B(S){return p(S)==="[object Map Iterator]"}t.isMapIterator=B;function L(S){return p(S)==="[object Set Iterator]"}t.isSetIterator=L;function M(S){return p(S)==="[object Generator]"}t.isGeneratorObject=M;function te(S){return p(S)==="[object WebAssembly.Module]"}t.isWebAssemblyCompiledModule=te;function ge(S){return N(S,v)}t.isNumberObject=ge;function pe(S){return N(S,g)}t.isStringObject=pe;function se(S){return N(S,b)}t.isBooleanObject=se;function qe(S){return f&&N(S,E)}t.isBigIntObject=qe;function ht(S){return l&&N(S,T)}t.isSymbolObject=ht;function ot(S){return ge(S)||pe(S)||se(S)||qe(S)||ht(S)}t.isBoxedPrimitive=ot;function Pt(S){return typeof Uint8Array<"u"&&(H(S)||D(S))}t.isAnyArrayBuffer=Pt,["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(S){Object.defineProperty(t,S,{enumerable:!1,value:function(){throw new Error(S+" is not supported in userland")}})})})(bn);var Bs=function(e){return e&&typeof e=="object"&&typeof e.copy=="function"&&typeof e.fill=="function"&&typeof e.readUInt8=="function"},ar={exports:{}};typeof Object.create=="function"?ar.exports=function(e,r){r&&(e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:ar.exports=function(e,r){if(r){e.super_=r;var o=function(){};o.prototype=r.prototype,e.prototype=new o,e.prototype.constructor=e}};var ks=ar.exports;(function(t){var e=Object.getOwnPropertyDescriptors||function(w){for(var A=Object.keys(w),C={},D=0;D<A.length;D++)C[A[D]]=Object.getOwnPropertyDescriptor(w,A[D]);return C},r=/%[sdj%]/g;t.format=function(d){if(!F(d)){for(var w=[],A=0;A<arguments.length;A++)w.push(f(arguments[A]));return w.join(" ")}for(var A=1,C=arguments,D=C.length,V=String(d).replace(r,function(L){if(L==="%%")return"%";if(A>=D)return L;switch(L){case"%s":return String(C[A++]);case"%d":return Number(C[A++]);case"%j":try{return JSON.stringify(C[A++])}catch{return"[Circular]"}default:return L}}),B=C[A];A<D;B=C[++A])_(B)||!oe(B)?V+=" "+B:V+=" "+f(B);return V},t.deprecate=function(d,w){if(typeof O.process<"u"&&O.process.noDeprecation===!0)return d;if(typeof O.process>"u")return function(){return t.deprecate(d,w).apply(this,arguments)};var A=!1;function C(){if(!A){if(O.process.throwDeprecation)throw new Error(w);O.process.traceDeprecation?console.trace(w):console.error(w),A=!0}return d.apply(this,arguments)}return C};var o={},s=/^$/;if(O.process.env.NODE_DEBUG){var u=O.process.env.NODE_DEBUG;u=u.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),s=new RegExp("^"+u+"$","i")}t.debuglog=function(d){if(d=d.toUpperCase(),!o[d])if(s.test(d)){var w=O.process.pid;o[d]=function(){var A=t.format.apply(t,arguments);console.error("%s %d: %s",d,w,A)}}else o[d]=function(){};return o[d]};function f(d,w){var A={seen:[],stylize:p};return arguments.length>=3&&(A.depth=arguments[2]),arguments.length>=4&&(A.colors=arguments[3]),I(w)?A.showHidden=w:w&&t._extend(A,w),k(A.showHidden)&&(A.showHidden=!1),k(A.depth)&&(A.depth=2),k(A.colors)&&(A.colors=!1),k(A.customInspect)&&(A.customInspect=!0),A.colors&&(A.stylize=l),g(A,d,A.depth)}t.inspect=f,f.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},f.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};function l(d,w){var A=f.styles[w];return A?"\x1B["+f.colors[A][0]+"m"+d+"\x1B["+f.colors[A][1]+"m":d}function p(d,w){return d}function v(d){var w={};return d.forEach(function(A,C){w[A]=!0}),w}function g(d,w,A){if(d.customInspect&&w&&le(w.inspect)&&w.inspect!==t.inspect&&!(w.constructor&&w.constructor.prototype===w)){var C=w.inspect(A,d);return F(C)||(C=g(d,C,A)),C}var D=b(d,w);if(D)return D;var V=Object.keys(w),B=v(V);if(d.showHidden&&(V=Object.getOwnPropertyNames(w)),Ae(w)&&(V.indexOf("message")>=0||V.indexOf("description")>=0))return E(w);if(V.length===0){if(le(w)){var L=w.name?": "+w.name:"";return d.stylize("[Function"+L+"]","special")}if(G(w))return d.stylize(RegExp.prototype.toString.call(w),"regexp");if(Oe(w))return d.stylize(Date.prototype.toString.call(w),"date");if(Ae(w))return E(w)}var M="",te=!1,ge=["{","}"];if(K(w)&&(te=!0,ge=["[","]"]),le(w)){var pe=w.name?": "+w.name:"";M=" [Function"+pe+"]"}if(G(w)&&(M=" "+RegExp.prototype.toString.call(w)),Oe(w)&&(M=" "+Date.prototype.toUTCString.call(w)),Ae(w)&&(M=" "+E(w)),V.length===0&&(!te||w.length==0))return ge[0]+M+ge[1];if(A<0)return G(w)?d.stylize(RegExp.prototype.toString.call(w),"regexp"):d.stylize("[Object]","special");d.seen.push(w);var se;return te?se=T(d,w,A,B,V):se=V.map(function(qe){return N(d,w,A,B,qe,te)}),d.seen.pop(),P(se,M,ge)}function b(d,w){if(k(w))return d.stylize("undefined","undefined");if(F(w)){var A="'"+JSON.stringify(w).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return d.stylize(A,"string")}if(U(w))return d.stylize(""+w,"number");if(I(w))return d.stylize(""+w,"boolean");if(_(w))return d.stylize("null","null")}function E(d){return"["+Error.prototype.toString.call(d)+"]"}function T(d,w,A,C,D){for(var V=[],B=0,L=w.length;B<L;++B)ke(w,String(B))?V.push(N(d,w,A,C,String(B),!0)):V.push("");return D.forEach(function(M){M.match(/^\d+$/)||V.push(N(d,w,A,C,M,!0))}),V}function N(d,w,A,C,D,V){var B,L,M;if(M=Object.getOwnPropertyDescriptor(w,D)||{value:w[D]},M.get?M.set?L=d.stylize("[Getter/Setter]","special"):L=d.stylize("[Getter]","special"):M.set&&(L=d.stylize("[Setter]","special")),ke(C,D)||(B="["+D+"]"),L||(d.seen.indexOf(M.value)<0?(_(A)?L=g(d,M.value,null):L=g(d,M.value,A-1),L.indexOf(`
|
|
7
7
|
`)>-1&&(V?L=L.split(`
|
|
8
8
|
`).map(function(te){return" "+te}).join(`
|
|
9
9
|
`).slice(2):L=`
|
package/lib/es/index.js
CHANGED
|
@@ -2227,7 +2227,7 @@ var re;
|
|
|
2227
2227
|
t.Unset = "unset", t.Required = "required", t.Optional = "optional", t.Completed = "completed", t.Disabled = "disabled", t.Unavailable = "unavailable";
|
|
2228
2228
|
})(re || (re = {}));
|
|
2229
2229
|
const to = (t, e, r, o) => {
|
|
2230
|
-
const s = new un(), u = ne(re.
|
|
2230
|
+
const s = new un(), u = ne(re.Completed), l = () => {
|
|
2231
2231
|
const { inplayGame: v = {} } = t.featureSettings.get(), g = e.getCurrentSessionId({ prefix: "onboarding" });
|
|
2232
2232
|
o.add({
|
|
2233
2233
|
type: je.ONBOARDING,
|
|
@@ -2319,14 +2319,14 @@ class no extends lr {
|
|
|
2319
2319
|
}
|
|
2320
2320
|
});
|
|
2321
2321
|
else if (s.data.question.type === Re.FACTOID) {
|
|
2322
|
-
const u = {
|
|
2323
|
-
heading:
|
|
2324
|
-
body:
|
|
2325
|
-
image:
|
|
2322
|
+
const u = s.data.question.options?.options.value, l = {
|
|
2323
|
+
heading: s.data.question.notification.title,
|
|
2324
|
+
body: s.data.question.notification.body,
|
|
2325
|
+
image: s.data.question.notification.image,
|
|
2326
2326
|
video: {
|
|
2327
|
-
id: "",
|
|
2328
|
-
url: "",
|
|
2329
|
-
thumbnailUrl: ""
|
|
2327
|
+
id: u?.video?.id || "",
|
|
2328
|
+
url: u?.video?.url || "",
|
|
2329
|
+
thumbnailUrl: u?.video?.thumbnailUrl || ""
|
|
2330
2330
|
},
|
|
2331
2331
|
webLink: {
|
|
2332
2332
|
label: "",
|
|
@@ -2341,7 +2341,7 @@ class no extends lr {
|
|
|
2341
2341
|
id: this.background.getCurrentSessionId({ prefix: "notification", entity: s.data.question.id }),
|
|
2342
2342
|
data: {
|
|
2343
2343
|
questionType: s.data.question.type,
|
|
2344
|
-
insight:
|
|
2344
|
+
insight: l
|
|
2345
2345
|
}
|
|
2346
2346
|
});
|
|
2347
2347
|
}
|
package/package.json
CHANGED
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"avvio": "^8.2.1",
|
|
27
27
|
"tslib": "^2.6.2",
|
|
28
28
|
"@streamlayer/sdk-web-api": "^0.0.1",
|
|
29
|
-
"@streamlayer/sdk-web-core": "^0.17.
|
|
30
|
-
"@streamlayer/sdk-web-types": "^0.20.
|
|
31
|
-
"@streamlayer/sdk-web-logger": "^0.0.
|
|
32
|
-
"@streamlayer/sdk-web-storage": "^0.0.
|
|
33
|
-
"@streamlayer/sdk-web-features": "^0.10.
|
|
34
|
-
"@streamlayer/sdk-web-interfaces": "^0.18.
|
|
35
|
-
"@streamlayer/sdk-web-notifications": "^0.12.
|
|
36
|
-
"@streamlayer/feature-gamification": "^0.
|
|
29
|
+
"@streamlayer/sdk-web-core": "^0.17.8",
|
|
30
|
+
"@streamlayer/sdk-web-types": "^0.20.1",
|
|
31
|
+
"@streamlayer/sdk-web-logger": "^0.0.4",
|
|
32
|
+
"@streamlayer/sdk-web-storage": "^0.0.4",
|
|
33
|
+
"@streamlayer/sdk-web-features": "^0.10.23",
|
|
34
|
+
"@streamlayer/sdk-web-interfaces": "^0.18.15",
|
|
35
|
+
"@streamlayer/sdk-web-notifications": "^0.12.1",
|
|
36
|
+
"@streamlayer/feature-gamification": "^0.24.0"
|
|
37
37
|
},
|
|
38
|
-
"version": "0.28.
|
|
38
|
+
"version": "0.28.20",
|
|
39
39
|
"type": "module",
|
|
40
40
|
"main": "./src/index.js",
|
|
41
41
|
"typings": "./src/index.d.ts"
|