@noir-lang/acvm_js 0.46.0 → 0.47.0-1fabcde.nightly

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/web/acvm_js.js CHANGED
@@ -20,6 +20,28 @@ function takeObject(idx) {
20
20
  return ret;
21
21
  }
22
22
 
23
+ function isLikeNone(x) {
24
+ return x === undefined || x === null;
25
+ }
26
+
27
+ let cachedFloat64Memory0 = null;
28
+
29
+ function getFloat64Memory0() {
30
+ if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) {
31
+ cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer);
32
+ }
33
+ return cachedFloat64Memory0;
34
+ }
35
+
36
+ let cachedInt32Memory0 = null;
37
+
38
+ function getInt32Memory0() {
39
+ if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) {
40
+ cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
41
+ }
42
+ return cachedInt32Memory0;
43
+ }
44
+
23
45
  const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
24
46
 
25
47
  if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
@@ -102,37 +124,6 @@ function passStringToWasm0(arg, malloc, realloc) {
102
124
  return ptr;
103
125
  }
104
126
 
105
- function isLikeNone(x) {
106
- return x === undefined || x === null;
107
- }
108
-
109
- let cachedInt32Memory0 = null;
110
-
111
- function getInt32Memory0() {
112
- if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) {
113
- cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
114
- }
115
- return cachedInt32Memory0;
116
- }
117
-
118
- let cachedFloat64Memory0 = null;
119
-
120
- function getFloat64Memory0() {
121
- if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) {
122
- cachedFloat64Memory0 = new Float64Array(wasm.memory.buffer);
123
- }
124
- return cachedFloat64Memory0;
125
- }
126
-
127
- let cachedBigInt64Memory0 = null;
128
-
129
- function getBigInt64Memory0() {
130
- if (cachedBigInt64Memory0 === null || cachedBigInt64Memory0.byteLength === 0) {
131
- cachedBigInt64Memory0 = new BigInt64Array(wasm.memory.buffer);
132
- }
133
- return cachedBigInt64Memory0;
134
- }
135
-
136
127
  function debugString(val) {
137
128
  // primitive types
138
129
  const type = typeof val;
@@ -222,8 +213,8 @@ function makeMutClosure(arg0, arg1, dtor, f) {
222
213
 
223
214
  return real;
224
215
  }
225
- function __wbg_adapter_52(arg0, arg1, arg2) {
226
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc5258430255de068(arg0, arg1, addHeapObject(arg2));
216
+ function __wbg_adapter_22(arg0, arg1, arg2) {
217
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h36bac5ff3ea3c380(arg0, arg1, addHeapObject(arg2));
227
218
  }
228
219
 
229
220
  /**
@@ -247,12 +238,139 @@ export function initLogLevel(filter) {
247
238
  }
248
239
  }
249
240
 
241
+ function passArray8ToWasm0(arg, malloc) {
242
+ const ptr = malloc(arg.length * 1) >>> 0;
243
+ getUint8Memory0().set(arg, ptr / 1);
244
+ WASM_VECTOR_LEN = arg.length;
245
+ return ptr;
246
+ }
250
247
  /**
251
- * Returns the `BuildInfo` object containing information about how the installed package was built.
252
- * @returns {BuildInfo} - Information on how the installed package was built.
248
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's return values.
249
+ *
250
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
251
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
252
+ * @returns {WitnessMap} A witness map containing the circuit's return values.
253
+ * @param {Uint8Array} program
254
+ * @param {WitnessMap} witness_map
255
+ * @returns {WitnessMap}
253
256
  */
254
- export function buildInfo() {
255
- const ret = wasm.buildInfo();
257
+ export function getReturnWitness(program, witness_map) {
258
+ try {
259
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
260
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
261
+ const len0 = WASM_VECTOR_LEN;
262
+ wasm.getReturnWitness(retptr, ptr0, len0, addHeapObject(witness_map));
263
+ var r0 = getInt32Memory0()[retptr / 4 + 0];
264
+ var r1 = getInt32Memory0()[retptr / 4 + 1];
265
+ var r2 = getInt32Memory0()[retptr / 4 + 2];
266
+ if (r2) {
267
+ throw takeObject(r1);
268
+ }
269
+ return takeObject(r0);
270
+ } finally {
271
+ wasm.__wbindgen_add_to_stack_pointer(16);
272
+ }
273
+ }
274
+
275
+ /**
276
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public parameters.
277
+ *
278
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
279
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
280
+ * @returns {WitnessMap} A witness map containing the circuit's public parameters.
281
+ * @param {Uint8Array} program
282
+ * @param {WitnessMap} solved_witness
283
+ * @returns {WitnessMap}
284
+ */
285
+ export function getPublicParametersWitness(program, solved_witness) {
286
+ try {
287
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
288
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
289
+ const len0 = WASM_VECTOR_LEN;
290
+ wasm.getPublicParametersWitness(retptr, ptr0, len0, addHeapObject(solved_witness));
291
+ var r0 = getInt32Memory0()[retptr / 4 + 0];
292
+ var r1 = getInt32Memory0()[retptr / 4 + 1];
293
+ var r2 = getInt32Memory0()[retptr / 4 + 2];
294
+ if (r2) {
295
+ throw takeObject(r1);
296
+ }
297
+ return takeObject(r0);
298
+ } finally {
299
+ wasm.__wbindgen_add_to_stack_pointer(16);
300
+ }
301
+ }
302
+
303
+ /**
304
+ * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public inputs.
305
+ *
306
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
307
+ * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
308
+ * @returns {WitnessMap} A witness map containing the circuit's public inputs.
309
+ * @param {Uint8Array} program
310
+ * @param {WitnessMap} solved_witness
311
+ * @returns {WitnessMap}
312
+ */
313
+ export function getPublicWitness(program, solved_witness) {
314
+ try {
315
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
316
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
317
+ const len0 = WASM_VECTOR_LEN;
318
+ wasm.getPublicWitness(retptr, ptr0, len0, addHeapObject(solved_witness));
319
+ var r0 = getInt32Memory0()[retptr / 4 + 0];
320
+ var r1 = getInt32Memory0()[retptr / 4 + 1];
321
+ var r2 = getInt32Memory0()[retptr / 4 + 2];
322
+ if (r2) {
323
+ throw takeObject(r1);
324
+ }
325
+ return takeObject(r0);
326
+ } finally {
327
+ wasm.__wbindgen_add_to_stack_pointer(16);
328
+ }
329
+ }
330
+
331
+ /**
332
+ * Executes an ACIR circuit to generate the solved witness from the initial witness.
333
+ *
334
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
335
+ * @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
336
+ * @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
337
+ * @returns {WitnessMap} The solved witness calculated by executing the circuit on the provided inputs.
338
+ */
339
+ export function executeCircuit(program, initial_witness, foreign_call_handler) {
340
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
341
+ const len0 = WASM_VECTOR_LEN;
342
+ const ret = wasm.executeCircuit(ptr0, len0, addHeapObject(initial_witness), addHeapObject(foreign_call_handler));
343
+ return takeObject(ret);
344
+ }
345
+
346
+ /**
347
+ * Executes an ACIR circuit to generate the solved witness from the initial witness.
348
+ * This method also extracts the public return values from the solved witness into its own return witness.
349
+ *
350
+ * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
351
+ * @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
352
+ * @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
353
+ * @returns {SolvedAndReturnWitness} The solved witness calculated by executing the circuit on the provided inputs, as well as the return witness indices as specified by the circuit.
354
+ */
355
+ export function executeCircuitWithReturnWitness(program, initial_witness, foreign_call_handler) {
356
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
357
+ const len0 = WASM_VECTOR_LEN;
358
+ const ret = wasm.executeCircuitWithReturnWitness(ptr0, len0, addHeapObject(initial_witness), addHeapObject(foreign_call_handler));
359
+ return takeObject(ret);
360
+ }
361
+
362
+ /**
363
+ * Executes an ACIR circuit to generate the solved witness from the initial witness.
364
+ *
365
+ * @param {Uint8Array} program - A serialized representation of an ACIR program
366
+ * @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `program`.
367
+ * @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the program.
368
+ * @returns {WitnessStack} The solved witness calculated by executing the program on the provided inputs.
369
+ */
370
+ export function executeProgram(program, initial_witness, foreign_call_handler) {
371
+ const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
372
+ const len0 = WASM_VECTOR_LEN;
373
+ const ret = wasm.executeProgram(ptr0, len0, addHeapObject(initial_witness), addHeapObject(foreign_call_handler));
256
374
  return takeObject(ret);
257
375
  }
258
376
 
@@ -278,13 +396,6 @@ export function xor(lhs, rhs) {
278
396
  return takeObject(ret);
279
397
  }
280
398
 
281
- function passArray8ToWasm0(arg, malloc) {
282
- const ptr = malloc(arg.length * 1) >>> 0;
283
- getUint8Memory0().set(arg, ptr / 1);
284
- WASM_VECTOR_LEN = arg.length;
285
- return ptr;
286
- }
287
-
288
399
  function getArrayU8FromWasm0(ptr, len) {
289
400
  ptr = ptr >>> 0;
290
401
  return getUint8Memory0().subarray(ptr / 1, ptr / 1 + len);
@@ -394,6 +505,15 @@ export function ecdsa_secp256r1_verify(hashed_msg, public_key_x_bytes, public_ke
394
505
  return ret !== 0;
395
506
  }
396
507
 
508
+ /**
509
+ * Returns the `BuildInfo` object containing information about how the installed package was built.
510
+ * @returns {BuildInfo} - Information on how the installed package was built.
511
+ */
512
+ export function buildInfo() {
513
+ const ret = wasm.buildInfo();
514
+ return takeObject(ret);
515
+ }
516
+
397
517
  /**
398
518
  * Compresses a `WitnessMap` into the binary format outputted by Nargo.
399
519
  *
@@ -493,246 +613,30 @@ export function decompressWitnessStack(compressed_witness) {
493
613
  }
494
614
  }
495
615
 
496
- /**
497
- * @returns {Promise<WasmBlackBoxFunctionSolver>}
498
- */
499
- export function createBlackBoxSolver() {
500
- const ret = wasm.createBlackBoxSolver();
501
- return takeObject(ret);
502
- }
503
-
504
- /**
505
- * Executes an ACIR circuit to generate the solved witness from the initial witness.
506
- *
507
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
508
- * @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
509
- * @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
510
- * @returns {WitnessMap} The solved witness calculated by executing the circuit on the provided inputs.
511
- */
512
- export function executeCircuit(program, initial_witness, foreign_call_handler) {
513
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
514
- const len0 = WASM_VECTOR_LEN;
515
- const ret = wasm.executeCircuit(ptr0, len0, addHeapObject(initial_witness), addHeapObject(foreign_call_handler));
516
- return takeObject(ret);
616
+ function __wbg_adapter_76(arg0, arg1, arg2, arg3, arg4) {
617
+ wasm.wasm_bindgen__convert__closures__invoke3_mut__h629417323d5efbaa(arg0, arg1, addHeapObject(arg2), arg3, addHeapObject(arg4));
517
618
  }
518
619
 
519
- function _assertClass(instance, klass) {
520
- if (!(instance instanceof klass)) {
521
- throw new Error(`expected instance of ${klass.name}`);
620
+ function handleError(f, args) {
621
+ try {
622
+ return f.apply(this, args);
623
+ } catch (e) {
624
+ wasm.__wbindgen_exn_store(addHeapObject(e));
522
625
  }
523
- return instance.ptr;
524
626
  }
525
- /**
526
- * Executes an ACIR circuit to generate the solved witness from the initial witness.
527
- * This method also extracts the public return values from the solved witness into its own return witness.
528
- *
529
- * @param {&WasmBlackBoxFunctionSolver} solver - A black box solver.
530
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
531
- * @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
532
- * @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
533
- * @returns {SolvedAndReturnWitness} The solved witness calculated by executing the circuit on the provided inputs, as well as the return witness indices as specified by the circuit.
534
- */
535
- export function executeCircuitWithReturnWitness(solver, program, initial_witness, foreign_call_handler) {
536
- _assertClass(solver, WasmBlackBoxFunctionSolver);
537
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
538
- const len0 = WASM_VECTOR_LEN;
539
- const ret = wasm.executeCircuitWithReturnWitness(solver.__wbg_ptr, ptr0, len0, addHeapObject(initial_witness), addHeapObject(foreign_call_handler));
540
- return takeObject(ret);
627
+ function __wbg_adapter_93(arg0, arg1, arg2, arg3) {
628
+ wasm.wasm_bindgen__convert__closures__invoke2_mut__h4efdd1050cfb3ea7(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
541
629
  }
542
630
 
543
- /**
544
- * Executes an ACIR circuit to generate the solved witness from the initial witness.
545
- *
546
- * @param {&WasmBlackBoxFunctionSolver} solver - A black box solver.
547
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
548
- * @param {WitnessMap} initial_witness - The initial witness map defining all of the inputs to `circuit`..
549
- * @param {ForeignCallHandler} foreign_call_handler - A callback to process any foreign calls from the circuit.
550
- * @returns {WitnessMap} The solved witness calculated by executing the circuit on the provided inputs.
551
- */
552
- export function executeCircuitWithBlackBoxSolver(solver, program, initial_witness, foreign_call_handler) {
553
- _assertClass(solver, WasmBlackBoxFunctionSolver);
554
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
555
- const len0 = WASM_VECTOR_LEN;
556
- const ret = wasm.executeCircuitWithBlackBoxSolver(solver.__wbg_ptr, ptr0, len0, addHeapObject(initial_witness), addHeapObject(foreign_call_handler));
557
- return takeObject(ret);
558
- }
631
+ async function __wbg_load(module, imports) {
632
+ if (typeof Response === 'function' && module instanceof Response) {
633
+ if (typeof WebAssembly.instantiateStreaming === 'function') {
634
+ try {
635
+ return await WebAssembly.instantiateStreaming(module, imports);
559
636
 
560
- /**
561
- */
562
- export function executeProgram(program, initial_witness, foreign_call_handler) {
563
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
564
- const len0 = WASM_VECTOR_LEN;
565
- const ret = wasm.executeProgram(ptr0, len0, addHeapObject(initial_witness), addHeapObject(foreign_call_handler));
566
- return takeObject(ret);
567
- }
568
-
569
- /**
570
- */
571
- export function executeProgramWithBlackBoxSolver(solver, program, initial_witness, foreign_call_executor) {
572
- _assertClass(solver, WasmBlackBoxFunctionSolver);
573
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
574
- const len0 = WASM_VECTOR_LEN;
575
- const ret = wasm.executeProgramWithBlackBoxSolver(solver.__wbg_ptr, ptr0, len0, addHeapObject(initial_witness), addHeapObject(foreign_call_executor));
576
- return takeObject(ret);
577
- }
578
-
579
- /**
580
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's return values.
581
- *
582
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
583
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
584
- * @returns {WitnessMap} A witness map containing the circuit's return values.
585
- * @param {Uint8Array} program
586
- * @param {WitnessMap} witness_map
587
- * @returns {WitnessMap}
588
- */
589
- export function getReturnWitness(program, witness_map) {
590
- try {
591
- const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
592
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
593
- const len0 = WASM_VECTOR_LEN;
594
- wasm.getReturnWitness(retptr, ptr0, len0, addHeapObject(witness_map));
595
- var r0 = getInt32Memory0()[retptr / 4 + 0];
596
- var r1 = getInt32Memory0()[retptr / 4 + 1];
597
- var r2 = getInt32Memory0()[retptr / 4 + 2];
598
- if (r2) {
599
- throw takeObject(r1);
600
- }
601
- return takeObject(r0);
602
- } finally {
603
- wasm.__wbindgen_add_to_stack_pointer(16);
604
- }
605
- }
606
-
607
- /**
608
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public parameters.
609
- *
610
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
611
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
612
- * @returns {WitnessMap} A witness map containing the circuit's public parameters.
613
- * @param {Uint8Array} program
614
- * @param {WitnessMap} solved_witness
615
- * @returns {WitnessMap}
616
- */
617
- export function getPublicParametersWitness(program, solved_witness) {
618
- try {
619
- const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
620
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
621
- const len0 = WASM_VECTOR_LEN;
622
- wasm.getPublicParametersWitness(retptr, ptr0, len0, addHeapObject(solved_witness));
623
- var r0 = getInt32Memory0()[retptr / 4 + 0];
624
- var r1 = getInt32Memory0()[retptr / 4 + 1];
625
- var r2 = getInt32Memory0()[retptr / 4 + 2];
626
- if (r2) {
627
- throw takeObject(r1);
628
- }
629
- return takeObject(r0);
630
- } finally {
631
- wasm.__wbindgen_add_to_stack_pointer(16);
632
- }
633
- }
634
-
635
- /**
636
- * Extracts a `WitnessMap` containing the witness indices corresponding to the circuit's public inputs.
637
- *
638
- * @param {Uint8Array} circuit - A serialized representation of an ACIR circuit
639
- * @param {WitnessMap} witness_map - The completed witness map after executing the circuit.
640
- * @returns {WitnessMap} A witness map containing the circuit's public inputs.
641
- * @param {Uint8Array} program
642
- * @param {WitnessMap} solved_witness
643
- * @returns {WitnessMap}
644
- */
645
- export function getPublicWitness(program, solved_witness) {
646
- try {
647
- const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
648
- const ptr0 = passArray8ToWasm0(program, wasm.__wbindgen_malloc);
649
- const len0 = WASM_VECTOR_LEN;
650
- wasm.getPublicWitness(retptr, ptr0, len0, addHeapObject(solved_witness));
651
- var r0 = getInt32Memory0()[retptr / 4 + 0];
652
- var r1 = getInt32Memory0()[retptr / 4 + 1];
653
- var r2 = getInt32Memory0()[retptr / 4 + 2];
654
- if (r2) {
655
- throw takeObject(r1);
656
- }
657
- return takeObject(r0);
658
- } finally {
659
- wasm.__wbindgen_add_to_stack_pointer(16);
660
- }
661
- }
662
-
663
- function handleError(f, args) {
664
- try {
665
- return f.apply(this, args);
666
- } catch (e) {
667
- wasm.__wbindgen_exn_store(addHeapObject(e));
668
- }
669
- }
670
- function __wbg_adapter_134(arg0, arg1, arg2, arg3, arg4) {
671
- wasm.wasm_bindgen__convert__closures__invoke3_mut__h1e7d8ac96c74bd35(arg0, arg1, addHeapObject(arg2), arg3, addHeapObject(arg4));
672
- }
673
-
674
- function __wbg_adapter_171(arg0, arg1, arg2, arg3) {
675
- wasm.wasm_bindgen__convert__closures__invoke2_mut__h188e918906ff9a40(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
676
- }
677
-
678
- /**
679
- * A struct representing a Trap
680
- */
681
- export class Trap {
682
-
683
- __destroy_into_raw() {
684
- const ptr = this.__wbg_ptr;
685
- this.__wbg_ptr = 0;
686
-
687
- return ptr;
688
- }
689
-
690
- free() {
691
- const ptr = this.__destroy_into_raw();
692
- wasm.__wbg_trap_free(ptr);
693
- }
694
- /**
695
- * A marker method to indicate that an object is an instance of the `Trap`
696
- * class.
697
- */
698
- static __wbg_wasmer_trap() {
699
- wasm.trap___wbg_wasmer_trap();
700
- }
701
- }
702
- /**
703
- */
704
- export class WasmBlackBoxFunctionSolver {
705
-
706
- static __wrap(ptr) {
707
- ptr = ptr >>> 0;
708
- const obj = Object.create(WasmBlackBoxFunctionSolver.prototype);
709
- obj.__wbg_ptr = ptr;
710
-
711
- return obj;
712
- }
713
-
714
- __destroy_into_raw() {
715
- const ptr = this.__wbg_ptr;
716
- this.__wbg_ptr = 0;
717
-
718
- return ptr;
719
- }
720
-
721
- free() {
722
- const ptr = this.__destroy_into_raw();
723
- wasm.__wbg_wasmblackboxfunctionsolver_free(ptr);
724
- }
725
- }
726
-
727
- async function __wbg_load(module, imports) {
728
- if (typeof Response === 'function' && module instanceof Response) {
729
- if (typeof WebAssembly.instantiateStreaming === 'function') {
730
- try {
731
- return await WebAssembly.instantiateStreaming(module, imports);
732
-
733
- } catch (e) {
734
- if (module.headers.get('Content-Type') != 'application/wasm') {
735
- console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
637
+ } catch (e) {
638
+ if (module.headers.get('Content-Type') != 'application/wasm') {
639
+ console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
736
640
 
737
641
  } else {
738
642
  throw e;
@@ -758,45 +662,6 @@ async function __wbg_load(module, imports) {
758
662
  function __wbg_get_imports() {
759
663
  const imports = {};
760
664
  imports.wbg = {};
761
- imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
762
- takeObject(arg0);
763
- };
764
- imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
765
- const ret = new Error(getStringFromWasm0(arg0, arg1));
766
- return addHeapObject(ret);
767
- };
768
- imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
769
- const ret = getObject(arg0);
770
- return addHeapObject(ret);
771
- };
772
- imports.wbg.__wbg_new_6f6c75f9324b78e8 = function() {
773
- const ret = new Map();
774
- return addHeapObject(ret);
775
- };
776
- imports.wbg.__wbindgen_number_new = function(arg0) {
777
- const ret = arg0;
778
- return addHeapObject(ret);
779
- };
780
- imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
781
- const ret = getStringFromWasm0(arg0, arg1);
782
- return addHeapObject(ret);
783
- };
784
- imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
785
- const obj = getObject(arg1);
786
- const ret = typeof(obj) === 'string' ? obj : undefined;
787
- var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
788
- var len1 = WASM_VECTOR_LEN;
789
- getInt32Memory0()[arg0 / 4 + 1] = len1;
790
- getInt32Memory0()[arg0 / 4 + 0] = ptr1;
791
- };
792
- imports.wbg.__wbg_wasmblackboxfunctionsolver_new = function(arg0) {
793
- const ret = WasmBlackBoxFunctionSolver.__wrap(arg0);
794
- return addHeapObject(ret);
795
- };
796
- imports.wbg.__wbg_constructor_81b34c49dcbdd2af = function(arg0) {
797
- const ret = new Error(takeObject(arg0));
798
- return addHeapObject(ret);
799
- };
800
665
  imports.wbg.__wbindgen_cb_drop = function(arg0) {
801
666
  const obj = takeObject(arg0).original;
802
667
  if (obj.cnt-- == 1) {
@@ -806,9 +671,8 @@ function __wbg_get_imports() {
806
671
  const ret = false;
807
672
  return ret;
808
673
  };
809
- imports.wbg.__wbindgen_is_undefined = function(arg0) {
810
- const ret = getObject(arg0) === undefined;
811
- return ret;
674
+ imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
675
+ takeObject(arg0);
812
676
  };
813
677
  imports.wbg.__wbindgen_number_get = function(arg0, arg1) {
814
678
  const obj = getObject(arg1);
@@ -816,6 +680,10 @@ function __wbg_get_imports() {
816
680
  getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret;
817
681
  getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
818
682
  };
683
+ imports.wbg.__wbg_constructor_971e67e66cc5bd6a = function(arg0) {
684
+ const ret = new Error(takeObject(arg0));
685
+ return addHeapObject(ret);
686
+ };
819
687
  imports.wbg.__wbindgen_is_array = function(arg0) {
820
688
  const ret = Array.isArray(getObject(arg0));
821
689
  return ret;
@@ -824,10 +692,30 @@ function __wbg_get_imports() {
824
692
  const ret = typeof(getObject(arg0)) === 'string';
825
693
  return ret;
826
694
  };
827
- imports.wbg.__wbg_new_ee5ac63ff3b0fa4d = function() {
695
+ imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
696
+ const ret = getStringFromWasm0(arg0, arg1);
697
+ return addHeapObject(ret);
698
+ };
699
+ imports.wbg.__wbg_new_f139361aad331bd0 = function() {
828
700
  const ret = new Array();
829
701
  return addHeapObject(ret);
830
702
  };
703
+ imports.wbg.__wbindgen_number_new = function(arg0) {
704
+ const ret = arg0;
705
+ return addHeapObject(ret);
706
+ };
707
+ imports.wbg.__wbg_new_193bac1dd2be232d = function() {
708
+ const ret = new Map();
709
+ return addHeapObject(ret);
710
+ };
711
+ imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
712
+ const obj = getObject(arg1);
713
+ const ret = typeof(obj) === 'string' ? obj : undefined;
714
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
715
+ var len1 = WASM_VECTOR_LEN;
716
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
717
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
718
+ };
831
719
  imports.wbg.__wbg_new_abda76e883ba8a5f = function() {
832
720
  const ret = new Error();
833
721
  return addHeapObject(ret);
@@ -850,53 +738,6 @@ function __wbg_get_imports() {
850
738
  wasm.__wbindgen_free(deferred0_0, deferred0_1);
851
739
  }
852
740
  };
853
- imports.wbg.__wbindgen_ge = function(arg0, arg1) {
854
- const ret = getObject(arg0) >= getObject(arg1);
855
- return ret;
856
- };
857
- imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
858
- const ret = BigInt.asUintN(64, arg0);
859
- return addHeapObject(ret);
860
- };
861
- imports.wbg.__wbindgen_shr = function(arg0, arg1) {
862
- const ret = getObject(arg0) >> getObject(arg1);
863
- return addHeapObject(ret);
864
- };
865
- imports.wbg.__wbindgen_jsval_eq = function(arg0, arg1) {
866
- const ret = getObject(arg0) === getObject(arg1);
867
- return ret;
868
- };
869
- imports.wbg.__wbindgen_is_bigint = function(arg0) {
870
- const ret = typeof(getObject(arg0)) === 'bigint';
871
- return ret;
872
- };
873
- imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) {
874
- const ret = arg0;
875
- return addHeapObject(ret);
876
- };
877
- imports.wbg.__wbindgen_bigint_from_u128 = function(arg0, arg1) {
878
- const ret = BigInt.asUintN(64, arg0) << BigInt(64) | BigInt.asUintN(64, arg1);
879
- return addHeapObject(ret);
880
- };
881
- imports.wbg.__wbindgen_is_object = function(arg0) {
882
- const val = getObject(arg0);
883
- const ret = typeof(val) === 'object' && val !== null;
884
- return ret;
885
- };
886
- imports.wbg.__wbindgen_is_function = function(arg0) {
887
- const ret = typeof(getObject(arg0)) === 'function';
888
- return ret;
889
- };
890
- imports.wbg.__wbg_instanceof_Global_f4b019d2b45e18ab = function(arg0) {
891
- let result;
892
- try {
893
- result = getObject(arg0) instanceof WebAssembly.Global;
894
- } catch {
895
- result = false;
896
- }
897
- const ret = result;
898
- return ret;
899
- };
900
741
  imports.wbg.__wbg_debug_e3f6a1578e6d45ca = function(arg0) {
901
742
  console.debug(getObject(arg0));
902
743
  };
@@ -921,36 +762,6 @@ function __wbg_get_imports() {
921
762
  imports.wbg.__wbg_warn_8342bfbc6028193a = function(arg0, arg1, arg2, arg3) {
922
763
  console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
923
764
  };
924
- imports.wbg.__wbg_crypto_c48a774b022d20ac = function(arg0) {
925
- const ret = getObject(arg0).crypto;
926
- return addHeapObject(ret);
927
- };
928
- imports.wbg.__wbg_process_298734cf255a885d = function(arg0) {
929
- const ret = getObject(arg0).process;
930
- return addHeapObject(ret);
931
- };
932
- imports.wbg.__wbg_versions_e2e78e134e3e5d01 = function(arg0) {
933
- const ret = getObject(arg0).versions;
934
- return addHeapObject(ret);
935
- };
936
- imports.wbg.__wbg_node_1cd7a5d853dbea79 = function(arg0) {
937
- const ret = getObject(arg0).node;
938
- return addHeapObject(ret);
939
- };
940
- imports.wbg.__wbg_msCrypto_bcb970640f50a1e8 = function(arg0) {
941
- const ret = getObject(arg0).msCrypto;
942
- return addHeapObject(ret);
943
- };
944
- imports.wbg.__wbg_require_8f08ceecec0f4fee = function() { return handleError(function () {
945
- const ret = module.require;
946
- return addHeapObject(ret);
947
- }, arguments) };
948
- imports.wbg.__wbg_randomFillSync_dc1e9a60c158336d = function() { return handleError(function (arg0, arg1) {
949
- getObject(arg0).randomFillSync(takeObject(arg1));
950
- }, arguments) };
951
- imports.wbg.__wbg_getRandomValues_37fa2ca9e4e07fab = function() { return handleError(function (arg0, arg1) {
952
- getObject(arg0).getRandomValues(getObject(arg1));
953
- }, arguments) };
954
765
  imports.wbg.__wbg_get_7303ed2ef026b2f5 = function(arg0, arg1) {
955
766
  const ret = getObject(arg0)[arg1 >>> 0];
956
767
  return addHeapObject(ret);
@@ -963,53 +774,10 @@ function __wbg_get_imports() {
963
774
  const ret = new Array();
964
775
  return addHeapObject(ret);
965
776
  };
966
- imports.wbg.__wbg_BigInt_9523742cb675bb6f = function(arg0) {
967
- const ret = BigInt(getObject(arg0));
968
- return addHeapObject(ret);
969
- };
970
- imports.wbg.__wbg_newnoargs_c9e6043b8ad84109 = function(arg0, arg1) {
971
- const ret = new Function(getStringFromWasm0(arg0, arg1));
972
- return addHeapObject(ret);
973
- };
974
777
  imports.wbg.__wbg_new_0f2b71ca2f2a6029 = function() {
975
778
  const ret = new Map();
976
779
  return addHeapObject(ret);
977
780
  };
978
- imports.wbg.__wbg_get_f53c921291c381bd = function() { return handleError(function (arg0, arg1) {
979
- const ret = Reflect.get(getObject(arg0), getObject(arg1));
980
- return addHeapObject(ret);
981
- }, arguments) };
982
- imports.wbg.__wbg_call_557a2f2deacc4912 = function() { return handleError(function (arg0, arg1) {
983
- const ret = getObject(arg0).call(getObject(arg1));
984
- return addHeapObject(ret);
985
- }, arguments) };
986
- imports.wbg.__wbg_new_2b6fea4ea03b1b95 = function() {
987
- const ret = new Object();
988
- return addHeapObject(ret);
989
- };
990
- imports.wbg.__wbg_self_742dd6eab3e9211e = function() { return handleError(function () {
991
- const ret = self.self;
992
- return addHeapObject(ret);
993
- }, arguments) };
994
- imports.wbg.__wbg_window_c409e731db53a0e2 = function() { return handleError(function () {
995
- const ret = window.window;
996
- return addHeapObject(ret);
997
- }, arguments) };
998
- imports.wbg.__wbg_globalThis_b70c095388441f2d = function() { return handleError(function () {
999
- const ret = globalThis.globalThis;
1000
- return addHeapObject(ret);
1001
- }, arguments) };
1002
- imports.wbg.__wbg_global_1c72617491ed7194 = function() { return handleError(function () {
1003
- const ret = global.global;
1004
- return addHeapObject(ret);
1005
- }, arguments) };
1006
- imports.wbg.__wbg_newwithlength_cd1db47a173e3944 = function(arg0) {
1007
- const ret = new Array(arg0 >>> 0);
1008
- return addHeapObject(ret);
1009
- };
1010
- imports.wbg.__wbg_set_b4da98d504ac6091 = function(arg0, arg1, arg2) {
1011
- getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
1012
- };
1013
781
  imports.wbg.__wbg_from_6bc98a09a0b58bb1 = function(arg0) {
1014
782
  const ret = Array.from(getObject(arg0));
1015
783
  return addHeapObject(ret);
@@ -1021,7 +789,7 @@ function __wbg_get_imports() {
1021
789
  const a = state0.a;
1022
790
  state0.a = 0;
1023
791
  try {
1024
- return __wbg_adapter_134(a, state0.b, arg0, arg1, arg2);
792
+ return __wbg_adapter_76(a, state0.b, arg0, arg1, arg2);
1025
793
  } finally {
1026
794
  state0.a = a;
1027
795
  }
@@ -1039,27 +807,6 @@ function __wbg_get_imports() {
1039
807
  const ret = getObject(arg0).reverse();
1040
808
  return addHeapObject(ret);
1041
809
  };
1042
- imports.wbg.__wbg_byteLength_1a59a59856fc656a = function(arg0) {
1043
- const ret = getObject(arg0).byteLength;
1044
- return ret;
1045
- };
1046
- imports.wbg.__wbg_toString_68dcf9fa017bbb08 = function(arg0, arg1, arg2) {
1047
- const ret = getObject(arg1).toString(arg2);
1048
- const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
1049
- const len1 = WASM_VECTOR_LEN;
1050
- getInt32Memory0()[arg0 / 4 + 1] = len1;
1051
- getInt32Memory0()[arg0 / 4 + 0] = ptr1;
1052
- };
1053
- imports.wbg.__wbg_instanceof_Error_fac23a8832b241da = function(arg0) {
1054
- let result;
1055
- try {
1056
- result = getObject(arg0) instanceof Error;
1057
- } catch {
1058
- result = false;
1059
- }
1060
- const ret = result;
1061
- return ret;
1062
- };
1063
810
  imports.wbg.__wbg_new_87297f22973157c8 = function(arg0, arg1) {
1064
811
  const ret = new Error(getStringFromWasm0(arg0, arg1));
1065
812
  return addHeapObject(ret);
@@ -1067,20 +814,6 @@ function __wbg_get_imports() {
1067
814
  imports.wbg.__wbg_setcause_394738aae0ce9341 = function(arg0, arg1) {
1068
815
  getObject(arg0).cause = getObject(arg1);
1069
816
  };
1070
- imports.wbg.__wbg_message_eab7d45ec69a2135 = function(arg0) {
1071
- const ret = getObject(arg0).message;
1072
- return addHeapObject(ret);
1073
- };
1074
- imports.wbg.__wbg_instanceof_Function_8e1bcaacb89c4438 = function(arg0) {
1075
- let result;
1076
- try {
1077
- result = getObject(arg0) instanceof Function;
1078
- } catch {
1079
- result = false;
1080
- }
1081
- const ret = result;
1082
- return ret;
1083
- };
1084
817
  imports.wbg.__wbg_call_587b30eea3e09332 = function() { return handleError(function (arg0, arg1, arg2) {
1085
818
  const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
1086
819
  return addHeapObject(ret);
@@ -1089,14 +822,6 @@ function __wbg_get_imports() {
1089
822
  const ret = getObject(arg0).call(getObject(arg1), getObject(arg2), getObject(arg3));
1090
823
  return addHeapObject(ret);
1091
824
  }, arguments) };
1092
- imports.wbg.__wbg_bind_7d5ce7224bedd5b8 = function(arg0, arg1, arg2) {
1093
- const ret = getObject(arg0).bind(getObject(arg1), getObject(arg2));
1094
- return addHeapObject(ret);
1095
- };
1096
- imports.wbg.__wbg_bind_f5218b29220675c3 = function(arg0, arg1, arg2, arg3) {
1097
- const ret = getObject(arg0).bind(getObject(arg1), getObject(arg2), getObject(arg3));
1098
- return addHeapObject(ret);
1099
- };
1100
825
  imports.wbg.__wbg_forEach_942772130a8d06a6 = function(arg0, arg1, arg2) {
1101
826
  try {
1102
827
  var state0 = {a: arg1, b: arg2};
@@ -1104,7 +829,7 @@ function __wbg_get_imports() {
1104
829
  const a = state0.a;
1105
830
  state0.a = 0;
1106
831
  try {
1107
- return __wbg_adapter_171(a, state0.b, arg0, arg1);
832
+ return __wbg_adapter_93(a, state0.b, arg0, arg1);
1108
833
  } finally {
1109
834
  state0.a = a;
1110
835
  }
@@ -1118,28 +843,10 @@ function __wbg_get_imports() {
1118
843
  const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
1119
844
  return addHeapObject(ret);
1120
845
  };
1121
- imports.wbg.__wbg_instanceof_Object_a9e9e5766628e8b5 = function(arg0) {
1122
- let result;
1123
- try {
1124
- result = getObject(arg0) instanceof Object;
1125
- } catch {
1126
- result = false;
1127
- }
1128
- const ret = result;
1129
- return ret;
1130
- };
1131
- imports.wbg.__wbg_constructor_f2623999a1f453eb = function(arg0) {
1132
- const ret = getObject(arg0).constructor;
1133
- return addHeapObject(ret);
1134
- };
1135
846
  imports.wbg.__wbg_fromEntries_d1b310956d20d858 = function() { return handleError(function (arg0) {
1136
847
  const ret = Object.fromEntries(getObject(arg0));
1137
848
  return addHeapObject(ret);
1138
849
  }, arguments) };
1139
- imports.wbg.__wbg_toString_e2b23ac99490a381 = function(arg0) {
1140
- const ret = getObject(arg0).toString();
1141
- return addHeapObject(ret);
1142
- };
1143
850
  imports.wbg.__wbg_values_099fd000c271c313 = function(arg0) {
1144
851
  const ret = Object.values(getObject(arg0));
1145
852
  return addHeapObject(ret);
@@ -1151,7 +858,7 @@ function __wbg_get_imports() {
1151
858
  const a = state0.a;
1152
859
  state0.a = 0;
1153
860
  try {
1154
- return __wbg_adapter_171(a, state0.b, arg0, arg1);
861
+ return __wbg_adapter_93(a, state0.b, arg0, arg1);
1155
862
  } finally {
1156
863
  state0.a = a;
1157
864
  }
@@ -1174,99 +881,14 @@ function __wbg_get_imports() {
1174
881
  const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
1175
882
  return addHeapObject(ret);
1176
883
  };
1177
- imports.wbg.__wbg_buffer_55ba7a6b1b92e2ac = function(arg0) {
1178
- const ret = getObject(arg0).buffer;
1179
- return addHeapObject(ret);
1180
- };
1181
- imports.wbg.__wbg_newwithbyteoffsetandlength_88d1d8be5df94b9b = function(arg0, arg1, arg2) {
1182
- const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
1183
- return addHeapObject(ret);
1184
- };
1185
- imports.wbg.__wbg_new_09938a7d020f049b = function(arg0) {
1186
- const ret = new Uint8Array(getObject(arg0));
1187
- return addHeapObject(ret);
1188
- };
1189
- imports.wbg.__wbg_set_3698e3ca519b3c3c = function(arg0, arg1, arg2) {
1190
- getObject(arg0).set(getObject(arg1), arg2 >>> 0);
1191
- };
1192
- imports.wbg.__wbg_length_0aab7ffd65ad19ed = function(arg0) {
1193
- const ret = getObject(arg0).length;
1194
- return ret;
1195
- };
1196
- imports.wbg.__wbg_newwithlength_89eeca401d8918c2 = function(arg0) {
1197
- const ret = new Uint8Array(arg0 >>> 0);
1198
- return addHeapObject(ret);
1199
- };
1200
- imports.wbg.__wbg_subarray_d82be056deb4ad27 = function(arg0, arg1, arg2) {
1201
- const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
1202
- return addHeapObject(ret);
1203
- };
1204
884
  imports.wbg.__wbg_parse_76a8a18ca3f8730b = function() { return handleError(function (arg0, arg1) {
1205
885
  const ret = JSON.parse(getStringFromWasm0(arg0, arg1));
1206
886
  return addHeapObject(ret);
1207
887
  }, arguments) };
1208
- imports.wbg.__wbg_compile_eefe73dfb19bff3d = function(arg0) {
1209
- const ret = WebAssembly.compile(getObject(arg0));
1210
- return addHeapObject(ret);
1211
- };
1212
- imports.wbg.__wbg_instantiate_e61ee50cd947cd36 = function(arg0, arg1) {
1213
- const ret = WebAssembly.instantiate(getObject(arg0), getObject(arg1));
1214
- return addHeapObject(ret);
1215
- };
1216
- imports.wbg.__wbg_exports_311291a1333429a3 = function(arg0) {
1217
- const ret = getObject(arg0).exports;
1218
- return addHeapObject(ret);
1219
- };
1220
- imports.wbg.__wbg_exports_12505982ae149cb0 = function(arg0) {
1221
- const ret = WebAssembly.Module.exports(getObject(arg0));
1222
- return addHeapObject(ret);
1223
- };
1224
- imports.wbg.__wbg_instanceof_Table_b0af5234a12a19f9 = function(arg0) {
1225
- let result;
1226
- try {
1227
- result = getObject(arg0) instanceof WebAssembly.Table;
1228
- } catch {
1229
- result = false;
1230
- }
1231
- const ret = result;
1232
- return ret;
1233
- };
1234
- imports.wbg.__wbg_get_b5def15f90c3e295 = function() { return handleError(function (arg0, arg1) {
1235
- const ret = getObject(arg0).get(arg1 >>> 0);
1236
- return addHeapObject(ret);
1237
- }, arguments) };
1238
- imports.wbg.__wbg_instanceof_Memory_331618ccd3fa615d = function(arg0) {
1239
- let result;
1240
- try {
1241
- result = getObject(arg0) instanceof WebAssembly.Memory;
1242
- } catch {
1243
- result = false;
1244
- }
1245
- const ret = result;
1246
- return ret;
1247
- };
1248
- imports.wbg.__wbg_new_e40873b83efb2dcd = function() { return handleError(function (arg0) {
1249
- const ret = new WebAssembly.Memory(getObject(arg0));
1250
- return addHeapObject(ret);
1251
- }, arguments) };
1252
- imports.wbg.__wbg_apply_46ea2bb0ad750196 = function() { return handleError(function (arg0, arg1, arg2) {
1253
- const ret = Reflect.apply(getObject(arg0), getObject(arg1), getObject(arg2));
1254
- return addHeapObject(ret);
1255
- }, arguments) };
1256
- imports.wbg.__wbg_getPrototypeOf_7dc7a2328db2bc0e = function() { return handleError(function (arg0) {
1257
- const ret = Reflect.getPrototypeOf(getObject(arg0));
1258
- return addHeapObject(ret);
1259
- }, arguments) };
1260
888
  imports.wbg.__wbg_set_07da13cc24b69217 = function() { return handleError(function (arg0, arg1, arg2) {
1261
889
  const ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2));
1262
890
  return ret;
1263
891
  }, arguments) };
1264
- imports.wbg.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) {
1265
- const v = getObject(arg1);
1266
- const ret = typeof(v) === 'bigint' ? v : undefined;
1267
- getBigInt64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? BigInt(0) : ret;
1268
- getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
1269
- };
1270
892
  imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
1271
893
  const ret = debugString(getObject(arg1));
1272
894
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
@@ -1277,16 +899,8 @@ function __wbg_get_imports() {
1277
899
  imports.wbg.__wbindgen_throw = function(arg0, arg1) {
1278
900
  throw new Error(getStringFromWasm0(arg0, arg1));
1279
901
  };
1280
- imports.wbg.__wbindgen_memory = function() {
1281
- const ret = wasm.memory;
1282
- return addHeapObject(ret);
1283
- };
1284
- imports.wbg.__wbindgen_function_table = function() {
1285
- const ret = wasm.__wbindgen_export_2;
1286
- return addHeapObject(ret);
1287
- };
1288
- imports.wbg.__wbindgen_closure_wrapper2147 = function(arg0, arg1, arg2) {
1289
- const ret = makeMutClosure(arg0, arg1, 720, __wbg_adapter_52);
902
+ imports.wbg.__wbindgen_closure_wrapper760 = function(arg0, arg1, arg2) {
903
+ const ret = makeMutClosure(arg0, arg1, 256, __wbg_adapter_22);
1290
904
  return addHeapObject(ret);
1291
905
  };
1292
906
 
@@ -1300,7 +914,6 @@ function __wbg_init_memory(imports, maybe_memory) {
1300
914
  function __wbg_finalize_init(instance, module) {
1301
915
  wasm = instance.exports;
1302
916
  __wbg_init.__wbindgen_wasm_module = module;
1303
- cachedBigInt64Memory0 = null;
1304
917
  cachedFloat64Memory0 = null;
1305
918
  cachedInt32Memory0 = null;
1306
919
  cachedUint8Memory0 = null;