@orderly.network/core 0.0.32 → 0.0.33

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/dist/index.d.mts CHANGED
@@ -244,134 +244,6 @@ declare class Account {
244
244
  get off(): <T extends string | symbol>(event: T, fn?: ((...args: any[]) => void) | undefined, context?: any, once?: boolean | undefined) => EventEmitter<string | symbol, any>;
245
245
  }
246
246
 
247
- declare namespace API {
248
- interface Token {
249
- token: string;
250
- token_hash: string;
251
- decimals: number;
252
- minimum_withdraw_amount: number;
253
- chain_details: ChainDetail[];
254
- }
255
- interface ChainDetail {
256
- chain_id: string;
257
- contract_address: string;
258
- decimals: number;
259
- }
260
- interface MarketInfo {
261
- symbol: string;
262
- index_price: number;
263
- mark_price: number;
264
- sum_unitary_funding: number;
265
- est_funding_rate: number;
266
- last_funding_rate: number;
267
- next_funding_time: number;
268
- open_interest: string;
269
- "24h_open": number;
270
- "24h_close": number;
271
- "24h_high": number;
272
- "24h_low": number;
273
- "24h_volumn": number;
274
- "24h_amount": number;
275
- }
276
- /**
277
- * v1/public/info
278
- */
279
- interface Symbol {
280
- symbol: string;
281
- quote_min: number;
282
- quote_max: number;
283
- quote_tick: number;
284
- base_min: number;
285
- base_max: number;
286
- base_tick: number;
287
- min_notional: number;
288
- price_range: number;
289
- price_scope: number;
290
- std_liquidation_fee: number;
291
- liquidator_fee: number;
292
- claim_insurance_fund_discount: number;
293
- funding_period: number;
294
- cap_funding: number;
295
- floor_funding: number;
296
- interest_rate: number;
297
- created_time: number;
298
- updated_time: number;
299
- imr_factor: number;
300
- base_mmr: number;
301
- base_imr: number;
302
- }
303
- interface SymbolExt extends Symbol {
304
- base: string;
305
- quote: string;
306
- type: string;
307
- }
308
- interface Order {
309
- symbol: string;
310
- status: string;
311
- side: string;
312
- order_id: number;
313
- user_id: number;
314
- price: number | null;
315
- type: string;
316
- quantity: number;
317
- amount: null;
318
- visible: number;
319
- executed: number;
320
- total_fee: number;
321
- fee_asset: string;
322
- client_order_id: null;
323
- average_executed_price: number;
324
- created_time: number;
325
- updated_time: number;
326
- reduce_only: boolean;
327
- }
328
- interface PositionInfo {
329
- margin_ratio: number;
330
- initial_margin_ratio: number;
331
- maintenance_margin_ratio: number;
332
- open_margin_ratio: number;
333
- current_margin_ratio_with_orders: number;
334
- initial_margin_ratio_with_orders: number;
335
- maintenance_margin_ratio_with_orders: number;
336
- total_collateral_value: number;
337
- free_collateral: number;
338
- rows: Position[];
339
- total_pnl_24_h: number;
340
- }
341
- interface Position {
342
- symbol: string;
343
- position_qty: number;
344
- cost_position: number;
345
- last_sum_unitary_funding: number;
346
- pending_long_qty: number;
347
- pending_short_qty: number;
348
- settle_price: number;
349
- average_open_price: number;
350
- unsettled_pnl: number;
351
- mark_price: number;
352
- est_liq_price: number;
353
- timestamp: number;
354
- mmr: number;
355
- imr: number;
356
- IMR_withdraw_orders: number;
357
- MMR_with_orders: number;
358
- pnl_24_h: number;
359
- fee_24_h: number;
360
- }
361
- }
362
- declare namespace WSMessage {
363
- interface Ticker {
364
- symbol: string;
365
- open: number;
366
- close: number;
367
- high: number;
368
- low: number;
369
- volume: number;
370
- amount: number;
371
- count: number;
372
- }
373
- }
374
-
375
247
  declare class Web3WalletAdapter implements WalletAdapter {
376
248
  private readonly web3;
377
249
  constructor(web3: any);
@@ -404,4 +276,4 @@ declare class EtherAdapter implements WalletAdapter {
404
276
  }, signature: string): Promise<void>;
405
277
  }
406
278
 
407
- export { API, Account, AccountState, BaseConfigStore, BaseContract as BaseContractManager, BaseKeyStore, BaseOrderlyKeyPair, BaseSigner, ConfigStore, EtherAdapter, IContract, LocalStorageStore, MemoryConfigStore, MessageFactor, MockKeyStore, OrderlyKeyPair, OrderlyKeyStore, SignedMessagePayload, Signer, SimpleDI, WSMessage, WalletAdapter, Web3WalletAdapter, getDefaultSigner, getMockSigner };
279
+ export { Account, AccountState, BaseConfigStore, BaseContract as BaseContractManager, BaseKeyStore, BaseOrderlyKeyPair, BaseSigner, ConfigStore, EtherAdapter, IContract, LocalStorageStore, MemoryConfigStore, MessageFactor, MockKeyStore, OrderlyKeyPair, OrderlyKeyStore, SignedMessagePayload, Signer, SimpleDI, WalletAdapter, Web3WalletAdapter, getDefaultSigner, getMockSigner };
package/dist/index.d.ts CHANGED
@@ -244,134 +244,6 @@ declare class Account {
244
244
  get off(): <T extends string | symbol>(event: T, fn?: ((...args: any[]) => void) | undefined, context?: any, once?: boolean | undefined) => EventEmitter<string | symbol, any>;
245
245
  }
246
246
 
247
- declare namespace API {
248
- interface Token {
249
- token: string;
250
- token_hash: string;
251
- decimals: number;
252
- minimum_withdraw_amount: number;
253
- chain_details: ChainDetail[];
254
- }
255
- interface ChainDetail {
256
- chain_id: string;
257
- contract_address: string;
258
- decimals: number;
259
- }
260
- interface MarketInfo {
261
- symbol: string;
262
- index_price: number;
263
- mark_price: number;
264
- sum_unitary_funding: number;
265
- est_funding_rate: number;
266
- last_funding_rate: number;
267
- next_funding_time: number;
268
- open_interest: string;
269
- "24h_open": number;
270
- "24h_close": number;
271
- "24h_high": number;
272
- "24h_low": number;
273
- "24h_volumn": number;
274
- "24h_amount": number;
275
- }
276
- /**
277
- * v1/public/info
278
- */
279
- interface Symbol {
280
- symbol: string;
281
- quote_min: number;
282
- quote_max: number;
283
- quote_tick: number;
284
- base_min: number;
285
- base_max: number;
286
- base_tick: number;
287
- min_notional: number;
288
- price_range: number;
289
- price_scope: number;
290
- std_liquidation_fee: number;
291
- liquidator_fee: number;
292
- claim_insurance_fund_discount: number;
293
- funding_period: number;
294
- cap_funding: number;
295
- floor_funding: number;
296
- interest_rate: number;
297
- created_time: number;
298
- updated_time: number;
299
- imr_factor: number;
300
- base_mmr: number;
301
- base_imr: number;
302
- }
303
- interface SymbolExt extends Symbol {
304
- base: string;
305
- quote: string;
306
- type: string;
307
- }
308
- interface Order {
309
- symbol: string;
310
- status: string;
311
- side: string;
312
- order_id: number;
313
- user_id: number;
314
- price: number | null;
315
- type: string;
316
- quantity: number;
317
- amount: null;
318
- visible: number;
319
- executed: number;
320
- total_fee: number;
321
- fee_asset: string;
322
- client_order_id: null;
323
- average_executed_price: number;
324
- created_time: number;
325
- updated_time: number;
326
- reduce_only: boolean;
327
- }
328
- interface PositionInfo {
329
- margin_ratio: number;
330
- initial_margin_ratio: number;
331
- maintenance_margin_ratio: number;
332
- open_margin_ratio: number;
333
- current_margin_ratio_with_orders: number;
334
- initial_margin_ratio_with_orders: number;
335
- maintenance_margin_ratio_with_orders: number;
336
- total_collateral_value: number;
337
- free_collateral: number;
338
- rows: Position[];
339
- total_pnl_24_h: number;
340
- }
341
- interface Position {
342
- symbol: string;
343
- position_qty: number;
344
- cost_position: number;
345
- last_sum_unitary_funding: number;
346
- pending_long_qty: number;
347
- pending_short_qty: number;
348
- settle_price: number;
349
- average_open_price: number;
350
- unsettled_pnl: number;
351
- mark_price: number;
352
- est_liq_price: number;
353
- timestamp: number;
354
- mmr: number;
355
- imr: number;
356
- IMR_withdraw_orders: number;
357
- MMR_with_orders: number;
358
- pnl_24_h: number;
359
- fee_24_h: number;
360
- }
361
- }
362
- declare namespace WSMessage {
363
- interface Ticker {
364
- symbol: string;
365
- open: number;
366
- close: number;
367
- high: number;
368
- low: number;
369
- volume: number;
370
- amount: number;
371
- count: number;
372
- }
373
- }
374
-
375
247
  declare class Web3WalletAdapter implements WalletAdapter {
376
248
  private readonly web3;
377
249
  constructor(web3: any);
@@ -404,4 +276,4 @@ declare class EtherAdapter implements WalletAdapter {
404
276
  }, signature: string): Promise<void>;
405
277
  }
406
278
 
