@bitcredit/bcr-ebill-wasm 0.4.7 → 0.4.8
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/index.d.ts +10 -9
- package/index.js +328 -325
- package/index_bg.wasm +0 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -321,6 +321,7 @@ export interface LightBitcreditBillWeb {
|
|
|
321
321
|
issue_date: string;
|
|
322
322
|
time_of_drawing: number;
|
|
323
323
|
time_of_maturity: number;
|
|
324
|
+
last_block_time: number;
|
|
324
325
|
}
|
|
325
326
|
|
|
326
327
|
export type BillParticipantWeb = { Anon: BillAnonParticipantWeb } | { Ident: BillIdentParticipantWeb };
|
|
@@ -974,13 +975,13 @@ export interface InitOutput {
|
|
|
974
975
|
readonly api_notification: () => number;
|
|
975
976
|
readonly api_contact: () => number;
|
|
976
977
|
readonly api_company: () => number;
|
|
977
|
-
readonly
|
|
978
|
+
readonly __wbg_bill_free: (a: number, b: number) => void;
|
|
978
979
|
readonly __wbg_contact_free: (a: number, b: number) => void;
|
|
979
|
-
readonly
|
|
980
|
+
readonly __wbg_general_free: (a: number, b: number) => void;
|
|
980
981
|
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
982
|
+
readonly __wbg_notification_free: (a: number, b: number) => void;
|
|
983
|
+
readonly __wbg_company_free: (a: number, b: number) => void;
|
|
981
984
|
readonly __wbg_identityproof_free: (a: number, b: number) => void;
|
|
982
|
-
readonly __wbg_general_free: (a: number, b: number) => void;
|
|
983
|
-
readonly __wbg_bill_free: (a: number, b: number) => void;
|
|
984
985
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
985
986
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
986
987
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
@@ -989,11 +990,11 @@ export interface InitOutput {
|
|
|
989
990
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
990
991
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
991
992
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
992
|
-
readonly
|
|
993
|
-
readonly
|
|
994
|
-
readonly
|
|
995
|
-
readonly
|
|
996
|
-
readonly
|
|
993
|
+
readonly closure357_externref_shim: (a: number, b: number, c: any) => void;
|
|
994
|
+
readonly wasm_bindgen__convert__closures_____invoke__h154b536fadeb3f8d: (a: number, b: number) => void;
|
|
995
|
+
readonly closure866_externref_shim_multivalue_shim: (a: number, b: number, c: any) => [number, number];
|
|
996
|
+
readonly wasm_bindgen__convert__closures_____invoke__h15d8466e320b582b: (a: number, b: number) => void;
|
|
997
|
+
readonly closure651_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
997
998
|
readonly __wbindgen_start: () => void;
|
|
998
999
|
}
|
|
999
1000
|
|
package/index.js
CHANGED
|
@@ -119,59 +119,6 @@ function getArrayU8FromWasm0(ptr, len) {
|
|
|
119
119
|
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
123
|
-
? { register: () => {}, unregister: () => {} }
|
|
124
|
-
: new FinalizationRegistry(state => {
|
|
125
|
-
wasm.__wbindgen_export_6.get(state.dtor)(state.a, state.b)
|
|
126
|
-
});
|
|
127
|
-
|
|
128
|
-
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
129
|
-
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
130
|
-
const real = (...args) => {
|
|
131
|
-
// First up with a closure we increment the internal reference
|
|
132
|
-
// count. This ensures that the Rust closure environment won't
|
|
133
|
-
// be deallocated while we're invoking it.
|
|
134
|
-
state.cnt++;
|
|
135
|
-
const a = state.a;
|
|
136
|
-
state.a = 0;
|
|
137
|
-
try {
|
|
138
|
-
return f(a, state.b, ...args);
|
|
139
|
-
} finally {
|
|
140
|
-
if (--state.cnt === 0) {
|
|
141
|
-
wasm.__wbindgen_export_6.get(state.dtor)(a, state.b);
|
|
142
|
-
CLOSURE_DTORS.unregister(state);
|
|
143
|
-
} else {
|
|
144
|
-
state.a = a;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
};
|
|
148
|
-
real.original = state;
|
|
149
|
-
CLOSURE_DTORS.register(real, state, state);
|
|
150
|
-
return real;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
function makeClosure(arg0, arg1, dtor, f) {
|
|
154
|
-
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
155
|
-
const real = (...args) => {
|
|
156
|
-
// First up with a closure we increment the internal reference
|
|
157
|
-
// count. This ensures that the Rust closure environment won't
|
|
158
|
-
// be deallocated while we're invoking it.
|
|
159
|
-
state.cnt++;
|
|
160
|
-
try {
|
|
161
|
-
return f(state.a, state.b, ...args);
|
|
162
|
-
} finally {
|
|
163
|
-
if (--state.cnt === 0) {
|
|
164
|
-
wasm.__wbindgen_export_6.get(state.dtor)(state.a, state.b);
|
|
165
|
-
state.a = 0;
|
|
166
|
-
CLOSURE_DTORS.unregister(state);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
};
|
|
170
|
-
real.original = state;
|
|
171
|
-
CLOSURE_DTORS.register(real, state, state);
|
|
172
|
-
return real;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
122
|
function debugString(val) {
|
|
176
123
|
// primitive types
|
|
177
124
|
const type = typeof val;
|
|
@@ -236,6 +183,62 @@ function debugString(val) {
|
|
|
236
183
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
237
184
|
return className;
|
|
238
185
|
}
|
|
186
|
+
|
|
187
|
+
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
188
|
+
? { register: () => {}, unregister: () => {} }
|
|
189
|
+
: new FinalizationRegistry(
|
|
190
|
+
state => {
|
|
191
|
+
wasm.__wbindgen_export_6.get(state.dtor)(state.a, state.b);
|
|
192
|
+
}
|
|
193
|
+
);
|
|
194
|
+
|
|
195
|
+
function makeClosure(arg0, arg1, dtor, f) {
|
|
196
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
197
|
+
const real = (...args) => {
|
|
198
|
+
|
|
199
|
+
// First up with a closure we increment the internal reference
|
|
200
|
+
// count. This ensures that the Rust closure environment won't
|
|
201
|
+
// be deallocated while we're invoking it.
|
|
202
|
+
state.cnt++;
|
|
203
|
+
try {
|
|
204
|
+
return f(state.a, state.b, ...args);
|
|
205
|
+
} finally {
|
|
206
|
+
if (--state.cnt === 0) {
|
|
207
|
+
wasm.__wbindgen_export_6.get(state.dtor)(state.a, state.b); state.a = 0;
|
|
208
|
+
CLOSURE_DTORS.unregister(state);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
};
|
|
212
|
+
real.original = state;
|
|
213
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
214
|
+
return real;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
218
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
219
|
+
const real = (...args) => {
|
|
220
|
+
|
|
221
|
+
// First up with a closure we increment the internal reference
|
|
222
|
+
// count. This ensures that the Rust closure environment won't
|
|
223
|
+
// be deallocated while we're invoking it.
|
|
224
|
+
state.cnt++;
|
|
225
|
+
const a = state.a;
|
|
226
|
+
state.a = 0;
|
|
227
|
+
try {
|
|
228
|
+
return f(a, state.b, ...args);
|
|
229
|
+
} finally {
|
|
230
|
+
if (--state.cnt === 0) {
|
|
231
|
+
wasm.__wbindgen_export_6.get(state.dtor)(a, state.b);
|
|
232
|
+
CLOSURE_DTORS.unregister(state);
|
|
233
|
+
} else {
|
|
234
|
+
state.a = a;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
};
|
|
238
|
+
real.original = state;
|
|
239
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
240
|
+
return real;
|
|
241
|
+
}
|
|
239
242
|
/**
|
|
240
243
|
* @param {Config} cfg
|
|
241
244
|
* @returns {Promise<void>}
|
|
@@ -261,27 +264,27 @@ export function task_worker_entry_point(ptr) {
|
|
|
261
264
|
}
|
|
262
265
|
}
|
|
263
266
|
|
|
264
|
-
function
|
|
265
|
-
wasm.
|
|
267
|
+
function __wbg_adapter_8(arg0, arg1, arg2) {
|
|
268
|
+
wasm.closure357_externref_shim(arg0, arg1, arg2);
|
|
266
269
|
}
|
|
267
270
|
|
|
268
|
-
function
|
|
269
|
-
wasm.
|
|
271
|
+
function __wbg_adapter_17(arg0, arg1) {
|
|
272
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h154b536fadeb3f8d(arg0, arg1);
|
|
270
273
|
}
|
|
271
274
|
|
|
272
|
-
function
|
|
273
|
-
wasm.
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
function __wbg_adapter_65(arg0, arg1, arg2) {
|
|
277
|
-
const ret = wasm.closure861_externref_shim_multivalue_shim(arg0, arg1, arg2);
|
|
275
|
+
function __wbg_adapter_26(arg0, arg1, arg2) {
|
|
276
|
+
const ret = wasm.closure866_externref_shim_multivalue_shim(arg0, arg1, arg2);
|
|
278
277
|
if (ret[1]) {
|
|
279
278
|
throw takeFromExternrefTable0(ret[0]);
|
|
280
279
|
}
|
|
281
280
|
}
|
|
282
281
|
|
|
283
|
-
function
|
|
284
|
-
wasm.
|
|
282
|
+
function __wbg_adapter_31(arg0, arg1) {
|
|
283
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h15d8466e320b582b(arg0, arg1);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
function __wbg_adapter_222(arg0, arg1, arg2, arg3) {
|
|
287
|
+
wasm.closure651_externref_shim(arg0, arg1, arg2, arg3);
|
|
285
288
|
}
|
|
286
289
|
|
|
287
290
|
/**
|
|
@@ -1425,10 +1428,14 @@ async function __wbg_load(module, imports) {
|
|
|
1425
1428
|
function __wbg_get_imports() {
|
|
1426
1429
|
const imports = {};
|
|
1427
1430
|
imports.wbg = {};
|
|
1428
|
-
imports.wbg.
|
|
1431
|
+
imports.wbg.__wbg_Error_90f14b053b2af32f = function(arg0, arg1) {
|
|
1429
1432
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
1430
1433
|
return ret;
|
|
1431
1434
|
};
|
|
1435
|
+
imports.wbg.__wbg_Number_d61e9549dcb95df6 = function(arg0) {
|
|
1436
|
+
const ret = Number(arg0);
|
|
1437
|
+
return ret;
|
|
1438
|
+
};
|
|
1432
1439
|
imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
1433
1440
|
const ret = String(arg1);
|
|
1434
1441
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -1436,38 +1443,34 @@ function __wbg_get_imports() {
|
|
|
1436
1443
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1437
1444
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1438
1445
|
};
|
|
1439
|
-
imports.wbg.
|
|
1446
|
+
imports.wbg.__wbg_abort_3c16ba0e9bfef904 = function() { return handleError(function (arg0) {
|
|
1447
|
+
arg0.abort();
|
|
1448
|
+
}, arguments) };
|
|
1449
|
+
imports.wbg.__wbg_abort_4703781fc49d1f48 = function(arg0) {
|
|
1440
1450
|
arg0.abort();
|
|
1441
1451
|
};
|
|
1442
|
-
imports.wbg.
|
|
1452
|
+
imports.wbg.__wbg_abort_a47139ff13270262 = function(arg0, arg1) {
|
|
1443
1453
|
arg0.abort(arg1);
|
|
1444
1454
|
};
|
|
1445
|
-
imports.wbg.
|
|
1446
|
-
arg0.abort();
|
|
1447
|
-
}, arguments) };
|
|
1448
|
-
imports.wbg.__wbg_advance_d12120c423e27f56 = function() { return handleError(function (arg0, arg1) {
|
|
1455
|
+
imports.wbg.__wbg_advance_d397d29cd835f03c = function() { return handleError(function (arg0, arg1) {
|
|
1449
1456
|
arg0.advance(arg1 >>> 0);
|
|
1450
1457
|
}, arguments) };
|
|
1451
|
-
imports.wbg.
|
|
1458
|
+
imports.wbg.__wbg_append_86985cd0ff9b3735 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1452
1459
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
1453
1460
|
}, arguments) };
|
|
1454
|
-
imports.wbg.
|
|
1461
|
+
imports.wbg.__wbg_arrayBuffer_c23deccc789004c3 = function() { return handleError(function (arg0) {
|
|
1455
1462
|
const ret = arg0.arrayBuffer();
|
|
1456
1463
|
return ret;
|
|
1457
1464
|
}, arguments) };
|
|
1458
|
-
imports.wbg.
|
|
1465
|
+
imports.wbg.__wbg_bound_970399f5f240e664 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1459
1466
|
const ret = IDBKeyRange.bound(arg0, arg1, arg2 !== 0, arg3 !== 0);
|
|
1460
1467
|
return ret;
|
|
1461
1468
|
}, arguments) };
|
|
1462
|
-
imports.wbg.
|
|
1463
|
-
const ret = arg0.buffer;
|
|
1464
|
-
return ret;
|
|
1465
|
-
};
|
|
1466
|
-
imports.wbg.__wbg_call_f2db6205e5c51dc8 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1469
|
+
imports.wbg.__wbg_call_52af042a326d9b3a = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1467
1470
|
const ret = arg0.call(arg1, arg2);
|
|
1468
1471
|
return ret;
|
|
1469
1472
|
}, arguments) };
|
|
1470
|
-
imports.wbg.
|
|
1473
|
+
imports.wbg.__wbg_call_90bf4b9978d51034 = function() { return handleError(function (arg0, arg1) {
|
|
1471
1474
|
const ret = arg0.call(arg1);
|
|
1472
1475
|
return ret;
|
|
1473
1476
|
}, arguments) };
|
|
@@ -1482,29 +1485,29 @@ function __wbg_get_imports() {
|
|
|
1482
1485
|
const ret = clearTimeout(arg0);
|
|
1483
1486
|
return ret;
|
|
1484
1487
|
};
|
|
1485
|
-
imports.wbg.
|
|
1488
|
+
imports.wbg.__wbg_close_638f149c7d475fe2 = function() { return handleError(function (arg0) {
|
|
1486
1489
|
arg0.close();
|
|
1487
1490
|
}, arguments) };
|
|
1488
|
-
imports.wbg.
|
|
1491
|
+
imports.wbg.__wbg_code_3f2c0ecfa04d4f74 = function(arg0) {
|
|
1489
1492
|
const ret = arg0.code;
|
|
1490
1493
|
return ret;
|
|
1491
1494
|
};
|
|
1492
|
-
imports.wbg.
|
|
1495
|
+
imports.wbg.__wbg_code_7494ffb0ed556a6e = function(arg0) {
|
|
1493
1496
|
const ret = arg0.code;
|
|
1494
1497
|
return ret;
|
|
1495
1498
|
};
|
|
1496
|
-
imports.wbg.
|
|
1499
|
+
imports.wbg.__wbg_contains_d3365b528f4997b6 = function(arg0, arg1, arg2) {
|
|
1497
1500
|
const ret = arg0.contains(getStringFromWasm0(arg1, arg2));
|
|
1498
1501
|
return ret;
|
|
1499
1502
|
};
|
|
1500
|
-
imports.wbg.
|
|
1503
|
+
imports.wbg.__wbg_continue_40eef0ff0247df20 = function() { return handleError(function (arg0) {
|
|
1501
1504
|
arg0.continue();
|
|
1502
1505
|
}, arguments) };
|
|
1503
|
-
imports.wbg.
|
|
1506
|
+
imports.wbg.__wbg_createIndex_1cbed22f5dac0641 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1504
1507
|
const ret = arg0.createIndex(getStringFromWasm0(arg1, arg2), arg3, arg4);
|
|
1505
1508
|
return ret;
|
|
1506
1509
|
}, arguments) };
|
|
1507
|
-
imports.wbg.
|
|
1510
|
+
imports.wbg.__wbg_createObjectStore_f81d2438a545065c = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1508
1511
|
const ret = arg0.createObjectStore(getStringFromWasm0(arg1, arg2), arg3);
|
|
1509
1512
|
return ret;
|
|
1510
1513
|
}, arguments) };
|
|
@@ -1512,36 +1515,32 @@ function __wbg_get_imports() {
|
|
|
1512
1515
|
const ret = arg0.crypto;
|
|
1513
1516
|
return ret;
|
|
1514
1517
|
};
|
|
1515
|
-
imports.wbg.
|
|
1518
|
+
imports.wbg.__wbg_data_f0e9cb0e6e0623e9 = function(arg0) {
|
|
1516
1519
|
const ret = arg0.data;
|
|
1517
1520
|
return ret;
|
|
1518
1521
|
};
|
|
1519
|
-
imports.wbg.
|
|
1522
|
+
imports.wbg.__wbg_debug_80dbd0bdb86bbe3b = function(arg0, arg1, arg2, arg3) {
|
|
1520
1523
|
console.debug(arg0, arg1, arg2, arg3);
|
|
1521
1524
|
};
|
|
1522
|
-
imports.wbg.
|
|
1525
|
+
imports.wbg.__wbg_deleteIndex_f5fa98410c30f858 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1523
1526
|
arg0.deleteIndex(getStringFromWasm0(arg1, arg2));
|
|
1524
1527
|
}, arguments) };
|
|
1525
|
-
imports.wbg.
|
|
1528
|
+
imports.wbg.__wbg_deleteObjectStore_88de783d96ce182a = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1526
1529
|
arg0.deleteObjectStore(getStringFromWasm0(arg1, arg2));
|
|
1527
1530
|
}, arguments) };
|
|
1528
|
-
imports.wbg.
|
|
1531
|
+
imports.wbg.__wbg_delete_73ff37657420da07 = function() { return handleError(function (arg0, arg1) {
|
|
1529
1532
|
const ret = arg0.delete(arg1);
|
|
1530
1533
|
return ret;
|
|
1531
1534
|
}, arguments) };
|
|
1532
|
-
imports.wbg.
|
|
1535
|
+
imports.wbg.__wbg_done_73bb10bcf6e0c339 = function(arg0) {
|
|
1533
1536
|
const ret = arg0.done;
|
|
1534
1537
|
return ret;
|
|
1535
1538
|
};
|
|
1536
|
-
imports.wbg.
|
|
1539
|
+
imports.wbg.__wbg_entries_4f3de4ccde51d587 = function(arg0) {
|
|
1537
1540
|
const ret = Object.entries(arg0);
|
|
1538
1541
|
return ret;
|
|
1539
1542
|
};
|
|
1540
|
-
imports.wbg.
|
|
1541
|
-
const ret = arg0.error;
|
|
1542
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1543
|
-
}, arguments) };
|
|
1544
|
-
imports.wbg.__wbg_error_624160881466fd69 = function(arg0, arg1, arg2, arg3) {
|
|
1543
|
+
imports.wbg.__wbg_error_67c633323e1067bb = function(arg0, arg1, arg2, arg3) {
|
|
1545
1544
|
console.error(arg0, arg1, arg2, arg3);
|
|
1546
1545
|
};
|
|
1547
1546
|
imports.wbg.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
|
|
@@ -1558,7 +1557,11 @@ function __wbg_get_imports() {
|
|
|
1558
1557
|
imports.wbg.__wbg_error_e98c298703cffa97 = function(arg0, arg1) {
|
|
1559
1558
|
console.error(getStringFromWasm0(arg0, arg1));
|
|
1560
1559
|
};
|
|
1561
|
-
imports.wbg.
|
|
1560
|
+
imports.wbg.__wbg_error_f1e752adc19b7227 = function() { return handleError(function (arg0) {
|
|
1561
|
+
const ret = arg0.error;
|
|
1562
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1563
|
+
}, arguments) };
|
|
1564
|
+
imports.wbg.__wbg_fetch_611809d2c49be2d4 = function(arg0, arg1) {
|
|
1562
1565
|
const ret = arg0.fetch(arg1);
|
|
1563
1566
|
return ret;
|
|
1564
1567
|
};
|
|
@@ -1572,27 +1575,27 @@ function __wbg_get_imports() {
|
|
|
1572
1575
|
imports.wbg.__wbg_getRandomValues_b8f5dbd5f3995a9e = function() { return handleError(function (arg0, arg1) {
|
|
1573
1576
|
arg0.getRandomValues(arg1);
|
|
1574
1577
|
}, arguments) };
|
|
1575
|
-
imports.wbg.
|
|
1578
|
+
imports.wbg.__wbg_getTime_871723e89d2fc364 = function(arg0) {
|
|
1576
1579
|
const ret = arg0.getTime();
|
|
1577
1580
|
return ret;
|
|
1578
1581
|
};
|
|
1579
|
-
imports.wbg.
|
|
1582
|
+
imports.wbg.__wbg_getTimezoneOffset_3f81a90b92d6f678 = function(arg0) {
|
|
1580
1583
|
const ret = arg0.getTimezoneOffset();
|
|
1581
1584
|
return ret;
|
|
1582
1585
|
};
|
|
1583
|
-
imports.wbg.
|
|
1584
|
-
const ret =
|
|
1586
|
+
imports.wbg.__wbg_get_56d4b5da2b695058 = function() { return handleError(function (arg0, arg1) {
|
|
1587
|
+
const ret = arg0.get(arg1);
|
|
1585
1588
|
return ret;
|
|
1586
1589
|
}, arguments) };
|
|
1587
|
-
imports.wbg.
|
|
1590
|
+
imports.wbg.__wbg_get_6e64f6b3af0c61a2 = function(arg0, arg1) {
|
|
1588
1591
|
const ret = arg0[arg1 >>> 0];
|
|
1589
1592
|
return ret;
|
|
1590
1593
|
};
|
|
1591
|
-
imports.wbg.
|
|
1592
|
-
const ret =
|
|
1594
|
+
imports.wbg.__wbg_get_bb21663672334172 = function() { return handleError(function (arg0, arg1) {
|
|
1595
|
+
const ret = Reflect.get(arg0, arg1);
|
|
1593
1596
|
return ret;
|
|
1594
1597
|
}, arguments) };
|
|
1595
|
-
imports.wbg.
|
|
1598
|
+
imports.wbg.__wbg_get_e768451908b57a36 = function(arg0, arg1, arg2) {
|
|
1596
1599
|
const ret = arg1[arg2 >>> 0];
|
|
1597
1600
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1598
1601
|
var len1 = WASM_VECTOR_LEN;
|
|
@@ -1603,22 +1606,22 @@ function __wbg_get_imports() {
|
|
|
1603
1606
|
const ret = arg0[arg1];
|
|
1604
1607
|
return ret;
|
|
1605
1608
|
};
|
|
1606
|
-
imports.wbg.
|
|
1609
|
+
imports.wbg.__wbg_has_d475219e5abfb8d5 = function() { return handleError(function (arg0, arg1) {
|
|
1607
1610
|
const ret = Reflect.has(arg0, arg1);
|
|
1608
1611
|
return ret;
|
|
1609
1612
|
}, arguments) };
|
|
1610
|
-
imports.wbg.
|
|
1613
|
+
imports.wbg.__wbg_headers_2fbd6da24e99b7fe = function(arg0) {
|
|
1611
1614
|
const ret = arg0.headers;
|
|
1612
1615
|
return ret;
|
|
1613
1616
|
};
|
|
1614
|
-
imports.wbg.
|
|
1617
|
+
imports.wbg.__wbg_indexNames_1393eb62da67fcb3 = function(arg0) {
|
|
1615
1618
|
const ret = arg0.indexNames;
|
|
1616
1619
|
return ret;
|
|
1617
1620
|
};
|
|
1618
|
-
imports.wbg.
|
|
1621
|
+
imports.wbg.__wbg_info_c40bc9ca4670efae = function(arg0, arg1, arg2, arg3) {
|
|
1619
1622
|
console.info(arg0, arg1, arg2, arg3);
|
|
1620
1623
|
};
|
|
1621
|
-
imports.wbg.
|
|
1624
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_625e762023eb35cf = function(arg0) {
|
|
1622
1625
|
let result;
|
|
1623
1626
|
try {
|
|
1624
1627
|
result = arg0 instanceof ArrayBuffer;
|
|
@@ -1628,7 +1631,7 @@ function __wbg_get_imports() {
|
|
|
1628
1631
|
const ret = result;
|
|
1629
1632
|
return ret;
|
|
1630
1633
|
};
|
|
1631
|
-
imports.wbg.
|
|
1634
|
+
imports.wbg.__wbg_instanceof_Blob_0b44f721b4a0d308 = function(arg0) {
|
|
1632
1635
|
let result;
|
|
1633
1636
|
try {
|
|
1634
1637
|
result = arg0 instanceof Blob;
|
|
@@ -1638,7 +1641,7 @@ function __wbg_get_imports() {
|
|
|
1638
1641
|
const ret = result;
|
|
1639
1642
|
return ret;
|
|
1640
1643
|
};
|
|
1641
|
-
imports.wbg.
|
|
1644
|
+
imports.wbg.__wbg_instanceof_IdbFactory_34c329ff4b0cbb4d = function(arg0) {
|
|
1642
1645
|
let result;
|
|
1643
1646
|
try {
|
|
1644
1647
|
result = arg0 instanceof IDBFactory;
|
|
@@ -1648,7 +1651,7 @@ function __wbg_get_imports() {
|
|
|
1648
1651
|
const ret = result;
|
|
1649
1652
|
return ret;
|
|
1650
1653
|
};
|
|
1651
|
-
imports.wbg.
|
|
1654
|
+
imports.wbg.__wbg_instanceof_Map_7d3de120a6cca988 = function(arg0) {
|
|
1652
1655
|
let result;
|
|
1653
1656
|
try {
|
|
1654
1657
|
result = arg0 instanceof Map;
|
|
@@ -1658,7 +1661,7 @@ function __wbg_get_imports() {
|
|
|
1658
1661
|
const ret = result;
|
|
1659
1662
|
return ret;
|
|
1660
1663
|
};
|
|
1661
|
-
imports.wbg.
|
|
1664
|
+
imports.wbg.__wbg_instanceof_Response_fbc9a5db7a3ab57a = function(arg0) {
|
|
1662
1665
|
let result;
|
|
1663
1666
|
try {
|
|
1664
1667
|
result = arg0 instanceof Response;
|
|
@@ -1668,7 +1671,7 @@ function __wbg_get_imports() {
|
|
|
1668
1671
|
const ret = result;
|
|
1669
1672
|
return ret;
|
|
1670
1673
|
};
|
|
1671
|
-
imports.wbg.
|
|
1674
|
+
imports.wbg.__wbg_instanceof_Uint8Array_6935b7b95ef40080 = function(arg0) {
|
|
1672
1675
|
let result;
|
|
1673
1676
|
try {
|
|
1674
1677
|
result = arg0 instanceof Uint8Array;
|
|
@@ -1678,81 +1681,77 @@ function __wbg_get_imports() {
|
|
|
1678
1681
|
const ret = result;
|
|
1679
1682
|
return ret;
|
|
1680
1683
|
};
|
|
1681
|
-
imports.wbg.
|
|
1684
|
+
imports.wbg.__wbg_isArray_fe31d4a8d77ae781 = function(arg0) {
|
|
1682
1685
|
const ret = Array.isArray(arg0);
|
|
1683
1686
|
return ret;
|
|
1684
1687
|
};
|
|
1685
|
-
imports.wbg.
|
|
1688
|
+
imports.wbg.__wbg_isSafeInteger_342db8cae87edb4e = function(arg0) {
|
|
1686
1689
|
const ret = Number.isSafeInteger(arg0);
|
|
1687
1690
|
return ret;
|
|
1688
1691
|
};
|
|
1689
|
-
imports.wbg.
|
|
1692
|
+
imports.wbg.__wbg_iterator_fe047a6b04943f88 = function() {
|
|
1690
1693
|
const ret = Symbol.iterator;
|
|
1691
1694
|
return ret;
|
|
1692
1695
|
};
|
|
1693
|
-
imports.wbg.
|
|
1696
|
+
imports.wbg.__wbg_key_83acfc09dbbe224b = function() { return handleError(function (arg0) {
|
|
1694
1697
|
const ret = arg0.key;
|
|
1695
1698
|
return ret;
|
|
1696
1699
|
}, arguments) };
|
|
1697
|
-
imports.wbg.
|
|
1700
|
+
imports.wbg.__wbg_length_09646ad20ebb8534 = function(arg0) {
|
|
1698
1701
|
const ret = arg0.length;
|
|
1699
1702
|
return ret;
|
|
1700
1703
|
};
|
|
1701
|
-
imports.wbg.
|
|
1704
|
+
imports.wbg.__wbg_length_537fa63a6103cbdb = function(arg0) {
|
|
1702
1705
|
const ret = arg0.length;
|
|
1703
1706
|
return ret;
|
|
1704
1707
|
};
|
|
1705
|
-
imports.wbg.
|
|
1708
|
+
imports.wbg.__wbg_length_9c7d09e7bea90f1d = function(arg0) {
|
|
1706
1709
|
const ret = arg0.length;
|
|
1707
1710
|
return ret;
|
|
1708
1711
|
};
|
|
1709
|
-
imports.wbg.
|
|
1712
|
+
imports.wbg.__wbg_log_de48fb9598000231 = function(arg0, arg1, arg2, arg3) {
|
|
1710
1713
|
console.log(arg0, arg1, arg2, arg3);
|
|
1711
1714
|
};
|
|
1712
1715
|
imports.wbg.__wbg_msCrypto_a61aeb35a24c1329 = function(arg0) {
|
|
1713
1716
|
const ret = arg0.msCrypto;
|
|
1714
1717
|
return ret;
|
|
1715
1718
|
};
|
|
1716
|
-
imports.wbg.
|
|
1719
|
+
imports.wbg.__wbg_new0_c64c48ddf51d2ee4 = function() {
|
|
1717
1720
|
const ret = new Date();
|
|
1718
1721
|
return ret;
|
|
1719
1722
|
};
|
|
1720
|
-
imports.wbg.
|
|
1723
|
+
imports.wbg.__wbg_new_1b925e0c0e1d30ba = function() {
|
|
1721
1724
|
const ret = new Object();
|
|
1722
1725
|
return ret;
|
|
1723
1726
|
};
|
|
1724
|
-
imports.wbg.
|
|
1725
|
-
const ret = new
|
|
1726
|
-
return ret;
|
|
1727
|
-
}, arguments) };
|
|
1728
|
-
imports.wbg.__wbg_new_4796e1cd2eb9ea6d = function() { return handleError(function () {
|
|
1729
|
-
const ret = new Headers();
|
|
1730
|
-
return ret;
|
|
1731
|
-
}, arguments) };
|
|
1732
|
-
imports.wbg.__wbg_new_58353953ad2097cc = function() {
|
|
1733
|
-
const ret = new Array();
|
|
1727
|
+
imports.wbg.__wbg_new_3c48ee6a683248da = function() {
|
|
1728
|
+
const ret = new Map();
|
|
1734
1729
|
return ret;
|
|
1735
1730
|
};
|
|
1736
1731
|
imports.wbg.__wbg_new_8a6f238a6ece86ea = function() {
|
|
1737
1732
|
const ret = new Error();
|
|
1738
1733
|
return ret;
|
|
1739
1734
|
};
|
|
1740
|
-
imports.wbg.
|
|
1735
|
+
imports.wbg.__wbg_new_8ff6ffa0dc289b1f = function() { return handleError(function () {
|
|
1736
|
+
const ret = new Headers();
|
|
1737
|
+
return ret;
|
|
1738
|
+
}, arguments) };
|
|
1739
|
+
imports.wbg.__wbg_new_9db3583303284e35 = function(arg0) {
|
|
1741
1740
|
const ret = new Date(arg0);
|
|
1742
1741
|
return ret;
|
|
1743
1742
|
};
|
|
1744
|
-
imports.wbg.
|
|
1745
|
-
const ret = new
|
|
1743
|
+
imports.wbg.__wbg_new_b25e3e4428c04a92 = function() { return handleError(function (arg0, arg1) {
|
|
1744
|
+
const ret = new WebSocket(getStringFromWasm0(arg0, arg1));
|
|
1746
1745
|
return ret;
|
|
1747
|
-
};
|
|
1748
|
-
imports.wbg.
|
|
1746
|
+
}, arguments) };
|
|
1747
|
+
imports.wbg.__wbg_new_b38cbb8a106768cf = function(arg0, arg1) {
|
|
1749
1748
|
try {
|
|
1750
1749
|
var state0 = {a: arg0, b: arg1};
|
|
1751
1750
|
var cb0 = (arg0, arg1) => {
|
|
1752
1751
|
const a = state0.a;
|
|
1753
1752
|
state0.a = 0;
|
|
1754
1753
|
try {
|
|
1755
|
-
return
|
|
1754
|
+
return __wbg_adapter_222(a, state0.b, arg0, arg1);
|
|
1756
1755
|
} finally {
|
|
1757
1756
|
state0.a = a;
|
|
1758
1757
|
}
|
|
@@ -1763,39 +1762,39 @@ function __wbg_get_imports() {
|
|
|
1763
1762
|
state0.a = state0.b = 0;
|
|
1764
1763
|
}
|
|
1765
1764
|
};
|
|
1766
|
-
imports.wbg.
|
|
1765
|
+
imports.wbg.__wbg_new_d6b08dae7359cebb = function(arg0) {
|
|
1767
1766
|
const ret = new Uint8Array(arg0);
|
|
1768
1767
|
return ret;
|
|
1769
1768
|
};
|
|
1770
|
-
imports.wbg.
|
|
1771
|
-
const ret = new
|
|
1769
|
+
imports.wbg.__wbg_new_d8a154d0939e6bb4 = function() {
|
|
1770
|
+
const ret = new Array();
|
|
1771
|
+
return ret;
|
|
1772
|
+
};
|
|
1773
|
+
imports.wbg.__wbg_new_eb9a0b389ac8dd8f = function() { return handleError(function () {
|
|
1774
|
+
const ret = new AbortController();
|
|
1772
1775
|
return ret;
|
|
1773
1776
|
}, arguments) };
|
|
1774
|
-
imports.wbg.
|
|
1777
|
+
imports.wbg.__wbg_newfromslice_87a363f6accf981c = function(arg0, arg1) {
|
|
1775
1778
|
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
1776
1779
|
return ret;
|
|
1777
1780
|
};
|
|
1778
|
-
imports.wbg.
|
|
1781
|
+
imports.wbg.__wbg_newnoargs_863941679b1933bb = function(arg0, arg1) {
|
|
1779
1782
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
1780
1783
|
return ret;
|
|
1781
1784
|
};
|
|
1782
|
-
imports.wbg.
|
|
1783
|
-
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
|
1784
|
-
return ret;
|
|
1785
|
-
};
|
|
1786
|
-
imports.wbg.__wbg_newwithlength_08f872dc1e3ada2e = function(arg0) {
|
|
1785
|
+
imports.wbg.__wbg_newwithlength_79dd8226b146df94 = function(arg0) {
|
|
1787
1786
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
1788
1787
|
return ret;
|
|
1789
1788
|
};
|
|
1790
|
-
imports.wbg.
|
|
1789
|
+
imports.wbg.__wbg_newwithstrandinit_59c419a01785b79c = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1791
1790
|
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1792
1791
|
return ret;
|
|
1793
1792
|
}, arguments) };
|
|
1794
|
-
imports.wbg.
|
|
1793
|
+
imports.wbg.__wbg_next_59846e169128a0ea = function(arg0) {
|
|
1795
1794
|
const ret = arg0.next;
|
|
1796
1795
|
return ret;
|
|
1797
1796
|
};
|
|
1798
|
-
imports.wbg.
|
|
1797
|
+
imports.wbg.__wbg_next_c782e76a0400870a = function() { return handleError(function (arg0) {
|
|
1799
1798
|
const ret = arg0.next();
|
|
1800
1799
|
return ret;
|
|
1801
1800
|
}, arguments) };
|
|
@@ -1803,11 +1802,15 @@ function __wbg_get_imports() {
|
|
|
1803
1802
|
const ret = arg0.node;
|
|
1804
1803
|
return ret;
|
|
1805
1804
|
};
|
|
1806
|
-
imports.wbg.
|
|
1805
|
+
imports.wbg.__wbg_now_5180ef7a3cc4af32 = function() {
|
|
1806
|
+
const ret = Date.now();
|
|
1807
|
+
return ret;
|
|
1808
|
+
};
|
|
1809
|
+
imports.wbg.__wbg_now_6a243c2bde68b68f = function(arg0) {
|
|
1807
1810
|
const ret = arg0.now();
|
|
1808
1811
|
return ret;
|
|
1809
1812
|
};
|
|
1810
|
-
imports.wbg.
|
|
1813
|
+
imports.wbg.__wbg_now_71123b9940376874 = function(arg0) {
|
|
1811
1814
|
const ret = arg0.now();
|
|
1812
1815
|
return ret;
|
|
1813
1816
|
};
|
|
@@ -1815,35 +1818,31 @@ function __wbg_get_imports() {
|
|
|
1815
1818
|
const ret = Date.now();
|
|
1816
1819
|
return ret;
|
|
1817
1820
|
}, arguments) };
|
|
1818
|
-
imports.wbg.
|
|
1819
|
-
const ret = Date.now();
|
|
1820
|
-
return ret;
|
|
1821
|
-
};
|
|
1822
|
-
imports.wbg.__wbg_objectStoreNames_e82275eb2d403a92 = function(arg0) {
|
|
1821
|
+
imports.wbg.__wbg_objectStoreNames_2eb6f59260ca622b = function(arg0) {
|
|
1823
1822
|
const ret = arg0.objectStoreNames;
|
|
1824
1823
|
return ret;
|
|
1825
1824
|
};
|
|
1826
|
-
imports.wbg.
|
|
1825
|
+
imports.wbg.__wbg_objectStore_10bacef7492561d9 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1827
1826
|
const ret = arg0.objectStore(getStringFromWasm0(arg1, arg2));
|
|
1828
1827
|
return ret;
|
|
1829
1828
|
}, arguments) };
|
|
1830
|
-
imports.wbg.
|
|
1831
|
-
const ret = arg0.openCursor();
|
|
1829
|
+
imports.wbg.__wbg_openCursor_4cd576358271ad68 = function() { return handleError(function (arg0, arg1) {
|
|
1830
|
+
const ret = arg0.openCursor(arg1);
|
|
1832
1831
|
return ret;
|
|
1833
1832
|
}, arguments) };
|
|
1834
|
-
imports.wbg.
|
|
1835
|
-
const ret = arg0.openCursor(
|
|
1833
|
+
imports.wbg.__wbg_openCursor_4cdc231af3d9f36d = function() { return handleError(function (arg0) {
|
|
1834
|
+
const ret = arg0.openCursor();
|
|
1836
1835
|
return ret;
|
|
1837
1836
|
}, arguments) };
|
|
1838
|
-
imports.wbg.
|
|
1839
|
-
const ret = arg0.openCursor(arg1);
|
|
1837
|
+
imports.wbg.__wbg_openCursor_ad5aae0a797cbd86 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1838
|
+
const ret = arg0.openCursor(arg1, __wbindgen_enum_IdbCursorDirection[arg2]);
|
|
1840
1839
|
return ret;
|
|
1841
1840
|
}, arguments) };
|
|
1842
|
-
imports.wbg.
|
|
1841
|
+
imports.wbg.__wbg_open_2a7c0878a0baa8b2 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
1843
1842
|
const ret = arg0.open(getStringFromWasm0(arg1, arg2), arg3 >>> 0);
|
|
1844
1843
|
return ret;
|
|
1845
1844
|
}, arguments) };
|
|
1846
|
-
imports.wbg.
|
|
1845
|
+
imports.wbg.__wbg_open_cf18d06569cbd8f8 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1847
1846
|
const ret = arg0.open(getStringFromWasm0(arg1, arg2));
|
|
1848
1847
|
return ret;
|
|
1849
1848
|
}, arguments) };
|
|
@@ -1851,40 +1850,43 @@ function __wbg_get_imports() {
|
|
|
1851
1850
|
const ret = arg0.performance;
|
|
1852
1851
|
return ret;
|
|
1853
1852
|
};
|
|
1854
|
-
imports.wbg.
|
|
1853
|
+
imports.wbg.__wbg_postMessage_c404cedcccb08ca1 = function() { return handleError(function (arg0, arg1) {
|
|
1855
1854
|
arg0.postMessage(arg1);
|
|
1856
1855
|
}, arguments) };
|
|
1857
1856
|
imports.wbg.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) {
|
|
1858
1857
|
const ret = arg0.process;
|
|
1859
1858
|
return ret;
|
|
1860
1859
|
};
|
|
1861
|
-
imports.wbg.
|
|
1860
|
+
imports.wbg.__wbg_prototypesetcall_a81ac58a5b6e988c = function(arg0, arg1, arg2) {
|
|
1861
|
+
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
1862
|
+
};
|
|
1863
|
+
imports.wbg.__wbg_push_a625ffb414ba40f2 = function(arg0, arg1) {
|
|
1862
1864
|
const ret = arg0.push(arg1);
|
|
1863
1865
|
return ret;
|
|
1864
1866
|
};
|
|
1865
|
-
imports.wbg.
|
|
1867
|
+
imports.wbg.__wbg_put_2852b836f727aa24 = function() { return handleError(function (arg0, arg1) {
|
|
1866
1868
|
const ret = arg0.put(arg1);
|
|
1867
1869
|
return ret;
|
|
1868
1870
|
}, arguments) };
|
|
1869
|
-
imports.wbg.
|
|
1871
|
+
imports.wbg.__wbg_put_43d1b6f83d0a84aa = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1870
1872
|
const ret = arg0.put(arg1, arg2);
|
|
1871
1873
|
return ret;
|
|
1872
1874
|
}, arguments) };
|
|
1873
|
-
imports.wbg.
|
|
1875
|
+
imports.wbg.__wbg_queueMicrotask_1d75ffff194a09bc = function(arg0) {
|
|
1874
1876
|
queueMicrotask(arg0);
|
|
1875
1877
|
};
|
|
1876
|
-
imports.wbg.
|
|
1878
|
+
imports.wbg.__wbg_queueMicrotask_b9a8d325fc1ebe35 = function(arg0) {
|
|
1877
1879
|
const ret = arg0.queueMicrotask;
|
|
1878
1880
|
return ret;
|
|
1879
1881
|
};
|
|
1880
1882
|
imports.wbg.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) {
|
|
1881
1883
|
arg0.randomFillSync(arg1);
|
|
1882
1884
|
}, arguments) };
|
|
1883
|
-
imports.wbg.
|
|
1885
|
+
imports.wbg.__wbg_readyState_79842e7a36b3e26f = function(arg0) {
|
|
1884
1886
|
const ret = arg0.readyState;
|
|
1885
1887
|
return ret;
|
|
1886
1888
|
};
|
|
1887
|
-
imports.wbg.
|
|
1889
|
+
imports.wbg.__wbg_reason_0d911d4cf2fdcb89 = function(arg0, arg1) {
|
|
1888
1890
|
const ret = arg1.reason;
|
|
1889
1891
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1890
1892
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -1895,18 +1897,18 @@ function __wbg_get_imports() {
|
|
|
1895
1897
|
const ret = module.require;
|
|
1896
1898
|
return ret;
|
|
1897
1899
|
}, arguments) };
|
|
1898
|
-
imports.wbg.
|
|
1900
|
+
imports.wbg.__wbg_resolve_f9faa06f9350ac82 = function(arg0) {
|
|
1899
1901
|
const ret = Promise.resolve(arg0);
|
|
1900
1902
|
return ret;
|
|
1901
1903
|
};
|
|
1902
|
-
imports.wbg.
|
|
1904
|
+
imports.wbg.__wbg_result_edc56dc5d213943f = function() { return handleError(function (arg0) {
|
|
1903
1905
|
const ret = arg0.result;
|
|
1904
1906
|
return ret;
|
|
1905
1907
|
}, arguments) };
|
|
1906
|
-
imports.wbg.
|
|
1908
|
+
imports.wbg.__wbg_send_1bcf47fc78631aa0 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1907
1909
|
arg0.send(getArrayU8FromWasm0(arg1, arg2));
|
|
1908
1910
|
}, arguments) };
|
|
1909
|
-
imports.wbg.
|
|
1911
|
+
imports.wbg.__wbg_send_64d7571c89ed808e = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1910
1912
|
arg0.send(getStringFromWasm0(arg1, arg2));
|
|
1911
1913
|
}, arguments) };
|
|
1912
1914
|
imports.wbg.__wbg_setInterval_c733bbe39e9b7c2b = function(arg0, arg1) {
|
|
@@ -1928,86 +1930,83 @@ function __wbg_get_imports() {
|
|
|
1928
1930
|
const ret = arg0.setTimeout(arg1, arg2);
|
|
1929
1931
|
return ret;
|
|
1930
1932
|
}, arguments) };
|
|
1933
|
+
imports.wbg.__wbg_set_038a8a067d895c6a = function(arg0, arg1, arg2) {
|
|
1934
|
+
arg0[arg1 >>> 0] = arg2;
|
|
1935
|
+
};
|
|
1931
1936
|
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
1932
1937
|
arg0[arg1] = arg2;
|
|
1933
1938
|
};
|
|
1934
|
-
imports.wbg.
|
|
1935
|
-
arg0[arg1 >>> 0] = arg2;
|
|
1936
|
-
};
|
|
1937
|
-
imports.wbg.__wbg_set_d6bdfd275fb8a4ce = function(arg0, arg1, arg2) {
|
|
1939
|
+
imports.wbg.__wbg_set_a15b7b524330d4f1 = function(arg0, arg1, arg2) {
|
|
1938
1940
|
const ret = arg0.set(arg1, arg2);
|
|
1939
1941
|
return ret;
|
|
1940
1942
|
};
|
|
1941
|
-
imports.wbg.
|
|
1942
|
-
arg0.set(arg1, arg2 >>> 0);
|
|
1943
|
-
};
|
|
1944
|
-
imports.wbg.__wbg_setautoincrement_6589237510ecaf4f = function(arg0, arg1) {
|
|
1943
|
+
imports.wbg.__wbg_setautoincrement_1c7ba42a63746112 = function(arg0, arg1) {
|
|
1945
1944
|
arg0.autoIncrement = arg1 !== 0;
|
|
1946
1945
|
};
|
|
1947
|
-
imports.wbg.
|
|
1946
|
+
imports.wbg.__wbg_setbinaryType_6091041926b40e35 = function(arg0, arg1) {
|
|
1948
1947
|
arg0.binaryType = __wbindgen_enum_BinaryType[arg1];
|
|
1949
1948
|
};
|
|
1950
|
-
imports.wbg.
|
|
1949
|
+
imports.wbg.__wbg_setbody_eae092e0854ca08a = function(arg0, arg1) {
|
|
1951
1950
|
arg0.body = arg1;
|
|
1952
1951
|
};
|
|
1953
|
-
imports.wbg.
|
|
1952
|
+
imports.wbg.__wbg_setcache_70ccfaf96bf3bf74 = function(arg0, arg1) {
|
|
1954
1953
|
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
1955
1954
|
};
|
|
1956
|
-
imports.wbg.
|
|
1955
|
+
imports.wbg.__wbg_setcredentials_ddd888a46135fc55 = function(arg0, arg1) {
|
|
1957
1956
|
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1958
1957
|
};
|
|
1959
|
-
imports.wbg.
|
|
1958
|
+
imports.wbg.__wbg_setheaders_45a1a764e8a12c9e = function(arg0, arg1) {
|
|
1960
1959
|
arg0.headers = arg1;
|
|
1961
1960
|
};
|
|
1962
|
-
imports.wbg.
|
|
1961
|
+
imports.wbg.__wbg_setkeypath_05f52d0e6711e48a = function(arg0, arg1) {
|
|
1963
1962
|
arg0.keyPath = arg1;
|
|
1964
1963
|
};
|
|
1965
|
-
imports.wbg.
|
|
1964
|
+
imports.wbg.__wbg_setmethod_105ebdc42c30973c = function(arg0, arg1, arg2) {
|
|
1966
1965
|
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1967
1966
|
};
|
|
1968
|
-
imports.wbg.
|
|
1967
|
+
imports.wbg.__wbg_setmode_0bdbbe8e2bd4a045 = function(arg0, arg1) {
|
|
1969
1968
|
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1970
1969
|
};
|
|
1971
|
-
imports.wbg.
|
|
1970
|
+
imports.wbg.__wbg_setmultientry_bac208c25c921e8c = function(arg0, arg1) {
|
|
1972
1971
|
arg0.multiEntry = arg1 !== 0;
|
|
1973
1972
|
};
|
|
1974
|
-
imports.wbg.
|
|
1973
|
+
imports.wbg.__wbg_setonabort_ce5b0297ac87ad98 = function(arg0, arg1) {
|
|
1975
1974
|
arg0.onabort = arg1;
|
|
1976
1975
|
};
|
|
1977
|
-
imports.wbg.
|
|
1976
|
+
imports.wbg.__wbg_setonclose_ed36c5c56fb23784 = function(arg0, arg1) {
|
|
1978
1977
|
arg0.onclose = arg1;
|
|
1979
1978
|
};
|
|
1980
|
-
imports.wbg.
|
|
1979
|
+
imports.wbg.__wbg_setoncomplete_fdb5cbfe53d8afc0 = function(arg0, arg1) {
|
|
1981
1980
|
arg0.oncomplete = arg1;
|
|
1982
1981
|
};
|
|
1983
|
-
imports.wbg.
|
|
1982
|
+
imports.wbg.__wbg_setonerror_0b06c8c3823405d9 = function(arg0, arg1) {
|
|
1984
1983
|
arg0.onerror = arg1;
|
|
1985
1984
|
};
|
|
1986
|
-
imports.wbg.
|
|
1985
|
+
imports.wbg.__wbg_setonerror_9368e4812d62d001 = function(arg0, arg1) {
|
|
1987
1986
|
arg0.onerror = arg1;
|
|
1988
1987
|
};
|
|
1989
|
-
imports.wbg.
|
|
1988
|
+
imports.wbg.__wbg_setonerror_9ba199199b0e31ef = function(arg0, arg1) {
|
|
1990
1989
|
arg0.onerror = arg1;
|
|
1991
1990
|
};
|
|
1992
|
-
imports.wbg.
|
|
1991
|
+
imports.wbg.__wbg_setonmessage_030be9b28b78c8a3 = function(arg0, arg1) {
|
|
1993
1992
|
arg0.onmessage = arg1;
|
|
1994
1993
|
};
|
|
1995
|
-
imports.wbg.
|
|
1994
|
+
imports.wbg.__wbg_setonopen_efe76fab4b23b530 = function(arg0, arg1) {
|
|
1996
1995
|
arg0.onopen = arg1;
|
|
1997
1996
|
};
|
|
1998
|
-
imports.wbg.
|
|
1997
|
+
imports.wbg.__wbg_setonsuccess_8128514f84436214 = function(arg0, arg1) {
|
|
1999
1998
|
arg0.onsuccess = arg1;
|
|
2000
1999
|
};
|
|
2001
|
-
imports.wbg.
|
|
2000
|
+
imports.wbg.__wbg_setonupgradeneeded_d0eb7543b529ba4f = function(arg0, arg1) {
|
|
2002
2001
|
arg0.onupgradeneeded = arg1;
|
|
2003
2002
|
};
|
|
2004
|
-
imports.wbg.
|
|
2003
|
+
imports.wbg.__wbg_setsignal_bf1514f1b6ae2fd8 = function(arg0, arg1) {
|
|
2005
2004
|
arg0.signal = arg1;
|
|
2006
2005
|
};
|
|
2007
|
-
imports.wbg.
|
|
2006
|
+
imports.wbg.__wbg_setunique_785a6fec6f5f82f8 = function(arg0, arg1) {
|
|
2008
2007
|
arg0.unique = arg1 !== 0;
|
|
2009
2008
|
};
|
|
2010
|
-
imports.wbg.
|
|
2009
|
+
imports.wbg.__wbg_signal_50f939f8e2d92aa9 = function(arg0) {
|
|
2011
2010
|
const ret = arg0.signal;
|
|
2012
2011
|
return ret;
|
|
2013
2012
|
};
|
|
@@ -2018,119 +2017,107 @@ function __wbg_get_imports() {
|
|
|
2018
2017
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2019
2018
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2020
2019
|
};
|
|
2021
|
-
imports.wbg.
|
|
2020
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_656a564fb01c5b63 = function() {
|
|
2022
2021
|
const ret = typeof global === 'undefined' ? null : global;
|
|
2023
2022
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2024
2023
|
};
|
|
2025
|
-
imports.wbg.
|
|
2024
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_09a6cc4b9571ef65 = function() {
|
|
2026
2025
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
2027
2026
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2028
2027
|
};
|
|
2029
|
-
imports.wbg.
|
|
2028
|
+
imports.wbg.__wbg_static_accessor_SELF_36742aea97854d74 = function() {
|
|
2030
2029
|
const ret = typeof self === 'undefined' ? null : self;
|
|
2031
2030
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2032
2031
|
};
|
|
2033
|
-
imports.wbg.
|
|
2032
|
+
imports.wbg.__wbg_static_accessor_WINDOW_0ce0d90b0830e7e6 = function() {
|
|
2034
2033
|
const ret = typeof window === 'undefined' ? null : window;
|
|
2035
2034
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2036
2035
|
};
|
|
2037
|
-
imports.wbg.
|
|
2036
|
+
imports.wbg.__wbg_status_7fd748ec5eec290d = function(arg0) {
|
|
2038
2037
|
const ret = arg0.status;
|
|
2039
2038
|
return ret;
|
|
2040
2039
|
};
|
|
2041
|
-
imports.wbg.
|
|
2040
|
+
imports.wbg.__wbg_stringify_61d42b7d144137e4 = function() { return handleError(function (arg0) {
|
|
2042
2041
|
const ret = JSON.stringify(arg0);
|
|
2043
2042
|
return ret;
|
|
2044
2043
|
}, arguments) };
|
|
2045
|
-
imports.wbg.
|
|
2044
|
+
imports.wbg.__wbg_subarray_07c7c2b284d2102d = function(arg0, arg1, arg2) {
|
|
2046
2045
|
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
2047
2046
|
return ret;
|
|
2048
2047
|
};
|
|
2049
|
-
imports.wbg.
|
|
2048
|
+
imports.wbg.__wbg_target_72e166dcea4f58a3 = function(arg0) {
|
|
2050
2049
|
const ret = arg0.target;
|
|
2051
2050
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2052
2051
|
};
|
|
2053
|
-
imports.wbg.
|
|
2052
|
+
imports.wbg.__wbg_text_d0c0100f17e99e8f = function() { return handleError(function (arg0) {
|
|
2054
2053
|
const ret = arg0.text();
|
|
2055
2054
|
return ret;
|
|
2056
2055
|
}, arguments) };
|
|
2057
|
-
imports.wbg.
|
|
2058
|
-
const ret = arg0.then(arg1
|
|
2056
|
+
imports.wbg.__wbg_then_66350f316a20107b = function(arg0, arg1) {
|
|
2057
|
+
const ret = arg0.then(arg1);
|
|
2059
2058
|
return ret;
|
|
2060
2059
|
};
|
|
2061
|
-
imports.wbg.
|
|
2062
|
-
const ret = arg0.then(arg1);
|
|
2060
|
+
imports.wbg.__wbg_then_a8d64a36c84944e9 = function(arg0, arg1, arg2) {
|
|
2061
|
+
const ret = arg0.then(arg1, arg2);
|
|
2063
2062
|
return ret;
|
|
2064
2063
|
};
|
|
2065
|
-
imports.wbg.
|
|
2064
|
+
imports.wbg.__wbg_toString_212ed1a09015116e = function(arg0) {
|
|
2066
2065
|
const ret = arg0.toString();
|
|
2067
2066
|
return ret;
|
|
2068
2067
|
};
|
|
2069
|
-
imports.wbg.
|
|
2070
|
-
const ret = arg0.transaction;
|
|
2071
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2072
|
-
};
|
|
2073
|
-
imports.wbg.__wbg_transaction_399fc15f5bba1880 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
2068
|
+
imports.wbg.__wbg_transaction_5bf4a8d590ebdbbb = function() { return handleError(function (arg0, arg1, arg2) {
|
|
2074
2069
|
const ret = arg0.transaction(arg1, __wbindgen_enum_IdbTransactionMode[arg2]);
|
|
2075
2070
|
return ret;
|
|
2076
2071
|
}, arguments) };
|
|
2077
|
-
imports.wbg.
|
|
2072
|
+
imports.wbg.__wbg_transaction_60c6f85a83cfb35e = function(arg0) {
|
|
2073
|
+
const ret = arg0.transaction;
|
|
2074
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2075
|
+
};
|
|
2076
|
+
imports.wbg.__wbg_url_6c91002a6358b1ec = function(arg0, arg1) {
|
|
2078
2077
|
const ret = arg1.url;
|
|
2079
2078
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2080
2079
|
const len1 = WASM_VECTOR_LEN;
|
|
2081
2080
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2082
2081
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2083
2082
|
};
|
|
2084
|
-
imports.wbg.
|
|
2083
|
+
imports.wbg.__wbg_url_cc954a4db05371ac = function(arg0, arg1) {
|
|
2085
2084
|
const ret = arg1.url;
|
|
2086
2085
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2087
2086
|
const len1 = WASM_VECTOR_LEN;
|
|
2088
2087
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2089
2088
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2090
2089
|
};
|
|
2091
|
-
imports.wbg.
|
|
2090
|
+
imports.wbg.__wbg_value_1006f2c681888091 = function() { return handleError(function (arg0) {
|
|
2092
2091
|
const ret = arg0.value;
|
|
2093
2092
|
return ret;
|
|
2094
|
-
};
|
|
2095
|
-
imports.wbg.
|
|
2093
|
+
}, arguments) };
|
|
2094
|
+
imports.wbg.__wbg_value_4ae21701b6f5c482 = function(arg0) {
|
|
2096
2095
|
const ret = arg0.value;
|
|
2097
2096
|
return ret;
|
|
2098
|
-
}
|
|
2097
|
+
};
|
|
2099
2098
|
imports.wbg.__wbg_versions_c01dfd4722a88165 = function(arg0) {
|
|
2100
2099
|
const ret = arg0.versions;
|
|
2101
2100
|
return ret;
|
|
2102
2101
|
};
|
|
2103
|
-
imports.wbg.
|
|
2102
|
+
imports.wbg.__wbg_warn_ca2df7e1f95ea58c = function(arg0, arg1, arg2, arg3) {
|
|
2104
2103
|
console.warn(arg0, arg1, arg2, arg3);
|
|
2105
2104
|
};
|
|
2106
|
-
imports.wbg.
|
|
2105
|
+
imports.wbg.__wbg_wasClean_871b5d3fe6b372d2 = function(arg0) {
|
|
2107
2106
|
const ret = arg0.wasClean;
|
|
2108
2107
|
return ret;
|
|
2109
2108
|
};
|
|
2110
|
-
imports.wbg.
|
|
2111
|
-
const ret = +arg0;
|
|
2112
|
-
return ret;
|
|
2113
|
-
};
|
|
2114
|
-
imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) {
|
|
2115
|
-
const ret = arg0;
|
|
2116
|
-
return ret;
|
|
2117
|
-
};
|
|
2118
|
-
imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
|
|
2119
|
-
const ret = BigInt.asUintN(64, arg0);
|
|
2120
|
-
return ret;
|
|
2121
|
-
};
|
|
2122
|
-
imports.wbg.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) {
|
|
2109
|
+
imports.wbg.__wbg_wbindgenbigintgetasi64_d3d568a64e846827 = function(arg0, arg1) {
|
|
2123
2110
|
const v = arg1;
|
|
2124
2111
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
2125
2112
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
2126
2113
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
2127
2114
|
};
|
|
2128
|
-
imports.wbg.
|
|
2115
|
+
imports.wbg.__wbg_wbindgenbooleanget_527bfac1bf7c06df = function(arg0) {
|
|
2129
2116
|
const v = arg0;
|
|
2130
|
-
const ret = typeof(v) === 'boolean' ?
|
|
2131
|
-
return ret;
|
|
2117
|
+
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
2118
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
2132
2119
|
};
|
|
2133
|
-
imports.wbg.
|
|
2120
|
+
imports.wbg.__wbg_wbindgencbdrop_470850fcb28f4519 = function(arg0) {
|
|
2134
2121
|
const obj = arg0.original;
|
|
2135
2122
|
if (obj.cnt-- == 1) {
|
|
2136
2123
|
obj.a = 0;
|
|
@@ -2139,107 +2126,57 @@ function __wbg_get_imports() {
|
|
|
2139
2126
|
const ret = false;
|
|
2140
2127
|
return ret;
|
|
2141
2128
|
};
|
|
2142
|
-
imports.wbg.
|
|
2143
|
-
const ret = makeMutClosure(arg0, arg1, 711, __wbg_adapter_55);
|
|
2144
|
-
return ret;
|
|
2145
|
-
};
|
|
2146
|
-
imports.wbg.__wbindgen_closure_wrapper11340 = function(arg0, arg1, arg2) {
|
|
2147
|
-
const ret = makeMutClosure(arg0, arg1, 857, __wbg_adapter_58);
|
|
2148
|
-
return ret;
|
|
2149
|
-
};
|
|
2150
|
-
imports.wbg.__wbindgen_closure_wrapper11370 = function(arg0, arg1, arg2) {
|
|
2151
|
-
const ret = makeMutClosure(arg0, arg1, 860, __wbg_adapter_65);
|
|
2152
|
-
return ret;
|
|
2153
|
-
};
|
|
2154
|
-
imports.wbg.__wbindgen_closure_wrapper20143 = function(arg0, arg1, arg2) {
|
|
2155
|
-
const ret = makeMutClosure(arg0, arg1, 633, __wbg_adapter_55);
|
|
2156
|
-
return ret;
|
|
2157
|
-
};
|
|
2158
|
-
imports.wbg.__wbindgen_closure_wrapper20184 = function(arg0, arg1, arg2) {
|
|
2159
|
-
const ret = makeMutClosure(arg0, arg1, 633, __wbg_adapter_58);
|
|
2160
|
-
return ret;
|
|
2161
|
-
};
|
|
2162
|
-
imports.wbg.__wbindgen_closure_wrapper2213 = function(arg0, arg1, arg2) {
|
|
2163
|
-
const ret = makeClosure(arg0, arg1, 352, __wbg_adapter_52);
|
|
2164
|
-
return ret;
|
|
2165
|
-
};
|
|
2166
|
-
imports.wbg.__wbindgen_closure_wrapper2915 = function(arg0, arg1, arg2) {
|
|
2167
|
-
const ret = makeMutClosure(arg0, arg1, 352, __wbg_adapter_55);
|
|
2168
|
-
return ret;
|
|
2169
|
-
};
|
|
2170
|
-
imports.wbg.__wbindgen_closure_wrapper5516 = function(arg0, arg1, arg2) {
|
|
2171
|
-
const ret = makeMutClosure(arg0, arg1, 633, __wbg_adapter_58);
|
|
2172
|
-
return ret;
|
|
2173
|
-
};
|
|
2174
|
-
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
|
2129
|
+
imports.wbg.__wbg_wbindgendebugstring_0c28a61befa1f3ce = function(arg0, arg1) {
|
|
2175
2130
|
const ret = debugString(arg1);
|
|
2176
2131
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2177
2132
|
const len1 = WASM_VECTOR_LEN;
|
|
2178
2133
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2179
2134
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2180
2135
|
};
|
|
2181
|
-
imports.wbg.
|
|
2136
|
+
imports.wbg.__wbg_wbindgenin_ed944d66e9a43ef2 = function(arg0, arg1) {
|
|
2182
2137
|
const ret = arg0 in arg1;
|
|
2183
2138
|
return ret;
|
|
2184
2139
|
};
|
|
2185
|
-
imports.wbg.
|
|
2186
|
-
const table = wasm.__wbindgen_export_4;
|
|
2187
|
-
const offset = table.grow(4);
|
|
2188
|
-
table.set(0, undefined);
|
|
2189
|
-
table.set(offset + 0, undefined);
|
|
2190
|
-
table.set(offset + 1, null);
|
|
2191
|
-
table.set(offset + 2, true);
|
|
2192
|
-
table.set(offset + 3, false);
|
|
2193
|
-
;
|
|
2194
|
-
};
|
|
2195
|
-
imports.wbg.__wbindgen_is_bigint = function(arg0) {
|
|
2140
|
+
imports.wbg.__wbg_wbindgenisbigint_1a3fbe7ad37b3968 = function(arg0) {
|
|
2196
2141
|
const ret = typeof(arg0) === 'bigint';
|
|
2197
2142
|
return ret;
|
|
2198
2143
|
};
|
|
2199
|
-
imports.wbg.
|
|
2144
|
+
imports.wbg.__wbg_wbindgenisfalsy_487fc8c477e22c22 = function(arg0) {
|
|
2200
2145
|
const ret = !arg0;
|
|
2201
2146
|
return ret;
|
|
2202
2147
|
};
|
|
2203
|
-
imports.wbg.
|
|
2148
|
+
imports.wbg.__wbg_wbindgenisfunction_27a5c72d80bbdf07 = function(arg0) {
|
|
2204
2149
|
const ret = typeof(arg0) === 'function';
|
|
2205
2150
|
return ret;
|
|
2206
2151
|
};
|
|
2207
|
-
imports.wbg.
|
|
2152
|
+
imports.wbg.__wbg_wbindgenisobject_bdb9aa7f2dd707ef = function(arg0) {
|
|
2208
2153
|
const val = arg0;
|
|
2209
2154
|
const ret = typeof(val) === 'object' && val !== null;
|
|
2210
2155
|
return ret;
|
|
2211
2156
|
};
|
|
2212
|
-
imports.wbg.
|
|
2157
|
+
imports.wbg.__wbg_wbindgenisstring_55b63daa584dc807 = function(arg0) {
|
|
2213
2158
|
const ret = typeof(arg0) === 'string';
|
|
2214
2159
|
return ret;
|
|
2215
2160
|
};
|
|
2216
|
-
imports.wbg.
|
|
2161
|
+
imports.wbg.__wbg_wbindgenisundefined_2e902cd900cf5927 = function(arg0) {
|
|
2217
2162
|
const ret = arg0 === undefined;
|
|
2218
2163
|
return ret;
|
|
2219
2164
|
};
|
|
2220
|
-
imports.wbg.
|
|
2165
|
+
imports.wbg.__wbg_wbindgenjsvaleq_af67af1ed6574f4f = function(arg0, arg1) {
|
|
2221
2166
|
const ret = arg0 === arg1;
|
|
2222
2167
|
return ret;
|
|
2223
2168
|
};
|
|
2224
|
-
imports.wbg.
|
|
2169
|
+
imports.wbg.__wbg_wbindgenjsvallooseeq_4f1ced8136023b79 = function(arg0, arg1) {
|
|
2225
2170
|
const ret = arg0 == arg1;
|
|
2226
2171
|
return ret;
|
|
2227
2172
|
};
|
|
2228
|
-
imports.wbg.
|
|
2229
|
-
const ret = wasm.memory;
|
|
2230
|
-
return ret;
|
|
2231
|
-
};
|
|
2232
|
-
imports.wbg.__wbindgen_number_get = function(arg0, arg1) {
|
|
2173
|
+
imports.wbg.__wbg_wbindgennumberget_41a5988c9fc46eeb = function(arg0, arg1) {
|
|
2233
2174
|
const obj = arg1;
|
|
2234
2175
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
2235
2176
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
2236
2177
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
2237
2178
|
};
|
|
2238
|
-
imports.wbg.
|
|
2239
|
-
const ret = arg0;
|
|
2240
|
-
return ret;
|
|
2241
|
-
};
|
|
2242
|
-
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
|
2179
|
+
imports.wbg.__wbg_wbindgenstringget_c45e0c672ada3c64 = function(arg0, arg1) {
|
|
2243
2180
|
const obj = arg1;
|
|
2244
2181
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
2245
2182
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -2247,12 +2184,78 @@ function __wbg_get_imports() {
|
|
|
2247
2184
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2248
2185
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2249
2186
|
};
|
|
2250
|
-
imports.wbg.
|
|
2187
|
+
imports.wbg.__wbg_wbindgenthrow_681185b504fabc8e = function(arg0, arg1) {
|
|
2188
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
2189
|
+
};
|
|
2190
|
+
imports.wbg.__wbindgen_cast_184d600a38453ec9 = function(arg0, arg1) {
|
|
2191
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 267, function: Function { arguments: [], shim_idx: 268, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
2192
|
+
const ret = makeClosure(arg0, arg1, 267, __wbg_adapter_31);
|
|
2193
|
+
return ret;
|
|
2194
|
+
};
|
|
2195
|
+
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
2196
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
2251
2197
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
2252
2198
|
return ret;
|
|
2253
2199
|
};
|
|
2254
|
-
imports.wbg.
|
|
2255
|
-
|
|
2200
|
+
imports.wbg.__wbindgen_cast_43561ab79e43e799 = function(arg0, arg1) {
|
|
2201
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 641, function: Function { arguments: [], shim_idx: 485, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2202
|
+
const ret = makeMutClosure(arg0, arg1, 641, __wbg_adapter_17);
|
|
2203
|
+
return ret;
|
|
2204
|
+
};
|
|
2205
|
+
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
|
|
2206
|
+
// Cast intrinsic for `U64 -> Externref`.
|
|
2207
|
+
const ret = BigInt.asUintN(64, arg0);
|
|
2208
|
+
return ret;
|
|
2209
|
+
};
|
|
2210
|
+
imports.wbg.__wbindgen_cast_5120819c36bfff40 = function(arg0, arg1) {
|
|
2211
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 725, function: Function { arguments: [NamedExternref("CloseEvent")], shim_idx: 357, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2212
|
+
const ret = makeMutClosure(arg0, arg1, 725, __wbg_adapter_8);
|
|
2213
|
+
return ret;
|
|
2214
|
+
};
|
|
2215
|
+
imports.wbg.__wbindgen_cast_9ae0607507abb057 = function(arg0) {
|
|
2216
|
+
// Cast intrinsic for `I64 -> Externref`.
|
|
2217
|
+
const ret = arg0;
|
|
2218
|
+
return ret;
|
|
2219
|
+
};
|
|
2220
|
+
imports.wbg.__wbindgen_cast_cb9088102bce6b30 = function(arg0, arg1) {
|
|
2221
|
+
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
2222
|
+
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
2223
|
+
return ret;
|
|
2224
|
+
};
|
|
2225
|
+
imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
2226
|
+
// Cast intrinsic for `F64 -> Externref`.
|
|
2227
|
+
const ret = arg0;
|
|
2228
|
+
return ret;
|
|
2229
|
+
};
|
|
2230
|
+
imports.wbg.__wbindgen_cast_e058a0a5cff64fb2 = function(arg0, arg1) {
|
|
2231
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 865, function: Function { arguments: [NamedExternref("Event")], shim_idx: 866, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
2232
|
+
const ret = makeMutClosure(arg0, arg1, 865, __wbg_adapter_26);
|
|
2233
|
+
return ret;
|
|
2234
|
+
};
|
|
2235
|
+
imports.wbg.__wbindgen_cast_e18de7f8c8d727a0 = function(arg0, arg1) {
|
|
2236
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 641, function: Function { arguments: [Externref], shim_idx: 357, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2237
|
+
const ret = makeMutClosure(arg0, arg1, 641, __wbg_adapter_8);
|
|
2238
|
+
return ret;
|
|
2239
|
+
};
|
|
2240
|
+
imports.wbg.__wbindgen_cast_e3d6704fc2f8f5a8 = function(arg0, arg1) {
|
|
2241
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 484, function: Function { arguments: [], shim_idx: 485, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2242
|
+
const ret = makeMutClosure(arg0, arg1, 484, __wbg_adapter_17);
|
|
2243
|
+
return ret;
|
|
2244
|
+
};
|
|
2245
|
+
imports.wbg.__wbindgen_cast_fb509b5333712aa1 = function(arg0, arg1) {
|
|
2246
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 267, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 357, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
2247
|
+
const ret = makeMutClosure(arg0, arg1, 267, __wbg_adapter_8);
|
|
2248
|
+
return ret;
|
|
2249
|
+
};
|
|
2250
|
+
imports.wbg.__wbindgen_init_externref_table = function() {
|
|
2251
|
+
const table = wasm.__wbindgen_export_4;
|
|
2252
|
+
const offset = table.grow(4);
|
|
2253
|
+
table.set(0, undefined);
|
|
2254
|
+
table.set(offset + 0, undefined);
|
|
2255
|
+
table.set(offset + 1, null);
|
|
2256
|
+
table.set(offset + 2, true);
|
|
2257
|
+
table.set(offset + 3, false);
|
|
2258
|
+
;
|
|
2256
2259
|
};
|
|
2257
2260
|
|
|
2258
2261
|
return imports;
|
package/index_bg.wasm
CHANGED
|
Binary file
|