porffor 0.25.8 → 0.25.9

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.
@@ -455,4 +455,88 @@ export const __Porffor_object_isObjectOrSymbol = (arg: any): boolean => {
455
455
  t != Porffor.TYPES.string,
456
456
  t != Porffor.TYPES.bytestring,
457
457
  );
458
+ };
459
+
460
+
461
+ // used for { foo: 5 }
462
+ export const __Porffor_object_expr_init = (_this: object, key: any, value: any): void => {
463
+ let entryPtr: i32 = __Porffor_object_lookup(_this, key);
464
+ if (entryPtr == -1) {
465
+ // add new entry
466
+ // bump size +1
467
+ const size: i32 = Porffor.wasm.i32.load(_this, 0, 0);
468
+ Porffor.wasm.i32.store(_this, size + 1, 0, 0);
469
+
470
+ // entryPtr = current end of object
471
+ entryPtr = Porffor.wasm`local.get ${_this}` + 5 + size * 14;
472
+
473
+ __Porffor_object_writeKey(entryPtr, key);
474
+ }
475
+
476
+ // write new value value (lol)
477
+ Porffor.wasm.f64.store(entryPtr, value, 0, 4);
478
+
479
+ // write new tail (value type + flags)
480
+ // flags = writable, enumerable, configurable, not accessor
481
+ Porffor.wasm.i32.store16(entryPtr,
482
+ 0b1110 + (Porffor.wasm`local.get ${value+1}` << 8),
483
+ 0, 12);
484
+ };
485
+
486
+ // used for { get foo() {} }
487
+ export const __Porffor_object_expr_get = (_this: object, key: any, get: any): void => {
488
+ let entryPtr: i32 = __Porffor_object_lookup(_this, key);
489
+ let set: any = undefined;
490
+ if (entryPtr == -1) {
491
+ // add new entry
492
+ // bump size +1
493
+ const size: i32 = Porffor.wasm.i32.load(_this, 0, 0);
494
+ Porffor.wasm.i32.store(_this, size + 1, 0, 0);
495
+
496
+ // entryPtr = current end of object
497
+ entryPtr = Porffor.wasm`local.get ${_this}` + 5 + size * 14;
498
+
499
+ __Porffor_object_writeKey(entryPtr, key);
500
+ } else {
501
+ // existing entry, keep set (if exists)
502
+ set = __Porffor_object_accessorSet(entryPtr);
503
+ }
504
+
505
+ // write new value value (lol)
506
+ Porffor.wasm.f64.store(entryPtr, __Porffor_object_packAccessor(get, set), 0, 4);
507
+
508
+ // write new tail (value type + flags)
509
+ // flags = writable, enumerable, configurable, accessor
510
+ Porffor.wasm.i32.store16(entryPtr,
511
+ 0b1111 + (Porffor.TYPES.number << 8),
512
+ 0, 12);
513
+ };
514
+
515
+ // used for { set foo(v) {} }
516
+ export const __Porffor_object_expr_set = (_this: object, key: any, set: any): void => {
517
+ let entryPtr: i32 = __Porffor_object_lookup(_this, key);
518
+ let get: any = undefined;
519
+ if (entryPtr == -1) {
520
+ // add new entry
521
+ // bump size +1
522
+ const size: i32 = Porffor.wasm.i32.load(_this, 0, 0);
523
+ Porffor.wasm.i32.store(_this, size + 1, 0, 0);
524
+
525
+ // entryPtr = current end of object
526
+ entryPtr = Porffor.wasm`local.get ${_this}` + 5 + size * 14;
527
+
528
+ __Porffor_object_writeKey(entryPtr, key);
529
+ } else {
530
+ // existing entry, keep set (if exists)
531
+ get = __Porffor_object_accessorGet(entryPtr);
532
+ }
533
+
534
+ // write new value value (lol)
535
+ Porffor.wasm.f64.store(entryPtr, __Porffor_object_packAccessor(get, set), 0, 4);
536
+
537
+ // write new tail (value type + flags)
538
+ // flags = writable, enumerable, configurable, accessor
539
+ Porffor.wasm.i32.store16(entryPtr,
540
+ 0b1111 + (Porffor.TYPES.number << 8),
541
+ 0, 12);
458
542
  };
@@ -71,14 +71,14 @@ export const __ArrayBuffer_prototype_resizable$get = (_this: ArrayBuffer) => {
71
71
  return false;
72
72
  };
73
73
 