407
- export { API, Account, AccountState, BaseConfigStore, BaseContract as BaseContractManager, BaseKeyStore, BaseOrderlyKeyPair, BaseSigner, ConfigStore, EtherAdapter, IContract, LocalStorageStore, MemoryConfigStore, MessageFactor, MockKeyStore, OrderlyKeyPair, OrderlyKeyStore, SignedMessagePayload, Signer, SimpleDI, WSMessage, WalletAdapter, Web3WalletAdapter, getDefaultSigner, getMockSigner };
279
+ export { Account, AccountState, BaseConfigStore, BaseContract as BaseContractManager, BaseKeyStore, BaseOrderlyKeyPair, BaseSigner, ConfigStore, EtherAdapter, IContract, LocalStorageStore, MemoryConfigStore, MessageFactor, MockKeyStore, OrderlyKeyPair, OrderlyKeyStore, SignedMessagePayload, Signer, SimpleDI, WalletAdapter, Web3WalletAdapter, getDefaultSigner, getMockSigner };
package/dist/index.js CHANGED
@@ -1,7 +1,10 @@
1
- "use strict";var wt=Object.create;var ie=Object.defineProperty,It=Object.defineProperties,_t=Object.getOwnPropertyDescriptor,Et=Object.getOwnPropertyDescriptors,bt=Object.getOwnPropertyNames,ve=Object.getOwnPropertySymbols,Bt=Object.getPrototypeOf,Oe=Object.prototype.hasOwnProperty,At=Object.prototype.propertyIsEnumerable;var _=Math.pow,Ne=(d,i,c)=>i in d?ie(d,i,{enumerable:!0,configurable:!0,writable:!0,value:c}):d[i]=c,R=(d,i)=>{for(var c in i||(i={}))Oe.call(i,c)&&Ne(d,c,i[c]);if(ve)for(var c of ve(i))At.call(i,c)&&Ne(d,c,i[c]);return d},j=(d,i)=>It(d,Et(i));var St=(d,i)=>{for(var c in i)ie(d,c,{get:i[c],enumerable:!0})},Me=(d,i,c,l)=>{if(i&&typeof i=="object"||typeof i=="function")for(let p of bt(i))!Oe.call(d,p)&&p!==c&&ie(d,p,{get:()=>i[p],enumerable:!(l=_t(i,p))||l.enumerable});return d};var we=(d,i,c)=>(c=d!=null?wt(Bt(d)):{},Me(i||!d||!d.__esModule?ie(c,"default",{value:d,enumerable:!0}):c,d)),xt=d=>Me(ie({},"__esModule",{value:!0}),d);var B=(d,i,c)=>new Promise((l,p)=>{var h=w=>{try{g(c.next(w))}catch(S){p(S)}},o=w=>{try{g(c.throw(w))}catch(S){p(S)}},g=w=>w.done?l(w.value):Promise.resolve(w.value).then(h,o);g((c=c.apply(d,i)).next())});var Ut={};St(Ut,{Account:()=>ue,BaseConfigStore:()=>Ie,BaseContractManager:()=>pe,BaseKeyStore:()=>ae,BaseOrderlyKeyPair:()=>q,BaseSigner:()=>J,EtherAdapter:()=>ye,EventEmitter:()=>Ze.default,LocalStorageStore:()=>ee,MemoryConfigStore:()=>ce,MockKeyStore:()=>te,SimpleDI:()=>He,Web3WalletAdapter:()=>he,getDefaultSigner:()=>Xe,getMockSigner:()=>Ge});module.exports=xt(Ut);var oe={},Re=!1;function Ct(){if(Re)return oe;Re=!0,oe.byteLength=g,oe.toByteArray=S,oe.fromByteArray=V;for(var d=[],i=[],c=typeof Uint8Array!="undefined"?Uint8Array:Array,l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",p=0,h=l.length;p<h;++p)d[p]=l[p],i[l.charCodeAt(p)]=p;i["-".charCodeAt(0)]=62,i["_".charCodeAt(0)]=63;function o(y){var f=y.length;if(f%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var b=y.indexOf("=");b===-1&&(b=f);var U=b===f?0:4-b%4;return[b,U]}function g(y){var f=o(y),b=f[0],U=f[1];return(b+U)*3/4-U}function w(y,f,b){return(f+b)*3/4-b}function S(y){var f,b=o(y),U=b[0],D=b[1],T=new c(w(y,U,D)),$=0,F=D>0?U-4:U,M;for(M=0;M<F;M+=4)f=i[y.charCodeAt(M)]<<18|i[y.charCodeAt(M+1)]<<12|i[y.charCodeAt(M+2)]<<6|i[y.charCodeAt(M+3)],T[$++]=f>>16&255,T[$++]=f>>8&255,T[$++]=f&255;return D===2&&(f=i[y.charCodeAt(M)]<<2|i[y.charCodeAt(M+1)]>>4,T[$++]=f&255),D===1&&(f=i[y.charCodeAt(M)]<<10|i[y.charCodeAt(M+1)]<<4|i[y.charCodeAt(M+2)]>>2,T[$++]=f>>8&255,T[$++]=f&255),T}function E(y){return d[y>>18&63]+d[y>>12&63]+d[y>>6&63]+d[y&63]}function P(y,f,b){for(var U,D=[],T=f;T<b;T+=3)U=(y[T]<<16&16711680)+(y[T+1]<<8&65280)+(y[T+2]&255),D.push(E(U));return D.join("")}function V(y){for(var f,b=y.length,U=b%3,D=[],T=16383,$=0,F=b-U;$<F;$+=T)D.push(P(y,$,$+T>F?F:$+T));return U===1?(f=y[b-1],D.push(d[f>>2]+d[f<<4&63]+"==")):U===2&&(f=(y[b-2]<<8)+y[b-1],D.push(d[f>>10]+d[f>>4&63]+d[f<<2&63]+"=")),D.join("")}return oe}var de={},De=!1;function Pt(){if(De)return de;De=!0;return de.read=function(d,i,c,l,p){var h,o,g=p*8-l-1,w=(1<<g)-1,S=w>>1,E=-7,P=c?p-1:0,V=c?-1:1,y=d[i+P];for(P+=V,h=y&(1<<-E)-1,y>>=-E,E+=g;E>0;h=h*256+d[i+P],P+=V,E-=8);for(o=h&(1<<-E)-1,h>>=-E,E+=l;E>0;o=o*256+d[i+P],P+=V,E-=8);if(h===0)h=1-S;else{if(h===w)return o?NaN:(y?-1:1)*(1/0);o=o+Math.pow(2,l),h=h-S}return(y?-1:1)*o*Math.pow(2,h-l)},de.write=function(d,i,c,l,p,h){var o,g,w,S=h*8-p-1,E=(1<<S)-1,P=E>>1,V=p===23?Math.pow(2,-24)-Math.pow(2,-77):0,y=l?0:h-1,f=l?1:-1,b=i<0||i===0&&1/i<0?1:0;for(i=Math.abs(i),isNaN(i)||i===1/0?(g=isNaN(i)?1:0,o=E):(o=Math.floor(Math.log(i)/Math.LN2),i*(w=Math.pow(2,-o))<1&&(o--,w*=2),o+P>=1?i+=V/w:i+=V*Math.pow(2,1-P),i*w>=2&&(o++,w/=2),o+P>=E?(g=0,o=E):o+P>=1?(g=(i*w-1)*Math.pow(2,p),o=o+P):(g=i*Math.pow(2,P-1)*Math.pow(2,p),o=0));p>=8;d[c+y]=g&255,y+=f,g/=256,p-=8);for(o=o<<p|g,S+=p;S>0;d[c+y]=o&255,y+=f,o/=256,S-=8);d[c+y-f]|=b*128},de}var G={},$e=!1;function Tt(){if($e)return G;$e=!0;let d=Ct(),i=Pt(),c=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;G.Buffer=o,G.SlowBuffer=D,G.INSPECT_MAX_BYTES=50;let l=2147483647;G.kMaxLength=l,o.TYPED_ARRAY_SUPPORT=p(),!o.TYPED_ARRAY_SUPPORT&&typeof console!="undefined"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function p(){try{let r=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(r,e),r.foo()===42}catch(r){return!1}}Object.defineProperty(o.prototype,"parent",{enumerable:!0,get:function(){if(o.isBuffer(this))return this.buffer}}),Object.defineProperty(o.prototype,"offset",{enumerable:!0,get:function(){if(o.isBuffer(this))return this.byteOffset}});function h(r){if(r>l)throw new RangeError('The value "'+r+'" is invalid for option "size"');let e=new Uint8Array(r);return Object.setPrototypeOf(e,o.prototype),e}function o(r,e,t){if(typeof r=="number"){if(typeof e=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return E(r)}return g(r,e,t)}o.poolSize=8192;function g(r,e,t){if(typeof r=="string")return P(r,e);if(ArrayBuffer.isView(r))return y(r);if(r==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(W(r,ArrayBuffer)||r&&W(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(W(r,SharedArrayBuffer)||r&&W(r.buffer,SharedArrayBuffer)))return f(r,e,t);if(typeof r=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');let n=r.valueOf&&r.valueOf();if(n!=null&&n!==r)return o.from(n,e,t);let s=b(r);if(s)return s;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof r[Symbol.toPrimitive]=="function")return o.from(r[Symbol.toPrimitive]("string"),e,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}o.from=function(r,e,t){return g(r,e,t)},Object.setPrototypeOf(o.prototype,Uint8Array.prototype),Object.setPrototypeOf(o,Uint8Array);function w(r){if(typeof r!="number")throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function S(r,e,t){return w(r),r<=0?h(r):e!==void 0?typeof t=="string"?h(r).fill(e,t):h(r).fill(e):h(r)}o.alloc=function(r,e,t){return S(r,e,t)};function E(r){return w(r),h(r<0?0:U(r)|0)}o.allocUnsafe=function(r){return E(r)},o.allocUnsafeSlow=function(r){return E(r)};function P(r,e){if((typeof e!="string"||e==="")&&(e="utf8"),!o.isEncoding(e))throw new TypeError("Unknown encoding: "+e);let t=T(r,e)|0,n=h(t),s=n.write(r,e);return s!==t&&(n=n.slice(0,s)),n}function V(r){let e=r.length<0?0:U(r.length)|0,t=h(e);for(let n=0;n<e;n+=1)t[n]=r[n]&255;return t}function y(r){if(W(r,Uint8Array)){let e=new Uint8Array(r);return f(e.buffer,e.byteOffset,e.byteLength)}return V(r)}function f(r,e,t){if(e<0||r.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(r.byteLength<e+(t||0))throw new RangeError('"length" is outside of buffer bounds');let n;return e===void 0&&t===void 0?n=new Uint8Array(r):t===void 0?n=new Uint8Array(r,e):n=new Uint8Array(r,e,t),Object.setPrototypeOf(n,o.prototype),n}function b(r){if(o.isBuffer(r)){let e=U(r.length)|0,t=h(e);return t.length===0||r.copy(t,0,0,e),t}if(r.length!==void 0)return typeof r.length!="number"||fe(r.length)?h(0):V(r);if(r.type==="Buffer"&&Array.isArray(r.data))return V(r.data)}function U(r){if(r>=l)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+l.toString(16)+" bytes");return r|0}function D(r){return+r!=r&&(r=0),o.alloc(+r)}o.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==o.prototype},o.compare=function(e,t){if(W(e,Uint8Array)&&(e=o.from(e,e.offset,e.byteLength)),W(t,Uint8Array)&&(t=o.from(t,t.offset,t.byteLength)),!o.isBuffer(e)||!o.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;let n=e.length,s=t.length;for(let a=0,u=Math.min(n,s);a<u;++a)if(e[a]!==t[a]){n=e[a],s=t[a];break}return n<s?-1:s<n?1:0},o.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},o.concat=function(e,t){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(e.length===0)return o.alloc(0);let n;if(t===void 0)for(t=0,n=0;n<e.length;++n)t+=e[n].length;let s=o.allocUnsafe(t),a=0;for(n=0;n<e.length;++n){let u=e[n];if(W(u,Uint8Array))a+u.length>s.length?(o.isBuffer(u)||(u=o.from(u)),u.copy(s,a)):Uint8Array.prototype.set.call(s,u,a);else if(o.isBuffer(u))u.copy(s,a);else throw new TypeError('"list" argument must be an Array of Buffers');a+=u.length}return s};function T(r,e){if(o.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||W(r,ArrayBuffer))return r.byteLength;if(typeof r!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);let t=r.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&t===0)return 0;let s=!1;for(;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return me(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return t*2;case"hex":return t>>>1;case"base64":return ke(r).length;default:if(s)return n?-1:me(r).length;e=(""+e).toLowerCase(),s=!0}}o.byteLength=T;function $(r,e,t){let n=!1;if((e===void 0||e<0)&&(e=0),e>this.length||((t===void 0||t>this.length)&&(t=this.length),t<=0)||(t>>>=0,e>>>=0,t<=e))return"";for(r||(r="utf8");;)switch(r){case"hex":return ut(this,e,t);case"utf8":case"utf-8":return Be(this,e,t);case"ascii":return at(this,e,t);case"latin1":case"binary":return ct(this,e,t);case"base64":return ot(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return lt(this,e,t);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}o.prototype._isBuffer=!0;function F(r,e,t){let n=r[e];r[e]=r[t],r[t]=n}o.prototype.swap16=function(){let e=this.length;if(e%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let t=0;t<e;t+=2)F(this,t,t+1);return this},o.prototype.swap32=function(){let e=this.length;if(e%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let t=0;t<e;t+=4)F(this,t,t+3),F(this,t+1,t+2);return this},o.prototype.swap64=function(){let e=this.length;if(e%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let t=0;t<e;t+=8)F(this,t,t+7),F(this,t+1,t+6),F(this,t+2,t+5),F(this,t+3,t+4);return this},o.prototype.toString=function(){let e=this.length;return e===0?"":arguments.length===0?Be(this,0,e):$.apply(this,arguments)},o.prototype.toLocaleString=o.prototype.toString,o.prototype.equals=function(e){if(!o.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e?!0:o.compare(this,e)===0},o.prototype.inspect=function(){let e="",t=G.INSPECT_MAX_BYTES;return e=this.toString("hex",0,t).replace(/(.{2})/g,"$1 ").trim(),this.length>t&&(e+=" ... "),"<Buffer "+e+">"},c&&(o.prototype[c]=o.prototype.inspect),o.prototype.compare=function(e,t,n,s,a){if(W(e,Uint8Array)&&(e=o.from(e,e.offset,e.byteLength)),!o.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(t===void 0&&(t=0),n===void 0&&(n=e?e.length:0),s===void 0&&(s=0),a===void 0&&(a=this.length),t<0||n>e.length||s<0||a>this.length)throw new RangeError("out of range index");if(s>=a&&t>=n)return 0;if(s>=a)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,s>>>=0,a>>>=0,this===e)return 0;let u=a-s,m=n-t,x=Math.min(u,m),A=this.slice(s,a),C=e.slice(t,n);for(let I=0;I<x;++I)if(A[I]!==C[I]){u=A[I],m=C[I];break}return u<m?-1:m<u?1:0};function M(r,e,t,n,s){if(r.length===0)return-1;if(typeof t=="string"?(n=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),t=+t,fe(t)&&(t=s?0:r.length-1),t<0&&(t=r.length+t),t>=r.length){if(s)return-1;t=r.length-1}else if(t<0)if(s)t=0;else return-1;if(typeof e=="string"&&(e=o.from(e,n)),o.isBuffer(e))return e.length===0?-1:be(r,e,t,n,s);if(typeof e=="number")return e=e&255,typeof Uint8Array.prototype.indexOf=="function"?s?Uint8Array.prototype.indexOf.call(r,e,t):Uint8Array.prototype.lastIndexOf.call(r,e,t):be(r,[e],t,n,s);throw new TypeError("val must be string, number or Buffer")}function be(r,e,t,n,s){let a=1,u=r.length,m=e.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(r.length<2||e.length<2)return-1;a=2,u/=2,m/=2,t/=2}function x(C,I){return a===1?C[I]:C.readUInt16BE(I*a)}let A;if(s){let C=-1;for(A=t;A<u;A++)if(x(r,A)===x(e,C===-1?0:A-C)){if(C===-1&&(C=A),A-C+1===m)return C*a}else C!==-1&&(A-=A-C),C=-1}else for(t+m>u&&(t=u-m),A=t;A>=0;A--){let C=!0;for(let I=0;I<m;I++)if(x(r,A+I)!==x(e,I)){C=!1;break}if(C)return A}return-1}o.prototype.includes=function(e,t,n){return this.indexOf(e,t,n)!==-1},o.prototype.indexOf=function(e,t,n){return M(this,e,t,n,!0)},o.prototype.lastIndexOf=function(e,t,n){return M(this,e,t,n,!1)};function et(r,e,t,n){t=Number(t)||0;let s=r.length-t;n?(n=Number(n),n>s&&(n=s)):n=s;let a=e.length;n>a/2&&(n=a/2);let u;for(u=0;u<n;++u){let m=parseInt(e.substr(u*2,2),16);if(fe(m))return u;r[t+u]=m}return u}function tt(r,e,t,n){return le(me(e,r.length-t),r,t,n)}function rt(r,e,t,n){return le(yt(e),r,t,n)}function nt(r,e,t,n){return le(ke(e),r,t,n)}function it(r,e,t,n){return le(gt(e,r.length-t),r,t,n)}o.prototype.write=function(e,t,n,s){if(t===void 0)s="utf8",n=this.length,t=0;else if(n===void 0&&typeof t=="string")s=t,n=this.length,t=0;else if(isFinite(t))t=t>>>0,isFinite(n)?(n=n>>>0,s===void 0&&(s="utf8")):(s=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");let a=this.length-t;if((n===void 0||n>a)&&(n=a),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");s||(s="utf8");let u=!1;for(;;)switch(s){case"hex":return et(this,e,t,n);case"utf8":case"utf-8":return tt(this,e,t,n);case"ascii":case"latin1":case"binary":return rt(this,e,t,n);case"base64":return nt(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return it(this,e,t,n);default:if(u)throw new TypeError("Unknown encoding: "+s);s=(""+s).toLowerCase(),u=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function ot(r,e,t){return e===0&&t===r.length?d.fromByteArray(r):d.fromByteArray(r.slice(e,t))}function Be(r,e,t){t=Math.min(r.length,t);let n=[],s=e;for(;s<t;){let a=r[s],u=null,m=a>239?4:a>223?3:a>191?2:1;if(s+m<=t){let x,A,C,I;switch(m){case 1:a<128&&(u=a);break;case 2:x=r[s+1],(x&192)===128&&(I=(a&31)<<6|x&63,I>127&&(u=I));break;case 3:x=r[s+1],A=r[s+2],(x&192)===128&&(A&192)===128&&(I=(a&15)<<12|(x&63)<<6|A&63,I>2047&&(I<55296||I>57343)&&(u=I));break;case 4:x=r[s+1],A=r[s+2],C=r[s+3],(x&192)===128&&(A&192)===128&&(C&192)===128&&(I=(a&15)<<18|(x&63)<<12|(A&63)<<6|C&63,I>65535&&I<1114112&&(u=I))}}u===null?(u=65533,m=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|u&1023),n.push(u),s+=m}return st(n)}let Ae=4096;function st(r){let e=r.length;if(e<=Ae)return String.fromCharCode.apply(String,r);let t="",n=0;for(;n<e;)t+=String.fromCharCode.apply(String,r.slice(n,n+=Ae));return t}function at(r,e,t){let n="";t=Math.min(r.length,t);for(let s=e;s<t;++s)n+=String.fromCharCode(r[s]&127);return n}function ct(r,e,t){let n="";t=Math.min(r.length,t);for(let s=e;s<t;++s)n+=String.fromCharCode(r[s]);return n}function ut(r,e,t){let n=r.length;(!e||e<0)&&(e=0),(!t||t<0||t>n)&&(t=n);let s="";for(let a=e;a<t;++a)s+=mt[r[a]];return s}function lt(r,e,t){let n=r.slice(e,t),s="";for(let a=0;a<n.length-1;a+=2)s+=String.fromCharCode(n[a]+n[a+1]*256);return s}o.prototype.slice=function(e,t){let n=this.length;e=~~e,t=t===void 0?n:~~t,e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),t<0?(t+=n,t<0&&(t=0)):t>n&&(t=n),t<e&&(t=e);let s=this.subarray(e,t);return Object.setPrototypeOf(s,o.prototype),s};function k(r,e,t){if(r%1!==0||r<0)throw new RangeError("offset is not uint");if(r+e>t)throw new RangeError("Trying to access beyond buffer length")}o.prototype.readUintLE=o.prototype.readUIntLE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let s=this[e],a=1,u=0;for(;++u<t&&(a*=256);)s+=this[e+u]*a;return s},o.prototype.readUintBE=o.prototype.readUIntBE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let s=this[e+--t],a=1;for(;t>0&&(a*=256);)s+=this[e+--t]*a;return s},o.prototype.readUint8=o.prototype.readUInt8=function(e,t){return e=e>>>0,t||k(e,1,this.length),this[e]},o.prototype.readUint16LE=o.prototype.readUInt16LE=function(e,t){return e=e>>>0,t||k(e,2,this.length),this[e]|this[e+1]<<8},o.prototype.readUint16BE=o.prototype.readUInt16BE=function(e,t){return e=e>>>0,t||k(e,2,this.length),this[e]<<8|this[e+1]},o.prototype.readUint32LE=o.prototype.readUInt32LE=function(e,t){return e=e>>>0,t||k(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216},o.prototype.readUint32BE=o.prototype.readUInt32BE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])},o.prototype.readBigUInt64LE=Y(function(e){e=e>>>0,Q(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&ne(e,this.length-8);let s=t+this[++e]*_(2,8)+this[++e]*_(2,16)+this[++e]*_(2,24),a=this[++e]+this[++e]*_(2,8)+this[++e]*_(2,16)+n*_(2,24);return BigInt(s)+(BigInt(a)<<BigInt(32))}),o.prototype.readBigUInt64BE=Y(function(e){e=e>>>0,Q(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&ne(e,this.length-8);let s=t*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+this[++e],a=this[++e]*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+n;return(BigInt(s)<<BigInt(32))+BigInt(a)}),o.prototype.readIntLE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let s=this[e],a=1,u=0;for(;++u<t&&(a*=256);)s+=this[e+u]*a;return a*=128,s>=a&&(s-=Math.pow(2,8*t)),s},o.prototype.readIntBE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let s=t,a=1,u=this[e+--s];for(;s>0&&(a*=256);)u+=this[e+--s]*a;return a*=128,u>=a&&(u-=Math.pow(2,8*t)),u},o.prototype.readInt8=function(e,t){return e=e>>>0,t||k(e,1,this.length),this[e]&128?(255-this[e]+1)*-1:this[e]},o.prototype.readInt16LE=function(e,t){e=e>>>0,t||k(e,2,this.length);let n=this[e]|this[e+1]<<8;return n&32768?n|4294901760:n},o.prototype.readInt16BE=function(e,t){e=e>>>0,t||k(e,2,this.length);let n=this[e+1]|this[e]<<8;return n&32768?n|4294901760:n},o.prototype.readInt32LE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},o.prototype.readInt32BE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},o.prototype.readBigInt64LE=Y(function(e){e=e>>>0,Q(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&ne(e,this.length-8);let s=this[e+4]+this[e+5]*_(2,8)+this[e+6]*_(2,16)+(n<<24);return(BigInt(s)<<BigInt(32))+BigInt(t+this[++e]*_(2,8)+this[++e]*_(2,16)+this[++e]*_(2,24))}),o.prototype.readBigInt64BE=Y(function(e){e=e>>>0,Q(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&ne(e,this.length-8);let s=(t<<24)+this[++e]*_(2,16)+this[++e]*_(2,8)+this[++e];return(BigInt(s)<<BigInt(32))+BigInt(this[++e]*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+n)}),o.prototype.readFloatLE=function(e,t){return e=e>>>0,t||k(e,4,this.length),i.read(this,e,!0,23,4)},o.prototype.readFloatBE=function(e,t){return e=e>>>0,t||k(e,4,this.length),i.read(this,e,!1,23,4)},o.prototype.readDoubleLE=function(e,t){return e=e>>>0,t||k(e,8,this.length),i.read(this,e,!0,52,8)},o.prototype.readDoubleBE=function(e,t){return e=e>>>0,t||k(e,8,this.length),i.read(this,e,!1,52,8)};function L(r,e,t,n,s,a){if(!o.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>s||e<a)throw new RangeError('"value" argument is out of bounds');if(t+n>r.length)throw new RangeError("Index out of range")}o.prototype.writeUintLE=o.prototype.writeUIntLE=function(e,t,n,s){if(e=+e,t=t>>>0,n=n>>>0,!s){let m=Math.pow(2,8*n)-1;L(this,e,t,n,m,0)}let a=1,u=0;for(this[t]=e&255;++u<n&&(a*=256);)this[t+u]=e/a&255;return t+n},o.prototype.writeUintBE=o.prototype.writeUIntBE=function(e,t,n,s){if(e=+e,t=t>>>0,n=n>>>0,!s){let m=Math.pow(2,8*n)-1;L(this,e,t,n,m,0)}let a=n-1,u=1;for(this[t+a]=e&255;--a>=0&&(u*=256);)this[t+a]=e/u&255;return t+n},o.prototype.writeUint8=o.prototype.writeUInt8=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,1,255,0),this[t]=e&255,t+1},o.prototype.writeUint16LE=o.prototype.writeUInt16LE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,2,65535,0),this[t]=e&255,this[t+1]=e>>>8,t+2},o.prototype.writeUint16BE=o.prototype.writeUInt16BE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=e&255,t+2},o.prototype.writeUint32LE=o.prototype.writeUInt32LE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=e&255,t+4},o.prototype.writeUint32BE=o.prototype.writeUInt32BE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=e&255,t+4};function Se(r,e,t,n,s){Ue(e,n,s,r,t,7);let a=Number(e&BigInt(4294967295));r[t++]=a,a=a>>8,r[t++]=a,a=a>>8,r[t++]=a,a=a>>8,r[t++]=a;let u=Number(e>>BigInt(32)&BigInt(4294967295));return r[t++]=u,u=u>>8,r[t++]=u,u=u>>8,r[t++]=u,u=u>>8,r[t++]=u,t}function xe(r,e,t,n,s){Ue(e,n,s,r,t,7);let a=Number(e&BigInt(4294967295));r[t+7]=a,a=a>>8,r[t+6]=a,a=a>>8,r[t+5]=a,a=a>>8,r[t+4]=a;let u=Number(e>>BigInt(32)&BigInt(4294967295));return r[t+3]=u,u=u>>8,r[t+2]=u,u=u>>8,r[t+1]=u,u=u>>8,r[t]=u,t+8}o.prototype.writeBigUInt64LE=Y(function(e,t=0){return Se(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),o.prototype.writeBigUInt64BE=Y(function(e,t=0){return xe(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),o.prototype.writeIntLE=function(e,t,n,s){if(e=+e,t=t>>>0,!s){let x=Math.pow(2,8*n-1);L(this,e,t,n,x-1,-x)}let a=0,u=1,m=0;for(this[t]=e&255;++a<n&&(u*=256);)e<0&&m===0&&this[t+a-1]!==0&&(m=1),this[t+a]=(e/u>>0)-m&255;return t+n},o.prototype.writeIntBE=function(e,t,n,s){if(e=+e,t=t>>>0,!s){let x=Math.pow(2,8*n-1);L(this,e,t,n,x-1,-x)}let a=n-1,u=1,m=0;for(this[t+a]=e&255;--a>=0&&(u*=256);)e<0&&m===0&&this[t+a+1]!==0&&(m=1),this[t+a]=(e/u>>0)-m&255;return t+n},o.prototype.writeInt8=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=e&255,t+1},o.prototype.writeInt16LE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,2,32767,-32768),this[t]=e&255,this[t+1]=e>>>8,t+2},o.prototype.writeInt16BE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=e&255,t+2},o.prototype.writeInt32LE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,4,2147483647,-2147483648),this[t]=e&255,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},o.prototype.writeInt32BE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=e&255,t+4},o.prototype.writeBigInt64LE=Y(function(e,t=0){return Se(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),o.prototype.writeBigInt64BE=Y(function(e,t=0){return xe(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function Ce(r,e,t,n,s,a){if(t+n>r.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function Pe(r,e,t,n,s){return e=+e,t=t>>>0,s||Ce(r,e,t,4),i.write(r,e,t,n,23,4),t+4}o.prototype.writeFloatLE=function(e,t,n){return Pe(this,e,t,!0,n)},o.prototype.writeFloatBE=function(e,t,n){return Pe(this,e,t,!1,n)};function Te(r,e,t,n,s){return e=+e,t=t>>>0,s||Ce(r,e,t,8),i.write(r,e,t,n,52,8),t+8}o.prototype.writeDoubleLE=function(e,t,n){return Te(this,e,t,!0,n)},o.prototype.writeDoubleBE=function(e,t,n){return Te(this,e,t,!1,n)},o.prototype.copy=function(e,t,n,s){if(!o.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!s&&s!==0&&(s=this.length),t>=e.length&&(t=e.length),t||(t=0),s>0&&s<n&&(s=n),s===n||e.length===0||this.length===0)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(s<0)throw new RangeError("sourceEnd out of bounds");s>this.length&&(s=this.length),e.length-t<s-n&&(s=e.length-t+n);let a=s-n;return this===e&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(t,n,s):Uint8Array.prototype.set.call(e,this.subarray(n,s),t),a},o.prototype.fill=function(e,t,n,s){if(typeof e=="string"){if(typeof t=="string"?(s=t,t=0,n=this.length):typeof n=="string"&&(s=n,n=this.length),s!==void 0&&typeof s!="string")throw new TypeError("encoding must be a string");if(typeof s=="string"&&!o.isEncoding(s))throw new TypeError("Unknown encoding: "+s);if(e.length===1){let u=e.charCodeAt(0);(s==="utf8"&&u<128||s==="latin1")&&(e=u)}}else typeof e=="number"?e=e&255:typeof e=="boolean"&&(e=Number(e));if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;t=t>>>0,n=n===void 0?this.length:n>>>0,e||(e=0);let a;if(typeof e=="number")for(a=t;a<n;++a)this[a]=e;else{let u=o.isBuffer(e)?e:o.from(e,s),m=u.length;if(m===0)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(a=0;a<n-t;++a)this[a+t]=u[a%m]}return this};let H={};function ge(r,e,t){H[r]=class extends t{constructor(){super(),Object.defineProperty(this,"message",{value:e.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${r}]`,this.stack,delete this.name}get code(){return r}set code(s){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:s,writable:!0})}toString(){return`${this.name} [${r}]: ${this.message}`}}}ge("ERR_BUFFER_OUT_OF_BOUNDS",function(r){return r?`${r} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),ge("ERR_INVALID_ARG_TYPE",function(r,e){return`The "${r}" argument must be of type number. Received type ${typeof e}`},TypeError),ge("ERR_OUT_OF_RANGE",function(r,e,t){let n=`The value of "${r}" is out of range.`,s=t;return Number.isInteger(t)&&Math.abs(t)>_(2,32)?s=Ke(String(t)):typeof t=="bigint"&&(s=String(t),(t>_(BigInt(2),BigInt(32))||t<-_(BigInt(2),BigInt(32)))&&(s=Ke(s)),s+="n"),n+=` It must be ${e}. Received ${s}`,n},RangeError);function Ke(r){let e="",t=r.length,n=r[0]==="-"?1:0;for(;t>=n+4;t-=3)e=`_${r.slice(t-3,t)}${e}`;return`${r.slice(0,t)}${e}`}function dt(r,e,t){Q(e,"offset"),(r[e]===void 0||r[e+t]===void 0)&&ne(e,r.length-(t+1))}function Ue(r,e,t,n,s,a){if(r>t||r<e){let u=typeof e=="bigint"?"n":"",m;throw a>3?e===0||e===BigInt(0)?m=`>= 0${u} and < 2${u} ** ${(a+1)*8}${u}`:m=`>= -(2${u} ** ${(a+1)*8-1}${u}) and < 2 ** ${(a+1)*8-1}${u}`:m=`>= ${e}${u} and <= ${t}${u}`,new H.ERR_OUT_OF_RANGE("value",m,r)}dt(n,s,a)}function Q(r,e){if(typeof r!="number")throw new H.ERR_INVALID_ARG_TYPE(e,"number",r)}function ne(r,e,t){throw Math.floor(r)!==r?(Q(r,t),new H.ERR_OUT_OF_RANGE(t||"offset","an integer",r)):e<0?new H.ERR_BUFFER_OUT_OF_BOUNDS:new H.ERR_OUT_OF_RANGE(t||"offset",`>= ${t?1:0} and <= ${e}`,r)}let pt=/[^+/0-9A-Za-z-_]/g;function ht(r){if(r=r.split("=")[0],r=r.trim().replace(pt,""),r.length<2)return"";for(;r.length%4!==0;)r=r+"=";return r}function me(r,e){e=e||1/0;let t,n=r.length,s=null,a=[];for(let u=0;u<n;++u){if(t=r.charCodeAt(u),t>55295&&t<57344){if(!s){if(t>56319){(e-=3)>-1&&a.push(239,191,189);continue}else if(u+1===n){(e-=3)>-1&&a.push(239,191,189);continue}s=t;continue}if(t<56320){(e-=3)>-1&&a.push(239,191,189),s=t;continue}t=(s-55296<<10|t-56320)+65536}else s&&(e-=3)>-1&&a.push(239,191,189);if(s=null,t<128){if((e-=1)<0)break;a.push(t)}else if(t<2048){if((e-=2)<0)break;a.push(t>>6|192,t&63|128)}else if(t<65536){if((e-=3)<0)break;a.push(t>>12|224,t>>6&63|128,t&63|128)}else if(t<1114112){if((e-=4)<0)break;a.push(t>>18|240,t>>12&63|128,t>>6&63|128,t&63|128)}else throw new Error("Invalid code point")}return a}function yt(r){let e=[];for(let t=0;t<r.length;++t)e.push(r.charCodeAt(t)&255);return e}function gt(r,e){let t,n,s,a=[];for(let u=0;u<r.length&&!((e-=2)<0);++u)t=r.charCodeAt(u),n=t>>8,s=t%256,a.push(s),a.push(n);return a}function ke(r){return d.toByteArray(ht(r))}function le(r,e,t,n){let s;for(s=0;s<n&&!(s+t>=e.length||s>=r.length);++s)e[s+t]=r[s];return s}function W(r,e){return r instanceof e||r!=null&&r.constructor!=null&&r.constructor.name!=null&&r.constructor.name===e.name}function fe(r){return r!==r}let mt=function(){let r="0123456789abcdef",e=new Array(256);for(let t=0;t<16;++t){let n=t*16;for(let s=0;s<16;++s)e[n+s]=r[t]+r[s]}return e}();function Y(r){return typeof BigInt=="undefined"?ft:r}function ft(){throw new Error("BigInt not supported")}return G}var X=Tt();X.Buffer;X.SlowBuffer;X.INSPECT_MAX_BYTES;X.kMaxLength;var K=X.Buffer,Nt=X.INSPECT_MAX_BYTES,Ot=X.kMaxLength;var se=require("bs58"),Z=we(require("@noble/ed25519"));var q=class d{static generateKey(){let i=Z.utils.randomPrivateKey(),c=(0,se.encode)(i);return new d(c)}constructor(i){this.secretKey=i;let c=(0,se.decode)(i);this.privateKey=K.from(c).toString("hex")}sign(i){return B(this,null,function*(){return yield Z.signAsync(i,this.privateKey)})}getPublicKey(){return B(this,null,function*(){let i=yield Z.getPublicKeyAsync(this.privateKey);return`ed25519:${(0,se.encode)(i)}`})}toString(){return this.privateKey}};var ae=class{constructor(i="testnet"){this.networkId=i}get keyPrefix(){return`orderly_${this.networkId}_`}},ee=class extends ae{getOrderlyKey(i){let c;if(i)c=this.getItem(i,"orderlyKey");else{let l=this.getAddress();if(!l)return null;c=this.getItem(l,"orderlyKey")}return c?new q(c):null}getAccountId(i){return this.getItem(i,"accountId")}setAccountId(i,c){this.setItem(i,{accountId:c})}getAddress(){return localStorage.getItem(`${this.keyPrefix}address`)}setAddress(i){localStorage.setItem(`${this.keyPrefix}address`,i)}generateKey(){return q.generateKey()}setKey(i,c){this.setItem(i,{orderlyKey:c.secretKey})}cleanAllKey(i){localStorage.removeItem(`${this.keyPrefix}${i}`),localStorage.removeItem(`${this.keyPrefix}address`)}cleanKey(i,c){let l=this.getItem(i);delete l[c],localStorage.setItem(`${this.keyPrefix}${i}`,JSON.stringify(l))}setItem(i,c){let l=`${this.keyPrefix}${i}`,p=localStorage.getItem(l);p?p=JSON.parse(p):p={},localStorage.setItem(l,JSON.stringify(R(R({},p),c)))}getItem(i,c){let l=`${this.keyPrefix}${i}`,p=localStorage.getItem(l);return p?p=JSON.parse(p):p={},typeof c=="undefined"?p:p[c]}},te=class{constructor(i){this.secretKey=i}generateKey(){return new q(this.secretKey)}getOrderlyKey(){return new q(this.secretKey)}getAccountId(){return""}setAccountId(i){}getAddress(){return""}setAddress(i){}setKey(i,c){}cleanAllKey(){}cleanKey(i){}};var z={EIP712Domain:[{name:"name",type:"string"},{name:"version",type:"string"},{name:"chainId",type:"uint256"},{name:"verifyingContract",type:"address"}],Registration:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"timestamp",type:"uint64"},{name:"registrationNonce",type:"uint256"}],Withdraw:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"receiver",type:"address"},{name:"token",type:"string"},{name:"amount",type:"uint256"},{name:"withdrawNonce",type:"uint64"},{name:"timestamp",type:"uint64"}],AddOrderlyKey:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"orderlyKey",type:"string"},{name:"scope",type:"string"},{name:"timestamp",type:"uint64"},{name:"expiration",type:"uint64"}],SettlePnl:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"settleNonce",type:"uint64"},{name:"timestamp",type:"uint64"}]},Le="0x004d88aa993fd2100d6c8beb6cdb6bc04f565b44",Fe="0x0C554dDb6a9010Ed1FD7e50d92559A06655dA482",Ve="0x8794E7260517B1766fc7b55cAfcd56e6bf08600e";var je=function(d){return d.replace(/\+/g,"-").replace(/\//g,"_")};function Kt(){return"0x8794E7260517B1766fc7b55cAfcd56e6bf08600e"}function We(d,i){return{name:"Orderly",version:"1",chainId:d,verifyingContract:i?Kt():"0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"}}function qe(d){let{chainId:i,registrationNonce:c}=d,l=Date.now(),p="Registration",h={brokerId:"woofi_dex",chainId:i,timestamp:l,registrationNonce:c},o={EIP712Domain:z.EIP712Domain,[p]:z[p]};return[h,{domain:We(i),message:h,primaryType:p,types:o}]}function Je(d){let{publicKey:i,chainId:c,primaryType:l,expiration:p=365}=d,h=Date.now(),o={brokerId:"woofi_dex",orderlyKey:i,scope:"read,trading",chainId:c,timestamp:h,expiration:h+1e3*60*60*24*p},g={EIP712Domain:z.EIP712Domain,[l]:z[l]},w={domain:We(c),message:o,primaryType:l,types:g};return[o,w]}function Ye(d){let{chainId:i,settlePnlNonce:c,domain:l}=d,p="SettlePnl",h=new Date().getTime(),o={EIP712Domain:z.EIP712Domain,[p]:z[p]},g={brokerId:"woofi_dex",chainId:i,timestamp:h,settleNonce:c};return[g,{domain:l,message:g,primaryType:p,types:o}]}var J=class{constructor(i){this.keyStore=i}sign(i){return B(this,null,function*(){let c=Date.now().toString(),l=[c,i.method.toUpperCase(),i.url].join("");i.data&&Object.keys(i.data).length&&(l+=JSON.stringify(i.data));let{signature:p,publicKey:h}=yield this.signText(l);return{"orderly-key":h,"orderly-timestamp":c,"orderly-signature":p}})}signText(i){return B(this,null,function*(){let c=this.keyStore.getOrderlyKey();if(!c)throw new Error("orderlyKeyPair is not defined");let l=K.from(i),p=yield c.sign(l),h=K.from(p).toString("base64");return{signature:je(h),publicKey:yield c.getPublicKey()}})}};var Ze=we(require("eventemitter3"));var ce=class{constructor(){this._restore()}_restore(){this.map=new Map([["apiBaseUrl","https://dev-api-iap-v2.orderly.org"],["klineDataUrl","https://dev-api-iap-v2.orderly.org"],["publicWsUrl","wss://dev-ws-v2.orderly.org"],["publicWebsocketKey","OqdphuyCtYWxwzhxyLLjOWNdFP7sQt8RPWzmb5xY"],["privateWsUrl","wss://dev-ws-private-v2.orderly.org"],["env","dev-evm"]])}get(i){return this.map.get(i)}set(i,c){this.map.set(i,c)}clear(){}},Ie=class extends ce{constructor(c){super();this.configMap=c}_restore(){let c=Object.entries(this.configMap);this.map=new Map(c)}};var Ge=d=>{let i=new te(d||"AFmQSju4FhDwG93cMdKogcnKx7SWmViDtDv5PVzfvRDF");return new J(i)},Xe=()=>{if(typeof window=="undefined")throw new Error("the default signer only supports browsers.");let d=new ee("");return new J(d)};var pe=class{constructor(i){this.configStore=i}getContractInfoByEnv(){return{usdcAddress:Le,vaultAddress:Fe,verifyContractAddress:Ve}}};var _e=class{constructor(i=[],c={}){this.providers=i;this.services=c;this.injectProperties={}}register(...i){this.providers.push(...i),i.forEach(c=>{let l=c;l instanceof Function&&(l=new c),this.add(l)})}registerByName(i,c){let l=c;l instanceof Function&&(l=new c),this.addByName(i,l)}get(i){return this.services[i]}getAll(){return Object.assign({},this.services)}add(i){return this.addByName(i.constructor.name,i)}addByName(i,c){return this.services[i]=c,this.services[i.toLowerCase()]=c,this.injectIntoProperties(c,i),this.get(i)}inject(i,c,l){i&&l&&(i[c]=l)}injectIntoProperties(i,c=i.constructor.name){this.getInjectProperty(c.toLowerCase()).forEach(l=>{this.inject(l.target,l.propertyKey,i)})}getInjectProperty(i){return this.injectProperties[i]||(this.injectProperties[i]=[]),this.injectProperties[i]}},ze=_e;var Ee=class d{static getContainer(){return d.container||(d.container=new ze),d.container}static register(...i){this.getContainer().register(...i)}static registerByName(i,c){this.getContainer().registerByName(i,c)}static get(i){return this.getContainer().get(i)}static getAll(){return this.getContainer().getAll()}constructor(){}},He=Ee;var O=require("@orderly.network/types");var Qe=we(require("eventemitter3"));var ue=class{constructor(i,c,l,p){this.configStore=i;this.keyStore=c;this.contractManger=l;this.walletAdapterClass=p;this._ee=new Qe.default;this._state={status:O.AccountStatusEnum.NotConnected,balance:"",checking:!1,leverage:Number.NaN};this._bindEvents()}login(i){if(!i)throw new Error("address is required")}logout(){}setAddress(i,c){return B(this,null,function*(){if(!i)throw new Error("address is required");console.log("setAddress",i,c),this.keyStore.setAddress(i);let l=j(R({},this.stateValue),{status:O.AccountStatusEnum.Connected,address:i});return this._ee.emit("change:status",l),c&&(this.walletClient=new this.walletAdapterClass(c)),yield this._checkAccount(i)})}get stateValue(){return this._state}get accountId(){return this.stateValue.accountId}get address(){return this.stateValue.address}get chainId(){var i;return(i=this.walletClient)==null?void 0:i.chainId}set position(i){let c=j(R({},this.stateValue),{positon:i});this._ee.emit("change:status",c)}set orders(i){let c=j(R({},this.stateValue),{orders:i});this._ee.emit("change:status",c)}_bindEvents(){this._ee.addListener("change:status",i=>{console.log("change:status",i),this._state=i})}_checkAccount(i){return B(this,null,function*(){console.log("check account is esist",i);let c;try{let l=yield this._checkAccountExist(i);if(console.log("accountInfo:",l),l&&l.account_id)console.log("account is exist"),this.keyStore.setAccountId(i,l.account_id),c=j(R({},this.stateValue),{status:O.AccountStatusEnum.SignedIn,accountId:l.account_id,userId:l.user_id}),this._ee.emit("change:status",c);else return c=j(R({},this.stateValue),{status:O.AccountStatusEnum.NotSignedIn}),this._ee.emit("change:status",c),O.AccountStatusEnum.NotSignedIn;let p=this.keyStore.getOrderlyKey();if(console.log("orderlyKey:::::::",p),c=j(R({},this.stateValue),{status:O.AccountStatusEnum.DisabledTrading}),!p)return console.log("orderlyKey is null"),this._ee.emit("change:status",c),O.AccountStatusEnum.DisabledTrading;let h=yield p.getPublicKey(),o=yield this._checkOrderlyKeyState(l.account_id,h);if(console.log("orderlyKeyStatus:",o),o&&o.orderly_key&&o.key_status==="ACTIVE"){let g=Date.now(),w=o.expiration;if(g>w)return this.keyStore.cleanKey(i,"orderlyKey"),O.AccountStatusEnum.DisabledTrading;let S=j(R({},this.stateValue),{status:O.AccountStatusEnum.EnableTrading});return this._ee.emit("change:status",S),O.AccountStatusEnum.EnableTrading}return this.keyStore.cleanKey(i,"orderlyKey"),O.AccountStatusEnum.NotConnected}catch(l){console.log("\u68C0\u67E5\u8D26\u6237\u72B6\u6001\u9519\u8BEF:",l)}return O.AccountStatusEnum.NotSignedIn})}_checkAccountExist(i){return B(this,null,function*(){let c=yield this._simpleFetch(`/v1/get_account?address=${i}&broker_id=woofi_dex`);return c.success?c.data:null})}createAccount(){return B(this,null,function*(){let i=yield this._getRegisterationNonce(),c=this.stateValue.address;if(!c)throw new Error("address is undefined");let[l,p]=qe({registrationNonce:i,chainId:this.walletClient.chainId}),h=yield this.walletClient.send("eth_signTypedData_v4",[c,JSON.stringify(p)]),o=yield this._simpleFetch("/v1/register_account",{method:"POST",body:JSON.stringify({signature:h,message:l,userAddress:c}),headers:{"Content-Type":"application/json"}});if(o.success){this.keyStore.setAccountId(c,o.data.account_id);let g=j(R({},this.stateValue),{status:O.AccountStatusEnum.DisabledTrading,accountId:o.data.account_id,userId:o.data.user_id});return this._ee.emit("change:status",g),o}})}createOrderlyKey(i){return B(this,null,function*(){if(this.stateValue.accountId===void 0)throw new Error("account id is undefined");if(this.walletClient===void 0)throw new Error("walletClient is undefined");let c="AddOrderlyKey",l=this.keyStore.generateKey(),p=yield l.getPublicKey(),[h,o]=Je({publicKey:p,chainId:this.walletClient.chainId,primaryType:c,expiration:i}),g=this.stateValue.address;if(!g)throw new Error("address is undefined");let w=yield this.walletClient.send("eth_signTypedData_v4",[g,JSON.stringify(o)]),S=yield this._simpleFetch("/v1/orderly_key",{method:"POST",body:JSON.stringify({signature:w,message:h,userAddress:g}),headers:{"X-Account-Id":this.stateValue.accountId,"Content-Type":"application/json"}});if(S.success){this.keyStore.setKey(g,l);let E=j(R({},this.stateValue),{status:O.AccountStatusEnum.EnableTrading});return this._ee.emit("change:status",E),S}else throw new Error(S.message)})}settlement(){return B(this,null,function*(){let i=yield this._getSettleNonce(),c=this.stateValue.address,l=this.getDomain(!0),p="/v1/settle_pnl",[h,o]=Ye({settlePnlNonce:i,chainId:this.walletClient.chainId,domain:l}),w={signature:yield this.walletClient.send("eth_signTypedData_v4",[c,JSON.stringify(o)]),message:h,userAddress:c,verifyingContract:l.verifyingContract},S={method:"POST",url:p,data:w},E=yield this.signer.sign(S),P=yield this._simpleFetch(p,{method:"POST",body:JSON.stringify(w),headers:R({"Content-Type":"application/json","orderly-account-id":this.stateValue.accountId},E)});if(P.success)return P;throw new Error(P.message)})}disconnect(){return B(this,null,function*(){let i=j(R({},this.stateValue),{status:O.AccountStatusEnum.NotConnected,accountId:void 0,userId:void 0,address:void 0});this._ee.emit("change:status",i)})}_checkOrderlyKeyState(i,c){return B(this,null,function*(){let l=yield this._simpleFetch(`/v1/get_orderly_key?account_id=${i}&orderly_key=${c}`);if(l.success)return l.data;throw new Error(l.message)})}get signer(){return this._singer||(this._singer=new J(this.keyStore)),this._singer}get wallet(){return this.walletClient}_getRegisterationNonce(){return B(this,null,function*(){var c;let i=yield this._simpleFetch("/v1/registration_nonce",{headers:{"orderly-account-id":this.stateValue.accountId}});if(console.log("getRegisterationNonce:",i),i.success)return(c=i.data)==null?void 0:c.registration_nonce;throw new Error(i.message)})}_getSettleNonce(){return B(this,null,function*(){var w;let i=Date.now().toString(),l=[i,"GET","/v1/settle_nonce"].join(""),p=this.signer,{publicKey:h,signature:o}=yield p.signText(l),g=yield this._simpleFetch("/v1/settle_nonce",{headers:{"orderly-account-id":this.stateValue.accountId,"orderly-key":h,"orderly-timestamp":i,"orderly-signature":o}});if(g.success)return(w=g.data)==null?void 0:w.settle_nonce;throw new Error(g.message)})}_simpleFetch(l){return B(this,arguments,function*(i,c={}){let p=`${this.configStore.get("apiBaseUrl")}${i}`;return fetch(p,c).then(h=>h.json())})}getDomain(i){return{name:"Orderly",version:"1",chainId:this.walletClient.chainId,verifyingContract:i?this.contractManger.getContractInfoByEnv().verifyContractAddress:"0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"}}get on(){return this._ee.on.bind(this._ee)}get once(){return this._ee.once.bind(this._ee)}get off(){return this._ee.off.bind(this._ee)}};ue.instanceName="account";var he=class{constructor(i){this.web3=i}getBalance(i){return B(this,null,function*(){return yield this.web3.eth.getBalance(i)})}deposit(i,c,l){return B(this,null,function*(){return yield this.web3.eth.sendTransaction({from:i,to:c,value:l})})}send(i,c){return B(this,null,function*(){})}};var re=require("ethers");var ye=class{constructor(i){console.log("EtherAdapter constructor",i),this._chainId=parseInt(i.chain.id,16),this.provider=new re.BrowserProvider(i.provider,"any")}getBalance(i){throw new Error("Method not implemented.")}deposit(i,c,l){throw new Error("Method not implemented.")}getAddresses(i){return(0,re.getAddress)(i)}get chainId(){return this._chainId}send(i,c){return B(this,null,function*(){var l;return yield(l=this.provider)==null?void 0:l.send(i,c)})}verify(i,c){return B(this,null,function*(){let{domain:l,types:p,message:h}=i,o=re.ethers.verifyTypedData(l,p,h,c);console.log("recovered",o)})}};0&&(module.exports={Account,BaseConfigStore,BaseContractManager,BaseKeyStore,BaseOrderlyKeyPair,BaseSigner,EtherAdapter,EventEmitter,LocalStorageStore,MemoryConfigStore,MockKeyStore,SimpleDI,Web3WalletAdapter,getDefaultSigner,getMockSigner});
1
+ "use strict";var cr=Object.create;var bt=Object.defineProperty;var ur=Object.getOwnPropertyDescriptor;var lr=Object.getOwnPropertyNames;var dr=Object.getPrototypeOf,hr=Object.prototype.hasOwnProperty;var ft=(c,n)=>()=>(c&&(n=c(c=0)),n);var ae=(c,n)=>()=>(n||c((n={exports:{}}).exports,n),n.exports),pr=(c,n)=>{for(var s in n)bt(c,s,{get:n[s],enumerable:!0})},ce=(c,n,s,u)=>{if(n&&typeof n=="object"||typeof n=="function")for(let d of lr(n))!hr.call(c,d)&&d!==s&&bt(c,d,{get:()=>n[d],enumerable:!(u=ur(n,d))||u.enumerable});return c};var Mt=(c,n,s)=>(s=c!=null?cr(dr(c)):{},ce(n||!c||!c.__esModule?bt(s,"default",{value:c,enumerable:!0}):s,c)),yr=c=>ce(bt({},"__esModule",{value:!0}),c);var B=ft(()=>{"use strict"});function fr(c,n){this.fun=c,this.array=n}function ue(c){var n=Math.floor((Date.now()-tt.now())*.001),s=tt.now()*.001,u=Math.floor(s)+n,d=Math.floor(s%1*1e9);return c&&(u=u-c[0],d=d-c[1],d<0&&(u--,d+=Dt)),[u,d]}var Nr,tt,Ot,Dt,le=ft(()=>{"use strict";B();v();b();fr.prototype.run=function(){this.fun.apply(null,this.array)};Nr={PATH:"/usr/bin",LANG:navigator.language+".UTF-8",PWD:"/",HOME:"/home",TMP:"/tmp"},tt={now:typeof performance<"u"?performance.now.bind(performance):void 0,timing:typeof performance<"u"?performance.timing:void 0};tt.now===void 0&&(Ot=Date.now(),tt.timing&&tt.timing.navigationStart&&(Ot=tt.timing.navigationStart),tt.now=()=>Date.now()-Ot);Dt=1e9;ue.bigint=function(c){var n=ue(c);return typeof BigInt>"u"?n[0]*Dt+n[1]:BigInt(n[0]*Dt)+BigInt(n[1])}});var b=ft(()=>{"use strict";le()});function gr(){if(de)return gt;de=!0,gt.byteLength=f,gt.toByteArray=A,gt.fromByteArray=T;for(var c=[],n=[],s=typeof Uint8Array<"u"?Uint8Array:Array,u="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",d=0,p=u.length;d<p;++d)c[d]=u[d],n[u.charCodeAt(d)]=d;n["-".charCodeAt(0)]=62,n["_".charCodeAt(0)]=63;function o(y){var m=y.length;if(m%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var x=y.indexOf("=");x===-1&&(x=m);var S=x===m?0:4-x%4;return[x,S]}function f(y){var m=o(y),x=m[0],S=m[1];return(x+S)*3/4-S}function I(y,m,x){return(m+x)*3/4-x}function A(y){var m,x=o(y),S=x[0],U=x[1],C=new s(I(y,S,U)),P=0,k=U>0?S-4:S,N;for(N=0;N<k;N+=4)m=n[y.charCodeAt(N)]<<18|n[y.charCodeAt(N+1)]<<12|n[y.charCodeAt(N+2)]<<6|n[y.charCodeAt(N+3)],C[P++]=m>>16&255,C[P++]=m>>8&255,C[P++]=m&255;return U===2&&(m=n[y.charCodeAt(N)]<<2|n[y.charCodeAt(N+1)]>>4,C[P++]=m&255),U===1&&(m=n[y.charCodeAt(N)]<<10|n[y.charCodeAt(N+1)]<<4|n[y.charCodeAt(N+2)]>>2,C[P++]=m>>8&255,C[P++]=m&255),C}function g(y){return c[y>>18&63]+c[y>>12&63]+c[y>>6&63]+c[y&63]}function E(y,m,x){for(var S,U=[],C=m;C<x;C+=3)S=(y[C]<<16&16711680)+(y[C+1]<<8&65280)+(y[C+2]&255),U.push(g(S));return U.join("")}function T(y){for(var m,x=y.length,S=x%3,U=[],C=16383,P=0,k=x-S;P<k;P+=C)U.push(E(y,P,P+C>k?k:P+C));return S===1?(m=y[x-1],U.push(c[m>>2]+c[m<<4&63]+"==")):S===2&&(m=(y[x-2]<<8)+y[x-1],U.push(c[m>>10]+c[m>>4&63]+c[m<<2&63]+"=")),U.join("")}return gt}function mr(){if(he)return vt;he=!0;return vt.read=function(c,n,s,u,d){var p,o,f=d*8-u-1,I=(1<<f)-1,A=I>>1,g=-7,E=s?d-1:0,T=s?-1:1,y=c[n+E];for(E+=T,p=y&(1<<-g)-1,y>>=-g,g+=f;g>0;p=p*256+c[n+E],E+=T,g-=8);for(o=p&(1<<-g)-1,p>>=-g,g+=u;g>0;o=o*256+c[n+E],E+=T,g-=8);if(p===0)p=1-A;else{if(p===I)return o?NaN:(y?-1:1)*(1/0);o=o+Math.pow(2,u),p=p-A}return(y?-1:1)*o*Math.pow(2,p-u)},vt.write=function(c,n,s,u,d,p){var o,f,I,A=p*8-d-1,g=(1<<A)-1,E=g>>1,T=d===23?Math.pow(2,-24)-Math.pow(2,-77):0,y=u?0:p-1,m=u?1:-1,x=n<0||n===0&&1/n<0?1:0;for(n=Math.abs(n),isNaN(n)||n===1/0?(f=isNaN(n)?1:0,o=g):(o=Math.floor(Math.log(n)/Math.LN2),n*(I=Math.pow(2,-o))<1&&(o--,I*=2),o+E>=1?n+=T/I:n+=T*Math.pow(2,1-E),n*I>=2&&(o++,I/=2),o+E>=g?(f=0,o=g):o+E>=1?(f=(n*I-1)*Math.pow(2,d),o=o+E):(f=n*Math.pow(2,E-1)*Math.pow(2,d),o=0));d>=8;c[s+y]=f&255,y+=m,f/=256,d-=8);for(o=o<<d|f,A+=d;A>0;c[s+y]=o&255,y+=m,o/=256,A-=8);c[s+y-m]|=x*128},vt}function wr(){if(pe)return et;pe=!0;let c=gr(),n=mr(),s=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;et.Buffer=o,et.SlowBuffer=U,et.INSPECT_MAX_BYTES=50;let u=2147483647;et.kMaxLength=u,o.TYPED_ARRAY_SUPPORT=d(),!o.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 d(){try{let r=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(r,t),r.foo()===42}catch{return!1}}Object.defineProperty(o.prototype,"parent",{enumerable:!0,get:function(){if(o.isBuffer(this))return this.buffer}}),Object.defineProperty(o.prototype,"offset",{enumerable:!0,get:function(){if(o.isBuffer(this))return this.byteOffset}});function p(r){if(r>u)throw new RangeError('The value "'+r+'" is invalid for option "size"');let t=new Uint8Array(r);return Object.setPrototypeOf(t,o.prototype),t}function o(r,t,e){if(typeof r=="number"){if(typeof t=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return g(r)}return f(r,t,e)}o.poolSize=8192;function f(r,t,e){if(typeof r=="string")return E(r,t);if(ArrayBuffer.isView(r))return y(r);if(r==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(q(r,ArrayBuffer)||r&&q(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(q(r,SharedArrayBuffer)||r&&q(r.buffer,SharedArrayBuffer)))return m(r,t,e);if(typeof r=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');let i=r.valueOf&&r.valueOf();if(i!=null&&i!==r)return o.from(i,t,e);let a=x(r);if(a)return a;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof r[Symbol.toPrimitive]=="function")return o.from(r[Symbol.toPrimitive]("string"),t,e);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}o.from=function(r,t,e){return f(r,t,e)},Object.setPrototypeOf(o.prototype,Uint8Array.prototype),Object.setPrototypeOf(o,Uint8Array);function I(r){if(typeof r!="number")throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function A(r,t,e){return I(r),r<=0?p(r):t!==void 0?typeof e=="string"?p(r).fill(t,e):p(r).fill(t):p(r)}o.alloc=function(r,t,e){return A(r,t,e)};function g(r){return I(r),p(r<0?0:S(r)|0)}o.allocUnsafe=function(r){return g(r)},o.allocUnsafeSlow=function(r){return g(r)};function E(r,t){if((typeof t!="string"||t==="")&&(t="utf8"),!o.isEncoding(t))throw new TypeError("Unknown encoding: "+t);let e=C(r,t)|0,i=p(e),a=i.write(r,t);return a!==e&&(i=i.slice(0,a)),i}function T(r){let t=r.length<0?0:S(r.length)|0,e=p(t);for(let i=0;i<t;i+=1)e[i]=r[i]&255;return e}function y(r){if(q(r,Uint8Array)){let t=new Uint8Array(r);return m(t.buffer,t.byteOffset,t.byteLength)}return T(r)}function m(r,t,e){if(t<0||r.byteLength<t)throw new RangeError('"offset" is outside of buffer bounds');if(r.byteLength<t+(e||0))throw new RangeError('"length" is outside of buffer bounds');let i;return t===void 0&&e===void 0?i=new Uint8Array(r):e===void 0?i=new Uint8Array(r,t):i=new Uint8Array(r,t,e),Object.setPrototypeOf(i,o.prototype),i}function x(r){if(o.isBuffer(r)){let t=S(r.length)|0,e=p(t);return e.length===0||r.copy(e,0,0,t),e}if(r.length!==void 0)return typeof r.length!="number"||Rt(r.length)?p(0):T(r);if(r.type==="Buffer"&&Array.isArray(r.data))return T(r.data)}function S(r){if(r>=u)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+u.toString(16)+" bytes");return r|0}function U(r){return+r!=r&&(r=0),o.alloc(+r)}o.isBuffer=function(t){return t!=null&&t._isBuffer===!0&&t!==o.prototype},o.compare=function(t,e){if(q(t,Uint8Array)&&(t=o.from(t,t.offset,t.byteLength)),q(e,Uint8Array)&&(e=o.from(e,e.offset,e.byteLength)),!o.isBuffer(t)||!o.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;let i=t.length,a=e.length;for(let l=0,h=Math.min(i,a);l<h;++l)if(t[l]!==e[l]){i=t[l],a=e[l];break}return i<a?-1:a<i?1:0},o.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},o.concat=function(t,e){if(!Array.isArray(t))throw new TypeError('"list" argument must be an Array of Buffers');if(t.length===0)return o.alloc(0);let i;if(e===void 0)for(e=0,i=0;i<t.length;++i)e+=t[i].length;let a=o.allocUnsafe(e),l=0;for(i=0;i<t.length;++i){let h=t[i];if(q(h,Uint8Array))l+h.length>a.length?(o.isBuffer(h)||(h=o.from(h)),h.copy(a,l)):Uint8Array.prototype.set.call(a,h,l);else if(o.isBuffer(h))h.copy(a,l);else throw new TypeError('"list" argument must be an Array of Buffers');l+=h.length}return a};function C(r,t){if(o.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||q(r,ArrayBuffer))return r.byteLength;if(typeof r!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);let e=r.length,i=arguments.length>2&&arguments[2]===!0;if(!i&&e===0)return 0;let a=!1;for(;;)switch(t){case"ascii":case"latin1":case"binary":return e;case"utf8":case"utf-8":return Nt(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return e*2;case"hex":return e>>>1;case"base64":return se(r).length;default:if(a)return i?-1:Nt(r).length;t=(""+t).toLowerCase(),a=!0}}o.byteLength=C;function P(r,t,e){let i=!1;if((t===void 0||t<0)&&(t=0),t>this.length||((e===void 0||e>this.length)&&(e=this.length),e<=0)||(e>>>=0,t>>>=0,e<=t))return"";for(r||(r="utf8");;)switch(r){case"hex":return Qe(this,t,e);case"utf8":case"utf-8":return Jt(this,t,e);case"ascii":return Je(this,t,e);case"latin1":case"binary":return Ze(this,t,e);case"base64":return Xe(this,t,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return tr(this,t,e);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),i=!0}}o.prototype._isBuffer=!0;function k(r,t,e){let i=r[t];r[t]=r[e],r[e]=i}o.prototype.swap16=function(){let t=this.length;if(t%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let e=0;e<t;e+=2)k(this,e,e+1);return this},o.prototype.swap32=function(){let t=this.length;if(t%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let e=0;e<t;e+=4)k(this,e,e+3),k(this,e+1,e+2);return this},o.prototype.swap64=function(){let t=this.length;if(t%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let e=0;e<t;e+=8)k(this,e,e+7),k(this,e+1,e+6),k(this,e+2,e+5),k(this,e+3,e+4);return this},o.prototype.toString=function(){let t=this.length;return t===0?"":arguments.length===0?Jt(this,0,t):P.apply(this,arguments)},o.prototype.toLocaleString=o.prototype.toString,o.prototype.equals=function(t){if(!o.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t?!0:o.compare(this,t)===0},o.prototype.inspect=function(){let t="",e=et.INSPECT_MAX_BYTES;return t=this.toString("hex",0,e).replace(/(.{2})/g,"$1 ").trim(),this.length>e&&(t+=" ... "),"<Buffer "+t+">"},s&&(o.prototype[s]=o.prototype.inspect),o.prototype.compare=function(t,e,i,a,l){if(q(t,Uint8Array)&&(t=o.from(t,t.offset,t.byteLength)),!o.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(e===void 0&&(e=0),i===void 0&&(i=t?t.length:0),a===void 0&&(a=0),l===void 0&&(l=this.length),e<0||i>t.length||a<0||l>this.length)throw new RangeError("out of range index");if(a>=l&&e>=i)return 0;if(a>=l)return-1;if(e>=i)return 1;if(e>>>=0,i>>>=0,a>>>=0,l>>>=0,this===t)return 0;let h=l-a,_=i-e,O=Math.min(h,_),R=this.slice(a,l),D=t.slice(e,i);for(let K=0;K<O;++K)if(R[K]!==D[K]){h=R[K],_=D[K];break}return h<_?-1:_<h?1:0};function N(r,t,e,i,a){if(r.length===0)return-1;if(typeof e=="string"?(i=e,e=0):e>2147483647?e=2147483647:e<-2147483648&&(e=-2147483648),e=+e,Rt(e)&&(e=a?0:r.length-1),e<0&&(e=r.length+e),e>=r.length){if(a)return-1;e=r.length-1}else if(e<0)if(a)e=0;else return-1;if(typeof t=="string"&&(t=o.from(t,i)),o.isBuffer(t))return t.length===0?-1:j(r,t,e,i,a);if(typeof t=="number")return t=t&255,typeof Uint8Array.prototype.indexOf=="function"?a?Uint8Array.prototype.indexOf.call(r,t,e):Uint8Array.prototype.lastIndexOf.call(r,t,e):j(r,[t],e,i,a);throw new TypeError("val must be string, number or Buffer")}function j(r,t,e,i,a){let l=1,h=r.length,_=t.length;if(i!==void 0&&(i=String(i).toLowerCase(),i==="ucs2"||i==="ucs-2"||i==="utf16le"||i==="utf-16le")){if(r.length<2||t.length<2)return-1;l=2,h/=2,_/=2,e/=2}function O(D,K){return l===1?D[K]:D.readUInt16BE(K*l)}let R;if(a){let D=-1;for(R=e;R<h;R++)if(O(r,R)===O(t,D===-1?0:R-D)){if(D===-1&&(D=R),R-D+1===_)return D*l}else D!==-1&&(R-=R-D),D=-1}else for(e+_>h&&(e=h-_),R=e;R>=0;R--){let D=!0;for(let K=0;K<_;K++)if(O(r,R+K)!==O(t,K)){D=!1;break}if(D)return R}return-1}o.prototype.includes=function(t,e,i){return this.indexOf(t,e,i)!==-1},o.prototype.indexOf=function(t,e,i){return N(this,t,e,i,!0)},o.prototype.lastIndexOf=function(t,e,i){return N(this,t,e,i,!1)};function G(r,t,e,i){e=Number(e)||0;let a=r.length-e;i?(i=Number(i),i>a&&(i=a)):i=a;let l=t.length;i>l/2&&(i=l/2);let h;for(h=0;h<i;++h){let _=parseInt(t.substr(h*2,2),16);if(Rt(_))return h;r[e+h]=_}return h}function st(r,t,e,i){return Bt(Nt(t,r.length-e),r,e,i)}function Ye(r,t,e,i){return Bt(ir(t),r,e,i)}function Ge(r,t,e,i){return Bt(se(t),r,e,i)}function qe(r,t,e,i){return Bt(or(t,r.length-e),r,e,i)}o.prototype.write=function(t,e,i,a){if(e===void 0)a="utf8",i=this.length,e=0;else if(i===void 0&&typeof e=="string")a=e,i=this.length,e=0;else if(isFinite(e))e=e>>>0,isFinite(i)?(i=i>>>0,a===void 0&&(a="utf8")):(a=i,i=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");let l=this.length-e;if((i===void 0||i>l)&&(i=l),t.length>0&&(i<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");a||(a="utf8");let h=!1;for(;;)switch(a){case"hex":return G(this,t,e,i);case"utf8":case"utf-8":return st(this,t,e,i);case"ascii":case"latin1":case"binary":return Ye(this,t,e,i);case"base64":return Ge(this,t,e,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return qe(this,t,e,i);default:if(h)throw new TypeError("Unknown encoding: "+a);a=(""+a).toLowerCase(),h=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function Xe(r,t,e){return t===0&&e===r.length?c.fromByteArray(r):c.fromByteArray(r.slice(t,e))}function Jt(r,t,e){e=Math.min(r.length,e);let i=[],a=t;for(;a<e;){let l=r[a],h=null,_=l>239?4:l>223?3:l>191?2:1;if(a+_<=e){let O,R,D,K;switch(_){case 1:l<128&&(h=l);break;case 2:O=r[a+1],(O&192)===128&&(K=(l&31)<<6|O&63,K>127&&(h=K));break;case 3:O=r[a+1],R=r[a+2],(O&192)===128&&(R&192)===128&&(K=(l&15)<<12|(O&63)<<6|R&63,K>2047&&(K<55296||K>57343)&&(h=K));break;case 4:O=r[a+1],R=r[a+2],D=r[a+3],(O&192)===128&&(R&192)===128&&(D&192)===128&&(K=(l&15)<<18|(O&63)<<12|(R&63)<<6|D&63,K>65535&&K<1114112&&(h=K))}}h===null?(h=65533,_=1):h>65535&&(h-=65536,i.push(h>>>10&1023|55296),h=56320|h&1023),i.push(h),a+=_}return He(i)}let Zt=4096;function He(r){let t=r.length;if(t<=Zt)return String.fromCharCode.apply(String,r);let e="",i=0;for(;i<t;)e+=String.fromCharCode.apply(String,r.slice(i,i+=Zt));return e}function Je(r,t,e){let i="";e=Math.min(r.length,e);for(let a=t;a<e;++a)i+=String.fromCharCode(r[a]&127);return i}function Ze(r,t,e){let i="";e=Math.min(r.length,e);for(let a=t;a<e;++a)i+=String.fromCharCode(r[a]);return i}function Qe(r,t,e){let i=r.length;(!t||t<0)&&(t=0),(!e||e<0||e>i)&&(e=i);let a="";for(let l=t;l<e;++l)a+=sr[r[l]];return a}function tr(r,t,e){let i=r.slice(t,e),a="";for(let l=0;l<i.length-1;l+=2)a+=String.fromCharCode(i[l]+i[l+1]*256);return a}o.prototype.slice=function(t,e){let i=this.length;t=~~t,e=e===void 0?i:~~e,t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),e<t&&(e=t);let a=this.subarray(t,e);return Object.setPrototypeOf(a,o.prototype),a};function F(r,t,e){if(r%1!==0||r<0)throw new RangeError("offset is not uint");if(r+t>e)throw new RangeError("Trying to access beyond buffer length")}o.prototype.readUintLE=o.prototype.readUIntLE=function(t,e,i){t=t>>>0,e=e>>>0,i||F(t,e,this.length);let a=this[t],l=1,h=0;for(;++h<e&&(l*=256);)a+=this[t+h]*l;return a},o.prototype.readUintBE=o.prototype.readUIntBE=function(t,e,i){t=t>>>0,e=e>>>0,i||F(t,e,this.length);let a=this[t+--e],l=1;for(;e>0&&(l*=256);)a+=this[t+--e]*l;return a},o.prototype.readUint8=o.prototype.readUInt8=function(t,e){return t=t>>>0,e||F(t,1,this.length),this[t]},o.prototype.readUint16LE=o.prototype.readUInt16LE=function(t,e){return t=t>>>0,e||F(t,2,this.length),this[t]|this[t+1]<<8},o.prototype.readUint16BE=o.prototype.readUInt16BE=function(t,e){return t=t>>>0,e||F(t,2,this.length),this[t]<<8|this[t+1]},o.prototype.readUint32LE=o.prototype.readUInt32LE=function(t,e){return t=t>>>0,e||F(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+this[t+3]*16777216},o.prototype.readUint32BE=o.prototype.readUInt32BE=function(t,e){return t=t>>>0,e||F(t,4,this.length),this[t]*16777216+(this[t+1]<<16|this[t+2]<<8|this[t+3])},o.prototype.readBigUInt64LE=Z(function(t){t=t>>>0,ct(t,"offset");let e=this[t],i=this[t+7];(e===void 0||i===void 0)&&yt(t,this.length-8);let a=e+this[++t]*2**8+this[++t]*2**16+this[++t]*2**24,l=this[++t]+this[++t]*2**8+this[++t]*2**16+i*2**24;return BigInt(a)+(BigInt(l)<<BigInt(32))}),o.prototype.readBigUInt64BE=Z(function(t){t=t>>>0,ct(t,"offset");let e=this[t],i=this[t+7];(e===void 0||i===void 0)&&yt(t,this.length-8);let a=e*2**24+this[++t]*2**16+this[++t]*2**8+this[++t],l=this[++t]*2**24+this[++t]*2**16+this[++t]*2**8+i;return(BigInt(a)<<BigInt(32))+BigInt(l)}),o.prototype.readIntLE=function(t,e,i){t=t>>>0,e=e>>>0,i||F(t,e,this.length);let a=this[t],l=1,h=0;for(;++h<e&&(l*=256);)a+=this[t+h]*l;return l*=128,a>=l&&(a-=Math.pow(2,8*e)),a},o.prototype.readIntBE=function(t,e,i){t=t>>>0,e=e>>>0,i||F(t,e,this.length);let a=e,l=1,h=this[t+--a];for(;a>0&&(l*=256);)h+=this[t+--a]*l;return l*=128,h>=l&&(h-=Math.pow(2,8*e)),h},o.prototype.readInt8=function(t,e){return t=t>>>0,e||F(t,1,this.length),this[t]&128?(255-this[t]+1)*-1:this[t]},o.prototype.readInt16LE=function(t,e){t=t>>>0,e||F(t,2,this.length);let i=this[t]|this[t+1]<<8;return i&32768?i|4294901760:i},o.prototype.readInt16BE=function(t,e){t=t>>>0,e||F(t,2,this.length);let i=this[t+1]|this[t]<<8;return i&32768?i|4294901760:i},o.prototype.readInt32LE=function(t,e){return t=t>>>0,e||F(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},o.prototype.readInt32BE=function(t,e){return t=t>>>0,e||F(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},o.prototype.readBigInt64LE=Z(function(t){t=t>>>0,ct(t,"offset");let e=this[t],i=this[t+7];(e===void 0||i===void 0)&&yt(t,this.length-8);let a=this[t+4]+this[t+5]*2**8+this[t+6]*2**16+(i<<24);return(BigInt(a)<<BigInt(32))+BigInt(e+this[++t]*2**8+this[++t]*2**16+this[++t]*2**24)}),o.prototype.readBigInt64BE=Z(function(t){t=t>>>0,ct(t,"offset");let e=this[t],i=this[t+7];(e===void 0||i===void 0)&&yt(t,this.length-8);let a=(e<<24)+this[++t]*2**16+this[++t]*2**8+this[++t];return(BigInt(a)<<BigInt(32))+BigInt(this[++t]*2**24+this[++t]*2**16+this[++t]*2**8+i)}),o.prototype.readFloatLE=function(t,e){return t=t>>>0,e||F(t,4,this.length),n.read(this,t,!0,23,4)},o.prototype.readFloatBE=function(t,e){return t=t>>>0,e||F(t,4,this.length),n.read(this,t,!1,23,4)},o.prototype.readDoubleLE=function(t,e){return t=t>>>0,e||F(t,8,this.length),n.read(this,t,!0,52,8)},o.prototype.readDoubleBE=function(t,e){return t=t>>>0,e||F(t,8,this.length),n.read(this,t,!1,52,8)};function Y(r,t,e,i,a,l){if(!o.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>a||t<l)throw new RangeError('"value" argument is out of bounds');if(e+i>r.length)throw new RangeError("Index out of range")}o.prototype.writeUintLE=o.prototype.writeUIntLE=function(t,e,i,a){if(t=+t,e=e>>>0,i=i>>>0,!a){let _=Math.pow(2,8*i)-1;Y(this,t,e,i,_,0)}let l=1,h=0;for(this[e]=t&255;++h<i&&(l*=256);)this[e+h]=t/l&255;return e+i},o.prototype.writeUintBE=o.prototype.writeUIntBE=function(t,e,i,a){if(t=+t,e=e>>>0,i=i>>>0,!a){let _=Math.pow(2,8*i)-1;Y(this,t,e,i,_,0)}let l=i-1,h=1;for(this[e+l]=t&255;--l>=0&&(h*=256);)this[e+l]=t/h&255;return e+i},o.prototype.writeUint8=o.prototype.writeUInt8=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,1,255,0),this[e]=t&255,e+1},o.prototype.writeUint16LE=o.prototype.writeUInt16LE=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,2,65535,0),this[e]=t&255,this[e+1]=t>>>8,e+2},o.prototype.writeUint16BE=o.prototype.writeUInt16BE=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=t&255,e+2},o.prototype.writeUint32LE=o.prototype.writeUInt32LE=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=t&255,e+4},o.prototype.writeUint32BE=o.prototype.writeUInt32BE=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=t&255,e+4};function Qt(r,t,e,i,a){oe(t,i,a,r,e,7);let l=Number(t&BigInt(4294967295));r[e++]=l,l=l>>8,r[e++]=l,l=l>>8,r[e++]=l,l=l>>8,r[e++]=l;let h=Number(t>>BigInt(32)&BigInt(4294967295));return r[e++]=h,h=h>>8,r[e++]=h,h=h>>8,r[e++]=h,h=h>>8,r[e++]=h,e}function te(r,t,e,i,a){oe(t,i,a,r,e,7);let l=Number(t&BigInt(4294967295));r[e+7]=l,l=l>>8,r[e+6]=l,l=l>>8,r[e+5]=l,l=l>>8,r[e+4]=l;let h=Number(t>>BigInt(32)&BigInt(4294967295));return r[e+3]=h,h=h>>8,r[e+2]=h,h=h>>8,r[e+1]=h,h=h>>8,r[e]=h,e+8}o.prototype.writeBigUInt64LE=Z(function(t,e=0){return Qt(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))}),o.prototype.writeBigUInt64BE=Z(function(t,e=0){return te(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))}),o.prototype.writeIntLE=function(t,e,i,a){if(t=+t,e=e>>>0,!a){let O=Math.pow(2,8*i-1);Y(this,t,e,i,O-1,-O)}let l=0,h=1,_=0;for(this[e]=t&255;++l<i&&(h*=256);)t<0&&_===0&&this[e+l-1]!==0&&(_=1),this[e+l]=(t/h>>0)-_&255;return e+i},o.prototype.writeIntBE=function(t,e,i,a){if(t=+t,e=e>>>0,!a){let O=Math.pow(2,8*i-1);Y(this,t,e,i,O-1,-O)}let l=i-1,h=1,_=0;for(this[e+l]=t&255;--l>=0&&(h*=256);)t<0&&_===0&&this[e+l+1]!==0&&(_=1),this[e+l]=(t/h>>0)-_&255;return e+i},o.prototype.writeInt8=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=t&255,e+1},o.prototype.writeInt16LE=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,2,32767,-32768),this[e]=t&255,this[e+1]=t>>>8,e+2},o.prototype.writeInt16BE=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=t&255,e+2},o.prototype.writeInt32LE=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,4,2147483647,-2147483648),this[e]=t&255,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},o.prototype.writeInt32BE=function(t,e,i){return t=+t,e=e>>>0,i||Y(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=t&255,e+4},o.prototype.writeBigInt64LE=Z(function(t,e=0){return Qt(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),o.prototype.writeBigInt64BE=Z(function(t,e=0){return te(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function ee(r,t,e,i,a,l){if(e+i>r.length)throw new RangeError("Index out of range");if(e<0)throw new RangeError("Index out of range")}function re(r,t,e,i,a){return t=+t,e=e>>>0,a||ee(r,t,e,4),n.write(r,t,e,i,23,4),e+4}o.prototype.writeFloatLE=function(t,e,i){return re(this,t,e,!0,i)},o.prototype.writeFloatBE=function(t,e,i){return re(this,t,e,!1,i)};function ne(r,t,e,i,a){return t=+t,e=e>>>0,a||ee(r,t,e,8),n.write(r,t,e,i,52,8),e+8}o.prototype.writeDoubleLE=function(t,e,i){return ne(this,t,e,!0,i)},o.prototype.writeDoubleBE=function(t,e,i){return ne(this,t,e,!1,i)},o.prototype.copy=function(t,e,i,a){if(!o.isBuffer(t))throw new TypeError("argument should be a Buffer");if(i||(i=0),!a&&a!==0&&(a=this.length),e>=t.length&&(e=t.length),e||(e=0),a>0&&a<i&&(a=i),a===i||t.length===0||this.length===0)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(i<0||i>=this.length)throw new RangeError("Index out of range");if(a<0)throw new RangeError("sourceEnd out of bounds");a>this.length&&(a=this.length),t.length-e<a-i&&(a=t.length-e+i);let l=a-i;return this===t&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(e,i,a):Uint8Array.prototype.set.call(t,this.subarray(i,a),e),l},o.prototype.fill=function(t,e,i,a){if(typeof t=="string"){if(typeof e=="string"?(a=e,e=0,i=this.length):typeof i=="string"&&(a=i,i=this.length),a!==void 0&&typeof a!="string")throw new TypeError("encoding must be a string");if(typeof a=="string"&&!o.isEncoding(a))throw new TypeError("Unknown encoding: "+a);if(t.length===1){let h=t.charCodeAt(0);(a==="utf8"&&h<128||a==="latin1")&&(t=h)}}else typeof t=="number"?t=t&255:typeof t=="boolean"&&(t=Number(t));if(e<0||this.length<e||this.length<i)throw new RangeError("Out of range index");if(i<=e)return this;e=e>>>0,i=i===void 0?this.length:i>>>0,t||(t=0);let l;if(typeof t=="number")for(l=e;l<i;++l)this[l]=t;else{let h=o.isBuffer(t)?t:o.from(t,a),_=h.length;if(_===0)throw new TypeError('The value "'+t+'" is invalid for argument "value"');for(l=0;l<i-e;++l)this[l+e]=h[l%_]}return this};let at={};function kt(r,t,e){at[r]=class extends e{constructor(){super(),Object.defineProperty(this,"message",{value:t.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${r}]`,this.stack,delete this.name}get code(){return r}set code(a){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:a,writable:!0})}toString(){return`${this.name} [${r}]: ${this.message}`}}}kt("ERR_BUFFER_OUT_OF_BOUNDS",function(r){return r?`${r} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),kt("ERR_INVALID_ARG_TYPE",function(r,t){return`The "${r}" argument must be of type number. Received type ${typeof t}`},TypeError),kt("ERR_OUT_OF_RANGE",function(r,t,e){let i=`The value of "${r}" is out of range.`,a=e;return Number.isInteger(e)&&Math.abs(e)>2**32?a=ie(String(e)):typeof e=="bigint"&&(a=String(e),(e>BigInt(2)**BigInt(32)||e<-(BigInt(2)**BigInt(32)))&&(a=ie(a)),a+="n"),i+=` It must be ${t}. Received ${a}`,i},RangeError);function ie(r){let t="",e=r.length,i=r[0]==="-"?1:0;for(;e>=i+4;e-=3)t=`_${r.slice(e-3,e)}${t}`;return`${r.slice(0,e)}${t}`}function er(r,t,e){ct(t,"offset"),(r[t]===void 0||r[t+e]===void 0)&&yt(t,r.length-(e+1))}function oe(r,t,e,i,a,l){if(r>e||r<t){let h=typeof t=="bigint"?"n":"",_;throw l>3?t===0||t===BigInt(0)?_=`>= 0${h} and < 2${h} ** ${(l+1)*8}${h}`:_=`>= -(2${h} ** ${(l+1)*8-1}${h}) and < 2 ** ${(l+1)*8-1}${h}`:_=`>= ${t}${h} and <= ${e}${h}`,new at.ERR_OUT_OF_RANGE("value",_,r)}er(i,a,l)}function ct(r,t){if(typeof r!="number")throw new at.ERR_INVALID_ARG_TYPE(t,"number",r)}function yt(r,t,e){throw Math.floor(r)!==r?(ct(r,e),new at.ERR_OUT_OF_RANGE(e||"offset","an integer",r)):t<0?new at.ERR_BUFFER_OUT_OF_BOUNDS:new at.ERR_OUT_OF_RANGE(e||"offset",`>= ${e?1:0} and <= ${t}`,r)}let rr=/[^+/0-9A-Za-z-_]/g;function nr(r){if(r=r.split("=")[0],r=r.trim().replace(rr,""),r.length<2)return"";for(;r.length%4!==0;)r=r+"=";return r}function Nt(r,t){t=t||1/0;let e,i=r.length,a=null,l=[];for(let h=0;h<i;++h){if(e=r.charCodeAt(h),e>55295&&e<57344){if(!a){if(e>56319){(t-=3)>-1&&l.push(239,191,189);continue}else if(h+1===i){(t-=3)>-1&&l.push(239,191,189);continue}a=e;continue}if(e<56320){(t-=3)>-1&&l.push(239,191,189),a=e;continue}e=(a-55296<<10|e-56320)+65536}else a&&(t-=3)>-1&&l.push(239,191,189);if(a=null,e<128){if((t-=1)<0)break;l.push(e)}else if(e<2048){if((t-=2)<0)break;l.push(e>>6|192,e&63|128)}else if(e<65536){if((t-=3)<0)break;l.push(e>>12|224,e>>6&63|128,e&63|128)}else if(e<1114112){if((t-=4)<0)break;l.push(e>>18|240,e>>12&63|128,e>>6&63|128,e&63|128)}else throw new Error("Invalid code point")}return l}function ir(r){let t=[];for(let e=0;e<r.length;++e)t.push(r.charCodeAt(e)&255);return t}function or(r,t){let e,i,a,l=[];for(let h=0;h<r.length&&!((t-=2)<0);++h)e=r.charCodeAt(h),i=e>>8,a=e%256,l.push(a),l.push(i);return l}function se(r){return c.toByteArray(nr(r))}function Bt(r,t,e,i){let a;for(a=0;a<i&&!(a+e>=t.length||a>=r.length);++a)t[a+e]=r[a];return a}function q(r,t){return r instanceof t||r!=null&&r.constructor!=null&&r.constructor.name!=null&&r.constructor.name===t.name}function Rt(r){return r!==r}let sr=function(){let r="0123456789abcdef",t=new Array(256);for(let e=0;e<16;++e){let i=e*16;for(let a=0;a<16;++a)t[i+a]=r[e]+r[a]}return t}();function Z(r){return typeof BigInt>"u"?ar:r}function ar(){throw new Error("BigInt not supported")}return et}var gt,de,vt,he,et,pe,rt,M,$r,Fr,Lt=ft(()=>{"use strict";B();v();b();gt={},de=!1;vt={},he=!1;et={},pe=!1;rt=wr();rt.Buffer;rt.SlowBuffer;rt.INSPECT_MAX_BYTES;rt.kMaxLength;M=rt.Buffer,$r=rt.INSPECT_MAX_BYTES,Fr=rt.kMaxLength});var v=ft(()=>{"use strict";Lt()});var fe=ae((qr,ye)=>{"use strict";B();v();b();function Ir(c){if(c.length>=255)throw new TypeError("Alphabet too long");for(var n=new Uint8Array(256),s=0;s<n.length;s++)n[s]=255;for(var u=0;u<c.length;u++){var d=c.charAt(u),p=d.charCodeAt(0);if(n[p]!==255)throw new TypeError(d+" is ambiguous");n[p]=u}var o=c.length,f=c.charAt(0),I=Math.log(o)/Math.log(256),A=Math.log(256)/Math.log(o);function g(y){if(y instanceof Uint8Array||(ArrayBuffer.isView(y)?y=new Uint8Array(y.buffer,y.byteOffset,y.byteLength):Array.isArray(y)&&(y=Uint8Array.from(y))),!(y instanceof Uint8Array))throw new TypeError("Expected Uint8Array");if(y.length===0)return"";for(var m=0,x=0,S=0,U=y.length;S!==U&&y[S]===0;)S++,m++;for(var C=(U-S)*A+1>>>0,P=new Uint8Array(C);S!==U;){for(var k=y[S],N=0,j=C-1;(k!==0||N<x)&&j!==-1;j--,N++)k+=256*P[j]>>>0,P[j]=k%o>>>0,k=k/o>>>0;if(k!==0)throw new Error("Non-zero carry");x=N,S++}for(var G=C-x;G!==C&&P[G]===0;)G++;for(var st=f.repeat(m);G<C;++G)st+=c.charAt(P[G]);return st}function E(y){if(typeof y!="string")throw new TypeError("Expected String");if(y.length===0)return new Uint8Array;for(var m=0,x=0,S=0;y[m]===f;)x++,m++;for(var U=(y.length-m)*I+1>>>0,C=new Uint8Array(U);y[m];){var P=n[y.charCodeAt(m)];if(P===255)return;for(var k=0,N=U-1;(P!==0||k<S)&&N!==-1;N--,k++)P+=o*C[N]>>>0,C[N]=P%256>>>0,P=P/256>>>0;if(P!==0)throw new Error("Non-zero carry");S=k,m++}for(var j=U-S;j!==U&&C[j]===0;)j++;for(var G=new Uint8Array(x+(U-j)),st=x;j!==U;)G[st++]=C[j++];return G}function T(y){var m=E(y);if(m)return m;throw new Error("Non-base"+o+" character")}return{encode:g,decodeUnsafe:E,decode:T}}ye.exports=Ir});var me=ae((Zr,ge)=>{"use strict";B();v();b();var Er=fe(),Ar="123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";ge.exports=Er(Ar)});var Pr={};pr(Pr,{Account:()=>At,BaseConfigStore:()=>qt,BaseContractManager:()=>Ut,BaseKeyStore:()=>It,BaseOrderlyKeyPair:()=>H,BaseSigner:()=>J,EtherAdapter:()=>Kt,EventEmitter:()=>ze.default,LocalStorageStore:()=>dt,MemoryConfigStore:()=>Et,MockKeyStore:()=>ht,SimpleDI:()=>je,Web3WalletAdapter:()=>Pt,getDefaultSigner:()=>Fe,getMockSigner:()=>$e});module.exports=yr(Pr);B();v();b();B();v();b();B();v();b();var wt=Mt(me());B();v();b();var V=2n**255n-19n,ut=2n**252n+27742317777372353535851937790883648493n,$t=0x216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51an,Ft=0x6666666666666666666666666666666666666666666666666666666666666658n,xt={a:-1n,d:37095705934669439343138083508754565189542113879843219016388785533085940283555n,p:V,n:ut,h:8,Gx:$t,Gy:Ft},z=(c="")=>{throw new Error(c)},Be=c=>typeof c=="string",Ct=(c,n)=>!(c instanceof Uint8Array)||typeof n=="number"&&n>0&&c.length!==n?z("Uint8Array expected"):c,lt=c=>new Uint8Array(c),Tt=(c,n)=>Ct(Be(c)?Wt(c):lt(c),n),w=(c,n=V)=>{let s=c%n;return s>=0n?s:n+s},we=c=>c instanceof Q?c:z("Point expected"),Ie,Q=class c{constructor(n,s,u,d){this.ex=n,this.ey=s,this.ez=u,this.et=d}static fromAffine(n){return new c(n.x,n.y,1n,w(n.x*n.y))}static fromHex(n,s=!0){let{d:u}=xt;n=Tt(n,32);let d=n.slice();d[31]=n[31]&-129;let p=xe(d);p===0n||(s&&!(0n<p&&p<V)&&z("bad y coord 1"),!s&&!(0n<p&&p<2n**256n)&&z("bad y coord 2"));let o=w(p*p),f=w(o-1n),I=w(u*o+1n),{isValid:A,value:g}=br(f,I);A||z("bad y coordinate 3");let E=(g&1n)===1n;return(n[31]&128)!==0!==E&&(g=w(-g)),new c(g,p,1n,w(g*p))}get x(){return this.toAffine().x}get y(){return this.toAffine().y}equals(n){let{ex:s,ey:u,ez:d}=this,{ex:p,ey:o,ez:f}=we(n),I=w(s*f),A=w(p*d),g=w(u*f),E=w(o*d);return I===A&&g===E}is0(){return this.equals(St)}negate(){return new c(w(-this.ex),this.ey,this.ez,w(-this.et))}double(){let{ex:n,ey:s,ez:u}=this,{a:d}=xt,p=w(n*n),o=w(s*s),f=w(2n*w(u*u)),I=w(d*p),A=n+s,g=w(w(A*A)-p-o),E=I+o,T=E-f,y=I-o,m=w(g*T),x=w(E*y),S=w(g*y),U=w(T*E);return new c(m,x,U,S)}add(n){let{ex:s,ey:u,ez:d,et:p}=this,{ex:o,ey:f,ez:I,et:A}=we(n),{a:g,d:E}=xt,T=w(s*o),y=w(u*f),m=w(p*E*A),x=w(d*I),S=w((s+u)*(o+f)-T-y),U=w(x-m),C=w(x+m),P=w(y-g*T),k=w(S*U),N=w(C*P),j=w(S*P),G=w(U*C);return new c(k,N,G,j)}mul(n,s=!0){if(n===0n)return s===!0?z("cannot multiply by 0"):St;if(typeof n=="bigint"&&0n<n&&n<ut||z("invalid scalar, must be < L"),!s&&this.is0()||n===1n)return this;if(this.equals(it))return Cr(n).p;let u=St,d=it;for(let p=this;n>0n;p=p.double(),n>>=1n)n&1n?u=u.add(p):s&&(d=d.add(p));return u}multiply(n){return this.mul(n)}clearCofactor(){return this.mul(BigInt(xt.h),!1)}isSmallOrder(){return this.clearCofactor().is0()}isTorsionFree(){let n=this.mul(ut/2n,!1).double();return ut%2n&&(n=n.add(this)),n.is0()}toAffine(){let{ex:n,ey:s,ez:u}=this;if(this.is0())return{x:0n,y:0n};let d=Se(u);return w(u*d)!==1n&&z("invalid inverse"),{x:w(n*d),y:w(s*d)}}toRawBytes(){let{x:n,y:s}=this.toAffine(),u=ve(s);return u[31]|=n&1n?128:0,u}toHex(){return jt(this.toRawBytes())}};Q.BASE=new Q($t,Ft,1n,w($t*Ft));Q.ZERO=new Q(0n,1n,1n,0n);var{BASE:it,ZERO:St}=Q,be=(c,n)=>c.toString(16).padStart(n,"0"),jt=c=>Array.from(c).map(n=>be(n,2)).join(""),Wt=c=>{let n=c.length;(!Be(c)||n%2)&&z("hex invalid 1");let s=lt(n/2);for(let u=0;u<s.length;u++){let d=u*2,p=c.slice(d,d+2),o=Number.parseInt(p,16);(Number.isNaN(o)||o<0)&&z("hex invalid 2"),s[u]=o}return s},ve=c=>Wt(be(c,32*2)).reverse(),xe=c=>BigInt("0x"+jt(lt(Ct(c)).reverse())),_t=(...c)=>{let n=lt(c.reduce((u,d)=>u+Ct(d).length,0)),s=0;return c.forEach(u=>{n.set(u,s),s+=u.length}),n},Se=(c,n=V)=>{(c===0n||n<=0n)&&z("no inverse n="+c+" mod="+n);let s=w(c,n),u=n,d=0n,p=1n,o=1n,f=0n;for(;s!==0n;){let I=u/s,A=u%s,g=d-o*I,E=p-f*I;u=s,s=A,d=o,p=f,o=g,f=E}return u===1n?w(d,n):z("no inverse")},X=(c,n)=>{let s=c;for(;n-- >0n;)s*=s,s%=V;return s},Br=c=>{let s=c*c%V*c%V,u=X(s,2n)*s%V,d=X(u,1n)*c%V,p=X(d,5n)*d%V,o=X(p,10n)*p%V,f=X(o,20n)*o%V,I=X(f,40n)*f%V,A=X(I,80n)*I%V,g=X(A,80n)*I%V,E=X(g,10n)*p%V;return{pow_p_5_8:X(E,2n)*c%V,b2:s}},Ee=19681161376707505956807079304988542015446066515923890162744021073123829784752n,br=(c,n)=>{let s=w(n*n*n),u=w(s*s*n),d=Br(c*u).pow_p_5_8,p=w(c*s*d),o=w(n*p*p),f=p,I=w(p*Ee),A=o===c,g=o===w(-c),E=o===w(-c*Ee);return A&&(p=f),(g||E)&&(p=I),(w(p)&1n)===1n&&(p=w(-p)),{isValid:A||g,value:p}},Vt=c=>w(xe(c),ut),mt,zt=(...c)=>Gt.sha512Async(...c),_e=(...c)=>typeof mt=="function"?mt(...c):z("etc.sha512Sync not set"),Ce=c=>{let n=c.slice(0,32);n[0]&=248,n[31]&=127,n[31]|=64;let s=c.slice(32,64),u=Vt(n),d=it.mul(u),p=d.toRawBytes();return{head:n,prefix:s,scalar:u,point:d,pointBytes:p}},Yt=c=>zt(Tt(c,32)).then(Ce),vr=c=>Ce(_e(Tt(c,32))),Te=c=>Yt(c).then(n=>n.pointBytes);function xr(c,n){return c?zt(n.hashable).then(n.finish):n.finish(_e(n.hashable))}var Sr=(c,n,s)=>{let{pointBytes:u,scalar:d}=c,p=Vt(n),o=it.mul(p).toRawBytes();return{hashable:_t(o,u,s),finish:A=>{let g=w(p+Vt(A)*d,ut);return Ct(_t(o,ve(g)),64)}}},Ue=async(c,n)=>{let s=Tt(c),u=await Yt(n),d=await zt(u.prefix,s);return xr(!0,Sr(u,d,s))};var Ae=()=>typeof globalThis=="object"&&"crypto"in globalThis?globalThis.crypto:void 0,Gt={bytesToHex:jt,hexToBytes:Wt,concatBytes:_t,mod:w,invert:Se,randomBytes:c=>{let n=Ae();return n||z("crypto.getRandomValues must be defined"),n.getRandomValues(lt(c))},sha512Async:async(...c)=>{let n=Ae();n||z("crypto.subtle or etc.sha512Async must be defined");let s=_t(...c);return lt(await n.subtle.digest("SHA-512",s.buffer))},sha512Sync:void 0};Object.defineProperties(Gt,{sha512Sync:{configurable:!1,get(){return mt},set(c){mt||(mt=c)}}});var Pe={getExtendedPublicKeyAsync:Yt,getExtendedPublicKey:vr,randomPrivateKey:()=>Gt.randomBytes(32),precompute(c=8,n=it){return n.multiply(3n),n}},nt=8,_r=()=>{let c=[],n=256/nt+1,s=it,u=s;for(let d=0;d<n;d++){u=s,c.push(u);for(let p=1;p<2**(nt-1);p++)u=u.add(s),c.push(u);s=u.double()}return c},Cr=c=>{let n=Ie||(Ie=_r()),s=(g,E)=>{let T=E.negate();return g?T:E},u=St,d=it,p=1+256/nt,o=2**(nt-1),f=BigInt(2**nt-1),I=2**nt,A=BigInt(nt);for(let g=0;g<p;g++){let E=g*o,T=Number(c&f);c>>=A,T>o&&(T-=I,c+=1n);let y=E,m=E+Math.abs(T)-1,x=g%2!==0,S=T<0;T===0?d=d.add(s(x,n[y])):u=u.add(s(S,n[m]))}return{p:u,f:d}};var H=class c{static generateKey(){let n,s;do n=Pe.randomPrivateKey(),s=(0,wt.encode)(n);while(s.length!==44);return new c(s)}constructor(n){this.secretKey=n;let s=(0,wt.decode)(n);this.privateKey=M.from(s).toString("hex")}async sign(n){return await Ue(n,this.privateKey)}async getPublicKey(){let n=await Te(this.privateKey);return`ed25519:${(0,wt.encode)(n)}`}toString(){return this.privateKey}};var It=class{constructor(n="testnet"){this.networkId=n}get keyPrefix(){return`orderly_${this.networkId}_`}},dt=class extends It{getOrderlyKey(n){let s;if(n)s=this.getItem(n,"orderlyKey");else{let u=this.getAddress();if(!u)return null;s=this.getItem(u,"orderlyKey")}return s?new H(s):null}getAccountId(n){return this.getItem(n,"accountId")}setAccountId(n,s){this.setItem(n,{accountId:s})}getAddress(){return localStorage.getItem(`${this.keyPrefix}address`)}setAddress(n){localStorage.setItem(`${this.keyPrefix}address`,n)}generateKey(){return H.generateKey()}setKey(n,s){this.setItem(n,{orderlyKey:s.secretKey})}cleanAllKey(n){localStorage.removeItem(`${this.keyPrefix}${n}`),localStorage.removeItem(`${this.keyPrefix}address`)}cleanKey(n,s){let u=this.getItem(n);delete u[s],localStorage.setItem(`${this.keyPrefix}${n}`,JSON.stringify(u))}setItem(n,s){let u=`${this.keyPrefix}${n}`,d=localStorage.getItem(u);d?d=JSON.parse(d):d={},localStorage.setItem(u,JSON.stringify({...d,...s}))}getItem(n,s){let u=`${this.keyPrefix}${n}`,d=localStorage.getItem(u);return d?d=JSON.parse(d):d={},typeof s>"u"?d:d[s]}},ht=class{constructor(n){this.secretKey=n}generateKey(){return new H(this.secretKey)}getOrderlyKey(){return new H(this.secretKey)}getAccountId(){return""}setAccountId(n){}getAddress(){return""}setAddress(n){}setKey(n,s){}cleanAllKey(){}cleanKey(n){}};B();v();b();B();v();b();B();v();b();var ot={EIP712Domain:[{name:"name",type:"string"},{name:"version",type:"string"},{name:"chainId",type:"uint256"},{name:"verifyingContract",type:"address"}],Registration:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"timestamp",type:"uint64"},{name:"registrationNonce",type:"uint256"}],Withdraw:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"receiver",type:"address"},{name:"token",type:"string"},{name:"amount",type:"uint256"},{name:"withdrawNonce",type:"uint64"},{name:"timestamp",type:"uint64"}],AddOrderlyKey:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"orderlyKey",type:"string"},{name:"scope",type:"string"},{name:"timestamp",type:"uint64"},{name:"expiration",type:"uint64"}],SettlePnl:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"settleNonce",type:"uint64"},{name:"timestamp",type:"uint64"}]},Ke="0x004d88aa993fd2100d6c8beb6cdb6bc04f565b44",ke="0x0C554dDb6a9010Ed1FD7e50d92559A06655dA482",Ne="0x8794E7260517B1766fc7b55cAfcd56e6bf08600e";var Re=function(c){return c.replace(/\+/g,"-").replace(/\//g,"_")};function Ur(){return"0x8794E7260517B1766fc7b55cAfcd56e6bf08600e"}function Me(c,n){return{name:"Orderly",version:"1",chainId:c,verifyingContract:n?Ur():"0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"}}function Oe(c){let{chainId:n,registrationNonce:s}=c,u=Date.now(),d="Registration",p={brokerId:"woofi_dex",chainId:n,timestamp:u,registrationNonce:s},o={EIP712Domain:ot.EIP712Domain,[d]:ot[d]};return[p,{domain:Me(n),message:p,primaryType:d,types:o}]}function De(c){let{publicKey:n,chainId:s,primaryType:u,expiration:d=365}=c,p=Date.now(),o={brokerId:"woofi_dex",orderlyKey:n,scope:"read,trading",chainId:s,timestamp:p,expiration:p+1e3*60*60*24*d},f={EIP712Domain:ot.EIP712Domain,[u]:ot[u]},I={domain:Me(s),message:o,primaryType:u,types:f};return[o,I]}function Le(c){let{chainId:n,settlePnlNonce:s,domain:u}=c,d="SettlePnl",p=new Date().getTime(),o={EIP712Domain:ot.EIP712Domain,[d]:ot[d]},f={brokerId:"woofi_dex",chainId:n,timestamp:p,settleNonce:s};return[f,{domain:u,message:f,primaryType:d,types:o}]}Lt();var J=class{constructor(n){this.keyStore=n}async sign(n){let s=Date.now().toString(),u=[s,n.method.toUpperCase(),n.url].join("");n.data&&Object.keys(n.data).length&&(u+=JSON.stringify(n.data));let{signature:d,publicKey:p}=await this.signText(u);return{"orderly-key":p,"orderly-timestamp":s,"orderly-signature":d}}async signText(n){let s=this.keyStore.getOrderlyKey();if(!s)throw new Error("orderlyKeyPair is not defined");let u=M.from(n),d=await s.sign(u),p=M.from(d).toString("base64");return{signature:Re(p),publicKey:await s.getPublicKey()}}};var ze=Mt(require("eventemitter3"));B();v();b();B();v();b();var Et=class{constructor(){this._restore()}_restore(){this.map=new Map([["apiBaseUrl","https://testnet-api-evm.orderly.org"],["klineDataUrl","https://testnet-api-evm.orderly.org"],["publicWsUrl","wss://testnet-ws-evm.orderly.org"],["publicWebsocketKey","OqdphuyCtYWxwzhxyLLjOWNdFP7sQt8RPWzmb5xY"],["privateWsUrl","wss://testnet-ws-private-evm.orderly.org"],["env","dev-evm"]])}get(n){return this.map.get(n)}set(n,s){this.map.set(n,s)}clear(){}},qt=class extends Et{constructor(s){super();this.configMap=s}_restore(){let s=Object.entries(this.configMap);this.map=new Map(s)}};var $e=c=>{let n=new ht(c||"AFmQSju4FhDwG93cMdKogcnKx7SWmViDtDv5PVzfvRDF");return new J(n)},Fe=()=>{if(typeof window>"u")throw new Error("the default signer only supports browsers.");let c=new dt("");return new J(c)};B();v();b();var Ut=class{constructor(n){this.configStore=n}getContractInfoByEnv(){return{usdcAddress:Ke,vaultAddress:ke,verifyContractAddress:Ne}}};B();v();b();B();v();b();var Xt=class{constructor(n=[],s={}){this.providers=n;this.services=s;this.injectProperties={}}register(...n){this.providers.push(...n),n.forEach(s=>{let u=s;u instanceof Function&&(u=new s),this.add(u)})}registerByName(n,s){let u=s;u instanceof Function&&(u=new s),this.addByName(n,u)}get(n){return this.services[n]}getAll(){return Object.assign({},this.services)}add(n){return this.addByName(n.constructor.name,n)}addByName(n,s){return this.services[n]=s,this.services[n.toLowerCase()]=s,this.injectIntoProperties(s,n),this.get(n)}inject(n,s,u){n&&u&&(n[s]=u)}injectIntoProperties(n,s=n.constructor.name){this.getInjectProperty(s.toLowerCase()).forEach(u=>{this.inject(u.target,u.propertyKey,n)})}getInjectProperty(n){return this.injectProperties[n]||(this.injectProperties[n]=[]),this.injectProperties[n]}},Ve=Xt;var Ht=class c{static getContainer(){return c.container||(c.container=new Ve),c.container}static register(...n){this.getContainer().register(...n)}static registerByName(n,s){this.getContainer().registerByName(n,s)}static get(n){return this.getContainer().get(n)}static getAll(){return this.getContainer().getAll()}constructor(){}},je=Ht;B();v();b();var W=require("@orderly.network/types");var We=Mt(require("eventemitter3")),At=class{constructor(n,s,u,d){this.configStore=n;this.keyStore=s;this.contractManger=u;this.walletAdapterClass=d;this._ee=new We.default;this._state={status:W.AccountStatusEnum.NotConnected,balance:"",checking:!1,leverage:Number.NaN};this._bindEvents()}login(n){if(!n)throw new Error("address is required")}logout(){}async setAddress(n,s){if(!n)throw new Error("address is required");console.log("setAddress",n,s),this.keyStore.setAddress(n);let u={...this.stateValue,status:W.AccountStatusEnum.Connected,address:n};return this._ee.emit("change:status",u),s&&(this.walletClient=new this.walletAdapterClass(s)),await this._checkAccount(n)}get stateValue(){return this._state}get accountId(){return this.stateValue.accountId}get address(){return this.stateValue.address}get chainId(){return this.walletClient?.chainId}set position(n){let s={...this.stateValue,positon:n};this._ee.emit("change:status",s)}set orders(n){let s={...this.stateValue,orders:n};this._ee.emit("change:status",s)}_bindEvents(){this._ee.addListener("change:status",n=>{console.log("change:status",n),this._state=n})}async _checkAccount(n){console.log("check account is esist",n);let s;try{let u=await this._checkAccountExist(n);if(console.log("accountInfo:",u),u&&u.account_id)console.log("account is exist"),this.keyStore.setAccountId(n,u.account_id),s={...this.stateValue,status:W.AccountStatusEnum.SignedIn,accountId:u.account_id,userId:u.user_id},this._ee.emit("change:status",s);else return s={...this.stateValue,status:W.AccountStatusEnum.NotSignedIn},this._ee.emit("change:status",s),W.AccountStatusEnum.NotSignedIn;let d=this.keyStore.getOrderlyKey();if(console.log("orderlyKey:::::::",d),s={...this.stateValue,status:W.AccountStatusEnum.DisabledTrading},!d)return console.log("orderlyKey is null"),this._ee.emit("change:status",s),W.AccountStatusEnum.DisabledTrading;let p=await d.getPublicKey(),o=await this._checkOrderlyKeyState(u.account_id,p);if(console.log("orderlyKeyStatus:",o),o&&o.orderly_key&&o.key_status==="ACTIVE"){let f=Date.now(),I=o.expiration;if(f>I)return this.keyStore.cleanKey(n,"orderlyKey"),W.AccountStatusEnum.DisabledTrading;let A={...this.stateValue,status:W.AccountStatusEnum.EnableTrading};return this._ee.emit("change:status",A),W.AccountStatusEnum.EnableTrading}return this.keyStore.cleanKey(n,"orderlyKey"),W.AccountStatusEnum.NotConnected}catch(u){console.log("\u68C0\u67E5\u8D26\u6237\u72B6\u6001\u9519\u8BEF:",u)}return W.AccountStatusEnum.NotSignedIn}async _checkAccountExist(n){let s=await this._simpleFetch(`/v1/get_account?address=${n}&broker_id=woofi_dex`);return s.success?s.data:null}async createAccount(){let n=await this._getRegisterationNonce(),s=this.stateValue.address;if(!s)throw new Error("address is undefined");let[u,d]=Oe({registrationNonce:n,chainId:this.walletClient.chainId}),p=await this.walletClient.send("eth_signTypedData_v4",[s,JSON.stringify(d)]),o=await this._simpleFetch("/v1/register_account",{method:"POST",body:JSON.stringify({signature:p,message:u,userAddress:s}),headers:{"Content-Type":"application/json"}});if(o.success){this.keyStore.setAccountId(s,o.data.account_id);let f={...this.stateValue,status:W.AccountStatusEnum.DisabledTrading,accountId:o.data.account_id,userId:o.data.user_id};return this._ee.emit("change:status",f),o}}async createOrderlyKey(n){if(this.stateValue.accountId===void 0)throw new Error("account id is undefined");if(this.walletClient===void 0)throw new Error("walletClient is undefined");let s="AddOrderlyKey",u=this.keyStore.generateKey(),d=await u.getPublicKey(),[p,o]=De({publicKey:d,chainId:this.walletClient.chainId,primaryType:s,expiration:n}),f=this.stateValue.address;if(!f)throw new Error("address is undefined");let I=await this.walletClient.send("eth_signTypedData_v4",[f,JSON.stringify(o)]),A=await this._simpleFetch("/v1/orderly_key",{method:"POST",body:JSON.stringify({signature:I,message:p,userAddress:f}),headers:{"X-Account-Id":this.stateValue.accountId,"Content-Type":"application/json"}});if(A.success){this.keyStore.setKey(f,u);let g={...this.stateValue,status:W.AccountStatusEnum.EnableTrading};return this._ee.emit("change:status",g),A}else throw new Error(A.message)}async settlement(){let n=await this._getSettleNonce(),s=this.stateValue.address,u=this.getDomain(!0),d="/v1/settle_pnl",[p,o]=Le({settlePnlNonce:n,chainId:this.walletClient.chainId,domain:u}),I={signature:await this.walletClient.send("eth_signTypedData_v4",[s,JSON.stringify(o)]),message:p,userAddress:s,verifyingContract:u.verifyingContract},A={method:"POST",url:d,data:I},g=await this.signer.sign(A),E=await this._simpleFetch(d,{method:"POST",body:JSON.stringify(I),headers:{"Content-Type":"application/json","orderly-account-id":this.stateValue.accountId,...g}});if(E.success)return E;throw new Error(E.message)}async disconnect(){let n={...this.stateValue,status:W.AccountStatusEnum.NotConnected,accountId:void 0,userId:void 0,address:void 0};this._ee.emit("change:status",n)}async _checkOrderlyKeyState(n,s){let u=await this._simpleFetch(`/v1/get_orderly_key?account_id=${n}&orderly_key=${s}`);if(u.success)return u.data;throw new Error(u.message)}get signer(){return this._singer||(this._singer=new J(this.keyStore)),this._singer}get wallet(){return this.walletClient}async _getRegisterationNonce(){let n=await this._simpleFetch("/v1/registration_nonce",{headers:{"orderly-account-id":this.stateValue.accountId}});if(console.log("getRegisterationNonce:",n),n.success)return n.data?.registration_nonce;throw new Error(n.message)}async _getSettleNonce(){let n=Date.now().toString(),u=[n,"GET","/v1/settle_nonce"].join(""),d=this.signer,{publicKey:p,signature:o}=await d.signText(u),f=await this._simpleFetch("/v1/settle_nonce",{headers:{"orderly-account-id":this.stateValue.accountId,"orderly-key":p,"orderly-timestamp":n,"orderly-signature":o}});if(f.success)return f.data?.settle_nonce;throw new Error(f.message)}async _simpleFetch(n,s={}){let u=`${this.configStore.get("apiBaseUrl")}${n}`;return fetch(u,s).then(d=>d.json())}getDomain(n){return{name:"Orderly",version:"1",chainId:this.walletClient.chainId,verifyingContract:n?this.contractManger.getContractInfoByEnv().verifyContractAddress:"0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"}}get on(){return this._ee.on.bind(this._ee)}get once(){return this._ee.once.bind(this._ee)}get off(){return this._ee.off.bind(this._ee)}};At.instanceName="account";B();v();b();B();v();b();var Pt=class{constructor(n){this.web3=n}async getBalance(n){return await this.web3.eth.getBalance(n)}async deposit(n,s,u){return await this.web3.eth.sendTransaction({from:n,to:s,value:u})}async send(n,s){}};B();v();b();var pt=require("ethers"),Kt=class{constructor(n){console.log("EtherAdapter constructor",n),this._chainId=parseInt(n.chain.id,16),this.provider=new pt.BrowserProvider(n.provider,"any")}getBalance(n){throw new Error("Method not implemented.")}deposit(n,s,u){throw new Error("Method not implemented.")}getAddresses(n){return(0,pt.getAddress)(n)}get chainId(){return this._chainId}async send(n,s){return await this.provider?.send(n,s)}async verify(n,s){let{domain:u,types:d,message:p}=n,o=pt.ethers.verifyTypedData(u,d,p,s);console.log("recovered",o)}};0&&(module.exports={Account,BaseConfigStore,BaseContractManager,BaseKeyStore,BaseOrderlyKeyPair,BaseSigner,EtherAdapter,EventEmitter,LocalStorageStore,MemoryConfigStore,MockKeyStore,SimpleDI,Web3WalletAdapter,getDefaultSigner,getMockSigner});
2
2
  /*! Bundled license information:
3
3
 
4
4
  @jspm/core/nodelibs/browser/buffer.js:
5
5
  (*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
6
+
7
+ @noble/ed25519/index.js:
8
+ (*! noble-ed25519 - MIT License (c) 2019 Paul Miller (paulmillr.com) *)
6
9
  */
7
10
  //# sourceMappingURL=index.js.map