@base44-preview/cli 0.0.52-pr.529.44a9028 → 0.0.52-pr.533.ff4dead

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/index.js CHANGED
@@ -12367,8 +12367,8 @@ var require_front_matter = __commonJS((exports, module) => {
12367
12367
  var require_windows = __commonJS((exports, module) => {
12368
12368
  module.exports = isexe;
12369
12369
  isexe.sync = sync;
12370
- var fs19 = __require("fs");
12371
- function checkPathExt(path12, options) {
12370
+ var fs14 = __require("fs");
12371
+ function checkPathExt(path11, options) {
12372
12372
  var pathext = options.pathExt !== undefined ? options.pathExt : process.env.PATHEXT;
12373
12373
  if (!pathext) {
12374
12374
  return true;
@@ -12379,25 +12379,25 @@ var require_windows = __commonJS((exports, module) => {
12379
12379
  }
12380
12380
  for (var i = 0;i < pathext.length; i++) {
12381
12381
  var p = pathext[i].toLowerCase();
12382
- if (p && path12.substr(-p.length).toLowerCase() === p) {
12382
+ if (p && path11.substr(-p.length).toLowerCase() === p) {
12383
12383
  return true;
12384
12384
  }
12385
12385
  }
12386
12386
  return false;
12387
12387
  }
12388
- function checkStat(stat, path12, options) {
12388
+ function checkStat(stat, path11, options) {
12389
12389
  if (!stat.isSymbolicLink() && !stat.isFile()) {
12390
12390
  return false;
12391
12391
  }
12392
- return checkPathExt(path12, options);
12392
+ return checkPathExt(path11, options);
12393
12393
  }
12394
- function isexe(path12, options, cb) {
12395
- fs19.stat(path12, function(er, stat) {
12396
- cb(er, er ? false : checkStat(stat, path12, options));
12394
+ function isexe(path11, options, cb) {
12395
+ fs14.stat(path11, function(er, stat) {
12396
+ cb(er, er ? false : checkStat(stat, path11, options));
12397
12397
  });
12398
12398
  }
12399
- function sync(path12, options) {
12400
- return checkStat(fs19.statSync(path12), path12, options);
12399
+ function sync(path11, options) {
12400
+ return checkStat(fs14.statSync(path11), path11, options);
12401
12401
  }
12402
12402
  });
12403
12403
 
@@ -12405,14 +12405,14 @@ var require_windows = __commonJS((exports, module) => {
12405
12405
  var require_mode = __commonJS((exports, module) => {
12406
12406
  module.exports = isexe;
12407
12407
  isexe.sync = sync;
12408
- var fs19 = __require("fs");
12409
- function isexe(path12, options, cb) {
12410
- fs19.stat(path12, function(er, stat) {
12408
+ var fs14 = __require("fs");
12409
+ function isexe(path11, options, cb) {
12410
+ fs14.stat(path11, function(er, stat) {
12411
12411
  cb(er, er ? false : checkStat(stat, options));
12412
12412
  });
12413
12413
  }
12414
- function sync(path12, options) {
12415
- return checkStat(fs19.statSync(path12), options);
12414
+ function sync(path11, options) {
12415
+ return checkStat(fs14.statSync(path11), options);
12416
12416
  }
12417
12417
  function checkStat(stat, options) {
12418
12418
  return stat.isFile() && checkMode(stat, options);
@@ -12434,7 +12434,7 @@ var require_mode = __commonJS((exports, module) => {
12434
12434
 
12435
12435
  // ../../node_modules/isexe/index.js
12436
12436
  var require_isexe = __commonJS((exports, module) => {
12437
- var fs19 = __require("fs");
12437
+ var fs14 = __require("fs");
12438
12438
  var core2;
12439
12439
  if (process.platform === "win32" || global.TESTING_WINDOWS) {
12440
12440
  core2 = require_windows();
@@ -12443,7 +12443,7 @@ var require_isexe = __commonJS((exports, module) => {
12443
12443
  }
12444
12444
  module.exports = isexe;
12445
12445
  isexe.sync = sync;
12446
- function isexe(path12, options, cb) {
12446
+ function isexe(path11, options, cb) {
12447
12447
  if (typeof options === "function") {
12448
12448
  cb = options;
12449
12449
  options = {};
@@ -12453,7 +12453,7 @@ var require_isexe = __commonJS((exports, module) => {
12453
12453
  throw new TypeError("callback not provided");
12454
12454
  }
12455
12455
  return new Promise(function(resolve3, reject) {
12456
- isexe(path12, options || {}, function(er, is) {
12456
+ isexe(path11, options || {}, function(er, is) {
12457
12457
  if (er) {
12458
12458
  reject(er);
12459
12459
  } else {
@@ -12462,7 +12462,7 @@ var require_isexe = __commonJS((exports, module) => {
12462
12462
  });
12463
12463
  });
12464
12464
  }
12465
- core2(path12, options || {}, function(er, is) {
12465
+ core2(path11, options || {}, function(er, is) {
12466
12466
  if (er) {
12467
12467
  if (er.code === "EACCES" || options && options.ignoreErrors) {
12468
12468
  er = null;
@@ -12472,9 +12472,9 @@ var require_isexe = __commonJS((exports, module) => {
12472
12472
  cb(er, is);
12473
12473
  });
12474
12474
  }
12475
- function sync(path12, options) {
12475
+ function sync(path11, options) {
12476
12476
  try {
12477
- return core2.sync(path12, options || {});
12477
+ return core2.sync(path11, options || {});
12478
12478
  } catch (er) {
12479
12479
  if (options && options.ignoreErrors || er.code === "EACCES") {
12480
12480
  return false;
@@ -12488,7 +12488,7 @@ var require_isexe = __commonJS((exports, module) => {
12488
12488
  // ../../node_modules/which/which.js
12489
12489
  var require_which = __commonJS((exports, module) => {
12490
12490
  var isWindows4 = process.platform === "win32" || process.env.OSTYPE === "cygwin" || process.env.OSTYPE === "msys";
12491
- var path12 = __require("path");
12491
+ var path11 = __require("path");
12492
12492
  var COLON = isWindows4 ? ";" : ":";
12493
12493
  var isexe = require_isexe();
12494
12494
  var getNotFoundError = (cmd) => Object.assign(new Error(`not found: ${cmd}`), { code: "ENOENT" });
@@ -12524,7 +12524,7 @@ var require_which = __commonJS((exports, module) => {
12524
12524
  return opt.all && found.length ? resolve3(found) : reject(getNotFoundError(cmd));
12525
12525
  const ppRaw = pathEnv[i];
12526
12526
  const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw;
12527
- const pCmd = path12.join(pathPart, cmd);
12527
+ const pCmd = path11.join(pathPart, cmd);
12528
12528
  const p = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
12529
12529
  resolve3(subStep(p, i, 0));
12530
12530
  });
@@ -12551,7 +12551,7 @@ var require_which = __commonJS((exports, module) => {
12551
12551
  for (let i = 0;i < pathEnv.length; i++) {
12552
12552
  const ppRaw = pathEnv[i];
12553
12553
  const pathPart = /^".*"$/.test(ppRaw) ? ppRaw.slice(1, -1) : ppRaw;
12554
- const pCmd = path12.join(pathPart, cmd);
12554
+ const pCmd = path11.join(pathPart, cmd);
12555
12555
  const p = !pathPart && /^\.[\\\/]/.test(cmd) ? cmd.slice(0, 2) + pCmd : pCmd;
12556
12556
  for (let j2 = 0;j2 < pathExt.length; j2++) {
12557
12557
  const cur = p + pathExt[j2];
@@ -12580,8 +12580,8 @@ var require_which = __commonJS((exports, module) => {
12580
12580
  var require_path_key = __commonJS((exports, module) => {
12581
12581
  var pathKey = (options = {}) => {
12582
12582
  const environment = options.env || process.env;
12583
- const platform7 = options.platform || process.platform;
12584
- if (platform7 !== "win32") {
12583
+ const platform6 = options.platform || process.platform;
12584
+ if (platform6 !== "win32") {
12585
12585
  return "PATH";
12586
12586
  }
12587
12587
  return Object.keys(environment).reverse().find((key) => key.toUpperCase() === "PATH") || "Path";
@@ -12592,7 +12592,7 @@ var require_path_key = __commonJS((exports, module) => {
12592
12592
 
12593
12593
  // ../../node_modules/cross-spawn/lib/util/resolveCommand.js
12594
12594
  var require_resolveCommand = __commonJS((exports, module) => {
12595
- var path12 = __require("path");
12595
+ var path11 = __require("path");
12596
12596
  var which = require_which();
12597
12597
  var getPathKey = require_path_key();
12598
12598
  function resolveCommandAttempt(parsed, withoutPathExt) {
@@ -12609,7 +12609,7 @@ var require_resolveCommand = __commonJS((exports, module) => {
12609
12609
  try {
12610
12610
  resolved = which.sync(parsed.command, {
12611
12611
  path: env2[getPathKey({ env: env2 })],
12612
- pathExt: withoutPathExt ? path12.delimiter : undefined
12612
+ pathExt: withoutPathExt ? path11.delimiter : undefined
12613
12613
  });
12614
12614
  } catch (e2) {} finally {
12615
12615
  if (shouldSwitchCwd) {
@@ -12617,7 +12617,7 @@ var require_resolveCommand = __commonJS((exports, module) => {
12617
12617
  }
12618
12618
  }
12619
12619
  if (resolved) {
12620
- resolved = path12.resolve(hasCustomCwd ? parsed.options.cwd : "", resolved);
12620
+ resolved = path11.resolve(hasCustomCwd ? parsed.options.cwd : "", resolved);
12621
12621
  }
12622
12622
  return resolved;
12623
12623
  }
@@ -12662,8 +12662,8 @@ var require_shebang_command = __commonJS((exports, module) => {
12662
12662
  if (!match) {
12663
12663
  return null;
12664
12664
  }
12665
- const [path12, argument] = match[0].replace(/#! ?/, "").split(" ");
12666
- const binary = path12.split("/").pop();
12665
+ const [path11, argument] = match[0].replace(/#! ?/, "").split(" ");
12666
+ const binary = path11.split("/").pop();
12667
12667
  if (binary === "env") {
12668
12668
  return argument;
12669
12669
  }
@@ -12673,16 +12673,16 @@ var require_shebang_command = __commonJS((exports, module) => {
12673
12673
 
12674
12674
  // ../../node_modules/cross-spawn/lib/util/readShebang.js
12675
12675
  var require_readShebang = __commonJS((exports, module) => {
12676
- var fs19 = __require("fs");
12676
+ var fs14 = __require("fs");
12677
12677
  var shebangCommand = require_shebang_command();
12678
12678
  function readShebang(command) {
12679
12679
  const size = 150;
12680
12680
  const buffer = Buffer.alloc(size);
12681
12681
  let fd;
12682
12682
  try {
12683
- fd = fs19.openSync(command, "r");
12684
- fs19.readSync(fd, buffer, 0, size, 0);
12685
- fs19.closeSync(fd);
12683
+ fd = fs14.openSync(command, "r");
12684
+ fs14.readSync(fd, buffer, 0, size, 0);
12685
+ fs14.closeSync(fd);
12686
12686
  } catch (e2) {}
12687
12687
  return shebangCommand(buffer.toString());
12688
12688
  }
@@ -12691,7 +12691,7 @@ var require_readShebang = __commonJS((exports, module) => {
12691
12691
 
12692
12692
  // ../../node_modules/cross-spawn/lib/parse.js
12693
12693
  var require_parse4 = __commonJS((exports, module) => {
12694
- var path12 = __require("path");
12694
+ var path11 = __require("path");
12695
12695
  var resolveCommand = require_resolveCommand();
12696
12696
  var escape2 = require_escape();
12697
12697
  var readShebang = require_readShebang();
@@ -12716,7 +12716,7 @@ var require_parse4 = __commonJS((exports, module) => {
12716
12716
  const needsShell = !isExecutableRegExp.test(commandFile);
12717
12717
  if (parsed.options.forceShell || needsShell) {
12718
12718
  const needsDoubleEscapeMetaChars = isCmdShimRegExp.test(commandFile);
12719
- parsed.command = path12.normalize(parsed.command);
12719
+ parsed.command = path11.normalize(parsed.command);
12720
12720
  parsed.command = escape2.command(parsed.command);
12721
12721
  parsed.args = parsed.args.map((arg) => escape2.argument(arg, needsDoubleEscapeMetaChars));
12722
12722
  const shellCommand = [parsed.command].concat(parsed.args).join(" ");
@@ -13517,7 +13517,7 @@ var require_lodash = __commonJS((exports, module) => {
13517
13517
  var objectCtorString = funcToString.call(Object2);
13518
13518
  var oldDash = root._;
13519
13519
  var reIsNative = RegExp2("^" + funcToString.call(hasOwnProperty).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$");
13520
- var Buffer7 = moduleExports ? context.Buffer : undefined2, Symbol2 = context.Symbol, Uint8Array2 = context.Uint8Array, allocUnsafe = Buffer7 ? Buffer7.allocUnsafe : undefined2, getPrototype = overArg(Object2.getPrototypeOf, Object2), objectCreate = Object2.create, propertyIsEnumerable = objectProto.propertyIsEnumerable, splice = arrayProto.splice, spreadableSymbol = Symbol2 ? Symbol2.isConcatSpreadable : undefined2, symIterator = Symbol2 ? Symbol2.iterator : undefined2, symToStringTag = Symbol2 ? Symbol2.toStringTag : undefined2;
13520
+ var Buffer6 = moduleExports ? context.Buffer : undefined2, Symbol2 = context.Symbol, Uint8Array2 = context.Uint8Array, allocUnsafe = Buffer6 ? Buffer6.allocUnsafe : undefined2, getPrototype = overArg(Object2.getPrototypeOf, Object2), objectCreate = Object2.create, propertyIsEnumerable = objectProto.propertyIsEnumerable, splice = arrayProto.splice, spreadableSymbol = Symbol2 ? Symbol2.isConcatSpreadable : undefined2, symIterator = Symbol2 ? Symbol2.iterator : undefined2, symToStringTag = Symbol2 ? Symbol2.toStringTag : undefined2;
13521
13521
  var defineProperty = function() {
13522
13522
  try {
13523
13523
  var func = getNative(Object2, "defineProperty");
@@ -13526,7 +13526,7 @@ var require_lodash = __commonJS((exports, module) => {
13526
13526
  } catch (e2) {}
13527
13527
  }();
13528
13528
  var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout, ctxNow = Date2 && Date2.now !== root.Date.now && Date2.now, ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout;
13529
- var { ceil: nativeCeil, floor: nativeFloor } = Math2, nativeGetSymbols = Object2.getOwnPropertySymbols, nativeIsBuffer = Buffer7 ? Buffer7.isBuffer : undefined2, nativeIsFinite = context.isFinite, nativeJoin = arrayProto.join, nativeKeys = overArg(Object2.keys, Object2), nativeMax = Math2.max, nativeMin = Math2.min, nativeNow = Date2.now, nativeParseInt = context.parseInt, nativeRandom = Math2.random, nativeReverse = arrayProto.reverse;
13529
+ var { ceil: nativeCeil, floor: nativeFloor } = Math2, nativeGetSymbols = Object2.getOwnPropertySymbols, nativeIsBuffer = Buffer6 ? Buffer6.isBuffer : undefined2, nativeIsFinite = context.isFinite, nativeJoin = arrayProto.join, nativeKeys = overArg(Object2.keys, Object2), nativeMax = Math2.max, nativeMin = Math2.min, nativeNow = Date2.now, nativeParseInt = context.parseInt, nativeRandom = Math2.random, nativeReverse = arrayProto.reverse;
13530
13530
  var DataView2 = getNative(context, "DataView"), Map2 = getNative(context, "Map"), Promise2 = getNative(context, "Promise"), Set2 = getNative(context, "Set"), WeakMap2 = getNative(context, "WeakMap"), nativeCreate = getNative(Object2, "create");
13531
13531
  var metaMap = WeakMap2 && new WeakMap2;
13532
13532
  var realNames = {};
@@ -14097,11 +14097,11 @@ var require_lodash = __commonJS((exports, module) => {
14097
14097
  return isFunction(object2[key]);
14098
14098
  });
14099
14099
  }
14100
- function baseGet(object2, path17) {
14101
- path17 = castPath(path17, object2);
14102
- var index = 0, length = path17.length;
14100
+ function baseGet(object2, path16) {
14101
+ path16 = castPath(path16, object2);
14102
+ var index = 0, length = path16.length;
14103
14103
  while (object2 != null && index < length) {
14104
- object2 = object2[toKey(path17[index++])];
14104
+ object2 = object2[toKey(path16[index++])];
14105
14105
  }
14106
14106
  return index && index == length ? object2 : undefined2;
14107
14107
  }
@@ -14165,10 +14165,10 @@ var require_lodash = __commonJS((exports, module) => {
14165
14165
  });
14166
14166
  return accumulator;
14167
14167
  }
14168
- function baseInvoke(object2, path17, args) {
14169
- path17 = castPath(path17, object2);
14170
- object2 = parent(object2, path17);
14171
- var func = object2 == null ? object2 : object2[toKey(last(path17))];
14168
+ function baseInvoke(object2, path16, args) {
14169
+ path16 = castPath(path16, object2);
14170
+ object2 = parent(object2, path16);
14171
+ var func = object2 == null ? object2 : object2[toKey(last(path16))];
14172
14172
  return func == null ? undefined2 : apply(func, object2, args);
14173
14173
  }
14174
14174
  function baseIsArguments(value) {
@@ -14324,13 +14324,13 @@ var require_lodash = __commonJS((exports, module) => {
14324
14324
  return object2 === source || baseIsMatch(object2, source, matchData);
14325
14325
  };
14326
14326
  }
14327
- function baseMatchesProperty(path17, srcValue) {
14328
- if (isKey(path17) && isStrictComparable(srcValue)) {
14329
- return matchesStrictComparable(toKey(path17), srcValue);
14327
+ function baseMatchesProperty(path16, srcValue) {
14328
+ if (isKey(path16) && isStrictComparable(srcValue)) {
14329
+ return matchesStrictComparable(toKey(path16), srcValue);
14330
14330
  }
14331
14331
  return function(object2) {
14332
- var objValue = get(object2, path17);
14333
- return objValue === undefined2 && objValue === srcValue ? hasIn(object2, path17) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
14332
+ var objValue = get(object2, path16);
14333
+ return objValue === undefined2 && objValue === srcValue ? hasIn(object2, path16) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);
14334
14334
  };
14335
14335
  }
14336
14336
  function baseMerge(object2, source, srcIndex, customizer, stack) {
@@ -14427,23 +14427,23 @@ var require_lodash = __commonJS((exports, module) => {
14427
14427
  });
14428
14428
  }
14429
14429
  function basePick(object2, paths) {
14430
- return basePickBy(object2, paths, function(value, path17) {
14431
- return hasIn(object2, path17);
14430
+ return basePickBy(object2, paths, function(value, path16) {
14431
+ return hasIn(object2, path16);
14432
14432
  });
14433
14433
  }
14434
14434
  function basePickBy(object2, paths, predicate) {
14435
14435
  var index = -1, length = paths.length, result2 = {};
14436
14436
  while (++index < length) {
14437
- var path17 = paths[index], value = baseGet(object2, path17);
14438
- if (predicate(value, path17)) {
14439
- baseSet(result2, castPath(path17, object2), value);
14437
+ var path16 = paths[index], value = baseGet(object2, path16);
14438
+ if (predicate(value, path16)) {
14439
+ baseSet(result2, castPath(path16, object2), value);
14440
14440
  }
14441
14441
  }
14442
14442
  return result2;
14443
14443
  }
14444
- function basePropertyDeep(path17) {
14444
+ function basePropertyDeep(path16) {
14445
14445
  return function(object2) {
14446
- return baseGet(object2, path17);
14446
+ return baseGet(object2, path16);
14447
14447
  };
14448
14448
  }
14449
14449
  function basePullAll(array2, values2, iteratee2, comparator) {
@@ -14517,14 +14517,14 @@ var require_lodash = __commonJS((exports, module) => {
14517
14517
  var array2 = values(collection);
14518
14518
  return shuffleSelf(array2, baseClamp(n2, 0, array2.length));
14519
14519
  }
14520
- function baseSet(object2, path17, value, customizer) {
14520
+ function baseSet(object2, path16, value, customizer) {
14521
14521
  if (!isObject4(object2)) {
14522
14522
  return object2;
14523
14523
  }
14524
- path17 = castPath(path17, object2);
14525
- var index = -1, length = path17.length, lastIndex = length - 1, nested = object2;
14524
+ path16 = castPath(path16, object2);
14525
+ var index = -1, length = path16.length, lastIndex = length - 1, nested = object2;
14526
14526
  while (nested != null && ++index < length) {
14527
- var key = toKey(path17[index]), newValue = value;
14527
+ var key = toKey(path16[index]), newValue = value;
14528
14528
  if (key === "__proto__" || key === "constructor" || key === "prototype") {
14529
14529
  return object2;
14530
14530
  }
@@ -14532,7 +14532,7 @@ var require_lodash = __commonJS((exports, module) => {
14532
14532
  var objValue = nested[key];
14533
14533
  newValue = customizer ? customizer(objValue, key, nested) : undefined2;
14534
14534
  if (newValue === undefined2) {
14535
- newValue = isObject4(objValue) ? objValue : isIndex(path17[index + 1]) ? [] : {};
14535
+ newValue = isObject4(objValue) ? objValue : isIndex(path16[index + 1]) ? [] : {};
14536
14536
  }
14537
14537
  }
14538
14538
  assignValue(nested, key, newValue);
@@ -14698,33 +14698,33 @@ var require_lodash = __commonJS((exports, module) => {
14698
14698
  }
14699
14699
  return result2;
14700
14700
  }
14701
- function baseUnset(object2, path17) {
14702
- path17 = castPath(path17, object2);
14703
- var index = -1, length = path17.length;
14701
+ function baseUnset(object2, path16) {
14702
+ path16 = castPath(path16, object2);
14703
+ var index = -1, length = path16.length;
14704
14704
  if (!length) {
14705
14705
  return true;
14706
14706
  }
14707
14707
  var isRootPrimitive = object2 == null || typeof object2 !== "object" && typeof object2 !== "function";
14708
14708
  while (++index < length) {
14709
- var key = path17[index];
14709
+ var key = path16[index];
14710
14710
  if (typeof key !== "string") {
14711
14711
  continue;
14712
14712
  }
14713
14713
  if (key === "__proto__" && !hasOwnProperty.call(object2, "__proto__")) {
14714
14714
  return false;
14715
14715
  }
14716
- if (key === "constructor" && index + 1 < length && typeof path17[index + 1] === "string" && path17[index + 1] === "prototype") {
14716
+ if (key === "constructor" && index + 1 < length && typeof path16[index + 1] === "string" && path16[index + 1] === "prototype") {
14717
14717
  if (isRootPrimitive && index === 0) {
14718
14718
  continue;
14719
14719
  }
14720
14720
  return false;
14721
14721
  }
14722
14722
  }
14723
- var obj = parent(object2, path17);
14724
- return obj == null || delete obj[toKey(last(path17))];
14723
+ var obj = parent(object2, path16);
14724
+ return obj == null || delete obj[toKey(last(path16))];
14725
14725
  }
14726
- function baseUpdate(object2, path17, updater, customizer) {
14727
- return baseSet(object2, path17, updater(baseGet(object2, path17)), customizer);
14726
+ function baseUpdate(object2, path16, updater, customizer) {
14727
+ return baseSet(object2, path16, updater(baseGet(object2, path16)), customizer);
14728
14728
  }
14729
14729
  function baseWhile(array2, predicate, isDrop, fromRight) {
14730
14730
  var length = array2.length, index = fromRight ? length : -1;
@@ -15583,11 +15583,11 @@ var require_lodash = __commonJS((exports, module) => {
15583
15583
  var match = source.match(reWrapDetails);
15584
15584
  return match ? match[1].split(reSplitDetails) : [];
15585
15585
  }
15586
- function hasPath(object2, path17, hasFunc) {
15587
- path17 = castPath(path17, object2);
15588
- var index = -1, length = path17.length, result2 = false;
15586
+ function hasPath(object2, path16, hasFunc) {
15587
+ path16 = castPath(path16, object2);
15588
+ var index = -1, length = path16.length, result2 = false;
15589
15589
  while (++index < length) {
15590
- var key = toKey(path17[index]);
15590
+ var key = toKey(path16[index]);
15591
15591
  if (!(result2 = object2 != null && hasFunc(object2, key))) {
15592
15592
  break;
15593
15593
  }
@@ -15791,8 +15791,8 @@ var require_lodash = __commonJS((exports, module) => {
15791
15791
  return apply(func, this, otherArgs);
15792
15792
  };
15793
15793
  }
15794
- function parent(object2, path17) {
15795
- return path17.length < 2 ? object2 : baseGet(object2, baseSlice(path17, 0, -1));
15794
+ function parent(object2, path16) {
15795
+ return path16.length < 2 ? object2 : baseGet(object2, baseSlice(path16, 0, -1));
15796
15796
  }
15797
15797
  function reorder(array2, indexes) {
15798
15798
  var arrLength = array2.length, length = nativeMin(indexes.length, arrLength), oldArray = copyArray(array2);
@@ -16425,10 +16425,10 @@ var require_lodash = __commonJS((exports, module) => {
16425
16425
  }
16426
16426
  return isString(collection) ? fromIndex <= length && collection.indexOf(value, fromIndex) > -1 : !!length && baseIndexOf(collection, value, fromIndex) > -1;
16427
16427
  }
16428
- var invokeMap = baseRest(function(collection, path17, args) {
16429
- var index = -1, isFunc = typeof path17 == "function", result2 = isArrayLike(collection) ? Array2(collection.length) : [];
16428
+ var invokeMap = baseRest(function(collection, path16, args) {
16429
+ var index = -1, isFunc = typeof path16 == "function", result2 = isArrayLike(collection) ? Array2(collection.length) : [];
16430
16430
  baseEach(collection, function(value) {
16431
- result2[++index] = isFunc ? apply(path17, value, args) : baseInvoke(value, path17, args);
16431
+ result2[++index] = isFunc ? apply(path16, value, args) : baseInvoke(value, path16, args);
16432
16432
  });
16433
16433
  return result2;
16434
16434
  });
@@ -17080,15 +17080,15 @@ var require_lodash = __commonJS((exports, module) => {
17080
17080
  function functionsIn(object2) {
17081
17081
  return object2 == null ? [] : baseFunctions(object2, keysIn(object2));
17082
17082
  }
17083
- function get(object2, path17, defaultValue) {
17084
- var result2 = object2 == null ? undefined2 : baseGet(object2, path17);
17083
+ function get(object2, path16, defaultValue) {
17084
+ var result2 = object2 == null ? undefined2 : baseGet(object2, path16);
17085
17085
  return result2 === undefined2 ? defaultValue : result2;
17086
17086
  }
17087
- function has(object2, path17) {
17088
- return object2 != null && hasPath(object2, path17, baseHas);
17087
+ function has(object2, path16) {
17088
+ return object2 != null && hasPath(object2, path16, baseHas);
17089
17089
  }
17090
- function hasIn(object2, path17) {
17091
- return object2 != null && hasPath(object2, path17, baseHasIn);
17090
+ function hasIn(object2, path16) {
17091
+ return object2 != null && hasPath(object2, path16, baseHasIn);
17092
17092
  }
17093
17093
  var invert = createInverter(function(result2, value, key) {
17094
17094
  if (value != null && typeof value.toString != "function") {
@@ -17141,10 +17141,10 @@ var require_lodash = __commonJS((exports, module) => {
17141
17141
  return result2;
17142
17142
  }
17143
17143
  var isDeep = false;
17144
- paths = arrayMap(paths, function(path17) {
17145
- path17 = castPath(path17, object2);
17146
- isDeep || (isDeep = path17.length > 1);
17147
- return path17;
17144
+ paths = arrayMap(paths, function(path16) {
17145
+ path16 = castPath(path16, object2);
17146
+ isDeep || (isDeep = path16.length > 1);
17147
+ return path16;
17148
17148
  });
17149
17149
  copyObject(object2, getAllKeysIn(object2), result2);
17150
17150
  if (isDeep) {
@@ -17170,19 +17170,19 @@ var require_lodash = __commonJS((exports, module) => {
17170
17170
  return [prop];
17171
17171
  });
17172
17172
  predicate = getIteratee(predicate);
17173
- return basePickBy(object2, props, function(value, path17) {
17174
- return predicate(value, path17[0]);
17173
+ return basePickBy(object2, props, function(value, path16) {
17174
+ return predicate(value, path16[0]);
17175
17175
  });
17176
17176
  }
17177
- function result(object2, path17, defaultValue) {
17178
- path17 = castPath(path17, object2);
17179
- var index = -1, length = path17.length;
17177
+ function result(object2, path16, defaultValue) {
17178
+ path16 = castPath(path16, object2);
17179
+ var index = -1, length = path16.length;
17180
17180
  if (!length) {
17181
17181
  length = 1;
17182
17182
  object2 = undefined2;
17183
17183
  }
17184
17184
  while (++index < length) {
17185
- var value = object2 == null ? undefined2 : object2[toKey(path17[index])];
17185
+ var value = object2 == null ? undefined2 : object2[toKey(path16[index])];
17186
17186
  if (value === undefined2) {
17187
17187
  index = length;
17188
17188
  value = defaultValue;
@@ -17191,12 +17191,12 @@ var require_lodash = __commonJS((exports, module) => {
17191
17191
  }
17192
17192
  return object2;
17193
17193
  }
17194
- function set2(object2, path17, value) {
17195
- return object2 == null ? object2 : baseSet(object2, path17, value);
17194
+ function set2(object2, path16, value) {
17195
+ return object2 == null ? object2 : baseSet(object2, path16, value);
17196
17196
  }
17197
- function setWith(object2, path17, value, customizer) {
17197
+ function setWith(object2, path16, value, customizer) {
17198
17198
  customizer = typeof customizer == "function" ? customizer : undefined2;
17199
- return object2 == null ? object2 : baseSet(object2, path17, value, customizer);
17199
+ return object2 == null ? object2 : baseSet(object2, path16, value, customizer);
17200
17200
  }
17201
17201
  var toPairs = createToPairs(keys);
17202
17202
  var toPairsIn = createToPairs(keysIn);
@@ -17218,15 +17218,15 @@ var require_lodash = __commonJS((exports, module) => {
17218
17218
  });
17219
17219
  return accumulator;
17220
17220
  }
17221
- function unset(object2, path17) {
17222
- return object2 == null ? true : baseUnset(object2, path17);
17221
+ function unset(object2, path16) {
17222
+ return object2 == null ? true : baseUnset(object2, path16);
17223
17223
  }
17224
- function update3(object2, path17, updater) {
17225
- return object2 == null ? object2 : baseUpdate(object2, path17, castFunction(updater));
17224
+ function update3(object2, path16, updater) {
17225
+ return object2 == null ? object2 : baseUpdate(object2, path16, castFunction(updater));
17226
17226
  }
17227
- function updateWith(object2, path17, updater, customizer) {
17227
+ function updateWith(object2, path16, updater, customizer) {
17228
17228
  customizer = typeof customizer == "function" ? customizer : undefined2;
17229
- return object2 == null ? object2 : baseUpdate(object2, path17, castFunction(updater), customizer);
17229
+ return object2 == null ? object2 : baseUpdate(object2, path16, castFunction(updater), customizer);
17230
17230
  }
17231
17231
  function values(object2) {
17232
17232
  return object2 == null ? [] : baseValues(object2, keys(object2));
@@ -17621,17 +17621,17 @@ __p += '`;
17621
17621
  function matches(source) {
17622
17622
  return baseMatches(baseClone(source, CLONE_DEEP_FLAG));
17623
17623
  }
17624
- function matchesProperty(path17, srcValue) {
17625
- return baseMatchesProperty(path17, baseClone(srcValue, CLONE_DEEP_FLAG));
17624
+ function matchesProperty(path16, srcValue) {
17625
+ return baseMatchesProperty(path16, baseClone(srcValue, CLONE_DEEP_FLAG));
17626
17626
  }
17627
- var method = baseRest(function(path17, args) {
17627
+ var method = baseRest(function(path16, args) {
17628
17628
  return function(object2) {
17629
- return baseInvoke(object2, path17, args);
17629
+ return baseInvoke(object2, path16, args);
17630
17630
  };
17631
17631
  });
17632
17632
  var methodOf = baseRest(function(object2, args) {
17633
- return function(path17) {
17634
- return baseInvoke(object2, path17, args);
17633
+ return function(path16) {
17634
+ return baseInvoke(object2, path16, args);
17635
17635
  };
17636
17636
  });
17637
17637
  function mixin(object2, source, options) {
@@ -17677,12 +17677,12 @@ __p += '`;
17677
17677
  var over = createOver(arrayMap);
17678
17678
  var overEvery = createOver(arrayEvery);
17679
17679
  var overSome = createOver(arraySome);
17680
- function property(path17) {
17681
- return isKey(path17) ? baseProperty(toKey(path17)) : basePropertyDeep(path17);
17680
+ function property(path16) {
17681
+ return isKey(path16) ? baseProperty(toKey(path16)) : basePropertyDeep(path16);
17682
17682
  }
17683
17683
  function propertyOf(object2) {
17684
- return function(path17) {
17685
- return object2 == null ? undefined2 : baseGet(object2, path17);
17684
+ return function(path16) {
17685
+ return object2 == null ? undefined2 : baseGet(object2, path16);
17686
17686
  };
17687
17687
  }
17688
17688
  var range = createRange();
@@ -18135,12 +18135,12 @@ __p += '`;
18135
18135
  LazyWrapper.prototype.findLast = function(predicate) {
18136
18136
  return this.reverse().find(predicate);
18137
18137
  };
18138
- LazyWrapper.prototype.invokeMap = baseRest(function(path17, args) {
18139
- if (typeof path17 == "function") {
18138
+ LazyWrapper.prototype.invokeMap = baseRest(function(path16, args) {
18139
+ if (typeof path16 == "function") {
18140
18140
  return new LazyWrapper(this);
18141
18141
  }
18142
18142
  return this.map(function(value) {
18143
- return baseInvoke(value, path17, args);
18143
+ return baseInvoke(value, path16, args);
18144
18144
  });
18145
18145
  });
18146
18146
  LazyWrapper.prototype.reject = function(predicate) {
@@ -18327,17 +18327,17 @@ var require_visit = __commonJS((exports) => {
18327
18327
  visit.BREAK = BREAK;
18328
18328
  visit.SKIP = SKIP2;
18329
18329
  visit.REMOVE = REMOVE;
18330
- function visit_(key, node, visitor, path17) {
18331
- const ctrl = callVisitor(key, node, visitor, path17);
18330
+ function visit_(key, node, visitor, path16) {
18331
+ const ctrl = callVisitor(key, node, visitor, path16);
18332
18332
  if (identity3.isNode(ctrl) || identity3.isPair(ctrl)) {
18333
- replaceNode(key, path17, ctrl);
18334
- return visit_(key, ctrl, visitor, path17);
18333
+ replaceNode(key, path16, ctrl);
18334
+ return visit_(key, ctrl, visitor, path16);
18335
18335
  }
18336
18336
  if (typeof ctrl !== "symbol") {
18337
18337
  if (identity3.isCollection(node)) {
18338
- path17 = Object.freeze(path17.concat(node));
18338
+ path16 = Object.freeze(path16.concat(node));
18339
18339
  for (let i2 = 0;i2 < node.items.length; ++i2) {
18340
- const ci = visit_(i2, node.items[i2], visitor, path17);
18340
+ const ci = visit_(i2, node.items[i2], visitor, path16);
18341
18341
  if (typeof ci === "number")
18342
18342
  i2 = ci - 1;
18343
18343
  else if (ci === BREAK)
@@ -18348,13 +18348,13 @@ var require_visit = __commonJS((exports) => {
18348
18348
  }
18349
18349
  }
18350
18350
  } else if (identity3.isPair(node)) {
18351
- path17 = Object.freeze(path17.concat(node));
18352
- const ck = visit_("key", node.key, visitor, path17);
18351
+ path16 = Object.freeze(path16.concat(node));
18352
+ const ck = visit_("key", node.key, visitor, path16);
18353
18353
  if (ck === BREAK)
18354
18354
  return BREAK;
18355
18355
  else if (ck === REMOVE)
18356
18356
  node.key = null;
18357
- const cv = visit_("value", node.value, visitor, path17);
18357
+ const cv = visit_("value", node.value, visitor, path16);
18358
18358
  if (cv === BREAK)
18359
18359
  return BREAK;
18360
18360
  else if (cv === REMOVE)
@@ -18375,17 +18375,17 @@ var require_visit = __commonJS((exports) => {
18375
18375
  visitAsync.BREAK = BREAK;
18376
18376
  visitAsync.SKIP = SKIP2;
18377
18377
  visitAsync.REMOVE = REMOVE;
18378
- async function visitAsync_(key, node, visitor, path17) {
18379
- const ctrl = await callVisitor(key, node, visitor, path17);
18378
+ async function visitAsync_(key, node, visitor, path16) {
18379
+ const ctrl = await callVisitor(key, node, visitor, path16);
18380
18380
  if (identity3.isNode(ctrl) || identity3.isPair(ctrl)) {
18381
- replaceNode(key, path17, ctrl);
18382
- return visitAsync_(key, ctrl, visitor, path17);
18381
+ replaceNode(key, path16, ctrl);
18382
+ return visitAsync_(key, ctrl, visitor, path16);
18383
18383
  }
18384
18384
  if (typeof ctrl !== "symbol") {
18385
18385
  if (identity3.isCollection(node)) {
18386
- path17 = Object.freeze(path17.concat(node));
18386
+ path16 = Object.freeze(path16.concat(node));
18387
18387
  for (let i2 = 0;i2 < node.items.length; ++i2) {
18388
- const ci = await visitAsync_(i2, node.items[i2], visitor, path17);
18388
+ const ci = await visitAsync_(i2, node.items[i2], visitor, path16);
18389
18389
  if (typeof ci === "number")
18390
18390
  i2 = ci - 1;
18391
18391
  else if (ci === BREAK)
@@ -18396,13 +18396,13 @@ var require_visit = __commonJS((exports) => {
18396
18396
  }
18397
18397
  }
18398
18398
  } else if (identity3.isPair(node)) {
18399
- path17 = Object.freeze(path17.concat(node));
18400
- const ck = await visitAsync_("key", node.key, visitor, path17);
18399
+ path16 = Object.freeze(path16.concat(node));
18400
+ const ck = await visitAsync_("key", node.key, visitor, path16);
18401
18401
  if (ck === BREAK)
18402
18402
  return BREAK;
18403
18403
  else if (ck === REMOVE)
18404
18404
  node.key = null;
18405
- const cv = await visitAsync_("value", node.value, visitor, path17);
18405
+ const cv = await visitAsync_("value", node.value, visitor, path16);
18406
18406
  if (cv === BREAK)
18407
18407
  return BREAK;
18408
18408
  else if (cv === REMOVE)
@@ -18429,23 +18429,23 @@ var require_visit = __commonJS((exports) => {
18429
18429
  }
18430
18430
  return visitor;
18431
18431
  }
18432
- function callVisitor(key, node, visitor, path17) {
18432
+ function callVisitor(key, node, visitor, path16) {
18433
18433
  if (typeof visitor === "function")
18434
- return visitor(key, node, path17);
18434
+ return visitor(key, node, path16);
18435
18435
  if (identity3.isMap(node))
18436
- return visitor.Map?.(key, node, path17);
18436
+ return visitor.Map?.(key, node, path16);
18437
18437
  if (identity3.isSeq(node))
18438
- return visitor.Seq?.(key, node, path17);
18438
+ return visitor.Seq?.(key, node, path16);
18439
18439
  if (identity3.isPair(node))
18440
- return visitor.Pair?.(key, node, path17);
18440
+ return visitor.Pair?.(key, node, path16);
18441
18441
  if (identity3.isScalar(node))
18442
- return visitor.Scalar?.(key, node, path17);
18442
+ return visitor.Scalar?.(key, node, path16);
18443
18443
  if (identity3.isAlias(node))
18444
- return visitor.Alias?.(key, node, path17);
18444
+ return visitor.Alias?.(key, node, path16);
18445
18445
  return;
18446
18446
  }
18447
- function replaceNode(key, path17, node) {
18448
- const parent = path17[path17.length - 1];
18447
+ function replaceNode(key, path16, node) {
18448
+ const parent = path16[path16.length - 1];
18449
18449
  if (identity3.isCollection(parent)) {
18450
18450
  parent.items[key] = node;
18451
18451
  } else if (identity3.isPair(parent)) {
@@ -19002,10 +19002,10 @@ var require_Collection = __commonJS((exports) => {
19002
19002
  var createNode = require_createNode();
19003
19003
  var identity3 = require_identity();
19004
19004
  var Node2 = require_Node();
19005
- function collectionFromPath(schema10, path17, value) {
19005
+ function collectionFromPath(schema10, path16, value) {
19006
19006
  let v = value;
19007
- for (let i2 = path17.length - 1;i2 >= 0; --i2) {
19008
- const k2 = path17[i2];
19007
+ for (let i2 = path16.length - 1;i2 >= 0; --i2) {
19008
+ const k2 = path16[i2];
19009
19009
  if (typeof k2 === "number" && Number.isInteger(k2) && k2 >= 0) {
19010
19010
  const a2 = [];
19011
19011
  a2[k2] = v;
@@ -19024,7 +19024,7 @@ var require_Collection = __commonJS((exports) => {
19024
19024
  sourceObjects: new Map
19025
19025
  });
19026
19026
  }
19027
- var isEmptyPath = (path17) => path17 == null || typeof path17 === "object" && !!path17[Symbol.iterator]().next().done;
19027
+ var isEmptyPath = (path16) => path16 == null || typeof path16 === "object" && !!path16[Symbol.iterator]().next().done;
19028
19028
 
19029
19029
  class Collection extends Node2.NodeBase {
19030
19030
  constructor(type, schema10) {
@@ -19045,11 +19045,11 @@ var require_Collection = __commonJS((exports) => {
19045
19045
  copy.range = this.range.slice();
19046
19046
  return copy;
19047
19047
  }
19048
- addIn(path17, value) {
19049
- if (isEmptyPath(path17))
19048
+ addIn(path16, value) {
19049
+ if (isEmptyPath(path16))
19050
19050
  this.add(value);
19051
19051
  else {
19052
- const [key, ...rest] = path17;
19052
+ const [key, ...rest] = path16;
19053
19053
  const node = this.get(key, true);
19054
19054
  if (identity3.isCollection(node))
19055
19055
  node.addIn(rest, value);
@@ -19059,8 +19059,8 @@ var require_Collection = __commonJS((exports) => {
19059
19059
  throw new Error(`Expected YAML collection at ${key}. Remaining path: ${rest}`);
19060
19060
  }
19061
19061
  }
19062
- deleteIn(path17) {
19063
- const [key, ...rest] = path17;
19062
+ deleteIn(path16) {
19063
+ const [key, ...rest] = path16;
19064
19064
  if (rest.length === 0)
19065
19065
  return this.delete(key);
19066
19066
  const node = this.get(key, true);
@@ -19069,8 +19069,8 @@ var require_Collection = __commonJS((exports) => {
19069
19069
  else
19070
19070
  throw new Error(`Expected YAML collection at ${key}. Remaining path: ${rest}`);
19071
19071
  }
19072
- getIn(path17, keepScalar) {
19073
- const [key, ...rest] = path17;
19072
+ getIn(path16, keepScalar) {
19073
+ const [key, ...rest] = path16;
19074
19074
  const node = this.get(key, true);
19075
19075
  if (rest.length === 0)
19076
19076
  return !keepScalar && identity3.isScalar(node) ? node.value : node;
@@ -19085,15 +19085,15 @@ var require_Collection = __commonJS((exports) => {
19085
19085
  return n2 == null || allowScalar && identity3.isScalar(n2) && n2.value == null && !n2.commentBefore && !n2.comment && !n2.tag;
19086
19086
  });
19087
19087
  }
19088
- hasIn(path17) {
19089
- const [key, ...rest] = path17;
19088
+ hasIn(path16) {
19089
+ const [key, ...rest] = path16;
19090
19090
  if (rest.length === 0)
19091
19091
  return this.has(key);
19092
19092
  const node = this.get(key, true);
19093
19093
  return identity3.isCollection(node) ? node.hasIn(rest) : false;
19094
19094
  }
19095
- setIn(path17, value) {
19096
- const [key, ...rest] = path17;
19095
+ setIn(path16, value) {
19096
+ const [key, ...rest] = path16;
19097
19097
  if (rest.length === 0) {
19098
19098
  this.set(key, value);
19099
19099
  } else {
@@ -21475,9 +21475,9 @@ var require_Document = __commonJS((exports) => {
21475
21475
  if (assertCollection(this.contents))
21476
21476
  this.contents.add(value);
21477
21477
  }
21478
- addIn(path17, value) {
21478
+ addIn(path16, value) {
21479
21479
  if (assertCollection(this.contents))
21480
- this.contents.addIn(path17, value);
21480
+ this.contents.addIn(path16, value);
21481
21481
  }
21482
21482
  createAlias(node, name2) {
21483
21483
  if (!node.anchor) {
@@ -21526,30 +21526,30 @@ var require_Document = __commonJS((exports) => {
21526
21526
  delete(key) {
21527
21527
  return assertCollection(this.contents) ? this.contents.delete(key) : false;
21528
21528
  }
21529
- deleteIn(path17) {
21530
- if (Collection.isEmptyPath(path17)) {
21529
+ deleteIn(path16) {
21530
+ if (Collection.isEmptyPath(path16)) {
21531
21531
  if (this.contents == null)
21532
21532
  return false;
21533
21533
  this.contents = null;
21534
21534
  return true;
21535
21535
  }
21536
- return assertCollection(this.contents) ? this.contents.deleteIn(path17) : false;
21536
+ return assertCollection(this.contents) ? this.contents.deleteIn(path16) : false;
21537
21537
  }
21538
21538
  get(key, keepScalar) {
21539
21539
  return identity3.isCollection(this.contents) ? this.contents.get(key, keepScalar) : undefined;
21540
21540
  }
21541
- getIn(path17, keepScalar) {
21542
- if (Collection.isEmptyPath(path17))
21541
+ getIn(path16, keepScalar) {
21542
+ if (Collection.isEmptyPath(path16))
21543
21543
  return !keepScalar && identity3.isScalar(this.contents) ? this.contents.value : this.contents;
21544
- return identity3.isCollection(this.contents) ? this.contents.getIn(path17, keepScalar) : undefined;
21544
+ return identity3.isCollection(this.contents) ? this.contents.getIn(path16, keepScalar) : undefined;
21545
21545
  }
21546
21546
  has(key) {
21547
21547
  return identity3.isCollection(this.contents) ? this.contents.has(key) : false;
21548
21548
  }
21549
- hasIn(path17) {
21550
- if (Collection.isEmptyPath(path17))
21549
+ hasIn(path16) {
21550
+ if (Collection.isEmptyPath(path16))
21551
21551
  return this.contents !== undefined;
21552
- return identity3.isCollection(this.contents) ? this.contents.hasIn(path17) : false;
21552
+ return identity3.isCollection(this.contents) ? this.contents.hasIn(path16) : false;
21553
21553
  }
21554
21554
  set(key, value) {
21555
21555
  if (this.contents == null) {
@@ -21558,13 +21558,13 @@ var require_Document = __commonJS((exports) => {
21558
21558
  this.contents.set(key, value);
21559
21559
  }
21560
21560
  }
21561
- setIn(path17, value) {
21562
- if (Collection.isEmptyPath(path17)) {
21561
+ setIn(path16, value) {
21562
+ if (Collection.isEmptyPath(path16)) {
21563
21563
  this.contents = value;
21564
21564
  } else if (this.contents == null) {
21565
- this.contents = Collection.collectionFromPath(this.schema, Array.from(path17), value);
21565
+ this.contents = Collection.collectionFromPath(this.schema, Array.from(path16), value);
21566
21566
  } else if (assertCollection(this.contents)) {
21567
- this.contents.setIn(path17, value);
21567
+ this.contents.setIn(path16, value);
21568
21568
  }
21569
21569
  }
21570
21570
  setSchema(version2, options = {}) {
@@ -23453,9 +23453,9 @@ var require_cst_visit = __commonJS((exports) => {
23453
23453
  visit.BREAK = BREAK;
23454
23454
  visit.SKIP = SKIP2;
23455
23455
  visit.REMOVE = REMOVE;
23456
- visit.itemAtPath = (cst, path17) => {
23456
+ visit.itemAtPath = (cst, path16) => {
23457
23457
  let item = cst;
23458
- for (const [field, index] of path17) {
23458
+ for (const [field, index] of path16) {
23459
23459
  const tok = item?.[field];
23460
23460
  if (tok && "items" in tok) {
23461
23461
  item = tok.items[index];
@@ -23464,23 +23464,23 @@ var require_cst_visit = __commonJS((exports) => {
23464
23464
  }
23465
23465
  return item;
23466
23466
  };
23467
- visit.parentCollection = (cst, path17) => {
23468
- const parent = visit.itemAtPath(cst, path17.slice(0, -1));
23469
- const field = path17[path17.length - 1][0];
23467
+ visit.parentCollection = (cst, path16) => {
23468
+ const parent = visit.itemAtPath(cst, path16.slice(0, -1));
23469
+ const field = path16[path16.length - 1][0];
23470
23470
  const coll = parent?.[field];
23471
23471
  if (coll && "items" in coll)
23472
23472
  return coll;
23473
23473
  throw new Error("Parent collection not found");
23474
23474
  };
23475
- function _visit(path17, item, visitor) {
23476
- let ctrl = visitor(item, path17);
23475
+ function _visit(path16, item, visitor) {
23476
+ let ctrl = visitor(item, path16);
23477
23477
  if (typeof ctrl === "symbol")
23478
23478
  return ctrl;
23479
23479
  for (const field of ["key", "value"]) {
23480
23480
  const token = item[field];
23481
23481
  if (token && "items" in token) {
23482
23482
  for (let i2 = 0;i2 < token.items.length; ++i2) {
23483
- const ci = _visit(Object.freeze(path17.concat([[field, i2]])), token.items[i2], visitor);
23483
+ const ci = _visit(Object.freeze(path16.concat([[field, i2]])), token.items[i2], visitor);
23484
23484
  if (typeof ci === "number")
23485
23485
  i2 = ci - 1;
23486
23486
  else if (ci === BREAK)
@@ -23491,10 +23491,10 @@ var require_cst_visit = __commonJS((exports) => {
23491
23491
  }
23492
23492
  }
23493
23493
  if (typeof ctrl === "function" && field === "key")
23494
- ctrl = ctrl(item, path17);
23494
+ ctrl = ctrl(item, path16);
23495
23495
  }
23496
23496
  }
23497
- return typeof ctrl === "function" ? ctrl(item, path17) : ctrl;
23497
+ return typeof ctrl === "function" ? ctrl(item, path16) : ctrl;
23498
23498
  }
23499
23499
  exports.visit = visit;
23500
23500
  });
@@ -24763,14 +24763,14 @@ var require_parser = __commonJS((exports) => {
24763
24763
  case "scalar":
24764
24764
  case "single-quoted-scalar":
24765
24765
  case "double-quoted-scalar": {
24766
- const fs19 = this.flowScalar(this.type);
24766
+ const fs14 = this.flowScalar(this.type);
24767
24767
  if (atNextItem || it3.value) {
24768
- map2.items.push({ start, key: fs19, sep: [] });
24768
+ map2.items.push({ start, key: fs14, sep: [] });
24769
24769
  this.onKeyLine = true;
24770
24770
  } else if (it3.sep) {
24771
- this.stack.push(fs19);
24771
+ this.stack.push(fs14);
24772
24772
  } else {
24773
- Object.assign(it3, { key: fs19, sep: [] });
24773
+ Object.assign(it3, { key: fs14, sep: [] });
24774
24774
  this.onKeyLine = true;
24775
24775
  }
24776
24776
  return;
@@ -24898,13 +24898,13 @@ var require_parser = __commonJS((exports) => {
24898
24898
  case "scalar":
24899
24899
  case "single-quoted-scalar":
24900
24900
  case "double-quoted-scalar": {
24901
- const fs19 = this.flowScalar(this.type);
24901
+ const fs14 = this.flowScalar(this.type);
24902
24902
  if (!it3 || it3.value)
24903
- fc.items.push({ start: [], key: fs19, sep: [] });
24903
+ fc.items.push({ start: [], key: fs14, sep: [] });
24904
24904
  else if (it3.sep)
24905
- this.stack.push(fs19);
24905
+ this.stack.push(fs14);
24906
24906
  else
24907
- Object.assign(it3, { key: fs19, sep: [] });
24907
+ Object.assign(it3, { key: fs14, sep: [] });
24908
24908
  return;
24909
24909
  }
24910
24910
  case "flow-map-end":
@@ -25225,9 +25225,9 @@ var require_package2 = __commonJS((exports, module) => {
25225
25225
 
25226
25226
  // ../../node_modules/dotenv/lib/main.js
25227
25227
  var require_main = __commonJS((exports, module) => {
25228
- var fs19 = __require("fs");
25229
- var path17 = __require("path");
25230
- var os4 = __require("os");
25228
+ var fs14 = __require("fs");
25229
+ var path16 = __require("path");
25230
+ var os2 = __require("os");
25231
25231
  var crypto = __require("crypto");
25232
25232
  var packageJson = require_package2();
25233
25233
  var version2 = packageJson.version;
@@ -25366,7 +25366,7 @@ var require_main = __commonJS((exports, module) => {
25366
25366
  if (options && options.path && options.path.length > 0) {
25367
25367
  if (Array.isArray(options.path)) {
25368
25368
  for (const filepath of options.path) {
25369
- if (fs19.existsSync(filepath)) {
25369
+ if (fs14.existsSync(filepath)) {
25370
25370
  possibleVaultPath = filepath.endsWith(".vault") ? filepath : `${filepath}.vault`;
25371
25371
  }
25372
25372
  }
@@ -25374,15 +25374,15 @@ var require_main = __commonJS((exports, module) => {
25374
25374
  possibleVaultPath = options.path.endsWith(".vault") ? options.path : `${options.path}.vault`;
25375
25375
  }
25376
25376
  } else {
25377
- possibleVaultPath = path17.resolve(process.cwd(), ".env.vault");
25377
+ possibleVaultPath = path16.resolve(process.cwd(), ".env.vault");
25378
25378
  }
25379
- if (fs19.existsSync(possibleVaultPath)) {
25379
+ if (fs14.existsSync(possibleVaultPath)) {
25380
25380
  return possibleVaultPath;
25381
25381
  }
25382
25382
  return null;
25383
25383
  }
25384
25384
  function _resolveHome(envPath) {
25385
- return envPath[0] === "~" ? path17.join(os4.homedir(), envPath.slice(1)) : envPath;
25385
+ return envPath[0] === "~" ? path16.join(os2.homedir(), envPath.slice(1)) : envPath;
25386
25386
  }
25387
25387
  function _configVault(options) {
25388
25388
  const debug = parseBoolean(process.env.DOTENV_CONFIG_DEBUG || options && options.debug);
@@ -25399,7 +25399,7 @@ var require_main = __commonJS((exports, module) => {
25399
25399
  return { parsed };
25400
25400
  }
25401
25401
  function configDotenv(options) {
25402
- const dotenvPath = path17.resolve(process.cwd(), ".env");
25402
+ const dotenvPath = path16.resolve(process.cwd(), ".env");
25403
25403
  let encoding = "utf8";
25404
25404
  let processEnv = process.env;
25405
25405
  if (options && options.processEnv != null) {
@@ -25427,13 +25427,13 @@ var require_main = __commonJS((exports, module) => {
25427
25427
  }
25428
25428
  let lastError;
25429
25429
  const parsedAll = {};
25430
- for (const path18 of optionPaths) {
25430
+ for (const path17 of optionPaths) {
25431
25431
  try {
25432
- const parsed = DotenvModule.parse(fs19.readFileSync(path18, { encoding }));
25432
+ const parsed = DotenvModule.parse(fs14.readFileSync(path17, { encoding }));
25433
25433
  DotenvModule.populate(parsedAll, parsed, options);
25434
25434
  } catch (e2) {
25435
25435
  if (debug) {
25436
- _debug(`Failed to load ${path18} ${e2.message}`);
25436
+ _debug(`Failed to load ${path17} ${e2.message}`);
25437
25437
  }
25438
25438
  lastError = e2;
25439
25439
  }
@@ -25446,7 +25446,7 @@ var require_main = __commonJS((exports, module) => {
25446
25446
  const shortPaths = [];
25447
25447
  for (const filePath of optionPaths) {
25448
25448
  try {
25449
- const relative3 = path17.relative(process.cwd(), filePath);
25449
+ const relative3 = path16.relative(process.cwd(), filePath);
25450
25450
  shortPaths.push(relative3);
25451
25451
  } catch (e2) {
25452
25452
  if (debug) {
@@ -32026,7 +32026,7 @@ ${a2}` : a2);
32026
32026
  }
32027
32027
  return O2.stringifyString({ comment: t, type: e2, value: n2 }, r, s, i2);
32028
32028
  } };
32029
- function os4(t, e2) {
32029
+ function os3(t, e2) {
32030
32030
  let n2 = O2.resolveSeq(t, e2);
32031
32031
  for (let r = 0;r < n2.items.length; ++r) {
32032
32032
  let s = n2.items[r];
@@ -32069,7 +32069,7 @@ ${i2.comment}` : s.comment), s = i2;
32069
32069
  }
32070
32070
  return r;
32071
32071
  }
32072
- var Qo = { default: false, tag: "tag:yaml.org,2002:pairs", resolve: os4, createNode: as }, $e = class t extends O2.YAMLSeq {
32072
+ var Qo = { default: false, tag: "tag:yaml.org,2002:pairs", resolve: os3, createNode: as }, $e = class t extends O2.YAMLSeq {
32073
32073
  constructor() {
32074
32074
  super(), G2._defineProperty(this, "add", O2.YAMLMap.prototype.add.bind(this)), G2._defineProperty(this, "delete", O2.YAMLMap.prototype.delete.bind(this)), G2._defineProperty(this, "get", O2.YAMLMap.prototype.get.bind(this)), G2._defineProperty(this, "has", O2.YAMLMap.prototype.has.bind(this)), G2._defineProperty(this, "set", O2.YAMLMap.prototype.set.bind(this)), this.tag = t.tag;
32075
32075
  }
@@ -32087,7 +32087,7 @@ ${i2.comment}` : s.comment), s = i2;
32087
32087
  };
32088
32088
  G2._defineProperty($e, "tag", "tag:yaml.org,2002:omap");
32089
32089
  function Go(t, e2) {
32090
- let n2 = os4(t, e2), r = [];
32090
+ let n2 = os3(t, e2), r = [];
32091
32091
  for (let { key: s } of n2.items)
32092
32092
  if (s instanceof O2.Scalar)
32093
32093
  if (r.includes(s.value)) {
@@ -34132,7 +34132,7 @@ function ls(e2, t) {
34132
34132
  c3.push({ indent: h2, mode: g, doc: S2.contents });
34133
34133
  break;
34134
34134
  case Ge3:
34135
- c3.length > 0 && o2.push({ indent: h2, mode: g, doc: os4 });
34135
+ c3.length > 0 && o2.push({ indent: h2, mode: g, doc: os3 });
34136
34136
  break;
34137
34137
  case me3:
34138
34138
  switch (g) {
@@ -37486,7 +37486,7 @@ var Ba2, jn = (e2, t) => {
37486
37486
  }, oe = (e2, { originalText: t }) => Yt(t, I3(e2)), Ae3, Se2, xt2, Ue, hi2 = (e2) => e2?.type === "TSAsExpression" && e2.typeAnnotation.type === "TSTypeReference" && e2.typeAnnotation.typeName.type === "Identifier" && e2.typeAnnotation.typeName.name === "const", Cr2, dp, Kt2 = (e2) => {
37487
37487
  for (let t of e2.quasis)
37488
37488
  delete t.value;
37489
- }, Bi2, Cp, Ap = (e2, [t]) => t?.type === "ComponentParameter" && t.shorthand && t.name === e2 && t.local !== t.name || t?.type === "MatchObjectPatternProperty" && t.shorthand && t.key === e2 && t.value !== t.key || t?.type === "ObjectProperty" && t.shorthand && t.key === e2 && t.value !== t.key || t?.type === "Property" && t.shorthand && t.key === e2 && !mt4(t) && t.value !== t.key, Tp = (e2, [t]) => !!(e2.type === "FunctionExpression" && t.type === "MethodDefinition" && t.value === e2 && K3(e2).length === 0 && !e2.returnType && !R3(e2.typeParameters) && e2.body), bi2 = (e2, [t]) => t?.typeAnnotation === e2 && hi2(t), xp = (e2, [t, ...r]) => bi2(e2, [t]) || t?.typeName === e2 && bi2(t, r), Pi2, at4, _e2, ue, Qn, Hr, Zn2 = (e2, t) => At4(e2) || !ue(t, w(e2), I3(e2)), Mp, Np, wi2, Xp, Vp, Ri2, nc, Ji2, Gi2, ic, Wi2, Ye = "string", Be = "array", tt3 = "cursor", He3 = "indent", Xe2 = "align", rt4 = "trim", Fe2 = "group", Me2 = "fill", be2 = "if-break", Ve3 = "indent-if-break", $e = "line-suffix", Ge3 = "line-suffix-boundary", me3 = "line", Pe2 = "label", Ne2 = "break-parent", Xr, We3, ac = (e2) => new Intl.ListFormat("en-US", { type: "disjunction" }).format(e2), is, gt4, qi2, Vr2, de2, Kr, $i2, Ki2, ke3, Tr2, A, f, os4, E, yc, $r2, je2, Ec = "cr", Fc = "crlf", dc = "\r", Cc = `\r
37489
+ }, Bi2, Cp, Ap = (e2, [t]) => t?.type === "ComponentParameter" && t.shorthand && t.name === e2 && t.local !== t.name || t?.type === "MatchObjectPatternProperty" && t.shorthand && t.key === e2 && t.value !== t.key || t?.type === "ObjectProperty" && t.shorthand && t.key === e2 && t.value !== t.key || t?.type === "Property" && t.shorthand && t.key === e2 && !mt4(t) && t.value !== t.key, Tp = (e2, [t]) => !!(e2.type === "FunctionExpression" && t.type === "MethodDefinition" && t.value === e2 && K3(e2).length === 0 && !e2.returnType && !R3(e2.typeParameters) && e2.body), bi2 = (e2, [t]) => t?.typeAnnotation === e2 && hi2(t), xp = (e2, [t, ...r]) => bi2(e2, [t]) || t?.typeName === e2 && bi2(t, r), Pi2, at4, _e2, ue, Qn, Hr, Zn2 = (e2, t) => At4(e2) || !ue(t, w(e2), I3(e2)), Mp, Np, wi2, Xp, Vp, Ri2, nc, Ji2, Gi2, ic, Wi2, Ye = "string", Be = "array", tt3 = "cursor", He3 = "indent", Xe2 = "align", rt4 = "trim", Fe2 = "group", Me2 = "fill", be2 = "if-break", Ve3 = "indent-if-break", $e = "line-suffix", Ge3 = "line-suffix-boundary", me3 = "line", Pe2 = "label", Ne2 = "break-parent", Xr, We3, ac = (e2) => new Intl.ListFormat("en-US", { type: "disjunction" }).format(e2), is, gt4, qi2, Vr2, de2, Kr, $i2, Ki2, ke3, Tr2, A, f, os3, E, yc, $r2, je2, Ec = "cr", Fc = "crlf", dc = "\r", Cc = `\r
37490
37490
  `, Ac = `
37491
37491
  `, Tc, xc, gc, as, ve3, ct3, cs, no2, so2, fs20, po2 = (e2) => Oc(e2) || wc(e2) || _c(e2) || oo2(e2), Es = 0, fo2, yo, jc, Co, Gc, Wc, go, qc, Ao, Uc, To, Yc, ho, ko = "format", Io, Fs2, Oo, Qc, ge2, Mo, sl2 = () => true, Et4, pl, cl, ll, ml = (e2) => ll.test(e2), vo, dt4, fl = 0, Ro = (e2) => e2.type === "BinaryExpression" && e2.operator === "|", Fl, dl, Cl, Go = (e2) => e2.match((t) => t.type === "TSTypeAnnotation", (t, r) => (r === "returnType" || r === "typeAnnotation") && (t.type === "TSFunctionType" || t.type === "TSConstructorType")) ? "=>" : e2.match((t) => t.type === "TSTypeAnnotation", (t, r) => r === "typeAnnotation" && (t.type === "TSJSDocNullableType" || t.type === "TSJSDocNonNullableType" || t.type === "TSTypePredicate")) || e2.match((t) => t.type === "TypeAnnotation", (t, r) => r === "typeAnnotation" && t.type === "Identifier", (t, r) => r === "id" && t.type === "DeclareFunction") || e2.match((t) => t.type === "TypeAnnotation", (t, r) => r === "typeAnnotation" && t.type === "Identifier", (t, r) => r === "id" && t.type === "DeclareHook") || e2.match((t) => t.type === "TypeAnnotation", (t, r) => r === "bound" && t.type === "TypeParameter" && t.usesExtendsBound) ? "" : ":", hr2, kl = (e2) => ((e2.type === "ChainExpression" || e2.type === "TSNonNullExpression") && (e2 = e2.expression), M3(e2) && le(e2).length > 0), Vo, Ll, cn2, Yl = ({ node: e2, key: t, parent: r }) => t === "value" && e2.type === "FunctionExpression" && (r.type === "ObjectMethod" || r.type === "ClassMethod" || r.type === "ClassPrivateMethod" || r.type === "MethodDefinition" || r.type === "TSAbstractMethodDefinition" || r.type === "TSDeclareMethod" || r.type === "Property" && mt4(r)), bs = ({ node: e2, parent: t }) => e2.type === "ExpressionStatement" && t.type === "Program" && t.body.length === 1 && (Array.isArray(t.directives) && t.directives.length === 0 || !t.directives), Ls2, Qe2, ws = class {
37492
37492
  #e;
@@ -37704,8 +37704,8 @@ var init_estree = __esm(() => {
37704
37704
  Tr2 = { type: tt3 };
37705
37705
  A = { type: me3 };
37706
37706
  f = { type: me3, soft: true };
37707
- os4 = { type: me3, hard: true };
37708
- E = [os4, ke3];
37707
+ os3 = { type: me3, hard: true };
37708
+ E = [os3, ke3];
37709
37709
  yc = { type: me3, hard: true, literal: true };
37710
37710
  $r2 = [yc, ke3];
37711
37711
  je2 = { type: Ge3 };
@@ -37909,7 +37909,7 @@ function wt5(e2, t, i2, s) {
37909
37909
  return e2.type = t, e2.end = i2, this.options.locations && (e2.loc.end = s), this.options.ranges && (e2.range[1] = i2), e2;
37910
37910
  }
37911
37911
  function us2(e2) {
37912
- var t = Ft4[e2] = { binary: H4(ss2[e2] + " " + lt4), binaryOfStrings: H4(as2[e2]), nonBinary: { General_Category: H4(lt4), Script: H4(os5[e2]) } };
37912
+ var t = Ft4[e2] = { binary: H4(ss2[e2] + " " + lt4), binaryOfStrings: H4(as2[e2]), nonBinary: { General_Category: H4(lt4), Script: H4(os4[e2]) } };
37913
37913
  t.nonBinary.Script_Extensions = t.nonBinary.Script, t.nonBinary.gc = t.nonBinary.General_Category, t.nonBinary.sc = t.nonBinary.Script, t.nonBinary.scx = t.nonBinary.Script_Extensions;
37914
37914
  }
37915
37915
  function hs2(e2) {
@@ -38299,7 +38299,7 @@ var Ii3, Be2, Ni3, Li3, Ri3, Vi3, ot4 = (e2, t) => () => (t || e2((t = { exports
38299
38299
  this.flags = t, this.var = [], this.lexical = [], this.functions = [];
38300
38300
  }, Te3 = function(t, i2, s) {
38301
38301
  this.type = "", this.start = i2, this.end = 0, t.options.locations && (this.loc = new be3(t, s)), t.options.directSourceFile && (this.sourceFile = t.options.directSourceFile), t.options.ranges && (this.range = [i2, 0]);
38302
- }, he3, ts2 = "Gara Garay Gukh Gurung_Khema Hrkt Katakana_Or_Hiragana Kawi Kirat_Rai Krai Nag_Mundari Nagm Ol_Onal Onao Sunu Sunuwar Todhri Todr Tulu_Tigalari Tutg Unknown Zzzz", Pt4 = "ASCII ASCII_Hex_Digit AHex Alphabetic Alpha Any Assigned Bidi_Control Bidi_C Bidi_Mirrored Bidi_M Case_Ignorable CI Cased Changes_When_Casefolded CWCF Changes_When_Casemapped CWCM Changes_When_Lowercased CWL Changes_When_NFKC_Casefolded CWKCF Changes_When_Titlecased CWT Changes_When_Uppercased CWU Dash Default_Ignorable_Code_Point DI Deprecated Dep Diacritic Dia Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Extender Ext Grapheme_Base Gr_Base Grapheme_Extend Gr_Ext Hex_Digit Hex IDS_Binary_Operator IDSB IDS_Trinary_Operator IDST ID_Continue IDC ID_Start IDS Ideographic Ideo Join_Control Join_C Logical_Order_Exception LOE Lowercase Lower Math Noncharacter_Code_Point NChar Pattern_Syntax Pat_Syn Pattern_White_Space Pat_WS Quotation_Mark QMark Radical Regional_Indicator RI Sentence_Terminal STerm Soft_Dotted SD Terminal_Punctuation Term Unified_Ideograph UIdeo Uppercase Upper Variation_Selector VS White_Space space XID_Continue XIDC XID_Start XIDS", It4, Nt4, Lt5, Rt3, is2, ss2, rs2 = "Basic_Emoji Emoji_Keycap_Sequence RGI_Emoji_Modifier_Sequence RGI_Emoji_Flag_Sequence RGI_Emoji_Tag_Sequence RGI_Emoji_ZWJ_Sequence RGI_Emoji", as2, lt4 = "Cased_Letter LC Close_Punctuation Pe Connector_Punctuation Pc Control Cc cntrl Currency_Symbol Sc Dash_Punctuation Pd Decimal_Number Nd digit Enclosing_Mark Me Final_Punctuation Pf Format Cf Initial_Punctuation Pi Letter L Letter_Number Nl Line_Separator Zl Lowercase_Letter Ll Mark M Combining_Mark Math_Symbol Sm Modifier_Letter Lm Modifier_Symbol Sk Nonspacing_Mark Mn Number N Open_Punctuation Ps Other C Other_Letter Lo Other_Number No Other_Punctuation Po Other_Symbol So Paragraph_Separator Zp Private_Use Co Punctuation P punct Separator Z Space_Separator Zs Spacing_Mark Mc Surrogate Cs Symbol S Titlecase_Letter Lt Unassigned Cn Uppercase_Letter Lu", Vt4 = "Adlam Adlm Ahom Anatolian_Hieroglyphs Hluw Arabic Arab Armenian Armn Avestan Avst Balinese Bali Bamum Bamu Bassa_Vah Bass Batak Batk Bengali Beng Bhaiksuki Bhks Bopomofo Bopo Brahmi Brah Braille Brai Buginese Bugi Buhid Buhd Canadian_Aboriginal Cans Carian Cari Caucasian_Albanian Aghb Chakma Cakm Cham Cham Cherokee Cher Common Zyyy Coptic Copt Qaac Cuneiform Xsux Cypriot Cprt Cyrillic Cyrl Deseret Dsrt Devanagari Deva Duployan Dupl Egyptian_Hieroglyphs Egyp Elbasan Elba Ethiopic Ethi Georgian Geor Glagolitic Glag Gothic Goth Grantha Gran Greek Grek Gujarati Gujr Gurmukhi Guru Han Hani Hangul Hang Hanunoo Hano Hatran Hatr Hebrew Hebr Hiragana Hira Imperial_Aramaic Armi Inherited Zinh Qaai Inscriptional_Pahlavi Phli Inscriptional_Parthian Prti Javanese Java Kaithi Kthi Kannada Knda Katakana Kana Kayah_Li Kali Kharoshthi Khar Khmer Khmr Khojki Khoj Khudawadi Sind Lao Laoo Latin Latn Lepcha Lepc Limbu Limb Linear_A Lina Linear_B Linb Lisu Lisu Lycian Lyci Lydian Lydi Mahajani Mahj Malayalam Mlym Mandaic Mand Manichaean Mani Marchen Marc Masaram_Gondi Gonm Meetei_Mayek Mtei Mende_Kikakui Mend Meroitic_Cursive Merc Meroitic_Hieroglyphs Mero Miao Plrd Modi Mongolian Mong Mro Mroo Multani Mult Myanmar Mymr Nabataean Nbat New_Tai_Lue Talu Newa Newa Nko Nkoo Nushu Nshu Ogham Ogam Ol_Chiki Olck Old_Hungarian Hung Old_Italic Ital Old_North_Arabian Narb Old_Permic Perm Old_Persian Xpeo Old_South_Arabian Sarb Old_Turkic Orkh Oriya Orya Osage Osge Osmanya Osma Pahawh_Hmong Hmng Palmyrene Palm Pau_Cin_Hau Pauc Phags_Pa Phag Phoenician Phnx Psalter_Pahlavi Phlp Rejang Rjng Runic Runr Samaritan Samr Saurashtra Saur Sharada Shrd Shavian Shaw Siddham Sidd SignWriting Sgnw Sinhala Sinh Sora_Sompeng Sora Soyombo Soyo Sundanese Sund Syloti_Nagri Sylo Syriac Syrc Tagalog Tglg Tagbanwa Tagb Tai_Le Tale Tai_Tham Lana Tai_Viet Tavt Takri Takr Tamil Taml Tangut Tang Telugu Telu Thaana Thaa Thai Thai Tibetan Tibt Tifinagh Tfng Tirhuta Tirh Ugaritic Ugar Vai Vaii Warang_Citi Wara Yi Yiii Zanabazar_Square Zanb", Ot4, Bt2, Dt4, Mt4, ns2, os5, Ft4, ft4, me4, Fe3, f2, ve4 = function(t, i2) {
38302
+ }, he3, ts2 = "Gara Garay Gukh Gurung_Khema Hrkt Katakana_Or_Hiragana Kawi Kirat_Rai Krai Nag_Mundari Nagm Ol_Onal Onao Sunu Sunuwar Todhri Todr Tulu_Tigalari Tutg Unknown Zzzz", Pt4 = "ASCII ASCII_Hex_Digit AHex Alphabetic Alpha Any Assigned Bidi_Control Bidi_C Bidi_Mirrored Bidi_M Case_Ignorable CI Cased Changes_When_Casefolded CWCF Changes_When_Casemapped CWCM Changes_When_Lowercased CWL Changes_When_NFKC_Casefolded CWKCF Changes_When_Titlecased CWT Changes_When_Uppercased CWU Dash Default_Ignorable_Code_Point DI Deprecated Dep Diacritic Dia Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Extender Ext Grapheme_Base Gr_Base Grapheme_Extend Gr_Ext Hex_Digit Hex IDS_Binary_Operator IDSB IDS_Trinary_Operator IDST ID_Continue IDC ID_Start IDS Ideographic Ideo Join_Control Join_C Logical_Order_Exception LOE Lowercase Lower Math Noncharacter_Code_Point NChar Pattern_Syntax Pat_Syn Pattern_White_Space Pat_WS Quotation_Mark QMark Radical Regional_Indicator RI Sentence_Terminal STerm Soft_Dotted SD Terminal_Punctuation Term Unified_Ideograph UIdeo Uppercase Upper Variation_Selector VS White_Space space XID_Continue XIDC XID_Start XIDS", It4, Nt4, Lt5, Rt3, is2, ss2, rs2 = "Basic_Emoji Emoji_Keycap_Sequence RGI_Emoji_Modifier_Sequence RGI_Emoji_Flag_Sequence RGI_Emoji_Tag_Sequence RGI_Emoji_ZWJ_Sequence RGI_Emoji", as2, lt4 = "Cased_Letter LC Close_Punctuation Pe Connector_Punctuation Pc Control Cc cntrl Currency_Symbol Sc Dash_Punctuation Pd Decimal_Number Nd digit Enclosing_Mark Me Final_Punctuation Pf Format Cf Initial_Punctuation Pi Letter L Letter_Number Nl Line_Separator Zl Lowercase_Letter Ll Mark M Combining_Mark Math_Symbol Sm Modifier_Letter Lm Modifier_Symbol Sk Nonspacing_Mark Mn Number N Open_Punctuation Ps Other C Other_Letter Lo Other_Number No Other_Punctuation Po Other_Symbol So Paragraph_Separator Zp Private_Use Co Punctuation P punct Separator Z Space_Separator Zs Spacing_Mark Mc Surrogate Cs Symbol S Titlecase_Letter Lt Unassigned Cn Uppercase_Letter Lu", Vt4 = "Adlam Adlm Ahom Anatolian_Hieroglyphs Hluw Arabic Arab Armenian Armn Avestan Avst Balinese Bali Bamum Bamu Bassa_Vah Bass Batak Batk Bengali Beng Bhaiksuki Bhks Bopomofo Bopo Brahmi Brah Braille Brai Buginese Bugi Buhid Buhd Canadian_Aboriginal Cans Carian Cari Caucasian_Albanian Aghb Chakma Cakm Cham Cham Cherokee Cher Common Zyyy Coptic Copt Qaac Cuneiform Xsux Cypriot Cprt Cyrillic Cyrl Deseret Dsrt Devanagari Deva Duployan Dupl Egyptian_Hieroglyphs Egyp Elbasan Elba Ethiopic Ethi Georgian Geor Glagolitic Glag Gothic Goth Grantha Gran Greek Grek Gujarati Gujr Gurmukhi Guru Han Hani Hangul Hang Hanunoo Hano Hatran Hatr Hebrew Hebr Hiragana Hira Imperial_Aramaic Armi Inherited Zinh Qaai Inscriptional_Pahlavi Phli Inscriptional_Parthian Prti Javanese Java Kaithi Kthi Kannada Knda Katakana Kana Kayah_Li Kali Kharoshthi Khar Khmer Khmr Khojki Khoj Khudawadi Sind Lao Laoo Latin Latn Lepcha Lepc Limbu Limb Linear_A Lina Linear_B Linb Lisu Lisu Lycian Lyci Lydian Lydi Mahajani Mahj Malayalam Mlym Mandaic Mand Manichaean Mani Marchen Marc Masaram_Gondi Gonm Meetei_Mayek Mtei Mende_Kikakui Mend Meroitic_Cursive Merc Meroitic_Hieroglyphs Mero Miao Plrd Modi Mongolian Mong Mro Mroo Multani Mult Myanmar Mymr Nabataean Nbat New_Tai_Lue Talu Newa Newa Nko Nkoo Nushu Nshu Ogham Ogam Ol_Chiki Olck Old_Hungarian Hung Old_Italic Ital Old_North_Arabian Narb Old_Permic Perm Old_Persian Xpeo Old_South_Arabian Sarb Old_Turkic Orkh Oriya Orya Osage Osge Osmanya Osma Pahawh_Hmong Hmng Palmyrene Palm Pau_Cin_Hau Pauc Phags_Pa Phag Phoenician Phnx Psalter_Pahlavi Phlp Rejang Rjng Runic Runr Samaritan Samr Saurashtra Saur Sharada Shrd Shavian Shaw Siddham Sidd SignWriting Sgnw Sinhala Sinh Sora_Sompeng Sora Soyombo Soyo Sundanese Sund Syloti_Nagri Sylo Syriac Syrc Tagalog Tglg Tagbanwa Tagb Tai_Le Tale Tai_Tham Lana Tai_Viet Tavt Takri Takr Tamil Taml Tangut Tang Telugu Telu Thaana Thaa Thai Thai Tibetan Tibt Tifinagh Tfng Tirhuta Tirh Ugaritic Ugar Vai Vaii Warang_Citi Wara Yi Yiii Zanabazar_Square Zanb", Ot4, Bt2, Dt4, Mt4, ns2, os4, Ft4, ft4, me4, Fe3, f2, ve4 = function(t, i2) {
38303
38303
  this.parent = t, this.base = i2 || this;
38304
38304
  }, G3 = function(t) {
38305
38305
  this.parser = t, this.validFlags = "gim" + (t.options.ecmaVersion >= 6 ? "uy" : "") + (t.options.ecmaVersion >= 9 ? "s" : "") + (t.options.ecmaVersion >= 13 ? "d" : "") + (t.options.ecmaVersion >= 15 ? "v" : ""), this.unicodeProperties = Ft4[t.options.ecmaVersion >= 14 ? 14 : t.options.ecmaVersion], this.source = "", this.flags = "", this.start = 0, this.switchU = false, this.switchV = false, this.switchN = false, this.pos = 0, this.lastIntValue = 0, this.lastStringValue = "", this.lastAssertionIsQuantifiable = false, this.numCapturingParens = 0, this.maxBackReference = 0, this.groupNames = Object.create(null), this.backReferenceNames = [], this.branchID = null;
@@ -40009,7 +40009,7 @@ var init_acorn = __esm(() => {
40009
40009
  Dt4 = Bt2 + " Chorasmian Chrs Diak Dives_Akuru Khitan_Small_Script Kits Yezi Yezidi";
40010
40010
  Mt4 = Dt4 + " Cypro_Minoan Cpmn Old_Uyghur Ougr Tangsa Tnsa Toto Vithkuqi Vith";
40011
40011
  ns2 = Mt4 + " " + ts2;
40012
- os5 = { 9: Vt4, 10: Ot4, 11: Bt2, 12: Dt4, 13: Mt4, 14: ns2 };
40012
+ os4 = { 9: Vt4, 10: Ot4, 11: Bt2, 12: Dt4, 13: Mt4, 14: ns2 };
40013
40013
  Ft4 = {};
40014
40014
  for (me4 = 0, Fe3 = [9, 10, 11, 12, 13, 14];me4 < Fe3.length; me4 += 1)
40015
40015
  ft4 = Fe3[me4], us2(ft4);
@@ -41205,7 +41205,7 @@ function Ge5(t, e2) {
41205
41205
  return Ai4(t, e2, (n3, s) => n3.isEquivalent(s));
41206
41206
  }
41207
41207
  function Ji4(t19) {
41208
- return t19 >= os6 && t19 <= as3 || t19 == ds3;
41208
+ return t19 >= os5 && t19 <= as3 || t19 == ds3;
41209
41209
  }
41210
41210
  function W6(t19) {
41211
41211
  return Oi4 <= t19 && t19 <= Fi4;
@@ -41264,7 +41264,7 @@ function xr3(t24) {
41264
41264
  case ji4:
41265
41265
  return Li4;
41266
41266
  case zi4:
41267
- return os6;
41267
+ return os5;
41268
41268
  case Xi4:
41269
41269
  return Ni4;
41270
41270
  default:
@@ -41616,7 +41616,7 @@ var Ci4, _i4, Ti4, an3 = (t) => {
41616
41616
  for (let s of e2)
41617
41617
  this.visit(s, n3);
41618
41618
  }
41619
- }, kn2, bn2, L4, An2, pe3 = 0, os6 = 9, Ie4 = 10, Ni4 = 11, Pi4 = 12, Li4 = 13, as3 = 32, Mi3 = 33, ls3 = 34, Ri4 = 35, Wt5 = 36, $i4 = 37, In2 = 38, cs3 = 39, ve5 = 40, q6 = 41, Nn = 42, us3 = 43, Q5 = 44, ps3 = 45, H5 = 46, Fe4 = 47, j3 = 58, fe3 = 59, Di4 = 60, k5 = 61, Bi4 = 62, Pn2 = 63, Oi4 = 48, Fi4 = 57, qt3 = 65, Vi4 = 69, jt4 = 90, te4 = 91, it4 = 92, G4 = 93, Ui4 = 94, Xe4 = 95, hs3 = 97, Hi4 = 101, Wi4 = 102, qi4 = 110, ji4 = 114, zi4 = 116, Gi4 = 117, Xi4 = 118, fs22 = 122, Ve5 = 123, Ln2 = 124, K5 = 125, ds3 = 160, $t4 = 96, Ue3 = class t19 {
41619
+ }, kn2, bn2, L4, An2, pe3 = 0, os5 = 9, Ie4 = 10, Ni4 = 11, Pi4 = 12, Li4 = 13, as3 = 32, Mi3 = 33, ls3 = 34, Ri4 = 35, Wt5 = 36, $i4 = 37, In2 = 38, cs3 = 39, ve5 = 40, q6 = 41, Nn = 42, us3 = 43, Q5 = 44, ps3 = 45, H5 = 46, Fe4 = 47, j3 = 58, fe3 = 59, Di4 = 60, k5 = 61, Bi4 = 62, Pn2 = 63, Oi4 = 48, Fi4 = 57, qt3 = 65, Vi4 = 69, jt4 = 90, te4 = 91, it4 = 92, G4 = 93, Ui4 = 94, Xe4 = 95, hs3 = 97, Hi4 = 101, Wi4 = 102, qi4 = 110, ji4 = 114, zi4 = 116, Gi4 = 117, Xi4 = 118, fs22 = 122, Ve5 = 123, Ln2 = 124, K5 = 125, ds3 = 160, $t4 = 96, Ue3 = class t19 {
41620
41620
  file;
41621
41621
  offset;
41622
41622
  line;
@@ -44646,7 +44646,7 @@ function Gi5(a5) {
44646
44646
  if (a5.type !== "MemberExpression")
44647
44647
  return false;
44648
44648
  let { computed: t24, property: e2 } = a5;
44649
- return t24 && e2.type !== "StringLiteral" && (e2.type !== "TemplateLiteral" || e2.expressions.length > 0) ? false : os7(a5.object);
44649
+ return t24 && e2.type !== "StringLiteral" && (e2.type !== "TemplateLiteral" || e2.expressions.length > 0) ? false : os6(a5.object);
44650
44650
  }
44651
44651
  function Xi5(a5, t24) {
44652
44652
  let { type: e2 } = a5;
@@ -44673,8 +44673,8 @@ function Yi5(a5, t24) {
44673
44673
  }
44674
44674
  return false;
44675
44675
  }
44676
- function os7(a5) {
44677
- return a5.type === "Identifier" ? true : a5.type !== "MemberExpression" || a5.computed ? false : os7(a5.object);
44676
+ function os6(a5) {
44677
+ return a5.type === "Identifier" ? true : a5.type !== "MemberExpression" || a5.computed ? false : os6(a5.object);
44678
44678
  }
44679
44679
  function er5(a5) {
44680
44680
  if (a5.has("decorators")) {
@@ -52214,7 +52214,7 @@ var init_flow = __esm(() => {
52214
52214
  (function(a0) {
52215
52215
  var ox = 320, Yx = "loc", xr5 = 289, E1 = 70416, S22 = 69748, da3 = 163, Tt8 = 92159, Vr5 = 43587, G1 = "labeled_statement", yo3 = "&=", Et8 = "int_of_string", G32 = 110591, _o3 = 92909, gp2 = 11559, nD2 = "regexp", W52 = 43301, bp2 = 11703, V52 = 122654, ya2 = 255, uD2 = "%ni", $52 = 68252, iD2 = 232, Q52 = 42785, qn4 = "declare_variable", Tp2 = "while", Z52 = 66938, xy = 70301, ry = 124907, Ep2 = 126515, fD2 = 218, Bn3 = "pattern_identifier", ey = 67643, Un3 = "export_source", ty = 216, ny = 64279, cD2 = "Out_of_memory", uy = 113788, sD2 = "comments", iy = 126624, aD2 = "win32", Xn4 = "object_key_bigint_literal", oD2 = 185, Sp2 = 123214, _a4 = "constructor", fy = 69955, Gn4 = "import_declaration", cy = 68437, sy = "Failure", Ap2 = "Unix.Unix_error", ay = 64255, oy = 42539, vy = 110579, Yn3 = "export_default_declaration", zn4 = "jsx_attribute_name", Ip2 = 11727, ly = 43002, Pp2 = 126500, Jn3 = "component_param_pattern", vD = "collect_comments_opt", Kn4 = "match_unary_pattern", lD2 = 321, Hn4 = "keyof_type", pD2 = "Invalid binary/octal ", kD = "range", py = 170, wa2 = "false", ky2 = 43798, mD2 = ", characters ", Wn3 = "object_type_property_getter", my = 65547, hy = 126467, dy = 65007, yy = 42237, _y = 8318, wy = 71215, Vn3 = "object_property_type", $n3 = "type_alias", gy = 67742, Qn3 = "function_body", hD = 304, by = 68111, Cp2 = 120745, Ty = 71959, Np2 = 43880, dD2 = "Match_failure", Zn4 = "type_cast", wo3 = 109, ga = "void", Ey = "generator", Sy = 125124, Ay = 101589, Op2 = 94179, yD2 = ">>>", jp2 = 70404, x7 = "optional_indexed_access_type", $1 = "argument", r7 = "object_property", e7 = "object_type_property", Iy = 67004, Py = 42783, Cy = 68850, _D = "@", Ny = 43741, Oy = 43487, Dp2 = "object", wD = "end", Rp2 = 126571, jy = 71956, gD = 208, Dy = 126566, Ry = 67702, bD = "EEXIST", t72 = "this_expression", TD = 203, Fy = 11507, My = 113807, Fp2 = 119893, Ly = 42735, p6 = "rest", n7 = "null_literal", k6 = "protected", qy = 43615, v22 = 8231, By = 68149, Uy = 73727, Xy = 72348, Gy = 92995, Sv = 224, Yy = 11686, zy = 43013, u7 = "assignment_pattern", Jy = 12329, i7 = "function_type", Y32 = 192, f7 = "jsx_element_name", Ky2 = 70018, ED2 = -57, c7 = "catch_clause_pattern", Mp2 = 126540, s7 = "template_literal", Hy = 120654, Wy = 68497, Vy = 67679, a7 = "readonly_type", $y = 68735, Qy = "<", Lp2 = ": No such file or directory", Zy = 66915, x9 = "chain", SD = "!", o7 = "object_type", r9 = 43712, qp2 = 64297, e9 = 183969, t92 = -105, n9 = 43503, u9 = 67591, Av = 65278, i9 = 67669, v7 = "for_of_assignment_pattern", m6 = "`", f9 = 11502, l7 = "catch_body", c9 = 42191, go3 = -744106340, s9 = 182, Iv = ":", AD = "a string", a9 = 65663, o9 = 66978, v9 = 71947, Bp2 = 43519, l9 = 71086, p9 = 125258, k9 = 12538, p7 = "expression_or_spread", ID = "Printexc.handle_uncaught_exception", Up2 = 69956, Xp2 = 120122, Gp2 = 247, PD = 231, m9 = " : flags Open_rdonly and Open_wronly are not compatible", k7 = "statement_fork_point", CD2 = 710, ND = -692038429, Ue5 = "static", h9 = 55203, d9 = 64324, y9 = 64111, OD = "!==", _9 = 120132, w9 = 124903, h6 = "class", jD = 222, m7 = "pattern_number_literal", ba2 = "kind", g9 = 71903, h7 = "variable_declarator", DD2 = " named `", d7 = "typeof_expression", b9 = 126627, T9 = 70084, RD = 228, Yp2 = 70480, y7 = "class_private_field", E9 = 239, zp2 = 120713, rn3 = 65535, z32 = -26, _7 = "private_name", S9 = 43137, w7 = "remote_identifier", A9 = 70161, g7 = "label_identifier", I9 = "src/parser/statement_parser.ml", P9 = 8335, C9 = 19903, N9 = 64310, Pv = "_", b7 = "for_init_declaration", FD2 = "infer", O9 = 64466, j9 = 43018, MD = "tokens", D9 = 92735, R9 = 66954, F9 = 65473, M9 = 70285, T7 = "sequence", L9 = "compare: functional value", q9 = 69890, d6 = 1000, B9 = 65487, U9 = 42653, LD = "\\\\", qD = "%=", E7 = "match_member_pattern_base", X9 = 72367, S7 = "function_rest_param", BD = "/static/", G9 = 124911, Y9 = 65276, Jp2 = 126558, z9 = 11498, UD = 137, A7 = "export_default_declaration_decl", J9 = "cases", Kp2 = 126602, I7 = "jsx_child", Xe6 = "continue", K9 = 42962, XD = "importKind", e1 = 122, J32 = "Literal", P7 = "pattern_object_property_identifier_key", H9 = 42508, bo3 = "in", W9 = 55238, V9 = 67071, $9 = 70831, Q9 = 72161, Z9 = 67462, GD = "<<=", x_ = 43009, r_ = 66383, Hp2 = 67827, e_ = 72202, t_ = 69839, n_ = 66775, YD = "-=", Cv = 8202, u_ = 70105, i_ = 120538, zD = -92, C7 = "for_in_left_declaration", f_ = "rendersType", Wp2 = 126563, c_ = 70708, Vp2 = 126523, JD2 = 166, N7 = "match_", KD = 202, s_ = 110951, Ta2 = "component", $p2 = 126552, a_ = 66977, o_ = 213, O7 = "enum_member_identifier", HD = 210, j7 = "enum_bigint_body", WD = ">=", v_ = 126495, l_ = "specifiers", p_ = "=", k_ = 65338, y6 = "members", m_ = 123535, h_ = 43702, d_ = 72767, Nv = "get", y_ = 126633, Qp2 = 126536, __ = 94098, w_ = "types", g_ = 113663, VD = "Internal Error: Found private field in object props", D7 = "jsx_element", b_ = 70366, T_ = 110959, Zp2 = 120655, $D = "trailingComments", QD = 282, To3 = 24029, ZD = -100, xR = 144, H22 = "yield", R7 = "binding_pattern", F7 = "typeof_identifier", rR = "ENOTEMPTY", xk = 126468, E_ = 1255, S_ = 120628, M7 = "pattern_object_property_string_literal_key", A_ = 8521, eR = "leadingComments", tR = 8204, Eo3 = "@ ", I_ = 70319, Ea2 = "left", nR = 188, rk = "case", P_ = 19967, ek = 42622, C_ = 43492, N_ = 113770, L7 = "match_instance_pattern_constructor", O_ = 42774, j_ = 183, tk = 8468, q72 = "record_body", B7 = "class_implements", nk = 126579, K32 = "string", uR = 211, r2 = -48, D_ = 69926, R_ = 123213, U7 = "if_consequent_statement", F_ = 124927, H32 = "number", M_ = 126546, L_ = 68119, q_ = 70726, uk = 70750, B_ = 65489, iR = "SpreadElement", fR = "callee", cR = 193, U_ = 70492, X_ = 71934, sR = 164, G_ = 110580, Y_ = 12320, ik = "any", se6 = "/", X72 = "type_guard", w1 = "body", fk = 178, ge6 = "pattern", aR = "comment_bounds", oR = 297, G7 = "binding_type_identifier", z_ = 187, Y7 = "pattern_array_rest_element_pattern", ck = "@])", J_ = 12543, K_ = 11623, vR = "start", H_ = 67871, ae4 = "interface", W_ = 8449, V_ = 67637, $_ = 42961, sk = 120085, Q_ = 126463, lR = "alternate", pR = -1053382366, Z_ = 70143, kR = "--", xw = 68031, z7 = "jsx_expression", J72 = "type_identifier_reference", ak = 11647, rw = "proto", St8 = "identifier", ew = 43696, At8 = "raw", tw = 126529, nw = 11564, ok = 126557, uw = 64911, vk = 67592, iw = 43493, lk = 215, fw = 110588, _6 = 461894857, cw = 92927, sw = 67861, aw = 119980, ow = 43042, mR = -89, vw = 66965, lw = 67391, W32 = "computed", hR = "unreachable jsxtext", pw = 71167, kw = 42559, mw = 72966, dR = 180, hw = 197, pk = 64319, yR = 169, _R = "*", kk = 129, dw = 66335, w6 = "meta", yw = 43388, mk = 94178, ft7 = "optional", hk = "unknown", _w = 120121, ww = 123180, dk = 8469, gw = 68220, wR = "|", bw = 43187, Tw = 94207, Ew = 124895, yk = 120513, Sw = 42527, Ov = 8286, Aw = 94177, g6 = "var", K7 = "component_type_param", Iw = 66421, gR = 285, Pw = 92991, Cw = 68415, H7 = "comment", W72 = "match_pattern_array_element", jv = 244, _k = "^", Nw = 173791, bR = 136, Ow = 42890, jw = "ENOTDIR", Dw = "??", Rw = 43711, Fw = 66303, Mw = 113800, Lw = 42239, qw = 12703, V7 = "variance_opt", $7 = "+", TR = ">>>=", ER = 147, SR = 376, wk = "mixed", Bw = 65613, Uw = 73029, AR = 318, Xw = 68191, IR = "*=", gk = 8487, Gw = 8477, Q7 = "toplevel_statement_list", bk = "never", Tk = "do", So3 = 125, Yw = 72249, PR = "Pervasives.do_at_exit", CR2 = "visit_trailing_comment", Z7 = "jsx_closing_element", xu2 = "jsx_namespaced_name", zw = 124908, Jw = 126651, ru2 = "component_declaration", Kw = 15, eu2 = "interface_type", tu2 = "function_type_return_annotation", Hw = 64109, Ek = 65595, Sk = 126560, Ww = 110927, Ak = 65598, Ik = 8488, nu2 = "`.", NR = 175, Pk = "package", Ck = "else", Nk = 120771, Vw = 68023, OR = "fd ", Dv = 8238, Ok = 888960333, jk = 119965, $w = 42655, uu2 = "match_object_pattern", Qw = 11710, Zw = 119993, iu2 = "boolean_literal", jR = 290, fu2 = "statement_list", cu2 = "function_param", su2 = "match_as_pattern", au2 = "pattern_object_property_bigint_literal_key", Dk = 69959, xg = 120485, DR = 240, rg = 191456, ou2 = "declare_enum", Rk = 120597, Fk = 70281, vu2 = "type_annotation", lu2 = "spread_element", Mk = 126544, eg = 120069, en4 = "key", tg = 43583, ng = "out", ug = `
52216
52216
  `, RR = "**=", pu2 = "pattern_object_property_pattern", ig = "e", fg = 72712, FR = "Internal Error: Found object private prop", cg = "ENOENT", sg = -42, ku2 = "jsx_opening_attribute", ag = 67646, mu2 = "component_type", og = 64296, vg = 43887, MR = "Division_by_zero", LR = "EnumDefaultedMember", hu2 = "typeof_member_identifier", lg = 43792, du2 = "match_member_pattern_property", yu2 = "declare_export_declaration_decl", pg = 93026, _u2 = "type_annotation_hint", kg = 42887, mg = 43881, hg = 43761, Lk = 8526, qR = 287, b6 = 119, dg = 43866, yg = 72847, _g = 8348, k1 = 101, wg = 94026, qk = 72272, BR = "src/parser/flow_lexer.ml", gg = 120744, Rv = 8191, V32 = "implies", Bk = 255, Uk = 11711, wu2 = "match_unary_pattern_argument", bg = 71235, UR = 288, Xk = 68116, cr5 = 100, gu2 = "match_expression", bu2 = "enum_body", Gk = 1114111, Tu2 = "assignment", Tg = 71955, Yk = 43260, Eu2 = "pattern_array_e", Eg = 126583, XR = "prefix", Su2 = "class_body", T6 = "shorthand", Sg = 171, Ag = 66256, zk = -97, GR = " =", Ig = 94032, Pg = 42606, Au2 = "match_case", Cg = 71839, Jk = 120134, Ng = 55291, Og = 92862, jg = 43019, Dg = 126543, $32 = "function", Rg = 111355, Fg = 11389, Mg = 70753, Lg = 43249, qg = 64829, Kk = "line", Iu2 = "function_declaration", Hk = "undefined", YR = "([^/]+)", Bg = 110947, Ug = 70002, zR = "Cygwin", Pu2 = "as_expression", Xg = 12591, Wk = 64285, Gg = 2048, Yg = 73112, Vk = 126589, JR = 225, $k = 43259, zg = 72817, Qk = 64318, KR = 172, HR = 209, Cu2 = "match_binding_pattern", Nu2 = " ", Ou2 = "import_source", E6 = "delete", WR = "Enum `", Zk = 126553, Jg = 67001, Fv = "default", Kg = 11630, Hg = 206, ju2 = "enum_bigint_member", Wg = 67504, x8 = 67593, Vg = 113791, VR = "MatchObjectPatternProperty", $g = 69572, Du2 = "typeof_type", $R = 212, QR = "%i", Ru2 = "function_this_param", Qg = 72329, Ao3 = "0x", Mv = 8239, Zg = 75075, ZR = 57343, Fu2 = "pattern_bigint_literal", xb = 12341, xF = 201, Lv = "hook", rF = ": closedir failed", rb = 42959, r8 = 119970, eb = 43560, eF = "||=", Mu2 = "member_private_name", tb = 120570, Lu2 = "object_key_identifier", e8 = 223, tF = "Not_found", qu2 = "record_static_property", nF = 230, Bu2 = "jsx_element_name_member_expression", Uu2 = "string_literal", nb = 120596, ub = 43807, ib = 69687, fb = 63743, t82 = 72192, Xu2 = "member_property", cb = 43262, Gu2 = "class_declaration", uF = "renders*", iF = "%Li", sb = 126578, Yu2 = "jsx_attribute", Q32 = 254, be6 = "empty", S6 = "label", zu2 = "object_internal_slot_property_type", n8 = 120133, ab = 43359, Ge7 = "predicate", fF = "??=", ob = 43697, vb = -43, Ju2 = "default_opt", cF = "the start of a statement", lb = 67826, Ku2 = "record_element", Hu2 = "object_", Wu2 = "class_element", u8 = 11631, i8 = 70855, Vu2 = "opaque_type", $u2 = "number_literal", sF = ", ", f8 = 8319, c8 = 120004, s8 = 133, Qu2 = "type_params", Zu2 = "pattern_object_rest_property", W22 = "import", pb = 72000, kb = 67413, mb = 12343, hb = 70080, xi6 = "intersection_type", l22 = -36, db = 70005, A6 = "properties", yb = 11679, _b = 8483, wb = 110587, aF = 43520, ri6 = "computed_key", oF = 207, ei6 = "class_identifier", gb = "Invalid number ", ti6 = "function_param_pattern", qv = 12288, bb = 113817, Tb = 70730, Eb = 178207, a8 = 71236, Sb = 167, ni6 = "object_indexer_property_type", Ab = 64286, vF = "TypeAnnotation", lF = 220, ui6 = "type_identifier", ii6 = "spread_property", fi6 = "jsx_attribute_value_expression", Ib = 126519, o8 = 70108, v8 = 126, l8 = 42999, Sa = "prototype", Pb = " : flags Open_text and Open_binary are not compatible", pF = "**", p8 = 43823, Cb = ": Not a directory", ci6 = "render_type", k8 = 72349, Z32 = "test", Nb = 43776, Ob = 92879, jb = 11263, kF = 241, Db = 93052, si6 = "nullable_type", Rb = 43704, Fb = 64321, mF = "Property", Mb = 72191, hF = 165, I6 = "instanceof", Lb = 69247, dF = 302, Ye4 = "name", m8 = 126634, qb = 8516, h8 = "typeArguments", Bb = 71127, ai6 = "jsx_spread_attribute", Ub = 66559, Xb = 44031, Gb = 43645, e2 = 8233, Yb = 71494, zb = "opaque", d8 = 72967, Jb = 70106, oi6 = "logical", yF = "@[%s =@ ", P6 = "0o", y8 = 126554, Kb = 71351, _8 = 8484, Hb = 72242, w8 = 120687, xl2 = 252, Wb = 183983, C6 = "%S", vi6 = "function_this_param_type", _F = 292, g8 = "decorators", Vb = 43255, li6 = "catch_clause", ze6 = "-", $b = 67711, wF = ": file descriptor already closed", b8 = 64311, pi6 = "record_declaration", T8 = 120539, Qb = "arguments", E8 = 73062, Zb = 173823, xT = 42124, rT = 72095, eT = 125259, tT = 42969, S8 = 70280, gF = 12520, nT = 69749, uT = 70066, ki6 = "binary", mi6 = "for_in_statement", iT = 43010, bF = "^=", fT = 126570, hi6 = "for_statement", A8 = 126584, di6 = "function_return_annotation", cT = 72144, sT = 8505, TF = -101, yi5 = "class_expression", aT = 120076, oT = 69807, vT = 40981, lT = -24976191, pT = 72768, kT = 126550, I8 = '"', _i6 = "call_type_arg", EF = "f", Bv = "this", P8 = 126628, SF = "===", AF = 56320, wi6 = "declare_module_exports", mT = 120512, p2 = 105, hT = 119974, dT = 71450, yT = 71942, IF = 195, C8 = 120629, PF = "/=", CF = ">>", gi6 = "declare_interface", NF = 4096, bi6 = "pattern_array_rest_element", _T = 71338, N8 = 126520, Ti6 = "as_const_expression", OF = "Popping lex mode from empty stack", jF = "renders?", wT = 68405, Ei6 = "member", Si6 = "class_extends", Uv = 12287, O8 = 126590, gT = 66377, DF = "fields", Io3 = "async", Ai6 = "pattern_array_element", rl2 = 240, RF = 308, bT = 69864, Xv = "readonly", TT = 70460, ET = 120779, ST = 66378, Ii6 = "new_", j8 = 126551, Pi6 = "pattern_object_rest_property_pattern", Ci6 = "for_statement_init", AT = 43595, D8 = 68296, FF = 148, MF = "\x01\x00\x00\x00\x00\x02", IT = 120712, PT = 64217, CT = 69295, LF2 = "||", NT = ";", OT = 70461, jT = 66939, DT = "record", qF = "collect_comments", BF = 279, Ni6 = "generic_type", RT = 68295, FT = 44002, R8 = 72162, Oi6 = "object_call_property_type", F8 = 8305, M8 = 119995, L8 = "with", ji6 = "class_property", UF = "qualification", Di6 = "jsx_attribute_name_namespaced", Ri6 = "if_statement", Fi6 = "typeof_qualified_identifier", XF = 238, MT = 65615, GF = 176, t24 = "expression", q8 = 126559, Mi5 = "jsx_attribute_value", Li6 = "<2>", qi6 = "component_param", B8 = "Map.bal", N62 = 132, LT = 70412, qT = 70440, YF = "<<", U8 = "finally", zF = "v", Bi6 = "syntax_opt", Ui6 = "meta_property", BT = 12447, UT = 67514, X8 = 12448, Xi6 = "object_mapped_type_property", Gv = "operator", JF = "closedir", Gi6 = "unary_expression", XT = 126588, GT = 70851, Yi6 = "export_batch_specifier", el2 = "renders", KF = 226, YT = 73111, HF = 221, rx = "", zT = 66927, JT = 64967, KT = "elements", HT = 67640, WT = 43754, zi6 = "declare_export_declaration", G8 = -26065557, VT = 65855, O6 = "boolean", Aa2 = "typeof", $T = 124902, WF = 139, QT = 65629, VF = 224, ZT = 43123, Y8 = 70449, xE = 12735, Te6 = 107, z8 = 11719, $F = "!=", Ji6 = "call_type_args", tl2 = "asserts", Po3 = -46, rE = "namespace", Ki6 = "match_pattern", Hi6 = "for_of_statement_lhs", J8 = 126504, eE = 69505, K8 = "for", tE = 72703, H8 = 120127, W8 = 43471, nE = 93047, QF = "Undefined_recursive_module", ZF = 2147483647, Wi6 = "template_literal_element", xM = "Unexpected ", uE = 101631, iE = 65497, V8 = 68120, Vi6 = "import_default_specifier", tn4 = "array", rM = "expressions", fE = 110930, eM = 204, $i6 = "while_", Qi6 = "function_rest_param_type", Co3 = 63, cE = 77808, tM = "Unexpected token `", k22 = 114, Zi6 = "pattern_object_p", sE = 65140, aE = 123190, xf2 = "pattern_object_property_number_literal_key", j6 = "enum", rf = "conditional_type", ef = 113, tf = "array_type", nM = "minus", oE = 43790, nf = "do_while", vE = 11567, lE = 11694, D6 = 256, pE = 119976, uf = "component_body", nn4 = 111, kE = 177976, $8 = 67644, mE = 73439, R62 = 951901561, uM = "?", iM = ")", Q8 = 43867, Z8 = 65575, hE = 69445, fM = "FunctionTypeParam", xm2 = 119996, dE = 65019, ff = "conditional", yE = 11505, cM = 135, _E = 71295, wE = 12799, gE = 67382, cf = "type_guard_annotation", sf = "object_key_computed", un4 = 123, af = "pattern_object_property_key", bE = 119892, TE = 67505, EE3 = 66962, of = "with_", SE = 43273, vf2 = "interface_declaration", rm2 = "bool", AE = 71945, IE = "declaration", PE = 11519, F6 = ">", CE = 66771, em2 = "}", sM = 8472, NE = 43014, lf = "declare_function", Gr4 = 127, OE = "RestElement", jE = 190, DE = 8467, aM = "module", tm2 = 126522, oM = "Sys_blocked_io", pf = "jsx_opening_element", kf2 = "object_key_number_literal", mf = "match_instance_pattern", vM = "|=", lM = "mixins", RE = 205, pM = 217, nm2 = "if", kM = "+=", hf = "match_object_pattern_property_key", df = "match_rest_pattern", yf = "export_named_declaration_specifier", um2 = "try", im2 = "_bigarr02", FE = 70479, fn5 = "right", ME = 245, LE = 11718, _f2 = "tuple_labeled_element", mM = "TypeParameterInstantiation", qE = "mkdir", BE = 71999, UE = 870530776, hM = "@[", dM = -908856609, yM = 331416730, XE = 11670, GE = 66735, YE = 43709, fm2 = 43642, zE = 67002, JE = 69375, wf = "function_body_any", KE = 119807, _M = "Assert_failure", gf = "function_identifier", HE = 65479, M62 = 131, Yv = "new", bf = "for_of_left_declaration", WE = 120084, VE = 100343, $E = 73030, cm2 = 70452, sm2 = 134, QE = 253, ZE = 42954, wM = 227, Tf = "jsx_member_expression_object", Ef = "class_property_value", xS = 120144, gM = 314, rS = 66994, nl2 = "set", eS = 126498, Sf = "tuple_element", Af = "arg_list", tS = 65481, nS = 8511, uS = 42964, iS = 11492, am2 = 126555, fS = 71039, cS = "exportKind", If2 = "program", sS = 70187, bM = 173, It7 = "as", zv = 124, TM = "visit_leading_comment", aS = 110575, Pf2 = "class_", oS = 72440, vS = 67897, EM = 235, lS = 8543, SM = 141, Cf2 = 120, Nf = "match_object_pattern_property", L6 = 1024, pS = 101640, AM = 1027, IM = 236, ul2 = 246, PM = "(", kS = 66511, Of = "regexp_literal", mS = 65574, hS = 43513, dS = 43695, CM = "&&", om2 = 11558, yS = 66503, _S = 93071, jf = "pattern_expression", wS = 65381, vm2 = 126538, gS = 12292, Df2 = "import_namespace_specifier", bS = 67583, TS = 120137, ES = 69622, SS = 120770, AS = 71131, Jv = 8287, IS = 110590, PS = 65135, CS = "Fatal error: exception ", q62 = 118, NS = 181, lm2 = 11687, m22 = "camlinternalFormat.ml", OS = 72959, jS = 249, Rf2 = "union_type", NM = 8206, DS = 73064, RS = 70271, FS = 92728, pm2 = 65344, km2 = 11695, Ff = "class_decorator", OM = "the end of an expression statement (`;`)", MS = 177983, LS = 8457, jM = 931, qS = 66499, BS = 94175, DM = "#", US = "Identifier", Mf2 = "for_in_statement_lhs", Lf = "pattern_string_literal", mm2 = 70302, hm2 = 126496, XS = 66461, GS = 82943, dm2 = 8450, YS = 72271, zS = 70853, JS = "of", RM = "Stack_overflow", B6 = "hasUnknownMembers", U62 = "a", qf = "variable_declarator_pattern", KS = 73061, HS = 77711, ym2 = 64317, WS = 73097, FM = 269, Bf = "enum_declaration", VS = 66966, $S = 189, QS = 119964, Uf = "type_param", cn4 = 782176664, _m2 = 65535, MM = -10, ZS = 64433, wm2 = 43815, gm2 = 94031, bm2 = 73065, xA = 69958, LM = 145, Tm2 = "property", Xf = "jsx_children", Gf = "member_property_identifier", rA = 42537, No3 = "const", eA = 70278, Yf = "enum_string_member", X62 = "local", zf = "jsx_element_name_identifier", tA = 68223, Em2 = "\x01\x02", nA = 119967, Sm2 = 119994, uA = 66993, Jf = "jsx_member_expression_identifier", Am2 = "explicitType", iA = 67589, fA = 65597, cA = "exported", sA = 94111, aA = 113775, Kf = "object_spread_property_type", oA = 64847, Hf = "component_identifier", Wf = "class_implements_interface", qM = 162, BM = 243, vA = 12783, UM = `Fatal error: exception %s
52217
- `, Im2 = 120093, G6 = "column", Vf = "component_rest_param", XM = "methods", lA = 70451, pA = 70312, kA = 69967, Pm2 = 70279, mA = 66463, hA = 92975, Cm2 = 70286, $f2 = "pattern_object_property_computed_key", Qf = "object_key_string_literal", dA = "jsError", Zf = "type_args", yA = 8304, GM = "==", wr5 = 115, xc2 = "declare_component", _A = 120092, wA = 43638, gA = 66811, Ia2 = -87, bA = 43334, TA = 66863, EA = 77823, YM = 143, rc2 = "optional_call", SA = 126562, Nm2 = 70162, ec2 = 104, zM = "static ", AA = 66963, Kv = "await", Om2 = 70107, V22 = "0", IA = 72250, PA = 8507, CA = 100351, jm2 = "AssignmentPattern", tc2 = "type", JM = "%u", NA = "NonNullExpression", nc2 = "function_expression_or_method", OA = 43470, KM = 146, HM = 242, WM = "camlinternalMod.ml", uc2 = "match_or_pattern", jA = 72750, DA = 69414, RA = 65370, ic2 = "syntax", VM = 32752, FA = 42963, $M = "End_of_file", MA = 12294, LA = 8471, QM = "elementType", qA = 43782, ZM = "++", BA = 43641, UA = 71944, fc2 = "record_property", XA = 126601, GA = 78894, xL = -45, Hv = "null", rL = 177, eL = "satisfies", YA = 131071, cc2 = "import_specifier", sc2 = "class_method", ac2 = "type_", zA = 126514, JA = 8454, tL = "inexact", KA = 67807, HA = 8525, WA = 65470, VA = 71352, oc2 = "tuple_spread_element", nL = 219, $A = "abstract", QA = 73458, Je7 = "return", Y6 = 65536, Dm2 = 126548, vc2 = "array_element", ZA = -253313196, xI = 186, Rm2 = "catch", lc2 = "infer_type", rI = 12295, uL = "Invalid legacy octal ", eI = 69762, tI = 43311, nI = 65437, pc2 = "variable_declaration", iL = -696510241, kc2 = "function_params", uI = 64316, fL = 311, Fm2 = 11565, cL = "infinity", iI = "@]", fI = 65908, mc2 = "extends", cI = 66204, sI = 43784, aI = 11742, Mm2 = 126503, Ke7 = "debugger", oI = 70457, z62 = 912068366, vI = 68786, Lm2 = "keyof", qm2 = 69415, lI = 12686, sn4 = 127343600, hc2 = "declare_type_alias", sL = "the", aL = 233, dc2 = "jsx_element_name_namespaced", pI = 72283, kI = 161, yc2 = "class_static_block", _c2 = "function_param_type", Pt7 = 128, mI = -673950933, Bm2 = 126591, oL = "Sys_error", hI = 74649, dI = 74862, J62 = "is", yI = 43738, _I = 68479, vL = 196, Um2 = 70854, wc2 = "enum_boolean_member", Xm2 = 72163, wI = 92783, lL = 281, gc2 = "component_param_name", gI = 68863, an4 = 32768, pL = 2048, bI = 64284, kL = "@{", TI = "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01", Gm2 = 8455, bc2 = "update_expression", mL = 276, EI = 65500, K62 = "from", SI = 68447, Ym2 = 12592, AI = 92766, hL = ">>=", n22 = 110, II = 66431, PI = 43586, Tc2 = "jsx_identifier", CI = " : file already exists", R1 = 128, NI = 71958, OI = 66717, Ec2 = "enum_boolean_body", jI = 64262, Yr5 = "id", Sc2 = "component_renders_annotation", DI = 42888, RI = 8584, FI = 73008, Ac2 = "enum_symbol_body", Ic2 = "declare_namespace", zm2 = 72713, MI = 55215, Pc2 = "object_property_value_type", Cc2 = "match_wildcard_pattern", Nc2 = "for_in_assignment_pattern", Jm2 = 8485, LI = 43395, qI = 229, Pa2 = "true", BI = 43743, Oc2 = "enum_number_member", dL = 234, UI = 72969, yL = "expected *", Ee6 = 102, _L = 200, H62 = "symbol", Wv = "source", jc2 = "tparam_const_modifier", XI = 43714, Dc2 = "jsx_fragment", Rc2 = "jsx_attribute_name_identifier", W62 = "public", GI = 43442, Fc2 = "pattern_object_property", YI = 65786, zI = 70783, JI = 43713, KI = 72160, wL = "*-/", Mc2 = "export_named_specifier", Lc2 = "arrow_function", HI = 122623, Km2 = 70006, gL = "${", WI = 43814, qc2 = "generic_qualified_identifier_type", VI = 199, Bc2 = "jsx_spread_child", Hm2 = 8489, Wm2 = 184, bL = 2047, $I = 66955, Uc2 = "try_catch", QI = 70497, TL = 313, EL = 237, ZI = 67431, xP = 125183, SL = -602162310, on8 = "params", rP = "consequent", eP = 68029, tP = 67829, nP = 68095, Xc2 = "enum_string_body", uP = 93823, iP = 68351, fP = 65495, Gc2 = "declare_module", Yc2 = "match_as_pattern_target", zc2 = "body_expression", cP = 66175, sP = 191, Vm2 = 70441, $m2 = 65141, Qm2 = "&", Jc2 = "super_expression", Zm2 = 126564, aP = 72105, LI0 = "fs", He7 = "throw", oP = 68287, vP = 67839, Ca2 = 116, lP = 110882, pP = 69404, kP = 123197, Vv = 65279, il3 = "src/parser/type_parser.ml", mP = 68115, xh = 126547, rh = 126556, hP = 73055, Kc2 = "member_property_expression", Hc2 = "enum_defaulted_member", dP = 43071, yP = 11726, Wc2 = "component_type_rest_param", _P = 68607, Vc2 = "object_key", AL = 160, $22 = "variance", wP = 70655, gP = 70414, fl2 = "super", bP = 123583, TP = 65594, V6 = "method", EP = 73648, $6 = 121, SP = 93951, $c2 = "pattern_array_element_pattern", AP = 43764, IP = 42993, eh = 120145, PP = 74879, IL = 168, th = 8486, CP = 72001, Qc2 = "tagged_template", Zc2 = "module_ref_literal", NP = 65312, Oo2 = "implements", OP = 43700, jP = 120003, PL = "Invalid_argument", xs6 = 16777215, DP = 83526, nh = 69744, uh = 12336, rs5 = "switch_case", CL = -61, es5 = "optional_member", RP = 64274, ih = 64322, fh = 126530, FP = 71998, ch = 72970, MP = 13311, LP = 73647, qP = 120074, cl2 = "let", NL = "global", ts5 = "expression_statement", ns5 = "component_type_params", BP = 512, UP = 69634, XP = 67461, GP = 123627, YP = 64913, OL = "children", jL = "PropertyDefinition", DL = 1026, RL = "%li", us5 = "declare_class", zP = 43258, is5 = "indexed_access_type", JP = 124926, h22 = 112, KP = "b", fs24 = "predicate_expression", cs5 = "if_alternate_statement", Q62 = "private", FL = -594953737, ML = 140, HP = "nan", WP = 72103, sh = 11735, ss5 = "statement", VP = "rmdir", ah = 66512, $P = "match", QP = 198, ZP = 11734, as5 = "import_named_specifier", xC = 69599, rC = 68799, eC = 194559, os8 = "match_array_pattern", LL = 174, vs6 = "function_", ls5 = "bigint_literal", t1 = 248, oh = 67638, vh = 126539, tC = 11557, qL = 214, nC = 5760, We7 = "break", vn3 = "block", ps5 = "match_member_pattern", uC = 123565, iC = 66815, m1 = "value", BL = 1039100673, fC = 69746, cC = 70448, sC = 74751, ks5 = "init", aC = 69551, lh = 65548, ms5 = "jsx_member_expression", ph = 68096, d22 = 108, kh = 126521, oC = 71487, hs5 = "match_statement", vC = 178205, lC = 12548, UL = " : is a directory", ln4 = ".", pC = 12348, sl3 = -835925911, B22 = "typeParameters", kC = 66855, Y1 = "typeAnnotation", $v = "bigint", ds5 = "jsx_attribute_value_literal", mh = 194, XL = "T_JSX_TEXT", mC = 68466, hh = 126537, GL = 67714067, hC = 69487, dh = "export", dC = 43822, yh = 126499, yC = 55242, ys5 = "member_type_identifier", YL = 138, _C = 71679, Qv = 130, wC = 12438, gC = 119969, zL = 298, _h = 12539, bC = 119972, JL = ",", TC = 71423, EC = "index out of bounds", Ct8 = 106, al2 = "%d", KL = "T_RENDERS_QUESTION", wh = 120571, gh = "returnType", SC = 69423, bh = 120070, HL = "%", Z62 = 117, AC = 179, IC = "EBADF", PC = 93759, Th = 64325, _s5 = "component_params", CC = 66517, NC = 67423, OC = 605857695, jC = 43518, WL = 251, ws5 = "for_of_statement", DC = 71983, VL = "~", RC = 12442, Ve7 = "switch", FC = 66207, Eh = 126535, $L = "&&=", MC = 69289, LC = 71723, gs5 = "generic_identifier_type", qC = 126619, bs5 = "object_type_property_setter", BC = 70418, QL = "<=", UC = 125251, XC = 11702, Ts4 = "enum_number_body", ol3 = 250, GC = 124910, YC = 69297, zC = 67455, JC = 42511, Es4 = "ts_satisfies", ZL = 268, KC = 68324, Sh = "an identifier", HC = 126534, Ss4 = 103, WC = 120126, jo2 = 449540197, x42 = "declare", VC = 68899, $C = 126502, As5 = "function_expression", xq = 142, QC = 123135, ZC = 67967, xN = 120487, rN = 120686, Is6 = "export_named_declaration", eN = 66348, Ah = 119981, tN = 12352, Ps6 = "tuple_type", nN = 68680, Ih = "target", Cs4 = "call";
52217
+ `, Im2 = 120093, G6 = "column", Vf = "component_rest_param", XM = "methods", lA = 70451, pA = 70312, kA = 69967, Pm2 = 70279, mA = 66463, hA = 92975, Cm2 = 70286, $f2 = "pattern_object_property_computed_key", Qf = "object_key_string_literal", dA = "jsError", Zf = "type_args", yA = 8304, GM = "==", wr5 = 115, xc2 = "declare_component", _A = 120092, wA = 43638, gA = 66811, Ia2 = -87, bA = 43334, TA = 66863, EA = 77823, YM = 143, rc2 = "optional_call", SA = 126562, Nm2 = 70162, ec2 = 104, zM = "static ", AA = 66963, Kv = "await", Om2 = 70107, V22 = "0", IA = 72250, PA = 8507, CA = 100351, jm2 = "AssignmentPattern", tc2 = "type", JM = "%u", NA = "NonNullExpression", nc2 = "function_expression_or_method", OA = 43470, KM = 146, HM = 242, WM = "camlinternalMod.ml", uc2 = "match_or_pattern", jA = 72750, DA = 69414, RA = 65370, ic2 = "syntax", VM = 32752, FA = 42963, $M = "End_of_file", MA = 12294, LA = 8471, QM = "elementType", qA = 43782, ZM = "++", BA = 43641, UA = 71944, fc2 = "record_property", XA = 126601, GA = 78894, xL = -45, Hv = "null", rL = 177, eL = "satisfies", YA = 131071, cc2 = "import_specifier", sc2 = "class_method", ac2 = "type_", zA = 126514, JA = 8454, tL = "inexact", KA = 67807, HA = 8525, WA = 65470, VA = 71352, oc2 = "tuple_spread_element", nL = 219, $A = "abstract", QA = 73458, Je7 = "return", Y6 = 65536, Dm2 = 126548, vc2 = "array_element", ZA = -253313196, xI = 186, Rm2 = "catch", lc2 = "infer_type", rI = 12295, uL = "Invalid legacy octal ", eI = 69762, tI = 43311, nI = 65437, pc2 = "variable_declaration", iL = -696510241, kc2 = "function_params", uI = 64316, fL = 311, Fm2 = 11565, cL = "infinity", iI = "@]", fI = 65908, mc2 = "extends", cI = 66204, sI = 43784, aI = 11742, Mm2 = 126503, Ke7 = "debugger", oI = 70457, z62 = 912068366, vI = 68786, Lm2 = "keyof", qm2 = 69415, lI = 12686, sn4 = 127343600, hc2 = "declare_type_alias", sL = "the", aL = 233, dc2 = "jsx_element_name_namespaced", pI = 72283, kI = 161, yc2 = "class_static_block", _c2 = "function_param_type", Pt7 = 128, mI = -673950933, Bm2 = 126591, oL = "Sys_error", hI = 74649, dI = 74862, J62 = "is", yI = 43738, _I = 68479, vL = 196, Um2 = 70854, wc2 = "enum_boolean_member", Xm2 = 72163, wI = 92783, lL = 281, gc2 = "component_param_name", gI = 68863, an4 = 32768, pL = 2048, bI = 64284, kL = "@{", TI = "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01", Gm2 = 8455, bc2 = "update_expression", mL = 276, EI = 65500, K62 = "from", SI = 68447, Ym2 = 12592, AI = 92766, hL = ">>=", n22 = 110, II = 66431, PI = 43586, Tc2 = "jsx_identifier", CI = " : file already exists", R1 = 128, NI = 71958, OI = 66717, Ec2 = "enum_boolean_body", jI = 64262, Yr5 = "id", Sc2 = "component_renders_annotation", DI = 42888, RI = 8584, FI = 73008, Ac2 = "enum_symbol_body", Ic2 = "declare_namespace", zm2 = 72713, MI = 55215, Pc2 = "object_property_value_type", Cc2 = "match_wildcard_pattern", Nc2 = "for_in_assignment_pattern", Jm2 = 8485, LI = 43395, qI = 229, Pa2 = "true", BI = 43743, Oc2 = "enum_number_member", dL = 234, UI = 72969, yL = "expected *", Ee6 = 102, _L = 200, H62 = "symbol", Wv = "source", jc2 = "tparam_const_modifier", XI = 43714, Dc2 = "jsx_fragment", Rc2 = "jsx_attribute_name_identifier", W62 = "public", GI = 43442, Fc2 = "pattern_object_property", YI = 65786, zI = 70783, JI = 43713, KI = 72160, wL = "*-/", Mc2 = "export_named_specifier", Lc2 = "arrow_function", HI = 122623, Km2 = 70006, gL = "${", WI = 43814, qc2 = "generic_qualified_identifier_type", VI = 199, Bc2 = "jsx_spread_child", Hm2 = 8489, Wm2 = 184, bL = 2047, $I = 66955, Uc2 = "try_catch", QI = 70497, TL = 313, EL = 237, ZI = 67431, xP = 125183, SL = -602162310, on8 = "params", rP = "consequent", eP = 68029, tP = 67829, nP = 68095, Xc2 = "enum_string_body", uP = 93823, iP = 68351, fP = 65495, Gc2 = "declare_module", Yc2 = "match_as_pattern_target", zc2 = "body_expression", cP = 66175, sP = 191, Vm2 = 70441, $m2 = 65141, Qm2 = "&", Jc2 = "super_expression", Zm2 = 126564, aP = 72105, LI0 = "fs", He7 = "throw", oP = 68287, vP = 67839, Ca2 = 116, lP = 110882, pP = 69404, kP = 123197, Vv = 65279, il3 = "src/parser/type_parser.ml", mP = 68115, xh = 126547, rh = 126556, hP = 73055, Kc2 = "member_property_expression", Hc2 = "enum_defaulted_member", dP = 43071, yP = 11726, Wc2 = "component_type_rest_param", _P = 68607, Vc2 = "object_key", AL = 160, $22 = "variance", wP = 70655, gP = 70414, fl2 = "super", bP = 123583, TP = 65594, V6 = "method", EP = 73648, $6 = 121, SP = 93951, $c2 = "pattern_array_element_pattern", AP = 43764, IP = 42993, eh = 120145, PP = 74879, IL = 168, th = 8486, CP = 72001, Qc2 = "tagged_template", Zc2 = "module_ref_literal", NP = 65312, Oo2 = "implements", OP = 43700, jP = 120003, PL = "Invalid_argument", xs6 = 16777215, DP = 83526, nh = 69744, uh = 12336, rs5 = "switch_case", CL = -61, es5 = "optional_member", RP = 64274, ih = 64322, fh = 126530, FP = 71998, ch = 72970, MP = 13311, LP = 73647, qP = 120074, cl2 = "let", NL = "global", ts5 = "expression_statement", ns5 = "component_type_params", BP = 512, UP = 69634, XP = 67461, GP = 123627, YP = 64913, OL = "children", jL = "PropertyDefinition", DL = 1026, RL = "%li", us5 = "declare_class", zP = 43258, is5 = "indexed_access_type", JP = 124926, h22 = 112, KP = "b", fs24 = "predicate_expression", cs5 = "if_alternate_statement", Q62 = "private", FL = -594953737, ML = 140, HP = "nan", WP = 72103, sh = 11735, ss5 = "statement", VP = "rmdir", ah = 66512, $P = "match", QP = 198, ZP = 11734, as5 = "import_named_specifier", xC = 69599, rC = 68799, eC = 194559, os7 = "match_array_pattern", LL = 174, vs6 = "function_", ls5 = "bigint_literal", t1 = 248, oh = 67638, vh = 126539, tC = 11557, qL = 214, nC = 5760, We7 = "break", vn3 = "block", ps5 = "match_member_pattern", uC = 123565, iC = 66815, m1 = "value", BL = 1039100673, fC = 69746, cC = 70448, sC = 74751, ks5 = "init", aC = 69551, lh = 65548, ms5 = "jsx_member_expression", ph = 68096, d22 = 108, kh = 126521, oC = 71487, hs5 = "match_statement", vC = 178205, lC = 12548, UL = " : is a directory", ln4 = ".", pC = 12348, sl3 = -835925911, B22 = "typeParameters", kC = 66855, Y1 = "typeAnnotation", $v = "bigint", ds5 = "jsx_attribute_value_literal", mh = 194, XL = "T_JSX_TEXT", mC = 68466, hh = 126537, GL = 67714067, hC = 69487, dh = "export", dC = 43822, yh = 126499, yC = 55242, ys5 = "member_type_identifier", YL = 138, _C = 71679, Qv = 130, wC = 12438, gC = 119969, zL = 298, _h = 12539, bC = 119972, JL = ",", TC = 71423, EC = "index out of bounds", Ct8 = 106, al2 = "%d", KL = "T_RENDERS_QUESTION", wh = 120571, gh = "returnType", SC = 69423, bh = 120070, HL = "%", Z62 = 117, AC = 179, IC = "EBADF", PC = 93759, Th = 64325, _s5 = "component_params", CC = 66517, NC = 67423, OC = 605857695, jC = 43518, WL = 251, ws5 = "for_of_statement", DC = 71983, VL = "~", RC = 12442, Ve7 = "switch", FC = 66207, Eh = 126535, $L = "&&=", MC = 69289, LC = 71723, gs5 = "generic_identifier_type", qC = 126619, bs5 = "object_type_property_setter", BC = 70418, QL = "<=", UC = 125251, XC = 11702, Ts4 = "enum_number_body", ol3 = 250, GC = 124910, YC = 69297, zC = 67455, JC = 42511, Es4 = "ts_satisfies", ZL = 268, KC = 68324, Sh = "an identifier", HC = 126534, Ss4 = 103, WC = 120126, jo2 = 449540197, x42 = "declare", VC = 68899, $C = 126502, As5 = "function_expression", xq = 142, QC = 123135, ZC = 67967, xN = 120487, rN = 120686, Is6 = "export_named_declaration", eN = 66348, Ah = 119981, tN = 12352, Ps6 = "tuple_type", nN = 68680, Ih = "target", Cs4 = "call";
52218
52218
  function Ez(x6, r, e6, t25, u6) {
52219
52219
  if (t25 <= r)
52220
52220
  for (var i6 = 1;i6 <= u6; i6++)
@@ -54552,7 +54552,7 @@ var init_flow = __esm(() => {
54552
54552
  function XJ(x6, r, e6, t25, u6, i6, c6, v6) {
54553
54553
  return (x6.l >= 0 ? x6.l : x6.l = x6.length) == 7 ? x6(r, e6, t25, u6, i6, c6, v6) : Os5(x6, [r, e6, t25, u6, i6, c6, v6]);
54554
54554
  }
54555
- var D5 = undefined, NN = [t1, cD2, -1], Lq = [t1, oL, -2], mn4 = [t1, sy, -3], Kh = [t1, PL, -4], Ds6 = [t1, tF, -7], qq = [t1, dD2, -8], Bq = [t1, RM, -9], Nr5 = [t1, _M, -11], s4 = [t1, QF, -12], GJ = [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, 0]]], ON = [0, [11, 'File "', [2, 0, [11, '", line ', [4, 0, 0, 0, [11, mD2, [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, [11, ": ", [2, 0, 0]]]]]]]]]], 'File "%s", line %d, characters %d-%d: %s'], dl2 = [0, 0, [0, 0, 0], [0, 0, 0]], Lo3 = [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], Uq = [0, "first_leading", "last_trailing"], Xq = [0, Af, tn4, vc2, tf, Lc2, Ti6, Pu2, Tu2, u7, ls5, ki6, R7, G7, vn3, zc2, iu2, We7, Cs4, _i6, Ji6, l7, li6, c7, Pf2, Su2, Gu2, Ff, Wu2, yi5, Si6, ei6, B7, Wf, sc2, y7, ji6, Ef, yc2, H7, uf, ru2, Hf, qi6, gc2, Jn3, _s5, Sc2, Vf, mu2, K7, ns5, Wc2, ri6, ff, rf, Xe6, Ke7, us5, xc2, ou2, zi6, yu2, lf, gi6, Gc2, wi6, Ic2, hc2, qn4, Ju2, nf, be6, j7, ju2, bu2, Ec2, wc2, Bf, Hc2, O7, Ts4, Oc2, Xc2, Yf, Ac2, Yi6, Yn3, A7, Is6, yf, Mc2, Un3, t24, p7, ts5, Nc2, C7, mi6, Mf2, b7, v7, bf, ws5, Hi6, hi6, Ci6, vs6, Qn3, wf, Iu2, As5, nc2, gf, cu2, ti6, _c2, kc2, S7, Qi6, di6, Ru2, vi6, i7, tu2, gs5, qc2, Ni6, St8, cs5, U7, Ri6, W22, Gn4, Vi6, as5, Df2, Ou2, cc2, is5, lc2, ae4, vf2, eu2, xi6, Yu2, zn4, Rc2, Di6, Mi5, fi6, ds5, I7, Xf, Z7, D7, f7, zf, Bu2, dc2, z7, Dc2, Tc2, ms5, Jf, Tf, xu2, ku2, pf, ai6, Bc2, Hn4, g7, G1, oi6, N7, os8, su2, Yc2, Cu2, Au2, gu2, mf, L7, ps5, E7, du2, uu2, Nf, hf, uc2, Ki6, W72, df, hs5, Kn4, wu2, Cc2, Ei6, Mu2, Xu2, Kc2, Gf, ys5, Ui6, Zc2, Ii6, n7, si6, $u2, Hu2, Oi6, ni6, zu2, Vc2, Xn4, sf, Lu2, kf2, Qf, Xi6, r7, Vn3, Pc2, Kf, o7, e7, Wn3, bs5, Vu2, rc2, x7, es5, ge6, Eu2, Ai6, $c2, bi6, Y7, Fu2, jf, Bn3, m7, Zi6, Fc2, au2, $f2, P7, af, xf2, pu2, M7, Zu2, Pi6, Lf, Ge7, fs24, _7, If2, a7, q72, pi6, Ku2, fc2, qu2, Of, w7, ci6, Je7, T7, lu2, ii6, ss5, k7, fu2, Uu2, Jc2, Ve7, rs5, ic2, Bi6, Qc2, s7, Wi6, t72, He7, Q7, jc2, Uc2, Es4, Sf, _f2, oc2, Ps6, ac2, $n3, vu2, _u2, Zf, Zn4, X72, cf, ui6, J72, Uf, Qu2, d7, F7, hu2, Fi6, Du2, Gi6, Rf2, bc2, pc2, h7, qf, $22, V7, $i6, of, H22], hn4 = [0, 0, 0];
54555
+ var D5 = undefined, NN = [t1, cD2, -1], Lq = [t1, oL, -2], mn4 = [t1, sy, -3], Kh = [t1, PL, -4], Ds6 = [t1, tF, -7], qq = [t1, dD2, -8], Bq = [t1, RM, -9], Nr5 = [t1, _M, -11], s4 = [t1, QF, -12], GJ = [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, 0]]], ON = [0, [11, 'File "', [2, 0, [11, '", line ', [4, 0, 0, 0, [11, mD2, [4, 0, 0, 0, [12, 45, [4, 0, 0, 0, [11, ": ", [2, 0, 0]]]]]]]]]], 'File "%s", line %d, characters %d-%d: %s'], dl2 = [0, 0, [0, 0, 0], [0, 0, 0]], Lo3 = [0, 0, 0, 0, 0, 0, 1, 0, 0, 0], Uq = [0, "first_leading", "last_trailing"], Xq = [0, Af, tn4, vc2, tf, Lc2, Ti6, Pu2, Tu2, u7, ls5, ki6, R7, G7, vn3, zc2, iu2, We7, Cs4, _i6, Ji6, l7, li6, c7, Pf2, Su2, Gu2, Ff, Wu2, yi5, Si6, ei6, B7, Wf, sc2, y7, ji6, Ef, yc2, H7, uf, ru2, Hf, qi6, gc2, Jn3, _s5, Sc2, Vf, mu2, K7, ns5, Wc2, ri6, ff, rf, Xe6, Ke7, us5, xc2, ou2, zi6, yu2, lf, gi6, Gc2, wi6, Ic2, hc2, qn4, Ju2, nf, be6, j7, ju2, bu2, Ec2, wc2, Bf, Hc2, O7, Ts4, Oc2, Xc2, Yf, Ac2, Yi6, Yn3, A7, Is6, yf, Mc2, Un3, t24, p7, ts5, Nc2, C7, mi6, Mf2, b7, v7, bf, ws5, Hi6, hi6, Ci6, vs6, Qn3, wf, Iu2, As5, nc2, gf, cu2, ti6, _c2, kc2, S7, Qi6, di6, Ru2, vi6, i7, tu2, gs5, qc2, Ni6, St8, cs5, U7, Ri6, W22, Gn4, Vi6, as5, Df2, Ou2, cc2, is5, lc2, ae4, vf2, eu2, xi6, Yu2, zn4, Rc2, Di6, Mi5, fi6, ds5, I7, Xf, Z7, D7, f7, zf, Bu2, dc2, z7, Dc2, Tc2, ms5, Jf, Tf, xu2, ku2, pf, ai6, Bc2, Hn4, g7, G1, oi6, N7, os7, su2, Yc2, Cu2, Au2, gu2, mf, L7, ps5, E7, du2, uu2, Nf, hf, uc2, Ki6, W72, df, hs5, Kn4, wu2, Cc2, Ei6, Mu2, Xu2, Kc2, Gf, ys5, Ui6, Zc2, Ii6, n7, si6, $u2, Hu2, Oi6, ni6, zu2, Vc2, Xn4, sf, Lu2, kf2, Qf, Xi6, r7, Vn3, Pc2, Kf, o7, e7, Wn3, bs5, Vu2, rc2, x7, es5, ge6, Eu2, Ai6, $c2, bi6, Y7, Fu2, jf, Bn3, m7, Zi6, Fc2, au2, $f2, P7, af, xf2, pu2, M7, Zu2, Pi6, Lf, Ge7, fs24, _7, If2, a7, q72, pi6, Ku2, fc2, qu2, Of, w7, ci6, Je7, T7, lu2, ii6, ss5, k7, fu2, Uu2, Jc2, Ve7, rs5, ic2, Bi6, Qc2, s7, Wi6, t72, He7, Q7, jc2, Uc2, Es4, Sf, _f2, oc2, Ps6, ac2, $n3, vu2, _u2, Zf, Zn4, X72, cf, ui6, J72, Uf, Qu2, d7, F7, hu2, Fi6, Du2, Gi6, Rf2, bc2, pc2, h7, qf, $22, V7, $i6, of, H22], hn4 = [0, 0, 0];
54556
54556
  Dt7(11, s4, QF), Dt7(10, Nr5, _M), Dt7(9, [t1, oM, MM], oM), Dt7(8, Bq, RM), Dt7(7, qq, dD2), Dt7(6, Ds6, tF), Dt7(5, [t1, MR, -6], MR), Dt7(4, [t1, $M, -5], $M), Dt7(3, Kh, PL), Dt7(2, mn4, sy), Dt7(1, Lq, oL), Dt7(0, NN, cD2);
54557
54557
  function L1(x6) {
54558
54558
  if (typeof x6 == "number")
@@ -57945,8 +57945,8 @@ var init_flow = __esm(() => {
57945
57945
  }, 0, r[1]);
57946
57946
  };
57947
57947
  }
57948
- var KV = "Array.sub", HV = "first domain already spawned", WV = [0, "camlinternalOO.ml", BF, 50], VV = [0, WM, 72, 5], $V = [0, WM, 81, 2], QV = "/tmp", ZV = ln4, x$ = [0, "src/wtf8.ml", 65, 9], r$ = [0, "src/third-party/sedlex/flow_sedlexing.ml", jS, 4], e$ = "Flow_sedlexing.MalFormed", t$ = O6, n$ = H32, u$ = K32, i$ = H62, f$ = $v, c$ = [0, [12, 40, [18, [1, [0, [11, Li6, 0], Li6]], [11, "File_key.LibFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.LibFile@ "], s$ = [0, [3, 0, 0], C6], a$ = [0, [17, 0, [12, 41, 0]], ck], o$ = [0, [12, 40, [18, [1, [0, [11, Li6, 0], Li6]], [11, "File_key.SourceFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.SourceFile@ "], v$ = [0, [3, 0, 0], C6], l$ = [0, [17, 0, [12, 41, 0]], ck], p$ = [0, [12, 40, [18, [1, [0, [11, Li6, 0], Li6]], [11, "File_key.JsonFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.JsonFile@ "], k$ = [0, [3, 0, 0], C6], m$ = [0, [17, 0, [12, 41, 0]], ck], h$ = [0, [12, 40, [18, [1, [0, [11, Li6, 0], Li6]], [11, "File_key.ResourceFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.ResourceFile@ "], d$ = [0, [3, 0, 0], C6], y$ = [0, [17, 0, [12, 41, 0]], ck], _$ = [0, 1], w$ = [0, 0], g$ = [0, 1], b$ = [0, 2], T$ = [0, 2], E$ = [0, 0], S$ = [0, 1], A$ = [0, 1], I$ = [0, 1], P$ = [0, 1], C$ = [0, 2], N$ = [0, 1], O$ = [0, 1], j$ = [0, 0, 0], D$ = [0, 0, 0], R$ = [0, ss5, fi6, _c2, Ni6, di6, Cs4, mf, si6, sf, z7, eu2, zc2, _u2, e7, Ve7, bs5, Mc2, W72, hf, Ff, Es4, Xi6, Z7, Ii6, lc2, I7, Ec2, O7, of, Fu2, tu2, Ku2, jc2, hi6, m7, pf, Ic2, Vf, gs5, wc2, ys5, St8, V7, Mf2, $f2, lf, Ji6, ti6, l7, f7, Ac2, Lf, vi6, Hi6, rs5, Vc2, U7, Au2, fu2, Kn4, Ou2, bu2, ai6, Ui6, Si6, ji6, es5, Af, pu2, Ki6, qi6, X72, Lu2, Zu2, ms5, Wf, o7, Ge7, r7, Qi6, x7, Gf, dc2, D7, qc2, G1, ff, $n3, Oc2, E7, Nf, Tc2, g7, kc2, su2, P7, tf, Gc2, Yn3, Mu2, a7, Eu2, vc2, j7, _i6, T7, $22, Pi6, ou2, d7, w7, Ri6, wu2, ki6, Ci6, Q7, Rc2, Wu2, Oi6, ic2, be6, v7, vu2, H22, Hn4, Uc2, zi6, xf2, Du2, $c2, xc2, Yc2, If2, ls5, Gi6, Ef, yu2, $u2, pc2, du2, Xf, Pu2, oc2, xi6, Cc2, Hc2, Nc2, Wn3, yf, Bc2, bi6, mi6, Uf, Ps6, Hf, qf, _f2, ii6, Qu2, Uu2, Rf2, B7, is5, ws5, y7, oi6, S7, ru2, bc2, H7, Hu2, xu2, Sc2, u7, Ei6, Pf2, yi5, Jn3, L7, ps5, Y7, Tf, gc2, Xu2, W22, Je7, F7, J72, Jc2, jf, He7, Ke7, n7, cs5, Vu2, p7, ds5, ge6, iu2, As5, Bf, cc2, sc2, Un3, cu2, Mi5, Ru2, hu2, Ts4, q72, fs24, fc2, Qn3, Vi6, uc2, qu2, Xc2, A7, ns5, ni6, lu2, Xn4, Df2, Pc2, Fc2, ac2, kf2, M7, Vn3, ui6, wi6, uu2, c7, gi6, G7, zn4, Bi6, ju2, Sf, i7, _7, Gn4, Qf, Su2, zu2, zf, ei6, Cu2, vf2, nf, Zf, tn4, h7, Ju2, li6, Zn4, qn4, Bu2, Di6, ri6, ku2, Zi6, Zc2, Yu2, C7, gu2, Jf, cf, s7, Tu2, df, K7, Bn3, Ti6, R7, t24, Ai6, uf, ts5, hs5, Iu2, wf, k7, Xe6, gf, _s5, af, Yi6, hc2, yc2, Wi6, Qc2, vs6, Is6, Fi6, bf, os8, rc2, vn3, as5, Gu2, Dc2, Kf, nc2, us5, pi6, ci6, Yf, We7, Lc2, ae4, N7, rf, $i6, mu2, Of, b7, Wc2, au2, t72, Kc2], F$ = [0, H22, of, $i6, V7, $22, qf, h7, pc2, bc2, Rf2, Gi6, Du2, Fi6, hu2, F7, d7, Qu2, Uf, J72, ui6, cf, X72, Zn4, Zf, _u2, vu2, $n3, ac2, Ps6, oc2, _f2, Sf, Es4, Uc2, jc2, Q7, He7, t72, Wi6, s7, Qc2, Bi6, ic2, rs5, Ve7, Jc2, Uu2, fu2, k7, ss5, ii6, lu2, T7, Je7, ci6, w7, Of, qu2, fc2, Ku2, pi6, q72, a7, If2, _7, fs24, Ge7, Lf, Pi6, Zu2, M7, pu2, xf2, af, P7, $f2, au2, Fc2, Zi6, m7, Bn3, jf, Fu2, Y7, bi6, $c2, Ai6, Eu2, ge6, es5, x7, rc2, Vu2, bs5, Wn3, e7, o7, Kf, Pc2, Vn3, r7, Xi6, Qf, kf2, Lu2, sf, Xn4, Vc2, zu2, ni6, Oi6, Hu2, $u2, si6, n7, Ii6, Zc2, Ui6, ys5, Gf, Kc2, Xu2, Mu2, Ei6, Cc2, wu2, Kn4, hs5, df, W72, Ki6, uc2, hf, Nf, uu2, du2, E7, ps5, L7, mf, gu2, Au2, Cu2, Yc2, su2, os8, N7, oi6, G1, g7, Hn4, Bc2, ai6, pf, ku2, xu2, Tf, Jf, ms5, Tc2, Dc2, z7, dc2, Bu2, zf, f7, D7, Z7, Xf, I7, ds5, fi6, Mi5, Di6, Rc2, zn4, Yu2, xi6, eu2, vf2, ae4, lc2, is5, cc2, Ou2, Df2, as5, Vi6, Gn4, W22, Ri6, U7, cs5, St8, Ni6, qc2, gs5, tu2, i7, vi6, Ru2, di6, Qi6, S7, kc2, _c2, ti6, cu2, gf, nc2, As5, Iu2, wf, Qn3, vs6, Ci6, hi6, Hi6, ws5, bf, v7, b7, Mf2, mi6, C7, Nc2, ts5, p7, t24, Un3, Mc2, yf, Is6, A7, Yn3, Yi6, Ac2, Yf, Xc2, Oc2, Ts4, O7, Hc2, Bf, wc2, Ec2, bu2, ju2, j7, be6, nf, Ju2, qn4, hc2, Ic2, wi6, Gc2, gi6, lf, yu2, zi6, ou2, xc2, us5, Ke7, Xe6, rf, ff, ri6, Wc2, ns5, K7, mu2, Vf, Sc2, _s5, Jn3, gc2, qi6, Hf, ru2, uf, H7, yc2, Ef, ji6, y7, sc2, Wf, B7, ei6, Si6, yi5, Wu2, Ff, Gu2, Su2, Pf2, c7, li6, l7, Ji6, _i6, Cs4, We7, iu2, zc2, vn3, G7, R7, ki6, ls5, u7, Tu2, Pu2, Ti6, Lc2, tf, vc2, tn4, Af], M$ = GM, L$ = $F, q$ = SF, B$ = OD, U$ = Qy, X$ = QL, G$ = F6, Y$ = WD, z$ = YF, J$ = CF, K$ = yD2, H$ = $7, W$ = ze6, V$ = _R, $$ = pF, Q$ = se6, Z$ = HL, xQ = wR, rQ = _k, eQ = Qm2, tQ = bo3, nQ = I6, uQ = kM, iQ = YD, fQ = IR, cQ = RR, sQ = PF, aQ = qD, oQ = GD, vQ = hL, lQ = TR, pQ = vM, kQ = bF, mQ = yo3, hQ = fF, dQ = $L, yQ = eF, _Q = g6, wQ = cl2, gQ = No3, bQ = [0, [18, [1, [0, [11, Li6, 0], Li6]], [11, "{ ", 0]], "@[<2>{ "], TQ = "Loc.line", EQ = [0, [18, [1, [0, 0, rx]], [2, 0, [11, GR, [17, [0, Eo3, 1, 0], 0]]]], yF], SQ = [0, [4, 0, 0, 0, 0], al2], AQ = [0, [17, 0, 0], iI], IQ = [0, [12, 59, [17, [0, Eo3, 1, 0], 0]], ";@ "], PQ = G6, CQ = [0, [18, [1, [0, 0, rx]], [2, 0, [11, GR, [17, [0, Eo3, 1, 0], 0]]]], yF], NQ = [0, [4, 0, 0, 0, 0], al2], OQ = [0, [17, 0, 0], iI], jQ = [0, [17, [0, Eo3, 1, 0], [12, So3, [17, 0, 0]]], "@ }@]"], DQ = rx, RQ = "Object literal may not have data and accessor property with the same name", FQ = "Object literal may not have multiple get/set accessors with the same name", MQ = "Unexpected token <. Remember, adjacent JSX elements must be wrapped in an enclosing parent tag", LQ = "`let [` is ambiguous in this position because it is either a `let` binding pattern, or a member expression.", qQ = "Async functions can only be declared at top level or immediately within another function.", BQ = "`await` is an invalid identifier in async functions", UQ = "`await` is not allowed in async function parameters.", XQ = "Computed properties must have a value.", GQ = "Constructor can't be an accessor.", YQ = "Constructor can't be an async function.", zQ = "Constructor can't be a generator.", JQ = "It is sufficient for your declare function to just have a Promise return type.", KQ = "async is an implementation detail and isn't necessary for your declare function statement. ", HQ = "`declare` modifier can only appear on class fields.", WQ = "Unexpected token `=`. Initializers are not allowed in a `declare`.", VQ = "Unexpected token `=`. Initializers are not allowed in a `declare opaque type`.", $Q = "Classes may only have one constructor", QQ = "Rest element must be final element of an array pattern", ZQ = "Cannot export an enum with `export type`, try `export enum E {}` or `module.exports = E;` instead.", xZ = "Enum members are separated with `,`. Replace `;` with `,`.", rZ = "`const` enums are not supported. Flow Enums are designed to allow for inlining, however the inlining itself needs to be part of the build system (whatever you use) rather than Flow itself.", eZ = "Expected an object pattern, array pattern, or an identifier but found an expression instead", tZ = "Missing comma between export specifiers", nZ = "Generators can only be declared at top level or immediately within another function.", uZ = "Getter should have zero parameters", iZ = "A getter cannot have a `this` parameter.", fZ = "Illegal continue statement", cZ = "Illegal return statement", sZ = "Illegal Unicode escape", aZ = "Missing comma between import specifiers", oZ = "It cannot be used with `import type` or `import typeof` statements", vZ = "The `type` and `typeof` keywords on named imports can only be used on regular `import` statements. ", lZ = "Explicit inexact syntax cannot appear inside an explicit exact object type", pZ = "Explicit inexact syntax can only appear inside an object type", kZ = "Component params must be an identifier. If you'd like to destructure, you should use `name as {destructure}`", mZ = "A bigint literal must be an integer", hZ = "JSX value should be either an expression or a quoted JSX text", dZ = "Invalid left-hand side in assignment", yZ = "Invalid left-hand side in exponentiation expression", _Z = "Invalid left-hand side in for-in", wZ = "Invalid left-hand side in for-of", gZ = "Invalid optional indexed access. Indexed access uses bracket notation. Use the format `T?.[K]`.", bZ = "Invalid regular expression", TZ = "A bigint literal cannot use exponential notation", EZ = "Tuple spread elements cannot be optional.", SZ = "Tuple variance annotations can only be used with labeled tuple elements, e.g. `[+foo: number]`", AZ = "`typeof` can only be used to get the type of variables.", IZ = "JSX attributes must only be assigned a non-empty expression", PZ = "Literals cannot be used as shorthand properties.", CZ = "Malformed unicode", NZ = "`match` argument must not be empty", OZ = "`match` argument cannot contain spread elements", jZ = "`await` is not yet supported in `match` expressions", DZ = "`yield` is not yet supported in `match` expressions", RZ = "Object pattern can't contain methods", FZ = "Expected at least one type parameter.", MZ = "Type parameter declaration needs a default, since a preceding type parameter declaration has a default.", LZ = "More than one default clause in switch statement", qZ = "Illegal newline after throw", BZ = "Illegal newline before arrow", UZ = "Missing catch or finally after try", XZ = "Const must be initialized", GZ = "Destructuring assignment must be initialized", YZ = "An optional chain may not be used in a `new` expression.", zZ = "Template literals may not be used in an optional chain.", JZ = "Rest parameter must be final parameter of an argument list", KZ = "Private fields may not be deleted.", HZ = "Private fields can only be referenced from within a class.", WZ = "Rest property must be final property of an object pattern", VZ = "Records to not support private elements. Remove the `#`.", $Z = "Setter should have exactly one parameter", QZ = "A setter cannot have a `this` parameter.", ZZ = "Catch variable may not be eval or arguments in strict mode", x00 = "Delete of an unqualified identifier in strict mode.", r00 = "Duplicate data property in object literal not allowed in strict mode", e00 = "Function name may not be eval or arguments in strict mode", t00 = "Assignment to eval or arguments is not allowed in strict mode", n00 = "Postfix increment/decrement may not have eval or arguments operand in strict mode", u00 = "Prefix increment/decrement may not have eval or arguments operand in strict mode", i00 = "Strict mode code may not include a with statement", f00 = "Number literals with leading zeros are not allowed in strict mode.", c00 = "Octal literals are not allowed in strict mode.", s00 = "Strict mode function may not have duplicate parameter names", a00 = "Parameter name eval or arguments is not allowed in strict mode", o00 = 'Illegal "use strict" directive in function with non-simple parameter list', v00 = "Use of reserved word in strict mode", l00 = "Variable name may not be eval or arguments in strict mode", p00 = "You may not access a private field through the `super` keyword.", k00 = "Flow does not support abstract classes.", m00 = "Flow does not support template literal types.", h00 = "A type annotation is required for the `this` parameter.", d00 = "Arrow functions cannot have a `this` parameter; arrow functions automatically bind `this` when declared.", y00 = "Constructors cannot have a `this` parameter; constructors don't bind `this` like other functions.", _00 = "The `this` parameter cannot be optional.", w00 = "The `this` parameter must be the first function parameter.", g00 = "A trailing comma is not permitted after the rest element", b00 = "Unexpected end of input", T00 = "Explicit inexact syntax must come at the end of an object type", E00 = "Opaque type aliases are not allowed in untyped mode", S00 = "Unexpected proto modifier", A00 = "Unexpected reserved word", I00 = "Unexpected reserved type", P00 = "Spreading a type is only allowed inside an object type", C00 = "Unexpected static modifier", N00 = "Unexpected `super` outside of a class method", O00 = "`super()` is only valid in a class constructor", j00 = "Type aliases are not allowed in untyped mode", D00 = "Type annotations are not allowed in untyped mode", R00 = "Type declarations are not allowed in untyped mode", F00 = "Type exports are not allowed in untyped mode", M00 = "Type imports are not allowed in untyped mode", L00 = "Interfaces are not allowed in untyped mode", q00 = "Unexpected variance sigil", B00 = "Found a decorator in an unsupported position.", U00 = "Invalid regular expression: missing /", X00 = "Unexpected whitespace between `#` and identifier", G00 = "`yield` is an invalid identifier in generators", Y00 = "Yield expression not allowed in formal parameter", z00 = [0, [11, "Duplicate export for `", [2, 0, [12, 96, 0]]], "Duplicate export for `%s`"], J00 = [0, [11, "Private fields may only be declared once. `#", [2, 0, [11, "` is declared more than once.", 0]]], "Private fields may only be declared once. `#%s` is declared more than once."], K00 = [0, [11, "bigint enum members need to be initialized, e.g. `", [2, 0, [11, " = 1n,` in enum `", [2, 0, [11, nu2, 0]]]]], "bigint enum members need to be initialized, e.g. `%s = 1n,` in enum `%s`."], H00 = [0, [11, "Boolean enum members need to be initialized. Use either `", [2, 0, [11, " = true,` or `", [2, 0, [11, " = false,` in enum `", [2, 0, [11, nu2, 0]]]]]]], "Boolean enum members need to be initialized. Use either `%s = true,` or `%s = false,` in enum `%s`."], W00 = [0, [11, "Enum member names need to be unique, but the name `", [2, 0, [11, "` has already been used before in enum `", [2, 0, [11, nu2, 0]]]]], "Enum member names need to be unique, but the name `%s` has already been used before in enum `%s`."], V00 = [0, [11, WR, [2, 0, [11, "` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers.", 0]]], "Enum `%s` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers."], $00 = "The `...` must come at the end of the enum body. Remove the trailing comma.", Q00 = "The `...` must come after all enum members. Move it to the end of the enum body.", Z00 = [0, [11, "Use one of `boolean`, `number`, `string`, `symbol`, or `bigint` in enum `", [2, 0, [11, nu2, 0]]], "Use one of `boolean`, `number`, `string`, `symbol`, or `bigint` in enum `%s`."], xx0 = [0, [11, "Enum type `", [2, 0, [11, "` is not valid. ", [2, 0, 0]]]], "Enum type `%s` is not valid. %s"], rx0 = [0, [11, "Supplied enum type is not valid. ", [2, 0, 0]], "Supplied enum type is not valid. %s"], ex0 = [0, [11, "Enum member names and initializers are separated with `=`. Replace `", [2, 0, [11, ":` with `", [2, 0, [11, " =`.", 0]]]]], "Enum member names and initializers are separated with `=`. Replace `%s:` with `%s =`."], tx0 = [0, [11, WR, [2, 0, [11, "` has type `", [2, 0, [11, "`, so the initializer of `", [2, 0, [11, "` needs to be a ", [2, 0, [11, " literal.", 0]]]]]]]]], "Enum `%s` has type `%s`, so the initializer of `%s` needs to be a %s literal."], nx0 = [0, [11, "Symbol enum members cannot be initialized. Use `", [2, 0, [11, ",` in enum `", [2, 0, [11, nu2, 0]]]]], "Symbol enum members cannot be initialized. Use `%s,` in enum `%s`."], ux0 = [0, [11, "The enum member initializer for `", [2, 0, [11, "` needs to be a literal (either a boolean, number, or string) in enum `", [2, 0, [11, nu2, 0]]]]], "The enum member initializer for `%s` needs to be a literal (either a boolean, number, or string) in enum `%s`."], ix0 = [0, [11, "Enum member names cannot start with lowercase 'a' through 'z'. Instead of using `", [2, 0, [11, "`, consider using `", [2, 0, [11, "`, in enum `", [2, 0, [11, nu2, 0]]]]]]], "Enum member names cannot start with lowercase 'a' through 'z'. Instead of using `%s`, consider using `%s`, in enum `%s`."], fx0 = [0, [11, "Number enum members need to be initialized, e.g. `", [2, 0, [11, " = 1,` in enum `", [2, 0, [11, nu2, 0]]]]], "Number enum members need to be initialized, e.g. `%s = 1,` in enum `%s`."], cx0 = [0, [11, "String enum members need to consistently either all use initializers, or use no initializers, in enum ", [2, 0, [12, 46, 0]]], "String enum members need to consistently either all use initializers, or use no initializers, in enum %s."], sx0 = [0, [11, "Expected corresponding JSX closing tag for ", [2, 0, 0]], "Expected corresponding JSX closing tag for %s"], ax0 = "immediately within another function.", ox0 = "In strict mode code, functions can only be declared at top level or ", vx0 = "inside a block, or as the body of an if statement.", lx0 = "In non-strict mode code, functions can only be declared at top level, ", px0 = " `break` statements are not required in `match` statements, as unlike `switch` statements, `match` statement cases do not fall-through by default.", kx0 = rx, mx0 = [0, [11, "Illegal break statement.", [2, 0, 0]], "Illegal break statement.%s"], hx0 = zM, dx0 = rx, yx0 = XM, _x0 = DF, wx0 = DM, gx0 = [0, [11, "Classes may not have ", [2, 0, [2, 0, [11, DD2, [2, 0, [11, nu2, 0]]]]]], "Classes may not have %s%s named `%s`."], bx0 = "Components use `renders` instead of `:` to annotate the render type of a component.", Tx0 = uM, Ex0 = rx, Sx0 = [0, [11, "String params require local bindings using `as` renaming. You can use `'", [2, 0, [11, "' as ", [2, 0, [2, 0, [11, ": <TYPE>` ", 0]]]]]], "String params require local bindings using `as` renaming. You can use `'%s' as %s%s: <TYPE>` "], Ax0 = "Remove the period.", Ix0 = "Indexed access uses bracket notation.", Px0 = [0, [11, "Invalid indexed access. ", [2, 0, [11, " Use the format `T[K]`.", 0]]], "Invalid indexed access. %s Use the format `T[K]`."], Cx0 = [0, [11, "Invalid flags supplied to RegExp constructor '", [2, 0, [12, 39, 0]]], "Invalid flags supplied to RegExp constructor '%s'"], Nx0 = tn4, Ox0 = Dp2, jx0 = [0, [11, "In match ", [2, 0, [11, " pattern, the rest must be the last element in the pattern", 0]]], "In match %s pattern, the rest must be the last element in the pattern"], Dx0 = [0, [11, "JSX element ", [2, 0, [11, " has no corresponding closing tag.", 0]]], "JSX element %s has no corresponding closing tag."], Rx0 = [0, [11, tM, [2, 0, [11, "`. Parentheses are required to combine `??` with `&&` or `||` expressions.", 0]]], "Unexpected token `%s`. Parentheses are required to combine `??` with `&&` or `||` expressions."], Fx0 = zM, Mx0 = rx, Lx0 = XM, qx0 = A6, Bx0 = [0, [11, "Records may not have ", [2, 0, [2, 0, [11, DD2, [2, 0, [11, nu2, 0]]]]]], "Records may not have %s%s named `%s`."], Ux0 = [0, [2, 0, [11, " '", [2, 0, [11, "' has already been declared", 0]]]], "%s '%s' has already been declared"], Xx0 = rx, Gx0 = k6, Yx0 = " You can try using JavaScript private fields by prepending `#` to the field name.", zx0 = Q62, Jx0 = " Fields and methods are public by default. You can simply omit the `public` keyword.", Kx0 = W62, Hx0 = [0, [11, "Flow does not support using `", [2, 0, [11, "` in classes.", [2, 0, 0]]]], "Flow does not support using `%s` in classes.%s"], Wx0 = [0, [11, "Private fields must be declared before they can be referenced. `#", [2, 0, [11, "` has not been declared.", 0]]], "Private fields must be declared before they can be referenced. `#%s` has not been declared."], Vx0 = [0, [11, xM, [2, 0, 0]], "Unexpected %s"], $x0 = [0, [11, tM, [2, 0, [11, "`. Did you mean `", [2, 0, [11, "`?", 0]]]]], "Unexpected token `%s`. Did you mean `%s`?"], Qx0 = [0, [11, xM, [2, 0, [11, ", expected ", [2, 0, 0]]]], "Unexpected %s, expected %s"], Zx0 = [0, [11, "Undefined label '", [2, 0, [12, 39, 0]]], "Undefined label '%s'"], xr0 = "Parse_error.Error", rr0 = [0, [0, 36, 37], [0, 48, 58], [0, 65, 91], [0, 95, 96], [0, 97, un4], [0, py, Sg], [0, NS, s9], [0, j_, Wm2], [0, xI, z_], [0, Y32, lk], [0, ty, Gp2], [0, t1, 706], [0, CD2, 722], [0, 736, 741], [0, 748, 749], [0, 750, 751], [0, 768, 885], [0, 886, 888], [0, 890, 894], [0, 895, 896], [0, 902, 907], [0, 908, 909], [0, 910, 930], [0, jM, 1014], [0, 1015, 1154], [0, 1155, 1160], [0, 1162, 1328], [0, 1329, 1367], [0, 1369, 1370], [0, 1376, 1417], [0, 1425, 1470], [0, 1471, 1472], [0, 1473, 1475], [0, 1476, 1478], [0, 1479, 1480], [0, 1488, 1515], [0, 1519, 1523], [0, 1552, 1563], [0, 1568, 1642], [0, 1646, 1748], [0, 1749, 1757], [0, 1759, 1769], [0, 1770, 1789], [0, 1791, 1792], [0, 1808, 1867], [0, 1869, 1970], [0, 1984, 2038], [0, 2042, 2043], [0, 2045, 2046], [0, Gg, 2094], [0, 2112, 2140], [0, 2144, 2155], [0, 2208, 2229], [0, 2230, 2238], [0, 2259, 2274], [0, 2275, 2404], [0, 2406, 2416], [0, 2417, 2436], [0, 2437, 2445], [0, 2447, 2449], [0, 2451, 2473], [0, 2474, 2481], [0, 2482, 2483], [0, 2486, 2490], [0, 2492, 2501], [0, 2503, 2505], [0, 2507, 2511], [0, 2519, 2520], [0, 2524, 2526], [0, 2527, 2532], [0, 2534, 2546], [0, 2556, 2557], [0, 2558, 2559], [0, 2561, 2564], [0, 2565, 2571], [0, 2575, 2577], [0, 2579, 2601], [0, 2602, 2609], [0, 2610, 2612], [0, 2613, 2615], [0, 2616, 2618], [0, 2620, 2621], [0, 2622, 2627], [0, 2631, 2633], [0, 2635, 2638], [0, 2641, 2642], [0, 2649, 2653], [0, 2654, 2655], [0, 2662, 2678], [0, 2689, 2692], [0, 2693, 2702], [0, 2703, 2706], [0, 2707, 2729], [0, 2730, 2737], [0, 2738, 2740], [0, 2741, 2746], [0, 2748, 2758], [0, 2759, 2762], [0, 2763, 2766], [0, 2768, 2769], [0, 2784, 2788], [0, 2790, 2800], [0, 2809, 2816], [0, 2817, 2820], [0, 2821, 2829], [0, 2831, 2833], [0, 2835, 2857], [0, 2858, 2865], [0, 2866, 2868], [0, 2869, 2874], [0, 2876, 2885], [0, 2887, 2889], [0, 2891, 2894], [0, 2902, 2904], [0, 2908, 2910], [0, 2911, 2916], [0, 2918, 2928], [0, 2929, 2930], [0, 2946, 2948], [0, 2949, 2955], [0, 2958, 2961], [0, 2962, 2966], [0, 2969, 2971], [0, 2972, 2973], [0, 2974, 2976], [0, 2979, 2981], [0, 2984, 2987], [0, 2990, 3002], [0, 3006, 3011], [0, 3014, 3017], [0, 3018, 3022], [0, 3024, 3025], [0, 3031, 3032], [0, 3046, 3056], [0, 3072, 3085], [0, 3086, 3089], [0, 3090, 3113], [0, 3114, 3130], [0, 3133, 3141], [0, 3142, 3145], [0, 3146, 3150], [0, 3157, 3159], [0, 3160, 3163], [0, 3168, 3172], [0, 3174, 3184], [0, 3200, 3204], [0, 3205, 3213], [0, 3214, 3217], [0, 3218, 3241], [0, 3242, 3252], [0, 3253, 3258], [0, 3260, 3269], [0, 3270, 3273], [0, 3274, 3278], [0, 3285, 3287], [0, 3294, 3295], [0, 3296, 3300], [0, 3302, 3312], [0, 3313, 3315], [0, 3328, 3332], [0, 3333, 3341], [0, 3342, 3345], [0, 3346, 3397], [0, 3398, 3401], [0, 3402, 3407], [0, 3412, 3416], [0, 3423, 3428], [0, 3430, 3440], [0, 3450, 3456], [0, 3458, 3460], [0, 3461, 3479], [0, 3482, 3506], [0, 3507, 3516], [0, 3517, 3518], [0, 3520, 3527], [0, 3530, 3531], [0, 3535, 3541], [0, 3542, 3543], [0, 3544, 3552], [0, 3558, 3568], [0, 3570, 3572], [0, 3585, 3643], [0, 3648, 3663], [0, 3664, 3674], [0, 3713, 3715], [0, 3716, 3717], [0, 3718, 3723], [0, 3724, 3748], [0, 3749, 3750], [0, 3751, 3774], [0, 3776, 3781], [0, 3782, 3783], [0, 3784, 3790], [0, 3792, 3802], [0, 3804, 3808], [0, 3840, 3841], [0, 3864, 3866], [0, 3872, 3882], [0, 3893, 3894], [0, 3895, 3896], [0, 3897, 3898], [0, 3902, 3912], [0, 3913, 3949], [0, 3953, 3973], [0, 3974, 3992], [0, 3993, 4029], [0, 4038, 4039], [0, NF, 4170], [0, 4176, 4254], [0, 4256, 4294], [0, 4295, 4296], [0, 4301, 4302], [0, 4304, 4347], [0, 4348, 4681], [0, 4682, 4686], [0, 4688, 4695], [0, 4696, 4697], [0, 4698, 4702], [0, 4704, 4745], [0, 4746, 4750], [0, 4752, 4785], [0, 4786, 4790], [0, 4792, 4799], [0, 4800, 4801], [0, 4802, 4806], [0, 4808, 4823], [0, 4824, 4881], [0, 4882, 4886], [0, 4888, 4955], [0, 4957, 4960], [0, 4969, 4978], [0, 4992, 5008], [0, 5024, 5110], [0, 5112, 5118], [0, 5121, 5741], [0, 5743, nC], [0, 5761, 5787], [0, 5792, 5867], [0, 5870, 5881], [0, 5888, 5901], [0, 5902, 5909], [0, 5920, 5941], [0, 5952, 5972], [0, 5984, 5997], [0, 5998, 6001], [0, 6002, 6004], [0, 6016, 6100], [0, 6103, 6104], [0, 6108, 6110], [0, 6112, 6122], [0, 6155, 6158], [0, 6160, 6170], [0, 6176, 6265], [0, 6272, 6315], [0, 6320, 6390], [0, 6400, 6431], [0, 6432, 6444], [0, 6448, 6460], [0, 6470, 6510], [0, 6512, 6517], [0, 6528, 6572], [0, 6576, 6602], [0, 6608, 6619], [0, 6656, 6684], [0, 6688, 6751], [0, 6752, 6781], [0, 6783, 6794], [0, 6800, 6810], [0, 6823, 6824], [0, 6832, 6846], [0, 6912, 6988], [0, 6992, 7002], [0, 7019, 7028], [0, 7040, 7156], [0, 7168, 7224], [0, 7232, 7242], [0, 7245, 7294], [0, 7296, 7305], [0, 7312, 7355], [0, 7357, 7360], [0, 7376, 7379], [0, 7380, 7419], [0, 7424, 7674], [0, 7675, 7958], [0, 7960, 7966], [0, 7968, 8006], [0, 8008, 8014], [0, 8016, 8024], [0, 8025, 8026], [0, 8027, 8028], [0, 8029, 8030], [0, 8031, 8062], [0, 8064, 8117], [0, 8118, 8125], [0, 8126, 8127], [0, 8130, 8133], [0, 8134, 8141], [0, 8144, 8148], [0, 8150, 8156], [0, 8160, 8173], [0, 8178, 8181], [0, 8182, 8189], [0, tR, NM], [0, 8255, 8257], [0, 8276, 8277], [0, F8, 8306], [0, f8, 8320], [0, 8336, 8349], [0, 8400, 8413], [0, 8417, 8418], [0, 8421, 8433], [0, dm2, 8451], [0, Gm2, 8456], [0, 8458, tk], [0, dk, 8470], [0, sM, 8478], [0, _8, Jm2], [0, th, gk], [0, Ik, Hm2], [0, 8490, 8506], [0, 8508, 8512], [0, 8517, 8522], [0, Lk, 8527], [0, 8544, 8585], [0, 11264, 11311], [0, 11312, 11359], [0, 11360, 11493], [0, 11499, 11508], [0, 11520, om2], [0, gp2, 11560], [0, Fm2, 11566], [0, 11568, 11624], [0, u8, 11632], [0, ak, 11671], [0, 11680, lm2], [0, 11688, km2], [0, 11696, bp2], [0, 11704, Uk], [0, 11712, z8], [0, 11720, Ip2], [0, 11728, sh], [0, 11736, 11743], [0, 11744, 11776], [0, 12293, 12296], [0, 12321, uh], [0, 12337, 12342], [0, 12344, 12349], [0, 12353, 12439], [0, 12441, X8], [0, 12449, _h], [0, 12540, 12544], [0, 12549, Ym2], [0, 12593, 12687], [0, 12704, 12731], [0, 12784, 12800], [0, 13312, 19894], [0, 19968, 40944], [0, 40960, 42125], [0, 42192, 42238], [0, 42240, 42509], [0, 42512, 42540], [0, 42560, 42608], [0, 42612, ek], [0, 42623, 42738], [0, 42775, 42784], [0, 42786, 42889], [0, 42891, 42944], [0, 42946, 42951], [0, l8, 43048], [0, 43072, 43124], [0, 43136, 43206], [0, 43216, 43226], [0, 43232, 43256], [0, $k, Yk], [0, 43261, 43310], [0, 43312, 43348], [0, 43360, 43389], [0, 43392, 43457], [0, W8, 43482], [0, 43488, Bp2], [0, aF, 43575], [0, 43584, 43598], [0, 43600, 43610], [0, 43616, 43639], [0, fm2, 43715], [0, 43739, 43742], [0, 43744, 43760], [0, 43762, 43767], [0, 43777, 43783], [0, 43785, 43791], [0, 43793, 43799], [0, 43808, wm2], [0, 43816, p8], [0, 43824, Q8], [0, 43868, Np2], [0, 43888, 44011], [0, 44012, 44014], [0, 44016, 44026], [0, 44032, 55204], [0, 55216, 55239], [0, 55243, 55292], [0, 63744, 64110], [0, 64112, 64218], [0, 64256, 64263], [0, 64275, 64280], [0, Wk, qp2], [0, 64298, b8], [0, 64312, ym2], [0, Qk, pk], [0, 64320, ih], [0, 64323, Th], [0, 64326, 64434], [0, 64467, 64830], [0, 64848, 64912], [0, 64914, 64968], [0, 65008, 65020], [0, 65024, 65040], [0, 65056, 65072], [0, 65075, 65077], [0, 65101, 65104], [0, 65136, $m2], [0, 65142, 65277], [0, 65296, 65306], [0, 65313, 65339], [0, 65343, pm2], [0, 65345, 65371], [0, 65382, 65471], [0, 65474, 65480], [0, 65482, 65488], [0, 65490, 65496], [0, 65498, 65501], [0, Y6, lh], [0, 65549, Z8], [0, 65576, Ek], [0, 65596, Ak], [0, 65599, 65614], [0, 65616, 65630], [0, 65664, 65787], [0, 65856, 65909], [0, 66045, 66046], [0, 66176, 66205], [0, 66208, 66257], [0, 66272, 66273], [0, 66304, 66336], [0, 66349, 66379], [0, 66384, 66427], [0, 66432, 66462], [0, 66464, 66500], [0, 66504, ah], [0, 66513, 66518], [0, 66560, 66718], [0, 66720, 66730], [0, 66736, 66772], [0, 66776, 66812], [0, 66816, 66856], [0, 66864, 66916], [0, 67072, 67383], [0, 67392, 67414], [0, 67424, 67432], [0, 67584, 67590], [0, vk, x8], [0, 67594, oh], [0, 67639, 67641], [0, $8, 67645], [0, 67647, 67670], [0, 67680, 67703], [0, 67712, 67743], [0, 67808, Hp2], [0, 67828, 67830], [0, 67840, 67862], [0, 67872, 67898], [0, 67968, 68024], [0, 68030, 68032], [0, ph, 68100], [0, 68101, 68103], [0, 68108, Xk], [0, 68117, V8], [0, 68121, 68150], [0, 68152, 68155], [0, 68159, 68160], [0, 68192, 68221], [0, 68224, 68253], [0, 68288, D8], [0, 68297, 68327], [0, 68352, 68406], [0, 68416, 68438], [0, 68448, 68467], [0, 68480, 68498], [0, 68608, 68681], [0, 68736, 68787], [0, 68800, 68851], [0, 68864, 68904], [0, 68912, 68922], [0, 69376, 69405], [0, qm2, 69416], [0, 69424, 69457], [0, 69600, 69623], [0, 69632, 69703], [0, 69734, nh], [0, 69759, 69819], [0, 69840, 69865], [0, 69872, 69882], [0, 69888, 69941], [0, 69942, 69952], [0, Up2, Dk], [0, 69968, 70004], [0, Km2, 70007], [0, 70016, 70085], [0, 70089, 70093], [0, 70096, Om2], [0, o8, 70109], [0, 70144, Nm2], [0, 70163, 70200], [0, 70206, 70207], [0, 70272, Pm2], [0, S8, Fk], [0, 70282, Cm2], [0, 70287, mm2], [0, 70303, 70313], [0, 70320, 70379], [0, 70384, 70394], [0, 70400, jp2], [0, 70405, 70413], [0, 70415, 70417], [0, 70419, Vm2], [0, 70442, Y8], [0, 70450, cm2], [0, 70453, 70458], [0, 70459, 70469], [0, 70471, 70473], [0, 70475, 70478], [0, Yp2, 70481], [0, 70487, 70488], [0, 70493, 70500], [0, 70502, 70509], [0, 70512, 70517], [0, 70656, 70731], [0, 70736, 70746], [0, uk, 70752], [0, 70784, Um2], [0, i8, 70856], [0, 70864, 70874], [0, 71040, 71094], [0, 71096, 71105], [0, 71128, 71134], [0, 71168, 71233], [0, a8, 71237], [0, 71248, 71258], [0, 71296, 71353], [0, 71360, 71370], [0, 71424, 71451], [0, 71453, 71468], [0, 71472, 71482], [0, 71680, 71739], [0, 71840, 71914], [0, 71935, 71936], [0, 72096, 72104], [0, 72106, 72152], [0, 72154, R8], [0, Xm2, 72165], [0, t82, 72255], [0, 72263, 72264], [0, qk, 72346], [0, k8, 72350], [0, 72384, 72441], [0, 72704, zm2], [0, 72714, 72759], [0, 72760, 72769], [0, 72784, 72794], [0, 72818, 72848], [0, 72850, 72872], [0, 72873, 72887], [0, 72960, d8], [0, 72968, ch], [0, 72971, 73015], [0, 73018, 73019], [0, 73020, 73022], [0, 73023, 73032], [0, 73040, 73050], [0, 73056, E8], [0, 73063, bm2], [0, 73066, 73103], [0, 73104, 73106], [0, 73107, 73113], [0, 73120, 73130], [0, 73440, 73463], [0, 73728, 74650], [0, 74752, 74863], [0, 74880, 75076], [0, 77824, 78895], [0, 82944, 83527], [0, 92160, 92729], [0, 92736, 92767], [0, 92768, 92778], [0, 92880, 92910], [0, 92912, 92917], [0, 92928, 92983], [0, 92992, 92996], [0, 93008, 93018], [0, 93027, 93048], [0, 93053, 93072], [0, 93760, 93824], [0, 93952, 94027], [0, gm2, 94088], [0, 94095, 94112], [0, 94176, mk], [0, Op2, 94180], [0, 94208, 100344], [0, 100352, 101107], [0, 110592, 110879], [0, 110928, 110931], [0, 110948, 110952], [0, 110960, 111356], [0, 113664, 113771], [0, 113776, 113789], [0, 113792, 113801], [0, 113808, 113818], [0, 113821, 113823], [0, 119141, 119146], [0, 119149, 119155], [0, 119163, 119171], [0, 119173, 119180], [0, 119210, 119214], [0, 119362, 119365], [0, 119808, Fp2], [0, 119894, jk], [0, 119966, 119968], [0, r8, 119971], [0, 119973, 119975], [0, 119977, Ah], [0, 119982, Sm2], [0, M8, xm2], [0, 119997, c8], [0, 120005, bh], [0, 120071, 120075], [0, 120077, sk], [0, 120086, Im2], [0, 120094, Xp2], [0, 120123, H8], [0, 120128, n8], [0, Jk, 120135], [0, 120138, eh], [0, 120146, 120486], [0, 120488, yk], [0, 120514, T8], [0, 120540, wh], [0, 120572, Rk], [0, 120598, C8], [0, 120630, Zp2], [0, 120656, w8], [0, 120688, zp2], [0, 120714, Cp2], [0, 120746, Nk], [0, 120772, 120780], [0, 120782, 120832], [0, 121344, 121399], [0, 121403, 121453], [0, 121461, 121462], [0, 121476, 121477], [0, 121499, 121504], [0, 121505, 121520], [0, 122880, 122887], [0, 122888, 122905], [0, 122907, 122914], [0, 122915, 122917], [0, 122918, 122923], [0, 123136, 123181], [0, 123184, 123198], [0, 123200, 123210], [0, Sp2, 123215], [0, 123584, 123642], [0, 124928, 125125], [0, 125136, 125143], [0, 125184, 125260], [0, 125264, 125274], [0, 126464, xk], [0, 126469, hm2], [0, 126497, yh], [0, Pp2, 126501], [0, Mm2, J8], [0, 126505, Ep2], [0, 126516, N8], [0, kh, tm2], [0, Vp2, 126524], [0, fh, 126531], [0, Eh, Qp2], [0, hh, vm2], [0, vh, Mp2], [0, 126541, Mk], [0, 126545, xh], [0, Dm2, 126549], [0, j8, $p2], [0, Zk, y8], [0, am2, rh], [0, ok, Jp2], [0, q8, Sk], [0, 126561, Wp2], [0, Zm2, 126565], [0, 126567, Rp2], [0, 126572, nk], [0, 126580, A8], [0, 126585, Vk], [0, O8, Bm2], [0, 126592, Kp2], [0, 126603, 126620], [0, 126625, P8], [0, 126629, m8], [0, 126635, 126652], [0, 131072, 173783], [0, 173824, 177973], [0, 177984, 178206], [0, 178208, 183970], [0, 183984, 191457], [0, 194560, 195102], [0, 917760, 918000]], er0 = [0, 1, 0], tr0 = [0, 0, [0, 1, 0], [0, 1, 0]], nr0 = sL, ur0 = "end of input", ir0 = U62, fr0 = "template literal part", cr0 = U62, sr0 = nD2, ar0 = sL, or0 = U62, vr0 = H32, lr0 = U62, pr0 = $v, kr0 = U62, mr0 = K32, hr0 = "an", dr0 = St8, yr0 = Nu2, _r0 = [0, [11, "token `", [2, 0, [12, 96, 0]]], "token `%s`"], wr0 = "{", gr0 = em2, br0 = "{|", Tr0 = "|}", Er0 = PM, Sr0 = iM, Ar0 = "[", Ir0 = "]", Pr0 = NT, Cr0 = JL, Nr0 = ln4, Or0 = "=>", jr0 = "...", Dr0 = _D, Rr0 = DM, Fr0 = $32, Mr0 = nm2, Lr0 = bo3, qr0 = I6, Br0 = Je7, Ur0 = Ve7, Xr0 = $P, Gr0 = DT, Yr0 = Bv, zr0 = He7, Jr0 = um2, Kr0 = g6, Hr0 = Tp2, Wr0 = L8, Vr0 = No3, $r0 = cl2, Qr0 = Hv, Zr0 = wa2, x10 = Pa2, r10 = We7, e10 = rk, t102 = Rm2, n10 = Xe6, u10 = Fv, i10 = Tk, f10 = U8, c10 = K8, s10 = h6, a10 = mc2, o10 = Ue5, v10 = Ck, l10 = Yv, p10 = E6, k10 = Aa2, m10 = ga, h10 = j6, d10 = dh, y10 = W22, _10 = fl2, w10 = Oo2, g10 = ae4, b10 = Pk, T10 = Q62, E10 = k6, S10 = W62, A10 = H22, I10 = Ke7, P10 = x42, C10 = tc2, N10 = zb, O10 = JS, j10 = Io3, D10 = Kv, R10 = "%checks", F10 = TR, M10 = hL, L10 = GD, q10 = bF, B10 = vM, U10 = yo3, X10 = qD, G10 = PF, Y10 = IR, z10 = RR, J10 = YD, K10 = kM, H10 = fF, W10 = $L, V10 = eF, $10 = p_, Q10 = "?.", Z10 = Dw, x20 = uM, r20 = Iv, e20 = LF2, t202 = CM, n20 = wR, u20 = _k, i20 = Qm2, f20 = GM, c20 = $F, s20 = SF, a20 = OD, o20 = QL, v20 = WD, l20 = Qy, p20 = F6, k20 = YF, m20 = CF, h20 = yD2, d20 = $7, y20 = ze6, _20 = se6, w20 = _R, g20 = pF, b20 = HL, T20 = SD, E20 = VL, S20 = ZM, A20 = kR, I20 = rx, P20 = ik, C20 = wk, N20 = be6, O20 = H32, j20 = $v, D20 = K32, R20 = ga, F20 = H62, M20 = hk, L20 = bk, q20 = Hk, B20 = Lm2, U20 = Xv, X20 = FD2, G20 = J62, Y20 = tl2, z20 = V32, J20 = jF, K20 = uF, H20 = m6, W20 = m6, V20 = gL, $20 = m6, Q20 = m6, Z20 = em2, xe0 = em2, re0 = gL, ee0 = se6, te0 = se6, ne0 = O6, ue0 = rm2, ie0 = "T_LCURLY", fe0 = "T_RCURLY", ce0 = "T_LCURLYBAR", se0 = "T_RCURLYBAR", ae0 = "T_LPAREN", oe0 = "T_RPAREN", ve0 = "T_LBRACKET", le0 = "T_RBRACKET", pe0 = "T_SEMICOLON", ke0 = "T_COMMA", me0 = "T_PERIOD", he0 = "T_ARROW", de0 = "T_ELLIPSIS", ye0 = "T_AT", _e0 = "T_POUND", we0 = "T_FUNCTION", ge0 = "T_IF", be0 = "T_IN", Te0 = "T_INSTANCEOF", Ee0 = "T_RETURN", Se0 = "T_SWITCH", Ae0 = "T_MATCH", Ie0 = "T_RECORD", Pe0 = "T_THIS", Ce0 = "T_THROW", Ne0 = "T_TRY", Oe0 = "T_VAR", je0 = "T_WHILE", De0 = "T_WITH", Re0 = "T_CONST", Fe0 = "T_LET", Me0 = "T_NULL", Le0 = "T_FALSE", qe0 = "T_TRUE", Be0 = "T_BREAK", Ue0 = "T_CASE", Xe0 = "T_CATCH", Ge0 = "T_CONTINUE", Ye0 = "T_DEFAULT", ze0 = "T_DO", Je0 = "T_FINALLY", Ke0 = "T_FOR", He0 = "T_CLASS", We0 = "T_EXTENDS", Ve0 = "T_STATIC", $e0 = "T_ELSE", Qe0 = "T_NEW", Ze0 = "T_DELETE", xt0 = "T_TYPEOF", rt0 = "T_VOID", et0 = "T_ENUM", tt0 = "T_EXPORT", nt0 = "T_IMPORT", ut0 = "T_SUPER", it0 = "T_IMPLEMENTS", ft0 = "T_INTERFACE", ct0 = "T_PACKAGE", st0 = "T_PRIVATE", at0 = "T_PROTECTED", ot0 = "T_PUBLIC", vt0 = "T_YIELD", lt0 = "T_DEBUGGER", pt0 = "T_DECLARE", kt0 = "T_TYPE", mt0 = "T_OPAQUE", ht0 = "T_OF", dt0 = "T_ASYNC", yt0 = "T_AWAIT", _t0 = "T_CHECKS", wt0 = "T_RSHIFT3_ASSIGN", gt0 = "T_RSHIFT_ASSIGN", bt0 = "T_LSHIFT_ASSIGN", Tt0 = "T_BIT_XOR_ASSIGN", Et0 = "T_BIT_OR_ASSIGN", St0 = "T_BIT_AND_ASSIGN", At0 = "T_MOD_ASSIGN", It0 = "T_DIV_ASSIGN", Pt0 = "T_MULT_ASSIGN", Ct0 = "T_EXP_ASSIGN", Nt0 = "T_MINUS_ASSIGN", Ot0 = "T_PLUS_ASSIGN", jt0 = "T_NULLISH_ASSIGN", Dt0 = "T_AND_ASSIGN", Rt0 = "T_OR_ASSIGN", Ft0 = "T_ASSIGN", Mt0 = "T_PLING_PERIOD", Lt0 = "T_PLING_PLING", qt0 = "T_PLING", Bt0 = "T_COLON", Ut0 = "T_OR", Xt0 = "T_AND", Gt0 = "T_BIT_OR", Yt0 = "T_BIT_XOR", zt0 = "T_BIT_AND", Jt0 = "T_EQUAL", Kt0 = "T_NOT_EQUAL", Ht0 = "T_STRICT_EQUAL", Wt0 = "T_STRICT_NOT_EQUAL", Vt0 = "T_LESS_THAN_EQUAL", $t0 = "T_GREATER_THAN_EQUAL", Qt0 = "T_LESS_THAN", Zt0 = "T_GREATER_THAN", xn0 = "T_LSHIFT", rn0 = "T_RSHIFT", en0 = "T_RSHIFT3", tn0 = "T_PLUS", nn0 = "T_MINUS", un0 = "T_DIV", in0 = "T_MULT", fn0 = "T_EXP", cn0 = "T_MOD", sn0 = "T_NOT", an0 = "T_BIT_NOT", on0 = "T_INCR", vn0 = "T_DECR", ln0 = "T_EOF", pn0 = "T_ANY_TYPE", kn0 = "T_MIXED_TYPE", mn0 = "T_EMPTY_TYPE", hn0 = "T_NUMBER_TYPE", dn0 = "T_BIGINT_TYPE", yn0 = "T_STRING_TYPE", _n0 = "T_VOID_TYPE", wn0 = "T_SYMBOL_TYPE", gn0 = "T_UNKNOWN_TYPE", bn0 = "T_NEVER_TYPE", Tn0 = "T_UNDEFINED_TYPE", En0 = "T_KEYOF", Sn0 = "T_READONLY", An0 = "T_INFER", In0 = "T_IS", Pn0 = "T_ASSERTS", Cn0 = "T_IMPLIES", Nn0 = KL, On0 = KL, jn0 = "T_NUMBER", Dn0 = "T_BIGINT", Rn0 = "T_STRING", Fn0 = "T_TEMPLATE_PART", Mn0 = "T_IDENTIFIER", Ln0 = "T_REGEXP", qn0 = "T_INTERPRETER", Bn0 = "T_ERROR", Un0 = "T_JSX_IDENTIFIER", Xn0 = XL, Gn0 = XL, Yn0 = "T_BOOLEAN_TYPE", zn0 = "T_NUMBER_SINGLETON_TYPE", Jn0 = "T_BIGINT_SINGLETON_TYPE", Kn0 = [0, BR, $S, 9], Hn0 = [0, BR, Hg, 9], Wn0 = wL, Vn0 = "*/", $n0 = wL, Qn0 = "unreachable line_comment", Zn0 = "unreachable string_quote", x70 = "\\", r70 = "unreachable template_part", e70 = `\r
57949
- `, t70 = ug, n70 = "unreachable regexp_class", u70 = LD, i70 = "unreachable regexp_body", f70 = rx, c70 = rx, s70 = rx, a70 = rx, o70 = hR, v70 = "{'>'}", l70 = F6, p70 = "{'}'}", k70 = em2, m70 = Ao3, h70 = NT, d70 = Qm2, y70 = hR, _70 = Ao3, w70 = NT, g70 = Qm2, b70 = "unreachable type_token wholenumber", T70 = "unreachable type_token wholebigint", E70 = "unreachable type_token floatbigint", S70 = "unreachable type_token scinumber", A70 = "unreachable type_token scibigint", I70 = "unreachable type_token hexnumber", P70 = "unreachable type_token hexbigint", C70 = "unreachable type_token legacyoctnumber", N70 = "unreachable type_token octnumber", O70 = "unreachable type_token octbigint", j70 = "unreachable type_token binnumber", D70 = "unreachable type_token bigbigint", R70 = "unreachable type_token", F70 = yL, M70 = [11, 1], L70 = [11, 0], q70 = "unreachable template_tail", B70 = rx, U70 = rx, X70 = "unreachable jsx_child", G70 = "unreachable jsx_tag", Y70 = [0, hw], z70 = [0, 913], J70 = [0, Y32], K70 = [0, mh], H70 = [0, cR], W70 = [0, QP], V70 = [0, 8747], $70 = [0, gD], Q70 = [0, 916], Z70 = [0, 8225], xu0 = [0, 935], ru0 = [0, VI], eu0 = [0, 914], tu0 = [0, vL], nu0 = [0, IF], uu0 = [0, RE], iu0 = [0, 915], fu0 = [0, TD], cu0 = [0, 919], su0 = [0, 917], au0 = [0, _L], ou0 = [0, KD], vu0 = [0, HR], lu0 = [0, 924], pu0 = [0, 923], ku0 = [0, 922], mu0 = [0, oF], hu0 = [0, 921], du0 = [0, eM], yu0 = [0, Hg], _u0 = [0, xF], wu0 = [0, ty], gu0 = [0, 927], bu0 = [0, 937], Tu0 = [0, HD], Eu0 = [0, $R], Su0 = [0, uR], Au0 = [0, 338], Iu0 = [0, 352], Pu0 = [0, 929], Cu0 = [0, 936], Nu0 = [0, 8243], Ou0 = [0, 928], ju0 = [0, 934], Du0 = [0, qL], Ru0 = [0, o_], Fu0 = [0, 933], Mu0 = [0, pM], Lu0 = [0, nL], qu0 = [0, fD2], Bu0 = [0, 920], Uu0 = [0, 932], Xu0 = [0, jD], Gu0 = [0, dR], Yu0 = [0, KF], zu0 = [0, JR], Ju0 = [0, 918], Ku0 = [0, SR], Hu0 = [0, HF], Wu0 = [0, 926], Vu0 = [0, lF], $u0 = [0, jM], Qu0 = [0, 925], Zu0 = [0, 39], xi0 = [0, 8736], ri0 = [0, 8743], ei0 = [0, 38], ti0 = [0, 945], ni0 = [0, 8501], ui0 = [0, Sv], ii0 = [0, 8226], fi0 = [0, JD2], ci0 = [0, 946], si0 = [0, 8222], ai0 = [0, RD], oi0 = [0, wM], vi0 = [0, 8776], li0 = [0, qI], pi0 = [0, 8773], ki0 = [0, 9827], mi0 = [0, CD2], hi0 = [0, 967], di0 = [0, qM], yi0 = [0, Wm2], _i0 = [0, PD], wi0 = [0, GF], gi0 = [0, 8595], bi0 = [0, 8224], Ti0 = [0, 8659], Ei0 = [0, sR], Si0 = [0, 8746], Ai0 = [0, 8629], Ii0 = [0, yR], Pi0 = [0, 8745], Ci0 = [0, 8195], Ni0 = [0, 8709], Oi0 = [0, iD2], ji0 = [0, dL], Di0 = [0, aL], Ri0 = [0, Gp2], Fi0 = [0, 9830], Mi0 = [0, 8707], Li0 = [0, 8364], qi0 = [0, EM], Bi0 = [0, rl2], Ui0 = [0, 951], Xi0 = [0, 8801], Gi0 = [0, 949], Yi0 = [0, 8194], zi0 = [0, 8805], Ji0 = [0, 947], Ki0 = [0, 8260], Hi0 = [0, jE], Wi0 = [0, nR], Vi0 = [0, $S], $i0 = [0, 8704], Qi0 = [0, XF], Zi0 = [0, EL], xf0 = [0, 8230], rf0 = [0, 9829], ef0 = [0, 8596], tf0 = [0, 8660], nf0 = [0, 62], uf0 = [0, 402], if0 = [0, 948], ff0 = [0, nF], cf0 = [0, E9], sf0 = [0, 8712], af0 = [0, sP], of0 = [0, 953], vf0 = [0, 8734], lf0 = [0, 8465], pf0 = [0, IM], kf0 = [0, 8220], mf0 = [0, 8968], hf0 = [0, 8592], df0 = [0, Sg], yf0 = [0, 10216], _f0 = [0, 955], wf0 = [0, 8656], gf0 = [0, 954], bf0 = [0, 60], Tf0 = [0, 8216], Ef0 = [0, 8249], Sf0 = [0, NM], Af0 = [0, 9674], If0 = [0, 8727], Pf0 = [0, 8970], Cf0 = [0, AL], Nf0 = [0, 8711], Of0 = [0, 956], jf0 = [0, 8722], Df0 = [0, j_], Rf0 = [0, NS], Ff0 = [0, 8212], Mf0 = [0, NR], Lf0 = [0, 8804], qf0 = [0, 957], Bf0 = [0, kF], Uf0 = [0, 8836], Xf0 = [0, 8713], Gf0 = [0, KR], Yf0 = [0, 8715], zf0 = [0, 8800], Jf0 = [0, 8853], Kf0 = [0, 959], Hf0 = [0, 969], Wf0 = [0, 8254], Vf0 = [0, HM], $f0 = [0, 339], Qf0 = [0, jv], Zf0 = [0, BM], xc0 = [0, s9], rc0 = [0, ul2], ec0 = [0, 8855], tc0 = [0, ME], nc0 = [0, t1], uc0 = [0, xI], ic0 = [0, py], fc0 = [0, da3], cc0 = [0, rL], sc0 = [0, 982], ac0 = [0, 960], oc0 = [0, 966], vc0 = [0, 8869], lc0 = [0, 8240], pc0 = [0, 8706], kc0 = [0, 8744], mc0 = [0, 8211], hc0 = [0, 10217], dc0 = [0, 8730], yc0 = [0, 8658], _c0 = [0, 34], wc0 = [0, 968], gc0 = [0, 8733], bc0 = [0, 8719], Tc0 = [0, 961], Ec0 = [0, 8971], Sc0 = [0, LL], Ac0 = [0, 8476], Ic0 = [0, 8221], Pc0 = [0, 8969], Cc0 = [0, 8594], Nc0 = [0, z_], Oc0 = [0, bM], jc0 = [0, Sb], Dc0 = [0, 8901], Rc0 = [0, 353], Fc0 = [0, 8218], Mc0 = [0, 8217], Lc0 = [0, 8250], qc0 = [0, 8835], Bc0 = [0, 8721], Uc0 = [0, 8838], Xc0 = [0, 8834], Gc0 = [0, 9824], Yc0 = [0, 8764], zc0 = [0, 962], Jc0 = [0, 963], Kc0 = [0, 8207], Hc0 = [0, 952], Wc0 = [0, 8756], Vc0 = [0, 964], $c0 = [0, e8], Qc0 = [0, 8839], Zc0 = [0, AC], xs0 = [0, fk], rs0 = [0, ol3], es0 = [0, 8657], ts0 = [0, 8482], ns0 = [0, lk], us0 = [0, 732], is0 = [0, Q32], fs0 = [0, 8201], cs0 = [0, 977], ss0 = [0, sM], as0 = [0, xl2], os0 = [0, 965], vs0 = [0, 978], ls0 = [0, IL], ps0 = [0, jS], ks0 = [0, WL], ms0 = [0, tR], hs0 = [0, 8205], ds0 = [0, 950], ys0 = [0, Bk], _s0 = [0, hF], ws0 = [0, QE], gs0 = [0, 958], bs0 = [0, 8593], Ts0 = [0, oD2], Es0 = [0, 8242], Ss0 = [0, kI], As0 = "unreachable regexp", Is0 = "unreachable token wholenumber", Ps0 = "unreachable token wholebigint", Cs0 = "unreachable token floatbigint", Ns0 = "unreachable token scinumber", Os0 = "unreachable token scibigint", js0 = "unreachable token hexnumber", Ds0 = "unreachable token hexbigint", Rs0 = "unreachable token legacyoctnumber", Fs0 = "unreachable token legacynonoctnumber", Ms0 = "unreachable token octnumber", Ls0 = "unreachable token octbigint", qs0 = "unreachable token bignumber", Bs0 = "unreachable token bigint", Us0 = "unreachable token", Xs0 = yL, Gs0 = [7, "#!"], Ys0 = "expected ?", zs0 = "unreachable string_escape", Js0 = V22, Ks0 = P6, Hs0 = P6, Ws0 = V22, Vs0 = KP, $s0 = EF, Qs0 = "n", Zs0 = "r", xa0 = "t", ra0 = zF, ea0 = P6, ta0 = Ao3, na0 = Ao3, ua0 = "unreachable id_char", ia0 = Ao3, fa0 = Ao3, ca0 = P6, sa0 = uL, aa0 = pD2, oa0 = gb, va0 = [28, "token ILLEGAL"], la0 = [0, [11, "the identifier `", [2, 0, [12, 96, 0]]], "the identifier `%s`"], pa0 = [0, 1], ka0 = [0, 1], ma0 = OF, ha0 = OF, da0 = [0, [11, "an identifier. When exporting a ", [2, 0, [11, " as a named export, you must specify a ", [2, 0, [11, " name. Did you mean `export default ", [2, 0, [11, " ...`?", 0]]]]]]], "an identifier. When exporting a %s as a named export, you must specify a %s name. Did you mean `export default %s ...`?"], ya0 = Sh, _a0 = "Peeking current location when not available", wa0 = [0, "src/parser/parser_env.ml", SR, 9], ga0 = "Internal Error: Tried to add_declared_private with outside of class scope.", ba0 = "Internal Error: `exit_class` called before a matching `enter_class`", Ta0 = rx, Ea0 = [0, 0, 0], Sa0 = [0, 0, 0], Aa0 = "Parser_env.Try.Rollback", Ia0 = rx, Pa0 = rx, Ca0 = [0, H22, of, $i6, CR2, TM, V7, $22, qf, h7, pc2, bc2, Rf2, Gi6, Du2, Fi6, hu2, F7, d7, Qu2, Uf, J72, ui6, cf, X72, Zn4, Zf, _u2, vu2, $n3, ac2, Ps6, oc2, _f2, Sf, Es4, Uc2, jc2, Q7, He7, t72, Wi6, s7, Qc2, Bi6, ic2, rs5, Ve7, Jc2, Uu2, fu2, k7, ss5, ii6, lu2, T7, Je7, ci6, w7, Of, qu2, fc2, Ku2, pi6, q72, a7, If2, _7, fs24, Ge7, Lf, Pi6, Zu2, M7, pu2, xf2, af, P7, $f2, au2, Fc2, Zi6, m7, Bn3, jf, Fu2, Y7, bi6, $c2, Ai6, Eu2, ge6, es5, x7, rc2, Vu2, bs5, Wn3, e7, o7, Kf, Pc2, Vn3, r7, Xi6, Qf, kf2, Lu2, sf, Xn4, Vc2, zu2, ni6, Oi6, Hu2, $u2, si6, n7, Ii6, Zc2, Ui6, ys5, Gf, Kc2, Xu2, Mu2, Ei6, Cc2, wu2, Kn4, hs5, df, W72, Ki6, uc2, hf, Nf, uu2, du2, E7, ps5, L7, mf, gu2, Au2, Cu2, Yc2, su2, os8, N7, oi6, G1, g7, Hn4, Bc2, ai6, pf, ku2, xu2, Tf, Jf, ms5, Tc2, Dc2, z7, dc2, Bu2, zf, f7, D7, Z7, Xf, I7, ds5, fi6, Mi5, Di6, Rc2, zn4, Yu2, xi6, eu2, vf2, ae4, lc2, is5, cc2, Ou2, Df2, as5, Vi6, Gn4, W22, Ri6, U7, cs5, St8, Ni6, qc2, gs5, tu2, i7, vi6, Ru2, di6, Qi6, S7, kc2, _c2, ti6, cu2, gf, nc2, As5, Iu2, wf, Qn3, vs6, Ci6, hi6, Hi6, ws5, bf, v7, b7, Mf2, mi6, C7, Nc2, ts5, p7, t24, Un3, Mc2, yf, Is6, A7, Yn3, Yi6, Ac2, Yf, Xc2, Oc2, Ts4, O7, Hc2, Bf, wc2, Ec2, bu2, ju2, j7, be6, nf, Ju2, qn4, hc2, Ic2, wi6, Gc2, gi6, lf, yu2, zi6, ou2, xc2, us5, Ke7, Xe6, rf, ff, ri6, Wc2, ns5, K7, mu2, Vf, Sc2, _s5, Jn3, gc2, qi6, Hf, ru2, uf, aR, H7, vD, qF, yc2, Ef, ji6, y7, sc2, Wf, B7, ei6, Si6, yi5, Wu2, Ff, Gu2, Su2, Pf2, c7, li6, l7, Ji6, _i6, Cs4, We7, iu2, zc2, vn3, G7, R7, ki6, ls5, u7, Tu2, Pu2, Ti6, Lc2, tf, vc2, tn4, Af], Na0 = [0, ss5, fi6, _c2, Ni6, di6, Cs4, mf, si6, sf, z7, eu2, zc2, _u2, e7, Ve7, bs5, Mc2, W72, hf, Ff, Es4, Xi6, Z7, Ii6, lc2, I7, Ec2, O7, of, Fu2, tu2, Ku2, jc2, hi6, m7, pf, Ic2, Vf, gs5, wc2, ys5, St8, V7, Mf2, $f2, lf, Ji6, ti6, l7, f7, Ac2, Lf, vi6, Hi6, rs5, Vc2, U7, Au2, fu2, Kn4, Ou2, bu2, ai6, Ui6, Si6, ji6, es5, Af, pu2, Ki6, qi6, X72, Lu2, Zu2, ms5, Wf, o7, Ge7, r7, Qi6, x7, Gf, dc2, D7, qc2, G1, ff, $n3, Oc2, E7, Nf, Tc2, g7, kc2, su2, P7, tf, Gc2, Yn3, Mu2, a7, Eu2, vc2, j7, _i6, T7, $22, Pi6, ou2, d7, w7, Ri6, wu2, ki6, Ci6, Q7, Rc2, Wu2, Oi6, ic2, be6, v7, vu2, H22, Hn4, Uc2, zi6, xf2, Du2, $c2, xc2, Yc2, If2, ls5, Gi6, Ef, yu2, $u2, pc2, du2, Xf, Pu2, oc2, xi6, Cc2, Hc2, Nc2, Wn3, yf, Bc2, bi6, mi6, Uf, Ps6, Hf, qf, _f2, ii6, Qu2, Uu2, Rf2, B7, is5, ws5, y7, oi6, S7, ru2, bc2, H7, Hu2, xu2, Sc2, u7, Ei6, Pf2, yi5, Jn3, L7, ps5, Y7, Tf, gc2, Xu2, W22, Je7, F7, J72, Jc2, jf, He7, Ke7, n7, cs5, Vu2, p7, ds5, ge6, iu2, As5, Bf, cc2, sc2, Un3, cu2, Mi5, Ru2, hu2, Ts4, q72, fs24, fc2, Qn3, Vi6, uc2, qu2, Xc2, A7, ns5, ni6, lu2, Xn4, Df2, Pc2, Fc2, ac2, kf2, M7, Vn3, ui6, wi6, uu2, c7, gi6, G7, zn4, Bi6, ju2, Sf, i7, _7, Gn4, Qf, Su2, zu2, zf, ei6, Cu2, vf2, nf, Zf, tn4, h7, Ju2, li6, Zn4, qn4, Bu2, Di6, ri6, ku2, Zi6, Zc2, Yu2, C7, gu2, Jf, cf, s7, Tu2, df, K7, Bn3, Ti6, R7, t24, Ai6, uf, ts5, hs5, Iu2, wf, k7, Xe6, gf, _s5, af, Yi6, hc2, yc2, Wi6, Qc2, vs6, Is6, Fi6, bf, os8, rc2, vn3, as5, Gu2, Dc2, Kf, nc2, us5, pi6, ci6, Yf, We7, Lc2, ae4, N7, rf, $i6, mu2, Of, b7, Wc2, au2, t72, Kc2], Oa0 = [0, ss5, fi6, _c2, Ni6, di6, Cs4, mf, si6, sf, z7, eu2, zc2, _u2, e7, Ve7, bs5, Mc2, W72, hf, Ff, Es4, Xi6, Z7, Ii6, lc2, I7, Ec2, O7, of, Fu2, tu2, Ku2, jc2, hi6, m7, pf, Ic2, Vf, gs5, wc2, ys5, St8, V7, TM, Mf2, $f2, lf, Ji6, ti6, l7, f7, Ac2, Lf, vi6, Hi6, rs5, Vc2, U7, Au2, fu2, Kn4, Ou2, bu2, ai6, Ui6, Si6, ji6, es5, Af, pu2, Ki6, qi6, vD, X72, Lu2, Zu2, ms5, Wf, o7, Ge7, r7, Qi6, x7, Gf, dc2, D7, qc2, G1, ff, $n3, Oc2, E7, Nf, Tc2, g7, kc2, su2, P7, tf, Gc2, Yn3, Mu2, a7, Eu2, vc2, j7, _i6, T7, $22, Pi6, ou2, d7, w7, Ri6, wu2, ki6, Ci6, Q7, Rc2, Wu2, Oi6, ic2, be6, v7, vu2, H22, Hn4, Uc2, zi6, xf2, Du2, $c2, xc2, Yc2, If2, ls5, Gi6, Ef, yu2, $u2, pc2, du2, Xf, Pu2, oc2, xi6, Cc2, Hc2, Nc2, Wn3, yf, Bc2, bi6, mi6, Uf, Ps6, Hf, qf, _f2, ii6, Qu2, Uu2, Rf2, B7, is5, ws5, y7, oi6, S7, ru2, bc2, H7, Hu2, xu2, Sc2, u7, Ei6, Pf2, yi5, Jn3, L7, ps5, Y7, Tf, gc2, Xu2, W22, Je7, F7, J72, Jc2, jf, He7, Ke7, n7, cs5, Vu2, p7, ds5, ge6, iu2, As5, Bf, cc2, sc2, Un3, cu2, Mi5, Ru2, hu2, Ts4, q72, fs24, fc2, Qn3, Vi6, uc2, qu2, Xc2, A7, ns5, ni6, lu2, Xn4, Df2, Pc2, Fc2, ac2, kf2, M7, Vn3, ui6, wi6, uu2, c7, gi6, G7, zn4, qF, Bi6, ju2, Sf, i7, _7, Gn4, Qf, Su2, zu2, zf, ei6, Cu2, vf2, nf, Zf, aR, tn4, h7, Ju2, li6, Zn4, CR2, qn4, Bu2, Di6, ri6, ku2, Zi6, Zc2, Yu2, C7, gu2, Jf, cf, s7, Tu2, df, K7, Bn3, Ti6, R7, t24, Ai6, uf, ts5, hs5, Iu2, wf, k7, Xe6, gf, _s5, af, Yi6, hc2, yc2, Wi6, Qc2, vs6, Is6, Fi6, bf, os8, rc2, vn3, as5, Gu2, Dc2, Kf, nc2, us5, pi6, ci6, Yf, We7, Lc2, ae4, N7, rf, $i6, mu2, Of, b7, Wc2, au2, t72, Kc2], ja0 = [0, H22, of, $i6, V7, $22, qf, h7, pc2, bc2, Rf2, Gi6, Du2, Fi6, hu2, F7, d7, Qu2, Uf, J72, ui6, cf, X72, Zn4, Zf, _u2, vu2, $n3, ac2, Ps6, oc2, _f2, Sf, Es4, Uc2, jc2, Q7, He7, t72, Wi6, s7, Qc2, Bi6, ic2, rs5, Ve7, Jc2, Uu2, fu2, k7, ss5, ii6, lu2, T7, Je7, ci6, w7, Of, qu2, fc2, Ku2, pi6, q72, a7, If2, _7, fs24, Ge7, Lf, Pi6, Zu2, M7, pu2, xf2, af, P7, $f2, au2, Fc2, Zi6, m7, Bn3, jf, Fu2, Y7, bi6, $c2, Ai6, Eu2, ge6, es5, x7, rc2, Vu2, bs5, Wn3, e7, o7, Kf, Pc2, Vn3, r7, Xi6, Qf, kf2, Lu2, sf, Xn4, Vc2, zu2, ni6, Oi6, Hu2, $u2, si6, n7, Ii6, Zc2, Ui6, ys5, Gf, Kc2, Xu2, Mu2, Ei6, Cc2, wu2, Kn4, hs5, df, W72, Ki6, uc2, hf, Nf, uu2, du2, E7, ps5, L7, mf, gu2, Au2, Cu2, Yc2, su2, os8, N7, oi6, G1, g7, Hn4, Bc2, ai6, pf, ku2, xu2, Tf, Jf, ms5, Tc2, Dc2, z7, dc2, Bu2, zf, f7, D7, Z7, Xf, I7, ds5, fi6, Mi5, Di6, Rc2, zn4, Yu2, xi6, eu2, vf2, ae4, lc2, is5, cc2, Ou2, Df2, as5, Vi6, Gn4, W22, Ri6, U7, cs5, St8, Ni6, qc2, gs5, tu2, i7, vi6, Ru2, di6, Qi6, S7, kc2, _c2, ti6, cu2, gf, nc2, As5, Iu2, wf, Qn3, vs6, Ci6, hi6, Hi6, ws5, bf, v7, b7, Mf2, mi6, C7, Nc2, ts5, p7, t24, Un3, Mc2, yf, Is6, A7, Yn3, Yi6, Ac2, Yf, Xc2, Oc2, Ts4, O7, Hc2, Bf, wc2, Ec2, bu2, ju2, j7, be6, nf, Ju2, qn4, hc2, Ic2, wi6, Gc2, gi6, lf, yu2, zi6, ou2, xc2, us5, Ke7, Xe6, rf, ff, ri6, Wc2, ns5, K7, mu2, Vf, Sc2, _s5, Jn3, gc2, qi6, Hf, ru2, uf, H7, yc2, Ef, ji6, y7, sc2, Wf, B7, ei6, Si6, yi5, Wu2, Ff, Gu2, Su2, Pf2, c7, li6, l7, Ji6, _i6, Cs4, We7, iu2, zc2, vn3, G7, R7, ki6, ls5, u7, Tu2, Pu2, Ti6, Lc2, tf, vc2, tn4, Af], Da0 = $32, Ra0 = nm2, Fa0 = bo3, Ma0 = I6, La0 = Je7, qa0 = Ve7, Ba0 = $P, Ua0 = DT, Xa0 = Bv, Ga0 = He7, Ya0 = um2, za0 = g6, Ja0 = Tp2, Ka0 = L8, Ha0 = No3, Wa0 = cl2, Va0 = Hv, $a0 = wa2, Qa0 = Pa2, Za0 = We7, xo0 = rk, ro0 = Rm2, eo0 = Xe6, to0 = Fv, no0 = Tk, uo0 = U8, io0 = K8, fo0 = h6, co0 = mc2, so0 = Ue5, ao0 = Ck, oo0 = Yv, vo0 = E6, lo0 = Aa2, po0 = ga, ko0 = j6, mo0 = dh, ho0 = W22, do0 = fl2, yo0 = Oo2, _o0 = ae4, wo0 = Pk, go0 = Q62, bo0 = k6, To0 = W62, Eo0 = H22, So0 = Ke7, Ao0 = x42, Io0 = tc2, Po0 = zb, Co0 = JS, No0 = Io3, Oo0 = Kv, jo0 = ik, Do0 = wk, Ro0 = be6, Fo0 = H32, Mo0 = $v, Lo0 = K32, qo0 = ga, Bo0 = H62, Uo0 = hk, Xo0 = bk, Go0 = Hk, Yo0 = Lm2, zo0 = Xv, Jo0 = J62, Ko0 = tl2, Ho0 = V32, Wo0 = O6, Vo0 = rm2, $o0 = [0, Sh], Qo0 = rx, Zo0 = [19, 1], xv0 = [19, 0], rv0 = [0, 0], ev0 = Ta2, tv0 = [0, 0], nv0 = [0, "a type"], uv0 = [0, 0], iv0 = [0, "a number literal type"], fv0 = [0, 0], cv0 = J62, sv0 = tl2, av0 = V32, ov0 = "You should only call render_type after making sure the next token is a renders variant", vv0 = [0, [0, 0, 0, 0, 0]], lv0 = [0, 0, 0, 0], pv0 = [0, 1], kv0 = [0, il3, 1466, 6], mv0 = [0, il3, 1469, 6], hv0 = [0, il3, 1572, 8], dv0 = [0, 1], yv0 = [0, il3, 1589, 8], _v0 = "Can not have both `static` and `proto`", wv0 = Ue5, gv0 = rw, bv0 = [0, 0], Tv0 = [0, "the end of a tuple type (no trailing comma is allowed in inexact tuple type)."], Ev0 = [0, il3, Sv, 15], Sv0 = [0, il3, sP, 15], Av0 = ze6, Iv0 = ze6, Pv0 = Kk, Cv0 = G6, Nv0 = [0, [11, "Failure while looking up ", [2, 0, [11, ". Index: ", [4, 0, 0, 0, [11, ". Length: ", [4, 0, 0, 0, [12, 46, 0]]]]]]], "Failure while looking up %s. Index: %d. Length: %d."], Ov0 = [0, 0, 0, 0], jv0 = "Offset_utils.Offset_lookup_failed", Dv0 = m1, Rv0 = kD, Fv0 = G6, Mv0 = Kk, Lv0 = wD, qv0 = G6, Bv0 = Kk, Uv0 = vR, Xv0 = Yx, Gv0 = "normal", Yv0 = tc2, zv0 = "jsxTag", Jv0 = "jsxChild", Kv0 = "template", Hv0 = nD2, Wv0 = "context", Vv0 = tc2, $v0 = [6, 0], Qv0 = [0, 0], Zv0 = [0, 1], x30 = [0, 4], r30 = [0, 2], e30 = [0, 3], t30 = [0, 0], n30 = ze6, u30 = [0, 0, 0, 0, 0, 0], i30 = [0, 0], f30 = [0, OM], c30 = [0, 1], s30 = [0, 0], a30 = Ta2, o30 = [0, 73], v30 = [0, 84], l30 = aM, p30 = rE, k30 = "exports", m30 = K62, h30 = [0, rx, rx, 0], d30 = [0, AD], y30 = [0, 84], _30 = [0, "a declaration, statement or export specifiers"], w30 = [0, 1], g30 = [0, I9, 1971, 21], b30 = [0, "the keyword `as`"], T30 = [0, 29], E30 = [0, 29], S30 = [0, 0], A30 = [0, 1], I30 = [0, AD], P30 = [0, "the keyword `from`"], C30 = [0, rx, rx, 0], N30 = "Label", O30 = [0, OM], j30 = [0, 0, 0], D30 = [0, 38], R30 = [0, I9, 372, 22], F30 = [0, 37], M30 = [0, I9, 391, 22], L30 = [0, 0], q30 = "the token `;`", B30 = [0, 0], U30 = [0, 0], X30 = FR, G30 = [0, Sh], Y30 = FR, z30 = [28, St8], J30 = Ta2, K30 = [0, 73], H30 = [0, rx, 0], W30 = It7, V30 = [0, rx, 0], $30 = [0, 73], Q30 = [0, 73], Z30 = $32, xl0 = [0, rx, 0], rl0 = [0, 0, 0], el0 = [0, 0, 0], tl0 = [0, [0, 8]], nl0 = [0, [0, 7]], ul0 = [0, [0, 6]], il0 = [0, [0, 10]], fl0 = [0, [0, 9]], cl0 = [0, [0, 11]], sl0 = [0, [0, 5]], al0 = [0, [0, 4]], ol0 = [0, [0, 2]], vl0 = [0, [0, 3]], ll0 = [0, [0, 1]], pl0 = [0, [0, 0]], kl0 = [0, [0, 12]], ml0 = [0, [0, 13]], hl0 = [0, [0, 14]], dl0 = [0, 0], yl0 = [0, 1], _l0 = [0, 0], wl0 = [0, 2], gl0 = [0, 3], bl0 = [0, 7], Tl0 = [0, 6], El0 = [0, 4], Sl0 = [0, 5], Al0 = [0, 1], Il0 = [0, 0], Pl0 = [0, 1], Cl0 = [0, 0], Nl0 = fl2, Ol0 = [0, "either a call or access of `super`"], jl0 = fl2, Dl0 = W22, Rl0 = w6, Fl0 = w6, Ml0 = [0, 2], Ll0 = [0, 0], ql0 = [0, 1], Bl0 = Yv, Ul0 = [0, "the identifier `target`"], Xl0 = [0, 0], Gl0 = [0, 1], Yl0 = [0, 0], zl0 = [0, 0], Jl0 = [0, 2], Kl0 = [0, 2], Hl0 = [0, 1], Wl0 = [0, 73], Vl0 = P6, $l0 = uL, Ql0 = gb, Zl0 = gb, x60 = pD2, r60 = [0, 0], e60 = [0, 1], t60 = [0, 0], n60 = se6, u60 = se6, i60 = [0, "a regular expression"], f60 = rx, c60 = rx, s60 = rx, a60 = [0, 81], o60 = [0, "src/parser/expression_parser.ml", 1550, 17], v60 = [0, "a template literal part"], l60 = [0, [0, rx, rx], 1], p60 = Pv, k60 = [0, 6], m60 = [0, [0, 17, [0, 2]]], h60 = [0, [0, 18, [0, 3]]], d60 = [0, [0, 19, [0, 4]]], y60 = [0, [0, 0, [0, 5]]], _60 = [0, [0, 1, [0, 5]]], w60 = [0, [0, 2, [0, 5]]], g60 = [0, [0, 3, [0, 5]]], b60 = [0, [0, 5, [0, 6]]], T60 = [0, [0, 7, [0, 6]]], E60 = [0, [0, 4, [0, 6]]], S60 = [0, [0, 6, [0, 6]]], A60 = [0, [0, 8, [0, 7]]], I60 = [0, [0, 9, [0, 7]]], P60 = [0, [0, 10, [0, 7]]], C60 = [0, [0, 11, [0, 8]]], N60 = [0, [0, 12, [0, 8]]], O60 = [0, [0, 15, [0, 9]]], j60 = [0, [0, 13, [0, 9]]], D60 = [0, [0, 14, [1, 10]]], R60 = [0, [0, 16, [0, 9]]], F60 = [0, [0, 21, [0, 6]]], M60 = [0, [0, 20, [0, 6]]], L60 = [23, Dw], q60 = [13, "JSX fragment"], B60 = Iv, U60 = ln4, X60 = [0, sn4], G60 = [1, sn4], Y60 = [0, rx, rx, 0], z60 = [0, Sh], J60 = rx, K60 = [0, "a numeric or string literal"], H60 = [0, rx, '""', 0], W60 = [0, 0], V60 = [0, "a number literal"], $60 = [0, [0, 0, V22, 0]], Q60 = [0, 84], Z60 = [21, dM], x40 = [21, R62], r40 = [0, 0, 0], e40 = h6, t40 = [0, rx, 0], n40 = "unexpected PrivateName in Property, expected a PrivateField", u40 = [0, 0, 0], i40 = Sa, f40 = "Must be one of the above", c40 = [0, 1], s40 = [0, 1], a40 = [0, 1], o40 = Sa, v40 = Sa, l40 = p_, p40 = "Internal Error: private name found in object props", k40 = [0, 0, 0, 0], m40 = [0, cF], h40 = [19, [0, 0]], d40 = [0, cF], y40 = ug, _40 = "Nooo: ", w40 = Fv, g40 = "Parser error: No such thing as an expression pattern!", b40 = [0, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], T40 = [0, "src/parser/parser_flow.ml", fk, 28], E40 = [0, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], S40 = kD, A40 = Yx, I40 = $D, P40 = eR, C40 = eR, N40 = $D, O40 = tc2, j40 = sD2, D40 = w1, R40 = m1, F40 = "InterpreterDirective", M40 = "interpreter", L40 = "Program", q40 = w1, B40 = "RecordBody", U40 = m1, X40 = Y1, G40 = en4, Y40 = "RecordStaticProperty", z40 = "defaultValue", J40 = Y1, K40 = en4, H40 = "RecordProperty", W40 = S6, V40 = "BreakStatement", $40 = S6, Q40 = "ContinueStatement", Z40 = "DebuggerStatement", xp0 = Wv, rp0 = "DeclareExportAllDeclaration", ep0 = Wv, tp0 = l_, np0 = IE, up0 = Fv, ip0 = "DeclareExportDeclaration", fp0 = w1, cp0 = Yr5, sp0 = "DeclareModule", ap0 = Y1, op0 = "DeclareModuleExports", vp0 = w1, lp0 = Yr5, pp0 = NL, kp0 = "DeclareNamespace", mp0 = Z32, hp0 = w1, dp0 = "DoWhileStatement", yp0 = "EmptyStatement", _p0 = cS, wp0 = IE, gp0 = "ExportDefaultDeclaration", bp0 = cS, Tp0 = cA, Ep0 = Wv, Sp0 = "ExportAllDeclaration", Ap0 = cS, Ip0 = Wv, Pp0 = l_, Cp0 = IE, Np0 = "ExportNamedDeclaration", Op0 = "directive", jp0 = t24, Dp0 = "ExpressionStatement", Rp0 = w1, Fp0 = "update", Mp0 = Z32, Lp0 = ks5, qp0 = "ForStatement", Bp0 = "each", Up0 = w1, Xp0 = fn5, Gp0 = Ea2, Yp0 = "ForInStatement", zp0 = Kv, Jp0 = w1, Kp0 = fn5, Hp0 = Ea2, Wp0 = "ForOfStatement", Vp0 = lR, $p0 = rP, Qp0 = Z32, Zp0 = "IfStatement", xk0 = tc2, rk0 = Aa2, ek0 = m1, tk0 = XD, nk0 = Wv, uk0 = l_, ik0 = "ImportDeclaration", fk0 = w1, ck0 = S6, sk0 = "LabeledStatement", ak0 = J9, ok0 = $1, vk0 = "MatchStatement", lk0 = "RecordImplements", pk0 = w1, kk0 = Oo2, mk0 = B22, hk0 = Yr5, dk0 = "RecordDeclaration", yk0 = $1, _k0 = "ReturnStatement", wk0 = J9, gk0 = "discriminant", bk0 = "SwitchStatement", Tk0 = $1, Ek0 = "ThrowStatement", Sk0 = "finalizer", Ak0 = "handler", Ik0 = vn3, Pk0 = "TryStatement", Ck0 = w1, Nk0 = Z32, Ok0 = "WhileStatement", jk0 = w1, Dk0 = Dp2, Rk0 = "WithStatement", Fk0 = x9, Mk0 = $1, Lk0 = NA, qk0 = x9, Bk0 = $1, Uk0 = NA, Xk0 = KT, Gk0 = "ArrayExpression", Yk0 = B22, zk0 = gh, Jk0 = t24, Kk0 = Ge7, Hk0 = Ey, Wk0 = Io3, Vk0 = w1, $k0 = on8, Qk0 = Yr5, Zk0 = "ArrowFunctionExpression", x80 = t24, r80 = "AsConstExpression", e80 = Y1, t80 = t24, n80 = "AsExpression", u80 = p_, i80 = fn5, f80 = Ea2, c80 = Gv, s80 = "AssignmentExpression", a80 = fn5, o80 = Ea2, v80 = Gv, l80 = "BinaryExpression", p80 = "CallExpression", k80 = lR, m80 = rP, h80 = Z32, d80 = "ConditionalExpression", y80 = Wv, _80 = "ImportExpression", w80 = LF2, g80 = CM, b80 = Dw, T80 = fn5, E80 = Ea2, S80 = Gv, A80 = "LogicalExpression", I80 = J9, P80 = $1, C80 = "MatchExpression", N80 = "MemberExpression", O80 = Tm2, j80 = w6, D80 = "MetaProperty", R80 = Qb, F80 = h8, M80 = fR, L80 = "NewExpression", q80 = A6, B80 = "ObjectExpression", U80 = ft7, X80 = "OptionalCallExpression", G80 = ft7, Y80 = "OptionalMemberExpression", z80 = rM, J80 = "SequenceExpression", K80 = "Super", H80 = "ThisExpression", W80 = Y1, V80 = t24, $80 = "TypeCastExpression", Q80 = Y1, Z80 = t24, xm0 = "SatisfiesExpression", rm0 = x9, em0 = $1, tm0 = NA, nm0 = ze6, um0 = $7, im0 = SD, fm0 = VL, cm0 = Aa2, sm0 = ga, am0 = E6, om0 = "matched above", vm0 = $1, lm0 = XR, pm0 = Gv, km0 = "UnaryExpression", mm0 = $1, hm0 = "AwaitExpression", dm0 = kR, ym0 = ZM, _m0 = XR, wm0 = $1, gm0 = Gv, bm0 = "UpdateExpression", Tm0 = "delegate", Em0 = $1, Sm0 = "YieldExpression", Am0 = "MatchExpressionCase", Im0 = "guard", Pm0 = w1, Cm0 = ge6, Nm0 = "MatchStatementCase", Om0 = "literal", jm0 = "MatchLiteralPattern", Dm0 = "MatchWildcardPattern", Rm0 = ze6, Fm0 = $7, Mm0 = $1, Lm0 = Gv, qm0 = "MatchUnaryPattern", Bm0 = "MatchObjectPattern", Um0 = "MatchInstanceObjectPattern", Xm0 = DF, Gm0 = _a4, Ym0 = "MatchInstancePattern", zm0 = "patterns", Jm0 = "MatchOrPattern", Km0 = Ih, Hm0 = ge6, Wm0 = "MatchAsPattern", Vm0 = Yr5, $m0 = "MatchIdentifierPattern", Qm0 = Tm2, Zm0 = "base", xh0 = "MatchMemberPattern", rh0 = ba2, eh0 = Yr5, th0 = "MatchBindingPattern", nh0 = p6, uh0 = KT, ih0 = "MatchArrayPattern", fh0 = T6, ch0 = ge6, sh0 = en4, ah0 = VR, oh0 = T6, vh0 = ge6, lh0 = en4, ph0 = VR, kh0 = p6, mh0 = A6, hh0 = $1, dh0 = "MatchRestPattern", yh0 = "Unexpected FunctionDeclaration with BodyExpression", _h0 = "HookDeclaration", wh0 = t24, gh0 = Ge7, bh0 = Ey, Th0 = Io3, Eh0 = "FunctionDeclaration", Sh0 = B22, Ah0 = gh, Ih0 = w1, Ph0 = on8, Ch0 = Yr5, Nh0 = "Unexpected FunctionExpression with BodyExpression", Oh0 = B22, jh0 = gh, Dh0 = t24, Rh0 = Ge7, Fh0 = Ey, Mh0 = Io3, Lh0 = w1, qh0 = on8, Bh0 = Yr5, Uh0 = "FunctionExpression", Xh0 = ft7, Gh0 = Y1, Yh0 = Ye4, zh0 = US, Jh0 = ft7, Kh0 = Y1, Hh0 = Ye4, Wh0 = "PrivateIdentifier", Vh0 = ft7, $h0 = Y1, Qh0 = Ye4, Zh0 = US, xd0 = rP, rd0 = Z32, ed0 = "SwitchCase", td0 = w1, nd0 = "param", ud0 = "CatchClause", id0 = w1, fd0 = "BlockStatement", cd0 = ba2, sd0 = Yr5, ad0 = "DeclareVariable", od0 = "DeclareHook", vd0 = Ge7, ld0 = "DeclareFunction", pd0 = Yr5, kd0 = lM, md0 = Oo2, hd0 = mc2, dd0 = w1, yd0 = B22, _d0 = Yr5, wd0 = "DeclareClass", gd0 = B22, bd0 = f_, Td0 = on8, Ed0 = p6, Sd0 = on8, Ad0 = Yr5, Id0 = "DeclareComponent", Pd0 = B22, Cd0 = f_, Nd0 = p6, Od0 = on8, jd0 = "ComponentTypeAnnotation", Dd0 = ft7, Rd0 = Y1, Fd0 = Ye4, Md0 = "ComponentTypeParameter", Ld0 = w1, qd0 = Yr5, Bd0 = "DeclareEnum", Ud0 = mc2, Xd0 = w1, Gd0 = B22, Yd0 = Yr5, zd0 = "DeclareInterface", Jd0 = m1, Kd0 = tc2, Hd0 = cA, Wd0 = "ExportNamespaceSpecifier", Vd0 = fn5, $d0 = B22, Qd0 = Yr5, Zd0 = "DeclareTypeAlias", x50 = fn5, r50 = B22, e50 = Yr5, t50 = "TypeAlias", n50 = "DeclareOpaqueType", u50 = "OpaqueType", i50 = "supertype", f50 = "upperBound", c50 = "lowerBound", s50 = "impltype", a50 = B22, o50 = Yr5, v50 = "ClassDeclaration", l50 = "ClassExpression", p50 = g8, k50 = Oo2, m50 = "superTypeParameters", h50 = "superClass", d50 = B22, y50 = w1, _50 = Yr5, w50 = t24, g50 = "Decorator", b50 = B22, T50 = Yr5, E50 = "ClassImplements", S50 = w1, A50 = "ClassBody", I50 = w1, P50 = "StaticBlock", C50 = _a4, N50 = V6, O50 = Nv, j50 = nl2, D50 = g8, R50 = W32, F50 = Ue5, M50 = ba2, L50 = m1, q50 = en4, B50 = "MethodDefinition", U50 = x42, X50 = g8, G50 = $22, Y50 = Ue5, z50 = W32, J50 = Y1, K50 = m1, H50 = en4, W50 = jL, V50 = "Internal Error: Private name found in class prop", $50 = x42, Q50 = g8, Z50 = $22, xy0 = Ue5, ry0 = W32, ey0 = Y1, ty0 = m1, ny0 = en4, uy0 = jL, iy0 = B22, fy0 = f_, cy0 = on8, sy0 = Yr5, ay0 = w1, oy0 = "ComponentDeclaration", vy0 = $1, ly0 = OE, py0 = fn5, ky0 = Ea2, my0 = jm2, hy0 = T6, dy0 = X62, yy0 = Ye4, _y0 = "ComponentParameter", wy0 = ks5, gy0 = Yr5, by0 = "EnumBigIntMember", Ty0 = Yr5, Ey0 = LR, Sy0 = ks5, Ay0 = Yr5, Iy0 = "EnumStringMember", Py0 = Yr5, Cy0 = LR, Ny0 = ks5, Oy0 = Yr5, jy0 = "EnumNumberMember", Dy0 = ks5, Ry0 = Yr5, Fy0 = "EnumBooleanMember", My0 = B6, Ly0 = Am2, qy0 = y6, By0 = "EnumBooleanBody", Uy0 = B6, Xy0 = Am2, Gy0 = y6, Yy0 = "EnumNumberBody", zy0 = B6, Jy0 = Am2, Ky0 = y6, Hy0 = "EnumStringBody", Wy0 = B6, Vy0 = y6, $y0 = "EnumSymbolBody", Qy0 = B6, Zy0 = Am2, x90 = y6, r90 = "EnumBigIntBody", e90 = w1, t90 = Yr5, n90 = "EnumDeclaration", u90 = mc2, i90 = w1, f90 = B22, c90 = Yr5, s90 = "InterfaceDeclaration", a90 = B22, o90 = Yr5, v90 = "InterfaceExtends", l90 = Y1, p90 = A6, k90 = "ObjectPattern", m90 = Y1, h90 = KT, d90 = "ArrayPattern", y90 = fn5, _90 = Ea2, w90 = jm2, g90 = Y1, b90 = Ye4, T90 = US, E90 = $1, S90 = OE, A90 = $1, I90 = OE, P90 = fn5, C90 = Ea2, N90 = jm2, O90 = ks5, j90 = ks5, D90 = Nv, R90 = nl2, F90 = VD, M90 = W32, L90 = T6, q90 = V6, B90 = ba2, U90 = m1, X90 = en4, G90 = mF, Y90 = $1, z90 = iR, J90 = fn5, K90 = Ea2, H90 = jm2, W90 = W32, V90 = T6, $90 = V6, Q90 = ba2, Z90 = m1, x_0 = en4, r_0 = mF, e_0 = $1, t_0 = iR, n_0 = At8, u_0 = m1, i_0 = J32, f_0 = rx, c_0 = At8, s_0 = $v, a_0 = m1, o_0 = J32, v_0 = At8, l_0 = m1, p_0 = J32, k_0 = Pa2, m_0 = wa2, h_0 = At8, d_0 = m1, y_0 = J32, __0 = "flags", w_0 = ge6, g_0 = "regex", b_0 = At8, T_0 = m1, E_0 = J32, S_0 = At8, A_0 = m1, I_0 = J32, P_0 = rM, C_0 = "quasis", N_0 = "TemplateLiteral", O_0 = "cooked", j_0 = At8, D_0 = "tail", R_0 = m1, F_0 = "TemplateElement", M_0 = "quasi", L_0 = "tag", q_0 = "TaggedTemplateExpression", B_0 = ba2, U_0 = "declarations", X_0 = "VariableDeclaration", G_0 = ks5, Y_0 = Yr5, z_0 = "VariableDeclarator", J_0 = "plus", K_0 = nM, H_0 = Xv, W_0 = bo3, V_0 = ng, $_0 = "in-out", Q_0 = ba2, Z_0 = "Variance", xw0 = "AnyTypeAnnotation", rw0 = "MixedTypeAnnotation", ew0 = "EmptyTypeAnnotation", tw0 = "VoidTypeAnnotation", nw0 = "NullLiteralTypeAnnotation", uw0 = "SymbolTypeAnnotation", iw0 = "NumberTypeAnnotation", fw0 = "BigIntTypeAnnotation", cw0 = "StringTypeAnnotation", sw0 = "BooleanTypeAnnotation", aw0 = Y1, ow0 = "NullableTypeAnnotation", vw0 = "UnknownTypeAnnotation", lw0 = "NeverTypeAnnotation", pw0 = "UndefinedTypeAnnotation", kw0 = ba2, mw0 = Y1, hw0 = "parameterName", dw0 = "TypePredicate", yw0 = "HookTypeAnnotation", _w0 = "FunctionTypeAnnotation", ww0 = Bv, gw0 = B22, bw0 = p6, Tw0 = gh, Ew0 = on8, Sw0 = ft7, Aw0 = Y1, Iw0 = Ye4, Pw0 = fM, Cw0 = ft7, Nw0 = Y1, Ow0 = Ye4, jw0 = fM, Dw0 = [0, 0, 0, 0, 0], Rw0 = "internalSlots", Fw0 = "callProperties", Mw0 = "indexers", Lw0 = A6, qw0 = "exact", Bw0 = tL, Uw0 = "ObjectTypeAnnotation", Xw0 = VD, Gw0 = "There should not be computed object type property keys", Yw0 = ks5, zw0 = Nv, Jw0 = nl2, Kw0 = ba2, Hw0 = $22, Ww0 = rw, Vw0 = Ue5, $w0 = ft7, Qw0 = V6, Zw0 = m1, xg0 = en4, rg0 = "ObjectTypeProperty", eg0 = $1, tg0 = "ObjectTypeSpreadProperty", ng0 = $22, ug0 = Ue5, ig0 = m1, fg0 = en4, cg0 = Yr5, sg0 = "ObjectTypeIndexer", ag0 = Ue5, og0 = m1, vg0 = "ObjectTypeCallProperty", lg0 = ft7, pg0 = $22, kg0 = "sourceType", mg0 = "propType", hg0 = "keyTparam", dg0 = "ObjectTypeMappedTypeProperty", yg0 = m1, _g0 = V6, wg0 = Ue5, gg0 = ft7, bg0 = Yr5, Tg0 = "ObjectTypeInternalSlot", Eg0 = w1, Sg0 = mc2, Ag0 = "InterfaceTypeAnnotation", Ig0 = QM, Pg0 = "ArrayTypeAnnotation", Cg0 = "falseType", Ng0 = "trueType", Og0 = "extendsType", jg0 = "checkType", Dg0 = "ConditionalTypeAnnotation", Rg0 = "typeParameter", Fg0 = "InferTypeAnnotation", Mg0 = Yr5, Lg0 = UF, qg0 = "QualifiedTypeIdentifier", Bg0 = B22, Ug0 = Yr5, Xg0 = "GenericTypeAnnotation", Gg0 = "indexType", Yg0 = "objectType", zg0 = "IndexedAccessType", Jg0 = ft7, Kg0 = "OptionalIndexedAccessType", Hg0 = w_, Wg0 = "UnionTypeAnnotation", Vg0 = w_, $g0 = "IntersectionTypeAnnotation", Qg0 = h8, Zg0 = $1, xb0 = "TypeofTypeAnnotation", rb0 = Yr5, eb0 = UF, tb0 = "QualifiedTypeofIdentifier", nb0 = $1, ub0 = "KeyofTypeAnnotation", ib0 = el2, fb0 = jF, cb0 = uF, sb0 = Y1, ab0 = Gv, ob0 = "TypeOperator", vb0 = Xv, lb0 = tL, pb0 = "elementTypes", kb0 = "TupleTypeAnnotation", mb0 = ft7, hb0 = $22, db0 = QM, yb0 = S6, _b0 = "TupleTypeLabeledElement", wb0 = Y1, gb0 = S6, bb0 = "TupleTypeSpreadElement", Tb0 = At8, Eb0 = m1, Sb0 = "StringLiteralTypeAnnotation", Ab0 = At8, Ib0 = m1, Pb0 = "NumberLiteralTypeAnnotation", Cb0 = At8, Nb0 = m1, Ob0 = "BigIntLiteralTypeAnnotation", jb0 = Pa2, Db0 = wa2, Rb0 = At8, Fb0 = m1, Mb0 = "BooleanLiteralTypeAnnotation", Lb0 = "ExistsTypeAnnotation", qb0 = Y1, Bb0 = vF, Ub0 = Y1, Xb0 = vF, Gb0 = on8, Yb0 = "TypeParameterDeclaration", zb0 = "usesExtendsBound", Jb0 = Fv, Kb0 = $22, Hb0 = No3, Wb0 = "bound", Vb0 = Ye4, $b0 = "TypeParameter", Qb0 = on8, Zb0 = mM, xT0 = on8, rT0 = mM, eT0 = Pv, tT0 = OL, nT0 = "closingElement", uT0 = "openingElement", iT0 = "JSXElement", fT0 = "closingFragment", cT0 = OL, sT0 = "openingFragment", aT0 = "JSXFragment", oT0 = h8, vT0 = "selfClosing", lT0 = "attributes", pT0 = Ye4, kT0 = "JSXOpeningElement", mT0 = "JSXOpeningFragment", hT0 = Ye4, dT0 = "JSXClosingElement", yT0 = "JSXClosingFragment", _T0 = m1, wT0 = Ye4, gT0 = "JSXAttribute", bT0 = $1, TT0 = "JSXSpreadAttribute", ET0 = "JSXEmptyExpression", ST0 = t24, AT0 = "JSXExpressionContainer", IT0 = t24, PT0 = "JSXSpreadChild", CT0 = At8, NT0 = m1, OT0 = "JSXText", jT0 = Tm2, DT0 = Dp2, RT0 = "JSXMemberExpression", FT0 = Ye4, MT0 = rE, LT0 = "JSXNamespacedName", qT0 = Ye4, BT0 = "JSXIdentifier", UT0 = cA, XT0 = X62, GT0 = "ExportSpecifier", YT0 = X62, zT0 = "ImportDefaultSpecifier", JT0 = X62, KT0 = "ImportNamespaceSpecifier", HT0 = XD, WT0 = X62, VT0 = "imported", $T0 = "ImportSpecifier", QT0 = "Line", ZT0 = "Block", xE0 = m1, rE0 = m1, eE0 = "DeclaredPredicate", tE0 = "InferredPredicate", nE0 = Qb, uE0 = h8, iE0 = fR, fE0 = W32, cE0 = Tm2, sE0 = Dp2, aE0 = "message", oE0 = Yx, vE0 = wD, lE0 = vR, pE0 = Wv, kE0 = G6, mE0 = Kk, hE0 = [0, ss5, fi6, _c2, Ni6, di6, Cs4, mf, si6, sf, z7, eu2, zc2, _u2, e7, Ve7, bs5, Mc2, W72, hf, Ff, Es4, Xi6, Z7, Ii6, lc2, I7, Ec2, O7, of, Fu2, tu2, Ku2, jc2, hi6, m7, pf, Ic2, Vf, gs5, wc2, ys5, St8, V7, Mf2, $f2, lf, Ji6, ti6, l7, f7, Ac2, Lf, vi6, Hi6, rs5, Vc2, U7, Au2, fu2, Kn4, Ou2, bu2, ai6, Ui6, Si6, ji6, es5, Af, pu2, Ki6, qi6, X72, Lu2, Zu2, ms5, Wf, o7, Ge7, r7, Qi6, x7, Gf, dc2, D7, qc2, G1, ff, $n3, Oc2, E7, Nf, Tc2, g7, kc2, su2, P7, tf, Gc2, Yn3, Mu2, a7, Eu2, vc2, j7, _i6, T7, $22, Pi6, ou2, d7, w7, Ri6, wu2, ki6, Ci6, Q7, Rc2, Wu2, Oi6, ic2, be6, v7, vu2, H22, Hn4, Uc2, zi6, xf2, Du2, $c2, xc2, Yc2, If2, ls5, Gi6, Ef, yu2, $u2, pc2, du2, Xf, Pu2, oc2, xi6, Cc2, Hc2, Nc2, Wn3, yf, Bc2, bi6, mi6, Uf, Ps6, Hf, qf, _f2, ii6, Qu2, Uu2, Rf2, B7, is5, ws5, y7, oi6, S7, ru2, bc2, H7, Hu2, xu2, Sc2, u7, Ei6, Pf2, yi5, Jn3, L7, ps5, Y7, Tf, gc2, Xu2, W22, Je7, F7, J72, Jc2, jf, He7, Ke7, n7, cs5, Vu2, p7, ds5, ge6, iu2, As5, Bf, cc2, sc2, Un3, cu2, Mi5, Ru2, hu2, Ts4, q72, fs24, fc2, Qn3, Vi6, uc2, qu2, Xc2, A7, ns5, ni6, lu2, Xn4, Df2, Pc2, Fc2, ac2, kf2, M7, Vn3, ui6, wi6, uu2, c7, gi6, G7, zn4, Bi6, ju2, Sf, i7, _7, Gn4, Qf, Su2, zu2, zf, ei6, Cu2, vf2, nf, Zf, tn4, h7, Ju2, li6, Zn4, qn4, Bu2, Di6, ri6, ku2, Zi6, Zc2, Yu2, C7, gu2, Jf, cf, s7, Tu2, df, K7, Bn3, Ti6, R7, t24, Ai6, uf, ts5, hs5, Iu2, wf, k7, Xe6, gf, _s5, af, Yi6, hc2, yc2, Wi6, Qc2, vs6, Is6, Fi6, bf, os8, rc2, vn3, as5, Gu2, Dc2, Kf, nc2, us5, pi6, ci6, Yf, We7, Lc2, ae4, N7, rf, $i6, mu2, Of, b7, Wc2, au2, t72, Kc2], dE0 = [0, H22, of, $i6, V7, $22, qf, h7, pc2, bc2, Rf2, Gi6, Du2, Fi6, hu2, F7, d7, Qu2, Uf, J72, ui6, cf, X72, Zn4, Zf, _u2, vu2, $n3, ac2, Ps6, oc2, _f2, Sf, Es4, Uc2, jc2, Q7, He7, t72, Wi6, s7, Qc2, Bi6, ic2, rs5, Ve7, Jc2, Uu2, fu2, k7, ss5, ii6, lu2, T7, Je7, ci6, w7, Of, qu2, fc2, Ku2, pi6, q72, a7, If2, _7, fs24, Ge7, Lf, Pi6, Zu2, M7, pu2, xf2, af, P7, $f2, au2, Fc2, Zi6, m7, Bn3, jf, Fu2, Y7, bi6, $c2, Ai6, Eu2, ge6, es5, x7, rc2, Vu2, bs5, Wn3, e7, o7, Kf, Pc2, Vn3, r7, Xi6, Qf, kf2, Lu2, sf, Xn4, Vc2, zu2, ni6, Oi6, Hu2, $u2, si6, n7, Ii6, Zc2, Ui6, ys5, Gf, Kc2, Xu2, Mu2, Ei6, Cc2, wu2, Kn4, hs5, df, W72, Ki6, uc2, hf, Nf, uu2, du2, E7, ps5, L7, mf, gu2, Au2, Cu2, Yc2, su2, os8, N7, oi6, G1, g7, Hn4, Bc2, ai6, pf, ku2, xu2, Tf, Jf, ms5, Tc2, Dc2, z7, dc2, Bu2, zf, f7, D7, Z7, Xf, I7, ds5, fi6, Mi5, Di6, Rc2, zn4, Yu2, xi6, eu2, vf2, ae4, lc2, is5, cc2, Ou2, Df2, as5, Vi6, Gn4, W22, Ri6, U7, cs5, St8, Ni6, qc2, gs5, tu2, i7, vi6, Ru2, di6, Qi6, S7, kc2, _c2, ti6, cu2, gf, nc2, As5, Iu2, wf, Qn3, vs6, Ci6, hi6, Hi6, ws5, bf, v7, b7, Mf2, mi6, C7, Nc2, ts5, p7, t24, Un3, Mc2, yf, Is6, A7, Yn3, Yi6, Ac2, Yf, Xc2, Oc2, Ts4, O7, Hc2, Bf, wc2, Ec2, bu2, ju2, j7, be6, nf, Ju2, qn4, hc2, Ic2, wi6, Gc2, gi6, lf, yu2, zi6, ou2, xc2, us5, Ke7, Xe6, rf, ff, ri6, Wc2, ns5, K7, mu2, Vf, Sc2, _s5, Jn3, gc2, qi6, Hf, ru2, uf, H7, yc2, Ef, ji6, y7, sc2, Wf, B7, ei6, Si6, yi5, Wu2, Ff, Gu2, Su2, Pf2, c7, li6, l7, Ji6, _i6, Cs4, We7, iu2, zc2, vn3, G7, R7, ki6, ls5, u7, Tu2, Pu2, Ti6, Lc2, tf, vc2, tn4, Af], yE0 = [0, Af, tn4, vc2, tf, Lc2, Ti6, Pu2, Tu2, u7, ls5, ki6, R7, G7, vn3, zc2, iu2, We7, Cs4, _i6, Ji6, l7, li6, c7, Pf2, Su2, Gu2, Ff, Wu2, yi5, Si6, ei6, B7, Wf, sc2, y7, ji6, Ef, yc2, H7, uf, ru2, Hf, qi6, gc2, Jn3, _s5, Sc2, Vf, mu2, K7, ns5, Wc2, ri6, ff, rf, Xe6, Ke7, us5, xc2, ou2, zi6, yu2, lf, gi6, Gc2, wi6, Ic2, hc2, qn4, Ju2, nf, be6, j7, ju2, bu2, Ec2, wc2, Bf, Hc2, O7, Ts4, Oc2, Xc2, Yf, Ac2, Yi6, Yn3, A7, Is6, yf, Mc2, Un3, t24, p7, ts5, Nc2, C7, mi6, Mf2, b7, v7, bf, ws5, Hi6, hi6, Ci6, vs6, Qn3, wf, Iu2, As5, nc2, gf, cu2, ti6, _c2, kc2, S7, Qi6, di6, Ru2, vi6, i7, tu2, gs5, qc2, Ni6, St8, cs5, U7, Ri6, W22, Gn4, Vi6, as5, Df2, Ou2, cc2, is5, lc2, ae4, vf2, eu2, xi6, Yu2, zn4, Rc2, Di6, Mi5, fi6, ds5, I7, Xf, Z7, D7, f7, zf, Bu2, dc2, z7, Dc2, Tc2, ms5, Jf, Tf, xu2, ku2, pf, ai6, Bc2, Hn4, g7, G1, oi6, N7, os8, su2, Yc2, Cu2, Au2, gu2, mf, L7, ps5, E7, du2, uu2, Nf, hf, uc2, Ki6, W72, df, hs5, Kn4, wu2, Cc2, Ei6, Mu2, Xu2, Kc2, Gf, ys5, Ui6, Zc2, Ii6, n7, si6, $u2, Hu2, Oi6, ni6, zu2, Vc2, Xn4, sf, Lu2, kf2, Qf, Xi6, r7, Vn3, Pc2, Kf, o7, e7, Wn3, bs5, Vu2, rc2, x7, es5, ge6, Eu2, Ai6, $c2, bi6, Y7, Fu2, jf, Bn3, m7, Zi6, Fc2, au2, $f2, P7, af, xf2, pu2, M7, Zu2, Pi6, Lf, Ge7, fs24, _7, If2, a7, q72, pi6, Ku2, fc2, qu2, Of, w7, ci6, Je7, T7, lu2, ii6, ss5, k7, fu2, Uu2, Jc2, Ve7, rs5, ic2, Bi6, Qc2, s7, Wi6, t72, He7, Q7, jc2, Uc2, Es4, Sf, _f2, oc2, Ps6, ac2, $n3, vu2, _u2, Zf, Zn4, X72, cf, ui6, J72, Uf, Qu2, d7, F7, hu2, Fi6, Du2, Gi6, Rf2, bc2, pc2, h7, qf, $22, V7, $i6, of, H22], _E0 = "Jsoo_runtime.Error.Exn", wE0 = [0, 0], gE0 = "assert_operator", bE0 = "use_strict", TE0 = w_, EE0 = "esproposal_decorators", SE0 = "records", AE0 = "pattern_matching", IE0 = "enums", PE0 = "components", CE0 = "Internal error: ", NE0 = [t1, "CamlinternalLazy.Undefined", js6(0)];
57948
+ var KV = "Array.sub", HV = "first domain already spawned", WV = [0, "camlinternalOO.ml", BF, 50], VV = [0, WM, 72, 5], $V = [0, WM, 81, 2], QV = "/tmp", ZV = ln4, x$ = [0, "src/wtf8.ml", 65, 9], r$ = [0, "src/third-party/sedlex/flow_sedlexing.ml", jS, 4], e$ = "Flow_sedlexing.MalFormed", t$ = O6, n$ = H32, u$ = K32, i$ = H62, f$ = $v, c$ = [0, [12, 40, [18, [1, [0, [11, Li6, 0], Li6]], [11, "File_key.LibFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.LibFile@ "], s$ = [0, [3, 0, 0], C6], a$ = [0, [17, 0, [12, 41, 0]], ck], o$ = [0, [12, 40, [18, [1, [0, [11, Li6, 0], Li6]], [11, "File_key.SourceFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.SourceFile@ "], v$ = [0, [3, 0, 0], C6], l$ = [0, [17, 0, [12, 41, 0]], ck], p$ = [0, [12, 40, [18, [1, [0, [11, Li6, 0], Li6]], [11, "File_key.JsonFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.JsonFile@ "], k$ = [0, [3, 0, 0], C6], m$ = [0, [17, 0, [12, 41, 0]], ck], h$ = [0, [12, 40, [18, [1, [0, [11, Li6, 0], Li6]], [11, "File_key.ResourceFile", [17, [0, Eo3, 1, 0], 0]]]], "(@[<2>File_key.ResourceFile@ "], d$ = [0, [3, 0, 0], C6], y$ = [0, [17, 0, [12, 41, 0]], ck], _$ = [0, 1], w$ = [0, 0], g$ = [0, 1], b$ = [0, 2], T$ = [0, 2], E$ = [0, 0], S$ = [0, 1], A$ = [0, 1], I$ = [0, 1], P$ = [0, 1], C$ = [0, 2], N$ = [0, 1], O$ = [0, 1], j$ = [0, 0, 0], D$ = [0, 0, 0], R$ = [0, ss5, fi6, _c2, Ni6, di6, Cs4, mf, si6, sf, z7, eu2, zc2, _u2, e7, Ve7, bs5, Mc2, W72, hf, Ff, Es4, Xi6, Z7, Ii6, lc2, I7, Ec2, O7, of, Fu2, tu2, Ku2, jc2, hi6, m7, pf, Ic2, Vf, gs5, wc2, ys5, St8, V7, Mf2, $f2, lf, Ji6, ti6, l7, f7, Ac2, Lf, vi6, Hi6, rs5, Vc2, U7, Au2, fu2, Kn4, Ou2, bu2, ai6, Ui6, Si6, ji6, es5, Af, pu2, Ki6, qi6, X72, Lu2, Zu2, ms5, Wf, o7, Ge7, r7, Qi6, x7, Gf, dc2, D7, qc2, G1, ff, $n3, Oc2, E7, Nf, Tc2, g7, kc2, su2, P7, tf, Gc2, Yn3, Mu2, a7, Eu2, vc2, j7, _i6, T7, $22, Pi6, ou2, d7, w7, Ri6, wu2, ki6, Ci6, Q7, Rc2, Wu2, Oi6, ic2, be6, v7, vu2, H22, Hn4, Uc2, zi6, xf2, Du2, $c2, xc2, Yc2, If2, ls5, Gi6, Ef, yu2, $u2, pc2, du2, Xf, Pu2, oc2, xi6, Cc2, Hc2, Nc2, Wn3, yf, Bc2, bi6, mi6, Uf, Ps6, Hf, qf, _f2, ii6, Qu2, Uu2, Rf2, B7, is5, ws5, y7, oi6, S7, ru2, bc2, H7, Hu2, xu2, Sc2, u7, Ei6, Pf2, yi5, Jn3, L7, ps5, Y7, Tf, gc2, Xu2, W22, Je7, F7, J72, Jc2, jf, He7, Ke7, n7, cs5, Vu2, p7, ds5, ge6, iu2, As5, Bf, cc2, sc2, Un3, cu2, Mi5, Ru2, hu2, Ts4, q72, fs24, fc2, Qn3, Vi6, uc2, qu2, Xc2, A7, ns5, ni6, lu2, Xn4, Df2, Pc2, Fc2, ac2, kf2, M7, Vn3, ui6, wi6, uu2, c7, gi6, G7, zn4, Bi6, ju2, Sf, i7, _7, Gn4, Qf, Su2, zu2, zf, ei6, Cu2, vf2, nf, Zf, tn4, h7, Ju2, li6, Zn4, qn4, Bu2, Di6, ri6, ku2, Zi6, Zc2, Yu2, C7, gu2, Jf, cf, s7, Tu2, df, K7, Bn3, Ti6, R7, t24, Ai6, uf, ts5, hs5, Iu2, wf, k7, Xe6, gf, _s5, af, Yi6, hc2, yc2, Wi6, Qc2, vs6, Is6, Fi6, bf, os7, rc2, vn3, as5, Gu2, Dc2, Kf, nc2, us5, pi6, ci6, Yf, We7, Lc2, ae4, N7, rf, $i6, mu2, Of, b7, Wc2, au2, t72, Kc2], F$ = [0, H22, of, $i6, V7, $22, qf, h7, pc2, bc2, Rf2, Gi6, Du2, Fi6, hu2, F7, d7, Qu2, Uf, J72, ui6, cf, X72, Zn4, Zf, _u2, vu2, $n3, ac2, Ps6, oc2, _f2, Sf, Es4, Uc2, jc2, Q7, He7, t72, Wi6, s7, Qc2, Bi6, ic2, rs5, Ve7, Jc2, Uu2, fu2, k7, ss5, ii6, lu2, T7, Je7, ci6, w7, Of, qu2, fc2, Ku2, pi6, q72, a7, If2, _7, fs24, Ge7, Lf, Pi6, Zu2, M7, pu2, xf2, af, P7, $f2, au2, Fc2, Zi6, m7, Bn3, jf, Fu2, Y7, bi6, $c2, Ai6, Eu2, ge6, es5, x7, rc2, Vu2, bs5, Wn3, e7, o7, Kf, Pc2, Vn3, r7, Xi6, Qf, kf2, Lu2, sf, Xn4, Vc2, zu2, ni6, Oi6, Hu2, $u2, si6, n7, Ii6, Zc2, Ui6, ys5, Gf, Kc2, Xu2, Mu2, Ei6, Cc2, wu2, Kn4, hs5, df, W72, Ki6, uc2, hf, Nf, uu2, du2, E7, ps5, L7, mf, gu2, Au2, Cu2, Yc2, su2, os7, N7, oi6, G1, g7, Hn4, Bc2, ai6, pf, ku2, xu2, Tf, Jf, ms5, Tc2, Dc2, z7, dc2, Bu2, zf, f7, D7, Z7, Xf, I7, ds5, fi6, Mi5, Di6, Rc2, zn4, Yu2, xi6, eu2, vf2, ae4, lc2, is5, cc2, Ou2, Df2, as5, Vi6, Gn4, W22, Ri6, U7, cs5, St8, Ni6, qc2, gs5, tu2, i7, vi6, Ru2, di6, Qi6, S7, kc2, _c2, ti6, cu2, gf, nc2, As5, Iu2, wf, Qn3, vs6, Ci6, hi6, Hi6, ws5, bf, v7, b7, Mf2, mi6, C7, Nc2, ts5, p7, t24, Un3, Mc2, yf, Is6, A7, Yn3, Yi6, Ac2, Yf, Xc2, Oc2, Ts4, O7, Hc2, Bf, wc2, Ec2, bu2, ju2, j7, be6, nf, Ju2, qn4, hc2, Ic2, wi6, Gc2, gi6, lf, yu2, zi6, ou2, xc2, us5, Ke7, Xe6, rf, ff, ri6, Wc2, ns5, K7, mu2, Vf, Sc2, _s5, Jn3, gc2, qi6, Hf, ru2, uf, H7, yc2, Ef, ji6, y7, sc2, Wf, B7, ei6, Si6, yi5, Wu2, Ff, Gu2, Su2, Pf2, c7, li6, l7, Ji6, _i6, Cs4, We7, iu2, zc2, vn3, G7, R7, ki6, ls5, u7, Tu2, Pu2, Ti6, Lc2, tf, vc2, tn4, Af], M$ = GM, L$ = $F, q$ = SF, B$ = OD, U$ = Qy, X$ = QL, G$ = F6, Y$ = WD, z$ = YF, J$ = CF, K$ = yD2, H$ = $7, W$ = ze6, V$ = _R, $$ = pF, Q$ = se6, Z$ = HL, xQ = wR, rQ = _k, eQ = Qm2, tQ = bo3, nQ = I6, uQ = kM, iQ = YD, fQ = IR, cQ = RR, sQ = PF, aQ = qD, oQ = GD, vQ = hL, lQ = TR, pQ = vM, kQ = bF, mQ = yo3, hQ = fF, dQ = $L, yQ = eF, _Q = g6, wQ = cl2, gQ = No3, bQ = [0, [18, [1, [0, [11, Li6, 0], Li6]], [11, "{ ", 0]], "@[<2>{ "], TQ = "Loc.line", EQ = [0, [18, [1, [0, 0, rx]], [2, 0, [11, GR, [17, [0, Eo3, 1, 0], 0]]]], yF], SQ = [0, [4, 0, 0, 0, 0], al2], AQ = [0, [17, 0, 0], iI], IQ = [0, [12, 59, [17, [0, Eo3, 1, 0], 0]], ";@ "], PQ = G6, CQ = [0, [18, [1, [0, 0, rx]], [2, 0, [11, GR, [17, [0, Eo3, 1, 0], 0]]]], yF], NQ = [0, [4, 0, 0, 0, 0], al2], OQ = [0, [17, 0, 0], iI], jQ = [0, [17, [0, Eo3, 1, 0], [12, So3, [17, 0, 0]]], "@ }@]"], DQ = rx, RQ = "Object literal may not have data and accessor property with the same name", FQ = "Object literal may not have multiple get/set accessors with the same name", MQ = "Unexpected token <. Remember, adjacent JSX elements must be wrapped in an enclosing parent tag", LQ = "`let [` is ambiguous in this position because it is either a `let` binding pattern, or a member expression.", qQ = "Async functions can only be declared at top level or immediately within another function.", BQ = "`await` is an invalid identifier in async functions", UQ = "`await` is not allowed in async function parameters.", XQ = "Computed properties must have a value.", GQ = "Constructor can't be an accessor.", YQ = "Constructor can't be an async function.", zQ = "Constructor can't be a generator.", JQ = "It is sufficient for your declare function to just have a Promise return type.", KQ = "async is an implementation detail and isn't necessary for your declare function statement. ", HQ = "`declare` modifier can only appear on class fields.", WQ = "Unexpected token `=`. Initializers are not allowed in a `declare`.", VQ = "Unexpected token `=`. Initializers are not allowed in a `declare opaque type`.", $Q = "Classes may only have one constructor", QQ = "Rest element must be final element of an array pattern", ZQ = "Cannot export an enum with `export type`, try `export enum E {}` or `module.exports = E;` instead.", xZ = "Enum members are separated with `,`. Replace `;` with `,`.", rZ = "`const` enums are not supported. Flow Enums are designed to allow for inlining, however the inlining itself needs to be part of the build system (whatever you use) rather than Flow itself.", eZ = "Expected an object pattern, array pattern, or an identifier but found an expression instead", tZ = "Missing comma between export specifiers", nZ = "Generators can only be declared at top level or immediately within another function.", uZ = "Getter should have zero parameters", iZ = "A getter cannot have a `this` parameter.", fZ = "Illegal continue statement", cZ = "Illegal return statement", sZ = "Illegal Unicode escape", aZ = "Missing comma between import specifiers", oZ = "It cannot be used with `import type` or `import typeof` statements", vZ = "The `type` and `typeof` keywords on named imports can only be used on regular `import` statements. ", lZ = "Explicit inexact syntax cannot appear inside an explicit exact object type", pZ = "Explicit inexact syntax can only appear inside an object type", kZ = "Component params must be an identifier. If you'd like to destructure, you should use `name as {destructure}`", mZ = "A bigint literal must be an integer", hZ = "JSX value should be either an expression or a quoted JSX text", dZ = "Invalid left-hand side in assignment", yZ = "Invalid left-hand side in exponentiation expression", _Z = "Invalid left-hand side in for-in", wZ = "Invalid left-hand side in for-of", gZ = "Invalid optional indexed access. Indexed access uses bracket notation. Use the format `T?.[K]`.", bZ = "Invalid regular expression", TZ = "A bigint literal cannot use exponential notation", EZ = "Tuple spread elements cannot be optional.", SZ = "Tuple variance annotations can only be used with labeled tuple elements, e.g. `[+foo: number]`", AZ = "`typeof` can only be used to get the type of variables.", IZ = "JSX attributes must only be assigned a non-empty expression", PZ = "Literals cannot be used as shorthand properties.", CZ = "Malformed unicode", NZ = "`match` argument must not be empty", OZ = "`match` argument cannot contain spread elements", jZ = "`await` is not yet supported in `match` expressions", DZ = "`yield` is not yet supported in `match` expressions", RZ = "Object pattern can't contain methods", FZ = "Expected at least one type parameter.", MZ = "Type parameter declaration needs a default, since a preceding type parameter declaration has a default.", LZ = "More than one default clause in switch statement", qZ = "Illegal newline after throw", BZ = "Illegal newline before arrow", UZ = "Missing catch or finally after try", XZ = "Const must be initialized", GZ = "Destructuring assignment must be initialized", YZ = "An optional chain may not be used in a `new` expression.", zZ = "Template literals may not be used in an optional chain.", JZ = "Rest parameter must be final parameter of an argument list", KZ = "Private fields may not be deleted.", HZ = "Private fields can only be referenced from within a class.", WZ = "Rest property must be final property of an object pattern", VZ = "Records to not support private elements. Remove the `#`.", $Z = "Setter should have exactly one parameter", QZ = "A setter cannot have a `this` parameter.", ZZ = "Catch variable may not be eval or arguments in strict mode", x00 = "Delete of an unqualified identifier in strict mode.", r00 = "Duplicate data property in object literal not allowed in strict mode", e00 = "Function name may not be eval or arguments in strict mode", t00 = "Assignment to eval or arguments is not allowed in strict mode", n00 = "Postfix increment/decrement may not have eval or arguments operand in strict mode", u00 = "Prefix increment/decrement may not have eval or arguments operand in strict mode", i00 = "Strict mode code may not include a with statement", f00 = "Number literals with leading zeros are not allowed in strict mode.", c00 = "Octal literals are not allowed in strict mode.", s00 = "Strict mode function may not have duplicate parameter names", a00 = "Parameter name eval or arguments is not allowed in strict mode", o00 = 'Illegal "use strict" directive in function with non-simple parameter list', v00 = "Use of reserved word in strict mode", l00 = "Variable name may not be eval or arguments in strict mode", p00 = "You may not access a private field through the `super` keyword.", k00 = "Flow does not support abstract classes.", m00 = "Flow does not support template literal types.", h00 = "A type annotation is required for the `this` parameter.", d00 = "Arrow functions cannot have a `this` parameter; arrow functions automatically bind `this` when declared.", y00 = "Constructors cannot have a `this` parameter; constructors don't bind `this` like other functions.", _00 = "The `this` parameter cannot be optional.", w00 = "The `this` parameter must be the first function parameter.", g00 = "A trailing comma is not permitted after the rest element", b00 = "Unexpected end of input", T00 = "Explicit inexact syntax must come at the end of an object type", E00 = "Opaque type aliases are not allowed in untyped mode", S00 = "Unexpected proto modifier", A00 = "Unexpected reserved word", I00 = "Unexpected reserved type", P00 = "Spreading a type is only allowed inside an object type", C00 = "Unexpected static modifier", N00 = "Unexpected `super` outside of a class method", O00 = "`super()` is only valid in a class constructor", j00 = "Type aliases are not allowed in untyped mode", D00 = "Type annotations are not allowed in untyped mode", R00 = "Type declarations are not allowed in untyped mode", F00 = "Type exports are not allowed in untyped mode", M00 = "Type imports are not allowed in untyped mode", L00 = "Interfaces are not allowed in untyped mode", q00 = "Unexpected variance sigil", B00 = "Found a decorator in an unsupported position.", U00 = "Invalid regular expression: missing /", X00 = "Unexpected whitespace between `#` and identifier", G00 = "`yield` is an invalid identifier in generators", Y00 = "Yield expression not allowed in formal parameter", z00 = [0, [11, "Duplicate export for `", [2, 0, [12, 96, 0]]], "Duplicate export for `%s`"], J00 = [0, [11, "Private fields may only be declared once. `#", [2, 0, [11, "` is declared more than once.", 0]]], "Private fields may only be declared once. `#%s` is declared more than once."], K00 = [0, [11, "bigint enum members need to be initialized, e.g. `", [2, 0, [11, " = 1n,` in enum `", [2, 0, [11, nu2, 0]]]]], "bigint enum members need to be initialized, e.g. `%s = 1n,` in enum `%s`."], H00 = [0, [11, "Boolean enum members need to be initialized. Use either `", [2, 0, [11, " = true,` or `", [2, 0, [11, " = false,` in enum `", [2, 0, [11, nu2, 0]]]]]]], "Boolean enum members need to be initialized. Use either `%s = true,` or `%s = false,` in enum `%s`."], W00 = [0, [11, "Enum member names need to be unique, but the name `", [2, 0, [11, "` has already been used before in enum `", [2, 0, [11, nu2, 0]]]]], "Enum member names need to be unique, but the name `%s` has already been used before in enum `%s`."], V00 = [0, [11, WR, [2, 0, [11, "` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers.", 0]]], "Enum `%s` has inconsistent member initializers. Either use no initializers, or consistently use literals (either booleans, numbers, or strings) for all member initializers."], $00 = "The `...` must come at the end of the enum body. Remove the trailing comma.", Q00 = "The `...` must come after all enum members. Move it to the end of the enum body.", Z00 = [0, [11, "Use one of `boolean`, `number`, `string`, `symbol`, or `bigint` in enum `", [2, 0, [11, nu2, 0]]], "Use one of `boolean`, `number`, `string`, `symbol`, or `bigint` in enum `%s`."], xx0 = [0, [11, "Enum type `", [2, 0, [11, "` is not valid. ", [2, 0, 0]]]], "Enum type `%s` is not valid. %s"], rx0 = [0, [11, "Supplied enum type is not valid. ", [2, 0, 0]], "Supplied enum type is not valid. %s"], ex0 = [0, [11, "Enum member names and initializers are separated with `=`. Replace `", [2, 0, [11, ":` with `", [2, 0, [11, " =`.", 0]]]]], "Enum member names and initializers are separated with `=`. Replace `%s:` with `%s =`."], tx0 = [0, [11, WR, [2, 0, [11, "` has type `", [2, 0, [11, "`, so the initializer of `", [2, 0, [11, "` needs to be a ", [2, 0, [11, " literal.", 0]]]]]]]]], "Enum `%s` has type `%s`, so the initializer of `%s` needs to be a %s literal."], nx0 = [0, [11, "Symbol enum members cannot be initialized. Use `", [2, 0, [11, ",` in enum `", [2, 0, [11, nu2, 0]]]]], "Symbol enum members cannot be initialized. Use `%s,` in enum `%s`."], ux0 = [0, [11, "The enum member initializer for `", [2, 0, [11, "` needs to be a literal (either a boolean, number, or string) in enum `", [2, 0, [11, nu2, 0]]]]], "The enum member initializer for `%s` needs to be a literal (either a boolean, number, or string) in enum `%s`."], ix0 = [0, [11, "Enum member names cannot start with lowercase 'a' through 'z'. Instead of using `", [2, 0, [11, "`, consider using `", [2, 0, [11, "`, in enum `", [2, 0, [11, nu2, 0]]]]]]], "Enum member names cannot start with lowercase 'a' through 'z'. Instead of using `%s`, consider using `%s`, in enum `%s`."], fx0 = [0, [11, "Number enum members need to be initialized, e.g. `", [2, 0, [11, " = 1,` in enum `", [2, 0, [11, nu2, 0]]]]], "Number enum members need to be initialized, e.g. `%s = 1,` in enum `%s`."], cx0 = [0, [11, "String enum members need to consistently either all use initializers, or use no initializers, in enum ", [2, 0, [12, 46, 0]]], "String enum members need to consistently either all use initializers, or use no initializers, in enum %s."], sx0 = [0, [11, "Expected corresponding JSX closing tag for ", [2, 0, 0]], "Expected corresponding JSX closing tag for %s"], ax0 = "immediately within another function.", ox0 = "In strict mode code, functions can only be declared at top level or ", vx0 = "inside a block, or as the body of an if statement.", lx0 = "In non-strict mode code, functions can only be declared at top level, ", px0 = " `break` statements are not required in `match` statements, as unlike `switch` statements, `match` statement cases do not fall-through by default.", kx0 = rx, mx0 = [0, [11, "Illegal break statement.", [2, 0, 0]], "Illegal break statement.%s"], hx0 = zM, dx0 = rx, yx0 = XM, _x0 = DF, wx0 = DM, gx0 = [0, [11, "Classes may not have ", [2, 0, [2, 0, [11, DD2, [2, 0, [11, nu2, 0]]]]]], "Classes may not have %s%s named `%s`."], bx0 = "Components use `renders` instead of `:` to annotate the render type of a component.", Tx0 = uM, Ex0 = rx, Sx0 = [0, [11, "String params require local bindings using `as` renaming. You can use `'", [2, 0, [11, "' as ", [2, 0, [2, 0, [11, ": <TYPE>` ", 0]]]]]], "String params require local bindings using `as` renaming. You can use `'%s' as %s%s: <TYPE>` "], Ax0 = "Remove the period.", Ix0 = "Indexed access uses bracket notation.", Px0 = [0, [11, "Invalid indexed access. ", [2, 0, [11, " Use the format `T[K]`.", 0]]], "Invalid indexed access. %s Use the format `T[K]`."], Cx0 = [0, [11, "Invalid flags supplied to RegExp constructor '", [2, 0, [12, 39, 0]]], "Invalid flags supplied to RegExp constructor '%s'"], Nx0 = tn4, Ox0 = Dp2, jx0 = [0, [11, "In match ", [2, 0, [11, " pattern, the rest must be the last element in the pattern", 0]]], "In match %s pattern, the rest must be the last element in the pattern"], Dx0 = [0, [11, "JSX element ", [2, 0, [11, " has no corresponding closing tag.", 0]]], "JSX element %s has no corresponding closing tag."], Rx0 = [0, [11, tM, [2, 0, [11, "`. Parentheses are required to combine `??` with `&&` or `||` expressions.", 0]]], "Unexpected token `%s`. Parentheses are required to combine `??` with `&&` or `||` expressions."], Fx0 = zM, Mx0 = rx, Lx0 = XM, qx0 = A6, Bx0 = [0, [11, "Records may not have ", [2, 0, [2, 0, [11, DD2, [2, 0, [11, nu2, 0]]]]]], "Records may not have %s%s named `%s`."], Ux0 = [0, [2, 0, [11, " '", [2, 0, [11, "' has already been declared", 0]]]], "%s '%s' has already been declared"], Xx0 = rx, Gx0 = k6, Yx0 = " You can try using JavaScript private fields by prepending `#` to the field name.", zx0 = Q62, Jx0 = " Fields and methods are public by default. You can simply omit the `public` keyword.", Kx0 = W62, Hx0 = [0, [11, "Flow does not support using `", [2, 0, [11, "` in classes.", [2, 0, 0]]]], "Flow does not support using `%s` in classes.%s"], Wx0 = [0, [11, "Private fields must be declared before they can be referenced. `#", [2, 0, [11, "` has not been declared.", 0]]], "Private fields must be declared before they can be referenced. `#%s` has not been declared."], Vx0 = [0, [11, xM, [2, 0, 0]], "Unexpected %s"], $x0 = [0, [11, tM, [2, 0, [11, "`. Did you mean `", [2, 0, [11, "`?", 0]]]]], "Unexpected token `%s`. Did you mean `%s`?"], Qx0 = [0, [11, xM, [2, 0, [11, ", expected ", [2, 0, 0]]]], "Unexpected %s, expected %s"], Zx0 = [0, [11, "Undefined label '", [2, 0, [12, 39, 0]]], "Undefined label '%s'"], xr0 = "Parse_error.Error", rr0 = [0, [0, 36, 37], [0, 48, 58], [0, 65, 91], [0, 95, 96], [0, 97, un4], [0, py, Sg], [0, NS, s9], [0, j_, Wm2], [0, xI, z_], [0, Y32, lk], [0, ty, Gp2], [0, t1, 706], [0, CD2, 722], [0, 736, 741], [0, 748, 749], [0, 750, 751], [0, 768, 885], [0, 886, 888], [0, 890, 894], [0, 895, 896], [0, 902, 907], [0, 908, 909], [0, 910, 930], [0, jM, 1014], [0, 1015, 1154], [0, 1155, 1160], [0, 1162, 1328], [0, 1329, 1367], [0, 1369, 1370], [0, 1376, 1417], [0, 1425, 1470], [0, 1471, 1472], [0, 1473, 1475], [0, 1476, 1478], [0, 1479, 1480], [0, 1488, 1515], [0, 1519, 1523], [0, 1552, 1563], [0, 1568, 1642], [0, 1646, 1748], [0, 1749, 1757], [0, 1759, 1769], [0, 1770, 1789], [0, 1791, 1792], [0, 1808, 1867], [0, 1869, 1970], [0, 1984, 2038], [0, 2042, 2043], [0, 2045, 2046], [0, Gg, 2094], [0, 2112, 2140], [0, 2144, 2155], [0, 2208, 2229], [0, 2230, 2238], [0, 2259, 2274], [0, 2275, 2404], [0, 2406, 2416], [0, 2417, 2436], [0, 2437, 2445], [0, 2447, 2449], [0, 2451, 2473], [0, 2474, 2481], [0, 2482, 2483], [0, 2486, 2490], [0, 2492, 2501], [0, 2503, 2505], [0, 2507, 2511], [0, 2519, 2520], [0, 2524, 2526], [0, 2527, 2532], [0, 2534, 2546], [0, 2556, 2557], [0, 2558, 2559], [0, 2561, 2564], [0, 2565, 2571], [0, 2575, 2577], [0, 2579, 2601], [0, 2602, 2609], [0, 2610, 2612], [0, 2613, 2615], [0, 2616, 2618], [0, 2620, 2621], [0, 2622, 2627], [0, 2631, 2633], [0, 2635, 2638], [0, 2641, 2642], [0, 2649, 2653], [0, 2654, 2655], [0, 2662, 2678], [0, 2689, 2692], [0, 2693, 2702], [0, 2703, 2706], [0, 2707, 2729], [0, 2730, 2737], [0, 2738, 2740], [0, 2741, 2746], [0, 2748, 2758], [0, 2759, 2762], [0, 2763, 2766], [0, 2768, 2769], [0, 2784, 2788], [0, 2790, 2800], [0, 2809, 2816], [0, 2817, 2820], [0, 2821, 2829], [0, 2831, 2833], [0, 2835, 2857], [0, 2858, 2865], [0, 2866, 2868], [0, 2869, 2874], [0, 2876, 2885], [0, 2887, 2889], [0, 2891, 2894], [0, 2902, 2904], [0, 2908, 2910], [0, 2911, 2916], [0, 2918, 2928], [0, 2929, 2930], [0, 2946, 2948], [0, 2949, 2955], [0, 2958, 2961], [0, 2962, 2966], [0, 2969, 2971], [0, 2972, 2973], [0, 2974, 2976], [0, 2979, 2981], [0, 2984, 2987], [0, 2990, 3002], [0, 3006, 3011], [0, 3014, 3017], [0, 3018, 3022], [0, 3024, 3025], [0, 3031, 3032], [0, 3046, 3056], [0, 3072, 3085], [0, 3086, 3089], [0, 3090, 3113], [0, 3114, 3130], [0, 3133, 3141], [0, 3142, 3145], [0, 3146, 3150], [0, 3157, 3159], [0, 3160, 3163], [0, 3168, 3172], [0, 3174, 3184], [0, 3200, 3204], [0, 3205, 3213], [0, 3214, 3217], [0, 3218, 3241], [0, 3242, 3252], [0, 3253, 3258], [0, 3260, 3269], [0, 3270, 3273], [0, 3274, 3278], [0, 3285, 3287], [0, 3294, 3295], [0, 3296, 3300], [0, 3302, 3312], [0, 3313, 3315], [0, 3328, 3332], [0, 3333, 3341], [0, 3342, 3345], [0, 3346, 3397], [0, 3398, 3401], [0, 3402, 3407], [0, 3412, 3416], [0, 3423, 3428], [0, 3430, 3440], [0, 3450, 3456], [0, 3458, 3460], [0, 3461, 3479], [0, 3482, 3506], [0, 3507, 3516], [0, 3517, 3518], [0, 3520, 3527], [0, 3530, 3531], [0, 3535, 3541], [0, 3542, 3543], [0, 3544, 3552], [0, 3558, 3568], [0, 3570, 3572], [0, 3585, 3643], [0, 3648, 3663], [0, 3664, 3674], [0, 3713, 3715], [0, 3716, 3717], [0, 3718, 3723], [0, 3724, 3748], [0, 3749, 3750], [0, 3751, 3774], [0, 3776, 3781], [0, 3782, 3783], [0, 3784, 3790], [0, 3792, 3802], [0, 3804, 3808], [0, 3840, 3841], [0, 3864, 3866], [0, 3872, 3882], [0, 3893, 3894], [0, 3895, 3896], [0, 3897, 3898], [0, 3902, 3912], [0, 3913, 3949], [0, 3953, 3973], [0, 3974, 3992], [0, 3993, 4029], [0, 4038, 4039], [0, NF, 4170], [0, 4176, 4254], [0, 4256, 4294], [0, 4295, 4296], [0, 4301, 4302], [0, 4304, 4347], [0, 4348, 4681], [0, 4682, 4686], [0, 4688, 4695], [0, 4696, 4697], [0, 4698, 4702], [0, 4704, 4745], [0, 4746, 4750], [0, 4752, 4785], [0, 4786, 4790], [0, 4792, 4799], [0, 4800, 4801], [0, 4802, 4806], [0, 4808, 4823], [0, 4824, 4881], [0, 4882, 4886], [0, 4888, 4955], [0, 4957, 4960], [0, 4969, 4978], [0, 4992, 5008], [0, 5024, 5110], [0, 5112, 5118], [0, 5121, 5741], [0, 5743, nC], [0, 5761, 5787], [0, 5792, 5867], [0, 5870, 5881], [0, 5888, 5901], [0, 5902, 5909], [0, 5920, 5941], [0, 5952, 5972], [0, 5984, 5997], [0, 5998, 6001], [0, 6002, 6004], [0, 6016, 6100], [0, 6103, 6104], [0, 6108, 6110], [0, 6112, 6122], [0, 6155, 6158], [0, 6160, 6170], [0, 6176, 6265], [0, 6272, 6315], [0, 6320, 6390], [0, 6400, 6431], [0, 6432, 6444], [0, 6448, 6460], [0, 6470, 6510], [0, 6512, 6517], [0, 6528, 6572], [0, 6576, 6602], [0, 6608, 6619], [0, 6656, 6684], [0, 6688, 6751], [0, 6752, 6781], [0, 6783, 6794], [0, 6800, 6810], [0, 6823, 6824], [0, 6832, 6846], [0, 6912, 6988], [0, 6992, 7002], [0, 7019, 7028], [0, 7040, 7156], [0, 7168, 7224], [0, 7232, 7242], [0, 7245, 7294], [0, 7296, 7305], [0, 7312, 7355], [0, 7357, 7360], [0, 7376, 7379], [0, 7380, 7419], [0, 7424, 7674], [0, 7675, 7958], [0, 7960, 7966], [0, 7968, 8006], [0, 8008, 8014], [0, 8016, 8024], [0, 8025, 8026], [0, 8027, 8028], [0, 8029, 8030], [0, 8031, 8062], [0, 8064, 8117], [0, 8118, 8125], [0, 8126, 8127], [0, 8130, 8133], [0, 8134, 8141], [0, 8144, 8148], [0, 8150, 8156], [0, 8160, 8173], [0, 8178, 8181], [0, 8182, 8189], [0, tR, NM], [0, 8255, 8257], [0, 8276, 8277], [0, F8, 8306], [0, f8, 8320], [0, 8336, 8349], [0, 8400, 8413], [0, 8417, 8418], [0, 8421, 8433], [0, dm2, 8451], [0, Gm2, 8456], [0, 8458, tk], [0, dk, 8470], [0, sM, 8478], [0, _8, Jm2], [0, th, gk], [0, Ik, Hm2], [0, 8490, 8506], [0, 8508, 8512], [0, 8517, 8522], [0, Lk, 8527], [0, 8544, 8585], [0, 11264, 11311], [0, 11312, 11359], [0, 11360, 11493], [0, 11499, 11508], [0, 11520, om2], [0, gp2, 11560], [0, Fm2, 11566], [0, 11568, 11624], [0, u8, 11632], [0, ak, 11671], [0, 11680, lm2], [0, 11688, km2], [0, 11696, bp2], [0, 11704, Uk], [0, 11712, z8], [0, 11720, Ip2], [0, 11728, sh], [0, 11736, 11743], [0, 11744, 11776], [0, 12293, 12296], [0, 12321, uh], [0, 12337, 12342], [0, 12344, 12349], [0, 12353, 12439], [0, 12441, X8], [0, 12449, _h], [0, 12540, 12544], [0, 12549, Ym2], [0, 12593, 12687], [0, 12704, 12731], [0, 12784, 12800], [0, 13312, 19894], [0, 19968, 40944], [0, 40960, 42125], [0, 42192, 42238], [0, 42240, 42509], [0, 42512, 42540], [0, 42560, 42608], [0, 42612, ek], [0, 42623, 42738], [0, 42775, 42784], [0, 42786, 42889], [0, 42891, 42944], [0, 42946, 42951], [0, l8, 43048], [0, 43072, 43124], [0, 43136, 43206], [0, 43216, 43226], [0, 43232, 43256], [0, $k, Yk], [0, 43261, 43310], [0, 43312, 43348], [0, 43360, 43389], [0, 43392, 43457], [0, W8, 43482], [0, 43488, Bp2], [0, aF, 43575], [0, 43584, 43598], [0, 43600, 43610], [0, 43616, 43639], [0, fm2, 43715], [0, 43739, 43742], [0, 43744, 43760], [0, 43762, 43767], [0, 43777, 43783], [0, 43785, 43791], [0, 43793, 43799], [0, 43808, wm2], [0, 43816, p8], [0, 43824, Q8], [0, 43868, Np2], [0, 43888, 44011], [0, 44012, 44014], [0, 44016, 44026], [0, 44032, 55204], [0, 55216, 55239], [0, 55243, 55292], [0, 63744, 64110], [0, 64112, 64218], [0, 64256, 64263], [0, 64275, 64280], [0, Wk, qp2], [0, 64298, b8], [0, 64312, ym2], [0, Qk, pk], [0, 64320, ih], [0, 64323, Th], [0, 64326, 64434], [0, 64467, 64830], [0, 64848, 64912], [0, 64914, 64968], [0, 65008, 65020], [0, 65024, 65040], [0, 65056, 65072], [0, 65075, 65077], [0, 65101, 65104], [0, 65136, $m2], [0, 65142, 65277], [0, 65296, 65306], [0, 65313, 65339], [0, 65343, pm2], [0, 65345, 65371], [0, 65382, 65471], [0, 65474, 65480], [0, 65482, 65488], [0, 65490, 65496], [0, 65498, 65501], [0, Y6, lh], [0, 65549, Z8], [0, 65576, Ek], [0, 65596, Ak], [0, 65599, 65614], [0, 65616, 65630], [0, 65664, 65787], [0, 65856, 65909], [0, 66045, 66046], [0, 66176, 66205], [0, 66208, 66257], [0, 66272, 66273], [0, 66304, 66336], [0, 66349, 66379], [0, 66384, 66427], [0, 66432, 66462], [0, 66464, 66500], [0, 66504, ah], [0, 66513, 66518], [0, 66560, 66718], [0, 66720, 66730], [0, 66736, 66772], [0, 66776, 66812], [0, 66816, 66856], [0, 66864, 66916], [0, 67072, 67383], [0, 67392, 67414], [0, 67424, 67432], [0, 67584, 67590], [0, vk, x8], [0, 67594, oh], [0, 67639, 67641], [0, $8, 67645], [0, 67647, 67670], [0, 67680, 67703], [0, 67712, 67743], [0, 67808, Hp2], [0, 67828, 67830], [0, 67840, 67862], [0, 67872, 67898], [0, 67968, 68024], [0, 68030, 68032], [0, ph, 68100], [0, 68101, 68103], [0, 68108, Xk], [0, 68117, V8], [0, 68121, 68150], [0, 68152, 68155], [0, 68159, 68160], [0, 68192, 68221], [0, 68224, 68253], [0, 68288, D8], [0, 68297, 68327], [0, 68352, 68406], [0, 68416, 68438], [0, 68448, 68467], [0, 68480, 68498], [0, 68608, 68681], [0, 68736, 68787], [0, 68800, 68851], [0, 68864, 68904], [0, 68912, 68922], [0, 69376, 69405], [0, qm2, 69416], [0, 69424, 69457], [0, 69600, 69623], [0, 69632, 69703], [0, 69734, nh], [0, 69759, 69819], [0, 69840, 69865], [0, 69872, 69882], [0, 69888, 69941], [0, 69942, 69952], [0, Up2, Dk], [0, 69968, 70004], [0, Km2, 70007], [0, 70016, 70085], [0, 70089, 70093], [0, 70096, Om2], [0, o8, 70109], [0, 70144, Nm2], [0, 70163, 70200], [0, 70206, 70207], [0, 70272, Pm2], [0, S8, Fk], [0, 70282, Cm2], [0, 70287, mm2], [0, 70303, 70313], [0, 70320, 70379], [0, 70384, 70394], [0, 70400, jp2], [0, 70405, 70413], [0, 70415, 70417], [0, 70419, Vm2], [0, 70442, Y8], [0, 70450, cm2], [0, 70453, 70458], [0, 70459, 70469], [0, 70471, 70473], [0, 70475, 70478], [0, Yp2, 70481], [0, 70487, 70488], [0, 70493, 70500], [0, 70502, 70509], [0, 70512, 70517], [0, 70656, 70731], [0, 70736, 70746], [0, uk, 70752], [0, 70784, Um2], [0, i8, 70856], [0, 70864, 70874], [0, 71040, 71094], [0, 71096, 71105], [0, 71128, 71134], [0, 71168, 71233], [0, a8, 71237], [0, 71248, 71258], [0, 71296, 71353], [0, 71360, 71370], [0, 71424, 71451], [0, 71453, 71468], [0, 71472, 71482], [0, 71680, 71739], [0, 71840, 71914], [0, 71935, 71936], [0, 72096, 72104], [0, 72106, 72152], [0, 72154, R8], [0, Xm2, 72165], [0, t82, 72255], [0, 72263, 72264], [0, qk, 72346], [0, k8, 72350], [0, 72384, 72441], [0, 72704, zm2], [0, 72714, 72759], [0, 72760, 72769], [0, 72784, 72794], [0, 72818, 72848], [0, 72850, 72872], [0, 72873, 72887], [0, 72960, d8], [0, 72968, ch], [0, 72971, 73015], [0, 73018, 73019], [0, 73020, 73022], [0, 73023, 73032], [0, 73040, 73050], [0, 73056, E8], [0, 73063, bm2], [0, 73066, 73103], [0, 73104, 73106], [0, 73107, 73113], [0, 73120, 73130], [0, 73440, 73463], [0, 73728, 74650], [0, 74752, 74863], [0, 74880, 75076], [0, 77824, 78895], [0, 82944, 83527], [0, 92160, 92729], [0, 92736, 92767], [0, 92768, 92778], [0, 92880, 92910], [0, 92912, 92917], [0, 92928, 92983], [0, 92992, 92996], [0, 93008, 93018], [0, 93027, 93048], [0, 93053, 93072], [0, 93760, 93824], [0, 93952, 94027], [0, gm2, 94088], [0, 94095, 94112], [0, 94176, mk], [0, Op2, 94180], [0, 94208, 100344], [0, 100352, 101107], [0, 110592, 110879], [0, 110928, 110931], [0, 110948, 110952], [0, 110960, 111356], [0, 113664, 113771], [0, 113776, 113789], [0, 113792, 113801], [0, 113808, 113818], [0, 113821, 113823], [0, 119141, 119146], [0, 119149, 119155], [0, 119163, 119171], [0, 119173, 119180], [0, 119210, 119214], [0, 119362, 119365], [0, 119808, Fp2], [0, 119894, jk], [0, 119966, 119968], [0, r8, 119971], [0, 119973, 119975], [0, 119977, Ah], [0, 119982, Sm2], [0, M8, xm2], [0, 119997, c8], [0, 120005, bh], [0, 120071, 120075], [0, 120077, sk], [0, 120086, Im2], [0, 120094, Xp2], [0, 120123, H8], [0, 120128, n8], [0, Jk, 120135], [0, 120138, eh], [0, 120146, 120486], [0, 120488, yk], [0, 120514, T8], [0, 120540, wh], [0, 120572, Rk], [0, 120598, C8], [0, 120630, Zp2], [0, 120656, w8], [0, 120688, zp2], [0, 120714, Cp2], [0, 120746, Nk], [0, 120772, 120780], [0, 120782, 120832], [0, 121344, 121399], [0, 121403, 121453], [0, 121461, 121462], [0, 121476, 121477], [0, 121499, 121504], [0, 121505, 121520], [0, 122880, 122887], [0, 122888, 122905], [0, 122907, 122914], [0, 122915, 122917], [0, 122918, 122923], [0, 123136, 123181], [0, 123184, 123198], [0, 123200, 123210], [0, Sp2, 123215], [0, 123584, 123642], [0, 124928, 125125], [0, 125136, 125143], [0, 125184, 125260], [0, 125264, 125274], [0, 126464, xk], [0, 126469, hm2], [0, 126497, yh], [0, Pp2, 126501], [0, Mm2, J8], [0, 126505, Ep2], [0, 126516, N8], [0, kh, tm2], [0, Vp2, 126524], [0, fh, 126531], [0, Eh, Qp2], [0, hh, vm2], [0, vh, Mp2], [0, 126541, Mk], [0, 126545, xh], [0, Dm2, 126549], [0, j8, $p2], [0, Zk, y8], [0, am2, rh], [0, ok, Jp2], [0, q8, Sk], [0, 126561, Wp2], [0, Zm2, 126565], [0, 126567, Rp2], [0, 126572, nk], [0, 126580, A8], [0, 126585, Vk], [0, O8, Bm2], [0, 126592, Kp2], [0, 126603, 126620], [0, 126625, P8], [0, 126629, m8], [0, 126635, 126652], [0, 131072, 173783], [0, 173824, 177973], [0, 177984, 178206], [0, 178208, 183970], [0, 183984, 191457], [0, 194560, 195102], [0, 917760, 918000]], er0 = [0, 1, 0], tr0 = [0, 0, [0, 1, 0], [0, 1, 0]], nr0 = sL, ur0 = "end of input", ir0 = U62, fr0 = "template literal part", cr0 = U62, sr0 = nD2, ar0 = sL, or0 = U62, vr0 = H32, lr0 = U62, pr0 = $v, kr0 = U62, mr0 = K32, hr0 = "an", dr0 = St8, yr0 = Nu2, _r0 = [0, [11, "token `", [2, 0, [12, 96, 0]]], "token `%s`"], wr0 = "{", gr0 = em2, br0 = "{|", Tr0 = "|}", Er0 = PM, Sr0 = iM, Ar0 = "[", Ir0 = "]", Pr0 = NT, Cr0 = JL, Nr0 = ln4, Or0 = "=>", jr0 = "...", Dr0 = _D, Rr0 = DM, Fr0 = $32, Mr0 = nm2, Lr0 = bo3, qr0 = I6, Br0 = Je7, Ur0 = Ve7, Xr0 = $P, Gr0 = DT, Yr0 = Bv, zr0 = He7, Jr0 = um2, Kr0 = g6, Hr0 = Tp2, Wr0 = L8, Vr0 = No3, $r0 = cl2, Qr0 = Hv, Zr0 = wa2, x10 = Pa2, r10 = We7, e10 = rk, t102 = Rm2, n10 = Xe6, u10 = Fv, i10 = Tk, f10 = U8, c10 = K8, s10 = h6, a10 = mc2, o10 = Ue5, v10 = Ck, l10 = Yv, p10 = E6, k10 = Aa2, m10 = ga, h10 = j6, d10 = dh, y10 = W22, _10 = fl2, w10 = Oo2, g10 = ae4, b10 = Pk, T10 = Q62, E10 = k6, S10 = W62, A10 = H22, I10 = Ke7, P10 = x42, C10 = tc2, N10 = zb, O10 = JS, j10 = Io3, D10 = Kv, R10 = "%checks", F10 = TR, M10 = hL, L10 = GD, q10 = bF, B10 = vM, U10 = yo3, X10 = qD, G10 = PF, Y10 = IR, z10 = RR, J10 = YD, K10 = kM, H10 = fF, W10 = $L, V10 = eF, $10 = p_, Q10 = "?.", Z10 = Dw, x20 = uM, r20 = Iv, e20 = LF2, t202 = CM, n20 = wR, u20 = _k, i20 = Qm2, f20 = GM, c20 = $F, s20 = SF, a20 = OD, o20 = QL, v20 = WD, l20 = Qy, p20 = F6, k20 = YF, m20 = CF, h20 = yD2, d20 = $7, y20 = ze6, _20 = se6, w20 = _R, g20 = pF, b20 = HL, T20 = SD, E20 = VL, S20 = ZM, A20 = kR, I20 = rx, P20 = ik, C20 = wk, N20 = be6, O20 = H32, j20 = $v, D20 = K32, R20 = ga, F20 = H62, M20 = hk, L20 = bk, q20 = Hk, B20 = Lm2, U20 = Xv, X20 = FD2, G20 = J62, Y20 = tl2, z20 = V32, J20 = jF, K20 = uF, H20 = m6, W20 = m6, V20 = gL, $20 = m6, Q20 = m6, Z20 = em2, xe0 = em2, re0 = gL, ee0 = se6, te0 = se6, ne0 = O6, ue0 = rm2, ie0 = "T_LCURLY", fe0 = "T_RCURLY", ce0 = "T_LCURLYBAR", se0 = "T_RCURLYBAR", ae0 = "T_LPAREN", oe0 = "T_RPAREN", ve0 = "T_LBRACKET", le0 = "T_RBRACKET", pe0 = "T_SEMICOLON", ke0 = "T_COMMA", me0 = "T_PERIOD", he0 = "T_ARROW", de0 = "T_ELLIPSIS", ye0 = "T_AT", _e0 = "T_POUND", we0 = "T_FUNCTION", ge0 = "T_IF", be0 = "T_IN", Te0 = "T_INSTANCEOF", Ee0 = "T_RETURN", Se0 = "T_SWITCH", Ae0 = "T_MATCH", Ie0 = "T_RECORD", Pe0 = "T_THIS", Ce0 = "T_THROW", Ne0 = "T_TRY", Oe0 = "T_VAR", je0 = "T_WHILE", De0 = "T_WITH", Re0 = "T_CONST", Fe0 = "T_LET", Me0 = "T_NULL", Le0 = "T_FALSE", qe0 = "T_TRUE", Be0 = "T_BREAK", Ue0 = "T_CASE", Xe0 = "T_CATCH", Ge0 = "T_CONTINUE", Ye0 = "T_DEFAULT", ze0 = "T_DO", Je0 = "T_FINALLY", Ke0 = "T_FOR", He0 = "T_CLASS", We0 = "T_EXTENDS", Ve0 = "T_STATIC", $e0 = "T_ELSE", Qe0 = "T_NEW", Ze0 = "T_DELETE", xt0 = "T_TYPEOF", rt0 = "T_VOID", et0 = "T_ENUM", tt0 = "T_EXPORT", nt0 = "T_IMPORT", ut0 = "T_SUPER", it0 = "T_IMPLEMENTS", ft0 = "T_INTERFACE", ct0 = "T_PACKAGE", st0 = "T_PRIVATE", at0 = "T_PROTECTED", ot0 = "T_PUBLIC", vt0 = "T_YIELD", lt0 = "T_DEBUGGER", pt0 = "T_DECLARE", kt0 = "T_TYPE", mt0 = "T_OPAQUE", ht0 = "T_OF", dt0 = "T_ASYNC", yt0 = "T_AWAIT", _t0 = "T_CHECKS", wt0 = "T_RSHIFT3_ASSIGN", gt0 = "T_RSHIFT_ASSIGN", bt0 = "T_LSHIFT_ASSIGN", Tt0 = "T_BIT_XOR_ASSIGN", Et0 = "T_BIT_OR_ASSIGN", St0 = "T_BIT_AND_ASSIGN", At0 = "T_MOD_ASSIGN", It0 = "T_DIV_ASSIGN", Pt0 = "T_MULT_ASSIGN", Ct0 = "T_EXP_ASSIGN", Nt0 = "T_MINUS_ASSIGN", Ot0 = "T_PLUS_ASSIGN", jt0 = "T_NULLISH_ASSIGN", Dt0 = "T_AND_ASSIGN", Rt0 = "T_OR_ASSIGN", Ft0 = "T_ASSIGN", Mt0 = "T_PLING_PERIOD", Lt0 = "T_PLING_PLING", qt0 = "T_PLING", Bt0 = "T_COLON", Ut0 = "T_OR", Xt0 = "T_AND", Gt0 = "T_BIT_OR", Yt0 = "T_BIT_XOR", zt0 = "T_BIT_AND", Jt0 = "T_EQUAL", Kt0 = "T_NOT_EQUAL", Ht0 = "T_STRICT_EQUAL", Wt0 = "T_STRICT_NOT_EQUAL", Vt0 = "T_LESS_THAN_EQUAL", $t0 = "T_GREATER_THAN_EQUAL", Qt0 = "T_LESS_THAN", Zt0 = "T_GREATER_THAN", xn0 = "T_LSHIFT", rn0 = "T_RSHIFT", en0 = "T_RSHIFT3", tn0 = "T_PLUS", nn0 = "T_MINUS", un0 = "T_DIV", in0 = "T_MULT", fn0 = "T_EXP", cn0 = "T_MOD", sn0 = "T_NOT", an0 = "T_BIT_NOT", on0 = "T_INCR", vn0 = "T_DECR", ln0 = "T_EOF", pn0 = "T_ANY_TYPE", kn0 = "T_MIXED_TYPE", mn0 = "T_EMPTY_TYPE", hn0 = "T_NUMBER_TYPE", dn0 = "T_BIGINT_TYPE", yn0 = "T_STRING_TYPE", _n0 = "T_VOID_TYPE", wn0 = "T_SYMBOL_TYPE", gn0 = "T_UNKNOWN_TYPE", bn0 = "T_NEVER_TYPE", Tn0 = "T_UNDEFINED_TYPE", En0 = "T_KEYOF", Sn0 = "T_READONLY", An0 = "T_INFER", In0 = "T_IS", Pn0 = "T_ASSERTS", Cn0 = "T_IMPLIES", Nn0 = KL, On0 = KL, jn0 = "T_NUMBER", Dn0 = "T_BIGINT", Rn0 = "T_STRING", Fn0 = "T_TEMPLATE_PART", Mn0 = "T_IDENTIFIER", Ln0 = "T_REGEXP", qn0 = "T_INTERPRETER", Bn0 = "T_ERROR", Un0 = "T_JSX_IDENTIFIER", Xn0 = XL, Gn0 = XL, Yn0 = "T_BOOLEAN_TYPE", zn0 = "T_NUMBER_SINGLETON_TYPE", Jn0 = "T_BIGINT_SINGLETON_TYPE", Kn0 = [0, BR, $S, 9], Hn0 = [0, BR, Hg, 9], Wn0 = wL, Vn0 = "*/", $n0 = wL, Qn0 = "unreachable line_comment", Zn0 = "unreachable string_quote", x70 = "\\", r70 = "unreachable template_part", e70 = `\r
57949
+ `, t70 = ug, n70 = "unreachable regexp_class", u70 = LD, i70 = "unreachable regexp_body", f70 = rx, c70 = rx, s70 = rx, a70 = rx, o70 = hR, v70 = "{'>'}", l70 = F6, p70 = "{'}'}", k70 = em2, m70 = Ao3, h70 = NT, d70 = Qm2, y70 = hR, _70 = Ao3, w70 = NT, g70 = Qm2, b70 = "unreachable type_token wholenumber", T70 = "unreachable type_token wholebigint", E70 = "unreachable type_token floatbigint", S70 = "unreachable type_token scinumber", A70 = "unreachable type_token scibigint", I70 = "unreachable type_token hexnumber", P70 = "unreachable type_token hexbigint", C70 = "unreachable type_token legacyoctnumber", N70 = "unreachable type_token octnumber", O70 = "unreachable type_token octbigint", j70 = "unreachable type_token binnumber", D70 = "unreachable type_token bigbigint", R70 = "unreachable type_token", F70 = yL, M70 = [11, 1], L70 = [11, 0], q70 = "unreachable template_tail", B70 = rx, U70 = rx, X70 = "unreachable jsx_child", G70 = "unreachable jsx_tag", Y70 = [0, hw], z70 = [0, 913], J70 = [0, Y32], K70 = [0, mh], H70 = [0, cR], W70 = [0, QP], V70 = [0, 8747], $70 = [0, gD], Q70 = [0, 916], Z70 = [0, 8225], xu0 = [0, 935], ru0 = [0, VI], eu0 = [0, 914], tu0 = [0, vL], nu0 = [0, IF], uu0 = [0, RE], iu0 = [0, 915], fu0 = [0, TD], cu0 = [0, 919], su0 = [0, 917], au0 = [0, _L], ou0 = [0, KD], vu0 = [0, HR], lu0 = [0, 924], pu0 = [0, 923], ku0 = [0, 922], mu0 = [0, oF], hu0 = [0, 921], du0 = [0, eM], yu0 = [0, Hg], _u0 = [0, xF], wu0 = [0, ty], gu0 = [0, 927], bu0 = [0, 937], Tu0 = [0, HD], Eu0 = [0, $R], Su0 = [0, uR], Au0 = [0, 338], Iu0 = [0, 352], Pu0 = [0, 929], Cu0 = [0, 936], Nu0 = [0, 8243], Ou0 = [0, 928], ju0 = [0, 934], Du0 = [0, qL], Ru0 = [0, o_], Fu0 = [0, 933], Mu0 = [0, pM], Lu0 = [0, nL], qu0 = [0, fD2], Bu0 = [0, 920], Uu0 = [0, 932], Xu0 = [0, jD], Gu0 = [0, dR], Yu0 = [0, KF], zu0 = [0, JR], Ju0 = [0, 918], Ku0 = [0, SR], Hu0 = [0, HF], Wu0 = [0, 926], Vu0 = [0, lF], $u0 = [0, jM], Qu0 = [0, 925], Zu0 = [0, 39], xi0 = [0, 8736], ri0 = [0, 8743], ei0 = [0, 38], ti0 = [0, 945], ni0 = [0, 8501], ui0 = [0, Sv], ii0 = [0, 8226], fi0 = [0, JD2], ci0 = [0, 946], si0 = [0, 8222], ai0 = [0, RD], oi0 = [0, wM], vi0 = [0, 8776], li0 = [0, qI], pi0 = [0, 8773], ki0 = [0, 9827], mi0 = [0, CD2], hi0 = [0, 967], di0 = [0, qM], yi0 = [0, Wm2], _i0 = [0, PD], wi0 = [0, GF], gi0 = [0, 8595], bi0 = [0, 8224], Ti0 = [0, 8659], Ei0 = [0, sR], Si0 = [0, 8746], Ai0 = [0, 8629], Ii0 = [0, yR], Pi0 = [0, 8745], Ci0 = [0, 8195], Ni0 = [0, 8709], Oi0 = [0, iD2], ji0 = [0, dL], Di0 = [0, aL], Ri0 = [0, Gp2], Fi0 = [0, 9830], Mi0 = [0, 8707], Li0 = [0, 8364], qi0 = [0, EM], Bi0 = [0, rl2], Ui0 = [0, 951], Xi0 = [0, 8801], Gi0 = [0, 949], Yi0 = [0, 8194], zi0 = [0, 8805], Ji0 = [0, 947], Ki0 = [0, 8260], Hi0 = [0, jE], Wi0 = [0, nR], Vi0 = [0, $S], $i0 = [0, 8704], Qi0 = [0, XF], Zi0 = [0, EL], xf0 = [0, 8230], rf0 = [0, 9829], ef0 = [0, 8596], tf0 = [0, 8660], nf0 = [0, 62], uf0 = [0, 402], if0 = [0, 948], ff0 = [0, nF], cf0 = [0, E9], sf0 = [0, 8712], af0 = [0, sP], of0 = [0, 953], vf0 = [0, 8734], lf0 = [0, 8465], pf0 = [0, IM], kf0 = [0, 8220], mf0 = [0, 8968], hf0 = [0, 8592], df0 = [0, Sg], yf0 = [0, 10216], _f0 = [0, 955], wf0 = [0, 8656], gf0 = [0, 954], bf0 = [0, 60], Tf0 = [0, 8216], Ef0 = [0, 8249], Sf0 = [0, NM], Af0 = [0, 9674], If0 = [0, 8727], Pf0 = [0, 8970], Cf0 = [0, AL], Nf0 = [0, 8711], Of0 = [0, 956], jf0 = [0, 8722], Df0 = [0, j_], Rf0 = [0, NS], Ff0 = [0, 8212], Mf0 = [0, NR], Lf0 = [0, 8804], qf0 = [0, 957], Bf0 = [0, kF], Uf0 = [0, 8836], Xf0 = [0, 8713], Gf0 = [0, KR], Yf0 = [0, 8715], zf0 = [0, 8800], Jf0 = [0, 8853], Kf0 = [0, 959], Hf0 = [0, 969], Wf0 = [0, 8254], Vf0 = [0, HM], $f0 = [0, 339], Qf0 = [0, jv], Zf0 = [0, BM], xc0 = [0, s9], rc0 = [0, ul2], ec0 = [0, 8855], tc0 = [0, ME], nc0 = [0, t1], uc0 = [0, xI], ic0 = [0, py], fc0 = [0, da3], cc0 = [0, rL], sc0 = [0, 982], ac0 = [0, 960], oc0 = [0, 966], vc0 = [0, 8869], lc0 = [0, 8240], pc0 = [0, 8706], kc0 = [0, 8744], mc0 = [0, 8211], hc0 = [0, 10217], dc0 = [0, 8730], yc0 = [0, 8658], _c0 = [0, 34], wc0 = [0, 968], gc0 = [0, 8733], bc0 = [0, 8719], Tc0 = [0, 961], Ec0 = [0, 8971], Sc0 = [0, LL], Ac0 = [0, 8476], Ic0 = [0, 8221], Pc0 = [0, 8969], Cc0 = [0, 8594], Nc0 = [0, z_], Oc0 = [0, bM], jc0 = [0, Sb], Dc0 = [0, 8901], Rc0 = [0, 353], Fc0 = [0, 8218], Mc0 = [0, 8217], Lc0 = [0, 8250], qc0 = [0, 8835], Bc0 = [0, 8721], Uc0 = [0, 8838], Xc0 = [0, 8834], Gc0 = [0, 9824], Yc0 = [0, 8764], zc0 = [0, 962], Jc0 = [0, 963], Kc0 = [0, 8207], Hc0 = [0, 952], Wc0 = [0, 8756], Vc0 = [0, 964], $c0 = [0, e8], Qc0 = [0, 8839], Zc0 = [0, AC], xs0 = [0, fk], rs0 = [0, ol3], es0 = [0, 8657], ts0 = [0, 8482], ns0 = [0, lk], us0 = [0, 732], is0 = [0, Q32], fs0 = [0, 8201], cs0 = [0, 977], ss0 = [0, sM], as0 = [0, xl2], os0 = [0, 965], vs0 = [0, 978], ls0 = [0, IL], ps0 = [0, jS], ks0 = [0, WL], ms0 = [0, tR], hs0 = [0, 8205], ds0 = [0, 950], ys0 = [0, Bk], _s0 = [0, hF], ws0 = [0, QE], gs0 = [0, 958], bs0 = [0, 8593], Ts0 = [0, oD2], Es0 = [0, 8242], Ss0 = [0, kI], As0 = "unreachable regexp", Is0 = "unreachable token wholenumber", Ps0 = "unreachable token wholebigint", Cs0 = "unreachable token floatbigint", Ns0 = "unreachable token scinumber", Os0 = "unreachable token scibigint", js0 = "unreachable token hexnumber", Ds0 = "unreachable token hexbigint", Rs0 = "unreachable token legacyoctnumber", Fs0 = "unreachable token legacynonoctnumber", Ms0 = "unreachable token octnumber", Ls0 = "unreachable token octbigint", qs0 = "unreachable token bignumber", Bs0 = "unreachable token bigint", Us0 = "unreachable token", Xs0 = yL, Gs0 = [7, "#!"], Ys0 = "expected ?", zs0 = "unreachable string_escape", Js0 = V22, Ks0 = P6, Hs0 = P6, Ws0 = V22, Vs0 = KP, $s0 = EF, Qs0 = "n", Zs0 = "r", xa0 = "t", ra0 = zF, ea0 = P6, ta0 = Ao3, na0 = Ao3, ua0 = "unreachable id_char", ia0 = Ao3, fa0 = Ao3, ca0 = P6, sa0 = uL, aa0 = pD2, oa0 = gb, va0 = [28, "token ILLEGAL"], la0 = [0, [11, "the identifier `", [2, 0, [12, 96, 0]]], "the identifier `%s`"], pa0 = [0, 1], ka0 = [0, 1], ma0 = OF, ha0 = OF, da0 = [0, [11, "an identifier. When exporting a ", [2, 0, [11, " as a named export, you must specify a ", [2, 0, [11, " name. Did you mean `export default ", [2, 0, [11, " ...`?", 0]]]]]]], "an identifier. When exporting a %s as a named export, you must specify a %s name. Did you mean `export default %s ...`?"], ya0 = Sh, _a0 = "Peeking current location when not available", wa0 = [0, "src/parser/parser_env.ml", SR, 9], ga0 = "Internal Error: Tried to add_declared_private with outside of class scope.", ba0 = "Internal Error: `exit_class` called before a matching `enter_class`", Ta0 = rx, Ea0 = [0, 0, 0], Sa0 = [0, 0, 0], Aa0 = "Parser_env.Try.Rollback", Ia0 = rx, Pa0 = rx, Ca0 = [0, H22, of, $i6, CR2, TM, V7, $22, qf, h7, pc2, bc2, Rf2, Gi6, Du2, Fi6, hu2, F7, d7, Qu2, Uf, J72, ui6, cf, X72, Zn4, Zf, _u2, vu2, $n3, ac2, Ps6, oc2, _f2, Sf, Es4, Uc2, jc2, Q7, He7, t72, Wi6, s7, Qc2, Bi6, ic2, rs5, Ve7, Jc2, Uu2, fu2, k7, ss5, ii6, lu2, T7, Je7, ci6, w7, Of, qu2, fc2, Ku2, pi6, q72, a7, If2, _7, fs24, Ge7, Lf, Pi6, Zu2, M7, pu2, xf2, af, P7, $f2, au2, Fc2, Zi6, m7, Bn3, jf, Fu2, Y7, bi6, $c2, Ai6, Eu2, ge6, es5, x7, rc2, Vu2, bs5, Wn3, e7, o7, Kf, Pc2, Vn3, r7, Xi6, Qf, kf2, Lu2, sf, Xn4, Vc2, zu2, ni6, Oi6, Hu2, $u2, si6, n7, Ii6, Zc2, Ui6, ys5, Gf, Kc2, Xu2, Mu2, Ei6, Cc2, wu2, Kn4, hs5, df, W72, Ki6, uc2, hf, Nf, uu2, du2, E7, ps5, L7, mf, gu2, Au2, Cu2, Yc2, su2, os7, N7, oi6, G1, g7, Hn4, Bc2, ai6, pf, ku2, xu2, Tf, Jf, ms5, Tc2, Dc2, z7, dc2, Bu2, zf, f7, D7, Z7, Xf, I7, ds5, fi6, Mi5, Di6, Rc2, zn4, Yu2, xi6, eu2, vf2, ae4, lc2, is5, cc2, Ou2, Df2, as5, Vi6, Gn4, W22, Ri6, U7, cs5, St8, Ni6, qc2, gs5, tu2, i7, vi6, Ru2, di6, Qi6, S7, kc2, _c2, ti6, cu2, gf, nc2, As5, Iu2, wf, Qn3, vs6, Ci6, hi6, Hi6, ws5, bf, v7, b7, Mf2, mi6, C7, Nc2, ts5, p7, t24, Un3, Mc2, yf, Is6, A7, Yn3, Yi6, Ac2, Yf, Xc2, Oc2, Ts4, O7, Hc2, Bf, wc2, Ec2, bu2, ju2, j7, be6, nf, Ju2, qn4, hc2, Ic2, wi6, Gc2, gi6, lf, yu2, zi6, ou2, xc2, us5, Ke7, Xe6, rf, ff, ri6, Wc2, ns5, K7, mu2, Vf, Sc2, _s5, Jn3, gc2, qi6, Hf, ru2, uf, aR, H7, vD, qF, yc2, Ef, ji6, y7, sc2, Wf, B7, ei6, Si6, yi5, Wu2, Ff, Gu2, Su2, Pf2, c7, li6, l7, Ji6, _i6, Cs4, We7, iu2, zc2, vn3, G7, R7, ki6, ls5, u7, Tu2, Pu2, Ti6, Lc2, tf, vc2, tn4, Af], Na0 = [0, ss5, fi6, _c2, Ni6, di6, Cs4, mf, si6, sf, z7, eu2, zc2, _u2, e7, Ve7, bs5, Mc2, W72, hf, Ff, Es4, Xi6, Z7, Ii6, lc2, I7, Ec2, O7, of, Fu2, tu2, Ku2, jc2, hi6, m7, pf, Ic2, Vf, gs5, wc2, ys5, St8, V7, Mf2, $f2, lf, Ji6, ti6, l7, f7, Ac2, Lf, vi6, Hi6, rs5, Vc2, U7, Au2, fu2, Kn4, Ou2, bu2, ai6, Ui6, Si6, ji6, es5, Af, pu2, Ki6, qi6, X72, Lu2, Zu2, ms5, Wf, o7, Ge7, r7, Qi6, x7, Gf, dc2, D7, qc2, G1, ff, $n3, Oc2, E7, Nf, Tc2, g7, kc2, su2, P7, tf, Gc2, Yn3, Mu2, a7, Eu2, vc2, j7, _i6, T7, $22, Pi6, ou2, d7, w7, Ri6, wu2, ki6, Ci6, Q7, Rc2, Wu2, Oi6, ic2, be6, v7, vu2, H22, Hn4, Uc2, zi6, xf2, Du2, $c2, xc2, Yc2, If2, ls5, Gi6, Ef, yu2, $u2, pc2, du2, Xf, Pu2, oc2, xi6, Cc2, Hc2, Nc2, Wn3, yf, Bc2, bi6, mi6, Uf, Ps6, Hf, qf, _f2, ii6, Qu2, Uu2, Rf2, B7, is5, ws5, y7, oi6, S7, ru2, bc2, H7, Hu2, xu2, Sc2, u7, Ei6, Pf2, yi5, Jn3, L7, ps5, Y7, Tf, gc2, Xu2, W22, Je7, F7, J72, Jc2, jf, He7, Ke7, n7, cs5, Vu2, p7, ds5, ge6, iu2, As5, Bf, cc2, sc2, Un3, cu2, Mi5, Ru2, hu2, Ts4, q72, fs24, fc2, Qn3, Vi6, uc2, qu2, Xc2, A7, ns5, ni6, lu2, Xn4, Df2, Pc2, Fc2, ac2, kf2, M7, Vn3, ui6, wi6, uu2, c7, gi6, G7, zn4, Bi6, ju2, Sf, i7, _7, Gn4, Qf, Su2, zu2, zf, ei6, Cu2, vf2, nf, Zf, tn4, h7, Ju2, li6, Zn4, qn4, Bu2, Di6, ri6, ku2, Zi6, Zc2, Yu2, C7, gu2, Jf, cf, s7, Tu2, df, K7, Bn3, Ti6, R7, t24, Ai6, uf, ts5, hs5, Iu2, wf, k7, Xe6, gf, _s5, af, Yi6, hc2, yc2, Wi6, Qc2, vs6, Is6, Fi6, bf, os7, rc2, vn3, as5, Gu2, Dc2, Kf, nc2, us5, pi6, ci6, Yf, We7, Lc2, ae4, N7, rf, $i6, mu2, Of, b7, Wc2, au2, t72, Kc2], Oa0 = [0, ss5, fi6, _c2, Ni6, di6, Cs4, mf, si6, sf, z7, eu2, zc2, _u2, e7, Ve7, bs5, Mc2, W72, hf, Ff, Es4, Xi6, Z7, Ii6, lc2, I7, Ec2, O7, of, Fu2, tu2, Ku2, jc2, hi6, m7, pf, Ic2, Vf, gs5, wc2, ys5, St8, V7, TM, Mf2, $f2, lf, Ji6, ti6, l7, f7, Ac2, Lf, vi6, Hi6, rs5, Vc2, U7, Au2, fu2, Kn4, Ou2, bu2, ai6, Ui6, Si6, ji6, es5, Af, pu2, Ki6, qi6, vD, X72, Lu2, Zu2, ms5, Wf, o7, Ge7, r7, Qi6, x7, Gf, dc2, D7, qc2, G1, ff, $n3, Oc2, E7, Nf, Tc2, g7, kc2, su2, P7, tf, Gc2, Yn3, Mu2, a7, Eu2, vc2, j7, _i6, T7, $22, Pi6, ou2, d7, w7, Ri6, wu2, ki6, Ci6, Q7, Rc2, Wu2, Oi6, ic2, be6, v7, vu2, H22, Hn4, Uc2, zi6, xf2, Du2, $c2, xc2, Yc2, If2, ls5, Gi6, Ef, yu2, $u2, pc2, du2, Xf, Pu2, oc2, xi6, Cc2, Hc2, Nc2, Wn3, yf, Bc2, bi6, mi6, Uf, Ps6, Hf, qf, _f2, ii6, Qu2, Uu2, Rf2, B7, is5, ws5, y7, oi6, S7, ru2, bc2, H7, Hu2, xu2, Sc2, u7, Ei6, Pf2, yi5, Jn3, L7, ps5, Y7, Tf, gc2, Xu2, W22, Je7, F7, J72, Jc2, jf, He7, Ke7, n7, cs5, Vu2, p7, ds5, ge6, iu2, As5, Bf, cc2, sc2, Un3, cu2, Mi5, Ru2, hu2, Ts4, q72, fs24, fc2, Qn3, Vi6, uc2, qu2, Xc2, A7, ns5, ni6, lu2, Xn4, Df2, Pc2, Fc2, ac2, kf2, M7, Vn3, ui6, wi6, uu2, c7, gi6, G7, zn4, qF, Bi6, ju2, Sf, i7, _7, Gn4, Qf, Su2, zu2, zf, ei6, Cu2, vf2, nf, Zf, aR, tn4, h7, Ju2, li6, Zn4, CR2, qn4, Bu2, Di6, ri6, ku2, Zi6, Zc2, Yu2, C7, gu2, Jf, cf, s7, Tu2, df, K7, Bn3, Ti6, R7, t24, Ai6, uf, ts5, hs5, Iu2, wf, k7, Xe6, gf, _s5, af, Yi6, hc2, yc2, Wi6, Qc2, vs6, Is6, Fi6, bf, os7, rc2, vn3, as5, Gu2, Dc2, Kf, nc2, us5, pi6, ci6, Yf, We7, Lc2, ae4, N7, rf, $i6, mu2, Of, b7, Wc2, au2, t72, Kc2], ja0 = [0, H22, of, $i6, V7, $22, qf, h7, pc2, bc2, Rf2, Gi6, Du2, Fi6, hu2, F7, d7, Qu2, Uf, J72, ui6, cf, X72, Zn4, Zf, _u2, vu2, $n3, ac2, Ps6, oc2, _f2, Sf, Es4, Uc2, jc2, Q7, He7, t72, Wi6, s7, Qc2, Bi6, ic2, rs5, Ve7, Jc2, Uu2, fu2, k7, ss5, ii6, lu2, T7, Je7, ci6, w7, Of, qu2, fc2, Ku2, pi6, q72, a7, If2, _7, fs24, Ge7, Lf, Pi6, Zu2, M7, pu2, xf2, af, P7, $f2, au2, Fc2, Zi6, m7, Bn3, jf, Fu2, Y7, bi6, $c2, Ai6, Eu2, ge6, es5, x7, rc2, Vu2, bs5, Wn3, e7, o7, Kf, Pc2, Vn3, r7, Xi6, Qf, kf2, Lu2, sf, Xn4, Vc2, zu2, ni6, Oi6, Hu2, $u2, si6, n7, Ii6, Zc2, Ui6, ys5, Gf, Kc2, Xu2, Mu2, Ei6, Cc2, wu2, Kn4, hs5, df, W72, Ki6, uc2, hf, Nf, uu2, du2, E7, ps5, L7, mf, gu2, Au2, Cu2, Yc2, su2, os7, N7, oi6, G1, g7, Hn4, Bc2, ai6, pf, ku2, xu2, Tf, Jf, ms5, Tc2, Dc2, z7, dc2, Bu2, zf, f7, D7, Z7, Xf, I7, ds5, fi6, Mi5, Di6, Rc2, zn4, Yu2, xi6, eu2, vf2, ae4, lc2, is5, cc2, Ou2, Df2, as5, Vi6, Gn4, W22, Ri6, U7, cs5, St8, Ni6, qc2, gs5, tu2, i7, vi6, Ru2, di6, Qi6, S7, kc2, _c2, ti6, cu2, gf, nc2, As5, Iu2, wf, Qn3, vs6, Ci6, hi6, Hi6, ws5, bf, v7, b7, Mf2, mi6, C7, Nc2, ts5, p7, t24, Un3, Mc2, yf, Is6, A7, Yn3, Yi6, Ac2, Yf, Xc2, Oc2, Ts4, O7, Hc2, Bf, wc2, Ec2, bu2, ju2, j7, be6, nf, Ju2, qn4, hc2, Ic2, wi6, Gc2, gi6, lf, yu2, zi6, ou2, xc2, us5, Ke7, Xe6, rf, ff, ri6, Wc2, ns5, K7, mu2, Vf, Sc2, _s5, Jn3, gc2, qi6, Hf, ru2, uf, H7, yc2, Ef, ji6, y7, sc2, Wf, B7, ei6, Si6, yi5, Wu2, Ff, Gu2, Su2, Pf2, c7, li6, l7, Ji6, _i6, Cs4, We7, iu2, zc2, vn3, G7, R7, ki6, ls5, u7, Tu2, Pu2, Ti6, Lc2, tf, vc2, tn4, Af], Da0 = $32, Ra0 = nm2, Fa0 = bo3, Ma0 = I6, La0 = Je7, qa0 = Ve7, Ba0 = $P, Ua0 = DT, Xa0 = Bv, Ga0 = He7, Ya0 = um2, za0 = g6, Ja0 = Tp2, Ka0 = L8, Ha0 = No3, Wa0 = cl2, Va0 = Hv, $a0 = wa2, Qa0 = Pa2, Za0 = We7, xo0 = rk, ro0 = Rm2, eo0 = Xe6, to0 = Fv, no0 = Tk, uo0 = U8, io0 = K8, fo0 = h6, co0 = mc2, so0 = Ue5, ao0 = Ck, oo0 = Yv, vo0 = E6, lo0 = Aa2, po0 = ga, ko0 = j6, mo0 = dh, ho0 = W22, do0 = fl2, yo0 = Oo2, _o0 = ae4, wo0 = Pk, go0 = Q62, bo0 = k6, To0 = W62, Eo0 = H22, So0 = Ke7, Ao0 = x42, Io0 = tc2, Po0 = zb, Co0 = JS, No0 = Io3, Oo0 = Kv, jo0 = ik, Do0 = wk, Ro0 = be6, Fo0 = H32, Mo0 = $v, Lo0 = K32, qo0 = ga, Bo0 = H62, Uo0 = hk, Xo0 = bk, Go0 = Hk, Yo0 = Lm2, zo0 = Xv, Jo0 = J62, Ko0 = tl2, Ho0 = V32, Wo0 = O6, Vo0 = rm2, $o0 = [0, Sh], Qo0 = rx, Zo0 = [19, 1], xv0 = [19, 0], rv0 = [0, 0], ev0 = Ta2, tv0 = [0, 0], nv0 = [0, "a type"], uv0 = [0, 0], iv0 = [0, "a number literal type"], fv0 = [0, 0], cv0 = J62, sv0 = tl2, av0 = V32, ov0 = "You should only call render_type after making sure the next token is a renders variant", vv0 = [0, [0, 0, 0, 0, 0]], lv0 = [0, 0, 0, 0], pv0 = [0, 1], kv0 = [0, il3, 1466, 6], mv0 = [0, il3, 1469, 6], hv0 = [0, il3, 1572, 8], dv0 = [0, 1], yv0 = [0, il3, 1589, 8], _v0 = "Can not have both `static` and `proto`", wv0 = Ue5, gv0 = rw, bv0 = [0, 0], Tv0 = [0, "the end of a tuple type (no trailing comma is allowed in inexact tuple type)."], Ev0 = [0, il3, Sv, 15], Sv0 = [0, il3, sP, 15], Av0 = ze6, Iv0 = ze6, Pv0 = Kk, Cv0 = G6, Nv0 = [0, [11, "Failure while looking up ", [2, 0, [11, ". Index: ", [4, 0, 0, 0, [11, ". Length: ", [4, 0, 0, 0, [12, 46, 0]]]]]]], "Failure while looking up %s. Index: %d. Length: %d."], Ov0 = [0, 0, 0, 0], jv0 = "Offset_utils.Offset_lookup_failed", Dv0 = m1, Rv0 = kD, Fv0 = G6, Mv0 = Kk, Lv0 = wD, qv0 = G6, Bv0 = Kk, Uv0 = vR, Xv0 = Yx, Gv0 = "normal", Yv0 = tc2, zv0 = "jsxTag", Jv0 = "jsxChild", Kv0 = "template", Hv0 = nD2, Wv0 = "context", Vv0 = tc2, $v0 = [6, 0], Qv0 = [0, 0], Zv0 = [0, 1], x30 = [0, 4], r30 = [0, 2], e30 = [0, 3], t30 = [0, 0], n30 = ze6, u30 = [0, 0, 0, 0, 0, 0], i30 = [0, 0], f30 = [0, OM], c30 = [0, 1], s30 = [0, 0], a30 = Ta2, o30 = [0, 73], v30 = [0, 84], l30 = aM, p30 = rE, k30 = "exports", m30 = K62, h30 = [0, rx, rx, 0], d30 = [0, AD], y30 = [0, 84], _30 = [0, "a declaration, statement or export specifiers"], w30 = [0, 1], g30 = [0, I9, 1971, 21], b30 = [0, "the keyword `as`"], T30 = [0, 29], E30 = [0, 29], S30 = [0, 0], A30 = [0, 1], I30 = [0, AD], P30 = [0, "the keyword `from`"], C30 = [0, rx, rx, 0], N30 = "Label", O30 = [0, OM], j30 = [0, 0, 0], D30 = [0, 38], R30 = [0, I9, 372, 22], F30 = [0, 37], M30 = [0, I9, 391, 22], L30 = [0, 0], q30 = "the token `;`", B30 = [0, 0], U30 = [0, 0], X30 = FR, G30 = [0, Sh], Y30 = FR, z30 = [28, St8], J30 = Ta2, K30 = [0, 73], H30 = [0, rx, 0], W30 = It7, V30 = [0, rx, 0], $30 = [0, 73], Q30 = [0, 73], Z30 = $32, xl0 = [0, rx, 0], rl0 = [0, 0, 0], el0 = [0, 0, 0], tl0 = [0, [0, 8]], nl0 = [0, [0, 7]], ul0 = [0, [0, 6]], il0 = [0, [0, 10]], fl0 = [0, [0, 9]], cl0 = [0, [0, 11]], sl0 = [0, [0, 5]], al0 = [0, [0, 4]], ol0 = [0, [0, 2]], vl0 = [0, [0, 3]], ll0 = [0, [0, 1]], pl0 = [0, [0, 0]], kl0 = [0, [0, 12]], ml0 = [0, [0, 13]], hl0 = [0, [0, 14]], dl0 = [0, 0], yl0 = [0, 1], _l0 = [0, 0], wl0 = [0, 2], gl0 = [0, 3], bl0 = [0, 7], Tl0 = [0, 6], El0 = [0, 4], Sl0 = [0, 5], Al0 = [0, 1], Il0 = [0, 0], Pl0 = [0, 1], Cl0 = [0, 0], Nl0 = fl2, Ol0 = [0, "either a call or access of `super`"], jl0 = fl2, Dl0 = W22, Rl0 = w6, Fl0 = w6, Ml0 = [0, 2], Ll0 = [0, 0], ql0 = [0, 1], Bl0 = Yv, Ul0 = [0, "the identifier `target`"], Xl0 = [0, 0], Gl0 = [0, 1], Yl0 = [0, 0], zl0 = [0, 0], Jl0 = [0, 2], Kl0 = [0, 2], Hl0 = [0, 1], Wl0 = [0, 73], Vl0 = P6, $l0 = uL, Ql0 = gb, Zl0 = gb, x60 = pD2, r60 = [0, 0], e60 = [0, 1], t60 = [0, 0], n60 = se6, u60 = se6, i60 = [0, "a regular expression"], f60 = rx, c60 = rx, s60 = rx, a60 = [0, 81], o60 = [0, "src/parser/expression_parser.ml", 1550, 17], v60 = [0, "a template literal part"], l60 = [0, [0, rx, rx], 1], p60 = Pv, k60 = [0, 6], m60 = [0, [0, 17, [0, 2]]], h60 = [0, [0, 18, [0, 3]]], d60 = [0, [0, 19, [0, 4]]], y60 = [0, [0, 0, [0, 5]]], _60 = [0, [0, 1, [0, 5]]], w60 = [0, [0, 2, [0, 5]]], g60 = [0, [0, 3, [0, 5]]], b60 = [0, [0, 5, [0, 6]]], T60 = [0, [0, 7, [0, 6]]], E60 = [0, [0, 4, [0, 6]]], S60 = [0, [0, 6, [0, 6]]], A60 = [0, [0, 8, [0, 7]]], I60 = [0, [0, 9, [0, 7]]], P60 = [0, [0, 10, [0, 7]]], C60 = [0, [0, 11, [0, 8]]], N60 = [0, [0, 12, [0, 8]]], O60 = [0, [0, 15, [0, 9]]], j60 = [0, [0, 13, [0, 9]]], D60 = [0, [0, 14, [1, 10]]], R60 = [0, [0, 16, [0, 9]]], F60 = [0, [0, 21, [0, 6]]], M60 = [0, [0, 20, [0, 6]]], L60 = [23, Dw], q60 = [13, "JSX fragment"], B60 = Iv, U60 = ln4, X60 = [0, sn4], G60 = [1, sn4], Y60 = [0, rx, rx, 0], z60 = [0, Sh], J60 = rx, K60 = [0, "a numeric or string literal"], H60 = [0, rx, '""', 0], W60 = [0, 0], V60 = [0, "a number literal"], $60 = [0, [0, 0, V22, 0]], Q60 = [0, 84], Z60 = [21, dM], x40 = [21, R62], r40 = [0, 0, 0], e40 = h6, t40 = [0, rx, 0], n40 = "unexpected PrivateName in Property, expected a PrivateField", u40 = [0, 0, 0], i40 = Sa, f40 = "Must be one of the above", c40 = [0, 1], s40 = [0, 1], a40 = [0, 1], o40 = Sa, v40 = Sa, l40 = p_, p40 = "Internal Error: private name found in object props", k40 = [0, 0, 0, 0], m40 = [0, cF], h40 = [19, [0, 0]], d40 = [0, cF], y40 = ug, _40 = "Nooo: ", w40 = Fv, g40 = "Parser error: No such thing as an expression pattern!", b40 = [0, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], T40 = [0, "src/parser/parser_flow.ml", fk, 28], E40 = [0, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], S40 = kD, A40 = Yx, I40 = $D, P40 = eR, C40 = eR, N40 = $D, O40 = tc2, j40 = sD2, D40 = w1, R40 = m1, F40 = "InterpreterDirective", M40 = "interpreter", L40 = "Program", q40 = w1, B40 = "RecordBody", U40 = m1, X40 = Y1, G40 = en4, Y40 = "RecordStaticProperty", z40 = "defaultValue", J40 = Y1, K40 = en4, H40 = "RecordProperty", W40 = S6, V40 = "BreakStatement", $40 = S6, Q40 = "ContinueStatement", Z40 = "DebuggerStatement", xp0 = Wv, rp0 = "DeclareExportAllDeclaration", ep0 = Wv, tp0 = l_, np0 = IE, up0 = Fv, ip0 = "DeclareExportDeclaration", fp0 = w1, cp0 = Yr5, sp0 = "DeclareModule", ap0 = Y1, op0 = "DeclareModuleExports", vp0 = w1, lp0 = Yr5, pp0 = NL, kp0 = "DeclareNamespace", mp0 = Z32, hp0 = w1, dp0 = "DoWhileStatement", yp0 = "EmptyStatement", _p0 = cS, wp0 = IE, gp0 = "ExportDefaultDeclaration", bp0 = cS, Tp0 = cA, Ep0 = Wv, Sp0 = "ExportAllDeclaration", Ap0 = cS, Ip0 = Wv, Pp0 = l_, Cp0 = IE, Np0 = "ExportNamedDeclaration", Op0 = "directive", jp0 = t24, Dp0 = "ExpressionStatement", Rp0 = w1, Fp0 = "update", Mp0 = Z32, Lp0 = ks5, qp0 = "ForStatement", Bp0 = "each", Up0 = w1, Xp0 = fn5, Gp0 = Ea2, Yp0 = "ForInStatement", zp0 = Kv, Jp0 = w1, Kp0 = fn5, Hp0 = Ea2, Wp0 = "ForOfStatement", Vp0 = lR, $p0 = rP, Qp0 = Z32, Zp0 = "IfStatement", xk0 = tc2, rk0 = Aa2, ek0 = m1, tk0 = XD, nk0 = Wv, uk0 = l_, ik0 = "ImportDeclaration", fk0 = w1, ck0 = S6, sk0 = "LabeledStatement", ak0 = J9, ok0 = $1, vk0 = "MatchStatement", lk0 = "RecordImplements", pk0 = w1, kk0 = Oo2, mk0 = B22, hk0 = Yr5, dk0 = "RecordDeclaration", yk0 = $1, _k0 = "ReturnStatement", wk0 = J9, gk0 = "discriminant", bk0 = "SwitchStatement", Tk0 = $1, Ek0 = "ThrowStatement", Sk0 = "finalizer", Ak0 = "handler", Ik0 = vn3, Pk0 = "TryStatement", Ck0 = w1, Nk0 = Z32, Ok0 = "WhileStatement", jk0 = w1, Dk0 = Dp2, Rk0 = "WithStatement", Fk0 = x9, Mk0 = $1, Lk0 = NA, qk0 = x9, Bk0 = $1, Uk0 = NA, Xk0 = KT, Gk0 = "ArrayExpression", Yk0 = B22, zk0 = gh, Jk0 = t24, Kk0 = Ge7, Hk0 = Ey, Wk0 = Io3, Vk0 = w1, $k0 = on8, Qk0 = Yr5, Zk0 = "ArrowFunctionExpression", x80 = t24, r80 = "AsConstExpression", e80 = Y1, t80 = t24, n80 = "AsExpression", u80 = p_, i80 = fn5, f80 = Ea2, c80 = Gv, s80 = "AssignmentExpression", a80 = fn5, o80 = Ea2, v80 = Gv, l80 = "BinaryExpression", p80 = "CallExpression", k80 = lR, m80 = rP, h80 = Z32, d80 = "ConditionalExpression", y80 = Wv, _80 = "ImportExpression", w80 = LF2, g80 = CM, b80 = Dw, T80 = fn5, E80 = Ea2, S80 = Gv, A80 = "LogicalExpression", I80 = J9, P80 = $1, C80 = "MatchExpression", N80 = "MemberExpression", O80 = Tm2, j80 = w6, D80 = "MetaProperty", R80 = Qb, F80 = h8, M80 = fR, L80 = "NewExpression", q80 = A6, B80 = "ObjectExpression", U80 = ft7, X80 = "OptionalCallExpression", G80 = ft7, Y80 = "OptionalMemberExpression", z80 = rM, J80 = "SequenceExpression", K80 = "Super", H80 = "ThisExpression", W80 = Y1, V80 = t24, $80 = "TypeCastExpression", Q80 = Y1, Z80 = t24, xm0 = "SatisfiesExpression", rm0 = x9, em0 = $1, tm0 = NA, nm0 = ze6, um0 = $7, im0 = SD, fm0 = VL, cm0 = Aa2, sm0 = ga, am0 = E6, om0 = "matched above", vm0 = $1, lm0 = XR, pm0 = Gv, km0 = "UnaryExpression", mm0 = $1, hm0 = "AwaitExpression", dm0 = kR, ym0 = ZM, _m0 = XR, wm0 = $1, gm0 = Gv, bm0 = "UpdateExpression", Tm0 = "delegate", Em0 = $1, Sm0 = "YieldExpression", Am0 = "MatchExpressionCase", Im0 = "guard", Pm0 = w1, Cm0 = ge6, Nm0 = "MatchStatementCase", Om0 = "literal", jm0 = "MatchLiteralPattern", Dm0 = "MatchWildcardPattern", Rm0 = ze6, Fm0 = $7, Mm0 = $1, Lm0 = Gv, qm0 = "MatchUnaryPattern", Bm0 = "MatchObjectPattern", Um0 = "MatchInstanceObjectPattern", Xm0 = DF, Gm0 = _a4, Ym0 = "MatchInstancePattern", zm0 = "patterns", Jm0 = "MatchOrPattern", Km0 = Ih, Hm0 = ge6, Wm0 = "MatchAsPattern", Vm0 = Yr5, $m0 = "MatchIdentifierPattern", Qm0 = Tm2, Zm0 = "base", xh0 = "MatchMemberPattern", rh0 = ba2, eh0 = Yr5, th0 = "MatchBindingPattern", nh0 = p6, uh0 = KT, ih0 = "MatchArrayPattern", fh0 = T6, ch0 = ge6, sh0 = en4, ah0 = VR, oh0 = T6, vh0 = ge6, lh0 = en4, ph0 = VR, kh0 = p6, mh0 = A6, hh0 = $1, dh0 = "MatchRestPattern", yh0 = "Unexpected FunctionDeclaration with BodyExpression", _h0 = "HookDeclaration", wh0 = t24, gh0 = Ge7, bh0 = Ey, Th0 = Io3, Eh0 = "FunctionDeclaration", Sh0 = B22, Ah0 = gh, Ih0 = w1, Ph0 = on8, Ch0 = Yr5, Nh0 = "Unexpected FunctionExpression with BodyExpression", Oh0 = B22, jh0 = gh, Dh0 = t24, Rh0 = Ge7, Fh0 = Ey, Mh0 = Io3, Lh0 = w1, qh0 = on8, Bh0 = Yr5, Uh0 = "FunctionExpression", Xh0 = ft7, Gh0 = Y1, Yh0 = Ye4, zh0 = US, Jh0 = ft7, Kh0 = Y1, Hh0 = Ye4, Wh0 = "PrivateIdentifier", Vh0 = ft7, $h0 = Y1, Qh0 = Ye4, Zh0 = US, xd0 = rP, rd0 = Z32, ed0 = "SwitchCase", td0 = w1, nd0 = "param", ud0 = "CatchClause", id0 = w1, fd0 = "BlockStatement", cd0 = ba2, sd0 = Yr5, ad0 = "DeclareVariable", od0 = "DeclareHook", vd0 = Ge7, ld0 = "DeclareFunction", pd0 = Yr5, kd0 = lM, md0 = Oo2, hd0 = mc2, dd0 = w1, yd0 = B22, _d0 = Yr5, wd0 = "DeclareClass", gd0 = B22, bd0 = f_, Td0 = on8, Ed0 = p6, Sd0 = on8, Ad0 = Yr5, Id0 = "DeclareComponent", Pd0 = B22, Cd0 = f_, Nd0 = p6, Od0 = on8, jd0 = "ComponentTypeAnnotation", Dd0 = ft7, Rd0 = Y1, Fd0 = Ye4, Md0 = "ComponentTypeParameter", Ld0 = w1, qd0 = Yr5, Bd0 = "DeclareEnum", Ud0 = mc2, Xd0 = w1, Gd0 = B22, Yd0 = Yr5, zd0 = "DeclareInterface", Jd0 = m1, Kd0 = tc2, Hd0 = cA, Wd0 = "ExportNamespaceSpecifier", Vd0 = fn5, $d0 = B22, Qd0 = Yr5, Zd0 = "DeclareTypeAlias", x50 = fn5, r50 = B22, e50 = Yr5, t50 = "TypeAlias", n50 = "DeclareOpaqueType", u50 = "OpaqueType", i50 = "supertype", f50 = "upperBound", c50 = "lowerBound", s50 = "impltype", a50 = B22, o50 = Yr5, v50 = "ClassDeclaration", l50 = "ClassExpression", p50 = g8, k50 = Oo2, m50 = "superTypeParameters", h50 = "superClass", d50 = B22, y50 = w1, _50 = Yr5, w50 = t24, g50 = "Decorator", b50 = B22, T50 = Yr5, E50 = "ClassImplements", S50 = w1, A50 = "ClassBody", I50 = w1, P50 = "StaticBlock", C50 = _a4, N50 = V6, O50 = Nv, j50 = nl2, D50 = g8, R50 = W32, F50 = Ue5, M50 = ba2, L50 = m1, q50 = en4, B50 = "MethodDefinition", U50 = x42, X50 = g8, G50 = $22, Y50 = Ue5, z50 = W32, J50 = Y1, K50 = m1, H50 = en4, W50 = jL, V50 = "Internal Error: Private name found in class prop", $50 = x42, Q50 = g8, Z50 = $22, xy0 = Ue5, ry0 = W32, ey0 = Y1, ty0 = m1, ny0 = en4, uy0 = jL, iy0 = B22, fy0 = f_, cy0 = on8, sy0 = Yr5, ay0 = w1, oy0 = "ComponentDeclaration", vy0 = $1, ly0 = OE, py0 = fn5, ky0 = Ea2, my0 = jm2, hy0 = T6, dy0 = X62, yy0 = Ye4, _y0 = "ComponentParameter", wy0 = ks5, gy0 = Yr5, by0 = "EnumBigIntMember", Ty0 = Yr5, Ey0 = LR, Sy0 = ks5, Ay0 = Yr5, Iy0 = "EnumStringMember", Py0 = Yr5, Cy0 = LR, Ny0 = ks5, Oy0 = Yr5, jy0 = "EnumNumberMember", Dy0 = ks5, Ry0 = Yr5, Fy0 = "EnumBooleanMember", My0 = B6, Ly0 = Am2, qy0 = y6, By0 = "EnumBooleanBody", Uy0 = B6, Xy0 = Am2, Gy0 = y6, Yy0 = "EnumNumberBody", zy0 = B6, Jy0 = Am2, Ky0 = y6, Hy0 = "EnumStringBody", Wy0 = B6, Vy0 = y6, $y0 = "EnumSymbolBody", Qy0 = B6, Zy0 = Am2, x90 = y6, r90 = "EnumBigIntBody", e90 = w1, t90 = Yr5, n90 = "EnumDeclaration", u90 = mc2, i90 = w1, f90 = B22, c90 = Yr5, s90 = "InterfaceDeclaration", a90 = B22, o90 = Yr5, v90 = "InterfaceExtends", l90 = Y1, p90 = A6, k90 = "ObjectPattern", m90 = Y1, h90 = KT, d90 = "ArrayPattern", y90 = fn5, _90 = Ea2, w90 = jm2, g90 = Y1, b90 = Ye4, T90 = US, E90 = $1, S90 = OE, A90 = $1, I90 = OE, P90 = fn5, C90 = Ea2, N90 = jm2, O90 = ks5, j90 = ks5, D90 = Nv, R90 = nl2, F90 = VD, M90 = W32, L90 = T6, q90 = V6, B90 = ba2, U90 = m1, X90 = en4, G90 = mF, Y90 = $1, z90 = iR, J90 = fn5, K90 = Ea2, H90 = jm2, W90 = W32, V90 = T6, $90 = V6, Q90 = ba2, Z90 = m1, x_0 = en4, r_0 = mF, e_0 = $1, t_0 = iR, n_0 = At8, u_0 = m1, i_0 = J32, f_0 = rx, c_0 = At8, s_0 = $v, a_0 = m1, o_0 = J32, v_0 = At8, l_0 = m1, p_0 = J32, k_0 = Pa2, m_0 = wa2, h_0 = At8, d_0 = m1, y_0 = J32, __0 = "flags", w_0 = ge6, g_0 = "regex", b_0 = At8, T_0 = m1, E_0 = J32, S_0 = At8, A_0 = m1, I_0 = J32, P_0 = rM, C_0 = "quasis", N_0 = "TemplateLiteral", O_0 = "cooked", j_0 = At8, D_0 = "tail", R_0 = m1, F_0 = "TemplateElement", M_0 = "quasi", L_0 = "tag", q_0 = "TaggedTemplateExpression", B_0 = ba2, U_0 = "declarations", X_0 = "VariableDeclaration", G_0 = ks5, Y_0 = Yr5, z_0 = "VariableDeclarator", J_0 = "plus", K_0 = nM, H_0 = Xv, W_0 = bo3, V_0 = ng, $_0 = "in-out", Q_0 = ba2, Z_0 = "Variance", xw0 = "AnyTypeAnnotation", rw0 = "MixedTypeAnnotation", ew0 = "EmptyTypeAnnotation", tw0 = "VoidTypeAnnotation", nw0 = "NullLiteralTypeAnnotation", uw0 = "SymbolTypeAnnotation", iw0 = "NumberTypeAnnotation", fw0 = "BigIntTypeAnnotation", cw0 = "StringTypeAnnotation", sw0 = "BooleanTypeAnnotation", aw0 = Y1, ow0 = "NullableTypeAnnotation", vw0 = "UnknownTypeAnnotation", lw0 = "NeverTypeAnnotation", pw0 = "UndefinedTypeAnnotation", kw0 = ba2, mw0 = Y1, hw0 = "parameterName", dw0 = "TypePredicate", yw0 = "HookTypeAnnotation", _w0 = "FunctionTypeAnnotation", ww0 = Bv, gw0 = B22, bw0 = p6, Tw0 = gh, Ew0 = on8, Sw0 = ft7, Aw0 = Y1, Iw0 = Ye4, Pw0 = fM, Cw0 = ft7, Nw0 = Y1, Ow0 = Ye4, jw0 = fM, Dw0 = [0, 0, 0, 0, 0], Rw0 = "internalSlots", Fw0 = "callProperties", Mw0 = "indexers", Lw0 = A6, qw0 = "exact", Bw0 = tL, Uw0 = "ObjectTypeAnnotation", Xw0 = VD, Gw0 = "There should not be computed object type property keys", Yw0 = ks5, zw0 = Nv, Jw0 = nl2, Kw0 = ba2, Hw0 = $22, Ww0 = rw, Vw0 = Ue5, $w0 = ft7, Qw0 = V6, Zw0 = m1, xg0 = en4, rg0 = "ObjectTypeProperty", eg0 = $1, tg0 = "ObjectTypeSpreadProperty", ng0 = $22, ug0 = Ue5, ig0 = m1, fg0 = en4, cg0 = Yr5, sg0 = "ObjectTypeIndexer", ag0 = Ue5, og0 = m1, vg0 = "ObjectTypeCallProperty", lg0 = ft7, pg0 = $22, kg0 = "sourceType", mg0 = "propType", hg0 = "keyTparam", dg0 = "ObjectTypeMappedTypeProperty", yg0 = m1, _g0 = V6, wg0 = Ue5, gg0 = ft7, bg0 = Yr5, Tg0 = "ObjectTypeInternalSlot", Eg0 = w1, Sg0 = mc2, Ag0 = "InterfaceTypeAnnotation", Ig0 = QM, Pg0 = "ArrayTypeAnnotation", Cg0 = "falseType", Ng0 = "trueType", Og0 = "extendsType", jg0 = "checkType", Dg0 = "ConditionalTypeAnnotation", Rg0 = "typeParameter", Fg0 = "InferTypeAnnotation", Mg0 = Yr5, Lg0 = UF, qg0 = "QualifiedTypeIdentifier", Bg0 = B22, Ug0 = Yr5, Xg0 = "GenericTypeAnnotation", Gg0 = "indexType", Yg0 = "objectType", zg0 = "IndexedAccessType", Jg0 = ft7, Kg0 = "OptionalIndexedAccessType", Hg0 = w_, Wg0 = "UnionTypeAnnotation", Vg0 = w_, $g0 = "IntersectionTypeAnnotation", Qg0 = h8, Zg0 = $1, xb0 = "TypeofTypeAnnotation", rb0 = Yr5, eb0 = UF, tb0 = "QualifiedTypeofIdentifier", nb0 = $1, ub0 = "KeyofTypeAnnotation", ib0 = el2, fb0 = jF, cb0 = uF, sb0 = Y1, ab0 = Gv, ob0 = "TypeOperator", vb0 = Xv, lb0 = tL, pb0 = "elementTypes", kb0 = "TupleTypeAnnotation", mb0 = ft7, hb0 = $22, db0 = QM, yb0 = S6, _b0 = "TupleTypeLabeledElement", wb0 = Y1, gb0 = S6, bb0 = "TupleTypeSpreadElement", Tb0 = At8, Eb0 = m1, Sb0 = "StringLiteralTypeAnnotation", Ab0 = At8, Ib0 = m1, Pb0 = "NumberLiteralTypeAnnotation", Cb0 = At8, Nb0 = m1, Ob0 = "BigIntLiteralTypeAnnotation", jb0 = Pa2, Db0 = wa2, Rb0 = At8, Fb0 = m1, Mb0 = "BooleanLiteralTypeAnnotation", Lb0 = "ExistsTypeAnnotation", qb0 = Y1, Bb0 = vF, Ub0 = Y1, Xb0 = vF, Gb0 = on8, Yb0 = "TypeParameterDeclaration", zb0 = "usesExtendsBound", Jb0 = Fv, Kb0 = $22, Hb0 = No3, Wb0 = "bound", Vb0 = Ye4, $b0 = "TypeParameter", Qb0 = on8, Zb0 = mM, xT0 = on8, rT0 = mM, eT0 = Pv, tT0 = OL, nT0 = "closingElement", uT0 = "openingElement", iT0 = "JSXElement", fT0 = "closingFragment", cT0 = OL, sT0 = "openingFragment", aT0 = "JSXFragment", oT0 = h8, vT0 = "selfClosing", lT0 = "attributes", pT0 = Ye4, kT0 = "JSXOpeningElement", mT0 = "JSXOpeningFragment", hT0 = Ye4, dT0 = "JSXClosingElement", yT0 = "JSXClosingFragment", _T0 = m1, wT0 = Ye4, gT0 = "JSXAttribute", bT0 = $1, TT0 = "JSXSpreadAttribute", ET0 = "JSXEmptyExpression", ST0 = t24, AT0 = "JSXExpressionContainer", IT0 = t24, PT0 = "JSXSpreadChild", CT0 = At8, NT0 = m1, OT0 = "JSXText", jT0 = Tm2, DT0 = Dp2, RT0 = "JSXMemberExpression", FT0 = Ye4, MT0 = rE, LT0 = "JSXNamespacedName", qT0 = Ye4, BT0 = "JSXIdentifier", UT0 = cA, XT0 = X62, GT0 = "ExportSpecifier", YT0 = X62, zT0 = "ImportDefaultSpecifier", JT0 = X62, KT0 = "ImportNamespaceSpecifier", HT0 = XD, WT0 = X62, VT0 = "imported", $T0 = "ImportSpecifier", QT0 = "Line", ZT0 = "Block", xE0 = m1, rE0 = m1, eE0 = "DeclaredPredicate", tE0 = "InferredPredicate", nE0 = Qb, uE0 = h8, iE0 = fR, fE0 = W32, cE0 = Tm2, sE0 = Dp2, aE0 = "message", oE0 = Yx, vE0 = wD, lE0 = vR, pE0 = Wv, kE0 = G6, mE0 = Kk, hE0 = [0, ss5, fi6, _c2, Ni6, di6, Cs4, mf, si6, sf, z7, eu2, zc2, _u2, e7, Ve7, bs5, Mc2, W72, hf, Ff, Es4, Xi6, Z7, Ii6, lc2, I7, Ec2, O7, of, Fu2, tu2, Ku2, jc2, hi6, m7, pf, Ic2, Vf, gs5, wc2, ys5, St8, V7, Mf2, $f2, lf, Ji6, ti6, l7, f7, Ac2, Lf, vi6, Hi6, rs5, Vc2, U7, Au2, fu2, Kn4, Ou2, bu2, ai6, Ui6, Si6, ji6, es5, Af, pu2, Ki6, qi6, X72, Lu2, Zu2, ms5, Wf, o7, Ge7, r7, Qi6, x7, Gf, dc2, D7, qc2, G1, ff, $n3, Oc2, E7, Nf, Tc2, g7, kc2, su2, P7, tf, Gc2, Yn3, Mu2, a7, Eu2, vc2, j7, _i6, T7, $22, Pi6, ou2, d7, w7, Ri6, wu2, ki6, Ci6, Q7, Rc2, Wu2, Oi6, ic2, be6, v7, vu2, H22, Hn4, Uc2, zi6, xf2, Du2, $c2, xc2, Yc2, If2, ls5, Gi6, Ef, yu2, $u2, pc2, du2, Xf, Pu2, oc2, xi6, Cc2, Hc2, Nc2, Wn3, yf, Bc2, bi6, mi6, Uf, Ps6, Hf, qf, _f2, ii6, Qu2, Uu2, Rf2, B7, is5, ws5, y7, oi6, S7, ru2, bc2, H7, Hu2, xu2, Sc2, u7, Ei6, Pf2, yi5, Jn3, L7, ps5, Y7, Tf, gc2, Xu2, W22, Je7, F7, J72, Jc2, jf, He7, Ke7, n7, cs5, Vu2, p7, ds5, ge6, iu2, As5, Bf, cc2, sc2, Un3, cu2, Mi5, Ru2, hu2, Ts4, q72, fs24, fc2, Qn3, Vi6, uc2, qu2, Xc2, A7, ns5, ni6, lu2, Xn4, Df2, Pc2, Fc2, ac2, kf2, M7, Vn3, ui6, wi6, uu2, c7, gi6, G7, zn4, Bi6, ju2, Sf, i7, _7, Gn4, Qf, Su2, zu2, zf, ei6, Cu2, vf2, nf, Zf, tn4, h7, Ju2, li6, Zn4, qn4, Bu2, Di6, ri6, ku2, Zi6, Zc2, Yu2, C7, gu2, Jf, cf, s7, Tu2, df, K7, Bn3, Ti6, R7, t24, Ai6, uf, ts5, hs5, Iu2, wf, k7, Xe6, gf, _s5, af, Yi6, hc2, yc2, Wi6, Qc2, vs6, Is6, Fi6, bf, os7, rc2, vn3, as5, Gu2, Dc2, Kf, nc2, us5, pi6, ci6, Yf, We7, Lc2, ae4, N7, rf, $i6, mu2, Of, b7, Wc2, au2, t72, Kc2], dE0 = [0, H22, of, $i6, V7, $22, qf, h7, pc2, bc2, Rf2, Gi6, Du2, Fi6, hu2, F7, d7, Qu2, Uf, J72, ui6, cf, X72, Zn4, Zf, _u2, vu2, $n3, ac2, Ps6, oc2, _f2, Sf, Es4, Uc2, jc2, Q7, He7, t72, Wi6, s7, Qc2, Bi6, ic2, rs5, Ve7, Jc2, Uu2, fu2, k7, ss5, ii6, lu2, T7, Je7, ci6, w7, Of, qu2, fc2, Ku2, pi6, q72, a7, If2, _7, fs24, Ge7, Lf, Pi6, Zu2, M7, pu2, xf2, af, P7, $f2, au2, Fc2, Zi6, m7, Bn3, jf, Fu2, Y7, bi6, $c2, Ai6, Eu2, ge6, es5, x7, rc2, Vu2, bs5, Wn3, e7, o7, Kf, Pc2, Vn3, r7, Xi6, Qf, kf2, Lu2, sf, Xn4, Vc2, zu2, ni6, Oi6, Hu2, $u2, si6, n7, Ii6, Zc2, Ui6, ys5, Gf, Kc2, Xu2, Mu2, Ei6, Cc2, wu2, Kn4, hs5, df, W72, Ki6, uc2, hf, Nf, uu2, du2, E7, ps5, L7, mf, gu2, Au2, Cu2, Yc2, su2, os7, N7, oi6, G1, g7, Hn4, Bc2, ai6, pf, ku2, xu2, Tf, Jf, ms5, Tc2, Dc2, z7, dc2, Bu2, zf, f7, D7, Z7, Xf, I7, ds5, fi6, Mi5, Di6, Rc2, zn4, Yu2, xi6, eu2, vf2, ae4, lc2, is5, cc2, Ou2, Df2, as5, Vi6, Gn4, W22, Ri6, U7, cs5, St8, Ni6, qc2, gs5, tu2, i7, vi6, Ru2, di6, Qi6, S7, kc2, _c2, ti6, cu2, gf, nc2, As5, Iu2, wf, Qn3, vs6, Ci6, hi6, Hi6, ws5, bf, v7, b7, Mf2, mi6, C7, Nc2, ts5, p7, t24, Un3, Mc2, yf, Is6, A7, Yn3, Yi6, Ac2, Yf, Xc2, Oc2, Ts4, O7, Hc2, Bf, wc2, Ec2, bu2, ju2, j7, be6, nf, Ju2, qn4, hc2, Ic2, wi6, Gc2, gi6, lf, yu2, zi6, ou2, xc2, us5, Ke7, Xe6, rf, ff, ri6, Wc2, ns5, K7, mu2, Vf, Sc2, _s5, Jn3, gc2, qi6, Hf, ru2, uf, H7, yc2, Ef, ji6, y7, sc2, Wf, B7, ei6, Si6, yi5, Wu2, Ff, Gu2, Su2, Pf2, c7, li6, l7, Ji6, _i6, Cs4, We7, iu2, zc2, vn3, G7, R7, ki6, ls5, u7, Tu2, Pu2, Ti6, Lc2, tf, vc2, tn4, Af], yE0 = [0, Af, tn4, vc2, tf, Lc2, Ti6, Pu2, Tu2, u7, ls5, ki6, R7, G7, vn3, zc2, iu2, We7, Cs4, _i6, Ji6, l7, li6, c7, Pf2, Su2, Gu2, Ff, Wu2, yi5, Si6, ei6, B7, Wf, sc2, y7, ji6, Ef, yc2, H7, uf, ru2, Hf, qi6, gc2, Jn3, _s5, Sc2, Vf, mu2, K7, ns5, Wc2, ri6, ff, rf, Xe6, Ke7, us5, xc2, ou2, zi6, yu2, lf, gi6, Gc2, wi6, Ic2, hc2, qn4, Ju2, nf, be6, j7, ju2, bu2, Ec2, wc2, Bf, Hc2, O7, Ts4, Oc2, Xc2, Yf, Ac2, Yi6, Yn3, A7, Is6, yf, Mc2, Un3, t24, p7, ts5, Nc2, C7, mi6, Mf2, b7, v7, bf, ws5, Hi6, hi6, Ci6, vs6, Qn3, wf, Iu2, As5, nc2, gf, cu2, ti6, _c2, kc2, S7, Qi6, di6, Ru2, vi6, i7, tu2, gs5, qc2, Ni6, St8, cs5, U7, Ri6, W22, Gn4, Vi6, as5, Df2, Ou2, cc2, is5, lc2, ae4, vf2, eu2, xi6, Yu2, zn4, Rc2, Di6, Mi5, fi6, ds5, I7, Xf, Z7, D7, f7, zf, Bu2, dc2, z7, Dc2, Tc2, ms5, Jf, Tf, xu2, ku2, pf, ai6, Bc2, Hn4, g7, G1, oi6, N7, os7, su2, Yc2, Cu2, Au2, gu2, mf, L7, ps5, E7, du2, uu2, Nf, hf, uc2, Ki6, W72, df, hs5, Kn4, wu2, Cc2, Ei6, Mu2, Xu2, Kc2, Gf, ys5, Ui6, Zc2, Ii6, n7, si6, $u2, Hu2, Oi6, ni6, zu2, Vc2, Xn4, sf, Lu2, kf2, Qf, Xi6, r7, Vn3, Pc2, Kf, o7, e7, Wn3, bs5, Vu2, rc2, x7, es5, ge6, Eu2, Ai6, $c2, bi6, Y7, Fu2, jf, Bn3, m7, Zi6, Fc2, au2, $f2, P7, af, xf2, pu2, M7, Zu2, Pi6, Lf, Ge7, fs24, _7, If2, a7, q72, pi6, Ku2, fc2, qu2, Of, w7, ci6, Je7, T7, lu2, ii6, ss5, k7, fu2, Uu2, Jc2, Ve7, rs5, ic2, Bi6, Qc2, s7, Wi6, t72, He7, Q7, jc2, Uc2, Es4, Sf, _f2, oc2, Ps6, ac2, $n3, vu2, _u2, Zf, Zn4, X72, cf, ui6, J72, Uf, Qu2, d7, F7, hu2, Fi6, Du2, Gi6, Rf2, bc2, pc2, h7, qf, $22, V7, $i6, of, H22], _E0 = "Jsoo_runtime.Error.Exn", wE0 = [0, 0], gE0 = "assert_operator", bE0 = "use_strict", TE0 = w_, EE0 = "esproposal_decorators", SE0 = "records", AE0 = "pattern_matching", IE0 = "enums", PE0 = "components", CE0 = "Internal error: ", NE0 = [t1, "CamlinternalLazy.Undefined", js6(0)];
57950
57950
  function OE0(x6, r) {
57951
57951
  var e6 = Rx(r) - 1 | 0, t25 = 0;
57952
57952
  if (e6 >= 0)
@@ -83086,7 +83086,7 @@ var Un3, Oe6 = (e2, t24) => {
83086
83086
  `).map((s) => s.slice(r)).join(`
83087
83087
  `);
83088
83088
  }
83089
- }, Rr5, ns5, ss5, R7, Bt5, Ue5, qr4, Fr5, Hr4, Rt6 = null, os8 = 10, Ur5, cs5, $a3, Xa3, ze6, Mr5, us5, Vt7, Ye4, tt7, Wr3, jr3, Ft7, hs5 = function(e2, t24, r) {
83089
+ }, Rr5, ns5, ss5, R7, Bt5, Ue5, qr4, Fr5, Hr4, Rt6 = null, os7 = 10, Ur5, cs5, $a3, Xa3, ze6, Mr5, us5, Vt7, Ye4, tt7, Wr3, jr3, Ft7, hs5 = function(e2, t24, r) {
83090
83090
  if (r || arguments.length === 2)
83091
83091
  for (var s = 0, n3 = t24.length, i2;s < n3; s++)
83092
83092
  (i2 || !(s in t24)) && (i2 || (i2 = Array.prototype.slice.call(t24, 0, s)), i2[s] = t24[s]);
@@ -83660,7 +83660,7 @@ var init_glimmer = __esm(() => {
83660
83660
  Vr5.ignoredProperties = new Set(["loc", "selfClosing"]);
83661
83661
  Fr5 = Vr5;
83662
83662
  Hr4 = as5;
83663
- for (let e2 = 0;e2 <= os8; e2++)
83663
+ for (let e2 = 0;e2 <= os7; e2++)
83664
83664
  qt5();
83665
83665
  Ur5 = ls5;
83666
83666
  cs5 = Object.freeze([]);
@@ -89426,9 +89426,9 @@ If '${e7}' is a directive input, make sure the directive is imported by the curr
89426
89426
  super(e7), this.msg = e7, this.cursor = t24, Object.setPrototypeOf(this, new.target.prototype);
89427
89427
  }
89428
89428
  };
89429
- N8 = class os9 extends ne8 {
89429
+ N8 = class os8 extends ne8 {
89430
89430
  static create(t24, r, n3) {
89431
- return new os9(t24, r, n3);
89431
+ return new os8(t24, r, n3);
89432
89432
  }
89433
89433
  constructor(t24, r, n3) {
89434
89434
  super(r, n3), this.elementName = t24;
@@ -92331,9 +92331,9 @@ $$`;
92331
92331
  }
92332
92332
  }
92333
92333
  });
92334
- ss7 = x7((t24, os10) => {
92334
+ ss7 = x7((t24, os9) => {
92335
92335
  var g0 = $e8(), E0 = hn6(), C0 = cn6().tag;
92336
- os10.exports = as7;
92336
+ os9.exports = as7;
92337
92337
  as7.locator = E0;
92338
92338
  var v0 = "<", A0 = "?", b0 = "!", x0 = "/", y0 = /^<a /i, w0 = /^<\/a>/i;
92339
92339
  function as7(e7, r, t25) {
@@ -97396,12 +97396,12 @@ var init_postcss = __esm(() => {
97396
97396
  Sl4 = Object.getOwnPropertyNames;
97397
97397
  kl4 = Object.getPrototypeOf;
97398
97398
  Tl4 = Object.prototype.hasOwnProperty;
97399
- Oi8 = w6((ux, os10) => {
97399
+ Oi8 = w6((ux, os9) => {
97400
97400
  var x9 = String, Ai9 = function() {
97401
97401
  return { isColorSupported: false, reset: x9, bold: x9, dim: x9, italic: x9, underline: x9, inverse: x9, hidden: x9, strikethrough: x9, black: x9, red: x9, green: x9, yellow: x9, blue: x9, magenta: x9, cyan: x9, white: x9, gray: x9, bgBlack: x9, bgRed: x9, bgGreen: x9, bgYellow: x9, bgBlue: x9, bgMagenta: x9, bgCyan: x9, bgWhite: x9, blackBright: x9, redBright: x9, greenBright: x9, yellowBright: x9, blueBright: x9, magentaBright: x9, cyanBright: x9, whiteBright: x9, bgBlackBright: x9, bgRedBright: x9, bgGreenBright: x9, bgYellowBright: x9, bgBlueBright: x9, bgMagentaBright: x9, bgCyanBright: x9, bgWhiteBright: x9 };
97402
97402
  };
97403
- os10.exports = Ai9();
97404
- os10.exports.createColors = Ai9;
97403
+ os9.exports = Ai9();
97404
+ os9.exports.createColors = Ai9;
97405
97405
  });
97406
97406
  as7 = w6(() => {});
97407
97407
  zt10 = w6((fx, Pi8) => {
@@ -105173,7 +105173,7 @@ function wf2(e8, t25) {
105173
105173
  return _10();
105174
105174
  }, get converters() {
105175
105175
  return f6();
105176
- }, baseFactory: t25, flags: e8, createNodeArray: de11, createNumericLiteral: V12, createBigIntLiteral: oe10, createStringLiteral: ft12, createStringLiteralFromNode: nr9, createRegularExpressionLiteral: mn8, createLiteralLikeNode: rr8, createIdentifier: We13, createTempVariable: ir10, createLoopVariable: Ir6, createUniqueName: Ot13, getGeneratedNameForNode: Bn7, createPrivateIdentifier: Mt13, createUniquePrivateName: $e11, getGeneratedPrivateNameForNode: qn8, createToken: ot10, createSuper: at12, createThis: Bt11, createNull: Lt12, createTrue: ct11, createFalse: ar9, createModifier: dt10, createModifiersFromModifierFlags: yn9, createQualifiedName: yt12, updateQualifiedName: _n7, createComputedPropertyName: tt12, updateComputedPropertyName: qt11, createTypeParameterDeclaration: tn8, updateTypeParameterDeclaration: sr10, createParameterDeclaration: mr7, updateParameterDeclaration: hr8, createDecorator: Fn6, updateDecorator: zn9, createPropertySignature: Or7, updatePropertySignature: Vn7, createPropertyDeclaration: yr7, updatePropertyDeclaration: L10, createMethodSignature: se11, updateMethodSignature: fe11, createMethodDeclaration: Te10, updateMethodDeclaration: He11, createConstructorDeclaration: lt10, updateConstructorDeclaration: Mr8, createGetAccessorDeclaration: Nn6, updateGetAccessorDeclaration: Wn8, createSetAccessorDeclaration: U11, updateSetAccessorDeclaration: K12, createCallSignature: xe10, updateCallSignature: Se12, createConstructSignature: we10, updateConstructSignature: me13, createIndexSignature: Ve10, updateIndexSignature: Ze12, createClassStaticBlockDeclaration: st10, updateClassStaticBlockDeclaration: Ct14, createTemplateLiteralTypeSpan: Ye10, updateTemplateLiteralTypeSpan: Ee10, createKeywordTypeNode: gn8, createTypePredicateNode: rt14, updateTypePredicateNode: on12, createTypeReferenceNode: Zr8, updateTypeReferenceNode: M12, createFunctionTypeNode: Ue10, updateFunctionTypeNode: u4, createConstructorTypeNode: Me12, updateConstructorTypeNode: nn10, createTypeQueryNode: Dt12, updateTypeQueryNode: wt13, createTypeLiteralNode: Pt13, updateTypeLiteralNode: Ft13, createArrayTypeNode: Gn8, updateArrayTypeNode: ki10, createTupleTypeNode: cn9, updateTupleTypeNode: H12, createNamedTupleMember: le9, updateNamedTupleMember: qe11, createOptionalTypeNode: ve12, updateOptionalTypeNode: J14, createRestTypeNode: mt12, updateRestTypeNode: xt11, createUnionTypeNode: ql4, updateUnionTypeNode: C_, createIntersectionTypeNode: Lr8, updateIntersectionTypeNode: Le12, createConditionalTypeNode: pt12, updateConditionalTypeNode: Fl3, createInferTypeNode: Yn7, updateInferTypeNode: zl4, createImportTypeNode: _r8, updateImportTypeNode: oa3, createParenthesizedType: Qt11, updateParenthesizedType: At14, createThisTypeNode: P9, createTypeOperatorNode: Gt10, updateTypeOperatorNode: Jr6, createIndexedAccessTypeNode: or9, updateIndexedAccessTypeNode: Ka4, createMappedTypeNode: gt12, updateMappedTypeNode: jt9, createLiteralTypeNode: ei10, updateLiteralTypeNode: br7, createTemplateLiteralType: Wt12, updateTemplateLiteralType: Vl4, createObjectBindingPattern: D_, updateObjectBindingPattern: Wl4, createArrayBindingPattern: jr6, updateArrayBindingPattern: Gl4, createBindingElement: ca4, updateBindingElement: ti10, createArrayLiteralExpression: Za3, updateArrayLiteralExpression: P_, createObjectLiteralExpression: Ei10, updateObjectLiteralExpression: Yl4, createPropertyAccessExpression: e8 & 4 ? (n4, i4) => setEmitFlags(cr8(n4, i4), 262144) : cr8, updatePropertyAccessExpression: Hl4, createPropertyAccessChain: e8 & 4 ? (n4, i4, s4) => setEmitFlags(Ai9(n4, i4, s4), 262144) : Ai9, updatePropertyAccessChain: la3, createElementAccessExpression: Ci8, updateElementAccessExpression: Xl4, createElementAccessChain: O_, updateElementAccessChain: es8, createCallExpression: Di8, updateCallExpression: ua5, createCallChain: ts8, updateCallChain: L_, createNewExpression: bn7, updateNewExpression: ns8, createTaggedTemplateExpression: pa5, updateTaggedTemplateExpression: J_, createTypeAssertion: j_, updateTypeAssertion: R_, createParenthesizedExpression: rs8, updateParenthesizedExpression: U_, createFunctionExpression: is8, updateFunctionExpression: B_, createArrowFunction: as8, updateArrowFunction: q_, createDeleteExpression: F_, updateDeleteExpression: z_, createTypeOfExpression: fa4, updateTypeOfExpression: un8, createVoidExpression: ss9, updateVoidExpression: lr8, createAwaitExpression: V_, updateAwaitExpression: Rr7, createPrefixUnaryExpression: Ur8, updatePrefixUnaryExpression: $l4, createPostfixUnaryExpression: ni10, updatePostfixUnaryExpression: Ql4, createBinaryExpression: da5, updateBinaryExpression: Kl4, createConditionalExpression: G_, updateConditionalExpression: Y_, createTemplateExpression: H_, updateTemplateExpression: Hn8, createTemplateHead: $_, createTemplateMiddle: ma5, createTemplateTail: _s7, createNoSubstitutionTemplateLiteral: eu4, createTemplateLiteralLikeNode: ii10, createYieldExpression: os10, updateYieldExpression: tu3, createSpreadElement: Q_, updateSpreadElement: nu3, createClassExpression: K_, updateClassExpression: cs7, createOmittedExpression: ls7, createExpressionWithTypeArguments: Z_, updateExpressionWithTypeArguments: eo5, createAsExpression: pn8, updateAsExpression: ha2, createNonNullExpression: to5, updateNonNullExpression: no6, createSatisfiesExpression: us8, updateSatisfiesExpression: ro5, createNonNullChain: ps7, updateNonNullChain: In7, createMetaProperty: io5, updateMetaProperty: fs26, createTemplateSpan: Xn9, updateTemplateSpan: ya3, createSemicolonClassElement: ao5, createBlock: Br8, updateBlock: ru4, createVariableStatement: ds7, updateVariableStatement: so5, createEmptyStatement: _o3, createExpressionStatement: Ni9, updateExpressionStatement: oo6, createIfStatement: co5, updateIfStatement: lo5, createDoStatement: uo5, updateDoStatement: po6, createWhileStatement: fo5, updateWhileStatement: iu3, createForStatement: mo3, updateForStatement: ho3, createForInStatement: ms8, updateForInStatement: au3, createForOfStatement: yo3, updateForOfStatement: su3, createContinueStatement: go3, updateContinueStatement: _u4, createBreakStatement: hs8, updateBreakStatement: bo5, createReturnStatement: ys8, updateReturnStatement: ou3, createWithStatement: gs7, updateWithStatement: vo4, createSwitchStatement: bs8, updateSwitchStatement: ai10, createLabeledStatement: To4, updateLabeledStatement: xo4, createThrowStatement: So4, updateThrowStatement: cu3, createTryStatement: wo6, updateTryStatement: lu4, createDebuggerStatement: ko3, createVariableDeclaration: ga2, updateVariableDeclaration: Eo3, createVariableDeclarationList: vs9, updateVariableDeclarationList: uu4, createFunctionDeclaration: Ao3, updateFunctionDeclaration: Ts6, createClassDeclaration: Co3, updateClassDeclaration: ba3, createInterfaceDeclaration: Do3, updateInterfaceDeclaration: Po5, createTypeAliasDeclaration: _t10, updateTypeAliasDeclaration: vr6, createEnumDeclaration: xs8, updateEnumDeclaration: Tr7, createModuleDeclaration: No3, updateModuleDeclaration: kt14, createModuleBlock: xr6, updateModuleBlock: zt11, createCaseBlock: Io6, updateCaseBlock: fu4, createNamespaceExportDeclaration: Oo5, updateNamespaceExportDeclaration: Mo3, createImportEqualsDeclaration: Lo4, updateImportEqualsDeclaration: Jo5, createImportDeclaration: jo4, updateImportDeclaration: Ro3, createImportClause: Uo4, updateImportClause: Bo4, createAssertClause: Ss8, updateAssertClause: mu3, createAssertEntry: Ii8, updateAssertEntry: qo4, createImportTypeAssertionContainer: ws8, updateImportTypeAssertionContainer: Fo3, createImportAttributes: zo4, updateImportAttributes: ks8, createImportAttribute: Vo3, updateImportAttribute: Wo3, createNamespaceImport: Go3, updateNamespaceImport: hu4, createNamespaceExport: Yo4, updateNamespaceExport: yu5, createNamedImports: Ho3, updateNamedImports: Xo3, createImportSpecifier: Sr7, updateImportSpecifier: gu4, createExportAssignment: va4, updateExportAssignment: Oi9, createExportDeclaration: Ta3, updateExportDeclaration: $o3, createNamedExports: Es8, updateNamedExports: bu4, createExportSpecifier: xa5, updateExportSpecifier: vu4, createMissingDeclaration: Tu5, createExternalModuleReference: As8, updateExternalModuleReference: xu3, get createJSDocAllType() {
105176
+ }, baseFactory: t25, flags: e8, createNodeArray: de11, createNumericLiteral: V12, createBigIntLiteral: oe10, createStringLiteral: ft12, createStringLiteralFromNode: nr9, createRegularExpressionLiteral: mn8, createLiteralLikeNode: rr8, createIdentifier: We13, createTempVariable: ir10, createLoopVariable: Ir6, createUniqueName: Ot13, getGeneratedNameForNode: Bn7, createPrivateIdentifier: Mt13, createUniquePrivateName: $e11, getGeneratedPrivateNameForNode: qn8, createToken: ot10, createSuper: at12, createThis: Bt11, createNull: Lt12, createTrue: ct11, createFalse: ar9, createModifier: dt10, createModifiersFromModifierFlags: yn9, createQualifiedName: yt12, updateQualifiedName: _n7, createComputedPropertyName: tt12, updateComputedPropertyName: qt11, createTypeParameterDeclaration: tn8, updateTypeParameterDeclaration: sr10, createParameterDeclaration: mr7, updateParameterDeclaration: hr8, createDecorator: Fn6, updateDecorator: zn9, createPropertySignature: Or7, updatePropertySignature: Vn7, createPropertyDeclaration: yr7, updatePropertyDeclaration: L10, createMethodSignature: se11, updateMethodSignature: fe11, createMethodDeclaration: Te10, updateMethodDeclaration: He11, createConstructorDeclaration: lt10, updateConstructorDeclaration: Mr8, createGetAccessorDeclaration: Nn6, updateGetAccessorDeclaration: Wn8, createSetAccessorDeclaration: U11, updateSetAccessorDeclaration: K12, createCallSignature: xe10, updateCallSignature: Se12, createConstructSignature: we10, updateConstructSignature: me13, createIndexSignature: Ve10, updateIndexSignature: Ze12, createClassStaticBlockDeclaration: st10, updateClassStaticBlockDeclaration: Ct14, createTemplateLiteralTypeSpan: Ye10, updateTemplateLiteralTypeSpan: Ee10, createKeywordTypeNode: gn8, createTypePredicateNode: rt14, updateTypePredicateNode: on12, createTypeReferenceNode: Zr8, updateTypeReferenceNode: M12, createFunctionTypeNode: Ue10, updateFunctionTypeNode: u4, createConstructorTypeNode: Me12, updateConstructorTypeNode: nn10, createTypeQueryNode: Dt12, updateTypeQueryNode: wt13, createTypeLiteralNode: Pt13, updateTypeLiteralNode: Ft13, createArrayTypeNode: Gn8, updateArrayTypeNode: ki10, createTupleTypeNode: cn9, updateTupleTypeNode: H12, createNamedTupleMember: le9, updateNamedTupleMember: qe11, createOptionalTypeNode: ve12, updateOptionalTypeNode: J14, createRestTypeNode: mt12, updateRestTypeNode: xt11, createUnionTypeNode: ql4, updateUnionTypeNode: C_, createIntersectionTypeNode: Lr8, updateIntersectionTypeNode: Le12, createConditionalTypeNode: pt12, updateConditionalTypeNode: Fl3, createInferTypeNode: Yn7, updateInferTypeNode: zl4, createImportTypeNode: _r8, updateImportTypeNode: oa3, createParenthesizedType: Qt11, updateParenthesizedType: At14, createThisTypeNode: P9, createTypeOperatorNode: Gt10, updateTypeOperatorNode: Jr6, createIndexedAccessTypeNode: or9, updateIndexedAccessTypeNode: Ka4, createMappedTypeNode: gt12, updateMappedTypeNode: jt9, createLiteralTypeNode: ei10, updateLiteralTypeNode: br7, createTemplateLiteralType: Wt12, updateTemplateLiteralType: Vl4, createObjectBindingPattern: D_, updateObjectBindingPattern: Wl4, createArrayBindingPattern: jr6, updateArrayBindingPattern: Gl4, createBindingElement: ca4, updateBindingElement: ti10, createArrayLiteralExpression: Za3, updateArrayLiteralExpression: P_, createObjectLiteralExpression: Ei10, updateObjectLiteralExpression: Yl4, createPropertyAccessExpression: e8 & 4 ? (n4, i4) => setEmitFlags(cr8(n4, i4), 262144) : cr8, updatePropertyAccessExpression: Hl4, createPropertyAccessChain: e8 & 4 ? (n4, i4, s4) => setEmitFlags(Ai9(n4, i4, s4), 262144) : Ai9, updatePropertyAccessChain: la3, createElementAccessExpression: Ci8, updateElementAccessExpression: Xl4, createElementAccessChain: O_, updateElementAccessChain: es8, createCallExpression: Di8, updateCallExpression: ua5, createCallChain: ts8, updateCallChain: L_, createNewExpression: bn7, updateNewExpression: ns8, createTaggedTemplateExpression: pa5, updateTaggedTemplateExpression: J_, createTypeAssertion: j_, updateTypeAssertion: R_, createParenthesizedExpression: rs8, updateParenthesizedExpression: U_, createFunctionExpression: is8, updateFunctionExpression: B_, createArrowFunction: as8, updateArrowFunction: q_, createDeleteExpression: F_, updateDeleteExpression: z_, createTypeOfExpression: fa4, updateTypeOfExpression: un8, createVoidExpression: ss9, updateVoidExpression: lr8, createAwaitExpression: V_, updateAwaitExpression: Rr7, createPrefixUnaryExpression: Ur8, updatePrefixUnaryExpression: $l4, createPostfixUnaryExpression: ni10, updatePostfixUnaryExpression: Ql4, createBinaryExpression: da5, updateBinaryExpression: Kl4, createConditionalExpression: G_, updateConditionalExpression: Y_, createTemplateExpression: H_, updateTemplateExpression: Hn8, createTemplateHead: $_, createTemplateMiddle: ma5, createTemplateTail: _s7, createNoSubstitutionTemplateLiteral: eu4, createTemplateLiteralLikeNode: ii10, createYieldExpression: os9, updateYieldExpression: tu3, createSpreadElement: Q_, updateSpreadElement: nu3, createClassExpression: K_, updateClassExpression: cs7, createOmittedExpression: ls7, createExpressionWithTypeArguments: Z_, updateExpressionWithTypeArguments: eo5, createAsExpression: pn8, updateAsExpression: ha2, createNonNullExpression: to5, updateNonNullExpression: no6, createSatisfiesExpression: us8, updateSatisfiesExpression: ro5, createNonNullChain: ps7, updateNonNullChain: In7, createMetaProperty: io5, updateMetaProperty: fs26, createTemplateSpan: Xn9, updateTemplateSpan: ya3, createSemicolonClassElement: ao5, createBlock: Br8, updateBlock: ru4, createVariableStatement: ds7, updateVariableStatement: so5, createEmptyStatement: _o3, createExpressionStatement: Ni9, updateExpressionStatement: oo6, createIfStatement: co5, updateIfStatement: lo5, createDoStatement: uo5, updateDoStatement: po6, createWhileStatement: fo5, updateWhileStatement: iu3, createForStatement: mo3, updateForStatement: ho3, createForInStatement: ms8, updateForInStatement: au3, createForOfStatement: yo3, updateForOfStatement: su3, createContinueStatement: go3, updateContinueStatement: _u4, createBreakStatement: hs8, updateBreakStatement: bo5, createReturnStatement: ys8, updateReturnStatement: ou3, createWithStatement: gs7, updateWithStatement: vo4, createSwitchStatement: bs8, updateSwitchStatement: ai10, createLabeledStatement: To4, updateLabeledStatement: xo4, createThrowStatement: So4, updateThrowStatement: cu3, createTryStatement: wo6, updateTryStatement: lu4, createDebuggerStatement: ko3, createVariableDeclaration: ga2, updateVariableDeclaration: Eo3, createVariableDeclarationList: vs9, updateVariableDeclarationList: uu4, createFunctionDeclaration: Ao3, updateFunctionDeclaration: Ts6, createClassDeclaration: Co3, updateClassDeclaration: ba3, createInterfaceDeclaration: Do3, updateInterfaceDeclaration: Po5, createTypeAliasDeclaration: _t10, updateTypeAliasDeclaration: vr6, createEnumDeclaration: xs8, updateEnumDeclaration: Tr7, createModuleDeclaration: No3, updateModuleDeclaration: kt14, createModuleBlock: xr6, updateModuleBlock: zt11, createCaseBlock: Io6, updateCaseBlock: fu4, createNamespaceExportDeclaration: Oo5, updateNamespaceExportDeclaration: Mo3, createImportEqualsDeclaration: Lo4, updateImportEqualsDeclaration: Jo5, createImportDeclaration: jo4, updateImportDeclaration: Ro3, createImportClause: Uo4, updateImportClause: Bo4, createAssertClause: Ss8, updateAssertClause: mu3, createAssertEntry: Ii8, updateAssertEntry: qo4, createImportTypeAssertionContainer: ws8, updateImportTypeAssertionContainer: Fo3, createImportAttributes: zo4, updateImportAttributes: ks8, createImportAttribute: Vo3, updateImportAttribute: Wo3, createNamespaceImport: Go3, updateNamespaceImport: hu4, createNamespaceExport: Yo4, updateNamespaceExport: yu5, createNamedImports: Ho3, updateNamedImports: Xo3, createImportSpecifier: Sr7, updateImportSpecifier: gu4, createExportAssignment: va4, updateExportAssignment: Oi9, createExportDeclaration: Ta3, updateExportDeclaration: $o3, createNamedExports: Es8, updateNamedExports: bu4, createExportSpecifier: xa5, updateExportSpecifier: vu4, createMissingDeclaration: Tu5, createExternalModuleReference: As8, updateExternalModuleReference: xu3, get createJSDocAllType() {
105177
105177
  return c6(313);
105178
105178
  }, get createJSDocUnknownType() {
105179
105179
  return c6(314);
@@ -106074,13 +106074,13 @@ function wf2(e8, t25) {
106074
106074
  function eu4(n4, i4, s4) {
106075
106075
  return n4 = Pi8(16, n4, i4, s4), ri10(15, n4, i4, s4);
106076
106076
  }
106077
- function os10(n4, i4) {
106077
+ function os9(n4, i4) {
106078
106078
  q12.assert(!n4 || !!i4, "A `YieldExpression` with an asteriskToken must have an expression.");
106079
106079
  let s4 = O7(230);
106080
106080
  return s4.expression = i4 && _10().parenthesizeExpressionForDisallowedComma(i4), s4.asteriskToken = n4, s4.transformFlags |= z10(s4.expression) | z10(s4.asteriskToken) | 1024 | 128 | 1048576, s4;
106081
106081
  }
106082
106082
  function tu3(n4, i4, s4) {
106083
- return n4.expression !== s4 || n4.asteriskToken !== i4 ? j10(os10(i4, s4), n4) : n4;
106083
+ return n4.expression !== s4 || n4.asteriskToken !== i4 ? j10(os9(i4, s4), n4) : n4;
106084
106084
  }
106085
106085
  function Q_(n4) {
106086
106086
  let i4 = O7(231);
@@ -112188,7 +112188,7 @@ ${Me12.join(`
112188
112188
  function eu4(o4) {
112189
112189
  return B8(), P9(y7.createTypePredicateNode(undefined, o4, _t10()), o4.pos);
112190
112190
  }
112191
- function os10() {
112191
+ function os9() {
112192
112192
  let o4 = M12();
112193
112193
  return B8(), P9(y7.createThisTypeNode(), o4);
112194
112194
  }
@@ -112531,7 +112531,7 @@ ${Me12.join(`
112531
112531
  case 116:
112532
112532
  return Wt12();
112533
112533
  case 110: {
112534
- let o4 = os10();
112534
+ let o4 = os9();
112535
112535
  return u4() === 142 && !t25.hasPrecedingLineBreak() ? eu4(o4) : o4;
112536
112536
  }
112537
112537
  case 114:
@@ -112709,7 +112709,7 @@ ${Me12.join(`
112709
112709
  return B8(), o4;
112710
112710
  }
112711
112711
  function Po5() {
112712
- let o4 = M12(), p4 = Yn7(131), m7 = u4() === 110 ? os10() : gt12(), g5 = Le12(142) ? _t10() : undefined;
112712
+ let o4 = M12(), p4 = Yn7(131), m7 = u4() === 110 ? os9() : gt12(), g5 = Le12(142) ? _t10() : undefined;
112713
112713
  return P9(y7.createTypePredicateNode(p4, m7, g5), o4);
112714
112714
  }
112715
112715
  function _t10() {
@@ -121349,9 +121349,9 @@ var init_prettier = __esm(() => {
121349
121349
  "node_modules/fast-glob/out/utils/path.js"(exports) {
121350
121350
  Object.defineProperty(exports, "__esModule", { value: true });
121351
121351
  exports.convertPosixPathToPattern = exports.convertWindowsPathToPattern = exports.convertPathToPattern = exports.escapePosixPath = exports.escapeWindowsPath = exports.escape = exports.removeLeadingDotSegment = exports.makeAbsolute = exports.unixify = undefined;
121352
- var os10 = __require2("os");
121352
+ var os9 = __require2("os");
121353
121353
  var path152 = __require2("path");
121354
- var IS_WINDOWS_PLATFORM = os10.platform() === "win32";
121354
+ var IS_WINDOWS_PLATFORM = os9.platform() === "win32";
121355
121355
  var LEADING_DOT_SEGMENT_CHARACTERS_COUNT = 2;
121356
121356
  var POSIX_UNESCAPED_GLOB_SYMBOLS_RE = /(\\?)([()*?[\]{|}]|^!|[!+@](?=\()|\\(?![!()*+?@[\]{|}]))/g;
121357
121357
  var WINDOWS_UNESCAPED_GLOB_SYMBOLS_RE = /(\\?)([()[\]{}]|^!|[!+@](?=\())/g;
@@ -126330,8 +126330,8 @@ var init_prettier = __esm(() => {
126330
126330
  Object.defineProperty(exports, "__esModule", { value: true });
126331
126331
  exports.DEFAULT_FILE_SYSTEM_ADAPTER = undefined;
126332
126332
  var fs42 = __require2("fs");
126333
- var os10 = __require2("os");
126334
- var CPU_COUNT = Math.max(os10.cpus().length, 1);
126333
+ var os9 = __require2("os");
126334
+ var CPU_COUNT = Math.max(os9.cpus().length, 1);
126335
126335
  exports.DEFAULT_FILE_SYSTEM_ADAPTER = {
126336
126336
  lstat: fs42.lstat,
126337
126337
  lstatSync: fs42.lstatSync,
@@ -139561,8 +139561,8 @@ var require_errors2 = __commonJS((exports) => {
139561
139561
  exports.MissingPointerError = MissingPointerError;
139562
139562
 
139563
139563
  class TimeoutError3 extends JSONParserError {
139564
- constructor(timeout3) {
139565
- super(`Dereferencing timeout reached: ${timeout3}ms`);
139564
+ constructor(timeout2) {
139565
+ super(`Dereferencing timeout reached: ${timeout2}ms`);
139566
139566
  this.code = "ETIMEOUT";
139567
139567
  this.name = "TimeoutError";
139568
139568
  }
@@ -191945,7 +191945,7 @@ var require_websocket2 = __commonJS((exports, module) => {
191945
191945
  var http = __require("http");
191946
191946
  var net2 = __require("net");
191947
191947
  var tls = __require("tls");
191948
- var { randomBytes: randomBytes3, createHash: createHash2 } = __require("crypto");
191948
+ var { randomBytes: randomBytes2, createHash } = __require("crypto");
191949
191949
  var { Duplex: Duplex4, Readable: Readable6 } = __require("stream");
191950
191950
  var { URL: URL2 } = __require("url");
191951
191951
  var PerMessageDeflate = require_permessage_deflate();
@@ -192354,7 +192354,7 @@ var require_websocket2 = __commonJS((exports, module) => {
192354
192354
  }
192355
192355
  }
192356
192356
  const defaultPort = isSecure ? 443 : 80;
192357
- const key2 = randomBytes3(16).toString("base64");
192357
+ const key2 = randomBytes2(16).toString("base64");
192358
192358
  const request = isSecure ? https.request : http.request;
192359
192359
  const protocolSet = new Set;
192360
192360
  let perMessageDeflate;
@@ -192477,7 +192477,7 @@ var require_websocket2 = __commonJS((exports, module) => {
192477
192477
  abortHandshake(websocket, socket, "Invalid Upgrade header");
192478
192478
  return;
192479
192479
  }
192480
- const digest = createHash2("sha1").update(key2 + GUID).digest("base64");
192480
+ const digest = createHash("sha1").update(key2 + GUID).digest("base64");
192481
192481
  if (res.headers["sec-websocket-accept"] !== digest) {
192482
192482
  abortHandshake(websocket, socket, "Invalid Sec-WebSocket-Accept header");
192483
192483
  return;
@@ -192850,7 +192850,7 @@ var require_websocket_server = __commonJS((exports, module) => {
192850
192850
  var EventEmitter3 = __require("events");
192851
192851
  var http = __require("http");
192852
192852
  var { Duplex: Duplex4 } = __require("stream");
192853
- var { createHash: createHash2 } = __require("crypto");
192853
+ var { createHash } = __require("crypto");
192854
192854
  var extension = require_extension();
192855
192855
  var PerMessageDeflate = require_permessage_deflate();
192856
192856
  var subprotocol = require_subprotocol();
@@ -193058,7 +193058,7 @@ var require_websocket_server = __commonJS((exports, module) => {
193058
193058
  }
193059
193059
  if (this._state > RUNNING)
193060
193060
  return abortHandshake(socket, 503);
193061
- const digest = createHash2("sha1").update(key2 + GUID).digest("base64");
193061
+ const digest = createHash("sha1").update(key2 + GUID).digest("base64");
193062
193062
  const headers = [
193063
193063
  "HTTP/1.1 101 Switching Protocols",
193064
193064
  "Upgrade: websocket",
@@ -244153,12 +244153,11 @@ var oauthClient = distribution_default.create({
244153
244153
  }
244154
244154
  });
244155
244155
  // src/core/auth/api.ts
244156
- var OAUTH_SCOPE = "apps:read apps:write offline";
244157
244156
  async function generateDeviceCode() {
244158
244157
  const response = await oauthClient.post("oauth/device/code", {
244159
244158
  json: {
244160
244159
  client_id: AUTH_CLIENT_ID,
244161
- scope: OAUTH_SCOPE
244160
+ scope: "apps:read apps:write"
244162
244161
  },
244163
244162
  throwHttpErrors: false
244164
244163
  });
@@ -244234,51 +244233,6 @@ async function renewAccessToken(refreshToken) {
244234
244233
  }
244235
244234
  return result.data;
244236
244235
  }
244237
- function buildAuthorizeUrl(params) {
244238
- const search = new URLSearchParams({
244239
- response_type: "code",
244240
- client_id: AUTH_CLIENT_ID,
244241
- redirect_uri: params.redirectUri,
244242
- scope: OAUTH_SCOPE,
244243
- state: params.state,
244244
- code_challenge: params.codeChallenge,
244245
- code_challenge_method: "S256"
244246
- });
244247
- return `${getBase44ApiUrl().replace(/\/$/, "")}/oauth/authorize?${search.toString()}`;
244248
- }
244249
- async function exchangeCodeForToken(params) {
244250
- const searchParams = new URLSearchParams;
244251
- searchParams.set("grant_type", "authorization_code");
244252
- searchParams.set("code", params.code);
244253
- searchParams.set("redirect_uri", params.redirectUri);
244254
- searchParams.set("client_id", AUTH_CLIENT_ID);
244255
- searchParams.set("code_verifier", params.codeVerifier);
244256
- const response = await oauthClient.post("oauth/token", {
244257
- body: searchParams.toString(),
244258
- headers: {
244259
- "Content-Type": "application/x-www-form-urlencoded"
244260
- },
244261
- throwHttpErrors: false
244262
- });
244263
- const json2 = await response.json();
244264
- if (!response.ok) {
244265
- const errorResult = OAuthErrorSchema.safeParse(json2);
244266
- if (!errorResult.success) {
244267
- throw new ApiError(`Token exchange failed: ${response.statusText}`, {
244268
- statusCode: response.status
244269
- });
244270
- }
244271
- const { error: error48, error_description } = errorResult.data;
244272
- throw new ApiError(error_description ?? `OAuth error: ${error48}`, {
244273
- statusCode: response.status
244274
- });
244275
- }
244276
- const result = TokenResponseSchema.safeParse(json2);
244277
- if (!result.success) {
244278
- throw new SchemaValidationError("Invalid token response from server", result.error);
244279
- }
244280
- return result.data;
244281
- }
244282
244236
  async function getUserInfo(accessToken) {
244283
244237
  const response = await oauthClient.get("oauth/userinfo", {
244284
244238
  headers: { Authorization: `Bearer ${accessToken}` }
@@ -244294,895 +244248,6 @@ async function getUserInfo(accessToken) {
244294
244248
  }
244295
244249
  return result.data;
244296
244250
  }
244297
- // ../../node_modules/open/index.js
244298
- import process12 from "node:process";
244299
- import path11 from "node:path";
244300
- import { fileURLToPath as fileURLToPath2 } from "node:url";
244301
- import childProcess3 from "node:child_process";
244302
- import fs18, { constants as fsConstants2 } from "node:fs/promises";
244303
-
244304
- // ../../node_modules/wsl-utils/index.js
244305
- import { promisify as promisify4 } from "node:util";
244306
- import childProcess2 from "node:child_process";
244307
- import fs17, { constants as fsConstants } from "node:fs/promises";
244308
-
244309
- // ../../node_modules/is-wsl/index.js
244310
- import process6 from "node:process";
244311
- import os2 from "node:os";
244312
- import fs16 from "node:fs";
244313
-
244314
- // ../../node_modules/is-inside-container/index.js
244315
- import fs15 from "node:fs";
244316
-
244317
- // ../../node_modules/is-docker/index.js
244318
- import fs14 from "node:fs";
244319
- var isDockerCached;
244320
- function hasDockerEnv() {
244321
- try {
244322
- fs14.statSync("/.dockerenv");
244323
- return true;
244324
- } catch {
244325
- return false;
244326
- }
244327
- }
244328
- function hasDockerCGroup() {
244329
- try {
244330
- return fs14.readFileSync("/proc/self/cgroup", "utf8").includes("docker");
244331
- } catch {
244332
- return false;
244333
- }
244334
- }
244335
- function isDocker() {
244336
- if (isDockerCached === undefined) {
244337
- isDockerCached = hasDockerEnv() || hasDockerCGroup();
244338
- }
244339
- return isDockerCached;
244340
- }
244341
-
244342
- // ../../node_modules/is-inside-container/index.js
244343
- var cachedResult;
244344
- var hasContainerEnv = () => {
244345
- try {
244346
- fs15.statSync("/run/.containerenv");
244347
- return true;
244348
- } catch {
244349
- return false;
244350
- }
244351
- };
244352
- function isInsideContainer() {
244353
- if (cachedResult === undefined) {
244354
- cachedResult = hasContainerEnv() || isDocker();
244355
- }
244356
- return cachedResult;
244357
- }
244358
-
244359
- // ../../node_modules/is-wsl/index.js
244360
- var isWsl = () => {
244361
- if (process6.platform !== "linux") {
244362
- return false;
244363
- }
244364
- if (os2.release().toLowerCase().includes("microsoft")) {
244365
- if (isInsideContainer()) {
244366
- return false;
244367
- }
244368
- return true;
244369
- }
244370
- try {
244371
- return fs16.readFileSync("/proc/version", "utf8").toLowerCase().includes("microsoft") ? !isInsideContainer() : false;
244372
- } catch {
244373
- return false;
244374
- }
244375
- };
244376
- var is_wsl_default = process6.env.__IS_WSL_TEST__ ? isWsl : isWsl();
244377
-
244378
- // ../../node_modules/powershell-utils/index.js
244379
- import process7 from "node:process";
244380
- import { Buffer as Buffer3 } from "node:buffer";
244381
- import { promisify as promisify3 } from "node:util";
244382
- import childProcess from "node:child_process";
244383
- var execFile = promisify3(childProcess.execFile);
244384
- var powerShellPath = () => `${process7.env.SYSTEMROOT || process7.env.windir || String.raw`C:\Windows`}\\System32\\WindowsPowerShell\\v1.0\\powershell.exe`;
244385
- var executePowerShell = async (command, options = {}) => {
244386
- const {
244387
- powerShellPath: psPath,
244388
- ...execFileOptions
244389
- } = options;
244390
- const encodedCommand = executePowerShell.encodeCommand(command);
244391
- return execFile(psPath ?? powerShellPath(), [
244392
- ...executePowerShell.argumentsPrefix,
244393
- encodedCommand
244394
- ], {
244395
- encoding: "utf8",
244396
- ...execFileOptions
244397
- });
244398
- };
244399
- executePowerShell.argumentsPrefix = [
244400
- "-NoProfile",
244401
- "-NonInteractive",
244402
- "-ExecutionPolicy",
244403
- "Bypass",
244404
- "-EncodedCommand"
244405
- ];
244406
- executePowerShell.encodeCommand = (command) => Buffer3.from(command, "utf16le").toString("base64");
244407
- executePowerShell.escapeArgument = (value) => `'${String(value).replaceAll("'", "''")}'`;
244408
-
244409
- // ../../node_modules/wsl-utils/utilities.js
244410
- function parseMountPointFromConfig(content) {
244411
- for (const line of content.split(`
244412
- `)) {
244413
- if (/^\s*#/.test(line)) {
244414
- continue;
244415
- }
244416
- const match = /^\s*root\s*=\s*(?<mountPoint>"[^"]*"|'[^']*'|[^#]*)/.exec(line);
244417
- if (!match) {
244418
- continue;
244419
- }
244420
- return match.groups.mountPoint.trim().replaceAll(/^["']|["']$/g, "");
244421
- }
244422
- }
244423
-
244424
- // ../../node_modules/wsl-utils/index.js
244425
- var execFile2 = promisify4(childProcess2.execFile);
244426
- var wslDrivesMountPoint = (() => {
244427
- const defaultMountPoint = "/mnt/";
244428
- let mountPoint;
244429
- return async function() {
244430
- if (mountPoint) {
244431
- return mountPoint;
244432
- }
244433
- const configFilePath = "/etc/wsl.conf";
244434
- let isConfigFileExists = false;
244435
- try {
244436
- await fs17.access(configFilePath, fsConstants.F_OK);
244437
- isConfigFileExists = true;
244438
- } catch {}
244439
- if (!isConfigFileExists) {
244440
- return defaultMountPoint;
244441
- }
244442
- const configContent = await fs17.readFile(configFilePath, { encoding: "utf8" });
244443
- const parsedMountPoint = parseMountPointFromConfig(configContent);
244444
- if (parsedMountPoint === undefined) {
244445
- return defaultMountPoint;
244446
- }
244447
- mountPoint = parsedMountPoint;
244448
- mountPoint = mountPoint.endsWith("/") ? mountPoint : `${mountPoint}/`;
244449
- return mountPoint;
244450
- };
244451
- })();
244452
- var powerShellPathFromWsl = async () => {
244453
- const mountPoint = await wslDrivesMountPoint();
244454
- return `${mountPoint}c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe`;
244455
- };
244456
- var powerShellPath2 = is_wsl_default ? powerShellPathFromWsl : powerShellPath;
244457
- var canAccessPowerShellPromise;
244458
- var canAccessPowerShell = async () => {
244459
- canAccessPowerShellPromise ??= (async () => {
244460
- try {
244461
- const psPath = await powerShellPath2();
244462
- await fs17.access(psPath, fsConstants.X_OK);
244463
- return true;
244464
- } catch {
244465
- return false;
244466
- }
244467
- })();
244468
- return canAccessPowerShellPromise;
244469
- };
244470
- var wslDefaultBrowser = async () => {
244471
- const psPath = await powerShellPath2();
244472
- const command = String.raw`(Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice").ProgId`;
244473
- const { stdout } = await executePowerShell(command, { powerShellPath: psPath });
244474
- return stdout.trim();
244475
- };
244476
- var convertWslPathToWindows = async (path11) => {
244477
- if (/^[a-z]+:\/\//i.test(path11)) {
244478
- return path11;
244479
- }
244480
- try {
244481
- const { stdout } = await execFile2("wslpath", ["-aw", path11], { encoding: "utf8" });
244482
- return stdout.trim();
244483
- } catch {
244484
- return path11;
244485
- }
244486
- };
244487
-
244488
- // ../../node_modules/define-lazy-prop/index.js
244489
- function defineLazyProperty(object2, propertyName, valueGetter) {
244490
- const define2 = (value) => Object.defineProperty(object2, propertyName, { value, enumerable: true, writable: true });
244491
- Object.defineProperty(object2, propertyName, {
244492
- configurable: true,
244493
- enumerable: true,
244494
- get() {
244495
- const result = valueGetter();
244496
- define2(result);
244497
- return result;
244498
- },
244499
- set(value) {
244500
- define2(value);
244501
- }
244502
- });
244503
- return object2;
244504
- }
244505
-
244506
- // ../../node_modules/default-browser/index.js
244507
- import { promisify as promisify8 } from "node:util";
244508
- import process10 from "node:process";
244509
- import { execFile as execFile6 } from "node:child_process";
244510
-
244511
- // ../../node_modules/default-browser-id/index.js
244512
- import { promisify as promisify5 } from "node:util";
244513
- import process8 from "node:process";
244514
- import { execFile as execFile3 } from "node:child_process";
244515
- var execFileAsync = promisify5(execFile3);
244516
- async function defaultBrowserId() {
244517
- if (process8.platform !== "darwin") {
244518
- throw new Error("macOS only");
244519
- }
244520
- const { stdout } = await execFileAsync("defaults", ["read", "com.apple.LaunchServices/com.apple.launchservices.secure", "LSHandlers"]);
244521
- const match = /LSHandlerRoleAll = "(?!-)(?<id>[^"]+?)";\s+?LSHandlerURLScheme = (?:http|https);/.exec(stdout);
244522
- const browserId = match?.groups.id ?? "com.apple.Safari";
244523
- if (browserId === "com.apple.safari") {
244524
- return "com.apple.Safari";
244525
- }
244526
- return browserId;
244527
- }
244528
-
244529
- // ../../node_modules/run-applescript/index.js
244530
- import process9 from "node:process";
244531
- import { promisify as promisify6 } from "node:util";
244532
- import { execFile as execFile4, execFileSync } from "node:child_process";
244533
- var execFileAsync2 = promisify6(execFile4);
244534
- async function runAppleScript(script, { humanReadableOutput = true, signal } = {}) {
244535
- if (process9.platform !== "darwin") {
244536
- throw new Error("macOS only");
244537
- }
244538
- const outputArguments = humanReadableOutput ? [] : ["-ss"];
244539
- const execOptions = {};
244540
- if (signal) {
244541
- execOptions.signal = signal;
244542
- }
244543
- const { stdout } = await execFileAsync2("osascript", ["-e", script, outputArguments], execOptions);
244544
- return stdout.trim();
244545
- }
244546
-
244547
- // ../../node_modules/bundle-name/index.js
244548
- async function bundleName(bundleId) {
244549
- return runAppleScript(`tell application "Finder" to set app_path to application file id "${bundleId}" as string
244550
- tell application "System Events" to get value of property list item "CFBundleName" of property list file (app_path & ":Contents:Info.plist")`);
244551
- }
244552
-
244553
- // ../../node_modules/default-browser/windows.js
244554
- import { promisify as promisify7 } from "node:util";
244555
- import { execFile as execFile5 } from "node:child_process";
244556
- var execFileAsync3 = promisify7(execFile5);
244557
- var windowsBrowserProgIds = {
244558
- MSEdgeHTM: { name: "Edge", id: "com.microsoft.edge" },
244559
- MSEdgeBHTML: { name: "Edge Beta", id: "com.microsoft.edge.beta" },
244560
- MSEdgeDHTML: { name: "Edge Dev", id: "com.microsoft.edge.dev" },
244561
- AppXq0fevzme2pys62n3e0fbqa7peapykr8v: { name: "Edge", id: "com.microsoft.edge.old" },
244562
- ChromeHTML: { name: "Chrome", id: "com.google.chrome" },
244563
- ChromeBHTML: { name: "Chrome Beta", id: "com.google.chrome.beta" },
244564
- ChromeDHTML: { name: "Chrome Dev", id: "com.google.chrome.dev" },
244565
- ChromiumHTM: { name: "Chromium", id: "org.chromium.Chromium" },
244566
- BraveHTML: { name: "Brave", id: "com.brave.Browser" },
244567
- BraveBHTML: { name: "Brave Beta", id: "com.brave.Browser.beta" },
244568
- BraveDHTML: { name: "Brave Dev", id: "com.brave.Browser.dev" },
244569
- BraveSSHTM: { name: "Brave Nightly", id: "com.brave.Browser.nightly" },
244570
- FirefoxURL: { name: "Firefox", id: "org.mozilla.firefox" },
244571
- OperaStable: { name: "Opera", id: "com.operasoftware.Opera" },
244572
- VivaldiHTM: { name: "Vivaldi", id: "com.vivaldi.Vivaldi" },
244573
- "IE.HTTP": { name: "Internet Explorer", id: "com.microsoft.ie" }
244574
- };
244575
- var _windowsBrowserProgIdMap = new Map(Object.entries(windowsBrowserProgIds));
244576
-
244577
- class UnknownBrowserError extends Error {
244578
- }
244579
- async function defaultBrowser(_execFileAsync = execFileAsync3) {
244580
- const { stdout } = await _execFileAsync("reg", [
244581
- "QUERY",
244582
- " HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\http\\UserChoice",
244583
- "/v",
244584
- "ProgId"
244585
- ]);
244586
- const match = /ProgId\s*REG_SZ\s*(?<id>\S+)/.exec(stdout);
244587
- if (!match) {
244588
- throw new UnknownBrowserError(`Cannot find Windows browser in stdout: ${JSON.stringify(stdout)}`);
244589
- }
244590
- const { id } = match.groups;
244591
- const dotIndex = id.lastIndexOf(".");
244592
- const hyphenIndex = id.lastIndexOf("-");
244593
- const baseIdByDot = dotIndex === -1 ? undefined : id.slice(0, dotIndex);
244594
- const baseIdByHyphen = hyphenIndex === -1 ? undefined : id.slice(0, hyphenIndex);
244595
- return windowsBrowserProgIds[id] ?? windowsBrowserProgIds[baseIdByDot] ?? windowsBrowserProgIds[baseIdByHyphen] ?? { name: id, id };
244596
- }
244597
-
244598
- // ../../node_modules/default-browser/index.js
244599
- var execFileAsync4 = promisify8(execFile6);
244600
- var titleize = (string4) => string4.toLowerCase().replaceAll(/(?:^|\s|-)\S/g, (x3) => x3.toUpperCase());
244601
- async function defaultBrowser2() {
244602
- if (process10.platform === "darwin") {
244603
- const id = await defaultBrowserId();
244604
- const name2 = await bundleName(id);
244605
- return { name: name2, id };
244606
- }
244607
- if (process10.platform === "linux") {
244608
- const { stdout } = await execFileAsync4("xdg-mime", ["query", "default", "x-scheme-handler/http"]);
244609
- const id = stdout.trim();
244610
- const name2 = titleize(id.replace(/.desktop$/, "").replace("-", " "));
244611
- return { name: name2, id };
244612
- }
244613
- if (process10.platform === "win32") {
244614
- return defaultBrowser();
244615
- }
244616
- throw new Error("Only macOS, Linux, and Windows are supported");
244617
- }
244618
-
244619
- // ../../node_modules/is-in-ssh/index.js
244620
- import process11 from "node:process";
244621
- var isInSsh = Boolean(process11.env.SSH_CONNECTION || process11.env.SSH_CLIENT || process11.env.SSH_TTY);
244622
- var is_in_ssh_default = isInSsh;
244623
-
244624
- // ../../node_modules/open/index.js
244625
- var fallbackAttemptSymbol = Symbol("fallbackAttempt");
244626
- var __dirname2 = import.meta.url ? path11.dirname(fileURLToPath2(import.meta.url)) : "";
244627
- var localXdgOpenPath = path11.join(__dirname2, "xdg-open");
244628
- var { platform: platform5, arch } = process12;
244629
- var tryEachApp = async (apps, opener) => {
244630
- if (apps.length === 0) {
244631
- return;
244632
- }
244633
- const errors3 = [];
244634
- for (const app of apps) {
244635
- try {
244636
- return await opener(app);
244637
- } catch (error48) {
244638
- errors3.push(error48);
244639
- }
244640
- }
244641
- throw new AggregateError(errors3, "Failed to open in all supported apps");
244642
- };
244643
- var baseOpen = async (options) => {
244644
- options = {
244645
- wait: false,
244646
- background: false,
244647
- newInstance: false,
244648
- allowNonzeroExitCode: false,
244649
- ...options
244650
- };
244651
- const isFallbackAttempt = options[fallbackAttemptSymbol] === true;
244652
- delete options[fallbackAttemptSymbol];
244653
- if (Array.isArray(options.app)) {
244654
- return tryEachApp(options.app, (singleApp) => baseOpen({
244655
- ...options,
244656
- app: singleApp,
244657
- [fallbackAttemptSymbol]: true
244658
- }));
244659
- }
244660
- let { name: app, arguments: appArguments = [] } = options.app ?? {};
244661
- appArguments = [...appArguments];
244662
- if (Array.isArray(app)) {
244663
- return tryEachApp(app, (appName) => baseOpen({
244664
- ...options,
244665
- app: {
244666
- name: appName,
244667
- arguments: appArguments
244668
- },
244669
- [fallbackAttemptSymbol]: true
244670
- }));
244671
- }
244672
- if (app === "browser" || app === "browserPrivate") {
244673
- const ids = {
244674
- "com.google.chrome": "chrome",
244675
- "google-chrome.desktop": "chrome",
244676
- "com.brave.browser": "brave",
244677
- "org.mozilla.firefox": "firefox",
244678
- "firefox.desktop": "firefox",
244679
- "com.microsoft.msedge": "edge",
244680
- "com.microsoft.edge": "edge",
244681
- "com.microsoft.edgemac": "edge",
244682
- "microsoft-edge.desktop": "edge",
244683
- "com.apple.safari": "safari"
244684
- };
244685
- const flags = {
244686
- chrome: "--incognito",
244687
- brave: "--incognito",
244688
- firefox: "--private-window",
244689
- edge: "--inPrivate"
244690
- };
244691
- let browser;
244692
- if (is_wsl_default) {
244693
- const progId = await wslDefaultBrowser();
244694
- const browserInfo = _windowsBrowserProgIdMap.get(progId);
244695
- browser = browserInfo ?? {};
244696
- } else {
244697
- browser = await defaultBrowser2();
244698
- }
244699
- if (browser.id in ids) {
244700
- const browserName = ids[browser.id.toLowerCase()];
244701
- if (app === "browserPrivate") {
244702
- if (browserName === "safari") {
244703
- throw new Error("Safari doesn't support opening in private mode via command line");
244704
- }
244705
- appArguments.push(flags[browserName]);
244706
- }
244707
- return baseOpen({
244708
- ...options,
244709
- app: {
244710
- name: apps[browserName],
244711
- arguments: appArguments
244712
- }
244713
- });
244714
- }
244715
- throw new Error(`${browser.name} is not supported as a default browser`);
244716
- }
244717
- let command;
244718
- const cliArguments = [];
244719
- const childProcessOptions = {};
244720
- let shouldUseWindowsInWsl = false;
244721
- if (is_wsl_default && !isInsideContainer() && !is_in_ssh_default && !app) {
244722
- shouldUseWindowsInWsl = await canAccessPowerShell();
244723
- }
244724
- if (platform5 === "darwin") {
244725
- command = "open";
244726
- if (options.wait) {
244727
- cliArguments.push("--wait-apps");
244728
- }
244729
- if (options.background) {
244730
- cliArguments.push("--background");
244731
- }
244732
- if (options.newInstance) {
244733
- cliArguments.push("--new");
244734
- }
244735
- if (app) {
244736
- cliArguments.push("-a", app);
244737
- }
244738
- } else if (platform5 === "win32" || shouldUseWindowsInWsl) {
244739
- command = await powerShellPath2();
244740
- cliArguments.push(...executePowerShell.argumentsPrefix);
244741
- if (!is_wsl_default) {
244742
- childProcessOptions.windowsVerbatimArguments = true;
244743
- }
244744
- if (is_wsl_default && options.target) {
244745
- options.target = await convertWslPathToWindows(options.target);
244746
- }
244747
- const encodedArguments = ["$ProgressPreference = 'SilentlyContinue';", "Start"];
244748
- if (options.wait) {
244749
- encodedArguments.push("-Wait");
244750
- }
244751
- if (app) {
244752
- encodedArguments.push(executePowerShell.escapeArgument(app));
244753
- if (options.target) {
244754
- appArguments.push(options.target);
244755
- }
244756
- } else if (options.target) {
244757
- encodedArguments.push(executePowerShell.escapeArgument(options.target));
244758
- }
244759
- if (appArguments.length > 0) {
244760
- appArguments = appArguments.map((argument) => executePowerShell.escapeArgument(argument));
244761
- encodedArguments.push("-ArgumentList", appArguments.join(","));
244762
- }
244763
- options.target = executePowerShell.encodeCommand(encodedArguments.join(" "));
244764
- if (!options.wait) {
244765
- childProcessOptions.stdio = "ignore";
244766
- }
244767
- } else {
244768
- if (app) {
244769
- command = app;
244770
- } else {
244771
- const isBundled = !__dirname2 || __dirname2 === "/";
244772
- let exeLocalXdgOpen = false;
244773
- try {
244774
- await fs18.access(localXdgOpenPath, fsConstants2.X_OK);
244775
- exeLocalXdgOpen = true;
244776
- } catch {}
244777
- const useSystemXdgOpen = process12.versions.electron ?? (platform5 === "android" || isBundled || !exeLocalXdgOpen);
244778
- command = useSystemXdgOpen ? "xdg-open" : localXdgOpenPath;
244779
- }
244780
- if (appArguments.length > 0) {
244781
- cliArguments.push(...appArguments);
244782
- }
244783
- if (!options.wait) {
244784
- childProcessOptions.stdio = "ignore";
244785
- childProcessOptions.detached = true;
244786
- }
244787
- }
244788
- if (platform5 === "darwin" && appArguments.length > 0) {
244789
- cliArguments.push("--args", ...appArguments);
244790
- }
244791
- if (options.target) {
244792
- cliArguments.push(options.target);
244793
- }
244794
- const subprocess = childProcess3.spawn(command, cliArguments, childProcessOptions);
244795
- if (options.wait) {
244796
- return new Promise((resolve3, reject) => {
244797
- subprocess.once("error", reject);
244798
- subprocess.once("close", (exitCode) => {
244799
- if (!options.allowNonzeroExitCode && exitCode !== 0) {
244800
- reject(new Error(`Exited with code ${exitCode}`));
244801
- return;
244802
- }
244803
- resolve3(subprocess);
244804
- });
244805
- });
244806
- }
244807
- if (isFallbackAttempt) {
244808
- return new Promise((resolve3, reject) => {
244809
- subprocess.once("error", reject);
244810
- subprocess.once("spawn", () => {
244811
- subprocess.once("close", (exitCode) => {
244812
- subprocess.off("error", reject);
244813
- if (exitCode !== 0) {
244814
- reject(new Error(`Exited with code ${exitCode}`));
244815
- return;
244816
- }
244817
- subprocess.unref();
244818
- resolve3(subprocess);
244819
- });
244820
- });
244821
- });
244822
- }
244823
- subprocess.unref();
244824
- return new Promise((resolve3, reject) => {
244825
- subprocess.once("error", reject);
244826
- subprocess.once("spawn", () => {
244827
- subprocess.off("error", reject);
244828
- resolve3(subprocess);
244829
- });
244830
- });
244831
- };
244832
- var open = (target, options) => {
244833
- if (typeof target !== "string") {
244834
- throw new TypeError("Expected a `target`");
244835
- }
244836
- return baseOpen({
244837
- ...options,
244838
- target
244839
- });
244840
- };
244841
- function detectArchBinary(binary) {
244842
- if (typeof binary === "string" || Array.isArray(binary)) {
244843
- return binary;
244844
- }
244845
- const { [arch]: archBinary } = binary;
244846
- if (!archBinary) {
244847
- throw new Error(`${arch} is not supported`);
244848
- }
244849
- return archBinary;
244850
- }
244851
- function detectPlatformBinary({ [platform5]: platformBinary }, { wsl } = {}) {
244852
- if (wsl && is_wsl_default) {
244853
- return detectArchBinary(wsl);
244854
- }
244855
- if (!platformBinary) {
244856
- throw new Error(`${platform5} is not supported`);
244857
- }
244858
- return detectArchBinary(platformBinary);
244859
- }
244860
- var apps = {
244861
- browser: "browser",
244862
- browserPrivate: "browserPrivate"
244863
- };
244864
- defineLazyProperty(apps, "chrome", () => detectPlatformBinary({
244865
- darwin: "google chrome",
244866
- win32: "chrome",
244867
- linux: ["google-chrome", "google-chrome-stable", "chromium", "chromium-browser"]
244868
- }, {
244869
- wsl: {
244870
- ia32: "/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe",
244871
- x64: ["/mnt/c/Program Files/Google/Chrome/Application/chrome.exe", "/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe"]
244872
- }
244873
- }));
244874
- defineLazyProperty(apps, "brave", () => detectPlatformBinary({
244875
- darwin: "brave browser",
244876
- win32: "brave",
244877
- linux: ["brave-browser", "brave"]
244878
- }, {
244879
- wsl: {
244880
- ia32: "/mnt/c/Program Files (x86)/BraveSoftware/Brave-Browser/Application/brave.exe",
244881
- x64: ["/mnt/c/Program Files/BraveSoftware/Brave-Browser/Application/brave.exe", "/mnt/c/Program Files (x86)/BraveSoftware/Brave-Browser/Application/brave.exe"]
244882
- }
244883
- }));
244884
- defineLazyProperty(apps, "firefox", () => detectPlatformBinary({
244885
- darwin: "firefox",
244886
- win32: String.raw`C:\Program Files\Mozilla Firefox\firefox.exe`,
244887
- linux: "firefox"
244888
- }, {
244889
- wsl: "/mnt/c/Program Files/Mozilla Firefox/firefox.exe"
244890
- }));
244891
- defineLazyProperty(apps, "edge", () => detectPlatformBinary({
244892
- darwin: "microsoft edge",
244893
- win32: "msedge",
244894
- linux: ["microsoft-edge", "microsoft-edge-dev"]
244895
- }, {
244896
- wsl: "/mnt/c/Program Files (x86)/Microsoft/Edge/Application/msedge.exe"
244897
- }));
244898
- defineLazyProperty(apps, "safari", () => detectPlatformBinary({
244899
- darwin: "Safari"
244900
- }));
244901
- var open_default = open;
244902
-
244903
- // src/core/auth/loopback-server.ts
244904
- import { createServer } from "node:http";
244905
-
244906
- // ../../node_modules/get-port/index.js
244907
- import net from "node:net";
244908
- import os3 from "node:os";
244909
-
244910
- class Locked extends Error {
244911
- constructor(port) {
244912
- super(`${port} is locked`);
244913
- }
244914
- }
244915
- var lockedPorts = {
244916
- old: new Set,
244917
- young: new Set
244918
- };
244919
- var releaseOldLockedPortsIntervalMs = 1000 * 15;
244920
- var timeout2;
244921
- var getLocalHosts = () => {
244922
- const interfaces = os3.networkInterfaces();
244923
- const results = new Set([undefined, "0.0.0.0"]);
244924
- for (const _interface of Object.values(interfaces)) {
244925
- for (const config10 of _interface) {
244926
- results.add(config10.address);
244927
- }
244928
- }
244929
- return results;
244930
- };
244931
- var checkAvailablePort = (options) => new Promise((resolve3, reject) => {
244932
- const server = net.createServer();
244933
- server.unref();
244934
- server.on("error", reject);
244935
- server.listen(options, () => {
244936
- const { port } = server.address();
244937
- server.close(() => {
244938
- resolve3(port);
244939
- });
244940
- });
244941
- });
244942
- var getAvailablePort = async (options, hosts) => {
244943
- if (options.host || options.port === 0) {
244944
- return checkAvailablePort(options);
244945
- }
244946
- for (const host of hosts) {
244947
- try {
244948
- await checkAvailablePort({ port: options.port, host });
244949
- } catch (error48) {
244950
- if (!["EADDRNOTAVAIL", "EINVAL"].includes(error48.code)) {
244951
- throw error48;
244952
- }
244953
- }
244954
- }
244955
- return options.port;
244956
- };
244957
- var portCheckSequence = function* (ports) {
244958
- if (ports) {
244959
- yield* ports;
244960
- }
244961
- yield 0;
244962
- };
244963
- async function getPorts(options) {
244964
- let ports;
244965
- let exclude = new Set;
244966
- if (options) {
244967
- if (options.port) {
244968
- ports = typeof options.port === "number" ? [options.port] : options.port;
244969
- }
244970
- if (options.exclude) {
244971
- const excludeIterable = options.exclude;
244972
- if (typeof excludeIterable[Symbol.iterator] !== "function") {
244973
- throw new TypeError("The `exclude` option must be an iterable.");
244974
- }
244975
- for (const element of excludeIterable) {
244976
- if (typeof element !== "number") {
244977
- throw new TypeError("Each item in the `exclude` option must be a number corresponding to the port you want excluded.");
244978
- }
244979
- if (!Number.isSafeInteger(element)) {
244980
- throw new TypeError(`Number ${element} in the exclude option is not a safe integer and can't be used`);
244981
- }
244982
- }
244983
- exclude = new Set(excludeIterable);
244984
- }
244985
- }
244986
- if (timeout2 === undefined) {
244987
- timeout2 = setTimeout(() => {
244988
- timeout2 = undefined;
244989
- lockedPorts.old = lockedPorts.young;
244990
- lockedPorts.young = new Set;
244991
- }, releaseOldLockedPortsIntervalMs);
244992
- if (timeout2.unref) {
244993
- timeout2.unref();
244994
- }
244995
- }
244996
- const hosts = getLocalHosts();
244997
- for (const port of portCheckSequence(ports)) {
244998
- try {
244999
- if (exclude.has(port)) {
245000
- continue;
245001
- }
245002
- let availablePort = await getAvailablePort({ ...options, port }, hosts);
245003
- while (lockedPorts.old.has(availablePort) || lockedPorts.young.has(availablePort)) {
245004
- if (port !== 0) {
245005
- throw new Locked(port);
245006
- }
245007
- availablePort = await getAvailablePort({ ...options, port }, hosts);
245008
- }
245009
- lockedPorts.young.add(availablePort);
245010
- return availablePort;
245011
- } catch (error48) {
245012
- if (!["EADDRINUSE", "EACCES"].includes(error48.code) && !(error48 instanceof Locked)) {
245013
- throw error48;
245014
- }
245015
- }
245016
- }
245017
- throw new Error("No available ports found");
245018
- }
245019
-
245020
- // src/core/auth/loopback-server.ts
245021
- var LOOPBACK_HOST = "127.0.0.1";
245022
- var CALLBACK_PATH = "/callback";
245023
- var SUCCESS_HTML = `<!DOCTYPE html>
245024
- <html><head><meta charset="utf-8"><title>Base44 CLI</title>
245025
- <style>body{font-family:system-ui,sans-serif;text-align:center;padding:48px;color:#1f2937}
245026
- h1{font-size:20px;margin:0 0 8px}p{color:#6b7280;margin:0}</style></head>
245027
- <body><h1>You're signed in.</h1><p>You can close this tab and return to your terminal.</p></body></html>`;
245028
- var ERROR_HTML = (msg) => `<!DOCTYPE html>
245029
- <html><head><meta charset="utf-8"><title>Base44 CLI</title>
245030
- <style>body{font-family:system-ui,sans-serif;text-align:center;padding:48px;color:#991b1b}
245031
- h1{font-size:20px;margin:0 0 8px}p{color:#6b7280;margin:0}</style></head>
245032
- <body><h1>Sign-in failed</h1><p>${msg}</p></body></html>`;
245033
- async function startLoopbackServer() {
245034
- const port = await getPorts({ host: LOOPBACK_HOST });
245035
- let resolveCallback = null;
245036
- let rejectCallback = null;
245037
- const server = createServer((req, res) => {
245038
- const url2 = new URL(req.url ?? "/", `http://${LOOPBACK_HOST}:${port}`);
245039
- if (url2.pathname !== CALLBACK_PATH) {
245040
- res.writeHead(404, { "Content-Type": "text/plain" });
245041
- res.end("Not Found");
245042
- return;
245043
- }
245044
- const code2 = url2.searchParams.get("code");
245045
- const state = url2.searchParams.get("state");
245046
- const error48 = url2.searchParams.get("error");
245047
- const errorDescription = url2.searchParams.get("error_description");
245048
- if (error48) {
245049
- const message = errorDescription ?? error48;
245050
- res.writeHead(400, { "Content-Type": "text/html; charset=utf-8" });
245051
- res.end(ERROR_HTML(message));
245052
- rejectCallback?.(new ApiError(`Authorization failed: ${message}`, { statusCode: 400 }));
245053
- return;
245054
- }
245055
- if (!code2 || !state) {
245056
- res.writeHead(400, { "Content-Type": "text/html; charset=utf-8" });
245057
- res.end(ERROR_HTML("Missing code or state parameter."));
245058
- rejectCallback?.(new ApiError("OAuth callback missing code or state", {
245059
- statusCode: 400
245060
- }));
245061
- return;
245062
- }
245063
- res.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
245064
- res.end(SUCCESS_HTML);
245065
- pendingCallback = { code: code2, state };
245066
- if (resolveCallback) {
245067
- tryDeliverCallback();
245068
- }
245069
- });
245070
- let pendingCallback = null;
245071
- let expectedState = null;
245072
- function tryDeliverCallback() {
245073
- if (!pendingCallback || !expectedState)
245074
- return;
245075
- const { code: code2, state } = pendingCallback;
245076
- pendingCallback = null;
245077
- if (state !== expectedState) {
245078
- rejectCallback?.(new ApiError("OAuth state mismatch — possible CSRF", {
245079
- statusCode: 400
245080
- }));
245081
- return;
245082
- }
245083
- resolveCallback?.({ code: code2 });
245084
- }
245085
- await new Promise((resolve3, reject) => {
245086
- server.once("error", reject);
245087
- server.listen(port, LOOPBACK_HOST, () => {
245088
- server.removeListener("error", reject);
245089
- server.unref();
245090
- resolve3();
245091
- });
245092
- });
245093
- const actualPort = server.address().port;
245094
- const redirectUri = `http://${LOOPBACK_HOST}:${actualPort}${CALLBACK_PATH}`;
245095
- return {
245096
- port: actualPort,
245097
- redirectUri,
245098
- waitForCallback(state, timeoutMs) {
245099
- expectedState = state;
245100
- return new Promise((resolve3, reject) => {
245101
- resolveCallback = resolve3;
245102
- rejectCallback = reject;
245103
- const timer = setTimeout(() => {
245104
- reject(new InternalError(`Timed out waiting for browser authentication after ${Math.round(timeoutMs / 1000)}s`));
245105
- }, timeoutMs);
245106
- const wrappedResolve = (r) => {
245107
- clearTimeout(timer);
245108
- resolve3(r);
245109
- };
245110
- const wrappedReject = (e2) => {
245111
- clearTimeout(timer);
245112
- reject(e2);
245113
- };
245114
- resolveCallback = wrappedResolve;
245115
- rejectCallback = wrappedReject;
245116
- tryDeliverCallback();
245117
- });
245118
- },
245119
- close() {
245120
- server.close();
245121
- server.closeAllConnections?.();
245122
- }
245123
- };
245124
- }
245125
-
245126
- // src/core/auth/pkce.ts
245127
- import { createHash, randomBytes as randomBytes2 } from "node:crypto";
245128
- function base64UrlEncode(buffer) {
245129
- return buffer.toString("base64").replace(/\+/g, "-").replace(/\//g, "_").replace(/=+$/, "");
245130
- }
245131
- function generatePkcePair() {
245132
- const codeVerifier = base64UrlEncode(randomBytes2(32));
245133
- const codeChallenge = base64UrlEncode(createHash("sha256").update(codeVerifier).digest());
245134
- return { codeVerifier, codeChallenge, codeChallengeMethod: "S256" };
245135
- }
245136
- function generateState() {
245137
- return base64UrlEncode(randomBytes2(16));
245138
- }
245139
-
245140
- // src/cli/commands/auth/loopback-flow.ts
245141
- var CALLBACK_TIMEOUT_MS = 5 * 60 * 1000;
245142
- function isHeadlessEnv() {
245143
- const env2 = process.env;
245144
- if (env2.SSH_CONNECTION || env2.SSH_CLIENT || env2.SSH_TTY)
245145
- return true;
245146
- if (env2.CI || env2.CONTINUOUS_INTEGRATION)
245147
- return true;
245148
- if (process.platform === "linux" && !env2.DISPLAY && !env2.WAYLAND_DISPLAY) {
245149
- return true;
245150
- }
245151
- return false;
245152
- }
245153
- async function loginViaLoopback(log, runTask) {
245154
- const server = await startLoopbackServer();
245155
- const pkce = generatePkcePair();
245156
- const state = generateState();
245157
- try {
245158
- const authorizeUrl = buildAuthorizeUrl({
245159
- redirectUri: server.redirectUri,
245160
- state,
245161
- codeChallenge: pkce.codeChallenge
245162
- });
245163
- log.info(`Opening your browser to sign in.
245164
- If it doesn't open, visit: ${theme.styles.dim(authorizeUrl)}`);
245165
- try {
245166
- await open_default(authorizeUrl);
245167
- } catch {}
245168
- const { code: code2 } = await runTask("Waiting for browser sign-in...", async () => server.waitForCallback(state, CALLBACK_TIMEOUT_MS), {
245169
- successMessage: "Browser sign-in completed",
245170
- errorMessage: "Browser sign-in failed"
245171
- });
245172
- const token = await runTask("Exchanging authorization code...", async () => exchangeCodeForToken({
245173
- code: code2,
245174
- redirectUri: server.redirectUri,
245175
- codeVerifier: pkce.codeVerifier
245176
- }), {
245177
- successMessage: "Authentication completed!",
245178
- errorMessage: "Token exchange failed"
245179
- });
245180
- return token;
245181
- } finally {
245182
- server.close();
245183
- }
245184
- }
245185
-
245186
244251
  // src/cli/commands/auth/login-flow.ts
245187
244252
  async function generateAndDisplayDeviceCode(log, runTask) {
245188
244253
  const deviceCodeResponse = await runTask("Generating device code...", async () => {
@@ -245225,10 +244290,6 @@ async function waitForAuthentication(deviceCode, expiresIn, interval, runTask) {
245225
244290
  }
245226
244291
  return tokenResponse;
245227
244292
  }
245228
- async function loginViaDeviceCode(log, runTask) {
245229
- const deviceCodeResponse = await generateAndDisplayDeviceCode(log, runTask);
245230
- return waitForAuthentication(deviceCodeResponse.deviceCode, deviceCodeResponse.expiresIn, deviceCodeResponse.interval, runTask);
245231
- }
245232
244293
  async function saveAuthData(response, userInfo) {
245233
244294
  const expiresAt = Date.now() + response.expiresIn * 1000;
245234
244295
  await writeAuth({
@@ -245239,19 +244300,12 @@ async function saveAuthData(response, userInfo) {
245239
244300
  name: userInfo.name
245240
244301
  });
245241
244302
  }
245242
- async function login({ log, runTask }, options = {}) {
245243
- let token;
245244
- const useDeviceCode = options.deviceCode || isHeadlessEnv();
245245
- if (!useDeviceCode) {
245246
- try {
245247
- token = await loginViaLoopback(log, runTask);
245248
- } catch (error48) {
245249
- log.warn(`Browser sign-in unavailable (${error48 instanceof Error ? error48.message : String(error48)}). Falling back to device code.`);
245250
- }
245251
- }
245252
- if (!token) {
245253
- token = await loginViaDeviceCode(log, runTask);
245254
- }
244303
+ async function login({
244304
+ log,
244305
+ runTask
244306
+ }) {
244307
+ const deviceCodeResponse = await generateAndDisplayDeviceCode(log, runTask);
244308
+ const token = await waitForAuthentication(deviceCodeResponse.deviceCode, deviceCodeResponse.expiresIn, deviceCodeResponse.interval, runTask);
245255
244309
  const userInfo = await getUserInfo(token.accessToken);
245256
244310
  await saveAuthData(token, userInfo);
245257
244311
  return {
@@ -245288,7 +244342,7 @@ function isPlainObject2(value) {
245288
244342
  }
245289
244343
 
245290
244344
  // ../../node_modules/execa/lib/arguments/file-url.js
245291
- import { fileURLToPath as fileURLToPath3 } from "node:url";
244345
+ import { fileURLToPath as fileURLToPath2 } from "node:url";
245292
244346
  var safeNormalizeFileUrl = (file2, name2) => {
245293
244347
  const fileString = normalizeFileUrl(normalizeDenoExecPath(file2));
245294
244348
  if (typeof fileString !== "string") {
@@ -245298,7 +244352,7 @@ var safeNormalizeFileUrl = (file2, name2) => {
245298
244352
  };
245299
244353
  var normalizeDenoExecPath = (file2) => isDenoExecPath(file2) ? file2.toString() : file2;
245300
244354
  var isDenoExecPath = (file2) => typeof file2 !== "string" && file2 && Object.getPrototypeOf(file2) === String.prototype;
245301
- var normalizeFileUrl = (file2) => file2 instanceof URL ? fileURLToPath3(file2) : file2;
244355
+ var normalizeFileUrl = (file2) => file2 instanceof URL ? fileURLToPath2(file2) : file2;
245302
244356
 
245303
244357
  // ../../node_modules/execa/lib/methods/parameters.js
245304
244358
  var normalizeParameters = (rawFile, rawArguments = [], rawOptions = {}) => {
@@ -245480,9 +244534,9 @@ import { spawnSync } from "node:child_process";
245480
244534
  import { debuglog } from "node:util";
245481
244535
 
245482
244536
  // ../../node_modules/execa/lib/utils/standard-stream.js
245483
- import process13 from "node:process";
244537
+ import process6 from "node:process";
245484
244538
  var isStandardStream = (stream) => STANDARD_STREAMS.includes(stream);
245485
- var STANDARD_STREAMS = [process13.stdin, process13.stdout, process13.stderr];
244539
+ var STANDARD_STREAMS = [process6.stdin, process6.stdout, process6.stderr];
245486
244540
  var STANDARD_STREAMS_ALIASES = ["stdin", "stdout", "stderr"];
245487
244541
  var getStreamName = (fdNumber) => STANDARD_STREAMS_ALIASES[fdNumber] ?? `stdio[${fdNumber}]`;
245488
244542
 
@@ -245572,7 +244626,7 @@ var VERBOSE_VALUES = ["none", "short", "full"];
245572
244626
  import { inspect } from "node:util";
245573
244627
 
245574
244628
  // ../../node_modules/execa/lib/arguments/escape.js
245575
- import { platform as platform6 } from "node:process";
244629
+ import { platform as platform5 } from "node:process";
245576
244630
  import { stripVTControlCharacters } from "node:util";
245577
244631
  var joinCommand = (filePath, rawArguments) => {
245578
244632
  const fileAndArguments = [filePath, ...rawArguments];
@@ -245614,16 +244668,16 @@ var quoteString = (escapedArgument) => {
245614
244668
  if (NO_ESCAPE_REGEXP.test(escapedArgument)) {
245615
244669
  return escapedArgument;
245616
244670
  }
245617
- return platform6 === "win32" ? `"${escapedArgument.replaceAll('"', '""')}"` : `'${escapedArgument.replaceAll("'", "'\\''")}'`;
244671
+ return platform5 === "win32" ? `"${escapedArgument.replaceAll('"', '""')}"` : `'${escapedArgument.replaceAll("'", "'\\''")}'`;
245618
244672
  };
245619
244673
  var NO_ESCAPE_REGEXP = /^[\w./-]+$/;
245620
244674
 
245621
244675
  // ../../node_modules/is-unicode-supported/index.js
245622
- import process14 from "node:process";
244676
+ import process7 from "node:process";
245623
244677
  function isUnicodeSupported() {
245624
- const { env: env2 } = process14;
244678
+ const { env: env2 } = process7;
245625
244679
  const { TERM, TERM_PROGRAM } = env2;
245626
- if (process14.platform !== "win32") {
244680
+ if (process7.platform !== "win32") {
245627
244681
  return TERM !== "linux";
245628
244682
  }
245629
244683
  return Boolean(env2.WT_SESSION) || Boolean(env2.TERMINUS_SUBLIME) || env2.ConEmuTask === "{cmd::Cmder}" || TERM_PROGRAM === "Terminus-Sublime" || TERM_PROGRAM === "vscode" || TERM === "xterm-256color" || TERM === "alacritty" || TERM === "rxvt-unicode" || TERM === "rxvt-unicode-256color" || env2.TERMINAL_EMULATOR === "JetBrains-JediTerm";
@@ -245908,11 +244962,11 @@ var replacements = Object.entries(specialMainSymbols);
245908
244962
  // ../../node_modules/yoctocolors/base.js
245909
244963
  import tty2 from "node:tty";
245910
244964
  var hasColors = tty2?.WriteStream?.prototype?.hasColors?.() ?? false;
245911
- var format = (open2, close) => {
244965
+ var format = (open, close) => {
245912
244966
  if (!hasColors) {
245913
244967
  return (input) => input;
245914
244968
  }
245915
- const openCode = `\x1B[${open2}m`;
244969
+ const openCode = `\x1B[${open}m`;
245916
244970
  const closeCode = `\x1B[${close}m`;
245917
244971
  return (input) => {
245918
244972
  const string4 = input + "";
@@ -246129,43 +245183,43 @@ var handleCommand = (filePath, rawArguments, rawOptions) => {
246129
245183
 
246130
245184
  // ../../node_modules/execa/lib/arguments/options.js
246131
245185
  var import_cross_spawn = __toESM(require_cross_spawn(), 1);
246132
- import path16 from "node:path";
246133
- import process17 from "node:process";
245186
+ import path15 from "node:path";
245187
+ import process10 from "node:process";
246134
245188
 
246135
245189
  // ../../node_modules/npm-run-path/index.js
246136
- import process15 from "node:process";
246137
- import path13 from "node:path";
245190
+ import process8 from "node:process";
245191
+ import path12 from "node:path";
246138
245192
 
246139
245193
  // ../../node_modules/npm-run-path/node_modules/path-key/index.js
246140
245194
  function pathKey(options = {}) {
246141
245195
  const {
246142
245196
  env: env2 = process.env,
246143
- platform: platform7 = process.platform
245197
+ platform: platform6 = process.platform
246144
245198
  } = options;
246145
- if (platform7 !== "win32") {
245199
+ if (platform6 !== "win32") {
246146
245200
  return "PATH";
246147
245201
  }
246148
245202
  return Object.keys(env2).reverse().find((key) => key.toUpperCase() === "PATH") || "Path";
246149
245203
  }
246150
245204
 
246151
245205
  // ../../node_modules/npm-run-path/node_modules/unicorn-magic/node.js
246152
- import { promisify as promisify9 } from "node:util";
245206
+ import { promisify as promisify3 } from "node:util";
246153
245207
  import { execFile as execFileCallback2, execFileSync as execFileSyncOriginal2 } from "node:child_process";
246154
- import path12 from "node:path";
246155
- import { fileURLToPath as fileURLToPath4 } from "node:url";
246156
- var execFileOriginal2 = promisify9(execFileCallback2);
245208
+ import path11 from "node:path";
245209
+ import { fileURLToPath as fileURLToPath3 } from "node:url";
245210
+ var execFileOriginal2 = promisify3(execFileCallback2);
246157
245211
  function toPath2(urlOrPath) {
246158
- return urlOrPath instanceof URL ? fileURLToPath4(urlOrPath) : urlOrPath;
245212
+ return urlOrPath instanceof URL ? fileURLToPath3(urlOrPath) : urlOrPath;
246159
245213
  }
246160
245214
  function traversePathUp(startPath) {
246161
245215
  return {
246162
245216
  *[Symbol.iterator]() {
246163
- let currentPath = path12.resolve(toPath2(startPath));
245217
+ let currentPath = path11.resolve(toPath2(startPath));
246164
245218
  let previousPath;
246165
245219
  while (previousPath !== currentPath) {
246166
245220
  yield currentPath;
246167
245221
  previousPath = currentPath;
246168
- currentPath = path12.resolve(currentPath, "..");
245222
+ currentPath = path11.resolve(currentPath, "..");
246169
245223
  }
246170
245224
  }
246171
245225
  };
@@ -246174,38 +245228,38 @@ var TEN_MEGABYTES_IN_BYTES2 = 10 * 1024 * 1024;
246174
245228
 
246175
245229
  // ../../node_modules/npm-run-path/index.js
246176
245230
  var npmRunPath = ({
246177
- cwd = process15.cwd(),
246178
- path: pathOption = process15.env[pathKey()],
245231
+ cwd = process8.cwd(),
245232
+ path: pathOption = process8.env[pathKey()],
246179
245233
  preferLocal = true,
246180
- execPath = process15.execPath,
245234
+ execPath = process8.execPath,
246181
245235
  addExecPath = true
246182
245236
  } = {}) => {
246183
- const cwdPath = path13.resolve(toPath2(cwd));
245237
+ const cwdPath = path12.resolve(toPath2(cwd));
246184
245238
  const result = [];
246185
- const pathParts = pathOption.split(path13.delimiter);
245239
+ const pathParts = pathOption.split(path12.delimiter);
246186
245240
  if (preferLocal) {
246187
245241
  applyPreferLocal(result, pathParts, cwdPath);
246188
245242
  }
246189
245243
  if (addExecPath) {
246190
245244
  applyExecPath(result, pathParts, execPath, cwdPath);
246191
245245
  }
246192
- return pathOption === "" || pathOption === path13.delimiter ? `${result.join(path13.delimiter)}${pathOption}` : [...result, pathOption].join(path13.delimiter);
245246
+ return pathOption === "" || pathOption === path12.delimiter ? `${result.join(path12.delimiter)}${pathOption}` : [...result, pathOption].join(path12.delimiter);
246193
245247
  };
246194
245248
  var applyPreferLocal = (result, pathParts, cwdPath) => {
246195
245249
  for (const directory of traversePathUp(cwdPath)) {
246196
- const pathPart = path13.join(directory, "node_modules/.bin");
245250
+ const pathPart = path12.join(directory, "node_modules/.bin");
246197
245251
  if (!pathParts.includes(pathPart)) {
246198
245252
  result.push(pathPart);
246199
245253
  }
246200
245254
  }
246201
245255
  };
246202
245256
  var applyExecPath = (result, pathParts, execPath, cwdPath) => {
246203
- const pathPart = path13.resolve(cwdPath, toPath2(execPath), "..");
245257
+ const pathPart = path12.resolve(cwdPath, toPath2(execPath), "..");
246204
245258
  if (!pathParts.includes(pathPart)) {
246205
245259
  result.push(pathPart);
246206
245260
  }
246207
245261
  };
246208
- var npmRunPathEnv = ({ env: env2 = process15.env, ...options } = {}) => {
245262
+ var npmRunPathEnv = ({ env: env2 = process8.env, ...options } = {}) => {
246209
245263
  env2 = { ...env2 };
246210
245264
  const pathName = pathKey({ env: env2 });
246211
245265
  options.path = env2[pathName];
@@ -246754,7 +245808,7 @@ var terminateOnCancel = async (subprocess, cancelSignal, context, { signal }) =>
246754
245808
  import { scheduler as scheduler2 } from "node:timers/promises";
246755
245809
 
246756
245810
  // ../../node_modules/execa/lib/ipc/send.js
246757
- import { promisify as promisify10 } from "node:util";
245811
+ import { promisify as promisify4 } from "node:util";
246758
245812
 
246759
245813
  // ../../node_modules/execa/lib/ipc/validation.js
246760
245814
  var validateIpcMethod = ({ methodName, isSubprocess, ipc, isConnected }) => {
@@ -247219,7 +246273,7 @@ var getSendMethod = (anyProcess) => {
247219
246273
  if (PROCESS_SEND_METHODS.has(anyProcess)) {
247220
246274
  return PROCESS_SEND_METHODS.get(anyProcess);
247221
246275
  }
247222
- const sendMethod = promisify10(anyProcess.send.bind(anyProcess));
246276
+ const sendMethod = promisify4(anyProcess.send.bind(anyProcess));
247223
246277
  PROCESS_SEND_METHODS.set(anyProcess, sendMethod);
247224
246278
  return sendMethod;
247225
246279
  };
@@ -247334,14 +246388,14 @@ var getReason = ({ reason }) => {
247334
246388
 
247335
246389
  // ../../node_modules/execa/lib/terminate/timeout.js
247336
246390
  import { setTimeout as setTimeout3 } from "node:timers/promises";
247337
- var validateTimeout = ({ timeout: timeout3 }) => {
247338
- if (timeout3 !== undefined && (!Number.isFinite(timeout3) || timeout3 < 0)) {
247339
- throw new TypeError(`Expected the \`timeout\` option to be a non-negative integer, got \`${timeout3}\` (${typeof timeout3})`);
246391
+ var validateTimeout = ({ timeout: timeout2 }) => {
246392
+ if (timeout2 !== undefined && (!Number.isFinite(timeout2) || timeout2 < 0)) {
246393
+ throw new TypeError(`Expected the \`timeout\` option to be a non-negative integer, got \`${timeout2}\` (${typeof timeout2})`);
247340
246394
  }
247341
246395
  };
247342
- var throwOnTimeout = (subprocess, timeout3, context, controller) => timeout3 === 0 || timeout3 === undefined ? [] : [killAfterTimeout(subprocess, timeout3, context, controller)];
247343
- var killAfterTimeout = async (subprocess, timeout3, context, { signal }) => {
247344
- await setTimeout3(timeout3, undefined, { signal });
246396
+ var throwOnTimeout = (subprocess, timeout2, context, controller) => timeout2 === 0 || timeout2 === undefined ? [] : [killAfterTimeout(subprocess, timeout2, context, controller)];
246397
+ var killAfterTimeout = async (subprocess, timeout2, context, { signal }) => {
246398
+ await setTimeout3(timeout2, undefined, { signal });
247345
246399
  context.terminationReason ??= "timeout";
247346
246400
  subprocess.kill();
247347
246401
  throw new DiscardedError;
@@ -247349,7 +246403,7 @@ var killAfterTimeout = async (subprocess, timeout3, context, { signal }) => {
247349
246403
 
247350
246404
  // ../../node_modules/execa/lib/methods/node.js
247351
246405
  import { execPath, execArgv } from "node:process";
247352
- import path14 from "node:path";
246406
+ import path13 from "node:path";
247353
246407
  var mapNode = ({ options }) => {
247354
246408
  if (options.node === false) {
247355
246409
  throw new TypeError('The "node" option cannot be false with `execaNode()`.');
@@ -247368,7 +246422,7 @@ var handleNodeOption = (file2, commandArguments, {
247368
246422
  throw new TypeError('The "execPath" option has been removed. Please use the "nodePath" option instead.');
247369
246423
  }
247370
246424
  const normalizedNodePath = safeNormalizeFileUrl(nodePath2, 'The "nodePath" option');
247371
- const resolvedNodePath = path14.resolve(cwd, normalizedNodePath);
246425
+ const resolvedNodePath = path13.resolve(cwd, normalizedNodePath);
247372
246426
  const newOptions = {
247373
246427
  ...options,
247374
246428
  nodePath: resolvedNodePath,
@@ -247378,7 +246432,7 @@ var handleNodeOption = (file2, commandArguments, {
247378
246432
  if (!shouldHandleNode) {
247379
246433
  return [file2, commandArguments, newOptions];
247380
246434
  }
247381
- if (path14.basename(file2, ".exe") === "node") {
246435
+ if (path13.basename(file2, ".exe") === "node") {
247382
246436
  throw new TypeError('When the "node" option is true, the first argument does not need to be "node".');
247383
246437
  }
247384
246438
  return [
@@ -247467,15 +246521,15 @@ var serializeEncoding = (encoding) => typeof encoding === "string" ? `"${encodin
247467
246521
 
247468
246522
  // ../../node_modules/execa/lib/arguments/cwd.js
247469
246523
  import { statSync } from "node:fs";
247470
- import path15 from "node:path";
247471
- import process16 from "node:process";
246524
+ import path14 from "node:path";
246525
+ import process9 from "node:process";
247472
246526
  var normalizeCwd = (cwd = getDefaultCwd()) => {
247473
246527
  const cwdString = safeNormalizeFileUrl(cwd, 'The "cwd" option');
247474
- return path15.resolve(cwdString);
246528
+ return path14.resolve(cwdString);
247475
246529
  };
247476
246530
  var getDefaultCwd = () => {
247477
246531
  try {
247478
- return process16.cwd();
246532
+ return process9.cwd();
247479
246533
  } catch (error48) {
247480
246534
  error48.message = `The current directory does not exist.
247481
246535
  ${error48.message}`;
@@ -247518,7 +246572,7 @@ var normalizeOptions3 = (filePath, rawArguments, rawOptions) => {
247518
246572
  options.killSignal = normalizeKillSignal(options.killSignal);
247519
246573
  options.forceKillAfterDelay = normalizeForceKillAfterDelay(options.forceKillAfterDelay);
247520
246574
  options.lines = options.lines.map((lines, fdNumber) => lines && !BINARY_ENCODINGS.has(options.encoding) && options.buffer[fdNumber]);
247521
- if (process17.platform === "win32" && path16.basename(file2, ".exe") === "cmd") {
246575
+ if (process10.platform === "win32" && path15.basename(file2, ".exe") === "cmd") {
247522
246576
  commandArguments.unshift("/q");
247523
246577
  }
247524
246578
  return { file: file2, commandArguments, options };
@@ -247559,7 +246613,7 @@ var addDefaultOptions = ({
247559
246613
  serialization
247560
246614
  });
247561
246615
  var getEnv = ({ env: envOption, extendEnv, preferLocal, node, localDirectory, nodePath: nodePath2 }) => {
247562
- const env2 = extendEnv ? { ...process17.env, ...envOption } : envOption;
246616
+ const env2 = extendEnv ? { ...process10.env, ...envOption } : envOption;
247563
246617
  if (preferLocal || node) {
247564
246618
  return npmRunPathEnv({
247565
246619
  env: env2,
@@ -248035,14 +247089,14 @@ var createMessages = ({
248035
247089
  forceKillAfterDelay,
248036
247090
  killSignal,
248037
247091
  maxBuffer,
248038
- timeout: timeout3,
247092
+ timeout: timeout2,
248039
247093
  cwd
248040
247094
  }) => {
248041
247095
  const errorCode = originalError?.code;
248042
247096
  const prefix = getErrorPrefix({
248043
247097
  originalError,
248044
247098
  timedOut,
248045
- timeout: timeout3,
247099
+ timeout: timeout2,
248046
247100
  isMaxBuffer,
248047
247101
  maxBuffer,
248048
247102
  errorCode,
@@ -248074,7 +247128,7 @@ ${originalMessage}`;
248074
247128
  var getErrorPrefix = ({
248075
247129
  originalError,
248076
247130
  timedOut,
248077
- timeout: timeout3,
247131
+ timeout: timeout2,
248078
247132
  isMaxBuffer,
248079
247133
  maxBuffer,
248080
247134
  errorCode,
@@ -248089,7 +247143,7 @@ var getErrorPrefix = ({
248089
247143
  }) => {
248090
247144
  const forcefulSuffix = getForcefulSuffix(isForcefullyTerminated, forceKillAfterDelay);
248091
247145
  if (timedOut) {
248092
- return `Command timed out after ${timeout3} milliseconds${forcefulSuffix}`;
247146
+ return `Command timed out after ${timeout2} milliseconds${forcefulSuffix}`;
248093
247147
  }
248094
247148
  if (isGracefullyCanceled) {
248095
247149
  if (signal === undefined) {
@@ -248208,7 +247262,7 @@ var makeError = ({
248208
247262
  ipcOutput,
248209
247263
  options: {
248210
247264
  timeoutDuration,
248211
- timeout: timeout3 = timeoutDuration,
247265
+ timeout: timeout2 = timeoutDuration,
248212
247266
  forceKillAfterDelay,
248213
247267
  killSignal,
248214
247268
  cwd,
@@ -248234,7 +247288,7 @@ var makeError = ({
248234
247288
  forceKillAfterDelay,
248235
247289
  killSignal,
248236
247290
  maxBuffer,
248237
- timeout: timeout3,
247291
+ timeout: timeout2,
248238
247292
  cwd
248239
247293
  });
248240
247294
  const error48 = getFinalError(originalError, message, isSync);
@@ -248728,7 +247782,7 @@ var normalizeGenerator = ({ stdioItem, stdioItem: { value }, index, newTransform
248728
247782
  var sortTransforms = (newTransforms, direction) => direction === "input" ? newTransforms.reverse() : newTransforms;
248729
247783
 
248730
247784
  // ../../node_modules/execa/lib/stdio/direction.js
248731
- import process18 from "node:process";
247785
+ import process11 from "node:process";
248732
247786
  var getStreamDirection = (stdioItems, fdNumber, optionName) => {
248733
247787
  const directions = stdioItems.map((stdioItem) => getStdioItemDirection(stdioItem, fdNumber));
248734
247788
  if (directions.includes("input") && directions.includes("output")) {
@@ -248770,10 +247824,10 @@ var guessStreamDirection = {
248770
247824
  }
248771
247825
  };
248772
247826
  var getStandardStreamDirection = (value) => {
248773
- if ([0, process18.stdin].includes(value)) {
247827
+ if ([0, process11.stdin].includes(value)) {
248774
247828
  return "input";
248775
247829
  }
248776
- if ([1, 2, process18.stdout, process18.stderr].includes(value)) {
247830
+ if ([1, 2, process11.stdout, process11.stderr].includes(value)) {
248777
247831
  return "output";
248778
247832
  }
248779
247833
  };
@@ -249293,10 +248347,10 @@ var linesUint8ArrayInfo = {
249293
248347
  };
249294
248348
 
249295
248349
  // ../../node_modules/execa/lib/transform/validate.js
249296
- import { Buffer as Buffer4 } from "node:buffer";
248350
+ import { Buffer as Buffer3 } from "node:buffer";
249297
248351
  var getValidateTransformInput = (writableObjectMode, optionName) => writableObjectMode ? undefined : validateStringTransformInput.bind(undefined, optionName);
249298
248352
  var validateStringTransformInput = function* (optionName, chunk) {
249299
- if (typeof chunk !== "string" && !isUint8Array(chunk) && !Buffer4.isBuffer(chunk)) {
248353
+ if (typeof chunk !== "string" && !isUint8Array(chunk) && !Buffer3.isBuffer(chunk)) {
249300
248354
  throw new TypeError(`The \`${optionName}\` option's transform must use "objectMode: true" to receive as input: ${typeof chunk}.`);
249301
248355
  }
249302
248356
  yield chunk;
@@ -249322,7 +248376,7 @@ Instead, \`yield\` should either be called with a value, or not be called at all
249322
248376
  };
249323
248377
 
249324
248378
  // ../../node_modules/execa/lib/transform/encoding-transform.js
249325
- import { Buffer as Buffer5 } from "node:buffer";
248379
+ import { Buffer as Buffer4 } from "node:buffer";
249326
248380
  import { StringDecoder as StringDecoder3 } from "node:string_decoder";
249327
248381
  var getEncodingTransformGenerator = (binary, encoding, skipped) => {
249328
248382
  if (skipped) {
@@ -249338,7 +248392,7 @@ var getEncodingTransformGenerator = (binary, encoding, skipped) => {
249338
248392
  };
249339
248393
  };
249340
248394
  var encodingUint8ArrayGenerator = function* (textEncoder3, chunk) {
249341
- if (Buffer5.isBuffer(chunk)) {
248395
+ if (Buffer4.isBuffer(chunk)) {
249342
248396
  yield bufferToUint8Array(chunk);
249343
248397
  } else if (typeof chunk === "string") {
249344
248398
  yield textEncoder3.encode(chunk);
@@ -249655,13 +248709,13 @@ var logOutputSync = ({ serializedResult, fdNumber, state, verboseInfo, encoding,
249655
248709
  }
249656
248710
  };
249657
248711
  var writeToFiles = (serializedResult, stdioItems, outputFiles) => {
249658
- for (const { path: path17, append } of stdioItems.filter(({ type }) => FILE_TYPES.has(type))) {
249659
- const pathString = typeof path17 === "string" ? path17 : path17.toString();
248712
+ for (const { path: path16, append } of stdioItems.filter(({ type }) => FILE_TYPES.has(type))) {
248713
+ const pathString = typeof path16 === "string" ? path16 : path16.toString();
249660
248714
  if (append || outputFiles.has(pathString)) {
249661
- appendFileSync(path17, serializedResult);
248715
+ appendFileSync(path16, serializedResult);
249662
248716
  } else {
249663
248717
  outputFiles.add(pathString);
249664
- writeFileSync(path17, serializedResult);
248718
+ writeFileSync(path16, serializedResult);
249665
248719
  }
249666
248720
  }
249667
248721
  };
@@ -249880,7 +248934,7 @@ import { setMaxListeners } from "node:events";
249880
248934
  import { spawn } from "node:child_process";
249881
248935
 
249882
248936
  // ../../node_modules/execa/lib/ipc/methods.js
249883
- import process19 from "node:process";
248937
+ import process12 from "node:process";
249884
248938
 
249885
248939
  // ../../node_modules/execa/lib/ipc/get-one.js
249886
248940
  import { once as once6, on as on3 } from "node:events";
@@ -250019,9 +249073,9 @@ var addIpcMethods = (subprocess, { ipc }) => {
250019
249073
  Object.assign(subprocess, getIpcMethods(subprocess, false, ipc));
250020
249074
  };
250021
249075
  var getIpcExport = () => {
250022
- const anyProcess = process19;
249076
+ const anyProcess = process12;
250023
249077
  const isSubprocess = true;
250024
- const ipc = process19.channel !== undefined;
249078
+ const ipc = process12.channel !== undefined;
250025
249079
  return {
250026
249080
  ...getIpcMethods(anyProcess, isSubprocess, ipc),
250027
249081
  getCancelSignal: getCancelSignal.bind(undefined, {
@@ -250105,7 +249159,7 @@ var handleDummyPromise = async (error48, verboseInfo, options) => handleResult(e
250105
249159
 
250106
249160
  // ../../node_modules/execa/lib/stdio/handle-async.js
250107
249161
  import { createReadStream, createWriteStream } from "node:fs";
250108
- import { Buffer as Buffer6 } from "node:buffer";
249162
+ import { Buffer as Buffer5 } from "node:buffer";
250109
249163
  import { Readable as Readable4, Writable as Writable2, Duplex as Duplex2 } from "node:stream";
250110
249164
  var handleStdioAsync = (options, verboseInfo) => handleStdio(addPropertiesAsync, options, verboseInfo, false);
250111
249165
  var forbiddenIfAsync = ({ type, optionName }) => {
@@ -250133,7 +249187,7 @@ var addPropertiesAsync = {
250133
249187
  iterable: ({ value }) => ({ stream: Readable4.from(value) }),
250134
249188
  asyncIterable: ({ value }) => ({ stream: Readable4.from(value) }),
250135
249189
  string: ({ value }) => ({ stream: Readable4.from(value) }),
250136
- uint8Array: ({ value }) => ({ stream: Readable4.from(Buffer6.from(value)) })
249190
+ uint8Array: ({ value }) => ({ stream: Readable4.from(Buffer5.from(value)) })
250137
249191
  },
250138
249192
  output: {
250139
249193
  ...addProperties2,
@@ -250249,7 +249303,7 @@ if (process.platform === "linux") {
250249
249303
  }
250250
249304
 
250251
249305
  // ../../node_modules/signal-exit/dist/mjs/index.js
250252
- var processOk = (process20) => !!process20 && typeof process20 === "object" && typeof process20.removeListener === "function" && typeof process20.emit === "function" && typeof process20.reallyExit === "function" && typeof process20.listeners === "function" && typeof process20.kill === "function" && typeof process20.pid === "number" && typeof process20.on === "function";
249306
+ var processOk = (process13) => !!process13 && typeof process13 === "object" && typeof process13.removeListener === "function" && typeof process13.emit === "function" && typeof process13.reallyExit === "function" && typeof process13.listeners === "function" && typeof process13.kill === "function" && typeof process13.pid === "number" && typeof process13.on === "function";
250253
249307
  var kExitEmitter = Symbol.for("signal-exit emitter");
250254
249308
  var global2 = globalThis;
250255
249309
  var ObjectDefineProperty = Object.defineProperty.bind(Object);
@@ -250332,22 +249386,22 @@ class SignalExitFallback extends SignalExitBase {
250332
249386
  }
250333
249387
 
250334
249388
  class SignalExit extends SignalExitBase {
250335
- #hupSig = process20.platform === "win32" ? "SIGINT" : "SIGHUP";
249389
+ #hupSig = process13.platform === "win32" ? "SIGINT" : "SIGHUP";
250336
249390
  #emitter = new Emitter;
250337
249391
  #process;
250338
249392
  #originalProcessEmit;
250339
249393
  #originalProcessReallyExit;
250340
249394
  #sigListeners = {};
250341
249395
  #loaded = false;
250342
- constructor(process20) {
249396
+ constructor(process13) {
250343
249397
  super();
250344
- this.#process = process20;
249398
+ this.#process = process13;
250345
249399
  this.#sigListeners = {};
250346
249400
  for (const sig of signals) {
250347
249401
  this.#sigListeners[sig] = () => {
250348
249402
  const listeners = this.#process.listeners(sig);
250349
249403
  let { count: count2 } = this.#emitter;
250350
- const p = process20;
249404
+ const p = process13;
250351
249405
  if (typeof p.__signal_exit_emitter__ === "object" && typeof p.__signal_exit_emitter__.count === "number") {
250352
249406
  count2 += p.__signal_exit_emitter__.count;
250353
249407
  }
@@ -250356,12 +249410,12 @@ class SignalExit extends SignalExitBase {
250356
249410
  const ret = this.#emitter.emit("exit", null, sig);
250357
249411
  const s = sig === "SIGHUP" ? this.#hupSig : sig;
250358
249412
  if (!ret)
250359
- process20.kill(process20.pid, s);
249413
+ process13.kill(process13.pid, s);
250360
249414
  }
250361
249415
  };
250362
249416
  }
250363
- this.#originalProcessReallyExit = process20.reallyExit;
250364
- this.#originalProcessEmit = process20.emit;
249417
+ this.#originalProcessReallyExit = process13.reallyExit;
249418
+ this.#originalProcessEmit = process13.emit;
250365
249419
  }
250366
249420
  onExit(cb, opts) {
250367
249421
  if (!processOk(this.#process)) {
@@ -250439,12 +249493,12 @@ class SignalExit extends SignalExitBase {
250439
249493
  }
250440
249494
  }
250441
249495
  }
250442
- var process20 = globalThis.process;
249496
+ var process13 = globalThis.process;
250443
249497
  var {
250444
249498
  onExit,
250445
249499
  load,
250446
249500
  unload
250447
- } = signalExitWrap(processOk(process20) ? new SignalExit(process20) : new SignalExitFallback);
249501
+ } = signalExitWrap(processOk(process13) ? new SignalExit(process13) : new SignalExitFallback);
250448
249502
 
250449
249503
  // ../../node_modules/execa/lib/terminate/cleanup.js
250450
249504
  var cleanupOnExit = (subprocess, { cleanup, detached }, { signal }) => {
@@ -251069,7 +250123,7 @@ var waitForSubprocessResult = async ({
251069
250123
  buffer,
251070
250124
  maxBuffer,
251071
250125
  lines,
251072
- timeoutDuration: timeout3,
250126
+ timeoutDuration: timeout2,
251073
250127
  cancelSignal,
251074
250128
  gracefulCancel,
251075
250129
  forceKillAfterDelay,
@@ -251137,7 +250191,7 @@ var waitForSubprocessResult = async ({
251137
250191
  ]),
251138
250192
  onInternalError,
251139
250193
  throwOnSubprocessError(subprocess, controller),
251140
- ...throwOnTimeout(subprocess, timeout3, context, controller),
250194
+ ...throwOnTimeout(subprocess, timeout2, context, controller),
251141
250195
  ...throwOnCancel({
251142
250196
  subprocess,
251143
250197
  cancelSignal,
@@ -251540,11 +250594,11 @@ var handleAsyncArguments = (rawFile, rawArguments, rawOptions) => {
251540
250594
  fileDescriptors
251541
250595
  };
251542
250596
  };
251543
- var handleAsyncOptions = ({ timeout: timeout3, signal, ...options }) => {
250597
+ var handleAsyncOptions = ({ timeout: timeout2, signal, ...options }) => {
251544
250598
  if (signal !== undefined) {
251545
250599
  throw new TypeError('The "signal" option has been renamed to "cancelSignal" instead.');
251546
250600
  }
251547
- return { ...options, timeoutDuration: timeout3 };
250601
+ return { ...options, timeoutDuration: timeout2 };
251548
250602
  };
251549
250603
  var spawnSubprocessAsync = ({ file: file2, commandArguments, options, startTime, verboseInfo, command, escapedCommand, fileDescriptors }) => {
251550
250604
  let subprocess;
@@ -252631,7 +251685,7 @@ function getLoginCommand() {
252631
251685
  return new Base44Command("login", {
252632
251686
  requireAuth: false,
252633
251687
  requireAppConfig: false
252634
- }).description("Authenticate with Base44").option("--device-code", "Use device code flow instead of opening a browser", false).action(login);
251688
+ }).description("Authenticate with Base44").action(login);
252635
251689
  }
252636
251690
 
252637
251691
  // src/cli/commands/auth/logout.ts
@@ -252722,6 +251776,612 @@ function getConnectorsPullCommand() {
252722
251776
  return new Base44Command("pull").description("Pull connectors from Base44 to local files (replaces all local connector configs)").action(pullConnectorsAction);
252723
251777
  }
252724
251778
 
251779
+ // ../../node_modules/open/index.js
251780
+ import process20 from "node:process";
251781
+ import path16 from "node:path";
251782
+ import { fileURLToPath as fileURLToPath4 } from "node:url";
251783
+ import childProcess3 from "node:child_process";
251784
+ import fs19, { constants as fsConstants2 } from "node:fs/promises";
251785
+
251786
+ // ../../node_modules/wsl-utils/index.js
251787
+ import { promisify as promisify6 } from "node:util";
251788
+ import childProcess2 from "node:child_process";
251789
+ import fs18, { constants as fsConstants } from "node:fs/promises";
251790
+
251791
+ // ../../node_modules/is-wsl/index.js
251792
+ import process14 from "node:process";
251793
+ import os2 from "node:os";
251794
+ import fs17 from "node:fs";
251795
+
251796
+ // ../../node_modules/is-inside-container/index.js
251797
+ import fs16 from "node:fs";
251798
+
251799
+ // ../../node_modules/is-docker/index.js
251800
+ import fs15 from "node:fs";
251801
+ var isDockerCached;
251802
+ function hasDockerEnv() {
251803
+ try {
251804
+ fs15.statSync("/.dockerenv");
251805
+ return true;
251806
+ } catch {
251807
+ return false;
251808
+ }
251809
+ }
251810
+ function hasDockerCGroup() {
251811
+ try {
251812
+ return fs15.readFileSync("/proc/self/cgroup", "utf8").includes("docker");
251813
+ } catch {
251814
+ return false;
251815
+ }
251816
+ }
251817
+ function isDocker() {
251818
+ if (isDockerCached === undefined) {
251819
+ isDockerCached = hasDockerEnv() || hasDockerCGroup();
251820
+ }
251821
+ return isDockerCached;
251822
+ }
251823
+
251824
+ // ../../node_modules/is-inside-container/index.js
251825
+ var cachedResult;
251826
+ var hasContainerEnv = () => {
251827
+ try {
251828
+ fs16.statSync("/run/.containerenv");
251829
+ return true;
251830
+ } catch {
251831
+ return false;
251832
+ }
251833
+ };
251834
+ function isInsideContainer() {
251835
+ if (cachedResult === undefined) {
251836
+ cachedResult = hasContainerEnv() || isDocker();
251837
+ }
251838
+ return cachedResult;
251839
+ }
251840
+
251841
+ // ../../node_modules/is-wsl/index.js
251842
+ var isWsl = () => {
251843
+ if (process14.platform !== "linux") {
251844
+ return false;
251845
+ }
251846
+ if (os2.release().toLowerCase().includes("microsoft")) {
251847
+ if (isInsideContainer()) {
251848
+ return false;
251849
+ }
251850
+ return true;
251851
+ }
251852
+ try {
251853
+ return fs17.readFileSync("/proc/version", "utf8").toLowerCase().includes("microsoft") ? !isInsideContainer() : false;
251854
+ } catch {
251855
+ return false;
251856
+ }
251857
+ };
251858
+ var is_wsl_default = process14.env.__IS_WSL_TEST__ ? isWsl : isWsl();
251859
+
251860
+ // ../../node_modules/powershell-utils/index.js
251861
+ import process15 from "node:process";
251862
+ import { Buffer as Buffer6 } from "node:buffer";
251863
+ import { promisify as promisify5 } from "node:util";
251864
+ import childProcess from "node:child_process";
251865
+ var execFile = promisify5(childProcess.execFile);
251866
+ var powerShellPath = () => `${process15.env.SYSTEMROOT || process15.env.windir || String.raw`C:\Windows`}\\System32\\WindowsPowerShell\\v1.0\\powershell.exe`;
251867
+ var executePowerShell = async (command2, options = {}) => {
251868
+ const {
251869
+ powerShellPath: psPath,
251870
+ ...execFileOptions
251871
+ } = options;
251872
+ const encodedCommand = executePowerShell.encodeCommand(command2);
251873
+ return execFile(psPath ?? powerShellPath(), [
251874
+ ...executePowerShell.argumentsPrefix,
251875
+ encodedCommand
251876
+ ], {
251877
+ encoding: "utf8",
251878
+ ...execFileOptions
251879
+ });
251880
+ };
251881
+ executePowerShell.argumentsPrefix = [
251882
+ "-NoProfile",
251883
+ "-NonInteractive",
251884
+ "-ExecutionPolicy",
251885
+ "Bypass",
251886
+ "-EncodedCommand"
251887
+ ];
251888
+ executePowerShell.encodeCommand = (command2) => Buffer6.from(command2, "utf16le").toString("base64");
251889
+ executePowerShell.escapeArgument = (value) => `'${String(value).replaceAll("'", "''")}'`;
251890
+
251891
+ // ../../node_modules/wsl-utils/utilities.js
251892
+ function parseMountPointFromConfig(content) {
251893
+ for (const line of content.split(`
251894
+ `)) {
251895
+ if (/^\s*#/.test(line)) {
251896
+ continue;
251897
+ }
251898
+ const match = /^\s*root\s*=\s*(?<mountPoint>"[^"]*"|'[^']*'|[^#]*)/.exec(line);
251899
+ if (!match) {
251900
+ continue;
251901
+ }
251902
+ return match.groups.mountPoint.trim().replaceAll(/^["']|["']$/g, "");
251903
+ }
251904
+ }
251905
+
251906
+ // ../../node_modules/wsl-utils/index.js
251907
+ var execFile2 = promisify6(childProcess2.execFile);
251908
+ var wslDrivesMountPoint = (() => {
251909
+ const defaultMountPoint = "/mnt/";
251910
+ let mountPoint;
251911
+ return async function() {
251912
+ if (mountPoint) {
251913
+ return mountPoint;
251914
+ }
251915
+ const configFilePath = "/etc/wsl.conf";
251916
+ let isConfigFileExists = false;
251917
+ try {
251918
+ await fs18.access(configFilePath, fsConstants.F_OK);
251919
+ isConfigFileExists = true;
251920
+ } catch {}
251921
+ if (!isConfigFileExists) {
251922
+ return defaultMountPoint;
251923
+ }
251924
+ const configContent = await fs18.readFile(configFilePath, { encoding: "utf8" });
251925
+ const parsedMountPoint = parseMountPointFromConfig(configContent);
251926
+ if (parsedMountPoint === undefined) {
251927
+ return defaultMountPoint;
251928
+ }
251929
+ mountPoint = parsedMountPoint;
251930
+ mountPoint = mountPoint.endsWith("/") ? mountPoint : `${mountPoint}/`;
251931
+ return mountPoint;
251932
+ };
251933
+ })();
251934
+ var powerShellPathFromWsl = async () => {
251935
+ const mountPoint = await wslDrivesMountPoint();
251936
+ return `${mountPoint}c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe`;
251937
+ };
251938
+ var powerShellPath2 = is_wsl_default ? powerShellPathFromWsl : powerShellPath;
251939
+ var canAccessPowerShellPromise;
251940
+ var canAccessPowerShell = async () => {
251941
+ canAccessPowerShellPromise ??= (async () => {
251942
+ try {
251943
+ const psPath = await powerShellPath2();
251944
+ await fs18.access(psPath, fsConstants.X_OK);
251945
+ return true;
251946
+ } catch {
251947
+ return false;
251948
+ }
251949
+ })();
251950
+ return canAccessPowerShellPromise;
251951
+ };
251952
+ var wslDefaultBrowser = async () => {
251953
+ const psPath = await powerShellPath2();
251954
+ const command2 = String.raw`(Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice").ProgId`;
251955
+ const { stdout } = await executePowerShell(command2, { powerShellPath: psPath });
251956
+ return stdout.trim();
251957
+ };
251958
+ var convertWslPathToWindows = async (path16) => {
251959
+ if (/^[a-z]+:\/\//i.test(path16)) {
251960
+ return path16;
251961
+ }
251962
+ try {
251963
+ const { stdout } = await execFile2("wslpath", ["-aw", path16], { encoding: "utf8" });
251964
+ return stdout.trim();
251965
+ } catch {
251966
+ return path16;
251967
+ }
251968
+ };
251969
+
251970
+ // ../../node_modules/define-lazy-prop/index.js
251971
+ function defineLazyProperty(object2, propertyName, valueGetter) {
251972
+ const define2 = (value) => Object.defineProperty(object2, propertyName, { value, enumerable: true, writable: true });
251973
+ Object.defineProperty(object2, propertyName, {
251974
+ configurable: true,
251975
+ enumerable: true,
251976
+ get() {
251977
+ const result = valueGetter();
251978
+ define2(result);
251979
+ return result;
251980
+ },
251981
+ set(value) {
251982
+ define2(value);
251983
+ }
251984
+ });
251985
+ return object2;
251986
+ }
251987
+
251988
+ // ../../node_modules/default-browser/index.js
251989
+ import { promisify as promisify10 } from "node:util";
251990
+ import process18 from "node:process";
251991
+ import { execFile as execFile6 } from "node:child_process";
251992
+
251993
+ // ../../node_modules/default-browser-id/index.js
251994
+ import { promisify as promisify7 } from "node:util";
251995
+ import process16 from "node:process";
251996
+ import { execFile as execFile3 } from "node:child_process";
251997
+ var execFileAsync = promisify7(execFile3);
251998
+ async function defaultBrowserId() {
251999
+ if (process16.platform !== "darwin") {
252000
+ throw new Error("macOS only");
252001
+ }
252002
+ const { stdout } = await execFileAsync("defaults", ["read", "com.apple.LaunchServices/com.apple.launchservices.secure", "LSHandlers"]);
252003
+ const match = /LSHandlerRoleAll = "(?!-)(?<id>[^"]+?)";\s+?LSHandlerURLScheme = (?:http|https);/.exec(stdout);
252004
+ const browserId = match?.groups.id ?? "com.apple.Safari";
252005
+ if (browserId === "com.apple.safari") {
252006
+ return "com.apple.Safari";
252007
+ }
252008
+ return browserId;
252009
+ }
252010
+
252011
+ // ../../node_modules/run-applescript/index.js
252012
+ import process17 from "node:process";
252013
+ import { promisify as promisify8 } from "node:util";
252014
+ import { execFile as execFile4, execFileSync } from "node:child_process";
252015
+ var execFileAsync2 = promisify8(execFile4);
252016
+ async function runAppleScript(script, { humanReadableOutput = true, signal } = {}) {
252017
+ if (process17.platform !== "darwin") {
252018
+ throw new Error("macOS only");
252019
+ }
252020
+ const outputArguments = humanReadableOutput ? [] : ["-ss"];
252021
+ const execOptions = {};
252022
+ if (signal) {
252023
+ execOptions.signal = signal;
252024
+ }
252025
+ const { stdout } = await execFileAsync2("osascript", ["-e", script, outputArguments], execOptions);
252026
+ return stdout.trim();
252027
+ }
252028
+
252029
+ // ../../node_modules/bundle-name/index.js
252030
+ async function bundleName(bundleId) {
252031
+ return runAppleScript(`tell application "Finder" to set app_path to application file id "${bundleId}" as string
252032
+ tell application "System Events" to get value of property list item "CFBundleName" of property list file (app_path & ":Contents:Info.plist")`);
252033
+ }
252034
+
252035
+ // ../../node_modules/default-browser/windows.js
252036
+ import { promisify as promisify9 } from "node:util";
252037
+ import { execFile as execFile5 } from "node:child_process";
252038
+ var execFileAsync3 = promisify9(execFile5);
252039
+ var windowsBrowserProgIds = {
252040
+ MSEdgeHTM: { name: "Edge", id: "com.microsoft.edge" },
252041
+ MSEdgeBHTML: { name: "Edge Beta", id: "com.microsoft.edge.beta" },
252042
+ MSEdgeDHTML: { name: "Edge Dev", id: "com.microsoft.edge.dev" },
252043
+ AppXq0fevzme2pys62n3e0fbqa7peapykr8v: { name: "Edge", id: "com.microsoft.edge.old" },
252044
+ ChromeHTML: { name: "Chrome", id: "com.google.chrome" },
252045
+ ChromeBHTML: { name: "Chrome Beta", id: "com.google.chrome.beta" },
252046
+ ChromeDHTML: { name: "Chrome Dev", id: "com.google.chrome.dev" },
252047
+ ChromiumHTM: { name: "Chromium", id: "org.chromium.Chromium" },
252048
+ BraveHTML: { name: "Brave", id: "com.brave.Browser" },
252049
+ BraveBHTML: { name: "Brave Beta", id: "com.brave.Browser.beta" },
252050
+ BraveDHTML: { name: "Brave Dev", id: "com.brave.Browser.dev" },
252051
+ BraveSSHTM: { name: "Brave Nightly", id: "com.brave.Browser.nightly" },
252052
+ FirefoxURL: { name: "Firefox", id: "org.mozilla.firefox" },
252053
+ OperaStable: { name: "Opera", id: "com.operasoftware.Opera" },
252054
+ VivaldiHTM: { name: "Vivaldi", id: "com.vivaldi.Vivaldi" },
252055
+ "IE.HTTP": { name: "Internet Explorer", id: "com.microsoft.ie" }
252056
+ };
252057
+ var _windowsBrowserProgIdMap = new Map(Object.entries(windowsBrowserProgIds));
252058
+
252059
+ class UnknownBrowserError extends Error {
252060
+ }
252061
+ async function defaultBrowser(_execFileAsync = execFileAsync3) {
252062
+ const { stdout } = await _execFileAsync("reg", [
252063
+ "QUERY",
252064
+ " HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\http\\UserChoice",
252065
+ "/v",
252066
+ "ProgId"
252067
+ ]);
252068
+ const match = /ProgId\s*REG_SZ\s*(?<id>\S+)/.exec(stdout);
252069
+ if (!match) {
252070
+ throw new UnknownBrowserError(`Cannot find Windows browser in stdout: ${JSON.stringify(stdout)}`);
252071
+ }
252072
+ const { id } = match.groups;
252073
+ const dotIndex = id.lastIndexOf(".");
252074
+ const hyphenIndex = id.lastIndexOf("-");
252075
+ const baseIdByDot = dotIndex === -1 ? undefined : id.slice(0, dotIndex);
252076
+ const baseIdByHyphen = hyphenIndex === -1 ? undefined : id.slice(0, hyphenIndex);
252077
+ return windowsBrowserProgIds[id] ?? windowsBrowserProgIds[baseIdByDot] ?? windowsBrowserProgIds[baseIdByHyphen] ?? { name: id, id };
252078
+ }
252079
+
252080
+ // ../../node_modules/default-browser/index.js
252081
+ var execFileAsync4 = promisify10(execFile6);
252082
+ var titleize = (string4) => string4.toLowerCase().replaceAll(/(?:^|\s|-)\S/g, (x3) => x3.toUpperCase());
252083
+ async function defaultBrowser2() {
252084
+ if (process18.platform === "darwin") {
252085
+ const id = await defaultBrowserId();
252086
+ const name2 = await bundleName(id);
252087
+ return { name: name2, id };
252088
+ }
252089
+ if (process18.platform === "linux") {
252090
+ const { stdout } = await execFileAsync4("xdg-mime", ["query", "default", "x-scheme-handler/http"]);
252091
+ const id = stdout.trim();
252092
+ const name2 = titleize(id.replace(/.desktop$/, "").replace("-", " "));
252093
+ return { name: name2, id };
252094
+ }
252095
+ if (process18.platform === "win32") {
252096
+ return defaultBrowser();
252097
+ }
252098
+ throw new Error("Only macOS, Linux, and Windows are supported");
252099
+ }
252100
+
252101
+ // ../../node_modules/is-in-ssh/index.js
252102
+ import process19 from "node:process";
252103
+ var isInSsh = Boolean(process19.env.SSH_CONNECTION || process19.env.SSH_CLIENT || process19.env.SSH_TTY);
252104
+ var is_in_ssh_default = isInSsh;
252105
+
252106
+ // ../../node_modules/open/index.js
252107
+ var fallbackAttemptSymbol = Symbol("fallbackAttempt");
252108
+ var __dirname2 = import.meta.url ? path16.dirname(fileURLToPath4(import.meta.url)) : "";
252109
+ var localXdgOpenPath = path16.join(__dirname2, "xdg-open");
252110
+ var { platform: platform6, arch } = process20;
252111
+ var tryEachApp = async (apps, opener) => {
252112
+ if (apps.length === 0) {
252113
+ return;
252114
+ }
252115
+ const errors5 = [];
252116
+ for (const app of apps) {
252117
+ try {
252118
+ return await opener(app);
252119
+ } catch (error48) {
252120
+ errors5.push(error48);
252121
+ }
252122
+ }
252123
+ throw new AggregateError(errors5, "Failed to open in all supported apps");
252124
+ };
252125
+ var baseOpen = async (options) => {
252126
+ options = {
252127
+ wait: false,
252128
+ background: false,
252129
+ newInstance: false,
252130
+ allowNonzeroExitCode: false,
252131
+ ...options
252132
+ };
252133
+ const isFallbackAttempt = options[fallbackAttemptSymbol] === true;
252134
+ delete options[fallbackAttemptSymbol];
252135
+ if (Array.isArray(options.app)) {
252136
+ return tryEachApp(options.app, (singleApp) => baseOpen({
252137
+ ...options,
252138
+ app: singleApp,
252139
+ [fallbackAttemptSymbol]: true
252140
+ }));
252141
+ }
252142
+ let { name: app, arguments: appArguments = [] } = options.app ?? {};
252143
+ appArguments = [...appArguments];
252144
+ if (Array.isArray(app)) {
252145
+ return tryEachApp(app, (appName) => baseOpen({
252146
+ ...options,
252147
+ app: {
252148
+ name: appName,
252149
+ arguments: appArguments
252150
+ },
252151
+ [fallbackAttemptSymbol]: true
252152
+ }));
252153
+ }
252154
+ if (app === "browser" || app === "browserPrivate") {
252155
+ const ids = {
252156
+ "com.google.chrome": "chrome",
252157
+ "google-chrome.desktop": "chrome",
252158
+ "com.brave.browser": "brave",
252159
+ "org.mozilla.firefox": "firefox",
252160
+ "firefox.desktop": "firefox",
252161
+ "com.microsoft.msedge": "edge",
252162
+ "com.microsoft.edge": "edge",
252163
+ "com.microsoft.edgemac": "edge",
252164
+ "microsoft-edge.desktop": "edge",
252165
+ "com.apple.safari": "safari"
252166
+ };
252167
+ const flags = {
252168
+ chrome: "--incognito",
252169
+ brave: "--incognito",
252170
+ firefox: "--private-window",
252171
+ edge: "--inPrivate"
252172
+ };
252173
+ let browser;
252174
+ if (is_wsl_default) {
252175
+ const progId = await wslDefaultBrowser();
252176
+ const browserInfo = _windowsBrowserProgIdMap.get(progId);
252177
+ browser = browserInfo ?? {};
252178
+ } else {
252179
+ browser = await defaultBrowser2();
252180
+ }
252181
+ if (browser.id in ids) {
252182
+ const browserName = ids[browser.id.toLowerCase()];
252183
+ if (app === "browserPrivate") {
252184
+ if (browserName === "safari") {
252185
+ throw new Error("Safari doesn't support opening in private mode via command line");
252186
+ }
252187
+ appArguments.push(flags[browserName]);
252188
+ }
252189
+ return baseOpen({
252190
+ ...options,
252191
+ app: {
252192
+ name: apps[browserName],
252193
+ arguments: appArguments
252194
+ }
252195
+ });
252196
+ }
252197
+ throw new Error(`${browser.name} is not supported as a default browser`);
252198
+ }
252199
+ let command2;
252200
+ const cliArguments = [];
252201
+ const childProcessOptions = {};
252202
+ let shouldUseWindowsInWsl = false;
252203
+ if (is_wsl_default && !isInsideContainer() && !is_in_ssh_default && !app) {
252204
+ shouldUseWindowsInWsl = await canAccessPowerShell();
252205
+ }
252206
+ if (platform6 === "darwin") {
252207
+ command2 = "open";
252208
+ if (options.wait) {
252209
+ cliArguments.push("--wait-apps");
252210
+ }
252211
+ if (options.background) {
252212
+ cliArguments.push("--background");
252213
+ }
252214
+ if (options.newInstance) {
252215
+ cliArguments.push("--new");
252216
+ }
252217
+ if (app) {
252218
+ cliArguments.push("-a", app);
252219
+ }
252220
+ } else if (platform6 === "win32" || shouldUseWindowsInWsl) {
252221
+ command2 = await powerShellPath2();
252222
+ cliArguments.push(...executePowerShell.argumentsPrefix);
252223
+ if (!is_wsl_default) {
252224
+ childProcessOptions.windowsVerbatimArguments = true;
252225
+ }
252226
+ if (is_wsl_default && options.target) {
252227
+ options.target = await convertWslPathToWindows(options.target);
252228
+ }
252229
+ const encodedArguments = ["$ProgressPreference = 'SilentlyContinue';", "Start"];
252230
+ if (options.wait) {
252231
+ encodedArguments.push("-Wait");
252232
+ }
252233
+ if (app) {
252234
+ encodedArguments.push(executePowerShell.escapeArgument(app));
252235
+ if (options.target) {
252236
+ appArguments.push(options.target);
252237
+ }
252238
+ } else if (options.target) {
252239
+ encodedArguments.push(executePowerShell.escapeArgument(options.target));
252240
+ }
252241
+ if (appArguments.length > 0) {
252242
+ appArguments = appArguments.map((argument) => executePowerShell.escapeArgument(argument));
252243
+ encodedArguments.push("-ArgumentList", appArguments.join(","));
252244
+ }
252245
+ options.target = executePowerShell.encodeCommand(encodedArguments.join(" "));
252246
+ if (!options.wait) {
252247
+ childProcessOptions.stdio = "ignore";
252248
+ }
252249
+ } else {
252250
+ if (app) {
252251
+ command2 = app;
252252
+ } else {
252253
+ const isBundled = !__dirname2 || __dirname2 === "/";
252254
+ let exeLocalXdgOpen = false;
252255
+ try {
252256
+ await fs19.access(localXdgOpenPath, fsConstants2.X_OK);
252257
+ exeLocalXdgOpen = true;
252258
+ } catch {}
252259
+ const useSystemXdgOpen = process20.versions.electron ?? (platform6 === "android" || isBundled || !exeLocalXdgOpen);
252260
+ command2 = useSystemXdgOpen ? "xdg-open" : localXdgOpenPath;
252261
+ }
252262
+ if (appArguments.length > 0) {
252263
+ cliArguments.push(...appArguments);
252264
+ }
252265
+ if (!options.wait) {
252266
+ childProcessOptions.stdio = "ignore";
252267
+ childProcessOptions.detached = true;
252268
+ }
252269
+ }
252270
+ if (platform6 === "darwin" && appArguments.length > 0) {
252271
+ cliArguments.push("--args", ...appArguments);
252272
+ }
252273
+ if (options.target) {
252274
+ cliArguments.push(options.target);
252275
+ }
252276
+ const subprocess = childProcess3.spawn(command2, cliArguments, childProcessOptions);
252277
+ if (options.wait) {
252278
+ return new Promise((resolve5, reject) => {
252279
+ subprocess.once("error", reject);
252280
+ subprocess.once("close", (exitCode) => {
252281
+ if (!options.allowNonzeroExitCode && exitCode !== 0) {
252282
+ reject(new Error(`Exited with code ${exitCode}`));
252283
+ return;
252284
+ }
252285
+ resolve5(subprocess);
252286
+ });
252287
+ });
252288
+ }
252289
+ if (isFallbackAttempt) {
252290
+ return new Promise((resolve5, reject) => {
252291
+ subprocess.once("error", reject);
252292
+ subprocess.once("spawn", () => {
252293
+ subprocess.once("close", (exitCode) => {
252294
+ subprocess.off("error", reject);
252295
+ if (exitCode !== 0) {
252296
+ reject(new Error(`Exited with code ${exitCode}`));
252297
+ return;
252298
+ }
252299
+ subprocess.unref();
252300
+ resolve5(subprocess);
252301
+ });
252302
+ });
252303
+ });
252304
+ }
252305
+ subprocess.unref();
252306
+ return new Promise((resolve5, reject) => {
252307
+ subprocess.once("error", reject);
252308
+ subprocess.once("spawn", () => {
252309
+ subprocess.off("error", reject);
252310
+ resolve5(subprocess);
252311
+ });
252312
+ });
252313
+ };
252314
+ var open = (target, options) => {
252315
+ if (typeof target !== "string") {
252316
+ throw new TypeError("Expected a `target`");
252317
+ }
252318
+ return baseOpen({
252319
+ ...options,
252320
+ target
252321
+ });
252322
+ };
252323
+ function detectArchBinary(binary) {
252324
+ if (typeof binary === "string" || Array.isArray(binary)) {
252325
+ return binary;
252326
+ }
252327
+ const { [arch]: archBinary } = binary;
252328
+ if (!archBinary) {
252329
+ throw new Error(`${arch} is not supported`);
252330
+ }
252331
+ return archBinary;
252332
+ }
252333
+ function detectPlatformBinary({ [platform6]: platformBinary }, { wsl } = {}) {
252334
+ if (wsl && is_wsl_default) {
252335
+ return detectArchBinary(wsl);
252336
+ }
252337
+ if (!platformBinary) {
252338
+ throw new Error(`${platform6} is not supported`);
252339
+ }
252340
+ return detectArchBinary(platformBinary);
252341
+ }
252342
+ var apps = {
252343
+ browser: "browser",
252344
+ browserPrivate: "browserPrivate"
252345
+ };
252346
+ defineLazyProperty(apps, "chrome", () => detectPlatformBinary({
252347
+ darwin: "google chrome",
252348
+ win32: "chrome",
252349
+ linux: ["google-chrome", "google-chrome-stable", "chromium", "chromium-browser"]
252350
+ }, {
252351
+ wsl: {
252352
+ ia32: "/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe",
252353
+ x64: ["/mnt/c/Program Files/Google/Chrome/Application/chrome.exe", "/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe"]
252354
+ }
252355
+ }));
252356
+ defineLazyProperty(apps, "brave", () => detectPlatformBinary({
252357
+ darwin: "brave browser",
252358
+ win32: "brave",
252359
+ linux: ["brave-browser", "brave"]
252360
+ }, {
252361
+ wsl: {
252362
+ ia32: "/mnt/c/Program Files (x86)/BraveSoftware/Brave-Browser/Application/brave.exe",
252363
+ x64: ["/mnt/c/Program Files/BraveSoftware/Brave-Browser/Application/brave.exe", "/mnt/c/Program Files (x86)/BraveSoftware/Brave-Browser/Application/brave.exe"]
252364
+ }
252365
+ }));
252366
+ defineLazyProperty(apps, "firefox", () => detectPlatformBinary({
252367
+ darwin: "firefox",
252368
+ win32: String.raw`C:\Program Files\Mozilla Firefox\firefox.exe`,
252369
+ linux: "firefox"
252370
+ }, {
252371
+ wsl: "/mnt/c/Program Files/Mozilla Firefox/firefox.exe"
252372
+ }));
252373
+ defineLazyProperty(apps, "edge", () => detectPlatformBinary({
252374
+ darwin: "microsoft edge",
252375
+ win32: "msedge",
252376
+ linux: ["microsoft-edge", "microsoft-edge-dev"]
252377
+ }, {
252378
+ wsl: "/mnt/c/Program Files (x86)/Microsoft/Edge/Application/msedge.exe"
252379
+ }));
252380
+ defineLazyProperty(apps, "safari", () => detectPlatformBinary({
252381
+ darwin: "Safari"
252382
+ }));
252383
+ var open_default = open;
252384
+
252725
252385
  // src/cli/commands/connectors/oauth-prompt.ts
252726
252386
  var POLL_INTERVAL_MS = 2000;
252727
252387
  var POLL_TIMEOUT_MS = 2 * 60 * 1000;
@@ -254064,6 +253724,122 @@ import process21 from "node:process";
254064
253724
  var import_cors = __toESM(require_lib4(), 1);
254065
253725
  var import_express6 = __toESM(require_express(), 1);
254066
253726
  import { dirname as dirname19, join as join26 } from "node:path";
253727
+
253728
+ // ../../node_modules/get-port/index.js
253729
+ import net from "node:net";
253730
+ import os9 from "node:os";
253731
+
253732
+ class Locked extends Error {
253733
+ constructor(port) {
253734
+ super(`${port} is locked`);
253735
+ }
253736
+ }
253737
+ var lockedPorts = {
253738
+ old: new Set,
253739
+ young: new Set
253740
+ };
253741
+ var releaseOldLockedPortsIntervalMs = 1000 * 15;
253742
+ var timeout2;
253743
+ var getLocalHosts = () => {
253744
+ const interfaces = os9.networkInterfaces();
253745
+ const results = new Set([undefined, "0.0.0.0"]);
253746
+ for (const _interface of Object.values(interfaces)) {
253747
+ for (const config11 of _interface) {
253748
+ results.add(config11.address);
253749
+ }
253750
+ }
253751
+ return results;
253752
+ };
253753
+ var checkAvailablePort = (options8) => new Promise((resolve9, reject) => {
253754
+ const server = net.createServer();
253755
+ server.unref();
253756
+ server.on("error", reject);
253757
+ server.listen(options8, () => {
253758
+ const { port } = server.address();
253759
+ server.close(() => {
253760
+ resolve9(port);
253761
+ });
253762
+ });
253763
+ });
253764
+ var getAvailablePort = async (options8, hosts) => {
253765
+ if (options8.host || options8.port === 0) {
253766
+ return checkAvailablePort(options8);
253767
+ }
253768
+ for (const host of hosts) {
253769
+ try {
253770
+ await checkAvailablePort({ port: options8.port, host });
253771
+ } catch (error48) {
253772
+ if (!["EADDRNOTAVAIL", "EINVAL"].includes(error48.code)) {
253773
+ throw error48;
253774
+ }
253775
+ }
253776
+ }
253777
+ return options8.port;
253778
+ };
253779
+ var portCheckSequence = function* (ports) {
253780
+ if (ports) {
253781
+ yield* ports;
253782
+ }
253783
+ yield 0;
253784
+ };
253785
+ async function getPorts(options8) {
253786
+ let ports;
253787
+ let exclude = new Set;
253788
+ if (options8) {
253789
+ if (options8.port) {
253790
+ ports = typeof options8.port === "number" ? [options8.port] : options8.port;
253791
+ }
253792
+ if (options8.exclude) {
253793
+ const excludeIterable = options8.exclude;
253794
+ if (typeof excludeIterable[Symbol.iterator] !== "function") {
253795
+ throw new TypeError("The `exclude` option must be an iterable.");
253796
+ }
253797
+ for (const element of excludeIterable) {
253798
+ if (typeof element !== "number") {
253799
+ throw new TypeError("Each item in the `exclude` option must be a number corresponding to the port you want excluded.");
253800
+ }
253801
+ if (!Number.isSafeInteger(element)) {
253802
+ throw new TypeError(`Number ${element} in the exclude option is not a safe integer and can't be used`);
253803
+ }
253804
+ }
253805
+ exclude = new Set(excludeIterable);
253806
+ }
253807
+ }
253808
+ if (timeout2 === undefined) {
253809
+ timeout2 = setTimeout(() => {
253810
+ timeout2 = undefined;
253811
+ lockedPorts.old = lockedPorts.young;
253812
+ lockedPorts.young = new Set;
253813
+ }, releaseOldLockedPortsIntervalMs);
253814
+ if (timeout2.unref) {
253815
+ timeout2.unref();
253816
+ }
253817
+ }
253818
+ const hosts = getLocalHosts();
253819
+ for (const port of portCheckSequence(ports)) {
253820
+ try {
253821
+ if (exclude.has(port)) {
253822
+ continue;
253823
+ }
253824
+ let availablePort = await getAvailablePort({ ...options8, port }, hosts);
253825
+ while (lockedPorts.old.has(availablePort) || lockedPorts.young.has(availablePort)) {
253826
+ if (port !== 0) {
253827
+ throw new Locked(port);
253828
+ }
253829
+ availablePort = await getAvailablePort({ ...options8, port }, hosts);
253830
+ }
253831
+ lockedPorts.young.add(availablePort);
253832
+ return availablePort;
253833
+ } catch (error48) {
253834
+ if (!["EADDRINUSE", "EACCES"].includes(error48.code) && !(error48 instanceof Locked)) {
253835
+ throw error48;
253836
+ }
253837
+ }
253838
+ }
253839
+ throw new Error("No available ports found");
253840
+ }
253841
+
253842
+ // src/cli/dev/dev-server/main.ts
254067
253843
  var import_http_proxy_middleware2 = __toESM(require_dist2(), 1);
254068
253844
 
254069
253845
  // ../../node_modules/tmp-promise/index.js
@@ -255367,11 +255143,11 @@ async function createEntityRoutes(db2, logger2, broadcast) {
255367
255143
  // src/cli/dev/dev-server/routes/integrations.ts
255368
255144
  var import_express5 = __toESM(require_express(), 1);
255369
255145
  var import_multer = __toESM(require_multer(), 1);
255370
- import { createHash as createHash2, randomUUID as randomUUID4 } from "node:crypto";
255146
+ import { createHash, randomUUID as randomUUID4 } from "node:crypto";
255371
255147
  import fs28 from "node:fs";
255372
255148
  import path18 from "node:path";
255373
255149
  function createFileToken(fileUri) {
255374
- return createHash2("sha256").update(fileUri).digest("hex");
255150
+ return createHash("sha256").update(fileUri).digest("hex");
255375
255151
  }
255376
255152
  function createIntegrationRoutes(mediaFilesDir, baseUrl, remoteProxy, logger2) {
255377
255153
  const router = import_express5.Router({ mergeParams: true });
@@ -261769,4 +261545,4 @@ export {
261769
261545
  CLIExitError
261770
261546
  };
261771
261547
 
261772
- //# debugId=DB09D4C2C5ECC9B964756E2164756E21
261548
+ //# debugId=BA50EE2DE519396A64756E2164756E21