74
- export const __ArrayBuffer_prototype_slice = (_this: ArrayBuffer, start: number, end: any) => {
74
+ export const __ArrayBuffer_prototype_slice = (_this: ArrayBuffer, start: any, end: any) => {
75
75
  if (_this.detached) throw new TypeError('Called ArrayBuffer.prototype.slice on a detached ArrayBuffer');
76
76
 
77
77
  const len: i32 = Porffor.wasm.i32.load(_this, 0, 0);
78
78
  if (Porffor.rawType(end) == Porffor.TYPES.undefined) end = len;
79
79
 
80
- start |= 0;
81
- end |= 0;
80
+ start = ecma262.ToIntegerOrInfinity(start);
81
+ end = ecma262.ToIntegerOrInfinity(end);
82
82
 
83
83
  if (start < 0) {
84
84
  start = len + start;
@@ -169,16 +169,18 @@ export const __ArrayBuffer_prototype_resize = (_this: ArrayBuffer, newLength: an
169
169
  };
170
170
 
171
171
 
172
- export const SharedArrayBuffer = function (length: number): SharedArrayBuffer {
172
+ export const SharedArrayBuffer = function (length: any): SharedArrayBuffer {
173
+ // 1. If NewTarget is undefined, throw a TypeError exception.
173
174
  if (!new.target) throw new TypeError("Constructor SharedArrayBuffer requires 'new'");
174
175
 
175
- if (length < 0) throw new RangeError('Invalid SharedArrayBuffer length (negative)');
176
- if (length > 4294967295) throw new RangeError('Invalid SharedArrayBuffer length (over 32 bit address space)');
176
+ // 2. Let byteLength be ? ToIndex(length).
177
+ const byteLength: number = ecma262.ToIndex(length);
177
178
 
178
- length |= 0;
179
+ if (byteLength < 0) throw new RangeError('Invalid SharedArrayBuffer length (negative)');
180
+ if (byteLength > 4294967295) throw new RangeError('Invalid SharedArrayBuffer length (over 32 bit address space)');
179
181
 
180
- const out: SharedArrayBuffer = Porffor.allocateBytes(length + 4);
181
- Porffor.wasm.i32.store(out, length, 0, 0);
182
+ const out: SharedArrayBuffer = Porffor.allocateBytes(byteLength + 4);
183
+ Porffor.wasm.i32.store(out, byteLength, 0, 0);
182
184
 
183
185
  return out;
184
186
  };
@@ -196,12 +198,12 @@ export const __SharedArrayBuffer_prototype_growable$get = (_this: SharedArrayBuf
196
198
  };
197
199
 
198
200
 
199
- export const __SharedArrayBuffer_prototype_slice = (_this: SharedArrayBuffer, start: number, end: any) => {
201
+ export const __SharedArrayBuffer_prototype_slice = (_this: SharedArrayBuffer, start: any, end: any) => {
200
202
  const len: i32 = Porffor.wasm.i32.load(_this, 0, 0);
201
203
  if (Porffor.rawType(end) == Porffor.TYPES.undefined) end = len;
202
204
 
203
- start |= 0;
204
- end |= 0;
205
+ start = ecma262.ToIntegerOrInfinity(start);
206
+ end = ecma262.ToIntegerOrInfinity(end);
205
207
 
206
208
  if (start < 0) {
207
209
  start = len + start;
@@ -98,6 +98,24 @@ export const BuiltinFuncs = function() {
98
98
  returns: [127,127], typedReturns: 1,
99
99
  locals: [127], localNames: ["arg","arg#type","t"],
100
100
  };
101
+ this.__Porffor_object_expr_init = {
102
+ wasm: (scope, {builtin}) => [[32,0],[65,7],[32,2],[32,3],[16, ...builtin('__Porffor_object_lookup')],[26],[34,6],[65,127],[70],[4,64],[32,0],[40,0,0],[33,8],[32,0],[32,8],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,8],[65,14],[108],[106],[34,6],[65,1],[32,2],[32,3],[16, ...builtin('__Porffor_object_writeKey')],[33,7],[26],[11],[32,6],[32,4],[57,0,4],[32,6],[65,14],[32,5],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
103
+ params: [127,127,127,127,124,127], typedParams: 1,
104
+ returns: [127,127], typedReturns: 1,
105
+ locals: [127,127,127], localNames: ["_this","_this#type","key","key#type","value","value#type","entryPtr","#last_type","size"],
106
+ };
107
+ this.__Porffor_object_expr_get = {
108
+ wasm: (scope, {builtin}) => [[32,0],[65,7],[32,2],[32,3],[16, ...builtin('__Porffor_object_lookup')],[26],[33,6],[65,0],[33,8],[65,128,1],[33,9],[32,6],[65,127],[70],[4,64],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,10],[65,14],[108],[106],[34,6],[65,1],[32,2],[32,3],[16, ...builtin('__Porffor_object_writeKey')],[33,7],[26],[5],[32,6],[65,1],[16, ...builtin('__Porffor_object_accessorSet')],[33,9],[33,8],[11],[32,6],[32,4],[32,5],[32,8],[32,9],[16, ...builtin('__Porffor_object_packAccessor')],[33,7],[57,0,4],[32,6],[65,15],[65,1],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
109
+ params: [127,127,127,127,127,127], typedParams: 1,
110
+ returns: [127,127], typedReturns: 1,
111
+ locals: [127,127,127,127,127], localNames: ["_this","_this#type","key","key#type","get","get#type","entryPtr","#last_type","set","set#type","size"],
112
+ };
113
+ this.__Porffor_object_expr_set = {
114
+ wasm: (scope, {builtin}) => [[32,0],[65,7],[32,2],[32,3],[16, ...builtin('__Porffor_object_lookup')],[26],[33,6],[65,0],[33,8],[65,128,1],[33,9],[32,6],[65,127],[70],[4,64],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,10],[65,14],[108],[106],[34,6],[65,1],[32,2],[32,3],[16, ...builtin('__Porffor_object_writeKey')],[33,7],[26],[5],[32,6],[65,1],[16, ...builtin('__Porffor_object_accessorGet')],[33,9],[33,8],[11],[32,6],[32,8],[32,9],[32,4],[32,5],[16, ...builtin('__Porffor_object_packAccessor')],[33,7],[57,0,4],[32,6],[65,15],[65,1],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
115
+ params: [127,127,127,127,127,127], typedParams: 1,
116
+ returns: [127,127], typedReturns: 1,
117
+ locals: [127,127,127,127,127], localNames: ["_this","_this#type","key","key#type","set","set#type","entryPtr","#last_type","get","get#type","size"],
118
+ };
101
119
  this.__String_prototype_big = {
102
120
  wasm: (scope, {allocPage}) => [...number(allocPage(scope, 'string: __String_prototype_big/out', 'i16') * pageSize, 127),[34,2],[65,10],[106],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,3],[32,7],[59,0,4],[32,4],[65,2],[106],[33,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,3],[65,60],[59,0,4],[32,3],[65,47],[59,0,6],[32,3],[65,226,0],[59,0,8],[32,3],[65,233,0],[59,0,10],[32,3],[65,231,0],[59,0,12],[32,3],[65,62],[59,0,14],[32,2],[32,5],[65,11],[106],[34,8],[54,1,0],[32,2],[65,195,0],[15]],
103
121
  params: [127,127], typedParams: 1,
@@ -554,7 +572,7 @@ export const BuiltinFuncs = function() {
554
572
  locals: [], localNames: ["_this","_this#type"],
555
573
  };
556
574
  this.__ArrayBuffer_prototype_slice = {
557
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[65,21],[16, ...builtin('__ArrayBuffer_prototype_detached$get')],[33,6],[33,7],[32,6],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Called ArrayBuffer.prototype.slice on a detached ArrayBuffer`),[11],[32,0],[252,2],[40,0,0],[183],[33,9],[32,4],[32,5],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,96,64],[97],[4,64],[32,9],[34,4],[65,1],[33,5],[26],[11],[32,2],[68,0,0,0,0,0,0,0,0],[16, ...builtin('f64_|')],[33,2],[32,4],[68,0,0,0,0,0,0,0,0],[16, ...builtin('f64_|')],[34,4],[65,1],[33,5],[26],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,9],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[33,2],[11],[11],[32,2],[32,9],[100],[4,64],[32,9],[33,2],[11],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,9],[32,4],[160],[34,4],[65,1],[33,5],[26],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[34,4],[65,1],[33,5],[26],[11],[11],[32,4],[32,9],[100],[4,64],[32,9],[34,4],[65,1],[33,5],[26],[11],[68,0,0,0,0,0,0,16,64],[32,4],[32,2],[161],[160],[252,2],[16, ...builtin('__Porffor_allocateBytes')],[183],[34,10],[252,2],[32,4],[32,2],[161],[252,2],[54,0,0],[32,10],[252,3],[65,4],[106],[32,0],[252,3],[65,4],[106],[32,2],[252,3],[106],[32,4],[252,3],[32,2],[252,3],[107],[252,10,0,0],[32,10],[65,21],[15]],
575
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[65,21],[16, ...builtin('__ArrayBuffer_prototype_detached$get')],[33,6],[33,7],[32,6],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Called ArrayBuffer.prototype.slice on a detached ArrayBuffer`),[11],[32,0],[252,2],[40,0,0],[183],[33,9],[32,4],[32,5],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,96,64],[97],[4,64],[32,9],[34,4],[65,1],[33,5],[26],[11],[32,2],[32,3],[16, ...builtin('__ecma262_ToIntegerOrInfinity')],[33,3],[33,2],[32,4],[32,5],[16, ...builtin('__ecma262_ToIntegerOrInfinity')],[33,5],[33,4],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,9],[32,2],[160],[34,2],[65,1],[33,3],[26],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[34,2],[65,1],[33,3],[26],[11],[11],[32,2],[32,9],[100],[4,64],[32,9],[34,2],[65,1],[33,3],[26],[11],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,9],[32,4],[160],[34,4],[65,1],[33,5],[26],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[34,4],[65,1],[33,5],[26],[11],[11],[32,4],[32,9],[100],[4,64],[32,9],[34,4],[65,1],[33,5],[26],[11],[68,0,0,0,0,0,0,16,64],[32,4],[32,2],[161],[160],[252,2],[16, ...builtin('__Porffor_allocateBytes')],[183],[34,10],[252,2],[32,4],[32,2],[161],[252,2],[54,0,0],[32,10],[252,3],[65,4],[106],[32,0],[252,3],[65,4],[106],[32,2],[252,3],[106],[32,4],[252,3],[32,2],[252,3],[107],[252,10,0,0],[32,10],[65,21],[15]],
558
576
  params: [124,127,124,127,124,127], typedParams: 1,
559
577
  returns: [124,127], typedReturns: 1,
560
578
  locals: [127,124,127,124,124], localNames: ["_this","_this#type","start","start#type","end","end#type","#last_type","#logicinner_tmp","#typeswitch_tmp","len","out"],
@@ -578,10 +596,10 @@ export const BuiltinFuncs = function() {
578
596
  locals: [], localNames: ["_this","_this#type","newLength","newLength#type"],
579
597
  };
580
598
  this.SharedArrayBuffer = {
581
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,6],[32,1],[33,7],[2,124],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,6],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Constructor SharedArrayBuffer requires 'new'`),[11],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid SharedArrayBuffer length (negative)`),[11],[32,4],[68,0,0,224,255,255,255,239,65],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid SharedArrayBuffer length (over 32 bit address space)`),[11],[32,4],[68,0,0,0,0,0,0,0,0],[16, ...builtin('f64_|')],[34,4],[68,0,0,0,0,0,0,16,64],[160],[252,2],[16, ...builtin('__Porffor_allocateBytes')],[183],[34,8],[252,2],[32,4],[252,2],[54,0,0],[32,8],[65,22],[15]],
599
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,6],[32,1],[33,7],[2,124],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,6],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Constructor SharedArrayBuffer requires 'new'`),[11],[32,4],[32,5],[16, ...builtin('__ecma262_ToIndex')],[26],[34,8],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid SharedArrayBuffer length (negative)`),[11],[32,8],[68,0,0,224,255,255,255,239,65],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid SharedArrayBuffer length (over 32 bit address space)`),[11],[32,8],[68,0,0,0,0,0,0,16,64],[160],[252,2],[16, ...builtin('__Porffor_allocateBytes')],[183],[34,10],[252,2],[32,8],[252,2],[54,0,0],[32,10],[65,22],[15]],
582
600
  params: [124,127,124,127,124,127], typedParams: 1,
583
601
  returns: [124,127], typedReturns: 1,
584
- locals: [124,127,124], localNames: ["#newtarget","#newtarget#type","#this","#this#type","length","length#type","#logicinner_tmp","#typeswitch_tmp","out"],
602
+ locals: [124,127,124,127,124], localNames: ["#newtarget","#newtarget#type","#this","#this#type","length","length#type","#logicinner_tmp","#typeswitch_tmp","byteLength","#last_type","out"],
585
603
  constr: 1,
586
604
  };
587
605
  this.__SharedArrayBuffer_prototype_byteLength$get = {
@@ -603,10 +621,10 @@ export const BuiltinFuncs = function() {
603
621
  locals: [], localNames: ["_this","_this#type"],
604
622
  };
605
623
  this.__SharedArrayBuffer_prototype_slice = {
606
- wasm: (scope, {builtin}) => [[32,0],[252,2],[40,0,0],[183],[33,6],[32,4],[32,5],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,96,64],[97],[4,64],[32,6],[34,4],[65,1],[33,5],[26],[11],[32,2],[68,0,0,0,0,0,0,0,0],[16, ...builtin('f64_|')],[33,2],[32,4],[68,0,0,0,0,0,0,0,0],[16, ...builtin('f64_|')],[34,4],[65,1],[33,5],[26],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[33,2],[11],[11],[32,2],[32,6],[100],[4,64],[32,6],[33,2],[11],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,4],[160],[34,4],[65,1],[33,5],[26],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[34,4],[65,1],[33,5],[26],[11],[11],[32,4],[32,6],[100],[4,64],[32,6],[34,4],[65,1],[33,5],[26],[11],[68,0,0,0,0,0,0,16,64],[32,4],[32,2],[161],[160],[252,2],[16, ...builtin('__Porffor_allocateBytes')],[183],[34,7],[252,2],[32,4],[32,2],[161],[252,2],[54,0,0],[32,7],[252,3],[65,4],[106],[32,0],[252,3],[65,4],[106],[32,2],[252,3],[106],[32,4],[252,3],[32,2],[252,3],[107],[252,10,0,0],[32,7],[65,22],[15]],
624
+ wasm: (scope, {builtin}) => [[32,0],[252,2],[40,0,0],[183],[33,6],[32,4],[32,5],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,96,64],[97],[4,64],[32,6],[34,4],[65,1],[33,5],[26],[11],[32,2],[32,3],[16, ...builtin('__ecma262_ToIntegerOrInfinity')],[33,3],[33,2],[32,4],[32,5],[16, ...builtin('__ecma262_ToIntegerOrInfinity')],[33,5],[33,4],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[65,1],[33,3],[26],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[34,2],[65,1],[33,3],[26],[11],[11],[32,2],[32,6],[100],[4,64],[32,6],[34,2],[65,1],[33,3],[26],[11],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,4],[160],[34,4],[65,1],[33,5],[26],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[34,4],[65,1],[33,5],[26],[11],[11],[32,4],[32,6],[100],[4,64],[32,6],[34,4],[65,1],[33,5],[26],[11],[68,0,0,0,0,0,0,16,64],[32,4],[32,2],[161],[160],[252,2],[16, ...builtin('__Porffor_allocateBytes')],[183],[34,8],[252,2],[32,4],[32,2],[161],[252,2],[54,0,0],[32,8],[252,3],[65,4],[106],[32,0],[252,3],[65,4],[106],[32,2],[252,3],[106],[32,4],[252,3],[32,2],[252,3],[107],[252,10,0,0],[32,8],[65,22],[15]],
607
625
  params: [124,127,124,127,124,127], typedParams: 1,
608
626
  returns: [124,127], typedReturns: 1,
609
- locals: [124,124], localNames: ["_this","_this#type","start","start#type","end","end#type","len","out"],
627
+ locals: [124,127,124], localNames: ["_this","_this#type","start","start#type","end","end#type","len","#last_type","out"],
610
628
  };
611
629
  this.__SharedArrayBuffer_prototype_grow = {
612
630
  wasm: (scope, {internalThrow}) => [...internalThrow(scope, 'TypeError', `Called SharedArrayBuffer.prototype.grow on a non-growable SharedArrayBuffer`),[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
@@ -2011,21 +2029,21 @@ export const BuiltinFuncs = function() {
2011
2029
  locals: [127,124,127,124,124,124,124,127,127,127,124,124,124,124,124,127,124], localNames: ["_this","_this#type","onFinally","onFinally#type","#last_type","#logicinner_tmp","#typeswitch_tmp","promise","state","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap","outPromise","finallyReaction","fulfillReactions","rejectReactions","value","value#type","pro"],
2012
2030
  };
2013
2031
  this.__Promise_all = {
2014
- wasm: (scope, {glbl,builtin}) => [[32,0],...glbl(36, '_allPromises', 124),...glbl(35, '_allPromises', 124),[32,1],...glbl(36, '_allPromises#type', 127),[26],[68,0,0,0,0,0,0,56,64],[65,6],[16, ...builtin('__Porffor_allocate')],[184],[65,7],[68,...builtin('anonymous_fa70db224c50', true, true)],[65,6],[16, ...builtin('Promise')],[34,2],[15]],
2032
+ wasm: (scope, {glbl,builtin}) => [[32,0],...glbl(36, '_allPromises', 124),...glbl(35, '_allPromises', 124),[32,1],...glbl(36, '_allPromises#type', 127),[26],[68,0,0,0,0,0,0,56,64],[65,6],[16, ...builtin('__Porffor_allocate')],[184],[65,7],[68,...builtin('anonymous_a5a63dbdf4d0', true, true)],[65,6],[16, ...builtin('Promise')],[34,2],[15]],
2015
2033
  params: [124,127], typedParams: 1,
2016
2034
  returns: [124,127], typedReturns: 1,
2017
2035
  locals: [127], localNames: ["promises","promises#type","#last_type"],
2018
2036
  globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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)],[68,0,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
2019
2037
  };
2020
- this.anonymous_fa70db224c50 = {
2021
- wasm: (scope, {glbl,builtin,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,0,0,0,0,0,0,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],[65,0],[33,7],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, ...builtin('__Porffor_allocate')],[34,15],[65,1],[54,0,0],[3,64],[32,15],[32,5],[47,0,4],[59,0,4],[32,15],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, ...builtin('__Porffor_allocate')],[34,15],[65,1],[54,0,0],[3,64],[32,15],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,15],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,0,0],[97],[4,64],...glbl(35, '_allRes', 124),[33,24],...glbl(35, '_allRes#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[32,24],[252,3],[34,22],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,23],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,22],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,22],[17,2,0,"no_type_return"],[5],[32,22],[17,0,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,22],[17,2,0],[33,10],[5],[32,22],[17,0,0],[33,10],[11],[11],[12,3],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,22],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,22],[17,1,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,22],[17,3,0],[33,10],[5],[32,17],[32,16],[32,22],[17,1,0],[33,10],[11],[11],[12,2],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,22],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,22],[17,2,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,22],[17,4,0],[33,10],[5],[32,17],[32,16],[32,19],[32,18],[32,22],[17,2,0],[33,10],[11],[11],[12,1],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,3,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,5,0],[33,10],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,3,0],[33,10],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68,...builtin('anonymous_f3446a746cb0', true, true)],[65,6],[16, ...builtin('__Porffor_promise_runNext')],[33,10],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2038
+ this.anonymous_a5a63dbdf4d0 = {
2039
+ wasm: (scope, {glbl,builtin,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,0,0,0,0,0,0,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],[65,0],[33,7],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, ...builtin('__Porffor_allocate')],[34,15],[65,1],[54,0,0],[3,64],[32,15],[32,5],[47,0,4],[59,0,4],[32,15],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, ...builtin('__Porffor_allocate')],[34,15],[65,1],[54,0,0],[3,64],[32,15],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,15],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_59038d735250', true, true)],[65,6],[68,...builtin('anonymous_a715d8b76020', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,0,0],[97],[4,64],...glbl(35, '_allRes', 124),[33,24],...glbl(35, '_allRes#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[32,24],[252,3],[34,22],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,23],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,22],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,22],[17,2,0,"no_type_return"],[5],[32,22],[17,0,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,22],[17,2,0],[33,10],[5],[32,22],[17,0,0],[33,10],[11],[11],[12,3],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,22],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,22],[17,1,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,22],[17,3,0],[33,10],[5],[32,17],[32,16],[32,22],[17,1,0],[33,10],[11],[11],[12,2],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,22],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,22],[17,2,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,22],[17,4,0],[33,10],[5],[32,17],[32,16],[32,19],[32,18],[32,22],[17,2,0],[33,10],[11],[11],[12,1],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,3,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,5,0],[33,10],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,3,0],[33,10],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68,...builtin('anonymous_d055945c8770', true, true)],[65,6],[16, ...builtin('__Porffor_promise_runNext')],[33,10],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2022
2040
  params: [124,127,124,127], typedParams: 1,
2023
2041
  returns: [124,127], typedReturns: 1,
2024
2042
  locals: [124,127,127,127,124,127,127,124,127,124,127,127,127,124,127,124,127,124,127,127,124], localNames: ["res","res#type","rej","rej#type","arr","forof_base_pointer","forof_length","forof_counter","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp","#proto_target","#proto_target#type","#forof_allocd","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
2025
2043
  globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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)],[68,0,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
2026
2044
  table: 1,
2027
2045
  };
2028
- this.anonymous_a618f49822f0 = {
2046
+ this.anonymous_59038d735250 = {
2029
2047
  wasm: (scope, {glbl,builtin,internalThrow}) => [[2,127,"string_only"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,0],[32,1],[16, ...builtin('__Porffor_fastPush')],[33,2],[34,3,"string_only"],...glbl(35, '_allLen', 124),[34,4,"string_only"],[32,2,"string_only|start"],[65,195,1],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[113],[4,64],[32,3],[252,3],[34,5],[32,4],[252,3],[34,7],[71],[4,127],[32,5],[40,0,0],[34,6],[32,7],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,8],[32,6],[33,9],[3,64],[32,8],[32,5],[106],[45,0,4],[32,8],[32,7],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,8],[65,1],[106],[34,8],[32,9],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11],[32,2],[65,195,0],[70],[32,2],[65,195,1],[70],[114],...glbl(35, '_allLen#type', 127),[65,195,0],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[114],[114],[4,64],[32,3],[252,3],[34,5],[32,4],[252,3],[34,7],[71],[4,127],[32,5],[40,0,0],[34,6],[32,7],[40,0,0],[32,2],[65,195,1],[70],[4,64],[32,5],[32,6],[16, ...builtin('__Porffor_bytestringToString')],[33,5],[11],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[4,64],[32,7],[32,7],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,7],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,8],[32,6],[65,2],[108],[33,9],[3,64],[32,8],[32,5],[106],[47,0,4],[32,8],[32,7],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,8],[65,2],[106],[34,8],[32,9],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11,"string_only|end"],[97],[11,"string_only"],[4,64],...glbl(35, '_allRes', 124),[33,18],...glbl(35, '_allRes#type', 127),[33,19],[2,124],[32,19],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,10],[33,11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,12],[33,13],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,14],[33,15],[32,18],[252,3],[34,16],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,17],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,16],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,16],[17,2,0,"no_type_return"],[5],[32,16],[17,0,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,16],[17,2,0],[33,2],[5],[32,16],[17,0,0],[33,2],[11],[11],[12,3],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,16],[17,3,0,"no_type_return"],[5],[32,11],[32,10],[32,16],[17,1,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,16],[17,3,0],[33,2],[5],[32,11],[32,10],[32,16],[17,1,0],[33,2],[11],[11],[12,2],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,16],[17,4,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,16],[17,2,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,16],[17,4,0],[33,2],[5],[32,11],[32,10],[32,13],[32,12],[32,16],[17,2,0],[33,2],[11],[11],[12,1],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,5,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,3,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,5,0],[33,2],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,3,0],[33,2],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2030
2048
  params: [124,127], typedParams: 1,
2031
2049
  returns: [124,127], typedReturns: 1,
@@ -2033,7 +2051,7 @@ export const BuiltinFuncs = function() {
2033
2051
  globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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)],[68,0,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
2034
2052
  table: 1,
2035
2053
  };
2036
- this.anonymous_6f6aa2660540 = {
2054
+ this.anonymous_a715d8b76020 = {
2037
2055
  wasm: (scope, {glbl,builtin,internalThrow}) => [...glbl(35, '_allRej', 124),[33,11],...glbl(35, '_allRej#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,0],[32,1],[33,2],[33,3],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[33,5],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,6],[33,7],[32,11],[252,3],[34,8],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,9],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRej is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,8],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,9],[65,1],[113],[4,124],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,8],[17,2,0,"no_type_return"],[5],[32,8],[17,0,0,"no_type_return"],[11],[5],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,8],[17,2,0],[26],[5],[32,8],[17,0,0],[26],[11],[11],[12,3],[11],[32,9],[65,1],[113],[4,124],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,8],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,8],[17,1,0,"no_type_return"],[11],[5],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,8],[17,3,0],[26],[5],[32,3],[32,2],[32,8],[17,1,0],[26],[11],[11],[12,2],[11],[32,9],[65,1],[113],[4,124],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,5],[32,4],[32,8],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,8],[17,2,0,"no_type_return"],[11],[5],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,5],[32,4],[32,8],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,8],[17,2,0],[26],[11],[11],[12,1],[11],[32,9],[65,1],[113],[4,124],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,8],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,8],[17,3,0,"no_type_return"],[11],[5],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,8],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,8],[17,3,0],[26],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRej is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2038
2056
  params: [124,127], typedParams: 1,
2039
2057
  returns: [124,127], typedReturns: 1,
@@ -2041,7 +2059,7 @@ export const BuiltinFuncs = function() {
2041
2059
  globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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)],[68,0,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
2042
2060
  table: 1,
2043
2061
  };
2044
- this.anonymous_f3446a746cb0 = {
2062
+ this.anonymous_d055945c8770 = {
2045
2063
  wasm: (scope, {glbl,builtin,internalThrow}) => [...glbl(35, '_allRes', 124),[33,9],...glbl(35, '_allRes#type', 127),[33,10],[2,124],[32,10],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,0],[33,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,2],[33,3],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[33,5],[32,9],[252,3],[34,6],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,7],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,6],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,6],[17,2,0,"no_type_return"],[5],[32,6],[17,0,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,6],[17,2,0],[26],[5],[32,6],[17,0,0],[26],[11],[11],[12,3],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,6],[17,3,0,"no_type_return"],[5],[32,1],[32,0],[32,6],[17,1,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,6],[17,3,0],[26],[5],[32,1],[32,0],[32,6],[17,1,0],[26],[11],[11],[12,2],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,6],[17,4,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,6],[17,2,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,6],[17,4,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,6],[17,2,0],[26],[11],[11],[12,1],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,5,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,3,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,5,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,3,0],[26],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2046
2064
  params: [], typedParams: 1,
2047
2065
  returns: [124,127], typedReturns: 1,
@@ -2050,37 +2068,37 @@ export const BuiltinFuncs = function() {
2050
2068
  table: 1,
2051
2069
  };
2052
2070
  this.__Promise_allSettled = {
2053
- wasm: (scope, {glbl,builtin}) => [[32,0],...glbl(36, '_allPromises', 124),...glbl(35, '_allPromises', 124),[32,1],...glbl(36, '_allPromises#type', 127),[26],[68,0,0,0,0,0,0,56,64],[65,6],[16, ...builtin('__Porffor_allocate')],[184],[65,7],[68,...builtin('anonymous_ec597ee0eff0', true, true)],[65,6],[16, ...builtin('Promise')],[34,2],[15]],
2071
+ wasm: (scope, {glbl,builtin}) => [[32,0],...glbl(36, '_allPromises', 124),...glbl(35, '_allPromises', 124),[32,1],...glbl(36, '_allPromises#type', 127),[26],[68,0,0,0,0,0,0,56,64],[65,6],[16, ...builtin('__Porffor_allocate')],[184],[65,7],[68,...builtin('anonymous_37dfb2813f80', true, true)],[65,6],[16, ...builtin('Promise')],[34,2],[15]],
2054
2072
  params: [124,127], typedParams: 1,
2055
2073
  returns: [124,127], typedReturns: 1,
2056
2074
  locals: [127], localNames: ["promises","promises#type","#last_type"],
2057
2075
  globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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)],[68,0,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
2058
2076
  };
2059
- this.anonymous_ec597ee0eff0 = {
2060
- wasm: (scope, {allocPage,glbl,builtin,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,0,0,0,0,0,0,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],[65,0],[33,7],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],...number(allocPage(scope, 'bytestring: anonymous_ec597ee0eff0/status', 'i8') * pageSize, 124),[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, ...builtin('__Porffor_allocate')],[34,24],[65,1],[54,0,0],[3,64],[32,24],[32,5],[47,0,4],[59,0,4],[32,24],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, ...builtin('__Porffor_allocate')],[34,24],[65,1],[54,0,0],[3,64],[32,24],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,24],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,0,0],[97],[4,64],...glbl(35, '_allRes', 124),[33,33],...glbl(35, '_allRes#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,25],[33,26],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,27],[33,28],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,29],[33,30],[32,33],[252,3],[34,31],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,32],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,31],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,31],[17,2,0,"no_type_return"],[5],[32,31],[17,0,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,31],[17,2,0],[33,10],[5],[32,31],[17,0,0],[33,10],[11],[11],[12,3],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,31],[17,3,0,"no_type_return"],[5],[32,26],[32,25],[32,31],[17,1,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,31],[17,3,0],[33,10],[5],[32,26],[32,25],[32,31],[17,1,0],[33,10],[11],[11],[12,2],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,31],[17,4,0,"no_type_return"],[5],[32,26],[32,25],[32,28],[32,27],[32,31],[17,2,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,31],[17,4,0],[33,10],[5],[32,26],[32,25],[32,28],[32,27],[32,31],[17,2,0],[33,10],[11],[11],[12,1],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,5,0,"no_type_return"],[5],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,3,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,5,0],[33,10],[5],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,3,0],[33,10],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68,...builtin('anonymous_a0f5591ab300', true, true)],[65,6],[16, ...builtin('__Porffor_promise_runNext')],[33,10],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2077
+ this.anonymous_37dfb2813f80 = {
2078
+ wasm: (scope, {allocPage,glbl,builtin,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,0,0,0,0,0,0,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],[65,0],[33,7],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],...number(allocPage(scope, 'bytestring: anonymous_37dfb2813f80/status', 'i8') * pageSize, 124),[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, ...builtin('__Porffor_allocate')],[34,24],[65,1],[54,0,0],[3,64],[32,24],[32,5],[47,0,4],[59,0,4],[32,24],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[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],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, ...builtin('__Porffor_allocate')],[34,24],[65,1],[54,0,0],[3,64],[32,24],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,24],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_4bd0dd58b510', true, true)],[65,6],[68,...builtin('anonymous_0cb534e174c0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,0,0],[97],[4,64],...glbl(35, '_allRes', 124),[33,33],...glbl(35, '_allRes#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,25],[33,26],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,27],[33,28],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,29],[33,30],[32,33],[252,3],[34,31],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,32],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,31],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,31],[17,2,0,"no_type_return"],[5],[32,31],[17,0,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,31],[17,2,0],[33,10],[5],[32,31],[17,0,0],[33,10],[11],[11],[12,3],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,31],[17,3,0,"no_type_return"],[5],[32,26],[32,25],[32,31],[17,1,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,31],[17,3,0],[33,10],[5],[32,26],[32,25],[32,31],[17,1,0],[33,10],[11],[11],[12,2],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,31],[17,4,0,"no_type_return"],[5],[32,26],[32,25],[32,28],[32,27],[32,31],[17,2,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,31],[17,4,0],[33,10],[5],[32,26],[32,25],[32,28],[32,27],[32,31],[17,2,0],[33,10],[11],[11],[12,1],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,5,0,"no_type_return"],[5],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,3,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,5,0],[33,10],[5],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,3,0],[33,10],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68,...builtin('anonymous_bc7d03f63190', true, true)],[65,6],[16, ...builtin('__Porffor_promise_runNext')],[33,10],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2061
2079
  params: [124,127,124,127], typedParams: 1,
2062
2080
  returns: [124,127], typedReturns: 1,
2063
2081
  locals: [124,127,127,127,124,127,127,124,127,124,127,124,127,124,127,124,127,124,124,127,127,127,124,127,124,127,124,127,127,124], localNames: ["res","res#type","rej","rej#type","arr","forof_base_pointer","forof_length","forof_counter","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp","#proto_target","#proto_target#type","o","o#type","status","#makearray_pointer_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","#forof_allocd","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
2064
2082
  globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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)],[68,0,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
2065
2083
  table: 1,
2066
2084
  };
2067
- this.anonymous_3a401c4aba00 = {
2068
- wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: anonymous_3a401c4aba00/status', 'i8') * pageSize, 124),[34,4],[252,3],[34,5],[65,9],[54,1,0],[32,5],[65,230,0],[58,0,4],[32,5],[65,245,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,230,0],[58,0,7],[32,5],[65,233,0],[58,0,8],[32,5],[65,236,0],[58,0,9],[32,5],[65,236,0],[58,0,10],[32,5],[65,229,0],[58,0,11],[32,5],[65,228,0],[58,0,12],[32,5],[184],[33,4],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,243,0],[58,0,4],[32,5],[65,244,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,244,0],[58,0,7],[32,5],[65,245,0],[58,0,8],[32,5],[65,243,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,4],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,4],[34,6],[57,0,4],[32,7],[65,195,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,4],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,4],[11,"TYPESWITCH_end"],[26],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,5],[54,1,0],[32,5],[65,246,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,245,0],[58,0,7],[32,5],[65,229,0],[58,0,8],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,0],[32,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,0],[34,6],[57,0,4],[32,7],[32,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,0],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,0],[11,"TYPESWITCH_end"],[26],[2,127,"string_only"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,2],[32,3],[16, ...builtin('__Porffor_fastPush')],[33,12],[34,13,"string_only"],...glbl(35, '_allLen', 124),[34,14,"string_only"],[32,12,"string_only|start"],[65,195,1],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[113],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[33,19],[3,64],[32,18],[32,15],[106],[45,0,4],[32,18],[32,17],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,1],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11],[32,12],[65,195,0],[70],[32,12],[65,195,1],[70],[114],...glbl(35, '_allLen#type', 127),[65,195,0],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[114],[114],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[32,12],[65,195,1],[70],[4,64],[32,15],[32,16],[16, ...builtin('__Porffor_bytestringToString')],[33,15],[11],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[4,64],[32,17],[32,17],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,17],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[65,2],[108],[33,19],[3,64],[32,18],[32,15],[106],[47,0,4],[32,18],[32,17],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,2],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11,"string_only|end"],[97],[11,"string_only"],[4,64],...glbl(35, '_allRes', 124),[33,28],...glbl(35, '_allRes#type', 127),[33,11],[2,124],[32,11],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,28],[252,3],[34,26],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,12],[5],[32,26],[17,0,0],[33,12],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0],[33,12],[5],[32,21],[32,20],[32,26],[17,1,0],[33,12],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0],[33,12],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0],[33,12],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2085
+ this.anonymous_4bd0dd58b510 = {
2086
+ wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: anonymous_4bd0dd58b510/status', 'i8') * pageSize, 124),[34,4],[252,3],[34,5],[65,9],[54,1,0],[32,5],[65,230,0],[58,0,4],[32,5],[65,245,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,230,0],[58,0,7],[32,5],[65,233,0],[58,0,8],[32,5],[65,236,0],[58,0,9],[32,5],[65,236,0],[58,0,10],[32,5],[65,229,0],[58,0,11],[32,5],[65,228,0],[58,0,12],[32,5],[184],[33,4],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,243,0],[58,0,4],[32,5],[65,244,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,244,0],[58,0,7],[32,5],[65,245,0],[58,0,8],[32,5],[65,243,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,4],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,4],[34,6],[57,0,4],[32,7],[65,195,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,4],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,4],[11,"TYPESWITCH_end"],[26],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,5],[54,1,0],[32,5],[65,246,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,245,0],[58,0,7],[32,5],[65,229,0],[58,0,8],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,0],[32,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,0],[34,6],[57,0,4],[32,7],[32,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,0],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,0],[11,"TYPESWITCH_end"],[26],[2,127,"string_only"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,2],[32,3],[16, ...builtin('__Porffor_fastPush')],[33,12],[34,13,"string_only"],...glbl(35, '_allLen', 124),[34,14,"string_only"],[32,12,"string_only|start"],[65,195,1],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[113],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[33,19],[3,64],[32,18],[32,15],[106],[45,0,4],[32,18],[32,17],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,1],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11],[32,12],[65,195,0],[70],[32,12],[65,195,1],[70],[114],...glbl(35, '_allLen#type', 127),[65,195,0],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[114],[114],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[32,12],[65,195,1],[70],[4,64],[32,15],[32,16],[16, ...builtin('__Porffor_bytestringToString')],[33,15],[11],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[4,64],[32,17],[32,17],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,17],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[65,2],[108],[33,19],[3,64],[32,18],[32,15],[106],[47,0,4],[32,18],[32,17],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,2],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11,"string_only|end"],[97],[11,"string_only"],[4,64],...glbl(35, '_allRes', 124),[33,28],...glbl(35, '_allRes#type', 127),[33,11],[2,124],[32,11],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,28],[252,3],[34,26],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,12],[5],[32,26],[17,0,0],[33,12],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0],[33,12],[5],[32,21],[32,20],[32,26],[17,1,0],[33,12],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0],[33,12],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0],[33,12],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2069
2087
  params: [124,127], typedParams: 1,
2070
2088
  returns: [124,127], typedReturns: 1,
2071
2089
  locals: [124,127,124,127,124,127,124,124,127,127,127,124,124,127,127,127,127,127,127,124,127,124,127,124,127,127,124], localNames: ["r","r#type","o","o#type","status","#makearray_pointer_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","#typeswitch_tmp","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
2072
2090
  globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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)],[68,0,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
2073
2091
  table: 1,
2074
2092
  };
2075
- this.anonymous_17ecdf83eba0 = {
2076
- wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: anonymous_17ecdf83eba0/status', 'i8') * pageSize, 124),[34,4],[252,3],[34,5],[65,8],[54,1,0],[32,5],[65,242,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,234,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[65,227,0],[58,0,8],[32,5],[65,244,0],[58,0,9],[32,5],[65,229,0],[58,0,10],[32,5],[65,228,0],[58,0,11],[32,5],[184],[33,4],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,243,0],[58,0,4],[32,5],[65,244,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,244,0],[58,0,7],[32,5],[65,245,0],[58,0,8],[32,5],[65,243,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,4],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,4],[34,6],[57,0,4],[32,7],[65,195,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,4],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,4],[11,"TYPESWITCH_end"],[26],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,242,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,243,0],[58,0,7],[32,5],[65,239,0],[58,0,8],[32,5],[65,238,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,0],[32,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,0],[34,6],[57,0,4],[32,7],[32,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,0],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,0],[11,"TYPESWITCH_end"],[26],[2,127,"string_only"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,2],[32,3],[16, ...builtin('__Porffor_fastPush')],[33,12],[34,13,"string_only"],...glbl(35, '_allLen', 124),[34,14,"string_only"],[32,12,"string_only|start"],[65,195,1],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[113],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[33,19],[3,64],[32,18],[32,15],[106],[45,0,4],[32,18],[32,17],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,1],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11],[32,12],[65,195,0],[70],[32,12],[65,195,1],[70],[114],...glbl(35, '_allLen#type', 127),[65,195,0],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[114],[114],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[32,12],[65,195,1],[70],[4,64],[32,15],[32,16],[16, ...builtin('__Porffor_bytestringToString')],[33,15],[11],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[4,64],[32,17],[32,17],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,17],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[65,2],[108],[33,19],[3,64],[32,18],[32,15],[106],[47,0,4],[32,18],[32,17],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,2],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11,"string_only|end"],[97],[11,"string_only"],[4,64],...glbl(35, '_allRes', 124),[33,28],...glbl(35, '_allRes#type', 127),[33,11],[2,124],[32,11],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,28],[252,3],[34,26],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,12],[5],[32,26],[17,0,0],[33,12],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0],[33,12],[5],[32,21],[32,20],[32,26],[17,1,0],[33,12],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0],[33,12],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0],[33,12],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2093
+ this.anonymous_0cb534e174c0 = {
2094
+ wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: anonymous_0cb534e174c0/status', 'i8') * pageSize, 124),[34,4],[252,3],[34,5],[65,8],[54,1,0],[32,5],[65,242,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,234,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[65,227,0],[58,0,8],[32,5],[65,244,0],[58,0,9],[32,5],[65,229,0],[58,0,10],[32,5],[65,228,0],[58,0,11],[32,5],[184],[33,4],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,243,0],[58,0,4],[32,5],[65,244,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,244,0],[58,0,7],[32,5],[65,245,0],[58,0,8],[32,5],[65,243,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,4],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,4],[34,6],[57,0,4],[32,7],[65,195,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,4],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,4],[11,"TYPESWITCH_end"],[26],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,242,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,243,0],[58,0,7],[32,5],[65,239,0],[58,0,8],[32,5],[65,238,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,0],[32,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,0],[34,6],[57,0,4],[32,7],[32,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,0],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,0],[11,"TYPESWITCH_end"],[26],[2,127,"string_only"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,2],[32,3],[16, ...builtin('__Porffor_fastPush')],[33,12],[34,13,"string_only"],...glbl(35, '_allLen', 124),[34,14,"string_only"],[32,12,"string_only|start"],[65,195,1],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[113],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[33,19],[3,64],[32,18],[32,15],[106],[45,0,4],[32,18],[32,17],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,1],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11],[32,12],[65,195,0],[70],[32,12],[65,195,1],[70],[114],...glbl(35, '_allLen#type', 127),[65,195,0],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[114],[114],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[32,12],[65,195,1],[70],[4,64],[32,15],[32,16],[16, ...builtin('__Porffor_bytestringToString')],[33,15],[11],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[4,64],[32,17],[32,17],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,17],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[65,2],[108],[33,19],[3,64],[32,18],[32,15],[106],[47,0,4],[32,18],[32,17],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,2],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11,"string_only|end"],[97],[11,"string_only"],[4,64],...glbl(35, '_allRes', 124),[33,28],...glbl(35, '_allRes#type', 127),[33,11],[2,124],[32,11],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,28],[252,3],[34,26],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,12],[5],[32,26],[17,0,0],[33,12],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0],[33,12],[5],[32,21],[32,20],[32,26],[17,1,0],[33,12],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0],[33,12],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0],[33,12],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2077
2095
  params: [124,127], typedParams: 1,
2078
2096
  returns: [124,127], typedReturns: 1,
2079
2097
  locals: [124,127,124,127,124,127,124,124,127,127,127,124,124,127,127,127,127,127,127,124,127,124,127,124,127,127,124], localNames: ["r","r#type","o","o#type","status","#makearray_pointer_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","#typeswitch_tmp","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
2080
2098
  globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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)],[68,0,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
2081
2099
  table: 1,
2082
2100
  };
2083
- this.anonymous_a0f5591ab300 = {
2101
+ this.anonymous_bc7d03f63190 = {
2084
2102
  wasm: (scope, {glbl,builtin,internalThrow}) => [...glbl(35, '_allRes', 124),[33,9],...glbl(35, '_allRes#type', 127),[33,10],[2,124],[32,10],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,0],[33,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,2],[33,3],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[33,5],[32,9],[252,3],[34,6],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,7],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,6],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,6],[17,2,0,"no_type_return"],[5],[32,6],[17,0,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,6],[17,2,0],[26],[5],[32,6],[17,0,0],[26],[11],[11],[12,3],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,6],[17,3,0,"no_type_return"],[5],[32,1],[32,0],[32,6],[17,1,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,6],[17,3,0],[26],[5],[32,1],[32,0],[32,6],[17,1,0],[26],[11],[11],[12,2],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,6],[17,4,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,6],[17,2,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,6],[17,4,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,6],[17,2,0],[26],[11],[11],[12,1],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,5,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,3,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,5,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,3,0],[26],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2085
2103
  params: [], typedParams: 1,
2086
2104
  returns: [124,127], typedReturns: 1,
@@ -2539,13 +2557,13 @@ export const BuiltinFuncs = function() {
2539
2557
  locals: [127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","separator","separator#type","limit","limit#type","out","outLen","bsType","tmp","tmpLen","thisLen","sepLen","sepChar","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","#last_type","#typeswitch_tmp","i","x","__length_setter_tmp","sepInd","logictmp","#logicinner_tmp"],
2540
2558
  };
2541
2559
  this.__String_prototype_localeCompare = {
2542
- wasm: (scope, {builtin,internalThrow}) => [[32,2],[183],[32,3],[16, ...builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,1],[33,4],[5],[32,6],[65,1],[33,4],[11],[33,7],[65,0],[33,8],[3,64],[32,8],[32,7],[72],[4,64],[2,64],[32,0],[34,11],[40,1,0],[33,10],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,1],[33,4],[11],[33,9],[32,2],[34,11],[40,1,0],[33,10],[32,3],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,1],[33,4],[11],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,1],[33,4],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `'charCodeAt' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,9],[32,13],[74],[4,64],[65,1],[65,1],[15],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[11],[11],[32,8],[65,1],[106],[33,8],[12,1],[11],[11],[32,5],[32,6],[74],[4,64],[65,1],[65,1],[15],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[11],[65,0],[65,1],[15]],
2560
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, ...builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,1],[33,4],[5],[32,6],[65,1],[33,4],[11],[33,7],[65,0],[33,8],[3,64],[32,8],[32,7],[72],[4,64],[2,64],[32,0],[34,11],[40,1,0],[33,10],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,1],[33,4],[11],[33,9],[32,2],[34,11],[40,1,0],[33,10],[32,3],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,1],[33,4],[11],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,1],[33,4],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `'charCodeAt' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,9],[32,13],[74],[4,64],[65,1],[65,1],[15],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[11],[11],[32,8],[65,1],[106],[33,8],[12,1],[11],[11],[32,5],[32,6],[74],[4,64],[65,1],[65,1],[15],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[11],[65,0],[65,1],[15]],
2543
2561
  params: [127,127,127,127], typedParams: 1,
2544
2562
  returns: [127,127], typedReturns: 1,
2545
2563
  locals: [127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","compareString","compareString#type","#last_type","thisLen","compareLen","maxLen","i","a","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","b","#typeswitch_tmp"],
2546
2564
  };
2547
2565
  this.__ByteString_prototype_localeCompare = {
2548
- wasm: (scope, {builtin,internalThrow}) => [[32,2],[183],[32,3],[16, ...builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,1],[33,4],[5],[32,6],[65,1],[33,4],[11],[33,7],[65,0],[33,8],[3,64],[32,8],[32,7],[72],[4,64],[2,64],[32,0],[34,11],[40,1,0],[33,10],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,1],[33,4],[11],[33,9],[32,2],[34,11],[40,1,0],[33,10],[32,3],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,1],[33,4],[11],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,1],[33,4],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `'charCodeAt' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,9],[32,13],[74],[4,64],[65,1],[65,1],[15],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[11],[11],[32,8],[65,1],[106],[33,8],[12,1],[11],[11],[32,5],[32,6],[74],[4,64],[65,1],[65,1],[15],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[11],[65,0],[65,1],[15]],
2566
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, ...builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,1],[33,4],[5],[32,6],[65,1],[33,4],[11],[33,7],[65,0],[33,8],[3,64],[32,8],[32,7],[72],[4,64],[2,64],[32,0],[34,11],[40,1,0],[33,10],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,1],[33,4],[11],[33,9],[32,2],[34,11],[40,1,0],[33,10],[32,3],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,1],[33,4],[11],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,1],[33,4],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `'charCodeAt' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,9],[32,13],[74],[4,64],[65,1],[65,1],[15],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[11],[11],[32,8],[65,1],[106],[33,8],[12,1],[11],[11],[32,5],[32,6],[74],[4,64],[65,1],[65,1],[15],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[11],[65,0],[65,1],[15]],
2549
2567
  params: [127,127,127,127], typedParams: 1,
2550
2568
  returns: [127,127], typedReturns: 1,
2551
2569
  locals: [127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","compareString","compareString#type","#last_type","thisLen","compareLen","maxLen","i","a","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","b","#typeswitch_tmp"],
@@ -2170,10 +2170,16 @@ const generateCall = (scope, decl, _global, _name, unusedValue = false) => {
2170
2170
  const op = wasmOps[opName];
2171
2171
 
2172
2172
  const argOut = [];
2173
- for (let i = 0; i < op.args.length; i++) argOut.push(
2174
- ...generate(scope, decl.arguments[i]),
2175
- ...(op.args[i] ? [ Opcodes.i32_to ] : [])
2176
- );
2173
+ for (let i = 0; i < op.args.length; i++) {
2174
+ if (!op.args[i]) globalThis.noi32F64CallConv = true;
2175
+
2176
+ argOut.push(
2177
+ ...generate(scope, decl.arguments[i]),
2178
+ ...(op.args[i] ? [ Opcodes.i32_to ] : [])
2179
+ );
2180
+
2181
+ globalThis.noi32F64CallConv = false;
2182
+ }
2177
2183
 
2178
2184
  // literals only
2179
2185
  const imms = decl.arguments.slice(op.args.length).map(x => x.value);
@@ -2491,7 +2497,7 @@ const generateCall = (scope, decl, _global, _name, unusedValue = false) => {
2491
2497
  if (valtypeBinary === Valtype.i32 &&
2492
2498
  (func && func.params[paramOffset + i * (typedParams ? 2 : 1)] === Valtype.f64)
2493
2499
  ) {
2494
- out.push([ Opcodes.f64_convert_i32_s ]);
2500
+ out.push(Opcodes.i32_from);
2495
2501
  }
2496
2502
 
2497
2503
  if (typedParams) out = out.concat(getNodeType(scope, arg));
@@ -2515,7 +2521,7 @@ const generateCall = (scope, decl, _global, _name, unusedValue = false) => {
2515
2521
  out.push(Opcodes.i32_from);
2516
2522
  }
2517
2523
 
2518
- if (builtinFuncs[name] && builtinFuncs[name].returns?.[0] === Valtype.f64 && valtypeBinary === Valtype.i32) {
2524
+ if (builtinFuncs[name] && builtinFuncs[name].returns?.[0] === Valtype.f64 && valtypeBinary === Valtype.i32 && !globalThis.noi32F64CallConv) {
2519
2525
  out.push(Opcodes.i32_trunc_sat_f64_s);
2520
2526
  }
2521
2527
 
@@ -4746,8 +4752,8 @@ const generateObject = (scope, decl, global = false, name = '$undeclared') => {
4746
4752
  out.push([ Opcodes.local_tee, tmp ]);
4747
4753
 
4748
4754
  for (const x of decl.properties) {
4749
- const { method, shorthand, computed, kind, key, value } = x;
4750
- if (kind !== 'init') return todo(scope, 'complex objects are not supported yet', true);
4755
+ // method, shorthand are made into useful values by parser for us :)
4756
+ const { computed, kind, key, value } = x;
4751
4757
 
4752
4758
  let k = key;
4753
4759
  if (!computed && key.type !== 'Literal') k = {
@@ -4764,9 +4770,10 @@ const generateObject = (scope, decl, global = false, name = '$undeclared') => {
4764
4770
  ...toPropertyKey(scope, true),
4765
4771
 
4766
4772
  ...generate(scope, value),
4773
+ ...(kind !== 'init' ? [ Opcodes.i32_to_u ] : []),
4767
4774
  ...getNodeType(scope, value),
4768
4775
 
4769
- [ Opcodes.call, ...unsignedLEB128(includeBuiltin(scope, '__Porffor_object_set').index) ],
4776
+ [ Opcodes.call, ...unsignedLEB128(includeBuiltin(scope, `__Porffor_object_expr_${kind}`).index) ],
4770
4777
 
4771
4778
  [ Opcodes.drop ],
4772
4779
  [ Opcodes.drop ]
package/compiler/index.js CHANGED
@@ -117,14 +117,11 @@ export default (code, flags) => {
117
117
 
118
118
  const done = new Set();
119
119
  for (let i = 0; i < data.length; i++) {
120
- // const run = (x, done = new Set()) => {
121
120
  const run = x => {
122
121
  const out = [ x.name, [] ];
123
122
  if (x.includes && !done.has(x.name)) {
124
123
  done.add(x.name);
125
124
  for (const y of x.includes) {
126
- // out[1].push(run(funcsByName[y], new Set(done)));
127
- // out[1].push(run(funcsByName[y], done));
128
125
  out[1].push(run(funcsByName[y], done));
129
126
  }
130
127
  }
@@ -57,6 +57,7 @@ const compile = async (file, _funcs) => {
57
57
 
58
58
  const paramOverrides = {
59
59
  __Porffor_object_set: [ Valtype.i32, Valtype.i32, Valtype.i32, Valtype.i32, Valtype.f64, Valtype.i32 ],
60
+ __Porffor_object_expr_init: [ Valtype.i32, Valtype.i32, Valtype.i32, Valtype.i32, Valtype.f64, Valtype.i32 ],
60
61
  __Porffor_object_define: [ Valtype.i32, Valtype.i32, Valtype.i32, Valtype.i32, Valtype.f64, Valtype.i32, Valtype.i32, Valtype.i32 ],
61
62
  };
62
63
 
package/compiler/wrap.js CHANGED
@@ -75,9 +75,10 @@ const porfToJSValue = ({ memory, funcs, pages }, value, type, override = undefin
75
75
  porfToJSValue({ memory, funcs, pages }, vValue, vType);
76
76
 
77
77
  const flags = tail & 0xff;
78
+ const accessor = flags & 0b0001;
78
79
 
79
80
  let get, set;
80
- if (flags & 0b0001) {
81
+ if (accessor) {
81
82
  0, [ get, set ] = read(Uint32Array, memory, value + offset + 4, 2);
82
83
  }
83
84
 
@@ -99,11 +100,21 @@ ${flags & 0b0001 ? ` get func idx: ${get}
99
100
  const configurable = flags & 0b0010;
100
101
  const enumerable = flags & 0b0100;
101
102
 
102
- Object.defineProperty(out, k, {
103
- value: v,
104
- configurable,
105
- enumerable,
106
- });
103
+ if (accessor) {
104
+ // mock get/set funcs
105
+ Object.defineProperty(out, k, {
106
+ get: () => {},
107
+ set: () => {},
108
+ configurable,
109
+ enumerable,
110
+ });
111
+ } else {
112
+ Object.defineProperty(out, k, {
113
+ value: v,
114
+ configurable,
115
+ enumerable,
116
+ });
117
+ }
107
118
  }
108
119
 
109
120
  return out;
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.25.8+67d2a88c7",
4
+ "version": "0.25.9+5c6c180c0",
5
5
  "author": "CanadaHonk",
6
6
  "license": "MIT",
7
7
  "scripts": {},
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.25.8+67d2a88c7';
3
+ globalThis.version = '0.25.9+5c6c180c0';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {