porffor 0.30.8 → 0.30.10

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.
@@ -0,0 +1,18 @@
1
+ const underlyingFuncObjs: Map = new Map();
2
+ export const __Porffor_object_getObject = (obj: any): any => {
3
+ if (Porffor.rawType(obj) == Porffor.TYPES.function) {
4
+ const funcI32: i32 = Porffor.wasm`local.get ${obj}`;
5
+ let underlying: object = underlyingFuncObjs.get(funcI32);
6
+ if (underlying == null) {
7
+ underlying = {};
8
+ underlying.prototype = {};
9
+ underlying.prototype.constructor = obj;
10
+
11
+ underlyingFuncObjs.set(funcI32, underlying);
12
+ }
13
+
14
+ return underlying;
15
+ }
16
+
17
+ return obj;
18
+ };
@@ -16,19 +16,22 @@ import type {} from './porffor.d.ts';
16
16
  // enumerable - 0b0100
17
17
  // writable - 0b1000
18
18
 
19
- export const __Porffor_object_preventExtensions = (obj: object): void => {
19
+ export const __Porffor_object_preventExtensions = (obj: any): void => {
20
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
20
21
  let rootFlags: i32 = Porffor.wasm.i32.load8_u(obj, 0, 4);
21
22
  rootFlags |= 0b0001;
22
23
  Porffor.wasm.i32.store8(obj, rootFlags, 0, 4);
23
24
  };
24
25
 
25
- export const __Porffor_object_isInextensible = (obj: object): boolean => {
26
+ export const __Porffor_object_isInextensible = (obj: any): boolean => {
27
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
26
28
  const out: boolean = Porffor.wasm.i32.load8_u(obj, 0, 4) & 0b0001;
27
29
  return out;
28
30
  };
29
31
 
30
32
 
31
- export const __Porffor_object_overrideAllFlags = (obj: object, overrideOr: i32, overrideAnd: i32): void => {
33
+ export const __Porffor_object_overrideAllFlags = (obj: any, overrideOr: i32, overrideAnd: i32): void => {
34
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
32
35
  let ptr: i32 = Porffor.wasm`local.get ${obj}` + 5;
33
36
 
34
37
  const size: i32 = Porffor.wasm.i32.load(obj, 0, 0);
@@ -41,7 +44,8 @@ export const __Porffor_object_overrideAllFlags = (obj: object, overrideOr: i32,
41
44
  }
42
45
  };
43
46
 
44
- export const __Porffor_object_checkAllFlags = (obj: object, dataAnd: i32, accessorAnd: i32, dataExpected: i32, accessorExpected: i32): boolean => {
47
+ export const __Porffor_object_checkAllFlags = (obj: any, dataAnd: i32, accessorAnd: i32, dataExpected: i32, accessorExpected: i32): boolean => {
48
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
45
49
  let ptr: i32 = Porffor.wasm`local.get ${obj}` + 5;
46
50
 
47
51
  const size: i32 = Porffor.wasm.i32.load(obj, 0, 0);
@@ -101,8 +105,9 @@ export const __Porffor_object_accessorSet = (entryPtr: i32): Function => {
101
105
  };
102
106
 
103
107
 
104
- export const __Porffor_object_lookup = (obj: object, target: any): i32 => {
108
+ export const __Porffor_object_lookup = (obj: any, target: any): i32 => {
105
109
  if (Porffor.wasm`local.get ${obj}` == 0) return -1;
110
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
106
111
 
107
112
  const targetType: i32 = Porffor.wasm`local.get ${target+1}`;
108
113
 
@@ -171,14 +176,9 @@ f64.convert_i32_u
171
176
  i32.const 1
172
177
  return`;
173
178
  }
174
-
175
- // undefined
176
- Porffor.wasm`
177
- f64.const 0
178
- i32.const 128
179
- return`;
180
179
  }
181
180
 
181
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
182
182
  const entryPtr: i32 = __Porffor_object_lookup(obj, key);
183
183
  if (entryPtr == -1) {
184
184
  Porffor.wasm`
@@ -244,9 +244,10 @@ export const __Porffor_object_writeKey = (ptr: i32, key: any): void => {
244
244
  Porffor.wasm.i32.store(ptr, keyEnc, 0, 0);
245
245
  };
246
246
 
247
- export const __Porffor_object_set = (obj: object, key: any, value: any): any => {
247
+ export const __Porffor_object_set = (obj: any, key: any, value: any): any => {
248
248
  if (Porffor.wasm`local.get ${obj}` == 0) throw new TypeError('Cannot set property of null');
249
249
 
250
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
250
251
  let entryPtr: i32 = __Porffor_object_lookup(obj, key);
251
252
  let flags: i32;
252
253
  if (entryPtr == -1) {
@@ -326,7 +327,8 @@ export const __Porffor_object_set = (obj: object, key: any, value: any): any =>
326
327
  return value;
327
328
  };
328
329
 
329
- export const __Porffor_object_define = (obj: object, key: any, value: any, flags: i32): void => {
330
+ export const __Porffor_object_define = (obj: any, key: any, value: any, flags: i32): void => {
331
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
330
332
  let entryPtr: i32 = __Porffor_object_lookup(obj, key);
331
333
  if (entryPtr == -1) {
332
334
  // add new entry
@@ -407,10 +409,9 @@ export const __Porffor_object_delete = (obj: any, key: any): boolean => {
407
409
  __Porffor_funcLut_deleteLength(obj);
408
410
  return true;
409
411
  }
410
-
411
- return true;
412
412
  }
413
413
 
414
+ if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_getObject(obj);
414
415
  if (Porffor.rawType(obj) != Porffor.TYPES.object) {
415
416
  // todo: support non-pure objects
416
417
  return true;
@@ -2,29 +2,36 @@
2
2
  import { number } from './embedding.js';
3
3
 
4
4
  export const BuiltinFuncs = function() {
5
+ this.__Porffor_object_getObject = {
6
+ wasm: (scope, {glbl,builtin,internalThrow}) => [[32,1],[184],[68,0,0,0,0,0,0,24,64],[97],[4,64],[32,0],[33,2],...glbl(35, 'underlyingFuncObjs', 124),[33,4],[65,20],[33,5],[32,4],[32,5],[32,2],[65,1],[16, builtin('__Map_prototype_get')],[26],[34,3],[68,0,0,0,0,0,0,0,0],[97],[4,64],[16, builtin('__Porffor_allocate')],[184],[34,3],[33,9],[16, builtin('__Porffor_allocate')],[34,11],[65,9],[54,1,0],[32,11],[65,240,0],[58,0,4],[32,11],[65,242,0],[58,0,5],[32,11],[65,239,0],[58,0,6],[32,11],[65,244,0],[58,0,7],[32,11],[65,239,0],[58,0,8],[32,11],[65,244,0],[58,0,9],[32,11],[65,249,0],[58,0,10],[32,11],[65,240,0],[58,0,11],[32,11],[65,229,0],[58,0,12],[32,11],[184],[33,10],[32,9],[252,3],[65,7],[32,10],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, builtin('__Porffor_allocate')],[184],[65,7],[16, builtin('__Porffor_object_set')],[26],[26],[32,3],[33,9],[65,128,128,4],[34,11],[65,9],[54,1,0],[32,11],[65,240,0],[58,0,4],[32,11],[65,242,0],[58,0,5],[32,11],[65,239,0],[58,0,6],[32,11],[65,244,0],[58,0,7],[32,11],[65,239,0],[58,0,8],[32,11],[65,244,0],[58,0,9],[32,11],[65,249,0],[58,0,10],[32,11],[65,240,0],[58,0,11],[32,11],[65,229,0],[58,0,12],[32,11],[184],[33,13],[32,9],[252,3],[65,7],[32,13],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, builtin('__Porffor_object_get')],[33,6],[33,9],[16, builtin('__Porffor_allocate')],[34,11],[65,11],[54,1,0],[32,11],[65,227,0],[58,0,4],[32,11],[65,239,0],[58,0,5],[32,11],[65,238,0],[58,0,6],[32,11],[65,243,0],[58,0,7],[32,11],[65,244,0],[58,0,8],[32,11],[65,242,0],[58,0,9],[32,11],[65,245,0],[58,0,10],[32,11],[65,227,0],[58,0,11],[32,11],[65,244,0],[58,0,12],[32,11],[65,239,0],[58,0,13],[32,11],[65,242,0],[58,0,14],[32,11],[184],[33,10],[32,6],[33,16],[2,124],[32,16],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,9],[252,3],[32,6],[32,10],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[32,0],[32,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,16],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,9],[252,3],[32,6],[32,10],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[32,0],[32,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,16],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,9],[252,3],[32,10],[252,3],[65,9],[108],[106],[34,8],[32,0],[34,7],[57,0,4],[32,8],[32,1],[58,0,12],[32,7],[12,1],[11],[32,16],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,0],[34,7],[252,3],[58,0,4],[32,7],[12,1],[11],[32,16],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,0],[34,7],[252,2],[58,0,4],[32,7],[12,1],[11],[32,16],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,0],[34,7],[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,7],[12,1],[11],[32,16],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[32,0],[34,7],[252,3],[59,0,4],[32,7],[12,1],[11],[32,16],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[32,0],[34,7],[252,2],[59,0,4],[32,7],[12,1],[11],[32,16],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,0],[34,7],[252,3],[54,0,4],[32,7],[12,1],[11],[32,16],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,0],[34,7],[252,2],[54,0,4],[32,7],[12,1],[11],[32,16],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,0],[34,7],[182],[56,0,4],[32,7],[12,1],[11],[32,16],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[32,0],[34,7],[57,0,4],[32,7],[12,1],[11],[32,16],[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],...glbl(35, 'underlyingFuncObjs', 124),[33,4],[65,20],[33,5],[32,4],[32,5],[32,2],[65,1],[32,3],[65,7],[16, builtin('__Map_prototype_set')],[33,6],[26],[11],[32,3],[65,7],[15],[11],[32,0],[32,1],[15]],
7
+ params: [124,127], typedParams: 1,
8
+ returns: [124,127], typedReturns: 1,
9
+ locals: [124,124,124,127,127,124,127,124,124,127,127,124,127,127,127], localNames: ["obj","obj#type","funcI32","underlying","#proto_target","#proto_target#type","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","#swap","#member_prop","#loadArray_offset","#member_allocd","#typeswitch_tmp1"],
10
+ globalInits: {underlyingFuncObjs: (scope, {glbl,builtin}) => [[68,0,0,0,0,0,0,240,63],[65,6],[16, builtin('__Porffor_allocate')],[184],[65,7],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[26],...glbl(36, 'underlyingFuncObjs', 124)]},
11
+ };
5
12
  this.__Porffor_object_preventExtensions = {
6
- wasm: (scope, {}) => [[32,0],[45,0,4],[34,2],[65,1],[114],[33,2],[32,0],[32,2],[58,0,4],[65,0],[65,128,1],[15]],
13
+ wasm: (scope, {builtin}) => [[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,2],[252,2],[34,0],[32,2],[33,1],[26],[11],[32,0],[45,0,4],[34,3],[65,1],[114],[33,3],[32,0],[32,3],[58,0,4],[65,0],[65,128,1],[15]],
7
14
  params: [127,127], typedParams: 1,
8
15
  returns: [127,127], typedReturns: 1,
9
- locals: [127], localNames: ["obj","obj#type","rootFlags"],
16
+ locals: [127,127], localNames: ["obj","obj#type","#last_type","rootFlags"],
10
17
  };
11
18
  this.__Porffor_object_isInextensible = {
12
- wasm: (scope, {}) => [[32,0],[45,0,4],[65,1],[113],[34,2],[65,2],[15]],
19
+ wasm: (scope, {builtin}) => [[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,2],[252,2],[34,0],[32,2],[33,1],[26],[11],[32,0],[45,0,4],[65,1],[113],[34,3],[65,2],[15]],
13
20
  params: [127,127], typedParams: 1,
14
21
  returns: [127,127], typedReturns: 1,
15
- locals: [127], localNames: ["obj","obj#type","out"],
22
+ locals: [127,127], localNames: ["obj","obj#type","#last_type","out"],
16
23
  };
17
24
  this.__Porffor_object_overrideAllFlags = {
18
- wasm: (scope, {}) => [[32,0],[65,5],[106],[33,6],[32,0],[40,0,0],[33,7],[32,6],[32,7],[65,14],[108],[106],[33,8],[3,64],[32,6],[32,8],[72],[4,64],[32,6],[45,0,12],[34,9],[32,2],[114],[32,4],[113],[33,9],[32,6],[32,9],[58,0,12],[32,6],[65,14],[106],[34,6],[12,1],[11],[11],[65,0],[65,128,1],[15]],
25
+ wasm: (scope, {builtin}) => [[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[65,5],[106],[33,7],[32,0],[40,0,0],[33,8],[32,7],[32,8],[65,14],[108],[106],[33,9],[3,64],[32,7],[32,9],[72],[4,64],[32,7],[45,0,12],[34,10],[32,2],[114],[32,4],[113],[33,10],[32,7],[32,10],[58,0,12],[32,7],[65,14],[106],[34,7],[12,1],[11],[11],[65,0],[65,128,1],[15]],
19
26
  params: [127,127,127,127,127,127], typedParams: 1,
20
27
  returns: [127,127], typedReturns: 1,
21
- locals: [127,127,127,127], localNames: ["obj","obj#type","overrideOr","overrideOr#type","overrideAnd","overrideAnd#type","ptr","size","endPtr","flags"],
28
+ locals: [127,127,127,127,127], localNames: ["obj","obj#type","overrideOr","overrideOr#type","overrideAnd","overrideAnd#type","#last_type","ptr","size","endPtr","flags"],
22
29
  };
23
30
  this.__Porffor_object_checkAllFlags = {
24
- wasm: (scope, {}) => [[32,0],[65,5],[106],[33,10],[32,0],[40,0,0],[33,11],[32,10],[32,11],[65,14],[108],[106],[33,12],[3,64],[32,10],[32,12],[72],[4,64],[32,10],[45,0,12],[34,13],[65,1],[113],[4,64],[32,13],[32,4],[113],[32,8],[71],[4,64],[65,0],[65,2],[15],[11],[5],[32,13],[32,2],[113],[32,6],[71],[4,64],[65,0],[65,2],[15],[11],[11],[32,10],[65,14],[106],[34,10],[12,1],[11],[11],[65,1],[65,2],[15]],
31
+ wasm: (scope, {builtin}) => [[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,10],[252,2],[34,0],[32,10],[33,1],[26],[11],[32,0],[65,5],[106],[33,11],[32,0],[40,0,0],[33,12],[32,11],[32,12],[65,14],[108],[106],[33,13],[3,64],[32,11],[32,13],[72],[4,64],[32,11],[45,0,12],[34,14],[65,1],[113],[4,64],[32,14],[32,4],[113],[32,8],[71],[4,64],[65,0],[65,2],[15],[11],[5],[32,14],[32,2],[113],[32,6],[71],[4,64],[65,0],[65,2],[15],[11],[11],[32,11],[65,14],[106],[34,11],[12,1],[11],[11],[65,1],[65,2],[15]],
25
32
  params: [127,127,127,127,127,127,127,127,127,127], typedParams: 1,
26
33
  returns: [127,127], typedReturns: 1,
27
- locals: [127,127,127,127], localNames: ["obj","obj#type","dataAnd","dataAnd#type","accessorAnd","accessorAnd#type","dataExpected","dataExpected#type","accessorExpected","accessorExpected#type","ptr","size","endPtr","flags"],
34
+ locals: [127,127,127,127,127], localNames: ["obj","obj#type","dataAnd","dataAnd#type","accessorAnd","accessorAnd#type","dataExpected","dataExpected#type","accessorExpected","accessorExpected#type","#last_type","ptr","size","endPtr","flags"],
28
35
  };
29
36
  this.__Porffor_object_packAccessor = {
30
37
  wasm: (scope, {}) => [[32,2],[173],[66,32],[134],[32,0],[173],[132],[191],[65,1],[15]],
@@ -45,16 +52,16 @@ export const BuiltinFuncs = function() {
45
52
  locals: [127], localNames: ["entryPtr","entryPtr#type","out"],
46
53
  };
47
54
  this.__Porffor_object_lookup = {
48
- wasm: (scope, {}) => [[32,0],[69],[4,64],[65,127],[65,1],[15],[11],[32,3],[33,4],[32,0],[65,5],[106],[33,5],[32,0],[40,0,0],[33,6],[32,5],[32,6],[65,14],[108],[106],[33,7],[32,4],[65,195,1],[70],[4,64],[32,2],[33,8],[3,64],[32,5],[32,7],[72],[4,64],[2,64],[32,5],[40,0,0],[34,9],[69],[4,64],[12,2],[11],[32,9],[65,31],[118],[4,64],[12,1],[11],[32,9],[34,10],[32,8],[33,13],[34,11],[32,13],[71],[4,127],[32,11],[40,0,0],[34,12],[32,13],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,14],[32,12],[33,15],[3,64],[32,14],[32,11],[106],[45,0,4],[32,14],[32,13],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,14],[65,1],[106],[34,14],[32,15],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,5],[65,1],[15],[11],[11],[32,5],[65,14],[106],[34,5],[12,1],[11],[11],[5],[32,4],[65,195,0],[70],[4,64],[32,2],[33,8],[3,64],[32,5],[32,7],[72],[4,64],[2,64],[32,5],[40,0,0],[34,9],[69],[4,64],[12,2],[11],[32,9],[65,30],[118],[65,2],[70],[4,64],[32,9],[65,255,255,255,255,7],[113],[34,10],[32,8],[33,13],[34,11],[32,13],[71],[4,127],[32,11],[40,0,0],[34,12],[32,13],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,14],[32,12],[65,2],[108],[33,15],[3,64],[32,14],[32,11],[106],[47,0,4],[32,14],[32,13],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,14],[65,2],[106],[34,14],[32,15],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,5],[65,1],[15],[11],[11],[11],[32,5],[65,14],[106],[34,5],[12,1],[11],[11],[5],[32,2],[33,16],[3,64],[32,5],[32,7],[72],[4,64],[2,64],[32,5],[40,0,0],[34,9],[69],[4,64],[12,2],[11],[32,9],[65,30],[118],[65,3],[70],[4,64],[32,9],[65,255,255,255,255,3],[113],[34,17],[32,16],[70],[4,64],[32,5],[65,1],[15],[11],[11],[11],[32,5],[65,14],[106],[34,5],[12,1],[11],[11],[11],[11],[65,127],[65,1],[15]],
55
+ wasm: (scope, {builtin}) => [[32,0],[69],[4,64],[65,127],[65,1],[15],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,4],[252,2],[34,0],[32,4],[33,1],[26],[11],[32,3],[33,5],[32,0],[65,5],[106],[33,6],[32,0],[40,0,0],[33,7],[32,6],[32,7],[65,14],[108],[106],[33,8],[32,5],[65,195,1],[70],[4,64],[32,2],[33,9],[3,64],[32,6],[32,8],[72],[4,64],[2,64],[32,6],[40,0,0],[34,10],[69],[4,64],[12,2],[11],[32,10],[65,31],[118],[4,64],[12,1],[11],[32,10],[34,11],[32,9],[33,14],[34,12],[32,14],[71],[4,127],[32,12],[40,0,0],[34,13],[32,14],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,15],[32,13],[33,16],[3,64],[32,15],[32,12],[106],[45,0,4],[32,15],[32,14],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,15],[65,1],[106],[34,15],[32,16],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,6],[65,1],[15],[11],[11],[32,6],[65,14],[106],[34,6],[12,1],[11],[11],[5],[32,5],[65,195,0],[70],[4,64],[32,2],[33,9],[3,64],[32,6],[32,8],[72],[4,64],[2,64],[32,6],[40,0,0],[34,10],[69],[4,64],[12,2],[11],[32,10],[65,30],[118],[65,2],[70],[4,64],[32,10],[65,255,255,255,255,7],[113],[34,11],[32,9],[33,14],[34,12],[32,14],[71],[4,127],[32,12],[40,0,0],[34,13],[32,14],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,15],[32,13],[65,2],[108],[33,16],[3,64],[32,15],[32,12],[106],[47,0,4],[32,15],[32,14],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,15],[65,2],[106],[34,15],[32,16],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,6],[65,1],[15],[11],[11],[11],[32,6],[65,14],[106],[34,6],[12,1],[11],[11],[5],[32,2],[33,17],[3,64],[32,6],[32,8],[72],[4,64],[2,64],[32,6],[40,0,0],[34,10],[69],[4,64],[12,2],[11],[32,10],[65,30],[118],[65,3],[70],[4,64],[32,10],[65,255,255,255,255,3],[113],[34,18],[32,17],[70],[4,64],[32,6],[65,1],[15],[11],[11],[11],[32,6],[65,14],[106],[34,6],[12,1],[11],[11],[11],[11],[65,127],[65,1],[15]],
49
56
  params: [127,127,127,127], typedParams: 1,
50
57
  returns: [127,127], typedReturns: 1,
51
- locals: [127,127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","target","target#type","targetType","ptr","size","endPtr","targetStr","keyRaw","keyStr","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","targetSym","keySym"],
58
+ locals: [127,127,127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","target","target#type","#last_type","targetType","ptr","size","endPtr","targetStr","keyRaw","keyStr","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","targetSym","keySym"],
52
59
  };
53
60
  this.__Porffor_object_get = {
54
- wasm: (scope, {allocPage,builtin,internalThrow}) => [[32,0],[69],[4,64],...internalThrow(scope, 'TypeError', `Cannot get property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(scope, 'bytestring: __Porffor_object_get/tmp', 'i8') * pageSize, 127),[34,4],[34,5],[65,4],[54,1,0],[32,5],[65,238,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,237,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_name')],[33,11],[65,195,1],[33,12],[32,11],[184],[32,12],[15],[11],[32,4],[34,5],[65,6],[54,1,0],[32,5],[65,236,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,238,0],[58,0,6],[32,5],[65,231,0],[58,0,7],[32,5],[65,244,0],[58,0,8],[32,5],[65,232,0],[58,0,9],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_length')],[34,11],[184],[65,1],[15],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[32,1],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,13],[65,127],[70],[4,64],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,13],[47,0,12],[34,15],[65,1],[113],[4,64],[32,13],[65,1],[16, builtin('__Porffor_object_accessorGet')],[26],[34,16],[69],[4,64],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,16],[16, builtin('__Porffor_funcLut_flags')],[34,17],[65,2],[113],[4,64],[68,0,0,0,0,0,0,0,0],[65,0],[32,0],[184],[32,1],[32,16],[17,2,0],[15],[5],[32,16],[17,0,0],[15],[11],[11],[32,13],[43,0,4],[32,15],[65,8],[118],[15]],
61
+ wasm: (scope, {allocPage,builtin,internalThrow}) => [[32,0],[69],[4,64],...internalThrow(scope, 'TypeError', `Cannot get property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(scope, 'bytestring: __Porffor_object_get/tmp', 'i8') * pageSize, 127),[34,4],[34,5],[65,4],[54,1,0],[32,5],[65,238,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,237,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_name')],[33,11],[65,195,1],[33,12],[32,11],[184],[32,12],[15],[11],[32,4],[34,5],[65,6],[54,1,0],[32,5],[65,236,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,238,0],[58,0,6],[32,5],[65,231,0],[58,0,7],[32,5],[65,244,0],[58,0,8],[32,5],[65,232,0],[58,0,9],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_length')],[34,11],[184],[65,1],[15],[11],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,13],[252,2],[34,0],[32,13],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,14],[65,127],[70],[4,64],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,14],[47,0,12],[34,15],[65,1],[113],[4,64],[32,14],[65,1],[16, builtin('__Porffor_object_accessorGet')],[26],[34,16],[69],[4,64],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,16],[16, builtin('__Porffor_funcLut_flags')],[34,17],[65,2],[113],[4,64],[68,0,0,0,0,0,0,0,0],[65,0],[32,0],[184],[32,1],[32,16],[17,2,0],[15],[5],[32,16],[17,0,0],[15],[11],[11],[32,14],[43,0,4],[32,15],[65,8],[118],[15]],
55
62
  params: [127,127,127,127], typedParams: 1,
56
63
  returns: [124,127], typedReturns: 1,
57
- locals: [127,127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","tmp","#makearray_pointer_tmp","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","o","t","entryPtr","#last_type","tail","get","funcFlags"],
64
+ locals: [127,127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","tmp","#makearray_pointer_tmp","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","o","t","#last_type","entryPtr","tail","get","funcFlags"],
58
65
  };
59
66
  this.__Porffor_object_writeKey = {
60
67
  wasm: (scope, {}) => [[32,2],[33,4],[32,3],[65,195,0],[70],[4,64],[32,4],[65,128,128,128,128,120],[114],[33,4],[5],[32,3],[65,5],[70],[4,64],[32,4],[65,128,128,128,128,124],[114],[33,4],[11],[11],[32,0],[32,4],[54,0,0],[65,0],[65,128,1],[15]],
@@ -63,22 +70,22 @@ export const BuiltinFuncs = function() {
63
70
  locals: [127], localNames: ["ptr","ptr#type","key","key#type","keyEnc"],
64
71
  };
65
72
  this.__Porffor_object_set = {
66
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[69],[4,64],...internalThrow(scope, 'TypeError', `Cannot set property of null`),[11],[32,0],[65,7],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,6],[65,127],[70],[4,64],[32,0],[65,7],[16, builtin('__Porffor_object_isInextensible')],[33,7],[33,9],[32,7],[33,10],[2,127],[32,10],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,9],[40,1,0],[12,1],[11],[32,10],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,9],[40,1,0],[12,1],[11],[32,9],[11,"TYPESWITCH_end"],[4,64],[32,4],[32,5],[15],[11],[32,0],[40,0,0],[33,11],[32,0],[32,11],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,11],[65,14],[108],[106],[34,6],[65,1],[32,2],[32,3],[16, builtin('__Porffor_object_writeKey')],[33,7],[26],[65,14],[33,8],[5],[32,6],[47,0,12],[34,12],[65,1],[113],[4,64],[32,6],[65,1],[16, builtin('__Porffor_object_accessorSet')],[26],[34,13],[69],[4,64],[32,4],[32,5],[15],[11],[32,13],[16, builtin('__Porffor_funcLut_flags')],[34,14],[65,2],[113],[4,64],[68,0,0,0,0,0,0,0,0],[65,0],[32,0],[184],[65,7],[32,4],[32,5],[32,13],[17,3,0],[26],[26],[5],[32,4],[32,5],[32,13],[17,1,0],[26],[26],[11],[32,4],[32,5],[15],[11],[32,12],[65,8],[113],[69],[4,64],[32,4],[32,5],[15],[11],[32,12],[65,255,1],[113],[33,8],[11],[32,6],[32,4],[57,0,4],[32,6],[32,8],[32,5],[65,8],[116],[106],[59,0,12],[32,4],[32,5],[15]],
73
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[69],[4,64],...internalThrow(scope, 'TypeError', `Cannot set property of null`),[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,7],[65,127],[70],[4,64],[32,0],[32,1],[16, builtin('__Porffor_object_isInextensible')],[33,6],[33,9],[32,6],[33,10],[2,127],[32,10],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,9],[40,1,0],[12,1],[11],[32,10],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,9],[40,1,0],[12,1],[11],[32,9],[11,"TYPESWITCH_end"],[4,64],[32,4],[32,5],[15],[11],[32,0],[40,0,0],[33,11],[32,0],[32,11],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,11],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16, builtin('__Porffor_object_writeKey')],[33,6],[26],[65,14],[33,8],[5],[32,7],[47,0,12],[34,12],[65,1],[113],[4,64],[32,7],[65,1],[16, builtin('__Porffor_object_accessorSet')],[26],[34,13],[69],[4,64],[32,4],[32,5],[15],[11],[32,13],[16, builtin('__Porffor_funcLut_flags')],[34,14],[65,2],[113],[4,64],[68,0,0,0,0,0,0,0,0],[65,0],[32,0],[184],[65,7],[32,4],[32,5],[32,13],[17,3,0],[26],[26],[5],[32,4],[32,5],[32,13],[17,1,0],[26],[26],[11],[32,4],[32,5],[15],[11],[32,12],[65,8],[113],[69],[4,64],[32,4],[32,5],[15],[11],[32,12],[65,255,1],[113],[33,8],[11],[32,7],[32,4],[57,0,4],[32,7],[32,8],[32,5],[65,8],[116],[106],[59,0,12],[32,4],[32,5],[15]],
67
74
  params: [127,127,127,127,124,127], typedParams: 1,
68
75
  returns: [124,127], typedReturns: 1,
69
- locals: [127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","value","value#type","entryPtr","#last_type","flags","#logicinner_tmp","#typeswitch_tmp1","size","tail","set","funcFlags"],
76
+ locals: [127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","value","value#type","#last_type","entryPtr","flags","#logicinner_tmp","#typeswitch_tmp1","size","tail","set","funcFlags"],
70
77
  };
71
78
  this.__Porffor_object_define = {
72
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[65,7],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,8],[65,127],[70],[4,64],[32,0],[65,7],[16, builtin('__Porffor_object_isInextensible')],[33,9],[33,10],[32,9],[33,11],[2,127],[32,11],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,10],[40,1,0],[12,1],[11],[32,11],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,10],[40,1,0],[12,1],[11],[32,10],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Cannot define property, object is inextensible`),[11],[32,0],[40,0,0],[33,12],[32,0],[32,12],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,12],[65,14],[108],[106],[34,8],[65,1],[32,2],[32,3],[16, builtin('__Porffor_object_writeKey')],[33,9],[26],[5],[32,8],[47,0,12],[34,13],[65,2],[113],[69],[4,64],[32,13],[65,15],[113],[32,6],[71],[4,64],[65,0],[33,14],[32,13],[65,7],[113],[32,6],[71],[4,64],[65,1],[33,14],[5],[32,13],[65,1],[113],[69],[34,15],[4,127],[32,13],[65,8],[113],[69],[65,2],[33,9],[5],[32,15],[65,2],[33,9],[11],[33,10],[32,9],[33,11],[2,127],[32,11],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,10],[40,1,0],[12,1],[11],[32,11],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,10],[40,1,0],[12,1],[11],[32,10],[11,"TYPESWITCH_end"],[4,64],[32,6],[65,8],[113],[4,64],[65,1],[33,14],[5],[32,8],[43,0,4],[32,4],[98],[32,8],[45,0,13],[32,5],[71],[114],[33,14],[11],[11],[11],[32,14],[4,64],...internalThrow(scope, 'TypeError', `Cannot redefine property`),[11],[11],[11],[11],[32,8],[32,4],[57,0,4],[32,8],[32,6],[32,5],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
79
+ wasm: (scope, {builtin,internalThrow}) => [[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,8],[252,2],[34,0],[32,8],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,9],[65,127],[70],[4,64],[32,0],[32,1],[16, builtin('__Porffor_object_isInextensible')],[33,8],[33,10],[32,8],[33,11],[2,127],[32,11],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,10],[40,1,0],[12,1],[11],[32,11],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,10],[40,1,0],[12,1],[11],[32,10],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Cannot define property, object is inextensible`),[11],[32,0],[40,0,0],[33,12],[32,0],[32,12],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,12],[65,14],[108],[106],[34,9],[65,1],[32,2],[32,3],[16, builtin('__Porffor_object_writeKey')],[33,8],[26],[5],[32,9],[47,0,12],[34,13],[65,2],[113],[69],[4,64],[32,13],[65,15],[113],[32,6],[71],[4,64],[65,0],[33,14],[32,13],[65,7],[113],[32,6],[71],[4,64],[65,1],[33,14],[5],[32,13],[65,1],[113],[69],[34,15],[4,127],[32,13],[65,8],[113],[69],[65,2],[33,8],[5],[32,15],[65,2],[33,8],[11],[33,10],[32,8],[33,11],[2,127],[32,11],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,10],[40,1,0],[12,1],[11],[32,11],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,10],[40,1,0],[12,1],[11],[32,10],[11,"TYPESWITCH_end"],[4,64],[32,6],[65,8],[113],[4,64],[65,1],[33,14],[5],[32,9],[43,0,4],[32,4],[98],[32,9],[45,0,13],[32,5],[71],[114],[33,14],[11],[11],[11],[32,14],[4,64],...internalThrow(scope, 'TypeError', `Cannot redefine property`),[11],[11],[11],[11],[32,9],[32,4],[57,0,4],[32,9],[32,6],[32,5],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
73
80
  params: [127,127,127,127,124,127,127,127], typedParams: 1,
74
81
  returns: [127,127], typedReturns: 1,
75
- locals: [127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","value","value#type","flags","flags#type","entryPtr","#last_type","#logicinner_tmp","#typeswitch_tmp1","size","tail","err","logictmp"],
82
+ locals: [127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","value","value#type","flags","flags#type","#last_type","entryPtr","#logicinner_tmp","#typeswitch_tmp1","size","tail","err","logictmp"],
76
83
  };
77
84
  this.__Porffor_object_delete = {
78
- wasm: (scope, {allocPage,builtin,internalThrow}) => [[32,0],[69],[4,64],...internalThrow(scope, 'TypeError', `Cannot delete property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(scope, 'bytestring: __Porffor_object_delete/tmp', 'i8') * pageSize, 127),[34,4],[34,5],[65,4],[54,1,0],[32,5],[65,238,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,237,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_deleteName')],[65,1],[65,2],[15],[11],[32,4],[34,5],[65,6],[54,1,0],[32,5],[65,236,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,238,0],[58,0,6],[32,5],[65,231,0],[58,0,7],[32,5],[65,244,0],[58,0,8],[32,5],[65,232,0],[58,0,9],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_deleteLength')],[65,1],[65,2],[15],[11],[65,1],[65,2],[15],[11],[32,1],[65,7],[71],[4,64],[65,1],[65,2],[15],[11],[32,0],[32,1],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,11],[65,127],[70],[4,64],[65,1],[65,2],[15],[11],[32,11],[47,0,12],[34,13],[65,2],[113],[69],[4,64],[65,0],[65,2],[15],[11],[32,11],[32,0],[107],[65,14],[109],[33,14],[32,0],[40,0,0],[33,15],[32,0],[32,15],[65,1],[107],[34,15],[54,0,0],[32,15],[32,14],[74],[4,64],[32,11],[32,11],[65,14],[106],[32,15],[32,14],[107],[65,14],[108],[252,10,0,0],[11],[65,1],[65,2],[15]],
85
+ wasm: (scope, {allocPage,builtin,internalThrow}) => [[32,0],[69],[4,64],...internalThrow(scope, 'TypeError', `Cannot delete property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(scope, 'bytestring: __Porffor_object_delete/tmp', 'i8') * pageSize, 127),[34,4],[34,5],[65,4],[54,1,0],[32,5],[65,238,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,237,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_deleteName')],[65,1],[65,2],[15],[11],[32,4],[34,5],[65,6],[54,1,0],[32,5],[65,236,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,238,0],[58,0,6],[32,5],[65,231,0],[58,0,7],[32,5],[65,244,0],[58,0,8],[32,5],[65,232,0],[58,0,9],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_deleteLength')],[65,1],[65,2],[15],[11],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16, builtin('__Porffor_object_getObject')],[33,11],[252,2],[34,0],[32,11],[33,1],[26],[11],[32,1],[65,7],[71],[4,64],[65,1],[65,2],[15],[11],[32,0],[32,1],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,12],[65,127],[70],[4,64],[65,1],[65,2],[15],[11],[32,12],[47,0,12],[34,13],[65,2],[113],[69],[4,64],[65,0],[65,2],[15],[11],[32,12],[32,0],[107],[65,14],[109],[33,14],[32,0],[40,0,0],[33,15],[32,0],[32,15],[65,1],[107],[34,15],[54,0,0],[32,15],[32,14],[74],[4,64],[32,12],[32,12],[65,14],[106],[32,15],[32,14],[107],[65,14],[108],[252,10,0,0],[11],[65,1],[65,2],[15]],
79
86
  params: [127,127,127,127], typedParams: 1,
80
87
  returns: [127,127], typedReturns: 1,
81
- locals: [127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","tmp","#makearray_pointer_tmp","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","entryPtr","#last_type","tail","ind","size"],
88
+ locals: [127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","tmp","#makearray_pointer_tmp","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","#last_type","entryPtr","tail","ind","size"],
82
89
  };
83
90
  this.__Porffor_object_isEnumerable = {
84
91
  wasm: (scope, {}) => [[32,0],[45,0,12],[65,4],[113],[34,2],[65,2],[15]],
@@ -1798,7 +1805,7 @@ export const BuiltinFuncs = function() {
1798
1805
  locals: [127], localNames: ["obj","obj#type","prop","prop#type","#last_type"],
1799
1806
  };
1800
1807
  this.__Object_assign = {
1801
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,4],[32,1],[33,5],[2,127],[32,5],[65,0],[70],[4,64,"TYPESWITCH|empty"],[65,1],[12,1],[11],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,4],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,5],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Argument is nullish, expected object`),[11],[32,2],[252,3],[33,6],[65,0],[33,8],[65,208,0],[65,208,0],[70],[65,208,0],[65,19],[70],[114],[65,208,0],[65,195,0],[70],[114],[65,208,0],[65,195,1],[70],[114],[65,208,0],[65,216,0],[78],[65,208,0],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11],[32,6],[40,1,0],[34,7],[4,64],[3,64],[32,6],[43,0,4],[33,9],[32,6],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],[32,11],[32,12],[16, builtin('__Object_keys')],[26],[33,13],[32,11],[32,12],[16, builtin('__Object_values')],[26],[33,15],[32,13],[252,3],[40,1,0],[184],[33,16],[68,0,0,0,0,0,0,0,0],[33,17],[3,64],[32,17],[32,16],[99],[4,64],[2,64],[32,0],[33,20],[32,13],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[33,21],[32,1],[33,5],[2,124],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,20],[252,3],[32,1],[32,21],[32,14],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[34,14],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,5],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,20],[252,3],[32,21],[252,3],[65,9],[108],[106],[34,19],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[57,0,4],[32,19],[32,14],[58,0,12],[32,18],[12,1],[11],[32,5],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,3],[58,0,4],[32,18],[12,1],[11],[32,5],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,2],[58,0,4],[32,18],[12,1],[11],[32,5],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[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,18],[12,1],[11],[32,5],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,2],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,3],[59,0,4],[32,18],[12,1],[11],[32,5],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,2],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,2],[59,0,4],[32,18],[12,1],[11],[32,5],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,4],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,3],[54,0,4],[32,18],[12,1],[11],[32,5],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,4],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,2],[54,0,4],[32,18],[12,1],[11],[32,5],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,4],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[182],[56,0,4],[32,18],[12,1],[11],[32,5],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,8],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[57,0,4],[32,18],[12,1],[11],[32,5],[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,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[11,"TYPESWITCH_end"],[26],[11],[32,17],[68,0,0,0,0,0,0,240,63],[160],[33,17],[12,1],[11],[11],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[11],[32,0],[32,1],[15]],
1808
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,4],[32,1],[33,5],[2,127],[32,5],[65,0],[70],[4,64,"TYPESWITCH|empty"],[65,1],[12,1],[11],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,4],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,5],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Argument is nullish, expected object`),[11],[32,2],[252,3],[33,6],[65,0],[33,8],[65,208,0],[65,208,0],[70],[65,208,0],[65,19],[70],[114],[65,208,0],[65,195,0],[70],[114],[65,208,0],[65,195,1],[70],[114],[65,208,0],[65,216,0],[78],[65,208,0],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11],[32,6],[40,1,0],[34,7],[4,64],[3,64],[32,6],[43,0,4],[33,9],[32,6],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],[32,11],[32,12],[16, builtin('__Object_keys')],[26],[33,13],[32,11],[32,12],[16, builtin('__Object_values')],[26],[33,15],[32,13],[252,3],[40,1,0],[184],[33,16],[68,0,0,0,0,0,0,0,0],[33,17],[3,64],[32,17],[32,16],[99],[4,64],[2,64],[32,0],[33,20],[32,13],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[33,21],[32,1],[33,5],[2,124],[32,5],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,20],[252,3],[32,1],[32,21],[32,14],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[34,14],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,20],[252,3],[32,1],[32,21],[32,14],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[34,14],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,5],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,20],[252,3],[32,21],[252,3],[65,9],[108],[106],[34,19],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[57,0,4],[32,19],[32,14],[58,0,12],[32,18],[12,1],[11],[32,5],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,3],[58,0,4],[32,18],[12,1],[11],[32,5],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,2],[58,0,4],[32,18],[12,1],[11],[32,5],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[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,18],[12,1],[11],[32,5],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,2],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,3],[59,0,4],[32,18],[12,1],[11],[32,5],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,2],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,2],[59,0,4],[32,18],[12,1],[11],[32,5],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,4],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,3],[54,0,4],[32,18],[12,1],[11],[32,5],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,4],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[252,2],[54,0,4],[32,18],[12,1],[11],[32,5],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,4],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[182],[56,0,4],[32,18],[12,1],[11],[32,5],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,20],[252,3],[40,0,4],[32,21],[252,3],[65,8],[108],[106],[32,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[34,18],[57,0,4],[32,18],[12,1],[11],[32,5],[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,15],[33,20],[32,17],[34,22],[252,3],[65,9],[108],[32,20],[252,3],[106],[34,23],[43,0,4],[32,23],[45,0,12],[33,14],[11,"TYPESWITCH_end"],[26],[11],[32,17],[68,0,0,0,0,0,0,240,63],[160],[33,17],[12,1],[11],[11],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[11],[32,0],[32,1],[15]],
1802
1809
  params: [124,127,124,127], typedParams: 1,
1803
1810
  returns: [124,127], typedReturns: 1,
1804
1811
  locals: [124,127,127,127,127,124,127,124,127,124,127,124,124,124,124,127,124,124,124,127,127,127,127], localNames: ["target","target#type","sources","sources#type","#logicinner_tmp","#typeswitch_tmp1","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_tmp0","#forof_tmp0#type","x","x#type","keys","#last_type","vals","len","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#member_prop","#loadArray_offset","#member_allocd","#swap","#forof_allocd"],
@@ -1908,7 +1915,7 @@ export const BuiltinFuncs = function() {
1908
1915
  locals: [124,127,124,124,127,127,127,127,127], localNames: ["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","#member_obj","#member_prop","#loadArray_offset","#last_type","#member_allocd","#swap","#makearray_pointer_tmp"],
1909
1916
  };
1910
1917
  this.__Object_setPrototypeOf = {
1911
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,4],[32,1],[33,5],[2,127],[32,5],[65,0],[70],[4,64,"TYPESWITCH|empty"],[65,1],[12,1],[11],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,4],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,5],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Object is nullish, expected object`),[11],[32,2],[252,2],[32,3],[16, builtin('__Porffor_object_isObjectOrNull')],[33,6],[183],[33,4],[32,6],[33,5],[2,124],[32,5],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,4],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,5],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,4],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,4],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Prototype should be an object or null`),[11],[32,1],[184],[68,0,0,0,0,0,0,28,64],[98],[4,64],[32,0],[32,1],[15],[11],[32,0],[33,9],[16, builtin('__Porffor_allocate')],[34,11],[65,9],[54,1,0],[32,11],[65,223,0],[58,0,4],[32,11],[65,223,0],[58,0,5],[32,11],[65,240,0],[58,0,6],[32,11],[65,242,0],[58,0,7],[32,11],[65,239,0],[58,0,8],[32,11],[65,244,0],[58,0,9],[32,11],[65,239,0],[58,0,10],[32,11],[65,223,0],[58,0,11],[32,11],[65,223,0],[58,0,12],[32,11],[184],[33,10],[32,1],[33,5],[2,124],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,9],[252,3],[32,1],[32,10],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[32,2],[32,3],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,5],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,9],[252,3],[32,10],[252,3],[65,9],[108],[106],[34,8],[32,2],[34,7],[57,0,4],[32,8],[32,3],[58,0,12],[32,7],[12,1],[11],[32,5],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[252,3],[58,0,4],[32,7],[12,1],[11],[32,5],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[252,2],[58,0,4],[32,7],[12,1],[11],[32,5],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[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,7],[12,1],[11],[32,5],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[32,2],[34,7],[252,3],[59,0,4],[32,7],[12,1],[11],[32,5],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[32,2],[34,7],[252,2],[59,0,4],[32,7],[12,1],[11],[32,5],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[252,3],[54,0,4],[32,7],[12,1],[11],[32,5],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[252,2],[54,0,4],[32,7],[12,1],[11],[32,5],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[182],[56,0,4],[32,7],[12,1],[11],[32,5],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[32,2],[34,7],[57,0,4],[32,7],[12,1],[11],[32,5],[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,2],[11,"TYPESWITCH_end"],[26],[32,0],[32,1],[15]],
1918
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,4],[32,1],[33,5],[2,127],[32,5],[65,0],[70],[4,64,"TYPESWITCH|empty"],[65,1],[12,1],[11],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,4],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,5],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Object is nullish, expected object`),[11],[32,2],[252,2],[32,3],[16, builtin('__Porffor_object_isObjectOrNull')],[33,6],[183],[33,4],[32,6],[33,5],[2,124],[32,5],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,4],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,5],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,4],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,4],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Prototype should be an object or null`),[11],[32,1],[184],[68,0,0,0,0,0,0,28,64],[98],[4,64],[32,0],[32,1],[15],[11],[32,0],[33,9],[16, builtin('__Porffor_allocate')],[34,11],[65,9],[54,1,0],[32,11],[65,223,0],[58,0,4],[32,11],[65,223,0],[58,0,5],[32,11],[65,240,0],[58,0,6],[32,11],[65,242,0],[58,0,7],[32,11],[65,239,0],[58,0,8],[32,11],[65,244,0],[58,0,9],[32,11],[65,239,0],[58,0,10],[32,11],[65,223,0],[58,0,11],[32,11],[65,223,0],[58,0,12],[32,11],[184],[33,10],[32,1],[33,5],[2,124],[32,5],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,9],[252,3],[32,1],[32,10],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[32,2],[32,3],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,9],[252,3],[32,1],[32,10],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[32,2],[32,3],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,5],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,9],[252,3],[32,10],[252,3],[65,9],[108],[106],[34,8],[32,2],[34,7],[57,0,4],[32,8],[32,3],[58,0,12],[32,7],[12,1],[11],[32,5],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[252,3],[58,0,4],[32,7],[12,1],[11],[32,5],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[252,2],[58,0,4],[32,7],[12,1],[11],[32,5],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[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,7],[12,1],[11],[32,5],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[32,2],[34,7],[252,3],[59,0,4],[32,7],[12,1],[11],[32,5],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[32,2],[34,7],[252,2],[59,0,4],[32,7],[12,1],[11],[32,5],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[252,3],[54,0,4],[32,7],[12,1],[11],[32,5],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[252,2],[54,0,4],[32,7],[12,1],[11],[32,5],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[182],[56,0,4],[32,7],[12,1],[11],[32,5],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[32,2],[34,7],[57,0,4],[32,7],[12,1],[11],[32,5],[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,2],[11,"TYPESWITCH_end"],[26],[32,0],[32,1],[15]],
1912
1919
  params: [124,127,124,127], typedParams: 1,
1913
1920
  returns: [124,127], typedReturns: 1,
1914
1921
  locals: [124,127,127,124,127,124,124,127,127], localNames: ["obj","obj#type","proto","proto#type","#logicinner_tmp","#typeswitch_tmp1","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","#swap"],
@@ -2125,7 +2132,7 @@ export const BuiltinFuncs = function() {
2125
2132
  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]]},
2126
2133
  };
2127
2134
  this['#anonymous_5'] = {
2128
- 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],...glbl(35, '_allPromises#type', 127),[65,208,0],[70],...glbl(35, '_allPromises#type', 127),[65,19],[70],[114],...glbl(35, '_allPromises#type', 127),[65,195,0],[70],[114],...glbl(35, '_allPromises#type', 127),[65,195,1],[70],[114],...glbl(35, '_allPromises#type', 127),[65,216,0],[78],...glbl(35, '_allPromises#type', 127),[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,14],[2,64],[32,14],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[33,8],[32,5],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],...number(allocPage(scope, 'bytestring: #anonymous_5/status', 'i8') * pageSize, 124),[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[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,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, builtin('__Porffor_allocate')],[34,26],[65,1],[54,0,0],[3,64],[32,26],[32,5],[47,0,4],[59,0,4],[32,26],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[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,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[33,8],[32,5],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[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,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, builtin('__Porffor_allocate')],[34,26],[65,1],[54,0,0],[3,64],[32,26],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,26],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[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,39],...glbl(35, '_allRes#type', 127),[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,27],[33,28],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,29],[33,30],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,31],[33,32],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,33],[33,34],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,35],[33,36],[32,39],[252,3],[34,37],[65,128,1],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[34,38],[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],[2,64],[2,64],[32,37],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,37],[17,2,0,"no_type_return"],[5],[32,37],[17,0,0,"no_type_return"],[11],[5],[32,38],[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,37],[17,2,0],[33,12],[5],[32,37],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,37],[17,3,0,"no_type_return"],[5],[32,28],[32,27],[32,37],[17,1,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,37],[17,3,0],[33,12],[5],[32,28],[32,27],[32,37],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,30],[32,29],[32,37],[17,4,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,37],[17,2,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,30],[32,29],[32,37],[17,4,0],[33,12],[5],[32,28],[32,27],[32,30],[32,29],[32,37],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,5,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,3,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,5,0],[33,12],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,6,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,4,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,6,0],[33,12],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,7,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,5,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,7,0],[33,12],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,5,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],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68, ...builtin('#anonymous_8', true, true)],[65,6],[16, builtin('__Porffor_promise_runNext')],[33,12],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2135
+ 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],...glbl(35, '_allPromises#type', 127),[65,208,0],[70],...glbl(35, '_allPromises#type', 127),[65,19],[70],[114],...glbl(35, '_allPromises#type', 127),[65,195,0],[70],[114],...glbl(35, '_allPromises#type', 127),[65,195,1],[70],[114],...glbl(35, '_allPromises#type', 127),[65,216,0],[78],...glbl(35, '_allPromises#type', 127),[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,14],[2,64],[32,14],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[33,8],[32,5],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],...number(allocPage(scope, 'bytestring: #anonymous_5/status', 'i8') * pageSize, 124),[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[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,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, builtin('__Porffor_allocate')],[34,26],[65,1],[54,0,0],[3,64],[32,26],[32,5],[47,0,4],[59,0,4],[32,26],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[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,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[33,8],[32,5],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[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,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[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],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, builtin('__Porffor_allocate')],[34,26],[65,1],[54,0,0],[3,64],[32,26],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,26],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,10],[32,11],[16, builtin('__ecma262_IsPromise')],[33,12],[33,13],[32,12],[33,14],[2,127],[32,14],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,14],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,10],[33,15],[32,11],[33,16],[32,11],[33,14],[2,124],[32,14],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,15],[32,16],[68, ...builtin('#anonymous_6', true, true)],[65,6],[68, ...builtin('#anonymous_7', true, true)],[65,6],[16, builtin('__Promise_prototype_then')],[33,12],[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,17],[65,7],[33,18],[68,0,0,0,0,0,0,24,65],[34,19],[252,3],[34,20],[65,9],[54,1,0],[32,20],[65,230,0],[58,0,4],[32,20],[65,245,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,230,0],[58,0,7],[32,20],[65,233,0],[58,0,8],[32,20],[65,236,0],[58,0,9],[32,20],[65,236,0],[58,0,10],[32,20],[65,229,0],[58,0,11],[32,20],[65,228,0],[58,0,12],[32,20],[184],[33,19],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,6],[54,1,0],[32,20],[65,243,0],[58,0,4],[32,20],[65,244,0],[58,0,5],[32,20],[65,225,0],[58,0,6],[32,20],[65,244,0],[58,0,7],[32,20],[65,245,0],[58,0,8],[32,20],[65,243,0],[58,0,9],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,19],[65,195,1],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,19],[34,21],[57,0,4],[32,22],[65,195,1],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,19],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,19],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,19],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,19],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,19],[11,"TYPESWITCH_end"],[26],[32,17],[33,23],[16, builtin('__Porffor_allocate')],[34,20],[65,5],[54,1,0],[32,20],[65,246,0],[58,0,4],[32,20],[65,225,0],[58,0,5],[32,20],[65,236,0],[58,0,6],[32,20],[65,245,0],[58,0,7],[32,20],[65,229,0],[58,0,8],[32,20],[184],[33,24],[32,18],[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,23],[252,3],[32,18],[32,24],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,10],[32,11],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,14],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,23],[252,3],[32,24],[252,3],[65,9],[108],[106],[34,22],[32,10],[34,21],[57,0,4],[32,22],[32,11],[58,0,12],[32,21],[12,1],[11],[32,14],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,3],[58,0,4],[32,21],[12,1],[11],[32,14],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[252,2],[58,0,4],[32,21],[12,1],[11],[32,14],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[106],[32,10],[34,21],[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,21],[12,1],[11],[32,14],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,3],[59,0,4],[32,21],[12,1],[11],[32,14],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,2],[108],[106],[32,10],[34,21],[252,2],[59,0,4],[32,21],[12,1],[11],[32,14],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,3],[54,0,4],[32,21],[12,1],[11],[32,14],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[252,2],[54,0,4],[32,21],[12,1],[11],[32,14],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,4],[108],[106],[32,10],[34,21],[182],[56,0,4],[32,21],[12,1],[11],[32,14],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,23],[252,3],[40,0,4],[32,24],[252,3],[65,8],[108],[106],[32,10],[34,21],[57,0,4],[32,21],[12,1],[11],[32,14],[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,10],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,17],[32,18],[16, builtin('__Porffor_array_fastPush')],[33,12],[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,39],...glbl(35, '_allRes#type', 127),[33,14],[2,124],[32,14],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,27],[33,28],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,29],[33,30],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,31],[33,32],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,33],[33,34],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,35],[33,36],[32,39],[252,3],[34,37],[65,128,1],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[34,38],[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],[2,64],[2,64],[32,37],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,37],[17,2,0,"no_type_return"],[5],[32,37],[17,0,0,"no_type_return"],[11],[5],[32,38],[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,37],[17,2,0],[33,12],[5],[32,37],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,37],[17,3,0,"no_type_return"],[5],[32,28],[32,27],[32,37],[17,1,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,37],[17,3,0],[33,12],[5],[32,28],[32,27],[32,37],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,30],[32,29],[32,37],[17,4,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,37],[17,2,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,30],[32,29],[32,37],[17,4,0],[33,12],[5],[32,28],[32,27],[32,30],[32,29],[32,37],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,5,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,3,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,5,0],[33,12],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,6,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,4,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,6,0],[33,12],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,38],[65,1],[113],[4,124],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,7,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,5,0,"no_type_return"],[11],[5],[32,38],[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,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,7,0],[33,12],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,5,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],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68, ...builtin('#anonymous_8', true, true)],[65,6],[16, builtin('__Porffor_promise_runNext')],[33,12],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2129
2136
  params: [124,127,124,127], typedParams: 1,
2130
2137
  returns: [124,127], typedReturns: 1,
2131
2138
  locals: [124,127,127,127,124,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,124,127,124,127,127,124], localNames: ["res","res#type","rej","rej#type","arr","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_tmp0","#forof_tmp0#type","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#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_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee"],
@@ -2133,7 +2140,7 @@ export const BuiltinFuncs = function() {
2133
2140
  table: 1,
2134
2141
  };
2135
2142
  this['#anonymous_6'] = {
2136
- wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: #anonymous_6/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_array_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,32],...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],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,26],[33,27],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,28],[33,29],[32,32],[252,3],[34,30],[65,128,1],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[34,31],[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],[2,64],[2,64],[32,30],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,2,0,"no_type_return"],[5],[32,30],[17,0,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,2,0],[33,12],[5],[32,30],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,30],[17,1,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,3,0],[33,12],[5],[32,21],[32,20],[32,30],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,30],[17,2,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,30],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,30],[17,3,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,30],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,27],[32,26],[32,30],[17,6,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,30],[17,4,0,"no_type_return"],[11],[5],[32,31],[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,27],[32,26],[32,30],[17,6,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,30],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,27],[32,26],[32,29],[32,28],[32,30],[17,7,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,29],[32,28],[32,30],[17,5,0,"no_type_return"],[11],[5],[32,31],[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,27],[32,26],[32,29],[32,28],[32,30],[17,7,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,29],[32,28],[32,30],[17,5,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]],
2143
+ wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: #anonymous_6/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,6],[70],[4,64,"TYPESWITCH|Function"],[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,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,6],[70],[4,64,"TYPESWITCH|Function"],[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,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_array_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,32],...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],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,26],[33,27],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,28],[33,29],[32,32],[252,3],[34,30],[65,128,1],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[34,31],[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],[2,64],[2,64],[32,30],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,2,0,"no_type_return"],[5],[32,30],[17,0,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,2,0],[33,12],[5],[32,30],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,30],[17,1,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,3,0],[33,12],[5],[32,21],[32,20],[32,30],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,30],[17,2,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,30],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,30],[17,3,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,30],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,27],[32,26],[32,30],[17,6,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,30],[17,4,0,"no_type_return"],[11],[5],[32,31],[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,27],[32,26],[32,30],[17,6,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,30],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,27],[32,26],[32,29],[32,28],[32,30],[17,7,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,29],[32,28],[32,30],[17,5,0,"no_type_return"],[11],[5],[32,31],[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,27],[32,26],[32,29],[32,28],[32,30],[17,7,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,29],[32,28],[32,30],[17,5,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]],
2137
2144
  params: [124,127], typedParams: 1,
2138
2145
  returns: [124,127], typedReturns: 1,
2139
2146
  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,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_tmp1","#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_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee"],
@@ -2141,7 +2148,7 @@ export const BuiltinFuncs = function() {
2141
2148
  table: 1,
2142
2149
  };
2143
2150
  this['#anonymous_7'] = {
2144
- wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: #anonymous_7/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_array_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,32],...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],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,26],[33,27],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,28],[33,29],[32,32],[252,3],[34,30],[65,128,1],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[34,31],[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],[2,64],[2,64],[32,30],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,2,0,"no_type_return"],[5],[32,30],[17,0,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,2,0],[33,12],[5],[32,30],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,30],[17,1,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,3,0],[33,12],[5],[32,21],[32,20],[32,30],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,30],[17,2,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,30],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,30],[17,3,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,30],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,27],[32,26],[32,30],[17,6,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,30],[17,4,0,"no_type_return"],[11],[5],[32,31],[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,27],[32,26],[32,30],[17,6,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,30],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,27],[32,26],[32,29],[32,28],[32,30],[17,7,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,29],[32,28],[32,30],[17,5,0,"no_type_return"],[11],[5],[32,31],[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,27],[32,26],[32,29],[32,28],[32,30],[17,7,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,29],[32,28],[32,30],[17,5,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]],
2151
+ wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: #anonymous_7/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,6],[70],[4,64,"TYPESWITCH|Function"],[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,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,6],[70],[4,64,"TYPESWITCH|Function"],[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,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_array_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,32],...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],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,26],[33,27],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,28],[33,29],[32,32],[252,3],[34,30],[65,128,1],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[34,31],[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],[2,64],[2,64],[32,30],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,2,0,"no_type_return"],[5],[32,30],[17,0,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,2,0],[33,12],[5],[32,30],[17,0,0],[33,12],[11],[11],[12,5],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,30],[17,1,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,3,0],[33,12],[5],[32,21],[32,20],[32,30],[17,1,0],[33,12],[11],[11],[12,4],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,30],[17,2,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,30],[17,2,0],[33,12],[11],[11],[12,3],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,30],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,30],[17,3,0,"no_type_return"],[11],[5],[32,31],[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,30],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,30],[17,3,0],[33,12],[11],[11],[12,2],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,27],[32,26],[32,30],[17,6,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,30],[17,4,0,"no_type_return"],[11],[5],[32,31],[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,27],[32,26],[32,30],[17,6,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,30],[17,4,0],[33,12],[11],[11],[12,1],[11],[32,31],[65,1],[113],[4,124],[32,31],[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,27],[32,26],[32,29],[32,28],[32,30],[17,7,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,29],[32,28],[32,30],[17,5,0,"no_type_return"],[11],[5],[32,31],[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,27],[32,26],[32,29],[32,28],[32,30],[17,7,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,27],[32,26],[32,29],[32,28],[32,30],[17,5,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]],
2145
2152
  params: [124,127], typedParams: 1,
2146
2153
  returns: [124,127], typedReturns: 1,
2147
2154
  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,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_tmp1","#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_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee"],
@@ -2176,7 +2183,7 @@ export const BuiltinFuncs = function() {
2176
2183
  locals: [127,124,127,124,124,127,127,127], localNames: ["target","target#type","prop","prop#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap"],
2177
2184
  };
2178
2185
  this.__Reflect_set = {
2179
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, builtin('__Porffor_object_isObject')],[33,6],[183],[33,7],[32,6],[33,8],[2,124],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Target is a non-object`),[11],[6,64],[32,0],[33,11],[32,2],[33,12],[32,1],[33,8],[2,124],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,11],[252,3],[32,1],[32,12],[32,3],[16, builtin('__ecma262_ToPropertyKey')],[33,13],[252,3],[32,13],[32,4],[32,5],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,11],[252,3],[32,12],[252,3],[65,9],[108],[106],[34,10],[32,4],[34,9],[57,0,4],[32,10],[32,5],[58,0,12],[32,9],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[32,4],[34,9],[252,3],[58,0,4],[32,9],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[32,4],[34,9],[252,2],[58,0,4],[32,9],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[32,4],[34,9],[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,9],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[32,4],[34,9],[252,3],[59,0,4],[32,9],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[32,4],[34,9],[252,2],[59,0,4],[32,9],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[32,4],[34,9],[252,3],[54,0,4],[32,9],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[32,4],[34,9],[252,2],[54,0,4],[32,9],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[32,4],[34,9],[182],[56,0,4],[32,9],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[32,4],[34,9],[57,0,4],[32,9],[12,1],[11],[32,8],[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],[68,0,0,0,0,0,0,240,63],[65,2],[15],[25],[68,0,0,0,0,0,0,0,0],[65,2],[15],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2186
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, builtin('__Porffor_object_isObject')],[33,6],[183],[33,7],[32,6],[33,8],[2,124],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Target is a non-object`),[11],[6,64],[32,0],[33,11],[32,2],[33,12],[32,1],[33,8],[2,124],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,11],[252,3],[32,1],[32,12],[32,3],[16, builtin('__ecma262_ToPropertyKey')],[33,13],[252,3],[32,13],[32,4],[32,5],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,11],[252,3],[32,1],[32,12],[32,3],[16, builtin('__ecma262_ToPropertyKey')],[33,13],[252,3],[32,13],[32,4],[32,5],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,11],[252,3],[32,12],[252,3],[65,9],[108],[106],[34,10],[32,4],[34,9],[57,0,4],[32,10],[32,5],[58,0,12],[32,9],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[32,4],[34,9],[252,3],[58,0,4],[32,9],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[32,4],[34,9],[252,2],[58,0,4],[32,9],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[32,4],[34,9],[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,9],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[32,4],[34,9],[252,3],[59,0,4],[32,9],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[32,4],[34,9],[252,2],[59,0,4],[32,9],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[32,4],[34,9],[252,3],[54,0,4],[32,9],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[32,4],[34,9],[252,2],[54,0,4],[32,9],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[32,4],[34,9],[182],[56,0,4],[32,9],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[32,4],[34,9],[57,0,4],[32,9],[12,1],[11],[32,8],[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],[68,0,0,0,0,0,0,240,63],[65,2],[15],[25],[68,0,0,0,0,0,0,0,0],[65,2],[15],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
2180
2187
  params: [124,127,124,127,124,127], typedParams: 1,
2181
2188
  returns: [124,127], typedReturns: 1,
2182
2189
  locals: [127,124,127,124,127,124,124,127], localNames: ["target","target#type","prop","prop#type","value","value#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap"],
@@ -2613,13 +2620,13 @@ export const BuiltinFuncs = function() {
2613
2620
  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_tmp1","i","x","__length_setter_tmp","sepInd","logictmp","#logicinner_tmp"],
2614
2621
  };
2615
2622
  this.__String_prototype_localeCompare = {
2616
- 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]],
2623
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[184],[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]],
2617
2624
  params: [127,127,127,127], typedParams: 1,
2618
2625
  returns: [127,127], typedReturns: 1,
2619
2626
  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_tmp1"],
2620
2627
  };
2621
2628
  this.__ByteString_prototype_localeCompare = {
2622
- 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]],
2629
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[184],[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]],
2623
2630
  params: [127,127,127,127], typedParams: 1,
2624
2631
  returns: [127,127], typedReturns: 1,
2625
2632
  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_tmp1"],
@@ -2724,7 +2724,7 @@ const generateCall = (scope, decl, _global, _name, unusedValue = false) => {
2724
2724
  if (valtypeBinary === Valtype.i32 &&
2725
2725
  (func && func.params[paramOffset + i * (typedParams ? 2 : 1)] === Valtype.f64)
2726
2726
  ) {
2727
- out.push(Opcodes.i32_from);
2727
+ out.push([ Opcodes.f64_convert_i32_u ]);
2728
2728
  }
2729
2729
 
2730
2730
  if (typedParams) out = out.concat(arg._callType ?? getNodeType(scope, arg));
@@ -3513,6 +3513,39 @@ const generateAssign = (scope, decl, _global, _name, valueUnused = false) => {
3513
3513
  // ...setLastType(scope, getNodeType(scope, decl)),
3514
3514
  ],
3515
3515
 
3516
+ [TYPES.function]: [
3517
+ ...objectWasm,
3518
+ Opcodes.i32_to_u,
3519
+ ...(op === '=' ? [] : [ [ Opcodes.local_tee, localTmp(scope, '#objset_object', Valtype.i32) ] ]),
3520
+ ...getNodeType(scope, object),
3521
+
3522
+ ...propertyWasm,
3523
+ ...getNodeType(scope, property),
3524
+ ...toPropertyKey(scope, op === '='),
3525
+ ...(op === '=' ? [] : [ [ Opcodes.local_set, localTmp(scope, '#objset_property_type', Valtype.i32) ] ]),
3526
+ ...(op === '=' ? [] : [
3527
+ Opcodes.i32_to_u,
3528
+ [ Opcodes.local_tee, localTmp(scope, '#objset_property', Valtype.i32) ]
3529
+ ]),
3530
+ ...(op === '=' ? [] : [ [ Opcodes.local_get, localTmp(scope, '#objset_property_type', Valtype.i32) ] ]),
3531
+
3532
+ ...(op === '=' ? generate(scope, decl.right) : performOp(scope, op, [
3533
+ [ Opcodes.local_get, localTmp(scope, '#objset_object', Valtype.i32) ],
3534
+ ...getNodeType(scope, object),
3535
+
3536
+ [ Opcodes.local_get, localTmp(scope, '#objset_property', Valtype.i32) ],
3537
+ [ Opcodes.local_get, localTmp(scope, '#objset_property_type', Valtype.i32) ],
3538
+
3539
+ [ Opcodes.call, includeBuiltin(scope, '__Porffor_object_get').index ],
3540
+ ...setLastType(scope)
3541
+ ], generate(scope, decl.right), getLastType(scope), getNodeType(scope, decl.right), false, name, true)),
3542
+ ...getNodeType(scope, decl),
3543
+
3544
+ [ Opcodes.call, includeBuiltin(scope, '__Porffor_object_set').index ],
3545
+ [ Opcodes.drop ],
3546
+ // ...setLastType(scope, getNodeType(scope, decl)),
3547
+ ],
3548
+
3516
3549
  ...wrapBC({
3517
3550
  [TYPES.uint8array]: [
3518
3551
  [ Opcodes.i32_add ],
package/compiler/wrap.js CHANGED
@@ -65,6 +65,8 @@ const porfToJSValue = ({ memory, funcs, pages }, value, type, override = undefin
65
65
  const kValue = kRaw & 0x3fffffff;
66
66
  const k = porfToJSValue({ memory, funcs, pages }, kValue, kType);
67
67
 
68
+ if (k === '__proto__') continue;
69
+
68
70
  const tail = read(Uint16Array, memory, value + offset + 12, 1)[0];
69
71
 
70
72
  const vValue = read(Float64Array, memory, value + offset + 4, 1)[0];
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.30.8+6e6285308",
4
+ "version": "0.30.10+1ed8b1535",
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.30.8+6e6285308';
3
+ globalThis.version = '0.30.10+1ed8b1535';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {