porffor 0.40.5 → 0.41.1

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.
@@ -13,7 +13,7 @@ export const __Porffor_object_underlying = (obj: any): any => {
13
13
  }
14
14
 
15
15
  if (Porffor.fastAnd(t > 0x05, t != Porffor.TYPES.undefined)) {
16
- let idx: i32 = underlyingKeys.indexOf(obj);
16
+ let idx: i32 = Porffor.array.fastIndexOf(underlyingKeys, obj);
17
17
  if (idx == -1) {
18
18
  const underlying: object = {};
19
19
 
@@ -68,13 +68,6 @@ export const __Array_from = (arg: any, mapFn: any): any[] => {
68
68
  return out;
69
69
  };
70
70
 
71
- export const __Porffor_array_fastPush = (arr: any[], el: any): i32 => {
72
- let len: i32 = arr.length;
73
- arr[len] = el;
74
- arr.length = ++len;
75
- return len;
76
- };
77
-
78
71
  export const __Array_prototype_push = (_this: any[], ...items: any[]) => {
79
72
  let len: i32 = _this.length;
80
73
  const itemsLen: i32 = items.length;
@@ -871,4 +864,21 @@ export const __Array_prototype_flat = (_this: any[], _depth: any) => {
871
864
  out.length = j;
872
865
 
873
866
  return out;
867
+ };
868
+
869
+
870
+ export const __Porffor_array_fastPush = (arr: any[], el: any): i32 => {
871
+ let len: i32 = arr.length;
872
+ arr[len] = el;
873
+ arr.length = ++len;
874
+ return len;
875
+ };
876
+
877
+ export const __Porffor_array_fastIndexOf = (arr: any[], el: any): i32 => {
878
+ const len: i32 = arr.length;
879
+ for (let i: i32 = 0; i < len; i++) {
880
+ if (arr[i] === el) return i;
881
+ }
882
+
883
+ return -1;
874
884
  };
@@ -2,8 +2,6 @@ export default () => {
2
2
  let out = '';
3
3
 
4
4
  const error = name => out += `export const ${name} = function (message: any) {
5
- new.target; // trick compiler into allowing as constructor
6
-
7
5
  const _empty: bytestring = '';
8
6
  if (message === undefined) message = _empty;
9
7
  else message = ecma262.ToString(message);
@@ -35,6 +35,7 @@ type PorfforGlobal = {
35
35
 
36
36
  array: {
37
37
  fastPush(arr: any[], el: any): i32;
38
+ fastIndexOf(arr: any[], el: any): i32;
38
39
  }
39
40
 
40
41
  arraybuffer: {
@@ -38,7 +38,7 @@ export const __ecma262_IsPromise = (x: any): boolean => {
38
38
  // https://tc39.es/ecma262/#sec-fulfillpromise
39
39
  export const __ecma262_FulfillPromise = (promise: any[], value: any): void => {
40
40
  // 1. Assert: The value of promise.[[PromiseState]] is pending.
41
- // todo
41
+ if (promise[1] != 0) return;
42
42
 
43
43
  // 2. Let reactions be promise.[[PromiseFulfillReactions]].
44
44
  const reactions: any[] = promise[2]; // fulfillReactions
@@ -65,7 +65,7 @@ export const __ecma262_FulfillPromise = (promise: any[], value: any): void => {
65
65
  // https://tc39.es/ecma262/#sec-rejectpromise
66
66
  export const __ecma262_RejectPromise = (promise: any[], reason: any): void => {
67
67
  // 1. Assert: The value of promise.[[PromiseState]] is pending.
68
- // todo
68
+ if (promise[1] != 0) return;
69
69
 
70
70
  // 2. Let reactions be promise.[[PromiseRejectReactions]].
71
71
  const reactions: any[] = promise[3]; // rejectReactions
@@ -411,6 +411,57 @@ export const __Promise_allSettled = (promises: any): Promise => {
411
411
  });
412
412
  };
413
413
 
414
+ export const __Promise_any = (promises: any): Promise => {
415
+ // todo: use new AggregateError(_allOut, msg) instead of new AggregateError(msg) when supported
416
+ _allPromises = promises;
417
+
418
+ return new Promise((res, rej) => {
419
+ _allRes = res, _allRej = rej;
420
+
421
+ const arr: any[] = Porffor.allocate();
422
+ _allOut = arr; // list of rejections
423
+ _allLen = 0;
424
+
425
+ for (const x of _allPromises) {
426
+ _allLen++;
427
+ if (__ecma262_IsPromise(x)) {
428
+ x.then(r => {
429
+ _allRes(r);
430
+ }, r => {
431
+ if (Porffor.array.fastPush(_allOut, r) == _allLen) _allRes(new AggregateError());
432
+ });
433
+ } else {
434
+ return _allRes(x);
435
+ }
436
+ }
437
+
438
+ if (_allLen == 0) {
439
+ // empty iterable: immediately reject
440
+ _allRej(new AggregateError());
441
+ }
442
+ });
443
+ };
444
+
445
+ export const __Promise_race = (promises: any): Promise => {
446
+ _allPromises = promises;
447
+
448
+ return new Promise((res, rej) => {
449
+ _allRes = res, _allRej = rej;
450
+
451
+ for (const x of _allPromises) {
452
+ if (__ecma262_IsPromise(x)) {
453
+ x.then(r => {
454
+ _allRes(r);
455
+ }, r => {
456
+ _allRej(r);
457
+ });
458
+ } else {
459
+ return _allRes(x);
460
+ }
461
+ }
462
+ });
463
+ };
464
+
414
465
 
415
466
  export const __Promise_prototype_toString = (_this: any) => {
416
467
  const str: bytestring = '[object Promise]';
@@ -244,6 +244,10 @@ export default function({ builtinFuncs }, Prefs) {
244
244
  object('Reflect', autoFuncs('Reflect'));
245
245
  object('Object', autoFuncs('Object'));
246
246
  object('JSON', autoFuncs('JSON'));
247
+ object('Promise', autoFuncs('Promise'));
248
+ object('Array', autoFuncs('Array'));
249
+ object('Symbol', autoFuncs('Symbol'));
250
+ object('Date', autoFuncs('Date'));
247
251
 
248
252
 
249
253
  // these technically not spec compliant as it should be classes or non-enumerable but eh
@@ -3,11 +3,12 @@ import { number } from './embedding.js';
3
3
 
4
4
  export const BuiltinFuncs = function() {
5
5
  this.__Porffor_object_underlying = {
6
- wasm:(_,{allocPage,glbl,builtin})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,39],[102],[32,2],[68,48],[101],[113],[4,64],[32,0],[34,3],[65,7],[15],[11],[32,2],[68,5],[100],[32,2],[68,128],[98],[113],[4,64],...glbl(35,'underlyingKeys',124),[33,5],[65,208,0],[33,6],[32,5],[32,6],[32,0],[32,1],[68,0],[65,128,1],[16,builtin('__Array_prototype_indexOf')],[33,7],[34,4],[68,-1],[97],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,8],[32,2],[68,6],[97],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_flags')],[183],[34,9],[68,2],[16,builtin('f64_&')],[252,3],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,10],[65,7],[33,11],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key1','i8'),124),[33,12],[32,8],[252,2],[65,7],[32,12],[252,2],[65,195,1],[32,10],[32,11],[65,8],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key2','i8'),124),[33,13],[32,10],[252,2],[32,11],[32,13],[252,2],[65,195,1],[32,0],[32,1],[65,10],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[11],[11],[32,2],[68,80],[97],[4,64],[32,0],[34,14],[252,3],[40,1,0],[184],[33,15],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key3','i8'),124),[33,16],[32,8],[252,2],[65,7],[32,16],[252,2],[65,195,1],[32,15],[65,1],[65,8],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[68,0],[33,17],[3,64],[32,17],[32,15],[99],[4,64],[32,8],[252,2],[65,7],[32,17],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[252,2],[32,7],[32,14],[33,18],[32,17],[34,19],[252,3],[65,9],[108],[32,18],[252,3],[106],[34,20],[43,0,4],[32,20],[45,0,12],[34,7],[65,14],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[32,17],[68,1],[160],[33,17],[12,1],[11],[11],[11],[32,2],[68,67],[97],[4,64],[32,0],[34,21],[252,3],[40,1,0],[184],[33,15],[32,16],[252,3],[34,22],[65,6],[54,1,0],[32,22],[65,236,0],[58,0,4],[32,22],[65,229,0],[58,0,5],[32,22],[65,238,0],[58,0,6],[32,22],[65,231,0],[58,0,7],[32,22],[65,244,0],[58,0,8],[32,22],[65,232,0],[58,0,9],[32,22],[184],[33,16],[32,8],[252,2],[65,7],[32,12],[252,2],[65,195,1],[32,15],[65,1],[65,0],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[68,0],[33,17],[3,64],[32,17],[32,15],[99],[4,64],[32,8],[252,2],[65,7],[32,17],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[252,2],[32,7],[32,21],[33,18],[32,17],[33,19],[16,builtin('__Porffor_allocate')],[34,23],[65,1],[54,0,0],[32,23],[32,19],[252,3],[65,2],[108],[32,18],[252,3],[106],[47,0,4],[59,0,4],[32,23],[184],[65,195,0],[33,7],[65,195,0],[65,4],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[32,17],[68,1],[160],[33,17],[12,1],[11],[11],[32,8],[252,2],[65,7],[16,builtin('__Porffor_object_preventExtensions')],[33,7],[183],[26],[11],[32,2],[68,195],[97],[4,64],[32,0],[34,21],[252,3],[40,1,0],[184],[33,15],[32,16],[252,3],[34,22],[65,6],[54,1,0],[32,22],[65,236,0],[58,0,4],[32,22],[65,229,0],[58,0,5],[32,22],[65,238,0],[58,0,6],[32,22],[65,231,0],[58,0,7],[32,22],[65,244,0],[58,0,8],[32,22],[65,232,0],[58,0,9],[32,22],[184],[33,16],[32,8],[252,2],[65,7],[32,12],[252,2],[65,195,1],[32,15],[65,1],[65,0],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[68,0],[33,17],[3,64],[32,17],[32,15],[99],[4,64],[32,8],[252,2],[65,7],[32,17],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[252,2],[32,7],[32,21],[33,18],[32,17],[33,19],[16,builtin('__Porffor_allocate')],[34,23],[65,1],[54,0,0],[32,23],[32,19],[252,3],[32,18],[252,3],[106],[45,0,4],[58,0,4],[32,23],[184],[65,195,1],[33,7],[65,195,1],[65,4],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[32,17],[68,1],[160],[33,17],[12,1],[11],[11],[32,8],[252,2],[65,7],[16,builtin('__Porffor_object_preventExtensions')],[33,7],[183],[26],[11],...glbl(35,'underlyingVals',124),[65,208,0],[32,8],[65,7],[16,builtin('__Porffor_array_fastPush')],[33,7],[26],...glbl(35,'underlyingKeys',124),[65,208,0],[32,0],[32,1],[16,builtin('__Porffor_array_fastPush')],[33,7],[68,1],[161],[33,4],[11],...glbl(35,'underlyingVals',124),[33,18],[32,4],[34,19],[252,3],[65,9],[108],[32,18],[252,3],[106],[34,20],[43,0,4],[32,20],[45,0,12],[34,7],[15],[11],[32,0],[32,1],[15]],
6
+ wasm:(_,{t,allocPage,glbl,builtin,internalThrow})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,39],[102],[32,2],[68,48],[101],[113],[4,64],[32,0],[34,3],[65,7],[15],[11],[32,2],[68,5],[100],[32,2],[68,128],[98],[113],[4,64],...internalThrow(_,'ReferenceError',`Porffor.array.fastIndexOf is not defined`),[68,0],[33,18],[65,128,1],[33,19],[2,124],...t([6],()=>[[32,19],[65,6],[70],[4,64],...glbl(35,'underlyingKeys',124),[65,208,0],[33,5],[33,6],[32,0],[32,1],[33,7],[33,8],[68,0],[65,128,1],[33,9],[33,10],[68,0],[65,128,1],[33,11],[33,12],[68,0],[65,128,1],[33,13],[33,14],[32,18],[252,3],[34,15],[65,192,0],[108],[65,4],[106],[45,0,128,128,8,"read func lut"],[33,16],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,15],[65,192,0],[108],[47,0,128,128,8,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[17,2,0,"no_type_return"],[5],[32,15],[17,0,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[17,2,0],[33,17],[5],[32,15],[17,0,0],[33,17],[11],[11],[12,5],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,15],[17,3,0,"no_type_return"],[5],[32,6],[32,5],[32,15],[17,1,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,15],[17,3,0],[33,17],[5],[32,6],[32,5],[32,15],[17,1,0],[33,17],[11],[11],[12,4],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,15],[17,4,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,15],[17,2,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,15],[17,4,0],[33,17],[5],[32,6],[32,5],[32,8],[32,7],[32,15],[17,2,0],[33,17],[11],[11],[12,3],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,5,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,3,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,5,0],[33,17],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,3,0],[33,17],[11],[11],[12,2],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,6,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,4,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,6,0],[33,17],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,4,0],[33,17],[11],[11],[12,1],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,7,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,5,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,7,0],[33,17],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,5,0],[33,17],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Porffor.array.fastIndexOf is not a function`),[68,0],[11],[34,4],[68,-1],[97],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,20],[32,2],[68,6],[97],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_flags')],[183],[34,21],[68,2],[16,builtin('f64_&')],[252,3],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,22],[65,7],[33,23],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key1','i8'),124),[33,24],[32,20],[252,2],[65,7],[32,24],[252,2],[65,195,1],[32,22],[32,23],[65,8],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,17],[183],[26],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key2','i8'),124),[33,25],[32,22],[252,2],[32,23],[32,25],[252,2],[65,195,1],[32,0],[32,1],[65,10],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,17],[183],[26],[11],[11],[32,2],[68,80],[97],[4,64],[32,0],[34,26],[252,3],[40,1,0],[184],[33,27],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key3','i8'),124),[33,28],[32,20],[252,2],[65,7],[32,28],[252,2],[65,195,1],[32,27],[65,1],[65,8],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,17],[183],[26],[68,0],[33,29],[3,64],[32,29],[32,27],[99],[4,64],[32,20],[252,2],[65,7],[32,29],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,17],[252,2],[32,17],[32,26],[33,30],[32,29],[34,31],[252,3],[65,9],[108],[32,30],[252,3],[106],[34,32],[43,0,4],[32,32],[45,0,12],[34,17],[65,14],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,17],[183],[26],[32,29],[68,1],[160],[33,29],[12,1],[11],[11],[11],[32,2],[68,67],[97],[4,64],[32,0],[34,33],[252,3],[40,1,0],[184],[33,27],[32,28],[252,3],[34,34],[65,6],[54,1,0],[32,34],[65,236,0],[58,0,4],[32,34],[65,229,0],[58,0,5],[32,34],[65,238,0],[58,0,6],[32,34],[65,231,0],[58,0,7],[32,34],[65,244,0],[58,0,8],[32,34],[65,232,0],[58,0,9],[32,34],[184],[33,28],[32,20],[252,2],[65,7],[32,24],[252,2],[65,195,1],[32,27],[65,1],[65,0],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,17],[183],[26],[68,0],[33,29],[3,64],[32,29],[32,27],[99],[4,64],[32,20],[252,2],[65,7],[32,29],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,17],[252,2],[32,17],[32,33],[33,30],[32,29],[33,31],[16,builtin('__Porffor_allocate')],[34,35],[65,1],[54,0,0],[32,35],[32,31],[252,3],[65,2],[108],[32,30],[252,3],[106],[47,0,4],[59,0,4],[32,35],[184],[65,195,0],[33,17],[65,195,0],[65,4],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,17],[183],[26],[32,29],[68,1],[160],[33,29],[12,1],[11],[11],[32,20],[252,2],[65,7],[16,builtin('__Porffor_object_preventExtensions')],[33,17],[183],[26],[11],[32,2],[68,195],[97],[4,64],[32,0],[34,33],[252,3],[40,1,0],[184],[33,27],[32,28],[252,3],[34,34],[65,6],[54,1,0],[32,34],[65,236,0],[58,0,4],[32,34],[65,229,0],[58,0,5],[32,34],[65,238,0],[58,0,6],[32,34],[65,231,0],[58,0,7],[32,34],[65,244,0],[58,0,8],[32,34],[65,232,0],[58,0,9],[32,34],[184],[33,28],[32,20],[252,2],[65,7],[32,24],[252,2],[65,195,1],[32,27],[65,1],[65,0],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,17],[183],[26],[68,0],[33,29],[3,64],[32,29],[32,27],[99],[4,64],[32,20],[252,2],[65,7],[32,29],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,17],[252,2],[32,17],[32,33],[33,30],[32,29],[33,31],[16,builtin('__Porffor_allocate')],[34,35],[65,1],[54,0,0],[32,35],[32,31],[252,3],[32,30],[252,3],[106],[45,0,4],[58,0,4],[32,35],[184],[65,195,1],[33,17],[65,195,1],[65,4],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,17],[183],[26],[32,29],[68,1],[160],[33,29],[12,1],[11],[11],[32,20],[252,2],[65,7],[16,builtin('__Porffor_object_preventExtensions')],[33,17],[183],[26],[11],...glbl(35,'underlyingVals',124),[65,208,0],[32,20],[65,7],[16,builtin('__Porffor_array_fastPush')],[33,17],[26],...glbl(35,'underlyingKeys',124),[65,208,0],[32,0],[32,1],[16,builtin('__Porffor_array_fastPush')],[33,17],[68,1],[161],[33,4],[11],...glbl(35,'underlyingVals',124),[33,30],[32,4],[34,31],[252,3],[65,9],[108],[32,30],[252,3],[106],[34,32],[43,0,4],[32,32],[45,0,12],[34,17],[15],[11],[32,0],[32,1],[15]],
7
7
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
8
- locals:[124,124,124,124,127,127,124,124,124,127,124,124,124,124,124,124,124,124,127,124,127,127],localNames:["obj","obj#type","t","remap","idx","#proto_target","#proto_target#type","#last_type","underlying","flags","proto","proto#type","key1","key2","arr","len","key3","i","#member_obj","#member_prop","#loadArray_offset","str","#makearray_pointer_tmp","#member_allocd"],
8
+ locals:[124,124,124,127,124,127,124,127,124,127,124,127,124,127,127,127,124,127,124,124,124,127,124,124,124,124,124,124,124,124,127,124,127,127],localNames:["obj","obj#type","t","remap","idx","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp1","underlying","flags","proto","proto#type","key1","key2","arr","len","key3","i","#member_obj","#member_prop","#loadArray_offset","str","#makearray_pointer_tmp","#member_allocd"],
9
9
  usedTypes:[7,80,195,67],
10
10
  globalInits:{underlyingKeys:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingKeys','f64'),124),...glbl(36,'underlyingKeys',124),...glbl(35,'underlyingKeys',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],underlyingVals:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingVals','f64'),124),...glbl(36,'underlyingVals',124),...glbl(35,'underlyingVals',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},data:{"bytestring: __Porffor_object_underlying/key1":[9,0,0,0,112,114,111,116,111,116,121,112,101],"bytestring: __Porffor_object_underlying/key2":[11,0,0,0,99,111,110,115,116,114,117,99,116,111,114],"bytestring: __Porffor_object_underlying/key3":[6,0,0,0,108,101,110,103,116,104]},
11
+ table:1,
11
12
  };
12
13
  this.__Porffor_strcmp = {
13
14
  wasm:()=>[[32,0],[32,2],[70],[4,64],[65,1],[65,2],[15],[11],[32,0],[40,0,0],[33,4],[32,2],[40,0,0],[33,5],[32,4],[32,5],[71],[4,64],[65,0],[65,2],[15],[11],[32,1],[65,195,1],[70],[4,64],[32,3],[65,195,1],[70],[4,64],[32,0],[65,28],[107],[33,6],[32,2],[65,28],[107],[33,7],[32,0],[65,4],[107],[33,8],[32,2],[65,4],[107],[33,9],[32,4],[65,32],[78],[4,64],[3,64],[32,6],[32,4],[106],[253,0,0,0],[32,7],[32,4],[106],[253,0,0,0],[253,81],[32,6],[32,4],[106],[253,0,0,16],[32,7],[32,4],[106],[253,0,0,16],[253,81],[253,80],[253,83],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,32],[107],[34,4],[65,32],[78],[13,0],[11],[11],[32,4],[65,8],[78],[4,64],[3,64],[32,8],[32,4],[106],[41,0,0],[32,9],[32,4],[106],[41,0,0],[82],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,8],[107],[34,4],[65,8],[78],[13,0],[11],[11],[32,4],[65,2],[78],[4,64],[3,64],[32,0],[32,4],[106],[47,0,2],[32,2],[32,4],[106],[47,0,2],[71],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,2],[107],[34,4],[65,2],[78],[13,0],[11],[11],[32,4],[65,1],[70],[4,64],[32,0],[45,0,4],[32,2],[45,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[11],[65,1],[65,2],[15],[5],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[106],[45,0,4],[32,2],[32,10],[65,2],[108],[106],[47,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[11],[5],[32,3],[65,195,1],[70],[4,64],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[65,2],[108],[106],[47,0,4],[32,2],[32,10],[106],[45,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[5],[32,0],[65,4],[107],[33,11],[32,2],[65,4],[107],[33,12],[3,64],[32,11],[32,4],[65,2],[108],[106],[41,0,0],[32,12],[32,4],[65,2],[108],[106],[41,0,0],[82],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,4],[107],[34,4],[65,4],[78],[13,0],[11],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[65,2],[108],[106],[47,0,4],[32,2],[32,10],[65,2],[108],[106],[47,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[11],[11],[65,0],[65,128,1],[15]],
@@ -347,12 +348,6 @@ locals:[124,124,124,127,124,127,124,124,127,127,127,127,127,124,127,124,127,124,
347
348
  usedTypes:[80,67,195],
348
349
  table:1,
349
350
  };
350
- this.__Porffor_array_fastPush = {
351
- wasm:()=>[[32,0],[252,3],[40,1,0],[184],[33,4],[32,0],[33,7],[32,4],[33,8],[32,7],[252,3],[32,8],[252,3],[65,9],[108],[106],[34,6],[32,2],[34,5],[57,0,4],[32,6],[32,3],[58,0,12],[32,0],[252,3],[34,10],[32,4],[68,1],[160],[34,4],[34,9],[252,3],[54,1,0],[32,4],[65,1],[15]],
352
- params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
353
- locals:[124,124,127,124,124,124,127],localNames:["arr","arr#type","el","el#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","__length_setter_tmp","__member_setter_ptr_tmp"],
354
- usedTypes:[80],
355
- };
356
351
  this.__Array_prototype_push = {
357
352
  wasm:()=>[[32,0],[252,3],[40,1,0],[184],[33,4],[32,2],[252,3],[40,1,0],[184],[33,5],[68,0],[33,6],[3,64],[32,6],[32,5],[99],[4,64],[32,0],[33,9],[32,6],[32,4],[160],[33,10],[32,9],[252,3],[32,10],[252,3],[65,9],[108],[106],[34,8],[32,2],[33,9],[32,6],[34,11],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,12],[34,7],[57,0,4],[32,8],[32,12],[58,0,12],[32,6],[68,1],[160],[33,6],[12,1],[11],[11],[32,0],[252,3],[34,15],[32,4],[32,5],[160],[34,14],[252,3],[54,1,0],[32,14],[65,1],[15]],
358
353
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
@@ -580,6 +575,18 @@ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
580
575
  locals:[124,127,124,124,124,124,124,127,124,124,127,127,127,127,127,124,127,124,127,124,127,124,127,127,124,127],localNames:["_this","_this#type","_depth","_depth#type","depth","#last_type","out","len","i","j","x","x#type","#member_obj","#member_prop","#loadArray_offset","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","y","y#type","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign","#typeswitch_tmp1","#forof_allocd","__length_setter_tmp","__member_setter_ptr_tmp"],
581
576
  usedTypes:[80,67,195],
582
577
  };
578
+ this.__Porffor_array_fastPush = {
579
+ wasm:()=>[[32,0],[252,3],[40,1,0],[184],[33,4],[32,0],[33,7],[32,4],[33,8],[32,7],[252,3],[32,8],[252,3],[65,9],[108],[106],[34,6],[32,2],[34,5],[57,0,4],[32,6],[32,3],[58,0,12],[32,0],[252,3],[34,10],[32,4],[68,1],[160],[34,4],[34,9],[252,3],[54,1,0],[32,4],[65,1],[15]],
580
+ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
581
+ locals:[124,124,127,124,124,124,127],localNames:["arr","arr#type","el","el#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","__length_setter_tmp","__member_setter_ptr_tmp"],
582
+ usedTypes:[80],
583
+ };
584
+ this.__Porffor_array_fastIndexOf = {
585
+ wasm:(_,{builtin})=>[[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[2,127],[32,0],[33,6],[32,5],[34,7],[252,3],[65,9],[108],[32,6],[252,3],[106],[34,9],[43,0,4],[32,9],[45,0,12],[33,8],[34,10],[32,2],[34,11],[32,8],[65,128,1],[114],[65,195,1],[70],[32,3],[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,10],[32,8],[32,11],[32,3],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[12,1],[11],[97],[11],[32,8],[65,128,1],[114],[32,3],[65,128,1],[114],[70],[113],[4,64],[32,5],[65,1],[15],[11],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[68,-1],[65,1],[15]],
586
+ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
587
+ locals:[124,124,124,124,127,127,124,124],localNames:["arr","arr#type","el","el#type","len","i","#member_obj","#member_prop","#last_type","#loadArray_offset","__tmpop_left","__tmpop_right"],
588
+ usedTypes:[80],
589
+ };
583
590
  this.__ArrayBuffer_isView = {
584
591
  wasm:()=>[[32,1],[184],[34,2],[68,23],[97],[32,2],[68,88],[102],[32,2],[68,96],[101],[113],[114],[4,64],[68,1],[65,2],[15],[11],[68,0],[65,2],[15]],
585
592
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
@@ -2043,15 +2050,15 @@ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2043
2050
  locals:[],localNames:["x","x#type"],
2044
2051
  };
2045
2052
  this.__ecma262_FulfillPromise = {
2046
- wasm:(_,{builtin})=>[[32,0],[33,5],[68,2],[34,6],[252,3],[65,9],[108],[32,5],[252,3],[106],[34,8],[43,0,4],[32,8],[45,0,12],[33,7],[33,4],[32,0],[33,5],[68,0],[33,11],[32,5],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[32,2],[34,9],[57,0,4],[32,10],[32,3],[58,0,12],[32,0],[33,5],[68,2],[33,11],[32,5],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,5],[68,3],[33,11],[32,5],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,5],[68,1],[33,11],[32,5],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,1],[34,9],[57,0,4],[32,10],[65,1],[58,0,12],[32,4],[65,208,0],[32,2],[32,3],[16,builtin('__ecma262_TriggerPromiseReactions')],[33,7],[26],[68,0],[65,128,1],[15]],
2053
+ wasm:(_,{builtin})=>[[32,0],[33,4],[68,1],[34,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,7],[43,0,4],[32,7],[45,0,12],[33,6],[68,0],[98],[4,64],[68,0],[65,128,1],[15],[11],[32,0],[33,4],[68,2],[34,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,7],[43,0,4],[32,7],[45,0,12],[33,6],[33,8],[32,0],[33,4],[68,0],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[32,2],[34,9],[57,0,4],[32,10],[32,3],[58,0,12],[32,0],[33,4],[68,2],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,4],[68,3],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,4],[68,1],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,1],[34,9],[57,0,4],[32,10],[65,1],[58,0,12],[32,8],[65,208,0],[32,2],[32,3],[16,builtin('__ecma262_TriggerPromiseReactions')],[33,6],[26],[68,0],[65,128,1],[15]],
2047
2054
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2048
- locals:[124,124,124,127,127,124,127,124],localNames:["promise","promise#type","value","value#type","reactions","#member_obj","#member_prop","#last_type","#loadArray_offset","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
2055
+ locals:[124,124,127,127,124,124,127,124],localNames:["promise","promise#type","value","value#type","#member_obj","#member_prop","#last_type","#loadArray_offset","reactions","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
2049
2056
  usedTypes:[80],
2050
2057
  };
2051
2058
  this.__ecma262_RejectPromise = {
2052
- wasm:(_,{builtin})=>[[32,0],[33,5],[68,3],[34,6],[252,3],[65,9],[108],[32,5],[252,3],[106],[34,8],[43,0,4],[32,8],[45,0,12],[33,7],[33,4],[32,0],[33,5],[68,0],[33,11],[32,5],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[32,2],[34,9],[57,0,4],[32,10],[32,3],[58,0,12],[32,0],[33,5],[68,2],[33,11],[32,5],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,5],[68,3],[33,11],[32,5],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,5],[68,1],[33,11],[32,5],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,2],[34,9],[57,0,4],[32,10],[65,1],[58,0,12],[32,4],[65,208,0],[32,2],[32,3],[16,builtin('__ecma262_TriggerPromiseReactions')],[33,7],[26],[68,0],[65,128,1],[15]],
2059
+ wasm:(_,{builtin})=>[[32,0],[33,4],[68,1],[34,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,7],[43,0,4],[32,7],[45,0,12],[33,6],[68,0],[98],[4,64],[68,0],[65,128,1],[15],[11],[32,0],[33,4],[68,3],[34,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,7],[43,0,4],[32,7],[45,0,12],[33,6],[33,8],[32,0],[33,4],[68,0],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[32,2],[34,9],[57,0,4],[32,10],[32,3],[58,0,12],[32,0],[33,4],[68,2],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,4],[68,3],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,0],[34,9],[57,0,4],[32,10],[65,128,1],[58,0,12],[32,0],[33,4],[68,1],[33,11],[32,4],[252,3],[32,11],[252,3],[65,9],[108],[106],[34,10],[68,2],[34,9],[57,0,4],[32,10],[65,1],[58,0,12],[32,8],[65,208,0],[32,2],[32,3],[16,builtin('__ecma262_TriggerPromiseReactions')],[33,6],[26],[68,0],[65,128,1],[15]],
2053
2060
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2054
- locals:[124,124,124,127,127,124,127,124],localNames:["promise","promise#type","reason","reason#type","reactions","#member_obj","#member_prop","#last_type","#loadArray_offset","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
2061
+ locals:[124,124,127,127,124,124,127,124],localNames:["promise","promise#type","reason","reason#type","#member_obj","#member_prop","#last_type","#loadArray_offset","reactions","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
2055
2062
  usedTypes:[80],
2056
2063
  };
2057
2064
  this.__Porffor_promise_noop = {
@@ -2215,6 +2222,62 @@ locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:
2215
2222
  globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2216
2223
  table:1,
2217
2224
  };
2225
+ this.__Promise_any = {
2226
+ wasm:(_,{glbl,builtin,funcRef})=>[[32,0],...glbl(36,'_allPromises',124),...glbl(35,'_allPromises',124),[32,1],...glbl(36,'_allPromises#type',127),[26],[68,21],[65,6],[68,0],[65,7],...funcRef('#anonymous_11'),[65,6],[16,builtin('Promise')],[34,2],[15]],
2227
+ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2228
+ locals:[127],localNames:["promises","promises#type","#last_type"],
2229
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2230
+ };
2231
+ this['#anonymous_11'] = {
2232
+ wasm:(_,{t,glbl,builtin,funcRef,internalThrow})=>[[32,0],...glbl(36,'_allRes',124),...glbl(35,'_allRes',124),[32,1],...glbl(36,'_allRes#type',127),[26],[32,2],...glbl(36,'_allRej',124),...glbl(35,'_allRej',124),[32,3],...glbl(36,'_allRej#type',127),[26],[16,builtin('__Porffor_allocate')],[183],[34,4],...glbl(36,'_allOut',124),...glbl(35,'_allOut',124),[65,208,0],...glbl(36,'_allOut#type',127),[26],[68,0],...glbl(36,'_allLen',124),...glbl(35,'_allLen',124),[65,1],...glbl(36,'_allLen#type',127),[26],...glbl(35,'_allPromises',124),[252,3],[33,5],...glbl(35,'_allPromises#type',127),[33,8],[65,0],[33,7],[32,8],[65,208,0],[70],[32,8],[65,19],[70],[114],[32,8],[65,195,0],[70],[114],[32,8],[65,195,1],[70],[114],[32,8],[65,216,0],[78],[32,8],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,5],[40,1,0],[34,6],[4,64],[32,8],[33,15],[2,64],...t([19],()=>[[32,15],[65,19],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,15],[65,195,0],[70],[4,64],[65,195,0],[33,10],[16,builtin('__Porffor_allocate')],[34,31],[65,1],[54,0,0],[3,64],[32,31],[32,5],[47,0,4],[59,0,4],[32,31],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,5],[65,2],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,15],[65,208,0],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,15],[65,216,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,15],[65,217,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,15],[65,218,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,15],[65,219,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,15],[65,220,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,15],[65,221,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,15],[65,222,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,15],[65,223,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,15],[65,224,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,15],[65,195,1],[70],[4,64],[65,195,1],[33,10],[16,builtin('__Porffor_allocate')],[34,31],[65,1],[54,0,0],[3,64],[32,31],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,31],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_12'),[65,6],...funcRef('#anonymous_13'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,30],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[32,11],[32,12],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,13],[15],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],...glbl(35,'_allLen',124),[68,0],[97],[4,64],...glbl(35,'_allRej',124),[33,30],...glbl(35,'_allRej#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],[68,43],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('AggregateError')],[34,13],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,13],[5],[32,28],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,13],[5],[32,19],[32,18],[32,28],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,13],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRej is not a function`),[68,0],[11],[26],[11],[68,0],[65,128,1],[15]],
2233
+ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2234
+ locals:[124,127,127,127,127,124,127,124,127,127,124,127,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127],localNames:["res","res#type","rej","rej#type","arr","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#proto_target","#proto_target#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#forof_allocd"],
2235
+ usedTypes:[80,67,195],
2236
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2237
+ table:1,
2238
+ };
2239
+ this['#anonymous_12'] = {
2240
+ wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRes',124),[33,15],...glbl(35,'_allRes#type',127),[33,16],[2,124],...t([6],()=>[[32,16],[65,6],[70],[4,64],[32,0],[32,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[68,0],[65,128,1],[33,10],[33,11],[32,15],[252,3],[34,12],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,13],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,12],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0,"no_type_return"],[5],[32,12],[17,0,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0],[26],[5],[32,12],[17,0,0],[26],[11],[11],[12,5],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,12],[17,1,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0],[26],[5],[32,3],[32,2],[32,12],[17,1,0],[26],[11],[11],[12,4],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0],[26],[11],[11],[12,3],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0],[26],[11],[11],[12,2],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0],[26],[11],[11],[12,1],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
2241
+ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2242
+ locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["r","r#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp2"],
2243
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2244
+ table:1,
2245
+ };
2246
+ this['#anonymous_13'] = {
2247
+ wasm:(_,{t,glbl,builtin,internalThrow})=>[[2,127],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,0],[32,1],[16,builtin('__Porffor_array_fastPush')],[33,2],[34,3],...glbl(35,'_allLen',124),[34,4],[32,2],[65,128,1],[114],[65,195,1],[70],...glbl(35,'_allLen#type',127),[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,3],[32,2],[32,4],...glbl(35,'_allLen#type',127),[16,builtin('__Porffor_compareStrings')],[26],[252,3],[12,1],[11],[97],[11],[4,64],...glbl(35,'_allRes',124),[33,17],...glbl(35,'_allRes#type',127),[33,18],[2,124],...t([6],()=>[[32,18],[65,6],[70],[4,64],[68,43],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('AggregateError')],[34,2],[33,5],[33,6],[68,0],[65,128,1],[33,7],[33,8],[68,0],[65,128,1],[33,9],[33,10],[68,0],[65,128,1],[33,11],[33,12],[68,0],[65,128,1],[33,13],[33,14],[32,17],[252,3],[34,15],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,16],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,15],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[17,2,0,"no_type_return"],[5],[32,15],[17,0,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[17,2,0],[33,2],[5],[32,15],[17,0,0],[33,2],[11],[11],[12,5],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,15],[17,3,0,"no_type_return"],[5],[32,6],[32,5],[32,15],[17,1,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,15],[17,3,0],[33,2],[5],[32,6],[32,5],[32,15],[17,1,0],[33,2],[11],[11],[12,4],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,15],[17,4,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,15],[17,2,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,15],[17,4,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,15],[17,2,0],[33,2],[11],[11],[12,3],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,5,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,3,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,5,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,3,0],[33,2],[11],[11],[12,2],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,6,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,4,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,6,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,4,0],[33,2],[11],[11],[12,1],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,7,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,5,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,7,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,5,0],[33,2],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[11],[68,0],[65,128,1],[15]],
2248
+ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2249
+ locals:[127,124,124,127,124,127,124,127,124,127,124,127,124,127,127,124,127],localNames:["r","r#type","#last_type","__tmpop_left","__tmpop_right","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp2"],
2250
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2251
+ table:1,
2252
+ };
2253
+ this.__Promise_race = {
2254
+ wasm:(_,{glbl,builtin,funcRef})=>[[32,0],...glbl(36,'_allPromises',124),...glbl(35,'_allPromises',124),[32,1],...glbl(36,'_allPromises#type',127),[26],[68,21],[65,6],[68,0],[65,7],...funcRef('#anonymous_14'),[65,6],[16,builtin('Promise')],[34,2],[15]],
2255
+ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2256
+ locals:[127],localNames:["promises","promises#type","#last_type"],
2257
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2258
+ };
2259
+ this['#anonymous_14'] = {
2260
+ wasm:(_,{t,glbl,builtin,funcRef,internalThrow})=>[[32,0],...glbl(36,'_allRes',124),...glbl(35,'_allRes',124),[32,1],...glbl(36,'_allRes#type',127),[26],[32,2],...glbl(36,'_allRej',124),...glbl(35,'_allRej',124),[32,3],...glbl(36,'_allRej#type',127),[26],...glbl(35,'_allPromises',124),[252,3],[33,4],...glbl(35,'_allPromises#type',127),[33,7],[65,0],[33,6],[32,7],[65,208,0],[70],[32,7],[65,19],[70],[114],[32,7],[65,195,0],[70],[114],[32,7],[65,195,1],[70],[114],[32,7],[65,216,0],[78],[32,7],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,4],[40,1,0],[34,5],[4,64],[32,7],[33,14],[2,64],...t([19],()=>[[32,14],[65,19],[70],[4,64],[3,64],[32,4],[43,0,4],[33,8],[32,4],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,14],[65,195,0],[70],[4,64],[65,195,0],[33,9],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,4],[47,0,4],[59,0,4],[32,30],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,4],[65,2],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,14],[65,208,0],[70],[4,64],[3,64],[32,4],[43,0,4],[33,8],[32,4],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,14],[65,216,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[45,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,14],[65,217,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[44,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,14],[65,218,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[45,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,14],[65,219,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,2],[108],[106],[47,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,14],[65,220,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,2],[108],[106],[46,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,14],[65,221,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[40,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,14],[65,222,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[40,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,14],[65,223,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[42,0,4],[187],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,14],[65,224,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,8],[108],[106],[43,0,4],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,14],[65,195,1],[70],[4,64],[65,195,1],[33,9],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,4],[32,6],[106],[45,0,4],[58,0,4],[32,30],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],[32,10],[32,11],[16,builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],...t([67,195],()=>[[32,14],[65,195,0],[70],[32,14],[65,195,1],[70],[114],[4,64],[32,13],[252,3],[40,1,0],[12,1],[11]]),[32,13],[252,3],[11],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],...t([36],()=>[[32,14],[65,36],[70],[4,64],[32,15],[32,16],...funcRef('#anonymous_15'),[65,6],...funcRef('#anonymous_16'),[65,6],[16,builtin('__Promise_prototype_then')],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allRes',124),[33,29],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],[32,10],[32,11],[33,17],[33,18],[68,0],[65,128,1],[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,28],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,27],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,27],[17,2,0],[33,12],[5],[32,27],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0,"no_type_return"],[5],[32,18],[32,17],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,27],[17,3,0],[33,12],[5],[32,18],[32,17],[32,27],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,27],[17,4,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,27],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,5,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,27],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,6,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0,"no_type_return"],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,7,0],[33,12],[5],[32,18],[32,17],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,12],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[32,12],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[68,0],[65,128,1],[15]],
2261
+ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2262
+ locals:[127,127,127,127,124,127,124,127,127,124,127,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127],localNames:["res","res#type","rej","rej#type","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#proto_target","#proto_target#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#forof_allocd"],
2263
+ usedTypes:[67,195],
2264
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2265
+ table:1,
2266
+ };
2267
+ this['#anonymous_15'] = {
2268
+ wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRes',124),[33,15],...glbl(35,'_allRes#type',127),[33,16],[2,124],...t([6],()=>[[32,16],[65,6],[70],[4,64],[32,0],[32,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[68,0],[65,128,1],[33,10],[33,11],[32,15],[252,3],[34,12],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,13],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,12],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0,"no_type_return"],[5],[32,12],[17,0,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0],[26],[5],[32,12],[17,0,0],[26],[11],[11],[12,5],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,12],[17,1,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0],[26],[5],[32,3],[32,2],[32,12],[17,1,0],[26],[11],[11],[12,4],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0],[26],[11],[11],[12,3],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0],[26],[11],[11],[12,2],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0],[26],[11],[11],[12,1],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
2269
+ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2270
+ locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["r","r#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp2"],
2271
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2272
+ table:1,
2273
+ };
2274
+ this['#anonymous_16'] = {
2275
+ wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRej',124),[33,15],...glbl(35,'_allRej#type',127),[33,16],[2,124],...t([6],()=>[[32,16],[65,6],[70],[4,64],[32,0],[32,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[68,0],[65,128,1],[33,10],[33,11],[32,15],[252,3],[34,12],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,13],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,12],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0,"no_type_return"],[5],[32,12],[17,0,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0],[26],[5],[32,12],[17,0,0],[26],[11],[11],[12,5],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,12],[17,1,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0],[26],[5],[32,3],[32,2],[32,12],[17,1,0],[26],[11],[11],[12,4],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0],[26],[11],[11],[12,3],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0],[26],[11],[11],[12,2],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0],[26],[11],[11],[12,1],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRej is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
2276
+ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2277
+ locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["r","r#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp2"],
2278
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2279
+ table:1,
2280
+ };
2218
2281
  this.__Promise_prototype_toString = {
2219
2282
  wasm:(_,{allocPage})=>[...number(allocPage(_,'bytestring: __Promise_prototype_toString/str','i8'),124),[34,2],[65,195,1],[15]],
2220
2283
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
@@ -2969,13 +3032,13 @@ usedTypes:[88],
2969
3032
  table:1,
2970
3033
  };
2971
3034
  this.__Uint8Array_prototype_sort = {
2972
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_11'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[252,3],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[252,3],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,216,0],[15]],
3035
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_17'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[252,3],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[252,3],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,216,0],[15]],
2973
3036
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2974
3037
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
2975
3038
  usedTypes:[88],
2976
3039
  table:1,
2977
3040
  };
2978
- this['#anonymous_11'] = {
3041
+ this['#anonymous_17'] = {
2979
3042
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
2980
3043
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2981
3044
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -3193,13 +3256,13 @@ usedTypes:[89],
3193
3256
  table:1,
3194
3257
  };
3195
3258
  this.__Int8Array_prototype_sort = {
3196
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_12'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[252,2],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[252,2],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,217,0],[15]],
3259
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_18'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[252,2],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[252,2],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,217,0],[15]],
3197
3260
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
3198
3261
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
3199
3262
  usedTypes:[89],
3200
3263
  table:1,
3201
3264
  };
3202
- this['#anonymous_12'] = {
3265
+ this['#anonymous_18'] = {
3203
3266
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
3204
3267
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
3205
3268
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -3417,13 +3480,13 @@ usedTypes:[90],
3417
3480
  table:1,
3418
3481
  };
3419
3482
  this.__Uint8ClampedArray_prototype_sort = {
3420
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_13'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,218,0],[15]],
3483
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_19'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,12],[34,32],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[106],[32,6],[34,32],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,218,0],[15]],
3421
3484
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
3422
3485
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
3423
3486
  usedTypes:[90],
3424
3487
  table:1,
3425
3488
  };
3426
- this['#anonymous_13'] = {
3489
+ this['#anonymous_19'] = {
3427
3490
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
3428
3491
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
3429
3492
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -3641,13 +3704,13 @@ usedTypes:[91],
3641
3704
  table:1,
3642
3705
  };
3643
3706
  this.__Uint16Array_prototype_sort = {
3644
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_14'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,12],[34,32],[252,3],[59,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,6],[34,32],[252,3],[59,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,219,0],[15]],
3707
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_20'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,12],[34,32],[252,3],[59,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,6],[34,32],[252,3],[59,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,219,0],[15]],
3645
3708
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
3646
3709
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
3647
3710
  usedTypes:[91],
3648
3711
  table:1,
3649
3712
  };
3650
- this['#anonymous_14'] = {
3713
+ this['#anonymous_20'] = {
3651
3714
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
3652
3715
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
3653
3716
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -3865,13 +3928,13 @@ usedTypes:[92],
3865
3928
  table:1,
3866
3929
  };
3867
3930
  this.__Int16Array_prototype_sort = {
3868
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_15'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,12],[34,32],[252,2],[59,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,6],[34,32],[252,2],[59,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,220,0],[15]],
3931
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_21'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,12],[34,32],[252,2],[59,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,2],[108],[106],[32,6],[34,32],[252,2],[59,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,220,0],[15]],
3869
3932
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
3870
3933
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
3871
3934
  usedTypes:[92],
3872
3935
  table:1,
3873
3936
  };
3874
- this['#anonymous_15'] = {
3937
+ this['#anonymous_21'] = {
3875
3938
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
3876
3939
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
3877
3940
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -4089,13 +4152,13 @@ usedTypes:[93],
4089
4152
  table:1,
4090
4153
  };
4091
4154
  this.__Uint32Array_prototype_sort = {
4092
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_16'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[252,3],[54,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[252,3],[54,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,221,0],[15]],
4155
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_22'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[252,3],[54,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[252,3],[54,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,221,0],[15]],
4093
4156
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
4094
4157
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
4095
4158
  usedTypes:[93],
4096
4159
  table:1,
4097
4160
  };
4098
- this['#anonymous_16'] = {
4161
+ this['#anonymous_22'] = {
4099
4162
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
4100
4163
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
4101
4164
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -4313,13 +4376,13 @@ usedTypes:[94],
4313
4376
  table:1,
4314
4377
  };
4315
4378
  this.__Int32Array_prototype_sort = {
4316
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_17'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[252,2],[54,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[252,2],[54,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,222,0],[15]],
4379
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_23'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[252,2],[54,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[252,2],[54,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,222,0],[15]],
4317
4380
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
4318
4381
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
4319
4382
  usedTypes:[94],
4320
4383
  table:1,
4321
4384
  };
4322
- this['#anonymous_17'] = {
4385
+ this['#anonymous_23'] = {
4323
4386
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
4324
4387
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
4325
4388
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -4537,13 +4600,13 @@ usedTypes:[95],
4537
4600
  table:1,
4538
4601
  };
4539
4602
  this.__Float32Array_prototype_sort = {
4540
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_18'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[182],[56,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[182],[56,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,223,0],[15]],
4603
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_24'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,12],[34,32],[182],[56,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,4],[108],[106],[32,6],[34,32],[182],[56,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,223,0],[15]],
4541
4604
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
4542
4605
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
4543
4606
  usedTypes:[95],
4544
4607
  table:1,
4545
4608
  };
4546
- this['#anonymous_18'] = {
4609
+ this['#anonymous_24'] = {
4547
4610
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
4548
4611
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
4549
4612
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -4761,13 +4824,13 @@ usedTypes:[96],
4761
4824
  table:1,
4762
4825
  };
4763
4826
  this.__Float64Array_prototype_sort = {
4764
- wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_19'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,8],[108],[106],[32,12],[34,32],[57,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,8],[108],[106],[32,6],[34,32],[57,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,224,0],[15]],
4827
+ wasm:(_,{t,funcRef,internalThrow})=>[[32,2],[68,0],[97],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...funcRef('#anonymous_25'),[34,2],[65,6],[33,3],[26],[11],[32,0],[252,3],[40,1,0],[184],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[33,8],[32,5],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[34,10],[33,7],[33,6],[32,5],[33,11],[3,64],[32,11],[68,0],[100],[4,64],[32,0],[33,8],[32,11],[68,1],[161],[33,9],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[34,10],[33,13],[33,12],[32,7],[184],[33,14],[32,13],[184],[33,15],[32,14],[68,128],[97],[34,17],[4,127],[32,15],[68,128],[97],[65,2],[33,10],[5],[32,17],[65,2],[33,10],[11],[4,64],[68,0],[33,16],[5],[32,14],[68,128],[97],[4,64],[68,1],[33,16],[5],[32,15],[68,128],[97],[4,64],[68,-1],[33,16],[5],[32,2],[33,30],[32,3],[33,31],[2,124],...t([6],()=>[[32,31],[65,6],[70],[4,64],[32,6],[32,7],[33,18],[33,19],[32,12],[32,13],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[68,0],[65,128,1],[33,24],[33,25],[68,0],[65,128,1],[33,26],[33,27],[32,30],[252,3],[34,28],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,29],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,28],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0,"no_type_return"],[5],[32,28],[17,0,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[17,2,0],[33,10],[5],[32,28],[17,0,0],[33,10],[11],[11],[12,5],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0,"no_type_return"],[5],[32,19],[32,18],[32,28],[17,1,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,28],[17,3,0],[33,10],[5],[32,19],[32,18],[32,28],[17,1,0],[33,10],[11],[11],[12,4],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,28],[17,4,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,28],[17,2,0],[33,10],[11],[11],[12,3],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,5,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,28],[17,3,0],[33,10],[11],[11],[12,2],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,6,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,28],[17,4,0],[33,10],[11],[11],[12,1],[11],[32,29],[65,1],[113],[4,124],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0,"no_type_return"],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0,"no_type_return"],[11],[5],[32,29],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,7,0],[33,10],[5],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,28],[17,5,0],[33,10],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`callbackFn is not a function`),[68,0],[11],[33,16],[11],[11],[11],[32,16],[68,0],[102],[4,64],[12,1],[11],[32,0],[33,8],[32,11],[32,11],[68,1],[161],[33,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,8],[108],[106],[32,12],[34,32],[57,0,4],[12,1],[11],[11],[32,0],[33,8],[32,11],[33,34],[32,8],[252,3],[40,0,4],[32,34],[252,3],[65,8],[108],[106],[32,6],[34,32],[57,0,4],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[32,0],[65,224,0],[15]],
4765
4828
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
4766
4829
  locals:[124,124,124,127,124,124,127,124,124,127,124,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,127,124,127,124],localNames:["_this","_this#type","callbackFn","callbackFn#type","len","i","x","x#type","#member_obj","#member_prop","#last_type","j","y","y#type","xt","yt","v","logictmpi","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_prop_assign"],
4767
4830
  usedTypes:[96],
4768
4831
  table:1,
4769
4832
  };
4770
- this['#anonymous_19'] = {
4833
+ this['#anonymous_25'] = {
4771
4834
  wasm:(_,{t,builtin})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,5],[33,4],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,8],[33,7],[32,4],[32,5],[32,7],[32,8],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,-1],[65,1],[15],[11],[32,7],[32,8],[32,4],[32,5],[16,builtin('__Porffor_strlt')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[252,3],[40,1,0],[12,1],[11]]),[32,9],[252,3],[11],[4,64],[68,1],[65,1],[15],[11],[68,0],[65,1],[15]],
4772
4835
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
4773
4836
  locals:[124,127,127,124,127,124,127],localNames:["x","x#type","y","y#type","xString","xString#type","#last_type","yString","yString#type","#logicinner_tmp","#typeswitch_tmp1"],
@@ -3738,7 +3738,7 @@ const generateAssign = (scope, decl, _global, _name, valueUnused = false) => {
3738
3738
  const ifIdentifierErrors = (scope, decl) => {
3739
3739
  if (decl.type === 'Identifier') {
3740
3740
  const out = generate(scope, decl);
3741
- if (out[1]) return true;
3741
+ if (out[0][0] === null && typeof out[0][1] === 'function') return true;
3742
3742
  }
3743
3743
 
3744
3744
  return false;
@@ -3747,8 +3747,20 @@ const ifIdentifierErrors = (scope, decl) => {
3747
3747
  const generateUnary = (scope, decl) => {
3748
3748
  switch (decl.operator) {
3749
3749
  case '+':
3750
- // stub
3751
- return generate(scope, decl.argument);
3750
+ // 13.5.4 Unary + Operator, 13.5.4.1 Runtime Semantics: Evaluation
3751
+ // https://tc39.es/ecma262/#sec-unary-plus-operator-runtime-semantics-evaluation
3752
+ // 1. Let expr be ? Evaluation of UnaryExpression.
3753
+ // 2. Return ? ToNumber(? GetValue(expr)).
3754
+ return generate(scope, {
3755
+ type: 'CallExpression',
3756
+ callee: {
3757
+ type: 'Identifier',
3758
+ name: '__ecma262_ToNumber'
3759
+ },
3760
+ arguments: [
3761
+ decl.argument
3762
+ ]
3763
+ });
3752
3764
 
3753
3765
  case '-':
3754
3766
  // * -1
@@ -3814,16 +3826,14 @@ const generateUnary = (scope, decl) => {
3814
3826
  let toReturn = true, toGenerate = true;
3815
3827
 
3816
3828
  if (decl.argument.type === 'Identifier') {
3817
- const out = generate(scope, decl.argument);
3818
-
3819
3829
  // if ReferenceError (undeclared var), ignore and return true. otherwise false
3820
- if (!out[1]) {
3821
- // exists
3822
- toReturn = false;
3823
- } else {
3830
+ if (ifIdentifierErrors(scope, decl.argument)) {
3824
3831
  // does not exist (2 ops from throw)
3825
3832
  toReturn = true;
3826
3833
  toGenerate = false;
3834
+ } else {
3835
+ // exists
3836
+ toReturn = false;
3827
3837
  }
3828
3838
  }
3829
3839
 
package/compiler/index.js CHANGED
@@ -164,8 +164,26 @@ export default (code, module = undefined) => {
164
164
  data[i] = run(data[i]);
165
165
  }
166
166
 
167
- const url = Diagram.url(Diagram.tree(data));
168
- console.log(`built-in tree: ${url}`);
167
+ const print = (x, depth = []) => {
168
+ for (const [ name, inc ] of x) {
169
+ if (inc.length === 0) continue;
170
+ console.log(name);
171
+
172
+ for (let i = 0; i < inc.length; i++) {
173
+ if (inc[i][1].length === 0) continue;
174
+ process.stdout.write(`${depth.join(' ')}${depth.length > 0 ? ' ' : ''}${i != inc.length - 1 ? '├' : '└' } `);
175
+
176
+ const newDepth = [...depth];
177
+ newDepth.push(i != inc.length - 1 ? '│' : '');
178
+
179
+ print([ inc[i] ], newDepth);
180
+ }
181
+ }
182
+ };
183
+ print(data);
184
+
185
+ // const url = Diagram.url(Diagram.tree(data));
186
+ // console.log(`built-in tree: ${url}`);
169
187
  }
170
188
 
171
189
  if (logProgress) progressStart('assembling...');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "porffor",
3
3
  "description": "a basic experimental wip aot optimizing js -> wasm engine/compiler/runtime in js",
4
- "version": "0.40.5+0eaa98b40",
4
+ "version": "0.41.1+1afa668c0",
5
5
  "author": "CanadaHonk",
6
6
  "license": "MIT",
7
7
  "scripts": {},
package/r.js ADDED
@@ -0,0 +1,5 @@
1
+ class A {
2
+ constructor() {
3
+ this.a = "a";
4
+ }
5
+ }
package/runner/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import fs from 'node:fs';
3
- globalThis.version = '0.40.5+0eaa98b40';
3
+ globalThis.version = '0.41.1+1afa668c0';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {