@jsenv/cli 0.2.34 → 0.2.36

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.
Files changed (32) hide show
  1. package/package.json +1 -1
  2. package/template-node-package/package.json +4 -4
  3. package/template-web/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/dist/js/new_stylesheet.js +1 -1
  4. package/template-web/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/packages/internal/js-module-fallback/dist/js/s.js +5 -5
  5. package/template-web/package.json +6 -6
  6. package/template-web-components/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/dist/js/new_stylesheet.js +1 -1
  7. package/template-web-components/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/packages/internal/js-module-fallback/dist/js/s.js +5 -5
  8. package/template-web-components/package.json +6 -6
  9. package/template-web-preact/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/dist/js/new_stylesheet.js +1 -1
  10. package/template-web-preact/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/packages/internal/js-module-fallback/dist/js/s.js +5 -5
  11. package/template-web-preact/.jsenv/shape/index.html +1 -1
  12. package/template-web-preact/.jsenv/shape/vendors.js +1 -1
  13. package/template-web-preact/.jsenv/shape/vendors.nomodule.js +1 -1
  14. package/template-web-preact/dist/index.html +1 -1
  15. package/template-web-preact/dist/js/vendors.nomodule.js +1 -1
  16. package/template-web-preact/package.json +7 -7
  17. package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/dist/js/new_stylesheet.js +1 -1
  18. package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/node_modules/react/react/jsx-runtime.jsx +3 -3
  19. package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/node_modules/react/react.jsx +18 -18
  20. package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/node_modules/react-dom/react-dom/client.jsx +413 -413
  21. package/template-web-react/.jsenv/craft/@fs/Users/dmail/Documents/dev/core/packages/internal/js-module-fallback/dist/js/s.js +5 -5
  22. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/index.production.js +22 -22
  23. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/index.production.js__compile_info__.json +3 -3
  24. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/index.production.map +1 -1
  25. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/jsx-runtime.production.js +3 -3
  26. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/jsx-runtime.production.js__compile_info__.json +3 -3
  27. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react/jsx-runtime.production.map +1 -1
  28. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react-dom/client.production.js +461 -461
  29. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react-dom/client.production.js__compile_info__.json +3 -3
  30. package/template-web-react/.jsenv/craft/cjs_to_esm/@fs/Users/dmail/Documents/dev/core/node_modules/react-dom/client.production.map +1 -1
  31. package/template-web-react/.jsenv/craft/cjs_to_esm/__compile_context__.json +1 -1
  32. package/template-web-react/package.json +7 -7
@@ -302,7 +302,7 @@ function requireScheduler_production () {
302
302
  var diff = a.sortIndex - b.sortIndex;
303
303
  return 0 !== diff ? diff : a.id - b.id;
304
304
  }
305
- exports.unstable_now = void 0;
305
+ exports.unstable_now = undefined;
306
306
  if ("object" === typeof performance && "function" === typeof performance.now) {
307
307
  var localPerformance = performance;
308
308
  exports.unstable_now = function () {
@@ -320,9 +320,9 @@ function requireScheduler_production () {
320
320
  taskIdCounter = 1,
321
321
  currentTask = null,
322
322
  currentPriorityLevel = 3,
323
- isPerformingWork = !1,
324
- isHostCallbackScheduled = !1,
325
- isHostTimeoutScheduled = !1,
323
+ isPerformingWork = false,
324
+ isHostCallbackScheduled = false,
325
+ isHostTimeoutScheduled = false,
326
326
  localSetTimeout = "function" === typeof setTimeout ? setTimeout : null,
327
327
  localClearTimeout = "function" === typeof clearTimeout ? clearTimeout : null,
328
328
  localSetImmediate = "undefined" !== typeof setImmediate ? setImmediate : null;
@@ -338,29 +338,29 @@ function requireScheduler_production () {
338
338
  }
339
339
  }
340
340
  function handleTimeout(currentTime) {
341
- isHostTimeoutScheduled = !1;
341
+ isHostTimeoutScheduled = false;
342
342
  advanceTimers(currentTime);
343
343
  if (!isHostCallbackScheduled)
344
344
  if (null !== peek(taskQueue))
345
- (isHostCallbackScheduled = !0), requestHostCallback();
345
+ (isHostCallbackScheduled = true), requestHostCallback();
346
346
  else {
347
347
  var firstTimer = peek(timerQueue);
348
348
  null !== firstTimer &&
349
349
  requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
350
350
  }
351
351
  }
352
- var isMessageLoopRunning = !1,
352
+ var isMessageLoopRunning = false,
353
353
  taskTimeoutID = -1,
354
354
  frameInterval = 5,
355
355
  startTime = -1;
356
356
  function shouldYieldToHost() {
357
- return exports.unstable_now() - startTime < frameInterval ? !1 : !0;
357
+ return exports.unstable_now() - startTime < frameInterval ? false : true;
358
358
  }
359
359
  function performWorkUntilDeadline() {
360
360
  if (isMessageLoopRunning) {
361
361
  var currentTime = exports.unstable_now();
362
362
  startTime = currentTime;
363
- var hasMoreWork = !0;
363
+ var hasMoreWork = true;
364
364
  try {
365
365
  a: {
366
366
  isHostCallbackScheduled = !1;
@@ -422,7 +422,7 @@ function requireScheduler_production () {
422
422
  } finally {
423
423
  hasMoreWork
424
424
  ? schedulePerformWorkUntilDeadline()
425
- : (isMessageLoopRunning = !1);
425
+ : (isMessageLoopRunning = false);
426
426
  }
427
427
  }
428
428
  }
@@ -444,7 +444,7 @@ function requireScheduler_production () {
444
444
  };
445
445
  function requestHostCallback() {
446
446
  isMessageLoopRunning ||
447
- ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline());
447
+ ((isMessageLoopRunning = true), schedulePerformWorkUntilDeadline());
448
448
  }
449
449
  function requestHostTimeout(callback, ms) {
450
450
  taskTimeoutID = localSetTimeout(function () {
@@ -463,7 +463,7 @@ function requireScheduler_production () {
463
463
  exports.unstable_continueExecution = function () {
464
464
  isHostCallbackScheduled ||
465
465
  isPerformingWork ||
466
- ((isHostCallbackScheduled = !0), requestHostCallback());
466
+ ((isHostCallbackScheduled = true), requestHostCallback());
467
467
  };
468
468
  exports.unstable_forceFrameRate = function (fps) {
469
469
  0 > fps || 125 < fps
@@ -562,13 +562,13 @@ function requireScheduler_production () {
562
562
  priorityLevel === peek(timerQueue) &&
563
563
  (isHostTimeoutScheduled
564
564
  ? (localClearTimeout(taskTimeoutID), (taskTimeoutID = -1))
565
- : (isHostTimeoutScheduled = !0),
565
+ : (isHostTimeoutScheduled = true),
566
566
  requestHostTimeout(handleTimeout, options - currentTime)))
567
567
  : ((priorityLevel.sortIndex = timeout),
568
568
  push(taskQueue, priorityLevel),
569
569
  isHostCallbackScheduled ||
570
570
  isPerformingWork ||
571
- ((isHostCallbackScheduled = !0), requestHostCallback()));
571
+ ((isHostCallbackScheduled = true), requestHostCallback()));
572
572
  return priorityLevel;
573
573
  };
574
574
  exports.unstable_shouldYield = shouldYieldToHost;
@@ -656,7 +656,7 @@ function requireReactDom_production () {
656
656
  REACT_PORTAL_TYPE = Symbol.for("react.portal");
657
657
  function createPortal$1(children, containerInfo, implementation) {
658
658
  var key =
659
- 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
659
+ 3 < arguments.length && undefined !== arguments[3] ? arguments[3] : null;
660
660
  return {
661
661
  $$typeof: REACT_PORTAL_TYPE,
662
662
  key: null == key ? null : "" + key,
@@ -676,7 +676,7 @@ function requireReactDom_production () {
676
676
  Internals;
677
677
  reactDom_production.createPortal = function (children, container) {
678
678
  var key =
679
- 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
679
+ 2 < arguments.length && undefined !== arguments[2] ? arguments[2] : null;
680
680
  if (
681
681
  !container ||
682
682
  (1 !== container.nodeType &&
@@ -706,7 +706,7 @@ function requireReactDom_production () {
706
706
  ? "use-credentials" === options
707
707
  ? options
708
708
  : ""
709
- : void 0))
709
+ : undefined))
710
710
  : (options = null),
711
711
  Internals.d.C(href, options));
712
712
  };
@@ -718,15 +718,15 @@ function requireReactDom_production () {
718
718
  var as = options.as,
719
719
  crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
720
720
  integrity =
721
- "string" === typeof options.integrity ? options.integrity : void 0,
721
+ "string" === typeof options.integrity ? options.integrity : undefined,
722
722
  fetchPriority =
723
723
  "string" === typeof options.fetchPriority
724
724
  ? options.fetchPriority
725
- : void 0;
725
+ : undefined;
726
726
  "style" === as
727
727
  ? Internals.d.S(
728
728
  href,
729
- "string" === typeof options.precedence ? options.precedence : void 0,
729
+ "string" === typeof options.precedence ? options.precedence : undefined,
730
730
  {
731
731
  crossOrigin: crossOrigin,
732
732
  integrity: integrity,
@@ -738,7 +738,7 @@ function requireReactDom_production () {
738
738
  crossOrigin: crossOrigin,
739
739
  integrity: integrity,
740
740
  fetchPriority: fetchPriority,
741
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
741
+ nonce: "string" === typeof options.nonce ? options.nonce : undefined
742
742
  });
743
743
  }
744
744
  };
@@ -753,8 +753,8 @@ function requireReactDom_production () {
753
753
  Internals.d.M(href, {
754
754
  crossOrigin: crossOrigin,
755
755
  integrity:
756
- "string" === typeof options.integrity ? options.integrity : void 0,
757
- nonce: "string" === typeof options.nonce ? options.nonce : void 0
756
+ "string" === typeof options.integrity ? options.integrity : undefined,
757
+ nonce: "string" === typeof options.nonce ? options.nonce : undefined
758
758
  });
759
759
  }
760
760
  } else null == options && Internals.d.M(href);
@@ -771,22 +771,22 @@ function requireReactDom_production () {
771
771
  Internals.d.L(href, as, {
772
772
  crossOrigin: crossOrigin,
773
773
  integrity:
774
- "string" === typeof options.integrity ? options.integrity : void 0,
775
- nonce: "string" === typeof options.nonce ? options.nonce : void 0,
776
- type: "string" === typeof options.type ? options.type : void 0,
774
+ "string" === typeof options.integrity ? options.integrity : undefined,
775
+ nonce: "string" === typeof options.nonce ? options.nonce : undefined,
776
+ type: "string" === typeof options.type ? options.type : undefined,
777
777
  fetchPriority:
778
778
  "string" === typeof options.fetchPriority
779
779
  ? options.fetchPriority
780
- : void 0,
780
+ : undefined,
781
781
  referrerPolicy:
782
782
  "string" === typeof options.referrerPolicy
783
783
  ? options.referrerPolicy
784
- : void 0,
784
+ : undefined,
785
785
  imageSrcSet:
786
- "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
786
+ "string" === typeof options.imageSrcSet ? options.imageSrcSet : undefined,
787
787
  imageSizes:
788
- "string" === typeof options.imageSizes ? options.imageSizes : void 0,
789
- media: "string" === typeof options.media ? options.media : void 0
788
+ "string" === typeof options.imageSizes ? options.imageSizes : undefined,
789
+ media: "string" === typeof options.media ? options.media : undefined
790
790
  });
791
791
  }
792
792
  };
@@ -798,10 +798,10 @@ function requireReactDom_production () {
798
798
  as:
799
799
  "string" === typeof options.as && "script" !== options.as
800
800
  ? options.as
801
- : void 0,
801
+ : undefined,
802
802
  crossOrigin: crossOrigin,
803
803
  integrity:
804
- "string" === typeof options.integrity ? options.integrity : void 0
804
+ "string" === typeof options.integrity ? options.integrity : undefined
805
805
  });
806
806
  } else Internals.d.m(href);
807
807
  };
@@ -964,7 +964,7 @@ function requireReactDomClient_production () {
964
964
  prefix,
965
965
  suffix;
966
966
  function describeBuiltInComponentFrame(name) {
967
- if (void 0 === prefix)
967
+ if (undefined === prefix)
968
968
  try {
969
969
  throw Error();
970
970
  } catch (x) {
@@ -979,12 +979,12 @@ function requireReactDomClient_production () {
979
979
  }
980
980
  return "\n" + prefix + name + suffix;
981
981
  }
982
- var reentry = !1;
982
+ var reentry = false;
983
983
  function describeNativeComponentFrame(fn, construct) {
984
984
  if (!fn || reentry) return "";
985
- reentry = !0;
985
+ reentry = true;
986
986
  var previousPrepareStackTrace = Error.prepareStackTrace;
987
- Error.prepareStackTrace = void 0;
987
+ Error.prepareStackTrace = undefined;
988
988
  try {
989
989
  var RunInRootFrame = {
990
990
  DetermineComponentFrameRoot: function () {
@@ -1107,7 +1107,7 @@ function requireReactDomClient_production () {
1107
1107
  }
1108
1108
  }
1109
1109
  } finally {
1110
- (reentry = !1), (Error.prepareStackTrace = previousPrepareStackTrace);
1110
+ (reentry = false), (Error.prepareStackTrace = previousPrepareStackTrace);
1111
1111
  }
1112
1112
  return (previousPrepareStackTrace = fn ? fn.displayName || fn.name : "")
1113
1113
  ? describeBuiltInComponentFrame(previousPrepareStackTrace)
@@ -1127,13 +1127,13 @@ function requireReactDomClient_production () {
1127
1127
  return describeBuiltInComponentFrame("SuspenseList");
1128
1128
  case 0:
1129
1129
  case 15:
1130
- return (fiber = describeNativeComponentFrame(fiber.type, !1)), fiber;
1130
+ return (fiber = describeNativeComponentFrame(fiber.type, false)), fiber;
1131
1131
  case 11:
1132
1132
  return (
1133
- (fiber = describeNativeComponentFrame(fiber.type.render, !1)), fiber
1133
+ (fiber = describeNativeComponentFrame(fiber.type.render, false)), fiber
1134
1134
  );
1135
1135
  case 1:
1136
- return (fiber = describeNativeComponentFrame(fiber.type, !0)), fiber;
1136
+ return (fiber = describeNativeComponentFrame(fiber.type, true)), fiber;
1137
1137
  default:
1138
1138
  return "";
1139
1139
  }
@@ -1207,15 +1207,15 @@ function requireReactDomClient_production () {
1207
1207
  }
1208
1208
  if (a.return !== b.return) (a = parentA), (b = parentB);
1209
1209
  else {
1210
- for (var didFindChild = !1, child$2 = parentA.child; child$2; ) {
1210
+ for (var didFindChild = false, child$2 = parentA.child; child$2; ) {
1211
1211
  if (child$2 === a) {
1212
- didFindChild = !0;
1212
+ didFindChild = true;
1213
1213
  a = parentA;
1214
1214
  b = parentB;
1215
1215
  break;
1216
1216
  }
1217
1217
  if (child$2 === b) {
1218
- didFindChild = !0;
1218
+ didFindChild = true;
1219
1219
  b = parentA;
1220
1220
  a = parentB;
1221
1221
  break;
@@ -1225,13 +1225,13 @@ function requireReactDomClient_production () {
1225
1225
  if (!didFindChild) {
1226
1226
  for (child$2 = parentB.child; child$2; ) {
1227
1227
  if (child$2 === a) {
1228
- didFindChild = !0;
1228
+ didFindChild = true;
1229
1229
  a = parentB;
1230
1230
  b = parentA;
1231
1231
  break;
1232
1232
  }
1233
1233
  if (child$2 === b) {
1234
- didFindChild = !0;
1234
+ didFindChild = true;
1235
1235
  b = parentB;
1236
1236
  a = parentA;
1237
1237
  break;
@@ -1260,7 +1260,7 @@ function requireReactDomClient_production () {
1260
1260
  ReactDOMSharedInternals =
1261
1261
  ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
1262
1262
  sharedNotPendingObject = {
1263
- pending: !1,
1263
+ pending: false,
1264
1264
  data: null,
1265
1265
  method: null,
1266
1266
  action: null
@@ -1629,7 +1629,7 @@ function requireReactDomClient_production () {
1629
1629
  var updatePriority = ReactDOMSharedInternals.p;
1630
1630
  if (0 !== updatePriority) return updatePriority;
1631
1631
  updatePriority = window.event;
1632
- return void 0 === updatePriority ? 32 : getEventPriority(updatePriority.type);
1632
+ return undefined === updatePriority ? 32 : getEventPriority(updatePriority.type);
1633
1633
  }
1634
1634
  function runWithPriority(priority, fn) {
1635
1635
  var previousPriority = ReactDOMSharedInternals.p;
@@ -1714,7 +1714,7 @@ function requireReactDomClient_production () {
1714
1714
  return resources;
1715
1715
  }
1716
1716
  function markNodeAsHoistable(node) {
1717
- node[internalHoistableMarker] = !0;
1717
+ node[internalHoistableMarker] = true;
1718
1718
  }
1719
1719
  var allNativeEvents = new Set(),
1720
1720
  registrationNameDependencies = {};
@@ -1743,12 +1743,12 @@ function requireReactDomClient_production () {
1743
1743
  validatedAttributeNameCache = {};
1744
1744
  function isAttributeNameSafe(attributeName) {
1745
1745
  if (hasOwnProperty.call(validatedAttributeNameCache, attributeName))
1746
- return !0;
1747
- if (hasOwnProperty.call(illegalAttributeNameCache, attributeName)) return !1;
1746
+ return true;
1747
+ if (hasOwnProperty.call(illegalAttributeNameCache, attributeName)) return false;
1748
1748
  if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName))
1749
- return (validatedAttributeNameCache[attributeName] = !0);
1750
- illegalAttributeNameCache[attributeName] = !0;
1751
- return !1;
1749
+ return (validatedAttributeNameCache[attributeName] = true);
1750
+ illegalAttributeNameCache[attributeName] = true;
1751
+ return false;
1752
1752
  }
1753
1753
  function setValueForAttribute(node, name, value) {
1754
1754
  if (isAttributeNameSafe(name))
@@ -1836,7 +1836,7 @@ function requireReactDomClient_production () {
1836
1836
  var get = descriptor.get,
1837
1837
  set = descriptor.set;
1838
1838
  Object.defineProperty(node, valueField, {
1839
- configurable: !0,
1839
+ configurable: true,
1840
1840
  get: function () {
1841
1841
  return get.call(this);
1842
1842
  },
@@ -1866,9 +1866,9 @@ function requireReactDomClient_production () {
1866
1866
  node._valueTracker || (node._valueTracker = trackValueOnNode(node));
1867
1867
  }
1868
1868
  function updateValueIfChanged(node) {
1869
- if (!node) return !1;
1869
+ if (!node) return false;
1870
1870
  var tracker = node._valueTracker;
1871
- if (!tracker) return !0;
1871
+ if (!tracker) return true;
1872
1872
  var lastValue = tracker.getValue();
1873
1873
  var value = "";
1874
1874
  node &&
@@ -1878,10 +1878,10 @@ function requireReactDomClient_production () {
1878
1878
  : "false"
1879
1879
  : node.value);
1880
1880
  node = value;
1881
- return node !== lastValue ? (tracker.setValue(node), !0) : !1;
1881
+ return node !== lastValue ? (tracker.setValue(node), true) : false;
1882
1882
  }
1883
1883
  function getActiveElement(doc) {
1884
- doc = doc || ("undefined" !== typeof document ? document : void 0);
1884
+ doc = doc || ("undefined" !== typeof document ? document : undefined);
1885
1885
  if ("undefined" === typeof doc) return null;
1886
1886
  try {
1887
1887
  return doc.activeElement || doc.body;
@@ -1961,7 +1961,7 @@ function requireReactDomClient_production () {
1961
1961
  if (
1962
1962
  !(
1963
1963
  ("submit" !== type && "reset" !== type) ||
1964
- (void 0 !== value && null !== value)
1964
+ (undefined !== value && null !== value)
1965
1965
  )
1966
1966
  )
1967
1967
  return;
@@ -1992,23 +1992,23 @@ function requireReactDomClient_production () {
1992
1992
  if (multiple) {
1993
1993
  multiple = {};
1994
1994
  for (var i = 0; i < propValue.length; i++)
1995
- multiple["$" + propValue[i]] = !0;
1995
+ multiple["$" + propValue[i]] = true;
1996
1996
  for (propValue = 0; propValue < node.length; propValue++)
1997
1997
  (i = multiple.hasOwnProperty("$" + node[propValue].value)),
1998
1998
  node[propValue].selected !== i && (node[propValue].selected = i),
1999
- i && setDefaultSelected && (node[propValue].defaultSelected = !0);
1999
+ i && setDefaultSelected && (node[propValue].defaultSelected = true);
2000
2000
  } else {
2001
2001
  propValue = "" + getToStringValue(propValue);
2002
2002
  multiple = null;
2003
2003
  for (i = 0; i < node.length; i++) {
2004
2004
  if (node[i].value === propValue) {
2005
- node[i].selected = !0;
2006
- setDefaultSelected && (node[i].defaultSelected = !0);
2005
+ node[i].selected = true;
2006
+ setDefaultSelected && (node[i].defaultSelected = true);
2007
2007
  return;
2008
2008
  }
2009
2009
  null !== multiple || node[i].disabled || (multiple = node[i]);
2010
2010
  }
2011
- null !== multiple && (multiple.selected = !0);
2011
+ null !== multiple && (multiple.selected = true);
2012
2012
  }
2013
2013
  }
2014
2014
  function updateTextarea(element, value, defaultValue) {
@@ -2106,7 +2106,7 @@ function requireReactDomClient_production () {
2106
2106
  setValueForStyle(node, styleName$17, styles[styleName$17]);
2107
2107
  }
2108
2108
  function isCustomElement(tagName) {
2109
- if (-1 === tagName.indexOf("-")) return !1;
2109
+ if (-1 === tagName.indexOf("-")) return false;
2110
2110
  switch (tagName) {
2111
2111
  case "annotation-xml":
2112
2112
  case "color-profile":
@@ -2116,9 +2116,9 @@ function requireReactDomClient_production () {
2116
2116
  case "font-face-format":
2117
2117
  case "font-face-name":
2118
2118
  case "missing-glyph":
2119
- return !1;
2119
+ return false;
2120
2120
  default:
2121
- return !0;
2121
+ return true;
2122
2122
  }
2123
2123
  }
2124
2124
  var aliases = new Map([
@@ -2279,20 +2279,20 @@ function requireReactDomClient_production () {
2279
2279
  case "select":
2280
2280
  (internalInstance = props.value),
2281
2281
  null != internalInstance &&
2282
- updateOptions(target, !!props.multiple, internalInstance, !1);
2282
+ updateOptions(target, !!props.multiple, internalInstance, false);
2283
2283
  }
2284
2284
  }
2285
2285
  }
2286
- var isInsideEventHandler = !1;
2286
+ var isInsideEventHandler = false;
2287
2287
  function batchedUpdates$1(fn, a, b) {
2288
2288
  if (isInsideEventHandler) return fn(a, b);
2289
- isInsideEventHandler = !0;
2289
+ isInsideEventHandler = true;
2290
2290
  try {
2291
2291
  var JSCompiler_inline_result = fn(a);
2292
2292
  return JSCompiler_inline_result;
2293
2293
  } finally {
2294
2294
  if (
2295
- ((isInsideEventHandler = !1),
2295
+ ((isInsideEventHandler = false),
2296
2296
  null !== restoreTarget || null !== restoreQueue)
2297
2297
  )
2298
2298
  if (
@@ -2336,7 +2336,7 @@ function requireReactDomClient_production () {
2336
2336
  inst = !props;
2337
2337
  break a;
2338
2338
  default:
2339
- inst = !1;
2339
+ inst = false;
2340
2340
  }
2341
2341
  if (inst) return null;
2342
2342
  if (stateNode && "function" !== typeof stateNode)
@@ -2345,7 +2345,7 @@ function requireReactDomClient_production () {
2345
2345
  );
2346
2346
  return stateNode;
2347
2347
  }
2348
- var passiveBrowserEventsSupported = !1;
2348
+ var passiveBrowserEventsSupported = false;
2349
2349
  if (canUseDOM)
2350
2350
  try {
2351
2351
  var options = {};
@@ -2357,7 +2357,7 @@ function requireReactDomClient_production () {
2357
2357
  window.addEventListener("test", options, options);
2358
2358
  window.removeEventListener("test", options, options);
2359
2359
  } catch (e) {
2360
- passiveBrowserEventsSupported = !1;
2360
+ passiveBrowserEventsSupported = false;
2361
2361
  }
2362
2362
  var root = null,
2363
2363
  startText = null,
@@ -2382,7 +2382,7 @@ function requireReactDomClient_production () {
2382
2382
  startValue[startLength - end] === endValue[endLength - end];
2383
2383
  end++
2384
2384
  );
2385
- return (fallbackText = endValue.slice(start, 1 < end ? 1 - end : void 0));
2385
+ return (fallbackText = endValue.slice(start, 1 < end ? 1 - end : undefined));
2386
2386
  }
2387
2387
  function getEventCharCode(nativeEvent) {
2388
2388
  var keyCode = nativeEvent.keyCode;
@@ -2394,10 +2394,10 @@ function requireReactDomClient_production () {
2394
2394
  return 32 <= nativeEvent || 13 === nativeEvent ? nativeEvent : 0;
2395
2395
  }
2396
2396
  function functionThatReturnsTrue() {
2397
- return !0;
2397
+ return true;
2398
2398
  }
2399
2399
  function functionThatReturnsFalse() {
2400
- return !1;
2400
+ return false;
2401
2401
  }
2402
2402
  function createSyntheticEvent(Interface) {
2403
2403
  function SyntheticBaseEvent(
@@ -2422,7 +2422,7 @@ function requireReactDomClient_production () {
2422
2422
  this.isDefaultPrevented = (
2423
2423
  null != nativeEvent.defaultPrevented
2424
2424
  ? nativeEvent.defaultPrevented
2425
- : !1 === nativeEvent.returnValue
2425
+ : false === nativeEvent.returnValue
2426
2426
  )
2427
2427
  ? functionThatReturnsTrue
2428
2428
  : functionThatReturnsFalse;
@@ -2431,12 +2431,12 @@ function requireReactDomClient_production () {
2431
2431
  }
2432
2432
  assign(SyntheticBaseEvent.prototype, {
2433
2433
  preventDefault: function () {
2434
- this.defaultPrevented = !0;
2434
+ this.defaultPrevented = true;
2435
2435
  var event = this.nativeEvent;
2436
2436
  event &&
2437
2437
  (event.preventDefault
2438
2438
  ? event.preventDefault()
2439
- : "unknown" !== typeof event.returnValue && (event.returnValue = !1),
2439
+ : "unknown" !== typeof event.returnValue && (event.returnValue = false),
2440
2440
  (this.isDefaultPrevented = functionThatReturnsTrue));
2441
2441
  },
2442
2442
  stopPropagation: function () {
@@ -2445,7 +2445,7 @@ function requireReactDomClient_production () {
2445
2445
  (event.stopPropagation
2446
2446
  ? event.stopPropagation()
2447
2447
  : "unknown" !== typeof event.cancelBubble &&
2448
- (event.cancelBubble = !0),
2448
+ (event.cancelBubble = true),
2449
2449
  (this.isPropagationStopped = functionThatReturnsTrue));
2450
2450
  },
2451
2451
  persist: function () {},
@@ -2484,7 +2484,7 @@ function requireReactDomClient_production () {
2484
2484
  button: 0,
2485
2485
  buttons: 0,
2486
2486
  relatedTarget: function (event) {
2487
- return void 0 === event.relatedTarget
2487
+ return undefined === event.relatedTarget
2488
2488
  ? event.fromElement === event.srcElement
2489
2489
  ? event.toElement
2490
2490
  : event.fromElement
@@ -2589,7 +2589,7 @@ function requireReactDomClient_production () {
2589
2589
  ? nativeEvent.getModifierState(keyArg)
2590
2590
  : (keyArg = modifierKeyToProp[keyArg])
2591
2591
  ? !!nativeEvent[keyArg]
2592
- : !1;
2592
+ : false;
2593
2593
  }
2594
2594
  function getEventModifierState() {
2595
2595
  return modifierStateGetter;
@@ -2701,7 +2701,7 @@ function requireReactDomClient_production () {
2701
2701
  (!canUseCompositionEvent ||
2702
2702
  (documentMode && 8 < documentMode && 11 >= documentMode)),
2703
2703
  SPACEBAR_CHAR = String.fromCharCode(32),
2704
- hasSpaceKeypress = !1;
2704
+ hasSpaceKeypress = false;
2705
2705
  function isFallbackCompositionEnd(domEventName, nativeEvent) {
2706
2706
  switch (domEventName) {
2707
2707
  case "keyup":
@@ -2711,9 +2711,9 @@ function requireReactDomClient_production () {
2711
2711
  case "keypress":
2712
2712
  case "mousedown":
2713
2713
  case "focusout":
2714
- return !0;
2714
+ return true;
2715
2715
  default:
2716
- return !1;
2716
+ return false;
2717
2717
  }
2718
2718
  }
2719
2719
  function getDataFromCustomEvent(nativeEvent) {
@@ -2722,14 +2722,14 @@ function requireReactDomClient_production () {
2722
2722
  ? nativeEvent.data
2723
2723
  : null;
2724
2724
  }
2725
- var isComposing = !1;
2725
+ var isComposing = false;
2726
2726
  function getNativeBeforeInputChars(domEventName, nativeEvent) {
2727
2727
  switch (domEventName) {
2728
2728
  case "compositionend":
2729
2729
  return getDataFromCustomEvent(nativeEvent);
2730
2730
  case "keypress":
2731
2731
  if (32 !== nativeEvent.which) return null;
2732
- hasSpaceKeypress = !0;
2732
+ hasSpaceKeypress = true;
2733
2733
  return SPACEBAR_CHAR;
2734
2734
  case "textInput":
2735
2735
  return (
@@ -2747,7 +2747,7 @@ function requireReactDomClient_production () {
2747
2747
  isFallbackCompositionEnd(domEventName, nativeEvent))
2748
2748
  ? ((domEventName = getData()),
2749
2749
  (fallbackText = startText = root = null),
2750
- (isComposing = !1),
2750
+ (isComposing = false),
2751
2751
  domEventName)
2752
2752
  : null;
2753
2753
  switch (domEventName) {
@@ -2772,29 +2772,29 @@ function requireReactDomClient_production () {
2772
2772
  }
2773
2773
  }
2774
2774
  var supportedInputTypes = {
2775
- color: !0,
2776
- date: !0,
2777
- datetime: !0,
2778
- "datetime-local": !0,
2779
- email: !0,
2780
- month: !0,
2781
- number: !0,
2782
- password: !0,
2783
- range: !0,
2784
- search: !0,
2785
- tel: !0,
2786
- text: !0,
2787
- time: !0,
2788
- url: !0,
2789
- week: !0
2775
+ color: true,
2776
+ date: true,
2777
+ datetime: true,
2778
+ "datetime-local": true,
2779
+ email: true,
2780
+ month: true,
2781
+ number: true,
2782
+ password: true,
2783
+ range: true,
2784
+ search: true,
2785
+ tel: true,
2786
+ text: true,
2787
+ time: true,
2788
+ url: true,
2789
+ week: true
2790
2790
  };
2791
2791
  function isTextInputElement(elem) {
2792
2792
  var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
2793
2793
  return "input" === nodeName
2794
2794
  ? !!supportedInputTypes[elem.type]
2795
2795
  : "textarea" === nodeName
2796
- ? !0
2797
- : !1;
2796
+ ? true
2797
+ : false;
2798
2798
  }
2799
2799
  function createAndAccumulateChangeEvent(
2800
2800
  dispatchQueue,
@@ -2830,7 +2830,7 @@ function requireReactDomClient_production () {
2830
2830
  function getTargetInstForChangeEvent(domEventName, targetInst) {
2831
2831
  if ("change" === domEventName) return targetInst;
2832
2832
  }
2833
- var isInputEventSupported = !1;
2833
+ var isInputEventSupported = false;
2834
2834
  if (canUseDOM) {
2835
2835
  var JSCompiler_inline_result$jscomp$283;
2836
2836
  if (canUseDOM) {
@@ -2842,7 +2842,7 @@ function requireReactDomClient_production () {
2842
2842
  "function" === typeof element$jscomp$inline_419.oninput;
2843
2843
  }
2844
2844
  JSCompiler_inline_result$jscomp$283 = isSupported$jscomp$inline_418;
2845
- } else JSCompiler_inline_result$jscomp$283 = !1;
2845
+ } else JSCompiler_inline_result$jscomp$283 = false;
2846
2846
  isInputEventSupported =
2847
2847
  JSCompiler_inline_result$jscomp$283 &&
2848
2848
  (!document.documentMode || 9 < document.documentMode);
@@ -2895,26 +2895,26 @@ function requireReactDomClient_production () {
2895
2895
  }
2896
2896
  var objectIs = "function" === typeof Object.is ? Object.is : is;
2897
2897
  function shallowEqual(objA, objB) {
2898
- if (objectIs(objA, objB)) return !0;
2898
+ if (objectIs(objA, objB)) return true;
2899
2899
  if (
2900
2900
  "object" !== typeof objA ||
2901
2901
  null === objA ||
2902
2902
  "object" !== typeof objB ||
2903
2903
  null === objB
2904
2904
  )
2905
- return !1;
2905
+ return false;
2906
2906
  var keysA = Object.keys(objA),
2907
2907
  keysB = Object.keys(objB);
2908
- if (keysA.length !== keysB.length) return !1;
2908
+ if (keysA.length !== keysB.length) return false;
2909
2909
  for (keysB = 0; keysB < keysA.length; keysB++) {
2910
2910
  var currentKey = keysA[keysB];
2911
2911
  if (
2912
2912
  !hasOwnProperty.call(objB, currentKey) ||
2913
2913
  !objectIs(objA[currentKey], objB[currentKey])
2914
2914
  )
2915
- return !1;
2915
+ return false;
2916
2916
  }
2917
- return !0;
2917
+ return true;
2918
2918
  }
2919
2919
  function getLeafNode(node) {
2920
2920
  for (; node && node.firstChild; ) node = node.firstChild;
@@ -2938,7 +2938,7 @@ function requireReactDomClient_production () {
2938
2938
  }
2939
2939
  node = node.parentNode;
2940
2940
  }
2941
- node = void 0;
2941
+ node = undefined;
2942
2942
  }
2943
2943
  node = getLeafNode(node);
2944
2944
  }
@@ -2946,17 +2946,17 @@ function requireReactDomClient_production () {
2946
2946
  function containsNode(outerNode, innerNode) {
2947
2947
  return outerNode && innerNode
2948
2948
  ? outerNode === innerNode
2949
- ? !0
2949
+ ? true
2950
2950
  : outerNode && 3 === outerNode.nodeType
2951
- ? !1
2951
+ ? false
2952
2952
  : innerNode && 3 === innerNode.nodeType
2953
2953
  ? containsNode(outerNode, innerNode.parentNode)
2954
2954
  : "contains" in outerNode
2955
2955
  ? outerNode.contains(innerNode)
2956
2956
  : outerNode.compareDocumentPosition
2957
2957
  ? !!(outerNode.compareDocumentPosition(innerNode) & 16)
2958
- : !1
2959
- : !1;
2958
+ : false
2959
+ : false;
2960
2960
  }
2961
2961
  function getActiveElementDeep(containerInfo) {
2962
2962
  containerInfo =
@@ -2974,7 +2974,7 @@ function requireReactDomClient_production () {
2974
2974
  var JSCompiler_inline_result =
2975
2975
  "string" === typeof element.contentWindow.location.href;
2976
2976
  } catch (err) {
2977
- JSCompiler_inline_result = !1;
2977
+ JSCompiler_inline_result = false;
2978
2978
  }
2979
2979
  if (JSCompiler_inline_result) containerInfo = element.contentWindow;
2980
2980
  else break;
@@ -3010,7 +3010,7 @@ function requireReactDomClient_production () {
3010
3010
  if (
3011
3011
  ((priorSelectionInformation = priorSelectionRange.start),
3012
3012
  (curFocusedElem = priorSelectionRange.end),
3013
- void 0 === curFocusedElem &&
3013
+ undefined === curFocusedElem &&
3014
3014
  (curFocusedElem = priorSelectionInformation),
3015
3015
  "selectionStart" in containerInfo)
3016
3016
  )
@@ -3031,7 +3031,7 @@ function requireReactDomClient_production () {
3031
3031
  var length = containerInfo.textContent.length,
3032
3032
  start = Math.min(priorSelectionRange.start, length);
3033
3033
  priorSelectionRange =
3034
- void 0 === priorSelectionRange.end
3034
+ undefined === priorSelectionRange.end
3035
3035
  ? start
3036
3036
  : Math.min(priorSelectionRange.end, length);
3037
3037
  !curFocusedElem.extend &&
@@ -3092,7 +3092,7 @@ function requireReactDomClient_production () {
3092
3092
  activeElement = null,
3093
3093
  activeElementInst = null,
3094
3094
  lastSelection = null,
3095
- mouseDown = !1;
3095
+ mouseDown = false;
3096
3096
  function constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget) {
3097
3097
  var doc =
3098
3098
  nativeEventTarget.window === nativeEventTarget
@@ -3232,13 +3232,13 @@ function requireReactDomClient_production () {
3232
3232
  sourceFiber.lanes |= lane;
3233
3233
  var alternate = sourceFiber.alternate;
3234
3234
  null !== alternate && (alternate.lanes |= lane);
3235
- for (var isHidden = !1, parent = sourceFiber.return; null !== parent; )
3235
+ for (var isHidden = false, parent = sourceFiber.return; null !== parent; )
3236
3236
  (parent.childLanes |= lane),
3237
3237
  (alternate = parent.alternate),
3238
3238
  null !== alternate && (alternate.childLanes |= lane),
3239
3239
  22 === parent.tag &&
3240
3240
  ((sourceFiber = parent.stateNode),
3241
- null === sourceFiber || sourceFiber._visibility & 1 || (isHidden = !0)),
3241
+ null === sourceFiber || sourceFiber._visibility & 1 || (isHidden = true)),
3242
3242
  (sourceFiber = parent),
3243
3243
  (parent = parent.return);
3244
3244
  isHidden &&
@@ -3269,7 +3269,7 @@ function requireReactDomClient_production () {
3269
3269
  function createCapturedValueAtFiber(value, source) {
3270
3270
  if ("object" === typeof value && null !== value) {
3271
3271
  var existing = CapturedStacks.get(value);
3272
- if (void 0 !== existing) return existing;
3272
+ if (undefined !== existing) return existing;
3273
3273
  source = {
3274
3274
  value: value,
3275
3275
  source: source,
@@ -3348,9 +3348,9 @@ function requireReactDomClient_production () {
3348
3348
  }
3349
3349
  var hydrationParentFiber = null,
3350
3350
  nextHydratableInstance = null,
3351
- isHydrating = !1,
3351
+ isHydrating = false,
3352
3352
  hydrationErrors = null,
3353
- rootOrSingletonContext = !1,
3353
+ rootOrSingletonContext = false,
3354
3354
  HydrationMismatchException = Error(formatProdErrorMessage(519));
3355
3355
  function throwOnHydrationMismatch(fiber) {
3356
3356
  var error = Error(formatProdErrorMessage(418, ""));
@@ -3400,7 +3400,7 @@ function requireReactDomClient_production () {
3400
3400
  props.defaultChecked,
3401
3401
  props.type,
3402
3402
  props.name,
3403
- !0
3403
+ true
3404
3404
  );
3405
3405
  track(instance);
3406
3406
  break;
@@ -3417,7 +3417,7 @@ function requireReactDomClient_production () {
3417
3417
  "number" !== typeof type &&
3418
3418
  "bigint" !== typeof type) ||
3419
3419
  instance.textContent === "" + type ||
3420
- !0 === props.suppressHydrationWarning ||
3420
+ true === props.suppressHydrationWarning ||
3421
3421
  checkForUnmatchedText(instance.textContent, type)
3422
3422
  ? (null != props.popover &&
3423
3423
  (listenToNonDelegatedEvent("beforetoggle", instance),
@@ -3426,8 +3426,8 @@ function requireReactDomClient_production () {
3426
3426
  null != props.onScrollEnd &&
3427
3427
  listenToNonDelegatedEvent("scrollend", instance),
3428
3428
  null != props.onClick && (instance.onclick = noop$1),
3429
- (instance = !0))
3430
- : (instance = !1);
3429
+ (instance = true))
3430
+ : (instance = false);
3431
3431
  instance || throwOnHydrationMismatch(fiber);
3432
3432
  }
3433
3433
  function popToNextHostParent(fiber) {
@@ -3435,20 +3435,20 @@ function requireReactDomClient_production () {
3435
3435
  switch (hydrationParentFiber.tag) {
3436
3436
  case 3:
3437
3437
  case 27:
3438
- rootOrSingletonContext = !0;
3438
+ rootOrSingletonContext = true;
3439
3439
  return;
3440
3440
  case 5:
3441
3441
  case 13:
3442
- rootOrSingletonContext = !1;
3442
+ rootOrSingletonContext = false;
3443
3443
  return;
3444
3444
  default:
3445
3445
  hydrationParentFiber = hydrationParentFiber.return;
3446
3446
  }
3447
3447
  }
3448
3448
  function popHydrationState(fiber) {
3449
- if (fiber !== hydrationParentFiber) return !1;
3450
- if (!isHydrating) return popToNextHostParent(fiber), (isHydrating = !0), !1;
3451
- var shouldClear = !1,
3449
+ if (fiber !== hydrationParentFiber) return false;
3450
+ if (!isHydrating) return popToNextHostParent(fiber), (isHydrating = true), false;
3451
+ var shouldClear = false,
3452
3452
  JSCompiler_temp;
3453
3453
  if ((JSCompiler_temp = 3 !== fiber.tag && 27 !== fiber.tag)) {
3454
3454
  if ((JSCompiler_temp = 5 === fiber.tag))
@@ -3458,7 +3458,7 @@ function requireReactDomClient_production () {
3458
3458
  shouldSetTextContent(fiber.type, fiber.memoizedProps));
3459
3459
  JSCompiler_temp = !JSCompiler_temp;
3460
3460
  }
3461
- JSCompiler_temp && (shouldClear = !0);
3461
+ JSCompiler_temp && (shouldClear = true);
3462
3462
  shouldClear && nextHydratableInstance && throwOnHydrationMismatch(fiber);
3463
3463
  popToNextHostParent(fiber);
3464
3464
  if (13 === fiber.tag) {
@@ -3488,11 +3488,11 @@ function requireReactDomClient_production () {
3488
3488
  nextHydratableInstance = hydrationParentFiber
3489
3489
  ? getNextHydratable(fiber.stateNode.nextSibling)
3490
3490
  : null;
3491
- return !0;
3491
+ return true;
3492
3492
  }
3493
3493
  function resetHydrationState() {
3494
3494
  nextHydratableInstance = hydrationParentFiber = null;
3495
- isHydrating = !1;
3495
+ isHydrating = false;
3496
3496
  }
3497
3497
  function queueHydrationError(error) {
3498
3498
  null === hydrationErrors
@@ -3509,7 +3509,7 @@ function requireReactDomClient_production () {
3509
3509
  function noop$3() {}
3510
3510
  function trackUsedThenable(thenableState, thenable, index) {
3511
3511
  index = thenableState[index];
3512
- void 0 === index
3512
+ undefined === index
3513
3513
  ? thenableState.push(thenable)
3514
3514
  : index !== thenable && (thenable.then(noop$3, noop$3), (thenable = index));
3515
3515
  switch (thenable.status) {
@@ -3575,7 +3575,7 @@ function requireReactDomClient_production () {
3575
3575
  }
3576
3576
  function coerceRef(workInProgress, element) {
3577
3577
  element = element.props.ref;
3578
- workInProgress.ref = void 0 !== element ? element : null;
3578
+ workInProgress.ref = undefined !== element ? element : null;
3579
3579
  }
3580
3580
  function throwOnInvalidObjectType(returnFiber, newChild) {
3581
3581
  if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
@@ -4273,8 +4273,8 @@ function requireReactDomClient_production () {
4273
4273
  }
4274
4274
  };
4275
4275
  }
4276
- var reconcileChildFibers = createChildReconciler(!0),
4277
- mountChildFibers = createChildReconciler(!1),
4276
+ var reconcileChildFibers = createChildReconciler(true),
4277
+ mountChildFibers = createChildReconciler(false),
4278
4278
  currentTreeHiddenStackCursor = createCursor(null),
4279
4279
  prevEntangledRenderLanesCursor = createCursor(0);
4280
4280
  function pushHiddenContext(fiber, context) {
@@ -4337,7 +4337,7 @@ function requireReactDomClient_production () {
4337
4337
  null === state || "$?" === state.data || "$!" === state.data)
4338
4338
  )
4339
4339
  return node;
4340
- } else if (19 === node.tag && void 0 !== node.memoizedProps.revealOrder) {
4340
+ } else if (19 === node.tag && undefined !== node.memoizedProps.revealOrder) {
4341
4341
  if (0 !== (node.flags & 128)) return node;
4342
4342
  } else if (null !== node.child) {
4343
4343
  node.child.return = node;
@@ -4360,13 +4360,13 @@ function requireReactDomClient_production () {
4360
4360
  : function () {
4361
4361
  var listeners = [],
4362
4362
  signal = (this.signal = {
4363
- aborted: !1,
4363
+ aborted: false,
4364
4364
  addEventListener: function (type, listener) {
4365
4365
  listeners.push(listener);
4366
4366
  }
4367
4367
  });
4368
4368
  this.abort = function () {
4369
- signal.aborted = !0;
4369
+ signal.aborted = true;
4370
4370
  listeners.forEach(function (listener) {
4371
4371
  return listener();
4372
4372
  });
@@ -4407,7 +4407,7 @@ function requireReactDomClient_production () {
4407
4407
  currentEntangledLane = requestTransitionLane();
4408
4408
  currentEntangledActionThenable = {
4409
4409
  status: "pending",
4410
- value: void 0,
4410
+ value: undefined,
4411
4411
  then: function (resolve) {
4412
4412
  entangledListeners.push(resolve);
4413
4413
  }
@@ -4451,7 +4451,7 @@ function requireReactDomClient_production () {
4451
4451
  thenableWithOverride.status = "rejected";
4452
4452
  thenableWithOverride.reason = error;
4453
4453
  for (error = 0; error < listeners.length; error++)
4454
- (0, listeners[error])(void 0);
4454
+ (0, listeners[error])(undefined);
4455
4455
  }
4456
4456
  );
4457
4457
  return thenableWithOverride;
@@ -4487,9 +4487,9 @@ function requireReactDomClient_production () {
4487
4487
  currentlyRenderingFiber$1 = null,
4488
4488
  currentHook = null,
4489
4489
  workInProgressHook = null,
4490
- didScheduleRenderPhaseUpdate = !1,
4491
- didScheduleRenderPhaseUpdateDuringThisPass = !1,
4492
- shouldDoubleInvokeUserFnsInHooksDEV = !1,
4490
+ didScheduleRenderPhaseUpdate = false,
4491
+ didScheduleRenderPhaseUpdateDuringThisPass = false,
4492
+ shouldDoubleInvokeUserFnsInHooksDEV = false,
4493
4493
  localIdCounter = 0,
4494
4494
  thenableIndexCounter = 0,
4495
4495
  thenableState = null,
@@ -4498,10 +4498,10 @@ function requireReactDomClient_production () {
4498
4498
  throw Error(formatProdErrorMessage(321));
4499
4499
  }
4500
4500
  function areHookInputsEqual(nextDeps, prevDeps) {
4501
- if (null === prevDeps) return !1;
4501
+ if (null === prevDeps) return false;
4502
4502
  for (var i = 0; i < prevDeps.length && i < nextDeps.length; i++)
4503
- if (!objectIs(nextDeps[i], prevDeps[i])) return !1;
4504
- return !0;
4503
+ if (!objectIs(nextDeps[i], prevDeps[i])) return false;
4504
+ return true;
4505
4505
  }
4506
4506
  function renderWithHooks(
4507
4507
  current,
@@ -4520,9 +4520,9 @@ function requireReactDomClient_production () {
4520
4520
  null === current || null === current.memoizedState
4521
4521
  ? HooksDispatcherOnMount
4522
4522
  : HooksDispatcherOnUpdate;
4523
- shouldDoubleInvokeUserFnsInHooksDEV = !1;
4523
+ shouldDoubleInvokeUserFnsInHooksDEV = false;
4524
4524
  nextRenderLanes = Component(props, secondArg);
4525
- shouldDoubleInvokeUserFnsInHooksDEV = !1;
4525
+ shouldDoubleInvokeUserFnsInHooksDEV = false;
4526
4526
  didScheduleRenderPhaseUpdateDuringThisPass &&
4527
4527
  (nextRenderLanes = renderWithHooksAgain(
4528
4528
  workInProgress,
@@ -4538,7 +4538,7 @@ function requireReactDomClient_production () {
4538
4538
  var didRenderTooFewHooks = null !== currentHook && null !== currentHook.next;
4539
4539
  renderLanes = 0;
4540
4540
  workInProgressHook = currentHook = currentlyRenderingFiber$1 = null;
4541
- didScheduleRenderPhaseUpdate = !1;
4541
+ didScheduleRenderPhaseUpdate = false;
4542
4542
  thenableIndexCounter = 0;
4543
4543
  thenableState = null;
4544
4544
  if (didRenderTooFewHooks) throw Error(formatProdErrorMessage(300));
@@ -4547,7 +4547,7 @@ function requireReactDomClient_production () {
4547
4547
  ((current = current.dependencies),
4548
4548
  null !== current &&
4549
4549
  checkIfContextChanged(current) &&
4550
- (didReceiveUpdate = !0));
4550
+ (didReceiveUpdate = true));
4551
4551
  }
4552
4552
  function renderWithHooksAgain(workInProgress, Component, props, secondArg) {
4553
4553
  currentlyRenderingFiber$1 = workInProgress;
@@ -4555,7 +4555,7 @@ function requireReactDomClient_production () {
4555
4555
  do {
4556
4556
  didScheduleRenderPhaseUpdateDuringThisPass && (thenableState = null);
4557
4557
  thenableIndexCounter = 0;
4558
- didScheduleRenderPhaseUpdateDuringThisPass = !1;
4558
+ didScheduleRenderPhaseUpdateDuringThisPass = false;
4559
4559
  if (25 <= numberOfReRenders) throw Error(formatProdErrorMessage(301));
4560
4560
  numberOfReRenders += 1;
4561
4561
  workInProgressHook = currentHook = null;
@@ -4604,11 +4604,11 @@ function requireReactDomClient_production () {
4604
4604
  null !== queue && (queue.pending = null);
4605
4605
  workInProgress = workInProgress.next;
4606
4606
  }
4607
- didScheduleRenderPhaseUpdate = !1;
4607
+ didScheduleRenderPhaseUpdate = false;
4608
4608
  }
4609
4609
  renderLanes = 0;
4610
4610
  workInProgressHook = currentHook = currentlyRenderingFiber$1 = null;
4611
- didScheduleRenderPhaseUpdateDuringThisPass = !1;
4611
+ didScheduleRenderPhaseUpdateDuringThisPass = false;
4612
4612
  thenableIndexCounter = localIdCounter = 0;
4613
4613
  thenableState = null;
4614
4614
  }
@@ -4711,7 +4711,7 @@ function requireReactDomClient_production () {
4711
4711
  (currentlyRenderingFiber$1.updateQueue = updateQueue));
4712
4712
  updateQueue.memoCache = memoCache;
4713
4713
  updateQueue = memoCache.data[memoCache.index];
4714
- if (void 0 === updateQueue)
4714
+ if (undefined === updateQueue)
4715
4715
  for (
4716
4716
  updateQueue = memoCache.data[memoCache.index] = Array(size), current = 0;
4717
4717
  current < size;
@@ -4750,7 +4750,7 @@ function requireReactDomClient_production () {
4750
4750
  var newBaseQueueFirst = (baseFirst = null),
4751
4751
  newBaseQueueLast = null,
4752
4752
  update = current,
4753
- didReadFromEntangledAsyncAction$54 = !1;
4753
+ didReadFromEntangledAsyncAction$54 = false;
4754
4754
  do {
4755
4755
  var updateLane = update.lane & -536870913;
4756
4756
  if (
@@ -4771,11 +4771,11 @@ function requireReactDomClient_production () {
4771
4771
  next: null
4772
4772
  }),
4773
4773
  updateLane === currentEntangledLane &&
4774
- (didReadFromEntangledAsyncAction$54 = !0);
4774
+ (didReadFromEntangledAsyncAction$54 = true);
4775
4775
  else if ((renderLanes & revertLane) === revertLane) {
4776
4776
  update = update.next;
4777
4777
  revertLane === currentEntangledLane &&
4778
- (didReadFromEntangledAsyncAction$54 = !0);
4778
+ (didReadFromEntangledAsyncAction$54 = true);
4779
4779
  continue;
4780
4780
  } else
4781
4781
  (updateLane = {
@@ -4820,7 +4820,7 @@ function requireReactDomClient_production () {
4820
4820
  : (newBaseQueueLast.next = newBaseQueueFirst);
4821
4821
  if (
4822
4822
  !objectIs(pendingQueue, hook.memoizedState) &&
4823
- ((didReceiveUpdate = !0),
4823
+ ((didReceiveUpdate = true),
4824
4824
  didReadFromEntangledAsyncAction$54 &&
4825
4825
  ((reducer = currentEntangledActionThenable), null !== reducer))
4826
4826
  )
@@ -4846,7 +4846,7 @@ function requireReactDomClient_production () {
4846
4846
  var update = (lastRenderPhaseUpdate = lastRenderPhaseUpdate.next);
4847
4847
  do (newState = reducer(newState, update.action)), (update = update.next);
4848
4848
  while (update !== lastRenderPhaseUpdate);
4849
- objectIs(newState, hook.memoizedState) || (didReceiveUpdate = !0);
4849
+ objectIs(newState, hook.memoizedState) || (didReceiveUpdate = true);
4850
4850
  hook.memoizedState = newState;
4851
4851
  null === hook.baseQueue && (hook.baseState = newState);
4852
4852
  queue.lastRenderedState = newState;
@@ -4858,7 +4858,7 @@ function requireReactDomClient_production () {
4858
4858
  hook = updateWorkInProgressHook(),
4859
4859
  isHydrating$jscomp$0 = isHydrating;
4860
4860
  if (isHydrating$jscomp$0) {
4861
- if (void 0 === getServerSnapshot) throw Error(formatProdErrorMessage(407));
4861
+ if (undefined === getServerSnapshot) throw Error(formatProdErrorMessage(407));
4862
4862
  getServerSnapshot = getServerSnapshot();
4863
4863
  } else getServerSnapshot = getSnapshot();
4864
4864
  var snapshotChanged = !objectIs(
@@ -4866,7 +4866,7 @@ function requireReactDomClient_production () {
4866
4866
  getServerSnapshot
4867
4867
  );
4868
4868
  snapshotChanged &&
4869
- ((hook.memoizedState = getServerSnapshot), (didReceiveUpdate = !0));
4869
+ ((hook.memoizedState = getServerSnapshot), (didReceiveUpdate = true));
4870
4870
  hook = hook.queue;
4871
4871
  updateEffect(subscribeToStore.bind(null, fiber, hook, subscribe), [
4872
4872
  subscribe
@@ -4886,7 +4886,7 @@ function requireReactDomClient_production () {
4886
4886
  getServerSnapshot,
4887
4887
  getSnapshot
4888
4888
  ),
4889
- { destroy: void 0 },
4889
+ { destroy: undefined },
4890
4890
  null
4891
4891
  );
4892
4892
  if (null === workInProgressRoot) throw Error(formatProdErrorMessage(349));
@@ -4926,7 +4926,7 @@ function requireReactDomClient_production () {
4926
4926
  var nextValue = latestGetSnapshot();
4927
4927
  return !objectIs(inst, nextValue);
4928
4928
  } catch (error) {
4929
- return !0;
4929
+ return true;
4930
4930
  }
4931
4931
  }
4932
4932
  function forceStoreRerender(fiber) {
@@ -4939,11 +4939,11 @@ function requireReactDomClient_production () {
4939
4939
  var initialStateInitializer = initialState;
4940
4940
  initialState = initialStateInitializer();
4941
4941
  if (shouldDoubleInvokeUserFnsInHooksDEV) {
4942
- setIsStrictModeForDevtools(!0);
4942
+ setIsStrictModeForDevtools(true);
4943
4943
  try {
4944
4944
  initialStateInitializer();
4945
4945
  } finally {
4946
- setIsStrictModeForDevtools(!1);
4946
+ setIsStrictModeForDevtools(false);
4947
4947
  }
4948
4948
  }
4949
4949
  }
@@ -4979,7 +4979,7 @@ function requireReactDomClient_production () {
4979
4979
  payload: payload,
4980
4980
  action: fiber,
4981
4981
  next: null,
4982
- isTransition: !0,
4982
+ isTransition: true,
4983
4983
  status: "pending",
4984
4984
  value: null,
4985
4985
  reason: null,
@@ -4989,8 +4989,8 @@ function requireReactDomClient_production () {
4989
4989
  }
4990
4990
  };
4991
4991
  null !== ReactSharedInternals.T
4992
- ? setPendingState(!0)
4993
- : (actionNode.isTransition = !1);
4992
+ ? setPendingState(true)
4993
+ : (actionNode.isTransition = false);
4994
4994
  setState(actionNode);
4995
4995
  setPendingState = actionQueue.pending;
4996
4996
  null === setPendingState
@@ -5120,7 +5120,7 @@ function requireReactDomClient_production () {
5120
5120
  }
5121
5121
  throwOnHydrationMismatch(JSCompiler_inline_result);
5122
5122
  }
5123
- JSCompiler_inline_result = !1;
5123
+ JSCompiler_inline_result = false;
5124
5124
  }
5125
5125
  JSCompiler_inline_result && (initialStateProp = ssrFormState[0]);
5126
5126
  }
@@ -5141,11 +5141,11 @@ function requireReactDomClient_production () {
5141
5141
  JSCompiler_inline_result
5142
5142
  );
5143
5143
  JSCompiler_inline_result.dispatch = ssrFormState;
5144
- JSCompiler_inline_result = mountStateImpl(!1);
5144
+ JSCompiler_inline_result = mountStateImpl(false);
5145
5145
  inRootOrSingleton = dispatchOptimisticSetState.bind(
5146
5146
  null,
5147
5147
  currentlyRenderingFiber$1,
5148
- !1,
5148
+ false,
5149
5149
  JSCompiler_inline_result.queue
5150
5150
  );
5151
5151
  JSCompiler_inline_result = mountWorkInProgressHook();
@@ -5165,7 +5165,7 @@ function requireReactDomClient_production () {
5165
5165
  );
5166
5166
  JSCompiler_inline_result$jscomp$0.dispatch = ssrFormState;
5167
5167
  JSCompiler_inline_result.memoizedState = action;
5168
- return [initialStateProp, ssrFormState, !1];
5168
+ return [initialStateProp, ssrFormState, false];
5169
5169
  }
5170
5170
  function updateActionState(action) {
5171
5171
  var stateHook = updateWorkInProgressHook();
@@ -5192,7 +5192,7 @@ function requireReactDomClient_production () {
5192
5192
  pushEffect(
5193
5193
  9,
5194
5194
  actionStateActionEffect.bind(null, actionQueue, action),
5195
- { destroy: void 0 },
5195
+ { destroy: undefined },
5196
5196
  null
5197
5197
  ));
5198
5198
  return [currentStateHook, dispatch, stateHook];
@@ -5210,7 +5210,7 @@ function requireReactDomClient_production () {
5210
5210
  currentStateHook = updateWorkInProgressHook();
5211
5211
  var dispatch = currentStateHook.queue.dispatch;
5212
5212
  currentStateHook.memoizedState = action;
5213
- return [stateHook, dispatch, !1];
5213
+ return [stateHook, dispatch, false];
5214
5214
  }
5215
5215
  function pushEffect(tag, create, inst, deps) {
5216
5216
  tag = { tag: tag, create: create, inst: inst, deps: deps, next: null };
@@ -5236,13 +5236,13 @@ function requireReactDomClient_production () {
5236
5236
  hook.memoizedState = pushEffect(
5237
5237
  1 | hookFlags,
5238
5238
  create,
5239
- { destroy: void 0 },
5240
- void 0 === deps ? null : deps
5239
+ { destroy: undefined },
5240
+ undefined === deps ? null : deps
5241
5241
  );
5242
5242
  }
5243
5243
  function updateEffectImpl(fiberFlags, hookFlags, create, deps) {
5244
5244
  var hook = updateWorkInProgressHook();
5245
- deps = void 0 === deps ? null : deps;
5245
+ deps = undefined === deps ? null : deps;
5246
5246
  var inst = hook.memoizedState.inst;
5247
5247
  null !== currentHook &&
5248
5248
  null !== deps &&
@@ -5271,7 +5271,7 @@ function requireReactDomClient_production () {
5271
5271
  "function" === typeof refCleanup ? refCleanup() : ref(null);
5272
5272
  };
5273
5273
  }
5274
- if (null !== ref && void 0 !== ref)
5274
+ if (null !== ref && undefined !== ref)
5275
5275
  return (
5276
5276
  (create = create()),
5277
5277
  (ref.current = create),
@@ -5281,13 +5281,13 @@ function requireReactDomClient_production () {
5281
5281
  );
5282
5282
  }
5283
5283
  function updateImperativeHandle(ref, create, deps) {
5284
- deps = null !== deps && void 0 !== deps ? deps.concat([ref]) : null;
5284
+ deps = null !== deps && undefined !== deps ? deps.concat([ref]) : null;
5285
5285
  updateEffectImpl(4, 4, imperativeHandleEffect.bind(null, create, ref), deps);
5286
5286
  }
5287
5287
  function mountDebugValue() {}
5288
5288
  function updateCallback(callback, deps) {
5289
5289
  var hook = updateWorkInProgressHook();
5290
- deps = void 0 === deps ? null : deps;
5290
+ deps = undefined === deps ? null : deps;
5291
5291
  var prevState = hook.memoizedState;
5292
5292
  if (null !== deps && areHookInputsEqual(deps, prevState[1]))
5293
5293
  return prevState[0];
@@ -5296,24 +5296,24 @@ function requireReactDomClient_production () {
5296
5296
  }
5297
5297
  function updateMemo(nextCreate, deps) {
5298
5298
  var hook = updateWorkInProgressHook();
5299
- deps = void 0 === deps ? null : deps;
5299
+ deps = undefined === deps ? null : deps;
5300
5300
  var prevState = hook.memoizedState;
5301
5301
  if (null !== deps && areHookInputsEqual(deps, prevState[1]))
5302
5302
  return prevState[0];
5303
5303
  prevState = nextCreate();
5304
5304
  if (shouldDoubleInvokeUserFnsInHooksDEV) {
5305
- setIsStrictModeForDevtools(!0);
5305
+ setIsStrictModeForDevtools(true);
5306
5306
  try {
5307
5307
  nextCreate();
5308
5308
  } finally {
5309
- setIsStrictModeForDevtools(!1);
5309
+ setIsStrictModeForDevtools(false);
5310
5310
  }
5311
5311
  }
5312
5312
  hook.memoizedState = [prevState, deps];
5313
5313
  return prevState;
5314
5314
  }
5315
5315
  function mountDeferredValueImpl(hook, value, initialValue) {
5316
- if (void 0 === initialValue || 0 !== (renderLanes & 1073741824))
5316
+ if (undefined === initialValue || 0 !== (renderLanes & 1073741824))
5317
5317
  return (hook.memoizedState = value);
5318
5318
  hook.memoizedState = initialValue;
5319
5319
  hook = requestDeferredLane();
@@ -5326,11 +5326,11 @@ function requireReactDomClient_production () {
5326
5326
  if (null !== currentTreeHiddenStackCursor.current)
5327
5327
  return (
5328
5328
  (hook = mountDeferredValueImpl(hook, value, initialValue)),
5329
- objectIs(hook, prevValue) || (didReceiveUpdate = !0),
5329
+ objectIs(hook, prevValue) || (didReceiveUpdate = true),
5330
5330
  hook
5331
5331
  );
5332
5332
  if (0 === (renderLanes & 42))
5333
- return (didReceiveUpdate = !0), (hook.memoizedState = value);
5333
+ return (didReceiveUpdate = true), (hook.memoizedState = value);
5334
5334
  hook = requestDeferredLane();
5335
5335
  currentlyRenderingFiber$1.lanes |= hook;
5336
5336
  workInProgressRootSkippedLanes |= hook;
@@ -5343,7 +5343,7 @@ function requireReactDomClient_production () {
5343
5343
  var prevTransition = ReactSharedInternals.T,
5344
5344
  currentTransition = {};
5345
5345
  ReactSharedInternals.T = currentTransition;
5346
- dispatchOptimisticSetState(fiber, !1, queue, pendingState);
5346
+ dispatchOptimisticSetState(fiber, false, queue, pendingState);
5347
5347
  try {
5348
5348
  var returnValue = callback(),
5349
5349
  onStartTransitionFinish = ReactSharedInternals.S;
@@ -5472,7 +5472,7 @@ function requireReactDomClient_production () {
5472
5472
  lane: lane,
5473
5473
  revertLane: 0,
5474
5474
  action: action,
5475
- hasEagerState: !1,
5475
+ hasEagerState: false,
5476
5476
  eagerState: null,
5477
5477
  next: null
5478
5478
  };
@@ -5492,7 +5492,7 @@ function requireReactDomClient_production () {
5492
5492
  lane: lane,
5493
5493
  revertLane: 0,
5494
5494
  action: action,
5495
- hasEagerState: !1,
5495
+ hasEagerState: false,
5496
5496
  eagerState: null,
5497
5497
  next: null
5498
5498
  };
@@ -5523,17 +5523,17 @@ function requireReactDomClient_production () {
5523
5523
  return (
5524
5524
  scheduleUpdateOnFiber(action, fiber, lane),
5525
5525
  entangleTransitionUpdate(action, queue, lane),
5526
- !0
5526
+ true
5527
5527
  );
5528
5528
  }
5529
- return !1;
5529
+ return false;
5530
5530
  }
5531
5531
  function dispatchOptimisticSetState(fiber, throwIfDuringRender, queue, action) {
5532
5532
  action = {
5533
5533
  lane: 2,
5534
5534
  revertLane: requestTransitionLane(),
5535
5535
  action: action,
5536
- hasEagerState: !1,
5536
+ hasEagerState: false,
5537
5537
  eagerState: null,
5538
5538
  next: null
5539
5539
  };
@@ -5558,7 +5558,7 @@ function requireReactDomClient_production () {
5558
5558
  }
5559
5559
  function enqueueRenderPhaseUpdate(queue, update) {
5560
5560
  didScheduleRenderPhaseUpdateDuringThisPass = didScheduleRenderPhaseUpdate =
5561
- !0;
5561
+ true;
5562
5562
  var pending = queue.pending;
5563
5563
  null === pending
5564
5564
  ? (update.next = update)
@@ -5605,14 +5605,14 @@ function requireReactDomClient_production () {
5605
5605
  useCallback: function (callback, deps) {
5606
5606
  mountWorkInProgressHook().memoizedState = [
5607
5607
  callback,
5608
- void 0 === deps ? null : deps
5608
+ undefined === deps ? null : deps
5609
5609
  ];
5610
5610
  return callback;
5611
5611
  },
5612
5612
  useContext: readContext,
5613
5613
  useEffect: mountEffect,
5614
5614
  useImperativeHandle: function (ref, create, deps) {
5615
- deps = null !== deps && void 0 !== deps ? deps.concat([ref]) : null;
5615
+ deps = null !== deps && undefined !== deps ? deps.concat([ref]) : null;
5616
5616
  mountEffectImpl(
5617
5617
  4194308,
5618
5618
  4,
@@ -5628,14 +5628,14 @@ function requireReactDomClient_production () {
5628
5628
  },
5629
5629
  useMemo: function (nextCreate, deps) {
5630
5630
  var hook = mountWorkInProgressHook();
5631
- deps = void 0 === deps ? null : deps;
5631
+ deps = undefined === deps ? null : deps;
5632
5632
  var nextValue = nextCreate();
5633
5633
  if (shouldDoubleInvokeUserFnsInHooksDEV) {
5634
- setIsStrictModeForDevtools(!0);
5634
+ setIsStrictModeForDevtools(true);
5635
5635
  try {
5636
5636
  nextCreate();
5637
5637
  } finally {
5638
- setIsStrictModeForDevtools(!1);
5638
+ setIsStrictModeForDevtools(false);
5639
5639
  }
5640
5640
  }
5641
5641
  hook.memoizedState = [nextValue, deps];
@@ -5643,14 +5643,14 @@ function requireReactDomClient_production () {
5643
5643
  },
5644
5644
  useReducer: function (reducer, initialArg, init) {
5645
5645
  var hook = mountWorkInProgressHook();
5646
- if (void 0 !== init) {
5646
+ if (undefined !== init) {
5647
5647
  var initialState = init(initialArg);
5648
5648
  if (shouldDoubleInvokeUserFnsInHooksDEV) {
5649
- setIsStrictModeForDevtools(!0);
5649
+ setIsStrictModeForDevtools(true);
5650
5650
  try {
5651
5651
  init(initialArg);
5652
5652
  } finally {
5653
- setIsStrictModeForDevtools(!1);
5653
+ setIsStrictModeForDevtools(false);
5654
5654
  }
5655
5655
  }
5656
5656
  } else initialState = initialArg;
@@ -5688,22 +5688,22 @@ function requireReactDomClient_production () {
5688
5688
  return mountDeferredValueImpl(hook, value, initialValue);
5689
5689
  },
5690
5690
  useTransition: function () {
5691
- var stateHook = mountStateImpl(!1);
5691
+ var stateHook = mountStateImpl(false);
5692
5692
  stateHook = startTransition.bind(
5693
5693
  null,
5694
5694
  currentlyRenderingFiber$1,
5695
5695
  stateHook.queue,
5696
- !0,
5697
- !1
5696
+ true,
5697
+ false
5698
5698
  );
5699
5699
  mountWorkInProgressHook().memoizedState = stateHook;
5700
- return [!1, stateHook];
5700
+ return [false, stateHook];
5701
5701
  },
5702
5702
  useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {
5703
5703
  var fiber = currentlyRenderingFiber$1,
5704
5704
  hook = mountWorkInProgressHook();
5705
5705
  if (isHydrating) {
5706
- if (void 0 === getServerSnapshot)
5706
+ if (undefined === getServerSnapshot)
5707
5707
  throw Error(formatProdErrorMessage(407));
5708
5708
  getServerSnapshot = getServerSnapshot();
5709
5709
  } else {
@@ -5728,7 +5728,7 @@ function requireReactDomClient_production () {
5728
5728
  getServerSnapshot,
5729
5729
  getSnapshot
5730
5730
  ),
5731
- { destroy: void 0 },
5731
+ { destroy: undefined },
5732
5732
  null
5733
5733
  );
5734
5734
  return getServerSnapshot;
@@ -5784,7 +5784,7 @@ function requireReactDomClient_production () {
5784
5784
  hook = dispatchOptimisticSetState.bind(
5785
5785
  null,
5786
5786
  currentlyRenderingFiber$1,
5787
- !0,
5787
+ true,
5788
5788
  queue
5789
5789
  );
5790
5790
  queue.dispatch = hook;
@@ -5898,7 +5898,7 @@ function requireReactDomClient_production () {
5898
5898
  ctor = workInProgress.memoizedState;
5899
5899
  getDerivedStateFromProps = getDerivedStateFromProps(nextProps, ctor);
5900
5900
  getDerivedStateFromProps =
5901
- null === getDerivedStateFromProps || void 0 === getDerivedStateFromProps
5901
+ null === getDerivedStateFromProps || undefined === getDerivedStateFromProps
5902
5902
  ? ctor
5903
5903
  : assign({}, ctor, getDerivedStateFromProps);
5904
5904
  workInProgress.memoizedState = getDerivedStateFromProps;
@@ -5909,14 +5909,14 @@ function requireReactDomClient_production () {
5909
5909
  isMounted: function (component) {
5910
5910
  return (component = component._reactInternals)
5911
5911
  ? getNearestMountedFiber(component) === component
5912
- : !1;
5912
+ : false;
5913
5913
  },
5914
5914
  enqueueSetState: function (inst, payload, callback) {
5915
5915
  inst = inst._reactInternals;
5916
5916
  var lane = requestUpdateLane(),
5917
5917
  update = createUpdate(lane);
5918
5918
  update.payload = payload;
5919
- void 0 !== callback && null !== callback && (update.callback = callback);
5919
+ undefined !== callback && null !== callback && (update.callback = callback);
5920
5920
  payload = enqueueUpdate(inst, update, lane);
5921
5921
  null !== payload &&
5922
5922
  (scheduleUpdateOnFiber(payload, inst, lane),
@@ -5928,7 +5928,7 @@ function requireReactDomClient_production () {
5928
5928
  update = createUpdate(lane);
5929
5929
  update.tag = 1;
5930
5930
  update.payload = payload;
5931
- void 0 !== callback && null !== callback && (update.callback = callback);
5931
+ undefined !== callback && null !== callback && (update.callback = callback);
5932
5932
  payload = enqueueUpdate(inst, update, lane);
5933
5933
  null !== payload &&
5934
5934
  (scheduleUpdateOnFiber(payload, inst, lane),
@@ -5939,7 +5939,7 @@ function requireReactDomClient_production () {
5939
5939
  var lane = requestUpdateLane(),
5940
5940
  update = createUpdate(lane);
5941
5941
  update.tag = 2;
5942
- void 0 !== callback && null !== callback && (update.callback = callback);
5942
+ undefined !== callback && null !== callback && (update.callback = callback);
5943
5943
  callback = enqueueUpdate(inst, update, lane);
5944
5944
  null !== callback &&
5945
5945
  (scheduleUpdateOnFiber(callback, inst, lane),
@@ -5960,7 +5960,7 @@ function requireReactDomClient_production () {
5960
5960
  ? workInProgress.shouldComponentUpdate(newProps, newState, nextContext)
5961
5961
  : ctor.prototype && ctor.prototype.isPureReactComponent
5962
5962
  ? !shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState)
5963
- : !0;
5963
+ : true;
5964
5964
  }
5965
5965
  function callComponentWillReceiveProps(
5966
5966
  workInProgress,
@@ -5986,7 +5986,7 @@ function requireReactDomClient_production () {
5986
5986
  if ((Component = Component.defaultProps)) {
5987
5987
  newProps === baseProps && (newProps = assign({}, newProps));
5988
5988
  for (var propName$67 in Component)
5989
- void 0 === newProps[propName$67] &&
5989
+ undefined === newProps[propName$67] &&
5990
5990
  (newProps[propName$67] = Component[propName$67]);
5991
5991
  }
5992
5992
  return newProps;
@@ -6000,8 +6000,8 @@ function requireReactDomClient_production () {
6000
6000
  "function" === typeof window.ErrorEvent
6001
6001
  ) {
6002
6002
  var event = new window.ErrorEvent("error", {
6003
- bubbles: !0,
6004
- cancelable: !0,
6003
+ bubbles: true,
6004
+ cancelable: true,
6005
6005
  message:
6006
6006
  "object" === typeof error &&
6007
6007
  null !== error &&
@@ -6110,7 +6110,7 @@ function requireReactDomClient_production () {
6110
6110
  returnFiber,
6111
6111
  sourceFiber,
6112
6112
  rootRenderLanes,
6113
- !0
6113
+ true
6114
6114
  );
6115
6115
  sourceFiber = suspenseHandlerStackCursor.current;
6116
6116
  if (null !== sourceFiber) {
@@ -6132,7 +6132,7 @@ function requireReactDomClient_production () {
6132
6132
  ? (sourceFiber.updateQueue = new Set([value]))
6133
6133
  : returnFiber.add(value),
6134
6134
  attachPingListener(root, value, rootRenderLanes)),
6135
- !1
6135
+ false
6136
6136
  );
6137
6137
  case 22:
6138
6138
  return (
@@ -6152,14 +6152,14 @@ function requireReactDomClient_production () {
6152
6152
  ? (returnFiber.retryQueue = new Set([value]))
6153
6153
  : sourceFiber.add(value)),
6154
6154
  attachPingListener(root, value, rootRenderLanes)),
6155
- !1
6155
+ false
6156
6156
  );
6157
6157
  }
6158
6158
  throw Error(formatProdErrorMessage(435, sourceFiber.tag));
6159
6159
  }
6160
6160
  attachPingListener(root, value, rootRenderLanes);
6161
6161
  renderDidSuspendDelayIfPossible();
6162
- return !1;
6162
+ return false;
6163
6163
  }
6164
6164
  if (isHydrating)
6165
6165
  return (
@@ -6191,7 +6191,7 @@ function requireReactDomClient_production () {
6191
6191
  enqueueCapturedUpdate(root, rootRenderLanes),
6192
6192
  4 !== workInProgressRootExitStatus &&
6193
6193
  (workInProgressRootExitStatus = 2)),
6194
- !1
6194
+ false
6195
6195
  );
6196
6196
  var wrapperError = Error(formatProdErrorMessage(520), { cause: value });
6197
6197
  wrapperError = createCapturedValueAtFiber(wrapperError, sourceFiber);
@@ -6199,7 +6199,7 @@ function requireReactDomClient_production () {
6199
6199
  ? (workInProgressRootConcurrentErrors = [wrapperError])
6200
6200
  : workInProgressRootConcurrentErrors.push(wrapperError);
6201
6201
  4 !== workInProgressRootExitStatus && (workInProgressRootExitStatus = 2);
6202
- if (null === returnFiber) return !0;
6202
+ if (null === returnFiber) return true;
6203
6203
  value = createCapturedValueAtFiber(value, sourceFiber);
6204
6204
  sourceFiber = returnFiber;
6205
6205
  do {
@@ -6211,7 +6211,7 @@ function requireReactDomClient_production () {
6211
6211
  (sourceFiber.lanes |= root),
6212
6212
  (root = createRootErrorUpdate(sourceFiber.stateNode, value, root)),
6213
6213
  enqueueCapturedUpdate(sourceFiber, root),
6214
- !1
6214
+ false
6215
6215
  );
6216
6216
  case 1:
6217
6217
  if (
@@ -6236,15 +6236,15 @@ function requireReactDomClient_production () {
6236
6236
  value
6237
6237
  ),
6238
6238
  enqueueCapturedUpdate(sourceFiber, rootRenderLanes),
6239
- !1
6239
+ false
6240
6240
  );
6241
6241
  }
6242
6242
  sourceFiber = sourceFiber.return;
6243
6243
  } while (null !== sourceFiber);
6244
- return !1;
6244
+ return false;
6245
6245
  }
6246
6246
  var SelectiveHydrationException = Error(formatProdErrorMessage(461)),
6247
- didReceiveUpdate = !1;
6247
+ didReceiveUpdate = false;
6248
6248
  function reconcileChildren(current, workInProgress, nextChildren, renderLanes) {
6249
6249
  workInProgress.child =
6250
6250
  null === current
@@ -6302,7 +6302,7 @@ function requireReactDomClient_production () {
6302
6302
  if (
6303
6303
  "function" === typeof type &&
6304
6304
  !shouldConstruct(type) &&
6305
- void 0 === type.defaultProps &&
6305
+ undefined === type.defaultProps &&
6306
6306
  null === Component.compare
6307
6307
  )
6308
6308
  return (
@@ -6356,11 +6356,11 @@ function requireReactDomClient_production () {
6356
6356
  current.ref === workInProgress.ref
6357
6357
  )
6358
6358
  if (
6359
- ((didReceiveUpdate = !1),
6359
+ ((didReceiveUpdate = false),
6360
6360
  (workInProgress.pendingProps = nextProps = prevProps),
6361
6361
  checkScheduledUpdateOrContext(current, renderLanes))
6362
6362
  )
6363
- 0 !== (current.flags & 131072) && (didReceiveUpdate = !0);
6363
+ 0 !== (current.flags & 131072) && (didReceiveUpdate = true);
6364
6364
  else
6365
6365
  return (
6366
6366
  (workInProgress.lanes = current.lanes),
@@ -6452,7 +6452,7 @@ function requireReactDomClient_production () {
6452
6452
  reuseHiddenContextOnStack();
6453
6453
  pushOffscreenSuspenseHandler(workInProgress);
6454
6454
  null !== current &&
6455
- propagateParentContextChanges(current, workInProgress, renderLanes, !0);
6455
+ propagateParentContextChanges(current, workInProgress, renderLanes, true);
6456
6456
  return null;
6457
6457
  }
6458
6458
  function markRef(current, workInProgress) {
@@ -6481,7 +6481,7 @@ function requireReactDomClient_production () {
6481
6481
  workInProgress,
6482
6482
  Component,
6483
6483
  nextProps,
6484
- void 0,
6484
+ undefined,
6485
6485
  renderLanes
6486
6486
  );
6487
6487
  nextProps = checkDidRenderIdHook();
@@ -6539,7 +6539,7 @@ function requireReactDomClient_production () {
6539
6539
  (context = readContext(contextType));
6540
6540
  context = new Component(nextProps, context);
6541
6541
  workInProgress.memoizedState =
6542
- null !== context.state && void 0 !== context.state ? context.state : null;
6542
+ null !== context.state && undefined !== context.state ? context.state : null;
6543
6543
  context.updater = classComponentUpdater;
6544
6544
  workInProgress.stateNode = context;
6545
6545
  context._reactInternals = workInProgress;
@@ -6579,7 +6579,7 @@ function requireReactDomClient_production () {
6579
6579
  (context.state = workInProgress.memoizedState));
6580
6580
  "function" === typeof context.componentDidMount &&
6581
6581
  (workInProgress.flags |= 4194308);
6582
- nextProps = !0;
6582
+ nextProps = true;
6583
6583
  } else if (null === current) {
6584
6584
  context = workInProgress.stateNode;
6585
6585
  var unresolvedOldProps = workInProgress.memoizedProps,
@@ -6606,7 +6606,7 @@ function requireReactDomClient_production () {
6606
6606
  nextProps,
6607
6607
  contextType
6608
6608
  ));
6609
- hasForceUpdate = !1;
6609
+ hasForceUpdate = false;
6610
6610
  var oldState = workInProgress.memoizedState;
6611
6611
  context.state = oldState;
6612
6612
  processUpdateQueue(workInProgress, nextProps, context, renderLanes);
@@ -6651,7 +6651,7 @@ function requireReactDomClient_production () {
6651
6651
  (nextProps = oldProps))
6652
6652
  : ("function" === typeof context.componentDidMount &&
6653
6653
  (workInProgress.flags |= 4194308),
6654
- (nextProps = !1));
6654
+ (nextProps = false));
6655
6655
  } else {
6656
6656
  context = workInProgress.stateNode;
6657
6657
  cloneUpdateQueue(current, workInProgress);
@@ -6678,7 +6678,7 @@ function requireReactDomClient_production () {
6678
6678
  nextProps,
6679
6679
  oldProps
6680
6680
  ));
6681
- hasForceUpdate = !1;
6681
+ hasForceUpdate = false;
6682
6682
  oldState = workInProgress.memoizedState;
6683
6683
  context.state = oldState;
6684
6684
  processUpdateQueue(workInProgress, nextProps, context, renderLanes);
@@ -6749,7 +6749,7 @@ function requireReactDomClient_production () {
6749
6749
  (contextType === current.memoizedProps &&
6750
6750
  oldState === current.memoizedState) ||
6751
6751
  (workInProgress.flags |= 1024),
6752
- (nextProps = !1));
6752
+ (nextProps = false));
6753
6753
  }
6754
6754
  context = nextProps;
6755
6755
  markRef(current, workInProgress);
@@ -6810,15 +6810,15 @@ function requireReactDomClient_production () {
6810
6810
  }
6811
6811
  function updateSuspenseComponent(current, workInProgress, renderLanes) {
6812
6812
  var nextProps = workInProgress.pendingProps,
6813
- showFallback = !1,
6813
+ showFallback = false,
6814
6814
  didSuspend = 0 !== (workInProgress.flags & 128),
6815
6815
  JSCompiler_temp;
6816
6816
  (JSCompiler_temp = didSuspend) ||
6817
6817
  (JSCompiler_temp =
6818
6818
  null !== current && null === current.memoizedState
6819
- ? !1
6819
+ ? false
6820
6820
  : 0 !== (suspenseStackCursor.current & 2));
6821
- JSCompiler_temp && ((showFallback = !0), (workInProgress.flags &= -129));
6821
+ JSCompiler_temp && ((showFallback = true), (workInProgress.flags &= -129));
6822
6822
  JSCompiler_temp = 0 !== (workInProgress.flags & 32);
6823
6823
  workInProgress.flags &= -33;
6824
6824
  if (null === current) {
@@ -6871,8 +6871,8 @@ function requireReactDomClient_production () {
6871
6871
  (workInProgress.child = JSCompiler_temp$jscomp$0),
6872
6872
  (hydrationParentFiber = workInProgress),
6873
6873
  (nextHydratableInstance = null),
6874
- (JSCompiler_temp$jscomp$0 = !0))
6875
- : (JSCompiler_temp$jscomp$0 = !1);
6874
+ (JSCompiler_temp$jscomp$0 = true))
6875
+ : (JSCompiler_temp$jscomp$0 = false);
6876
6876
  }
6877
6877
  JSCompiler_temp$jscomp$0 || throwOnHydrationMismatch(workInProgress);
6878
6878
  }
@@ -6995,7 +6995,7 @@ function requireReactDomClient_production () {
6995
6995
  );
6996
6996
  } else if (
6997
6997
  (didReceiveUpdate ||
6998
- propagateParentContextChanges(current, workInProgress, renderLanes, !1),
6998
+ propagateParentContextChanges(current, workInProgress, renderLanes, false),
6999
6999
  (JSCompiler_temp = 0 !== (renderLanes & current.childLanes)),
7000
7000
  didReceiveUpdate || JSCompiler_temp)
7001
7001
  ) {
@@ -7074,9 +7074,9 @@ function requireReactDomClient_production () {
7074
7074
  nextInstance.nextSibling
7075
7075
  )),
7076
7076
  (hydrationParentFiber = workInProgress),
7077
- (isHydrating = !0),
7077
+ (isHydrating = true),
7078
7078
  (hydrationErrors = null),
7079
- (rootOrSingletonContext = !1),
7079
+ (rootOrSingletonContext = false),
7080
7080
  null !== current &&
7081
7081
  ((idStack[idStackIndex++] = treeContextId),
7082
7082
  (idStack[idStackIndex++] = treeContextOverflow),
@@ -7264,7 +7264,7 @@ function requireReactDomClient_production () {
7264
7264
  : ((revealOrder = renderLanes.sibling), (renderLanes.sibling = null));
7265
7265
  initSuspenseListRenderState(
7266
7266
  workInProgress,
7267
- !1,
7267
+ false,
7268
7268
  revealOrder,
7269
7269
  renderLanes,
7270
7270
  tailMode
@@ -7286,14 +7286,14 @@ function requireReactDomClient_production () {
7286
7286
  }
7287
7287
  initSuspenseListRenderState(
7288
7288
  workInProgress,
7289
- !0,
7289
+ true,
7290
7290
  renderLanes,
7291
7291
  null,
7292
7292
  tailMode
7293
7293
  );
7294
7294
  break;
7295
7295
  case "together":
7296
- initSuspenseListRenderState(workInProgress, !1, null, null, void 0);
7296
+ initSuspenseListRenderState(workInProgress, false, null, null, undefined);
7297
7297
  break;
7298
7298
  default:
7299
7299
  workInProgress.memoizedState = null;
@@ -7310,7 +7310,7 @@ function requireReactDomClient_production () {
7310
7310
  current,
7311
7311
  workInProgress,
7312
7312
  renderLanes,
7313
- !1
7313
+ false
7314
7314
  ),
7315
7315
  0 === (renderLanes & workInProgress.childLanes))
7316
7316
  )
@@ -7332,9 +7332,9 @@ function requireReactDomClient_production () {
7332
7332
  return workInProgress.child;
7333
7333
  }
7334
7334
  function checkScheduledUpdateOrContext(current, renderLanes) {
7335
- if (0 !== (current.lanes & renderLanes)) return !0;
7335
+ if (0 !== (current.lanes & renderLanes)) return true;
7336
7336
  current = current.dependencies;
7337
- return null !== current && checkIfContextChanged(current) ? !0 : !1;
7337
+ return null !== current && checkIfContextChanged(current) ? true : false;
7338
7338
  }
7339
7339
  function attemptEarlyBailoutIfNoScheduledUpdate(
7340
7340
  current,
@@ -7390,7 +7390,7 @@ function requireReactDomClient_production () {
7390
7390
  current,
7391
7391
  workInProgress,
7392
7392
  renderLanes,
7393
- !1
7393
+ false
7394
7394
  ),
7395
7395
  (state = 0 !== (renderLanes & workInProgress.childLanes)));
7396
7396
  if (didSuspendBefore) {
@@ -7424,24 +7424,24 @@ function requireReactDomClient_production () {
7424
7424
  function beginWork(current, workInProgress, renderLanes) {
7425
7425
  if (null !== current)
7426
7426
  if (current.memoizedProps !== workInProgress.pendingProps)
7427
- didReceiveUpdate = !0;
7427
+ didReceiveUpdate = true;
7428
7428
  else {
7429
7429
  if (
7430
7430
  !checkScheduledUpdateOrContext(current, renderLanes) &&
7431
7431
  0 === (workInProgress.flags & 128)
7432
7432
  )
7433
7433
  return (
7434
- (didReceiveUpdate = !1),
7434
+ (didReceiveUpdate = false),
7435
7435
  attemptEarlyBailoutIfNoScheduledUpdate(
7436
7436
  current,
7437
7437
  workInProgress,
7438
7438
  renderLanes
7439
7439
  )
7440
7440
  );
7441
- didReceiveUpdate = 0 !== (current.flags & 131072) ? !0 : !1;
7441
+ didReceiveUpdate = 0 !== (current.flags & 131072) ? true : false;
7442
7442
  }
7443
7443
  else
7444
- (didReceiveUpdate = !1),
7444
+ (didReceiveUpdate = false),
7445
7445
  isHydrating &&
7446
7446
  0 !== (workInProgress.flags & 1048576) &&
7447
7447
  pushTreeId(workInProgress, treeForkCount, workInProgress.index);
@@ -7474,7 +7474,7 @@ function requireReactDomClient_production () {
7474
7474
  renderLanes
7475
7475
  )));
7476
7476
  else {
7477
- if (void 0 !== lazyComponent && null !== lazyComponent)
7477
+ if (undefined !== lazyComponent && null !== lazyComponent)
7478
7478
  if (
7479
7479
  ((init = lazyComponent.$$typeof), init === REACT_FORWARD_REF_TYPE)
7480
7480
  ) {
@@ -7547,7 +7547,7 @@ function requireReactDomClient_production () {
7547
7547
  workInProgress,
7548
7548
  [CacheContext],
7549
7549
  renderLanes,
7550
- !0
7550
+ true
7551
7551
  );
7552
7552
  suspendIfUpdateReadFromEntangledAsyncAction();
7553
7553
  nextProps = nextState.element;
@@ -7555,7 +7555,7 @@ function requireReactDomClient_production () {
7555
7555
  if (
7556
7556
  ((init = {
7557
7557
  element: nextProps,
7558
- isDehydrated: !1,
7558
+ isDehydrated: false,
7559
7559
  cache: nextState.cache
7560
7560
  }),
7561
7561
  (workInProgress.updateQueue.baseState = init),
@@ -7588,9 +7588,9 @@ function requireReactDomClient_production () {
7588
7588
  workInProgress.stateNode.containerInfo.firstChild
7589
7589
  ),
7590
7590
  hydrationParentFiber = workInProgress,
7591
- isHydrating = !0,
7591
+ isHydrating = true,
7592
7592
  hydrationErrors = null,
7593
- rootOrSingletonContext = !0,
7593
+ rootOrSingletonContext = true,
7594
7594
  renderLanes = mountChildFibers(
7595
7595
  workInProgress,
7596
7596
  null,
@@ -7660,7 +7660,7 @@ function requireReactDomClient_production () {
7660
7660
  rootInstanceStackCursor.current
7661
7661
  )),
7662
7662
  (hydrationParentFiber = workInProgress),
7663
- (rootOrSingletonContext = !0),
7663
+ (rootOrSingletonContext = true),
7664
7664
  (nextHydratableInstance = getNextHydratable(
7665
7665
  lazyComponent.firstChild
7666
7666
  ))),
@@ -7696,9 +7696,9 @@ function requireReactDomClient_production () {
7696
7696
  (nextHydratableInstance = getNextHydratable(
7697
7697
  lazyComponent.firstChild
7698
7698
  )),
7699
- (rootOrSingletonContext = !1),
7700
- (init = !0))
7701
- : (init = !1);
7699
+ (rootOrSingletonContext = false),
7700
+ (init = true))
7701
+ : (init = false);
7702
7702
  init || throwOnHydrationMismatch(workInProgress);
7703
7703
  }
7704
7704
  pushHostContext(workInProgress);
@@ -7736,8 +7736,8 @@ function requireReactDomClient_production () {
7736
7736
  ? ((workInProgress.stateNode = renderLanes),
7737
7737
  (hydrationParentFiber = workInProgress),
7738
7738
  (nextHydratableInstance = null),
7739
- (current = !0))
7740
- : (current = !1);
7739
+ (current = true))
7740
+ : (current = false);
7741
7741
  current || throwOnHydrationMismatch(workInProgress);
7742
7742
  }
7743
7743
  return null;
@@ -7886,7 +7886,7 @@ function requireReactDomClient_production () {
7886
7886
  workInProgress,
7887
7887
  [CacheContext],
7888
7888
  renderLanes,
7889
- !0
7889
+ true
7890
7890
  ))),
7891
7891
  reconcileChildren(
7892
7892
  current,
@@ -7991,12 +7991,12 @@ function requireReactDomClient_production () {
7991
7991
  ) {
7992
7992
  current = null;
7993
7993
  for (
7994
- var parent = workInProgress, isInsidePropagationBailout = !1;
7994
+ var parent = workInProgress, isInsidePropagationBailout = false;
7995
7995
  null !== parent;
7996
7996
 
7997
7997
  ) {
7998
7998
  if (!isInsidePropagationBailout)
7999
- if (0 !== (parent.flags & 524288)) isInsidePropagationBailout = !0;
7999
+ if (0 !== (parent.flags & 524288)) isInsidePropagationBailout = true;
8000
8000
  else if (0 !== (parent.flags & 262144)) break;
8001
8001
  if (10 === parent.tag) {
8002
8002
  var currentParent = parent.alternate;
@@ -8039,10 +8039,10 @@ function requireReactDomClient_production () {
8039
8039
  currentDependencies.memoizedValue
8040
8040
  )
8041
8041
  )
8042
- return !0;
8042
+ return true;
8043
8043
  currentDependencies = currentDependencies.next;
8044
8044
  }
8045
- return !1;
8045
+ return false;
8046
8046
  }
8047
8047
  function prepareToReadContext(workInProgress) {
8048
8048
  currentlyRenderingFiber = workInProgress;
@@ -8068,7 +8068,7 @@ function requireReactDomClient_production () {
8068
8068
  } else lastContextDependency = lastContextDependency.next = context;
8069
8069
  return value;
8070
8070
  }
8071
- var hasForceUpdate = !1;
8071
+ var hasForceUpdate = false;
8072
8072
  function initializeUpdateQueue(fiber) {
8073
8073
  fiber.updateQueue = {
8074
8074
  baseState: fiber.memoizedState,
@@ -8163,7 +8163,7 @@ function requireReactDomClient_production () {
8163
8163
  : (workInProgress.next = capturedUpdate);
8164
8164
  queue.lastBaseUpdate = capturedUpdate;
8165
8165
  }
8166
- var didReadFromEntangledAsyncAction = !1;
8166
+ var didReadFromEntangledAsyncAction = false;
8167
8167
  function suspendIfUpdateReadFromEntangledAsyncAction() {
8168
8168
  if (didReadFromEntangledAsyncAction) {
8169
8169
  var entangledActionThenable = currentEntangledActionThenable;
@@ -8176,9 +8176,9 @@ function requireReactDomClient_production () {
8176
8176
  instance$jscomp$0,
8177
8177
  renderLanes
8178
8178
  ) {
8179
- didReadFromEntangledAsyncAction = !1;
8179
+ didReadFromEntangledAsyncAction = false;
8180
8180
  var queue = workInProgress$jscomp$0.updateQueue;
8181
- hasForceUpdate = !1;
8181
+ hasForceUpdate = false;
8182
8182
  var firstBaseUpdate = queue.firstBaseUpdate,
8183
8183
  lastBaseUpdate = queue.lastBaseUpdate,
8184
8184
  pendingQueue = queue.shared.pending;
@@ -8216,7 +8216,7 @@ function requireReactDomClient_production () {
8216
8216
  ) {
8217
8217
  0 !== updateLane &&
8218
8218
  updateLane === currentEntangledLane &&
8219
- (didReadFromEntangledAsyncAction = !0);
8219
+ (didReadFromEntangledAsyncAction = true);
8220
8220
  null !== current &&
8221
8221
  (current = current.next =
8222
8222
  {
@@ -8248,11 +8248,11 @@ function requireReactDomClient_production () {
8248
8248
  "function" === typeof workInProgress
8249
8249
  ? workInProgress.call(instance, newState, updateLane)
8250
8250
  : workInProgress;
8251
- if (null === updateLane || void 0 === updateLane) break a;
8251
+ if (null === updateLane || undefined === updateLane) break a;
8252
8252
  newState = assign({}, newState, updateLane);
8253
8253
  break a;
8254
8254
  case 2:
8255
- hasForceUpdate = !0;
8255
+ hasForceUpdate = true;
8256
8256
  }
8257
8257
  }
8258
8258
  updateLane = pendingQueue.callback;
@@ -8515,7 +8515,7 @@ function requireReactDomClient_production () {
8515
8515
  ? ((before = parent.parentNode), before.insertBefore(node, parent))
8516
8516
  : ((before = parent), before.appendChild(node)),
8517
8517
  (parent = parent._reactRootContainer),
8518
- (null !== parent && void 0 !== parent) ||
8518
+ (null !== parent && undefined !== parent) ||
8519
8519
  null !== before.onclick ||
8520
8520
  (before.onclick = noop$1));
8521
8521
  else if (4 !== tag && 27 !== tag && ((node = node.child), null !== node))
@@ -8541,12 +8541,12 @@ function requireReactDomClient_production () {
8541
8541
  )
8542
8542
  insertOrAppendPlacementNode(node, before, parent), (node = node.sibling);
8543
8543
  }
8544
- var offscreenSubtreeIsHidden = !1,
8545
- offscreenSubtreeWasHidden = !1,
8546
- needsFormReset = !1,
8544
+ var offscreenSubtreeIsHidden = false,
8545
+ offscreenSubtreeWasHidden = false,
8546
+ needsFormReset = false,
8547
8547
  PossiblyWeakSet = "function" === typeof WeakSet ? WeakSet : Set,
8548
8548
  nextEffect = null,
8549
- shouldFireAfterActiveInstanceBlur = !1;
8549
+ shouldFireAfterActiveInstanceBlur = false;
8550
8550
  function commitBeforeMutationEffects(root, firstChild) {
8551
8551
  root = root.containerInfo;
8552
8552
  eventsEnabled = _enabled;
@@ -8617,7 +8617,7 @@ function requireReactDomClient_production () {
8617
8617
  JSCompiler_temp = JSCompiler_temp || { start: 0, end: 0 };
8618
8618
  } else JSCompiler_temp = null;
8619
8619
  selectionInformation = { focusedElem: root, selectionRange: JSCompiler_temp };
8620
- _enabled = !1;
8620
+ _enabled = false;
8621
8621
  for (nextEffect = firstChild; null !== nextEffect; )
8622
8622
  if (
8623
8623
  ((firstChild = nextEffect),
@@ -8638,7 +8638,7 @@ function requireReactDomClient_production () {
8638
8638
  break;
8639
8639
  case 1:
8640
8640
  if (0 !== (root & 1024) && null !== focusNode) {
8641
- root = void 0;
8641
+ root = undefined;
8642
8642
  JSCompiler_temp = firstChild;
8643
8643
  anchorOffset = focusNode.memoizedProps;
8644
8644
  focusNode = focusNode.memoizedState;
@@ -8701,7 +8701,7 @@ function requireReactDomClient_production () {
8701
8701
  nextEffect = firstChild.return;
8702
8702
  }
8703
8703
  resolvedPrevProps = shouldFireAfterActiveInstanceBlur;
8704
- shouldFireAfterActiveInstanceBlur = !1;
8704
+ shouldFireAfterActiveInstanceBlur = false;
8705
8705
  return resolvedPrevProps;
8706
8706
  }
8707
8707
  function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
@@ -8831,7 +8831,7 @@ function requireReactDomClient_production () {
8831
8831
  fiber.updateQueue = null;
8832
8832
  }
8833
8833
  var hostParent = null,
8834
- hostParentIsContainer = !1;
8834
+ hostParentIsContainer = false;
8835
8835
  function recursivelyTraverseDeletionEffects(
8836
8836
  finishedRoot,
8837
8837
  nearestMountedAncestor,
@@ -8946,7 +8946,7 @@ function requireReactDomClient_production () {
8946
8946
  prevHostParent = hostParent;
8947
8947
  prevHostParentIsContainer = hostParentIsContainer;
8948
8948
  hostParent = deletedFiber.stateNode.containerInfo;
8949
- hostParentIsContainer = !0;
8949
+ hostParentIsContainer = true;
8950
8950
  recursivelyTraverseDeletionEffects(
8951
8951
  finishedRoot,
8952
8952
  nearestMountedAncestor,
@@ -9069,15 +9069,15 @@ function requireReactDomClient_production () {
9069
9069
  case 27:
9070
9070
  case 5:
9071
9071
  hostParent = parent.stateNode;
9072
- hostParentIsContainer = !1;
9072
+ hostParentIsContainer = false;
9073
9073
  break a;
9074
9074
  case 3:
9075
9075
  hostParent = parent.stateNode.containerInfo;
9076
- hostParentIsContainer = !0;
9076
+ hostParentIsContainer = true;
9077
9077
  break a;
9078
9078
  case 4:
9079
9079
  hostParent = parent.stateNode.containerInfo;
9080
- hostParentIsContainer = !0;
9080
+ hostParentIsContainer = true;
9081
9081
  break a;
9082
9082
  }
9083
9083
  parent = parent.return;
@@ -9085,7 +9085,7 @@ function requireReactDomClient_production () {
9085
9085
  if (null === hostParent) throw Error(formatProdErrorMessage(160));
9086
9086
  commitDeletionEffectsOnFiber(root, returnFiber, childToDelete);
9087
9087
  hostParent = null;
9088
- hostParentIsContainer = !1;
9088
+ hostParentIsContainer = false;
9089
9089
  root = childToDelete.alternate;
9090
9090
  null !== root && (root.return = null);
9091
9091
  childToDelete.return = null;
@@ -9334,7 +9334,7 @@ function requireReactDomClient_production () {
9334
9334
  hoistableRoot,
9335
9335
  null !== current ? current.memoizedProps : hoistableRoot
9336
9336
  ));
9337
- flags & 1024 && (needsFormReset = !0);
9337
+ flags & 1024 && (needsFormReset = true);
9338
9338
  break;
9339
9339
  case 6:
9340
9340
  recursivelyTraverseMutationEffects(root, finishedWork);
@@ -9365,7 +9365,7 @@ function requireReactDomClient_production () {
9365
9365
  captureCommitPhaseError(finishedWork, finishedWork.return, error);
9366
9366
  }
9367
9367
  needsFormReset &&
9368
- ((needsFormReset = !1), recursivelyResetForms(finishedWork));
9368
+ ((needsFormReset = false), recursivelyResetForms(finishedWork));
9369
9369
  break;
9370
9370
  case 4:
9371
9371
  flags = currentHoistableRoot;
@@ -10647,7 +10647,7 @@ function requireReactDomClient_production () {
10647
10647
  ? type.createElement("select", { is: newProps.is })
10648
10648
  : type.createElement("select");
10649
10649
  newProps.multiple
10650
- ? (current.multiple = !0)
10650
+ ? (current.multiple = true)
10651
10651
  : newProps.size && (current.size = newProps.size);
10652
10652
  break;
10653
10653
  default:
@@ -10687,10 +10687,10 @@ function requireReactDomClient_production () {
10687
10687
  current = !!newProps.autoFocus;
10688
10688
  break a;
10689
10689
  case "img":
10690
- current = !0;
10690
+ current = true;
10691
10691
  break a;
10692
10692
  default:
10693
- current = !1;
10693
+ current = false;
10694
10694
  }
10695
10695
  current && markUpdate(workInProgress);
10696
10696
  }
@@ -10719,10 +10719,10 @@ function requireReactDomClient_production () {
10719
10719
  current[internalInstanceKey] = workInProgress;
10720
10720
  current =
10721
10721
  current.nodeValue === renderLanes ||
10722
- (null !== newProps && !0 === newProps.suppressHydrationWarning) ||
10722
+ (null !== newProps && true === newProps.suppressHydrationWarning) ||
10723
10723
  checkForUnmatchedText(current.nodeValue, renderLanes)
10724
- ? !0
10725
- : !1;
10724
+ ? true
10725
+ : false;
10726
10726
  current || throwOnHydrationMismatch(workInProgress);
10727
10727
  } else
10728
10728
  (current =
@@ -10755,11 +10755,11 @@ function requireReactDomClient_production () {
10755
10755
  (workInProgress.memoizedState = null),
10756
10756
  (workInProgress.flags |= 4);
10757
10757
  bubbleProperties(workInProgress);
10758
- type = !1;
10758
+ type = false;
10759
10759
  } else
10760
10760
  null !== hydrationErrors &&
10761
10761
  (queueRecoverableErrors(hydrationErrors), (hydrationErrors = null)),
10762
- (type = !0);
10762
+ (type = true);
10763
10763
  if (!type) {
10764
10764
  if (workInProgress.flags & 256)
10765
10765
  return popSuspenseHandler(workInProgress), workInProgress;
@@ -10810,7 +10810,7 @@ function requireReactDomClient_production () {
10810
10810
  newProps = 0 !== (workInProgress.flags & 128);
10811
10811
  cache$144 = type.rendering;
10812
10812
  if (null === cache$144)
10813
- if (newProps) cutOffTailIfNeeded(type, !1);
10813
+ if (newProps) cutOffTailIfNeeded(type, false);
10814
10814
  else {
10815
10815
  if (
10816
10816
  0 !== workInProgressRootExitStatus ||
@@ -10820,7 +10820,7 @@ function requireReactDomClient_production () {
10820
10820
  cache$144 = findFirstSuspended(current);
10821
10821
  if (null !== cache$144) {
10822
10822
  workInProgress.flags |= 128;
10823
- cutOffTailIfNeeded(type, !1);
10823
+ cutOffTailIfNeeded(type, false);
10824
10824
  current = cache$144.updateQueue;
10825
10825
  workInProgress.updateQueue = current;
10826
10826
  scheduleRetryEffect(workInProgress, current);
@@ -10840,8 +10840,8 @@ function requireReactDomClient_production () {
10840
10840
  null !== type.tail &&
10841
10841
  now() > workInProgressRootRenderTargetTime &&
10842
10842
  ((workInProgress.flags |= 128),
10843
- (newProps = !0),
10844
- cutOffTailIfNeeded(type, !1),
10843
+ (newProps = true),
10844
+ cutOffTailIfNeeded(type, false),
10845
10845
  (workInProgress.lanes = 4194304));
10846
10846
  }
10847
10847
  else {
@@ -10849,11 +10849,11 @@ function requireReactDomClient_production () {
10849
10849
  if (((current = findFirstSuspended(cache$144)), null !== current)) {
10850
10850
  if (
10851
10851
  ((workInProgress.flags |= 128),
10852
- (newProps = !0),
10852
+ (newProps = true),
10853
10853
  (current = current.updateQueue),
10854
10854
  (workInProgress.updateQueue = current),
10855
10855
  scheduleRetryEffect(workInProgress, current),
10856
- cutOffTailIfNeeded(type, !0),
10856
+ cutOffTailIfNeeded(type, true),
10857
10857
  null === type.tail &&
10858
10858
  "hidden" === type.tailMode &&
10859
10859
  !cache$144.alternate &&
@@ -10865,8 +10865,8 @@ function requireReactDomClient_production () {
10865
10865
  workInProgressRootRenderTargetTime &&
10866
10866
  536870912 !== renderLanes &&
10867
10867
  ((workInProgress.flags |= 128),
10868
- (newProps = !0),
10869
- cutOffTailIfNeeded(type, !1),
10868
+ (newProps = true),
10869
+ cutOffTailIfNeeded(type, false),
10870
10870
  (workInProgress.lanes = 4194304));
10871
10871
  type.isBackwards
10872
10872
  ? ((cache$144.sibling = workInProgress.child),
@@ -11035,7 +11035,7 @@ function requireReactDomClient_production () {
11035
11035
  getCacheForType: function (resourceType) {
11036
11036
  var cache = readContext(CacheContext),
11037
11037
  cacheForType = cache.data.get(resourceType);
11038
- void 0 === cacheForType &&
11038
+ undefined === cacheForType &&
11039
11039
  ((cacheForType = resourceType()),
11040
11040
  cache.data.set(resourceType, cacheForType));
11041
11041
  return cacheForType;
@@ -11048,9 +11048,9 @@ function requireReactDomClient_production () {
11048
11048
  workInProgressRootRenderLanes = 0,
11049
11049
  workInProgressSuspendedReason = 0,
11050
11050
  workInProgressThrownValue = null,
11051
- workInProgressRootDidSkipSuspendedSiblings = !1,
11052
- workInProgressRootIsPrerendering = !1,
11053
- workInProgressRootDidAttachPingListener = !1,
11051
+ workInProgressRootDidSkipSuspendedSiblings = false,
11052
+ workInProgressRootIsPrerendering = false,
11053
+ workInProgressRootDidAttachPingListener = false,
11054
11054
  entangledRenderLanes = 0,
11055
11055
  workInProgressRootExitStatus = 0,
11056
11056
  workInProgressRootSkippedLanes = 0,
@@ -11060,12 +11060,12 @@ function requireReactDomClient_production () {
11060
11060
  workInProgressSuspendedRetryLanes = 0,
11061
11061
  workInProgressRootConcurrentErrors = null,
11062
11062
  workInProgressRootRecoverableErrors = null,
11063
- workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
11063
+ workInProgressRootDidIncludeRecursiveRenderUpdate = false,
11064
11064
  globalMostRecentFallbackTime = 0,
11065
11065
  workInProgressRootRenderTargetTime = Infinity,
11066
11066
  workInProgressTransitions = null,
11067
11067
  legacyErrorBoundariesThatAlreadyFailed = null,
11068
- rootDoesHavePassiveEffects = !1,
11068
+ rootDoesHavePassiveEffects = false,
11069
11069
  rootWithPendingPassiveEffects = null,
11070
11070
  pendingPassiveEffectsLanes = 0,
11071
11071
  pendingPassiveEffectsRemainingLanes = 0,
@@ -11101,7 +11101,7 @@ function requireReactDomClient_production () {
11101
11101
  root,
11102
11102
  workInProgressRootRenderLanes,
11103
11103
  workInProgressDeferredLane,
11104
- !1
11104
+ false
11105
11105
  );
11106
11106
  markRootUpdated$1(root, lane);
11107
11107
  if (0 === (executionContext & 2) || root !== workInProgressRoot)
@@ -11113,7 +11113,7 @@ function requireReactDomClient_production () {
11113
11113
  root,
11114
11114
  workInProgressRootRenderLanes,
11115
11115
  workInProgressDeferredLane,
11116
- !1
11116
+ false
11117
11117
  )),
11118
11118
  ensureRootIsScheduled(root);
11119
11119
  }
@@ -11126,13 +11126,13 @@ function requireReactDomClient_production () {
11126
11126
  checkIfRootIsPrerendering(root$jscomp$0, lanes),
11127
11127
  exitStatus = shouldTimeSlice
11128
11128
  ? renderRootConcurrent(root$jscomp$0, lanes)
11129
- : renderRootSync(root$jscomp$0, lanes, !0),
11129
+ : renderRootSync(root$jscomp$0, lanes, true),
11130
11130
  renderWasConcurrent = shouldTimeSlice;
11131
11131
  do {
11132
11132
  if (0 === exitStatus) {
11133
11133
  workInProgressRootIsPrerendering &&
11134
11134
  !shouldTimeSlice &&
11135
- markRootSuspended(root$jscomp$0, lanes, 0, !1);
11135
+ markRootSuspended(root$jscomp$0, lanes, 0, false);
11136
11136
  break;
11137
11137
  } else if (6 === exitStatus)
11138
11138
  markRootSuspended(
@@ -11147,8 +11147,8 @@ function requireReactDomClient_production () {
11147
11147
  renderWasConcurrent &&
11148
11148
  !isRenderConsistentWithExternalStores(forceSync)
11149
11149
  ) {
11150
- exitStatus = renderRootSync(root$jscomp$0, lanes, !1);
11151
- renderWasConcurrent = !1;
11150
+ exitStatus = renderRootSync(root$jscomp$0, lanes, false);
11151
+ renderWasConcurrent = false;
11152
11152
  continue;
11153
11153
  }
11154
11154
  if (2 === exitStatus) {
@@ -11174,7 +11174,7 @@ function requireReactDomClient_production () {
11174
11174
  JSCompiler_inline_result = renderRootSync(
11175
11175
  root,
11176
11176
  JSCompiler_inline_result,
11177
- !1
11177
+ false
11178
11178
  );
11179
11179
  if (2 !== JSCompiler_inline_result) {
11180
11180
  if (
@@ -11194,13 +11194,13 @@ function requireReactDomClient_production () {
11194
11194
  }
11195
11195
  exitStatus = JSCompiler_inline_result;
11196
11196
  }
11197
- renderWasConcurrent = !1;
11197
+ renderWasConcurrent = false;
11198
11198
  if (2 !== exitStatus) continue;
11199
11199
  }
11200
11200
  }
11201
11201
  if (1 === exitStatus) {
11202
11202
  prepareFreshStack(root$jscomp$0, 0);
11203
- markRootSuspended(root$jscomp$0, lanes, 0, !0);
11203
+ markRootSuspended(root$jscomp$0, lanes, 0, true);
11204
11204
  break;
11205
11205
  }
11206
11206
  a: {
@@ -11363,7 +11363,7 @@ function requireReactDomClient_production () {
11363
11363
  try {
11364
11364
  if (!objectIs(getSnapshot(), check)) return !1;
11365
11365
  } catch (error) {
11366
- return !1;
11366
+ return false;
11367
11367
  }
11368
11368
  }
11369
11369
  tag = node.child;
@@ -11372,14 +11372,14 @@ function requireReactDomClient_production () {
11372
11372
  else {
11373
11373
  if (node === finishedWork) break;
11374
11374
  for (; null === node.sibling; ) {
11375
- if (null === node.return || node.return === finishedWork) return !0;
11375
+ if (null === node.return || node.return === finishedWork) return true;
11376
11376
  node = node.return;
11377
11377
  }
11378
11378
  node.sibling.return = node.return;
11379
11379
  node = node.sibling;
11380
11380
  }
11381
11381
  }
11382
- return !0;
11382
+ return true;
11383
11383
  }
11384
11384
  function markRootSuspended(
11385
11385
  root,
@@ -11404,8 +11404,8 @@ function requireReactDomClient_production () {
11404
11404
  }
11405
11405
  function flushSyncWork$1() {
11406
11406
  return 0 === (executionContext & 6)
11407
- ? (flushSyncWorkAcrossRoots_impl(0), !1)
11408
- : !0;
11407
+ ? (flushSyncWorkAcrossRoots_impl(0), false)
11408
+ : true;
11409
11409
  }
11410
11410
  function resetWorkInProgressStack() {
11411
11411
  if (null !== workInProgress) {
@@ -11439,9 +11439,9 @@ function requireReactDomClient_production () {
11439
11439
  workInProgressRootRenderLanes = lanes;
11440
11440
  workInProgressSuspendedReason = 0;
11441
11441
  workInProgressThrownValue = null;
11442
- workInProgressRootDidSkipSuspendedSiblings = !1;
11442
+ workInProgressRootDidSkipSuspendedSiblings = false;
11443
11443
  workInProgressRootIsPrerendering = checkIfRootIsPrerendering(root, lanes);
11444
- workInProgressRootDidAttachPingListener = !1;
11444
+ workInProgressRootDidAttachPingListener = false;
11445
11445
  workInProgressSuspendedRetryLanes =
11446
11446
  workInProgressDeferredLane =
11447
11447
  workInProgressRootPingedLanes =
@@ -11451,7 +11451,7 @@ function requireReactDomClient_production () {
11451
11451
  0;
11452
11452
  workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
11453
11453
  null;
11454
- workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
11454
+ workInProgressRootDidIncludeRecursiveRenderUpdate = false;
11455
11455
  0 !== (lanes & 8) && (lanes |= lanes & 32);
11456
11456
  var allEntangledLanes = root.entangledLanes;
11457
11457
  if (0 !== allEntangledLanes)
@@ -11510,7 +11510,7 @@ function requireReactDomClient_production () {
11510
11510
  ((workInProgressRootRenderLanes & 4194176) !==
11511
11511
  workInProgressRootRenderLanes &&
11512
11512
  null !== suspenseHandlerStackCursor.current) ||
11513
- (workInProgressRootIsPrerendering = !0);
11513
+ (workInProgressRootIsPrerendering = true);
11514
11514
  (0 === (workInProgressRootSkippedLanes & 134217727) &&
11515
11515
  0 === (workInProgressRootInterleavedUpdatedLanes & 134217727)) ||
11516
11516
  null === workInProgressRoot ||
@@ -11518,7 +11518,7 @@ function requireReactDomClient_production () {
11518
11518
  workInProgressRoot,
11519
11519
  workInProgressRootRenderLanes,
11520
11520
  workInProgressDeferredLane,
11521
- !1
11521
+ false
11522
11522
  );
11523
11523
  }
11524
11524
  function renderRootSync(root, lanes, shouldYieldForPrerendering) {
@@ -11528,7 +11528,7 @@ function requireReactDomClient_production () {
11528
11528
  prevAsyncDispatcher = pushAsyncDispatcher();
11529
11529
  if (workInProgressRoot !== root || workInProgressRootRenderLanes !== lanes)
11530
11530
  (workInProgressTransitions = null), prepareFreshStack(root, lanes);
11531
- lanes = !1;
11531
+ lanes = false;
11532
11532
  var exitStatus = workInProgressRootExitStatus;
11533
11533
  a: do
11534
11534
  try {
@@ -11714,7 +11714,7 @@ function requireReactDomClient_production () {
11714
11714
  next,
11715
11715
  next.pendingProps,
11716
11716
  next.type,
11717
- void 0,
11717
+ undefined,
11718
11718
  workInProgressRootRenderLanes
11719
11719
  );
11720
11720
  break;
@@ -11779,14 +11779,14 @@ function requireReactDomClient_production () {
11779
11779
  return;
11780
11780
  }
11781
11781
  if (unitOfWork.flags & 32768) {
11782
- if (isHydrating || 1 === suspendedReason) root = !0;
11782
+ if (isHydrating || 1 === suspendedReason) root = true;
11783
11783
  else if (
11784
11784
  workInProgressRootIsPrerendering ||
11785
11785
  0 !== (workInProgressRootRenderLanes & 536870912)
11786
11786
  )
11787
- root = !1;
11787
+ root = false;
11788
11788
  else if (
11789
- ((workInProgressRootDidSkipSuspendedSiblings = root = !0),
11789
+ ((workInProgressRootDidSkipSuspendedSiblings = root = true),
11790
11790
  2 === suspendedReason || 3 === suspendedReason || 6 === suspendedReason)
11791
11791
  )
11792
11792
  (suspendedReason = suspenseHandlerStackCursor.current),
@@ -11921,7 +11921,7 @@ function requireReactDomClient_production () {
11921
11921
  (0 === (finishedWork.subtreeFlags & 10256) &&
11922
11922
  0 === (finishedWork.flags & 10256)) ||
11923
11923
  rootDoesHavePassiveEffects ||
11924
- ((rootDoesHavePassiveEffects = !0),
11924
+ ((rootDoesHavePassiveEffects = true),
11925
11925
  (pendingPassiveEffectsRemainingLanes = remainingLanes),
11926
11926
  (pendingPassiveTransitions = transitions),
11927
11927
  scheduleCallback$1(NormalPriority$1, function () {
@@ -11949,7 +11949,7 @@ function requireReactDomClient_production () {
11949
11949
  (ReactSharedInternals.T = transitions))
11950
11950
  : (root.current = finishedWork);
11951
11951
  rootDoesHavePassiveEffects
11952
- ? ((rootDoesHavePassiveEffects = !1),
11952
+ ? ((rootDoesHavePassiveEffects = false),
11953
11953
  (rootWithPendingPassiveEffects = root),
11954
11954
  (pendingPassiveEffectsLanes = didIncludeRenderPhaseUpdate))
11955
11955
  : releaseRootPooledCache(root, remainingLanes);
@@ -12027,7 +12027,7 @@ function requireReactDomClient_production () {
12027
12027
  releaseRootPooledCache(root$170, remainingLanes);
12028
12028
  }
12029
12029
  }
12030
- return !1;
12030
+ return false;
12031
12031
  }
12032
12032
  function captureCommitPhaseErrorOnRoot(rootFiber, sourceFiber, error) {
12033
12033
  sourceFiber = createCapturedValueAtFiber(error, sourceFiber);
@@ -12083,10 +12083,10 @@ function requireReactDomClient_production () {
12083
12083
  pingCache.set(wakeable, threadIDs);
12084
12084
  } else
12085
12085
  (threadIDs = pingCache.get(wakeable)),
12086
- void 0 === threadIDs &&
12086
+ undefined === threadIDs &&
12087
12087
  ((threadIDs = new Set()), pingCache.set(wakeable, threadIDs));
12088
12088
  threadIDs.has(lanes) ||
12089
- ((workInProgressRootDidAttachPingListener = !0),
12089
+ ((workInProgressRootDidAttachPingListener = true),
12090
12090
  threadIDs.add(lanes),
12091
12091
  (root = pingSuspendedRoot.bind(null, root, wakeable, lanes)),
12092
12092
  wakeable.then(root, root));
@@ -12147,9 +12147,9 @@ function requireReactDomClient_production () {
12147
12147
  }
12148
12148
  var firstScheduledRoot = null,
12149
12149
  lastScheduledRoot = null,
12150
- didScheduleMicrotask = !1,
12151
- mightHavePendingSyncWork = !1,
12152
- isFlushingWork = !1,
12150
+ didScheduleMicrotask = false,
12151
+ mightHavePendingSyncWork = false,
12152
+ isFlushingWork = false,
12153
12153
  currentEventTransitionLane = 0;
12154
12154
  function ensureRootIsScheduled(root) {
12155
12155
  root !== lastScheduledRoot &&
@@ -12157,16 +12157,16 @@ function requireReactDomClient_production () {
12157
12157
  (null === lastScheduledRoot
12158
12158
  ? (firstScheduledRoot = lastScheduledRoot = root)
12159
12159
  : (lastScheduledRoot = lastScheduledRoot.next = root));
12160
- mightHavePendingSyncWork = !0;
12160
+ mightHavePendingSyncWork = true;
12161
12161
  didScheduleMicrotask ||
12162
- ((didScheduleMicrotask = !0),
12162
+ ((didScheduleMicrotask = true),
12163
12163
  scheduleImmediateTask(processRootScheduleInMicrotask));
12164
12164
  }
12165
12165
  function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
12166
12166
  if (!isFlushingWork && mightHavePendingSyncWork) {
12167
- isFlushingWork = !0;
12167
+ isFlushingWork = true;
12168
12168
  do {
12169
- var didPerformSomeWork = !1;
12169
+ var didPerformSomeWork = false;
12170
12170
  for (var root$172 = firstScheduledRoot; null !== root$172; ) {
12171
12171
  if (0 !== syncTransitionLanes) {
12172
12172
  var pendingLanes = root$172.pendingLanes;
@@ -12186,7 +12186,7 @@ function requireReactDomClient_production () {
12186
12186
  : 0;
12187
12187
  }
12188
12188
  0 !== JSCompiler_inline_result &&
12189
- ((didPerformSomeWork = !0),
12189
+ ((didPerformSomeWork = true),
12190
12190
  performSyncWorkOnRoot(root$172, JSCompiler_inline_result));
12191
12191
  } else
12192
12192
  (JSCompiler_inline_result = workInProgressRootRenderLanes),
@@ -12196,16 +12196,16 @@ function requireReactDomClient_production () {
12196
12196
  )),
12197
12197
  0 === (JSCompiler_inline_result & 3) ||
12198
12198
  checkIfRootIsPrerendering(root$172, JSCompiler_inline_result) ||
12199
- ((didPerformSomeWork = !0),
12199
+ ((didPerformSomeWork = true),
12200
12200
  performSyncWorkOnRoot(root$172, JSCompiler_inline_result));
12201
12201
  root$172 = root$172.next;
12202
12202
  }
12203
12203
  } while (didPerformSomeWork);
12204
- isFlushingWork = !1;
12204
+ isFlushingWork = false;
12205
12205
  }
12206
12206
  }
12207
12207
  function processRootScheduleInMicrotask() {
12208
- mightHavePendingSyncWork = didScheduleMicrotask = !1;
12208
+ mightHavePendingSyncWork = didScheduleMicrotask = false;
12209
12209
  var syncTransitionLanes = 0;
12210
12210
  0 !== currentEventTransitionLane &&
12211
12211
  (shouldAttemptEagerTransition() &&
@@ -12225,7 +12225,7 @@ function requireReactDomClient_production () {
12225
12225
  else if (
12226
12226
  ((prev = root), 0 !== syncTransitionLanes || 0 !== (nextLanes & 3))
12227
12227
  )
12228
- mightHavePendingSyncWork = !0;
12228
+ mightHavePendingSyncWork = true;
12229
12229
  root = next;
12230
12230
  }
12231
12231
  flushSyncWorkAcrossRoots_impl(syncTransitionLanes);
@@ -12317,7 +12317,7 @@ function requireReactDomClient_production () {
12317
12317
  }
12318
12318
  function performSyncWorkOnRoot(root, lanes) {
12319
12319
  if (flushPassiveEffects()) return null;
12320
- performWorkOnRoot(root, lanes, !0);
12320
+ performWorkOnRoot(root, lanes, true);
12321
12321
  }
12322
12322
  function scheduleImmediateTask(cb) {
12323
12323
  scheduleMicrotask(function () {
@@ -12392,7 +12392,7 @@ function requireReactDomClient_production () {
12392
12392
  startHostTransition(
12393
12393
  maybeTargetInst,
12394
12394
  {
12395
- pending: !0,
12395
+ pending: true,
12396
12396
  data: formData,
12397
12397
  method: nativeEventTarget.method,
12398
12398
  action: action
@@ -12410,7 +12410,7 @@ function requireReactDomClient_production () {
12410
12410
  startHostTransition(
12411
12411
  maybeTargetInst,
12412
12412
  {
12413
- pending: !0,
12413
+ pending: true,
12414
12414
  data: formData,
12415
12415
  method: nativeEventTarget.method,
12416
12416
  action: action
@@ -12500,7 +12500,7 @@ function requireReactDomClient_production () {
12500
12500
  event = _dispatchQueue$i.event;
12501
12501
  _dispatchQueue$i = _dispatchQueue$i.listeners;
12502
12502
  a: {
12503
- var previousInstance = void 0;
12503
+ var previousInstance = undefined;
12504
12504
  if (eventSystemFlags)
12505
12505
  for (
12506
12506
  var i$jscomp$0 = _dispatchQueue$i.length - 1;
@@ -12550,12 +12550,12 @@ function requireReactDomClient_production () {
12550
12550
  }
12551
12551
  function listenToNonDelegatedEvent(domEventName, targetElement) {
12552
12552
  var JSCompiler_inline_result = targetElement[internalEventHandlersKey];
12553
- void 0 === JSCompiler_inline_result &&
12553
+ undefined === JSCompiler_inline_result &&
12554
12554
  (JSCompiler_inline_result = targetElement[internalEventHandlersKey] =
12555
12555
  new Set());
12556
12556
  var listenerSetKey = domEventName + "__bubble";
12557
12557
  JSCompiler_inline_result.has(listenerSetKey) ||
12558
- (addTrappedEventListener(targetElement, domEventName, 2, !1),
12558
+ (addTrappedEventListener(targetElement, domEventName, 2, false),
12559
12559
  JSCompiler_inline_result.add(listenerSetKey));
12560
12560
  }
12561
12561
  function listenToNativeEvent(domEventName, isCapturePhaseListener, target) {
@@ -12571,12 +12571,12 @@ function requireReactDomClient_production () {
12571
12571
  var listeningMarker = "_reactListening" + Math.random().toString(36).slice(2);
12572
12572
  function listenToAllSupportedEvents(rootContainerElement) {
12573
12573
  if (!rootContainerElement[listeningMarker]) {
12574
- rootContainerElement[listeningMarker] = !0;
12574
+ rootContainerElement[listeningMarker] = true;
12575
12575
  allNativeEvents.forEach(function (domEventName) {
12576
12576
  "selectionchange" !== domEventName &&
12577
12577
  (nonDelegatedEvents.has(domEventName) ||
12578
- listenToNativeEvent(domEventName, !1, rootContainerElement),
12579
- listenToNativeEvent(domEventName, !0, rootContainerElement));
12578
+ listenToNativeEvent(domEventName, false, rootContainerElement),
12579
+ listenToNativeEvent(domEventName, true, rootContainerElement));
12580
12580
  });
12581
12581
  var ownerDocument =
12582
12582
  9 === rootContainerElement.nodeType
@@ -12584,8 +12584,8 @@ function requireReactDomClient_production () {
12584
12584
  : rootContainerElement.ownerDocument;
12585
12585
  null === ownerDocument ||
12586
12586
  ownerDocument[listeningMarker] ||
12587
- ((ownerDocument[listeningMarker] = !0),
12588
- listenToNativeEvent("selectionchange", !1, ownerDocument));
12587
+ ((ownerDocument[listeningMarker] = true),
12588
+ listenToNativeEvent("selectionchange", false, ownerDocument));
12589
12589
  }
12590
12590
  }
12591
12591
  function addTrappedEventListener(
@@ -12610,24 +12610,24 @@ function requireReactDomClient_production () {
12610
12610
  eventSystemFlags,
12611
12611
  targetContainer
12612
12612
  );
12613
- listenerWrapper = void 0;
12613
+ listenerWrapper = undefined;
12614
12614
  !passiveBrowserEventsSupported ||
12615
12615
  ("touchstart" !== domEventName &&
12616
12616
  "touchmove" !== domEventName &&
12617
12617
  "wheel" !== domEventName) ||
12618
- (listenerWrapper = !0);
12618
+ (listenerWrapper = true);
12619
12619
  isCapturePhaseListener
12620
- ? void 0 !== listenerWrapper
12620
+ ? undefined !== listenerWrapper
12621
12621
  ? targetContainer.addEventListener(domEventName, eventSystemFlags, {
12622
- capture: !0,
12622
+ capture: true,
12623
12623
  passive: listenerWrapper
12624
12624
  })
12625
- : targetContainer.addEventListener(domEventName, eventSystemFlags, !0)
12626
- : void 0 !== listenerWrapper
12625
+ : targetContainer.addEventListener(domEventName, eventSystemFlags, true)
12626
+ : undefined !== listenerWrapper
12627
12627
  ? targetContainer.addEventListener(domEventName, eventSystemFlags, {
12628
12628
  passive: listenerWrapper
12629
12629
  })
12630
- : targetContainer.addEventListener(domEventName, eventSystemFlags, !1);
12630
+ : targetContainer.addEventListener(domEventName, eventSystemFlags, false);
12631
12631
  }
12632
12632
  function dispatchEventForPluginEventSystem(
12633
12633
  domEventName,
@@ -13184,7 +13184,7 @@ function requireReactDomClient_production () {
13184
13184
  }
13185
13185
  function checkForUnmatchedText(serverText, clientText) {
13186
13186
  clientText = normalizeMarkupForTextOrAttribute(clientText);
13187
- return normalizeMarkupForTextOrAttribute(serverText) === clientText ? !0 : !1;
13187
+ return normalizeMarkupForTextOrAttribute(serverText) === clientText ? true : false;
13188
13188
  }
13189
13189
  function noop$1() {}
13190
13190
  function setProp(domElement, tag, key, value, props, prevValue) {
@@ -13383,9 +13383,9 @@ function requireReactDomClient_production () {
13383
13383
  break;
13384
13384
  case "capture":
13385
13385
  case "download":
13386
- !0 === value
13386
+ true === value
13387
13387
  ? domElement.setAttribute(key, "")
13388
- : !1 !== value &&
13388
+ : false !== value &&
13389
13389
  null != value &&
13390
13390
  "function" !== typeof value &&
13391
13391
  "symbol" !== typeof value
@@ -13552,7 +13552,7 @@ function requireReactDomClient_production () {
13552
13552
  "o" === key[0] &&
13553
13553
  "n" === key[1] &&
13554
13554
  ((props = key.endsWith("Capture")),
13555
- (tag = key.slice(2, props ? key.length - 7 : void 0)),
13555
+ (tag = key.slice(2, props ? key.length - 7 : undefined)),
13556
13556
  (prevValue = domElement[internalPropsKey] || null),
13557
13557
  (prevValue = null != prevValue ? prevValue[key] : null),
13558
13558
  "function" === typeof prevValue &&
@@ -13570,7 +13570,7 @@ function requireReactDomClient_production () {
13570
13570
  }
13571
13571
  key in domElement
13572
13572
  ? (domElement[key] = value)
13573
- : !0 === value
13573
+ : true === value
13574
13574
  ? domElement.setAttribute(key, "")
13575
13575
  : setValueForAttribute(domElement, key, value);
13576
13576
  }
@@ -13590,8 +13590,8 @@ function requireReactDomClient_production () {
13590
13590
  case "img":
13591
13591
  listenToNonDelegatedEvent("error", domElement);
13592
13592
  listenToNonDelegatedEvent("load", domElement);
13593
- var hasSrc = !1,
13594
- hasSrcSet = !1,
13593
+ var hasSrc = false,
13594
+ hasSrcSet = false,
13595
13595
  propKey;
13596
13596
  for (propKey in props)
13597
13597
  if (props.hasOwnProperty(propKey)) {
@@ -13599,10 +13599,10 @@ function requireReactDomClient_production () {
13599
13599
  if (null != propValue)
13600
13600
  switch (propKey) {
13601
13601
  case "src":
13602
- hasSrc = !0;
13602
+ hasSrc = true;
13603
13603
  break;
13604
13604
  case "srcSet":
13605
- hasSrcSet = !0;
13605
+ hasSrcSet = true;
13606
13606
  break;
13607
13607
  case "children":
13608
13608
  case "dangerouslySetInnerHTML":
@@ -13660,7 +13660,7 @@ function requireReactDomClient_production () {
13660
13660
  defaultChecked,
13661
13661
  propValue,
13662
13662
  hasSrcSet,
13663
- !1
13663
+ false
13664
13664
  );
13665
13665
  track(domElement);
13666
13666
  return;
@@ -13688,8 +13688,8 @@ function requireReactDomClient_production () {
13688
13688
  props = propValue;
13689
13689
  domElement.multiple = !!hasSrc;
13690
13690
  null != tag
13691
- ? updateOptions(domElement, !!hasSrc, tag, !1)
13692
- : null != props && updateOptions(domElement, !!hasSrc, props, !0);
13691
+ ? updateOptions(domElement, !!hasSrc, tag, false)
13692
+ : null != props && updateOptions(domElement, !!hasSrc, props, true);
13693
13693
  return;
13694
13694
  case "textarea":
13695
13695
  listenToNonDelegatedEvent("invalid", domElement);
@@ -13789,14 +13789,14 @@ function requireReactDomClient_production () {
13789
13789
  for (propValue$186 in props)
13790
13790
  props.hasOwnProperty(propValue$186) &&
13791
13791
  ((hasSrc = props[propValue$186]),
13792
- void 0 !== hasSrc &&
13792
+ undefined !== hasSrc &&
13793
13793
  setPropOnCustomElement(
13794
13794
  domElement,
13795
13795
  tag,
13796
13796
  propValue$186,
13797
13797
  hasSrc,
13798
13798
  props,
13799
- void 0
13799
+ undefined
13800
13800
  ));
13801
13801
  return;
13802
13802
  }
@@ -13949,11 +13949,11 @@ function requireReactDomClient_production () {
13949
13949
  lastProps = value;
13950
13950
  nextProps = propKey;
13951
13951
  null != propKey$203
13952
- ? updateOptions(domElement, !!lastProps, propKey$203, !1)
13952
+ ? updateOptions(domElement, !!lastProps, propKey$203, false)
13953
13953
  : !!nextProps !== !!lastProps &&
13954
13954
  (null != tag
13955
- ? updateOptions(domElement, !!lastProps, tag, !0)
13956
- : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
13955
+ ? updateOptions(domElement, !!lastProps, tag, true)
13956
+ : updateOptions(domElement, !!lastProps, lastProps ? [] : "", false));
13957
13957
  return;
13958
13958
  case "textarea":
13959
13959
  propKey = propKey$203 = null;
@@ -14006,7 +14006,7 @@ function requireReactDomClient_production () {
14006
14006
  )
14007
14007
  switch (propKey$219) {
14008
14008
  case "selected":
14009
- domElement.selected = !1;
14009
+ domElement.selected = false;
14010
14010
  break;
14011
14011
  default:
14012
14012
  setProp(
@@ -14095,13 +14095,13 @@ function requireReactDomClient_production () {
14095
14095
  for (var propKey$229 in lastProps)
14096
14096
  (propKey$203 = lastProps[propKey$229]),
14097
14097
  lastProps.hasOwnProperty(propKey$229) &&
14098
- void 0 !== propKey$203 &&
14098
+ undefined !== propKey$203 &&
14099
14099
  !nextProps.hasOwnProperty(propKey$229) &&
14100
14100
  setPropOnCustomElement(
14101
14101
  domElement,
14102
14102
  tag,
14103
14103
  propKey$229,
14104
- void 0,
14104
+ undefined,
14105
14105
  nextProps,
14106
14106
  propKey$203
14107
14107
  );
@@ -14110,7 +14110,7 @@ function requireReactDomClient_production () {
14110
14110
  (propKey = lastProps[defaultChecked]),
14111
14111
  !nextProps.hasOwnProperty(defaultChecked) ||
14112
14112
  propKey$203 === propKey ||
14113
- (void 0 === propKey$203 && void 0 === propKey) ||
14113
+ (undefined === propKey$203 && undefined === propKey) ||
14114
14114
  setPropOnCustomElement(
14115
14115
  domElement,
14116
14116
  tag,
@@ -14183,16 +14183,16 @@ function requireReactDomClient_production () {
14183
14183
  function shouldAttemptEagerTransition() {
14184
14184
  var event = window.event;
14185
14185
  if (event && "popstate" === event.type) {
14186
- if (event === currentPopstateTransitionEvent) return !1;
14186
+ if (event === currentPopstateTransitionEvent) return false;
14187
14187
  currentPopstateTransitionEvent = event;
14188
- return !0;
14188
+ return true;
14189
14189
  }
14190
14190
  currentPopstateTransitionEvent = null;
14191
- return !1;
14191
+ return false;
14192
14192
  }
14193
- var scheduleTimeout = "function" === typeof setTimeout ? setTimeout : void 0,
14194
- cancelTimeout = "function" === typeof clearTimeout ? clearTimeout : void 0,
14195
- localPromise = "function" === typeof Promise ? Promise : void 0,
14193
+ var scheduleTimeout = "function" === typeof setTimeout ? setTimeout : undefined,
14194
+ cancelTimeout = "function" === typeof clearTimeout ? clearTimeout : undefined,
14195
+ localPromise = "function" === typeof Promise ? Promise : undefined,
14196
14196
  scheduleMicrotask =
14197
14197
  "function" === typeof queueMicrotask
14198
14198
  ? queueMicrotask
@@ -14482,7 +14482,7 @@ function requireReactDomClient_production () {
14482
14482
  {
14483
14483
  rel: "preload",
14484
14484
  href:
14485
- "image" === as && options && options.imageSrcSet ? void 0 : href,
14485
+ "image" === as && options && options.imageSrcSet ? undefined : href,
14486
14486
  as: as
14487
14487
  },
14488
14488
  options
@@ -14602,7 +14602,7 @@ function requireReactDomClient_production () {
14602
14602
  resource ||
14603
14603
  ((resource = ownerDocument.querySelector(getScriptSelectorFromKey(key))),
14604
14604
  resource ||
14605
- ((src = assign({ src: src, async: !0 }, options)),
14605
+ ((src = assign({ src: src, async: true }, options)),
14606
14606
  (options = preloadPropsMap.get(key)) &&
14607
14607
  adoptPreloadPropsForScript(src, options),
14608
14608
  (resource = ownerDocument.createElement("script")),
@@ -14628,7 +14628,7 @@ function requireReactDomClient_production () {
14628
14628
  resource ||
14629
14629
  ((resource = ownerDocument.querySelector(getScriptSelectorFromKey(key))),
14630
14630
  resource ||
14631
- ((src = assign({ src: src, async: !0, type: "module" }, options)),
14631
+ ((src = assign({ src: src, async: true, type: "module" }, options)),
14632
14632
  (options = preloadPropsMap.get(key)) &&
14633
14633
  adoptPreloadPropsForScript(src, options),
14634
14634
  (resource = ownerDocument.createElement("script")),
@@ -14952,11 +14952,11 @@ function requireReactDomClient_production () {
14952
14952
  );
14953
14953
  }
14954
14954
  function isHostHoistableType(type, props, hostContext) {
14955
- if (1 === hostContext || null != props.itemProp) return !1;
14955
+ if (1 === hostContext || null != props.itemProp) return false;
14956
14956
  switch (type) {
14957
14957
  case "meta":
14958
14958
  case "title":
14959
- return !0;
14959
+ return true;
14960
14960
  case "style":
14961
14961
  if (
14962
14962
  "string" !== typeof props.precedence ||
@@ -14964,7 +14964,7 @@ function requireReactDomClient_production () {
14964
14964
  "" === props.href
14965
14965
  )
14966
14966
  break;
14967
- return !0;
14967
+ return true;
14968
14968
  case "link":
14969
14969
  if (
14970
14970
  "string" !== typeof props.rel ||
@@ -14981,7 +14981,7 @@ function requireReactDomClient_production () {
14981
14981
  "string" === typeof props.precedence && null == type
14982
14982
  );
14983
14983
  default:
14984
- return !0;
14984
+ return true;
14985
14985
  }
14986
14986
  case "script":
14987
14987
  if (
@@ -14993,14 +14993,14 @@ function requireReactDomClient_production () {
14993
14993
  props.src &&
14994
14994
  "string" === typeof props.src
14995
14995
  )
14996
- return !0;
14996
+ return true;
14997
14997
  }
14998
- return !1;
14998
+ return false;
14999
14999
  }
15000
15000
  function preloadResource(resource) {
15001
15001
  return "stylesheet" === resource.type && 0 === (resource.state.loading & 3)
15002
- ? !1
15003
- : !0;
15002
+ ? false
15003
+ : true;
15004
15004
  }
15005
15005
  var suspendedState = null;
15006
15006
  function noop() {}
@@ -15010,7 +15010,7 @@ function requireReactDomClient_production () {
15010
15010
  if (
15011
15011
  "stylesheet" === resource.type &&
15012
15012
  ("string" !== typeof props.media ||
15013
- !1 !== matchMedia(props.media).matches) &&
15013
+ false !== matchMedia(props.media).matches) &&
15014
15014
  0 === (resource.state.loading & 4)
15015
15015
  ) {
15016
15016
  if (null === resource.instance) {
@@ -15220,7 +15220,7 @@ function requireReactDomClient_production () {
15220
15220
  formState
15221
15221
  );
15222
15222
  tag = 1;
15223
- !0 === isStrictMode && (tag |= 24);
15223
+ true === isStrictMode && (tag |= 24);
15224
15224
  isStrictMode = createFiberImplClass(3, null, null, tag);
15225
15225
  containerInfo.current = isStrictMode;
15226
15226
  isStrictMode.stateNode = containerInfo;
@@ -15255,7 +15255,7 @@ function requireReactDomClient_production () {
15255
15255
  : (container.pendingContext = parentComponent);
15256
15256
  container = createUpdate(lane);
15257
15257
  container.payload = { element: element };
15258
- callback = void 0 === callback ? null : callback;
15258
+ callback = undefined === callback ? null : callback;
15259
15259
  null !== callback && (container.callback = callback);
15260
15260
  element = enqueueUpdate(rootFiber, container, lane);
15261
15261
  null !== element &&
@@ -15280,7 +15280,7 @@ function requireReactDomClient_production () {
15280
15280
  markRetryLaneIfNotHydrated(fiber, 67108864);
15281
15281
  }
15282
15282
  }
15283
- var _enabled = !0;
15283
+ var _enabled = true;
15284
15284
  function dispatchDiscreteEvent(
15285
15285
  domEventName,
15286
15286
  eventSystemFlags,
@@ -15521,7 +15521,7 @@ function requireReactDomClient_production () {
15521
15521
  return 32;
15522
15522
  }
15523
15523
  }
15524
- var hasScheduledReplayAttempt = !1,
15524
+ var hasScheduledReplayAttempt = false,
15525
15525
  queuedFocus = null,
15526
15526
  queuedDrag = null,
15527
15527
  queuedMouse = null,
@@ -15605,7 +15605,7 @@ function requireReactDomClient_production () {
15605
15605
  targetContainer,
15606
15606
  nativeEvent
15607
15607
  )),
15608
- !0
15608
+ true
15609
15609
  );
15610
15610
  case "dragenter":
15611
15611
  return (
@@ -15617,7 +15617,7 @@ function requireReactDomClient_production () {
15617
15617
  targetContainer,
15618
15618
  nativeEvent
15619
15619
  )),
15620
- !0
15620
+ true
15621
15621
  );
15622
15622
  case "mouseover":
15623
15623
  return (
@@ -15629,7 +15629,7 @@ function requireReactDomClient_production () {
15629
15629
  targetContainer,
15630
15630
  nativeEvent
15631
15631
  )),
15632
- !0
15632
+ true
15633
15633
  );
15634
15634
  case "pointerover":
15635
15635
  var pointerId = nativeEvent.pointerId;
@@ -15644,7 +15644,7 @@ function requireReactDomClient_production () {
15644
15644
  nativeEvent
15645
15645
  )
15646
15646
  );
15647
- return !0;
15647
+ return true;
15648
15648
  case "gotpointercapture":
15649
15649
  return (
15650
15650
  (pointerId = nativeEvent.pointerId),
@@ -15659,10 +15659,10 @@ function requireReactDomClient_production () {
15659
15659
  nativeEvent
15660
15660
  )
15661
15661
  ),
15662
- !0
15662
+ true
15663
15663
  );
15664
15664
  }
15665
- return !1;
15665
+ return false;
15666
15666
  }
15667
15667
  function attemptExplicitHydrationTarget(queuedTarget) {
15668
15668
  var targetInst = getClosestInstanceFromNode(queuedTarget.target);
@@ -15700,7 +15700,7 @@ function requireReactDomClient_production () {
15700
15700
  queuedTarget.blockedOn = null;
15701
15701
  }
15702
15702
  function attemptReplayContinuousQueuedEvent(queuedEvent) {
15703
- if (null !== queuedEvent.blockedOn) return !1;
15703
+ if (null !== queuedEvent.blockedOn) return false;
15704
15704
  for (
15705
15705
  var targetContainers = queuedEvent.targetContainers;
15706
15706
  0 < targetContainers.length;
@@ -15722,17 +15722,17 @@ function requireReactDomClient_production () {
15722
15722
  null !== targetContainers &&
15723
15723
  attemptContinuousHydration(targetContainers),
15724
15724
  (queuedEvent.blockedOn = nextBlockedOn),
15725
- !1
15725
+ false
15726
15726
  );
15727
15727
  targetContainers.shift();
15728
15728
  }
15729
- return !0;
15729
+ return true;
15730
15730
  }
15731
15731
  function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {
15732
15732
  attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);
15733
15733
  }
15734
15734
  function replayUnblockedEvents() {
15735
- hasScheduledReplayAttempt = !1;
15735
+ hasScheduledReplayAttempt = false;
15736
15736
  null !== queuedFocus &&
15737
15737
  attemptReplayContinuousQueuedEvent(queuedFocus) &&
15738
15738
  (queuedFocus = null);
@@ -15749,7 +15749,7 @@ function requireReactDomClient_production () {
15749
15749
  queuedEvent.blockedOn === unblocked &&
15750
15750
  ((queuedEvent.blockedOn = null),
15751
15751
  hasScheduledReplayAttempt ||
15752
- ((hasScheduledReplayAttempt = !0),
15752
+ ((hasScheduledReplayAttempt = true),
15753
15753
  Scheduler.unstable_scheduleCallback(
15754
15754
  Scheduler.unstable_NormalPriority,
15755
15755
  replayUnblockedEvents
@@ -15779,7 +15779,7 @@ function requireReactDomClient_production () {
15779
15779
  startHostTransition(
15780
15780
  formInst,
15781
15781
  {
15782
- pending: !0,
15782
+ pending: true,
15783
15783
  data: formData,
15784
15784
  method: form.method,
15785
15785
  action: submitterOrAction
@@ -15894,7 +15894,7 @@ function requireReactDomClient_production () {
15894
15894
  );
15895
15895
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15896
15896
  var fiber = componentOrElement._reactInternals;
15897
- if (void 0 === fiber) {
15897
+ if (undefined === fiber) {
15898
15898
  if ("function" === typeof componentOrElement.render)
15899
15899
  throw Error(formatProdErrorMessage(188));
15900
15900
  componentOrElement = Object.keys(componentOrElement).join(",");
@@ -15932,28 +15932,28 @@ function requireReactDomClient_production () {
15932
15932
  }
15933
15933
  reactDomClient_production.createRoot = function (container, options) {
15934
15934
  if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15935
- var isStrictMode = !1,
15935
+ var isStrictMode = false,
15936
15936
  identifierPrefix = "",
15937
15937
  onUncaughtError = defaultOnUncaughtError,
15938
15938
  onCaughtError = defaultOnCaughtError,
15939
15939
  onRecoverableError = defaultOnRecoverableError,
15940
15940
  transitionCallbacks = null;
15941
15941
  null !== options &&
15942
- void 0 !== options &&
15943
- (!0 === options.unstable_strictMode && (isStrictMode = !0),
15944
- void 0 !== options.identifierPrefix &&
15942
+ undefined !== options &&
15943
+ (true === options.unstable_strictMode && (isStrictMode = true),
15944
+ undefined !== options.identifierPrefix &&
15945
15945
  (identifierPrefix = options.identifierPrefix),
15946
- void 0 !== options.onUncaughtError &&
15946
+ undefined !== options.onUncaughtError &&
15947
15947
  (onUncaughtError = options.onUncaughtError),
15948
- void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15949
- void 0 !== options.onRecoverableError &&
15948
+ undefined !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15949
+ undefined !== options.onRecoverableError &&
15950
15950
  (onRecoverableError = options.onRecoverableError),
15951
- void 0 !== options.unstable_transitionCallbacks &&
15951
+ undefined !== options.unstable_transitionCallbacks &&
15952
15952
  (transitionCallbacks = options.unstable_transitionCallbacks));
15953
15953
  options = createFiberRoot(
15954
15954
  container,
15955
15955
  1,
15956
- !1,
15956
+ false,
15957
15957
  null,
15958
15958
  null,
15959
15959
  isStrictMode,
@@ -15972,7 +15972,7 @@ function requireReactDomClient_production () {
15972
15972
  };
15973
15973
  reactDomClient_production.hydrateRoot = function (container, initialChildren, options) {
15974
15974
  if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));
15975
- var isStrictMode = !1,
15975
+ var isStrictMode = false,
15976
15976
  identifierPrefix = "",
15977
15977
  onUncaughtError = defaultOnUncaughtError,
15978
15978
  onCaughtError = defaultOnCaughtError,
@@ -15980,22 +15980,22 @@ function requireReactDomClient_production () {
15980
15980
  transitionCallbacks = null,
15981
15981
  formState = null;
15982
15982
  null !== options &&
15983
- void 0 !== options &&
15984
- (!0 === options.unstable_strictMode && (isStrictMode = !0),
15985
- void 0 !== options.identifierPrefix &&
15983
+ undefined !== options &&
15984
+ (true === options.unstable_strictMode && (isStrictMode = true),
15985
+ undefined !== options.identifierPrefix &&
15986
15986
  (identifierPrefix = options.identifierPrefix),
15987
- void 0 !== options.onUncaughtError &&
15987
+ undefined !== options.onUncaughtError &&
15988
15988
  (onUncaughtError = options.onUncaughtError),
15989
- void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15990
- void 0 !== options.onRecoverableError &&
15989
+ undefined !== options.onCaughtError && (onCaughtError = options.onCaughtError),
15990
+ undefined !== options.onRecoverableError &&
15991
15991
  (onRecoverableError = options.onRecoverableError),
15992
- void 0 !== options.unstable_transitionCallbacks &&
15992
+ undefined !== options.unstable_transitionCallbacks &&
15993
15993
  (transitionCallbacks = options.unstable_transitionCallbacks),
15994
- void 0 !== options.formState && (formState = options.formState));
15994
+ undefined !== options.formState && (formState = options.formState));
15995
15995
  initialChildren = createFiberRoot(
15996
15996
  container,
15997
15997
  1,
15998
- !0,
15998
+ true,
15999
15999
  initialChildren,
16000
16000
  null != options ? options : null,
16001
16001
  isStrictMode,