Socket
Socket
Sign inDemoInstall

react

Package Overview
Dependencies
2
Maintainers
4
Versions
1742
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-experimental-596827f6a-20240205 to 0.0.0-experimental-59831c98c-20240218

jsx-runtime.react-server.js

73

cjs/react-jsx-dev-runtime.development.js

@@ -28,5 +28,6 @@ /**

var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); // TODO: Delete with enableRenderableContext
var REACT_CONSUMER_TYPE = Symbol.for('react.consumer');
var REACT_CONTEXT_TYPE = Symbol.for('react.context');
var REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context');
var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');

@@ -100,2 +101,3 @@ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');

var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
var enableRenderableContext = false;
// stuff. Intended to enable React core members to more easily debug scheduling

@@ -118,3 +120,3 @@ // issues in DEV builds.

if (typeof type === 'object' && type !== null) {
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || enableRenderableContext || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
// types supported by any Flight configuration anywhere since

@@ -202,10 +204,20 @@ // we don't know which Flight build this will end up being used

switch (type.$$typeof) {
case REACT_PROVIDER_TYPE:
{
var provider = type;
return getContextName(provider._context) + '.Provider';
}
case REACT_CONTEXT_TYPE:
var context = type;
return getContextName(context) + '.Consumer';
case REACT_PROVIDER_TYPE:
var provider = type;
return getContextName(provider._context) + '.Provider';
{
return getContextName(context) + '.Consumer';
}
case REACT_CONSUMER_TYPE:
{
return null;
}
case REACT_FORWARD_REF_TYPE:

@@ -235,9 +247,2 @@ return getWrappedName(type, type.render, 'ForwardRef');

}
case REACT_SERVER_CONTEXT_TYPE:
{
var context2 = type;
return (context2.displayName || context2._globalName) + '.Provider';
}
}

@@ -347,3 +352,3 @@ }

var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{

@@ -612,3 +617,3 @@ if (prefix === undefined) {

}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{

@@ -624,3 +629,3 @@ return describeNativeComponentFrame(fn, false);

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

@@ -656,3 +661,3 @@ if (type == null) {

// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

@@ -667,3 +672,3 @@ case REACT_LAZY_TYPE:

// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}

@@ -687,3 +692,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);

@@ -820,8 +825,2 @@ } else {

var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
var specialPropKeyWarningShown;

@@ -962,17 +961,9 @@ var specialPropRefWarningShown;

value: false
}); // self and source are DEV only properties.
}); // debugInfo contains Server Component debug information.
Object.defineProperty(element, '_self', {
Object.defineProperty(element, '_debugInfo', {
configurable: false,
enumerable: false,
writable: false,
value: self
}); // Two elements created in two different places should be considered
// equal for testing purposes and therefore we hide it from enumeration.
Object.defineProperty(element, '_source', {
configurable: false,
enumerable: false,
writable: false,
value: source
writable: true,
value: null
});

@@ -1031,3 +1022,5 @@

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -1072,3 +1065,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);

@@ -1075,0 +1068,0 @@ } else {

@@ -28,5 +28,6 @@ /**

var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); // TODO: Delete with enableRenderableContext
var REACT_CONSUMER_TYPE = Symbol.for('react.consumer');
var REACT_CONTEXT_TYPE = Symbol.for('react.context');
var REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context');
var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');

@@ -100,2 +101,3 @@ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');

var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
var enableRenderableContext = false;
// stuff. Intended to enable React core members to more easily debug scheduling

@@ -118,3 +120,3 @@ // issues in DEV builds.

if (typeof type === 'object' && type !== null) {
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || enableRenderableContext || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
// types supported by any Flight configuration anywhere since

@@ -202,10 +204,20 @@ // we don't know which Flight build this will end up being used

switch (type.$$typeof) {
case REACT_PROVIDER_TYPE:
{
var provider = type;
return getContextName(provider._context) + '.Provider';
}
case REACT_CONTEXT_TYPE:
var context = type;
return getContextName(context) + '.Consumer';
case REACT_PROVIDER_TYPE:
var provider = type;
return getContextName(provider._context) + '.Provider';
{
return getContextName(context) + '.Consumer';
}
case REACT_CONSUMER_TYPE:
{
return null;
}
case REACT_FORWARD_REF_TYPE:

@@ -235,9 +247,2 @@ return getWrappedName(type, type.render, 'ForwardRef');

}
case REACT_SERVER_CONTEXT_TYPE:
{
var context2 = type;
return (context2.displayName || context2._globalName) + '.Provider';
}
}

@@ -347,3 +352,3 @@ }

var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{

@@ -612,3 +617,3 @@ if (prefix === undefined) {

}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{

@@ -624,3 +629,3 @@ return describeNativeComponentFrame(fn, false);

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

@@ -656,3 +661,3 @@ if (type == null) {

// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

@@ -667,3 +672,3 @@ case REACT_LAZY_TYPE:

// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}

@@ -687,3 +692,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);

@@ -820,8 +825,2 @@ } else {

var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
var specialPropKeyWarningShown;

@@ -962,17 +961,9 @@ var specialPropRefWarningShown;

value: false
}); // self and source are DEV only properties.
}); // debugInfo contains Server Component debug information.
Object.defineProperty(element, '_self', {
Object.defineProperty(element, '_debugInfo', {
configurable: false,
enumerable: false,
writable: false,
value: self
}); // Two elements created in two different places should be considered
// equal for testing purposes and therefore we hide it from enumeration.
Object.defineProperty(element, '_source', {
configurable: false,
enumerable: false,
writable: false,
value: source
writable: true,
value: null
});

@@ -1031,3 +1022,5 @@

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -1072,3 +1065,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);

@@ -1075,0 +1068,0 @@ } else {

@@ -28,8 +28,2 @@ /**

const ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
const RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};

@@ -118,3 +112,5 @@ function hasValidRef(config) {

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -121,0 +117,0 @@ }

@@ -10,5 +10,5 @@ /*

*/
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};
function q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner;
function p(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&"key"!==b&&"ref"!==b&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=p;exports.jsxs=p;
//# sourceMappingURL=react-jsx-runtime.production.min.js.map

@@ -28,8 +28,2 @@ /**

const ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
const RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};

@@ -118,3 +112,5 @@ function hasValidRef(config) {

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -121,0 +117,0 @@ }

@@ -10,5 +10,5 @@ /*

*/
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};
function q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner;
function p(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&"key"!==b&&"ref"!==b&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=p;exports.jsxs=p;
//# sourceMappingURL=react-jsx-runtime.profiling.min.js.map

@@ -28,5 +28,6 @@ /**

var REACT_PROFILER_TYPE = Symbol.for('react.profiler');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider');
var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); // TODO: Delete with enableRenderableContext
var REACT_CONSUMER_TYPE = Symbol.for('react.consumer');
var REACT_CONTEXT_TYPE = Symbol.for('react.context');
var REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context');
var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');

@@ -100,2 +101,3 @@ var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');

var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber
var enableRenderableContext = false;
// stuff. Intended to enable React core members to more easily debug scheduling

@@ -118,3 +120,3 @@ // issues in DEV builds.

if (typeof type === 'object' && type !== null) {
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || enableRenderableContext || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
// types supported by any Flight configuration anywhere since

@@ -202,10 +204,20 @@ // we don't know which Flight build this will end up being used

switch (type.$$typeof) {
case REACT_PROVIDER_TYPE:
{
var provider = type;
return getContextName(provider._context) + '.Provider';
}
case REACT_CONTEXT_TYPE:
var context = type;
return getContextName(context) + '.Consumer';
case REACT_PROVIDER_TYPE:
var provider = type;
return getContextName(provider._context) + '.Provider';
{
return getContextName(context) + '.Consumer';
}
case REACT_CONSUMER_TYPE:
{
return null;
}
case REACT_FORWARD_REF_TYPE:

@@ -235,9 +247,2 @@ return getWrappedName(type, type.render, 'ForwardRef');

}
case REACT_SERVER_CONTEXT_TYPE:
{
var context2 = type;
return (context2.displayName || context2._globalName) + '.Provider';
}
}

@@ -347,3 +352,3 @@ }

var prefix;
function describeBuiltInComponentFrame(name, source, ownerFn) {
function describeBuiltInComponentFrame(name, ownerFn) {
{

@@ -612,3 +617,3 @@ if (prefix === undefined) {

}
function describeFunctionComponentFrame(fn, source, ownerFn) {
function describeFunctionComponentFrame(fn, ownerFn) {
{

@@ -624,3 +629,3 @@ return describeNativeComponentFrame(fn, false);

function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
function describeUnknownElementTypeFrameInDEV(type, ownerFn) {

@@ -656,3 +661,3 @@ if (type == null) {

// Memo may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
return describeUnknownElementTypeFrameInDEV(type.type, ownerFn);

@@ -667,3 +672,3 @@ case REACT_LAZY_TYPE:

// Lazy may contain any component type so we recursively resolve it.
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
return describeUnknownElementTypeFrameInDEV(init(payload), ownerFn);
} catch (x) {}

@@ -687,3 +692,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);

@@ -820,8 +825,2 @@ } else {

var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
var RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
var specialPropKeyWarningShown;

@@ -962,17 +961,9 @@ var specialPropRefWarningShown;

value: false
}); // self and source are DEV only properties.
}); // debugInfo contains Server Component debug information.
Object.defineProperty(element, '_self', {
Object.defineProperty(element, '_debugInfo', {
configurable: false,
enumerable: false,
writable: false,
value: self
}); // Two elements created in two different places should be considered
// equal for testing purposes and therefore we hide it from enumeration.
Object.defineProperty(element, '_source', {
configurable: false,
enumerable: false,
writable: false,
value: source
writable: true,
value: null
});

@@ -1031,3 +1022,5 @@

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -1072,3 +1065,3 @@ }

var owner = element._owner;
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
var stack = describeUnknownElementTypeFrameInDEV(element.type, owner ? owner.type : null);
ReactDebugCurrentFrame.setExtraStackFrame(stack);

@@ -1075,0 +1068,0 @@ } else {

@@ -28,8 +28,2 @@ /**

const ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
const RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};

@@ -118,3 +112,5 @@ function hasValidRef(config) {

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref') {
props[propName] = config[propName];

@@ -121,0 +117,0 @@ }

@@ -10,5 +10,5 @@ /*

*/
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};
function q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;
'use strict';var f=require("react"),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner;
function p(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&"key"!==b&&"ref"!==b&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=p;exports.jsxs=p;
//# sourceMappingURL=react-jsx-runtime.react-server.production.min.js.map

@@ -13,3 +13,3 @@ /**

var ReactVersion = '18.3.0-experimental-596827f6a-20240205';
var ReactVersion = '18.3.0-experimental-59831c98c-20240218';

@@ -25,5 +25,4 @@ // ATTENTION

const REACT_PROFILER_TYPE = Symbol.for('react.profiler');
const REACT_PROVIDER_TYPE = Symbol.for('react.provider');
const REACT_PROVIDER_TYPE = Symbol.for('react.provider'); // TODO: Delete with enableRenderableContext
const REACT_CONTEXT_TYPE = Symbol.for('react.context');
const REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context');
const REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');

@@ -37,3 +36,2 @@ const REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');

const REACT_CACHE_TYPE = Symbol.for('react.cache');
const REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED = Symbol.for('react.default_value');
const REACT_POSTPONE_TYPE = Symbol.for('react.postpone');

@@ -248,9 +246,2 @@ const MAYBE_ITERATOR_SYMBOL = Symbol.iterator;

const RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
function hasValidRef(config) {

@@ -287,3 +278,3 @@

function ReactElement(type, key, ref, self, source, owner, props) {
function ReactElement(type, key, ref, owner, props) {
const element = {

@@ -308,2 +299,3 @@ // This tag allows us to uniquely identify this as a React Element

function createElement$1(type, config, children) {

@@ -315,4 +307,2 @@ let propName; // Reserved names are extracted

let ref = null;
let self = null;
let source = null;

@@ -327,9 +317,15 @@ if (config != null) {

key = '' + config.key;
}
} // Remaining properties are added to a new props object
self = config.__self === undefined ? null : config.__self;
source = config.__source === undefined ? null : config.__source; // Remaining properties are added to a new props object
for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref' && // ...and maybe these, too, though we currently rely on them for
// warnings and debug information in dev. Need to decide if we're OK
// with dropping them. In the jsx() runtime it's not an issue because
// the data gets passed as separate arguments instead of props, but
// it would be nice to stop relying on them entirely so we can drop
// them from the internal Fiber field.
propName !== '__self' && propName !== '__source') {
props[propName] = config[propName];

@@ -367,3 +363,3 @@ }

return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
return ReactElement(type, key, ref, ReactCurrentOwner.current, props);
}

@@ -386,3 +382,3 @@ /**

function cloneAndReplaceKey(oldElement, newKey) {
const newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);
const newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._owner, oldElement.props);
return newElement;

@@ -405,10 +401,4 @@ }

let key = element.key;
let ref = element.ref; // Self is preserved since the owner is preserved.
let ref = element.ref; // Owner will be preserved, unless ref is overridden
const self = element._self; // Source is preserved since cloneElement is unlikely to be targeted by a
// transpiler, and the original source is probably a better indicator of the
// true owner.
const source = element._source; // Owner will be preserved, unless ref is overridden
let owner = element._owner;

@@ -436,3 +426,11 @@

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref' && // ...and maybe these, too, though we currently rely on them for
// warnings and debug information in dev. Need to decide if we're OK
// with dropping them. In the jsx() runtime it's not an issue because
// the data gets passed as separate arguments instead of props, but
// it would be nice to stop relying on them entirely so we can drop
// them from the internal Fiber field.
propName !== '__self' && propName !== '__source') {
if (config[propName] === undefined && defaultProps !== undefined) {

@@ -464,3 +462,3 @@ // Resolve default props

return ReactElement(element.type, key, ref, self, source, owner, props);
return ReactElement(element.type, key, ref, owner, props);
}

@@ -501,4 +499,2 @@ /**

const ContextRegistry = {};
const ReactSharedInternals = {

@@ -511,6 +507,2 @@ ReactCurrentDispatcher,

{
ReactSharedInternals.ContextRegistry = ContextRegistry;
}
const createElement = createElement$1;

@@ -566,2 +558,68 @@ const cloneElement = cloneElement$1;

function noop$1() {}
function resolveThenable(thenable) {
switch (thenable.status) {
case 'fulfilled':
{
const fulfilledValue = thenable.value;
return fulfilledValue;
}
case 'rejected':
{
const rejectedError = thenable.reason;
throw rejectedError;
}
default:
{
if (typeof thenable.status === 'string') {
// Only instrument the thenable if the status if not defined. If
// it's defined, but an unknown value, assume it's been instrumented by
// some custom userspace implementation. We treat it as "pending".
// Attach a dummy listener, to ensure that any lazy initialization can
// happen. Flight lazily parses JSON when the value is actually awaited.
thenable.then(noop$1, noop$1);
} else {
// This is an uncached thenable that we haven't seen before.
// TODO: Detect infinite ping loops caused by uncached promises.
const pendingThenable = thenable;
pendingThenable.status = 'pending';
pendingThenable.then(fulfilledValue => {
if (thenable.status === 'pending') {
const fulfilledThenable = thenable;
fulfilledThenable.status = 'fulfilled';
fulfilledThenable.value = fulfilledValue;
}
}, error => {
if (thenable.status === 'pending') {
const rejectedThenable = thenable;
rejectedThenable.status = 'rejected';
rejectedThenable.reason = error;
}
});
} // Check one more time in case the thenable resolved synchronously.
switch (thenable.status) {
case 'fulfilled':
{
const fulfilledThenable = thenable;
return fulfilledThenable.value;
}
case 'rejected':
{
const rejectedThenable = thenable;
const rejectedError = rejectedThenable.reason;
throw rejectedError;
}
}
}
}
throw thenable;
}
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {

@@ -591,2 +649,8 @@ const type = typeof children;

invokeCallback = true;
break;
case REACT_LAZY_TYPE:
const payload = children._payload;
const init = children._init;
return mapIntoArray(init(payload), array, escapedPrefix, nameSoFar, callback);
}

@@ -657,3 +721,7 @@

} else if (type === 'object') {
// eslint-disable-next-line react-internal/safe-string-coercion
if (typeof children.then === 'function') {
return mapIntoArray(resolveThenable(children), array, escapedPrefix, nameSoFar, callback);
} // eslint-disable-next-line react-internal/safe-string-coercion
const childrenString = String(children);

@@ -784,14 +852,14 @@ throw new Error("Objects are not valid as a React child (found: " + (childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString) + "). " + 'If you meant to render a collection of children, use an array ' + 'instead.');

Provider: null,
Consumer: null,
// Add these to use same hidden class in VM as ServerContext
_defaultValue: null,
_globalName: null
Consumer: null
};
context.Provider = {
$$typeof: REACT_PROVIDER_TYPE,
_context: context
};
{
context.Consumer = context;
context.Provider = {
$$typeof: REACT_PROVIDER_TYPE,
_context: context
};
{
context.Consumer = context;
}
}

@@ -886,21 +954,109 @@

function cache(fn) {
// On the client (i.e. not a Server Components environment) `cache` has
// no caching behavior. We just return the function as-is.
//
// We intend to implement client caching in a future major release. In the
// meantime, it's only exposed as an API so that Shared Components can use
// per-request caching on the server without breaking on the client. But it
// does mean they need to be aware of the behavioral difference.
//
// The rest of the behavior is the same as the server implementation — it
// returns a new reference, extra properties like `displayName` are not
// preserved, the length of the new function is 0, etc. That way apps can't
// accidentally depend on those details.
const UNTERMINATED = 0;
const TERMINATED = 1;
const ERRORED = 2;
function createCacheRoot() {
return new WeakMap();
}
function createCacheNode() {
return {
s: UNTERMINATED,
// status, represents whether the cached computation returned a value or threw an error
v: undefined,
// value, either the cached result or an error, depending on s
o: null,
// object cache, a WeakMap where non-primitive arguments are stored
p: null // primitive cache, a regular Map where primitive arguments are stored.
};
}
function cache$1(fn) {
return function () {
// $FlowFixMe[incompatible-call]: We don't want to use rest arguments since we transpile the code.
return fn.apply(null, arguments);
const dispatcher = ReactCurrentCache.current;
if (!dispatcher) {
// If there is no dispatcher, then we treat this as not being cached.
// $FlowFixMe[incompatible-call]: We don't want to use rest arguments since we transpile the code.
return fn.apply(null, arguments);
}
const fnMap = dispatcher.getCacheForType(createCacheRoot);
const fnNode = fnMap.get(fn);
let cacheNode;
if (fnNode === undefined) {
cacheNode = createCacheNode();
fnMap.set(fn, cacheNode);
} else {
cacheNode = fnNode;
}
for (let i = 0, l = arguments.length; i < l; i++) {
const arg = arguments[i];
if (typeof arg === 'function' || typeof arg === 'object' && arg !== null) {
// Objects go into a WeakMap
let objectCache = cacheNode.o;
if (objectCache === null) {
cacheNode.o = objectCache = new WeakMap();
}
const objectNode = objectCache.get(arg);
if (objectNode === undefined) {
cacheNode = createCacheNode();
objectCache.set(arg, cacheNode);
} else {
cacheNode = objectNode;
}
} else {
// Primitives go into a regular Map
let primitiveCache = cacheNode.p;
if (primitiveCache === null) {
cacheNode.p = primitiveCache = new Map();
}
const primitiveNode = primitiveCache.get(arg);
if (primitiveNode === undefined) {
cacheNode = createCacheNode();
primitiveCache.set(arg, cacheNode);
} else {
cacheNode = primitiveNode;
}
}
}
if (cacheNode.s === TERMINATED) {
return cacheNode.v;
}
if (cacheNode.s === ERRORED) {
throw cacheNode.v;
}
try {
// $FlowFixMe[incompatible-call]: We don't want to use rest arguments since we transpile the code.
const result = fn.apply(null, arguments);
const terminatedNode = cacheNode;
terminatedNode.s = TERMINATED;
terminatedNode.v = result;
return result;
} catch (error) {
// We store the first error that's thrown and rethrow it.
const erroredNode = cacheNode;
erroredNode.s = ERRORED;
erroredNode.v = error;
throw error;
}
};
}
const cache = cache$1;
function postpone(reason) {

@@ -1034,53 +1190,2 @@ // eslint-disable-next-line react-internal/prod-error-codes

function createServerContext(globalName, defaultValue) {
let wasDefined = true;
if (!ContextRegistry[globalName]) {
wasDefined = false;
const context = {
$$typeof: REACT_SERVER_CONTEXT_TYPE,
// As a workaround to support multiple concurrent renderers, we categorize
// some renderers as primary and others as secondary. We only expect
// there to be two concurrent renderers at most: React Native (primary) and
// Fabric (secondary); React DOM (primary) and React ART (secondary).
// Secondary renderers store their context values on separate fields.
_currentValue: defaultValue,
_currentValue2: defaultValue,
_defaultValue: defaultValue,
// Used to track how many concurrent renderers this context currently
// supports within in a single renderer. Such as parallel server rendering.
_threadCount: 0,
// These are circular
Provider: null,
Consumer: null,
_globalName: globalName
};
context.Provider = {
$$typeof: REACT_PROVIDER_TYPE,
_context: context
};
ContextRegistry[globalName] = context;
}
const context = ContextRegistry[globalName];
if (context._defaultValue === REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED) {
context._defaultValue = defaultValue;
if (context._currentValue === REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED) {
context._currentValue = defaultValue;
}
if (context._currentValue2 === REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED) {
context._currentValue2 = defaultValue;
}
} else if (wasDefined) {
throw new Error("ServerContext: " + globalName + " already defined");
}
return context;
}
function startTransition(scope, options) {

@@ -1159,3 +1264,2 @@ const prevTransition = ReactCurrentBatchConfig.transition; // Each renderer registers a callback to receive the return value of

exports.createRef = createRef;
exports.createServerContext = createServerContext;
exports.experimental_useEffectEvent = useEffectEvent;

@@ -1162,0 +1266,0 @@ exports.experimental_useOptimistic = experimental_useOptimistic;

@@ -10,24 +10,26 @@ /*

*/
'use strict';var k=Symbol.for("react.element"),n=Symbol.for("react.portal"),p=Symbol.for("react.fragment"),q=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),t=Symbol.for("react.provider"),u=Symbol.for("react.context"),v=Symbol.for("react.server_context"),w=Symbol.for("react.forward_ref"),x=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),z=Symbol.for("react.memo"),A=Symbol.for("react.lazy"),aa=Symbol.for("react.debug_trace_mode"),ba=Symbol.for("react.offscreen"),ca=
Symbol.for("react.cache"),B=Symbol.for("react.default_value"),da=Symbol.for("react.postpone"),C=Symbol.iterator;function ea(a){if(null===a||"object"!==typeof a)return null;a=C&&a[C]||a["@@iterator"];return"function"===typeof a?a:null}var D={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},E=Object.assign,F={};function G(a,b,d){this.props=a;this.context=b;this.refs=F;this.updater=d||D}G.prototype.isReactComponent={};
G.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};G.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function H(){}H.prototype=G.prototype;function I(a,b,d){this.props=a;this.context=b;this.refs=F;this.updater=d||D}var J=I.prototype=new H;
J.constructor=I;E(J,G.prototype);J.isPureReactComponent=!0;var K=Array.isArray,L=Object.prototype.hasOwnProperty,M={current:null},N={key:!0,ref:!0,__self:!0,__source:!0};
function O(a,b,d){var c,e={},f=null,l=null;if(null!=b)for(c in void 0!==b.ref&&(l=b.ref),void 0!==b.key&&(f=""+b.key),b)L.call(b,c)&&!N.hasOwnProperty(c)&&(e[c]=b[c]);var h=arguments.length-2;if(1===h)e.children=d;else if(1<h){for(var g=Array(h),m=0;m<h;m++)g[m]=arguments[m+2];e.children=g}if(a&&a.defaultProps)for(c in h=a.defaultProps,h)void 0===e[c]&&(e[c]=h[c]);return{$$typeof:k,type:a,key:f,ref:l,props:e,_owner:M.current}}
function fa(a,b){return{$$typeof:k,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function P(a){return"object"===typeof a&&null!==a&&a.$$typeof===k}var Q={current:null},R={current:null},S={transition:null},T={},ha={ReactCurrentDispatcher:Q,ReactCurrentCache:R,ReactCurrentBatchConfig:S,ReactCurrentOwner:M,ContextRegistry:T};function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(d){return b[d]})}var U=/\/+/g;
function V(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function W(a,b,d,c,e){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var l=!1;if(null===a)l=!0;else switch(f){case "string":case "number":l=!0;break;case "object":switch(a.$$typeof){case k:case n:l=!0}}if(l)return l=a,e=e(l),a=""===c?"."+V(l,0):c,K(e)?(d="",null!=a&&(d=a.replace(U,"$&/")+"/"),W(e,b,d,"",function(m){return m})):null!=e&&(P(e)&&(e=fa(e,d+(!e.key||l&&l.key===e.key?"":(""+e.key).replace(U,"$&/")+"/")+a)),b.push(e)),1;l=0;c=""===c?".":c+":";if(K(a))for(var h=0;h<a.length;h++){f=
a[h];var g=c+V(f,h);l+=W(f,b,d,g,e)}else if(g=ea(a),"function"===typeof g)for(a=g.call(a),h=0;!(f=a.next()).done;)f=f.value,g=c+V(f,h++),l+=W(f,b,d,g,e);else if("object"===f)throw b=String(a),Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return l}
function X(a,b,d){if(null==a)return a;var c=[],e=0;W(a,c,"","",function(f){return b.call(d,f,e++)});return c}function ia(a){if(-1===a._status){var b=a._result;b=b();b.then(function(d){if(0===a._status||-1===a._status)a._status=1,a._result=d},function(d){if(0===a._status||-1===a._status)a._status=2,a._result=d});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function Y(a,b){return Q.current.useOptimistic(a,b)}function ja(){}
var Z="function"===typeof reportError?reportError:function(a){console.error(a)};exports.Children={map:X,forEach:function(a,b,d){X(a,function(){b.apply(this,arguments)},d)},count:function(a){var b=0;X(a,function(){b++});return b},toArray:function(a){return X(a,function(b){return b})||[]},only:function(a){if(!P(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=G;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=I;
exports.StrictMode=q;exports.Suspense=x;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ha;exports.act=function(){throw Error("act(...) is not supported in production builds of React.");};exports.cache=function(a){return function(){return a.apply(null,arguments)}};
exports.cloneElement=function(a,b,d){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var c=E({},a.props),e=a.key,f=a.ref,l=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,l=M.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var h=a.type.defaultProps;for(g in b)L.call(b,g)&&!N.hasOwnProperty(g)&&(c[g]=void 0===b[g]&&void 0!==h?h[g]:b[g])}var g=arguments.length-2;if(1===g)c.children=d;else if(1<g){h=Array(g);
for(var m=0;m<g;m++)h[m]=arguments[m+2];c.children=h}return{$$typeof:k,type:a.type,key:e,ref:f,props:c,_owner:l}};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=O;exports.createFactory=function(a){var b=O.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};
exports.createServerContext=function(a,b){var d=!0;if(!T[a]){d=!1;var c={$$typeof:v,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};c.Provider={$$typeof:t,_context:c};T[a]=c}c=T[a];if(c._defaultValue===B)c._defaultValue=b,c._currentValue===B&&(c._currentValue=b),c._currentValue2===B&&(c._currentValue2=b);else if(d)throw Error("ServerContext: "+a+" already defined");return c};exports.experimental_useEffectEvent=function(a){return Q.current.useEffectEvent(a)};
exports.experimental_useOptimistic=function(a,b){return Y(a,b)};exports.forwardRef=function(a){return{$$typeof:w,render:a}};exports.isValidElement=P;exports.lazy=function(a){return{$$typeof:A,_payload:{_status:-1,_result:a},_init:ia}};exports.memo=function(a,b){return{$$typeof:z,type:a,compare:void 0===b?null:b}};
exports.startTransition=function(a){var b=S.transition,d=new Set;S.transition={_callbacks:d};var c=S.transition;try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(d.forEach(function(f){return f(c,e)}),e.then(ja,Z))}catch(f){Z(f)}finally{S.transition=b}};exports.unstable_Activity=ba;exports.unstable_Cache=ca;exports.unstable_DebugTracingMode=aa;exports.unstable_SuspenseList=y;exports.unstable_getCacheForType=function(a){var b=R.current;return b?b.getCacheForType(a):a()};
exports.unstable_getCacheSignal=function(){var a=R.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};exports.unstable_postpone=function(a){a=Error(a);a.$$typeof=da;throw a;};exports.unstable_useCacheRefresh=function(){return Q.current.useCacheRefresh()};exports.unstable_useMemoCache=function(a){return Q.current.useMemoCache(a)};exports.use=function(a){return Q.current.use(a)};
exports.useCallback=function(a,b){return Q.current.useCallback(a,b)};exports.useContext=function(a){return Q.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a,b){return Q.current.useDeferredValue(a,b)};exports.useEffect=function(a,b){return Q.current.useEffect(a,b)};exports.useId=function(){return Q.current.useId()};exports.useImperativeHandle=function(a,b,d){return Q.current.useImperativeHandle(a,b,d)};
exports.useInsertionEffect=function(a,b){return Q.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return Q.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return Q.current.useMemo(a,b)};exports.useOptimistic=Y;exports.useReducer=function(a,b,d){return Q.current.useReducer(a,b,d)};exports.useRef=function(a){return Q.current.useRef(a)};exports.useState=function(a){return Q.current.useState(a)};
exports.useSyncExternalStore=function(a,b,d){return Q.current.useSyncExternalStore(a,b,d)};exports.useTransition=function(){return Q.current.useTransition()};exports.version="18.3.0-experimental-596827f6a-20240205";
'use strict';var k=Symbol.for("react.element"),n=Symbol.for("react.portal"),p=Symbol.for("react.fragment"),q=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),t=Symbol.for("react.provider"),u=Symbol.for("react.context"),v=Symbol.for("react.forward_ref"),w=Symbol.for("react.suspense"),x=Symbol.for("react.suspense_list"),y=Symbol.for("react.memo"),z=Symbol.for("react.lazy"),A=Symbol.for("react.debug_trace_mode"),aa=Symbol.for("react.offscreen"),ba=Symbol.for("react.cache"),ca=Symbol.for("react.postpone"),
B=Symbol.iterator;function da(a){if(null===a||"object"!==typeof a)return null;a=B&&a[B]||a["@@iterator"];return"function"===typeof a?a:null}var C={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},D=Object.assign,E={};function F(a,b,c){this.props=a;this.context=b;this.refs=E;this.updater=c||C}F.prototype.isReactComponent={};
F.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,a,b,"setState")};F.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function G(){}G.prototype=F.prototype;function H(a,b,c){this.props=a;this.context=b;this.refs=E;this.updater=c||C}var I=H.prototype=new G;
I.constructor=H;D(I,F.prototype);I.isPureReactComponent=!0;var J=Array.isArray,K=Object.prototype.hasOwnProperty,L={current:null};function M(a,b,c,e,d){return{$$typeof:k,type:a,key:b,ref:c,props:d,_owner:e}}
function N(a,b,c){var e,d={},f=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(f=""+b.key),b)K.call(b,e)&&"key"!==e&&"ref"!==e&&"__self"!==e&&"__source"!==e&&(d[e]=b[e]);var l=arguments.length-2;if(1===l)d.children=c;else if(1<l){for(var g=Array(l),m=0;m<l;m++)g[m]=arguments[m+2];d.children=g}if(a&&a.defaultProps)for(e in l=a.defaultProps,l)void 0===d[e]&&(d[e]=l[e]);return M(a,f,h,L.current,d)}function ea(a,b){return M(a.type,b,a.ref,a._owner,a.props)}
function O(a){return"object"===typeof a&&null!==a&&a.$$typeof===k}var P={current:null},Q={current:null},R={transition:null},fa={ReactCurrentDispatcher:P,ReactCurrentCache:Q,ReactCurrentBatchConfig:R,ReactCurrentOwner:L};function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var S=/\/+/g;function T(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}function U(){}
function ha(a){switch(a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;default:switch("string"===typeof a.status?a.then(U,U):(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)})),a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;}}throw a;}
function V(a,b,c,e,d){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var h=!1;if(null===a)h=!0;else switch(f){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case k:case n:h=!0;break;case z:return h=a._init,V(h(a._payload),b,c,e,d)}}if(h)return d=d(a),h=""===e?"."+T(a,0):e,J(d)?(c="",null!=h&&(c=h.replace(S,"$&/")+"/"),V(d,b,c,"",function(m){return m})):null!=d&&(O(d)&&(d=ea(d,c+(!d.key||a&&a.key===d.key?"":(""+d.key).replace(S,"$&/")+"/")+h)),b.push(d)),1;h=0;var l=
""===e?".":e+":";if(J(a))for(var g=0;g<a.length;g++)e=a[g],f=l+T(e,g),h+=V(e,b,c,f,d);else if(g=da(a),"function"===typeof g)for(a=g.call(a),g=0;!(e=a.next()).done;)e=e.value,f=l+T(e,g++),h+=V(e,b,c,f,d);else if("object"===f){if("function"===typeof a.then)return V(ha(a),b,c,e,d);b=String(a);throw Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");
}return h}function W(a,b,c){if(null==a)return a;var e=[],d=0;V(a,e,"","",function(f){return b.call(c,f,d++)});return e}function ia(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ja(){return new WeakMap}
function X(){return{s:0,v:void 0,o:null,p:null}}function Y(a,b){return P.current.useOptimistic(a,b)}function ka(){}var Z="function"===typeof reportError?reportError:function(a){console.error(a)};
exports.Children={map:W,forEach:function(a,b,c){W(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;W(a,function(){b++});return b},toArray:function(a){return W(a,function(b){return b})||[]},only:function(a){if(!O(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=F;exports.Fragment=p;exports.Profiler=r;exports.PureComponent=H;exports.StrictMode=q;exports.Suspense=w;
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=fa;exports.act=function(){throw Error("act(...) is not supported in production builds of React.");};
exports.cache=function(a){return function(){var b=Q.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ja);b=c.get(a);void 0===b&&(b=X(),c.set(a,b));c=0;for(var e=arguments.length;c<e;c++){var d=arguments[c];if("function"===typeof d||"object"===typeof d&&null!==d){var f=b.o;null===f&&(b.o=f=new WeakMap);b=f.get(d);void 0===b&&(b=X(),f.set(d,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(d),void 0===b&&(b=X(),f.set(d,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null,
arguments);c=b;c.s=1;return c.v=h}catch(l){throw h=b,h.s=2,h.v=l,l;}}};
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var e=D({},a.props),d=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=L.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(g in b)K.call(b,g)&&"key"!==g&&"ref"!==g&&"__self"!==g&&"__source"!==g&&(e[g]=void 0===b[g]&&void 0!==l?l[g]:b[g])}var g=arguments.length-2;if(1===g)e.children=
c;else if(1<g){l=Array(g);for(var m=0;m<g;m++)l[m]=arguments[m+2];e.children=l}return M(a.type,d,f,h,e)};exports.createContext=function(a){a={$$typeof:u,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:t,_context:a};return a.Consumer=a};exports.createElement=N;exports.createFactory=function(a){var b=N.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.experimental_useEffectEvent=function(a){return P.current.useEffectEvent(a)};
exports.experimental_useOptimistic=function(a,b){return Y(a,b)};exports.forwardRef=function(a){return{$$typeof:v,render:a}};exports.isValidElement=O;exports.lazy=function(a){return{$$typeof:z,_payload:{_status:-1,_result:a},_init:ia}};exports.memo=function(a,b){return{$$typeof:y,type:a,compare:void 0===b?null:b}};
exports.startTransition=function(a){var b=R.transition,c=new Set;R.transition={_callbacks:c};var e=R.transition;try{var d=a();"object"===typeof d&&null!==d&&"function"===typeof d.then&&(c.forEach(function(f){return f(e,d)}),d.then(ka,Z))}catch(f){Z(f)}finally{R.transition=b}};exports.unstable_Activity=aa;exports.unstable_Cache=ba;exports.unstable_DebugTracingMode=A;exports.unstable_SuspenseList=x;exports.unstable_getCacheForType=function(a){var b=Q.current;return b?b.getCacheForType(a):a()};
exports.unstable_getCacheSignal=function(){var a=Q.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};exports.unstable_postpone=function(a){a=Error(a);a.$$typeof=ca;throw a;};exports.unstable_useCacheRefresh=function(){return P.current.useCacheRefresh()};exports.unstable_useMemoCache=function(a){return P.current.useMemoCache(a)};exports.use=function(a){return P.current.use(a)};
exports.useCallback=function(a,b){return P.current.useCallback(a,b)};exports.useContext=function(a){return P.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=function(a,b){return P.current.useDeferredValue(a,b)};exports.useEffect=function(a,b){return P.current.useEffect(a,b)};exports.useId=function(){return P.current.useId()};exports.useImperativeHandle=function(a,b,c){return P.current.useImperativeHandle(a,b,c)};
exports.useInsertionEffect=function(a,b){return P.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return P.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return P.current.useMemo(a,b)};exports.useOptimistic=Y;exports.useReducer=function(a,b,c){return P.current.useReducer(a,b,c)};exports.useRef=function(a){return P.current.useRef(a)};exports.useState=function(a){return P.current.useState(a)};
exports.useSyncExternalStore=function(a,b,c){return P.current.useSyncExternalStore(a,b,c)};exports.useTransition=function(){return P.current.useTransition()};exports.version="18.3.0-experimental-59831c98c-20240218";
//# sourceMappingURL=react.production.min.js.map

@@ -162,4 +162,2 @@ /**

const ContextRegistry = {};
const ReactSharedInternals = {

@@ -170,6 +168,2 @@ ReactCurrentDispatcher,

{
ReactSharedInternals.ContextRegistry = ContextRegistry;
}
const TaintRegistryObjects$1 = new WeakMap();

@@ -228,4 +222,2 @@ const TaintRegistryValues$1 = new Map(); // Byte lengths of all binary values we've ever seen. We don't both refcounting this.

const REACT_PROFILER_TYPE = Symbol.for('react.profiler');
const REACT_PROVIDER_TYPE = Symbol.for('react.provider');
const REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context');
const REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');

@@ -236,3 +228,2 @@ const REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');

const REACT_DEBUG_TRACING_MODE_TYPE = Symbol.for('react.debug_trace_mode');
const REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED = Symbol.for('react.default_value');
const REACT_POSTPONE_TYPE = Symbol.for('react.postpone');

@@ -258,9 +249,2 @@ const MAYBE_ITERATOR_SYMBOL = Symbol.iterator;

const RESERVED_PROPS = {
key: true,
ref: true,
__self: true,
__source: true
};
function hasValidRef(config) {

@@ -297,3 +281,3 @@

function ReactElement(type, key, ref, self, source, owner, props) {
function ReactElement(type, key, ref, owner, props) {
const element = {

@@ -318,2 +302,3 @@ // This tag allows us to uniquely identify this as a React Element

function createElement$1(type, config, children) {

@@ -325,4 +310,2 @@ let propName; // Reserved names are extracted

let ref = null;
let self = null;
let source = null;

@@ -337,9 +320,15 @@ if (config != null) {

key = '' + config.key;
}
} // Remaining properties are added to a new props object
self = config.__self === undefined ? null : config.__self;
source = config.__source === undefined ? null : config.__source; // Remaining properties are added to a new props object
for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref' && // ...and maybe these, too, though we currently rely on them for
// warnings and debug information in dev. Need to decide if we're OK
// with dropping them. In the jsx() runtime it's not an issue because
// the data gets passed as separate arguments instead of props, but
// it would be nice to stop relying on them entirely so we can drop
// them from the internal Fiber field.
propName !== '__self' && propName !== '__source') {
props[propName] = config[propName];

@@ -377,6 +366,6 @@ }

return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
return ReactElement(type, key, ref, ReactCurrentOwner.current, props);
}
function cloneAndReplaceKey(oldElement, newKey) {
const newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);
const newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._owner, oldElement.props);
return newElement;

@@ -399,10 +388,4 @@ }

let key = element.key;
let ref = element.ref; // Self is preserved since the owner is preserved.
let ref = element.ref; // Owner will be preserved, unless ref is overridden
const self = element._self; // Source is preserved since cloneElement is unlikely to be targeted by a
// transpiler, and the original source is probably a better indicator of the
// true owner.
const source = element._source; // Owner will be preserved, unless ref is overridden
let owner = element._owner;

@@ -430,3 +413,11 @@

for (propName in config) {
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
if (hasOwnProperty.call(config, propName) && // Skip over reserved prop names
propName !== 'key' && // TODO: `ref` will no longer be reserved in the next major
propName !== 'ref' && // ...and maybe these, too, though we currently rely on them for
// warnings and debug information in dev. Need to decide if we're OK
// with dropping them. In the jsx() runtime it's not an issue because
// the data gets passed as separate arguments instead of props, but
// it would be nice to stop relying on them entirely so we can drop
// them from the internal Fiber field.
propName !== '__self' && propName !== '__source') {
if (config[propName] === undefined && defaultProps !== undefined) {

@@ -458,3 +449,3 @@ // Resolve default props

return ReactElement(element.type, key, ref, self, source, owner, props);
return ReactElement(element.type, key, ref, owner, props);
}

@@ -522,2 +513,68 @@ /**

function noop$1() {}
function resolveThenable(thenable) {
switch (thenable.status) {
case 'fulfilled':
{
const fulfilledValue = thenable.value;
return fulfilledValue;
}
case 'rejected':
{
const rejectedError = thenable.reason;
throw rejectedError;
}
default:
{
if (typeof thenable.status === 'string') {
// Only instrument the thenable if the status if not defined. If
// it's defined, but an unknown value, assume it's been instrumented by
// some custom userspace implementation. We treat it as "pending".
// Attach a dummy listener, to ensure that any lazy initialization can
// happen. Flight lazily parses JSON when the value is actually awaited.
thenable.then(noop$1, noop$1);
} else {
// This is an uncached thenable that we haven't seen before.
// TODO: Detect infinite ping loops caused by uncached promises.
const pendingThenable = thenable;
pendingThenable.status = 'pending';
pendingThenable.then(fulfilledValue => {
if (thenable.status === 'pending') {
const fulfilledThenable = thenable;
fulfilledThenable.status = 'fulfilled';
fulfilledThenable.value = fulfilledValue;
}
}, error => {
if (thenable.status === 'pending') {
const rejectedThenable = thenable;
rejectedThenable.status = 'rejected';
rejectedThenable.reason = error;
}
});
} // Check one more time in case the thenable resolved synchronously.
switch (thenable.status) {
case 'fulfilled':
{
const fulfilledThenable = thenable;
return fulfilledThenable.value;
}
case 'rejected':
{
const rejectedThenable = thenable;
const rejectedError = rejectedThenable.reason;
throw rejectedError;
}
}
}
}
throw thenable;
}
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {

@@ -547,2 +604,8 @@ const type = typeof children;

invokeCallback = true;
break;
case REACT_LAZY_TYPE:
const payload = children._payload;
const init = children._init;
return mapIntoArray(init(payload), array, escapedPrefix, nameSoFar, callback);
}

@@ -613,3 +676,7 @@

} else if (type === 'object') {
// eslint-disable-next-line react-internal/safe-string-coercion
if (typeof children.then === 'function') {
return mapIntoArray(resolveThenable(children), array, escapedPrefix, nameSoFar, callback);
} // eslint-disable-next-line react-internal/safe-string-coercion
const childrenString = String(children);

@@ -732,53 +799,2 @@ throw Error(formatProdErrorMessage(31, childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString));

function createServerContext(globalName, defaultValue) {
let wasDefined = true;
if (!ContextRegistry[globalName]) {
wasDefined = false;
const context = {
$$typeof: REACT_SERVER_CONTEXT_TYPE,
// As a workaround to support multiple concurrent renderers, we categorize
// some renderers as primary and others as secondary. We only expect
// there to be two concurrent renderers at most: React Native (primary) and
// Fabric (secondary); React DOM (primary) and React ART (secondary).
// Secondary renderers store their context values on separate fields.
_currentValue: defaultValue,
_currentValue2: defaultValue,
_defaultValue: defaultValue,
// Used to track how many concurrent renderers this context currently
// supports within in a single renderer. Such as parallel server rendering.
_threadCount: 0,
// These are circular
Provider: null,
Consumer: null,
_globalName: globalName
};
context.Provider = {
$$typeof: REACT_PROVIDER_TYPE,
_context: context
};
ContextRegistry[globalName] = context;
}
const context = ContextRegistry[globalName];
if (context._defaultValue === REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED) {
context._defaultValue = defaultValue;
if (context._currentValue === REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED) {
context._currentValue = defaultValue;
}
if (context._currentValue2 === REACT_SERVER_CONTEXT_DEFAULT_VALUE_NOT_LOADED) {
context._currentValue2 = defaultValue;
}
} else if (wasDefined) {
throw Error(formatProdErrorMessage(429, globalName));
}
return context;
}
function resolveDispatcher() {

@@ -821,7 +837,2 @@ const dispatcher = ReactCurrentDispatcher.current;

}
function useContext(Context) {
const dispatcher = resolveDispatcher();
return dispatcher.useContext(Context);
}
function useCallback(callback, deps) {

@@ -1089,3 +1100,3 @@ const dispatcher = resolveDispatcher();

var ReactVersion = '18.3.0-experimental-596827f6a-20240205';
var ReactVersion = '18.3.0-experimental-59831c98c-20240218';

@@ -1210,3 +1221,2 @@ const getPrototypeOf = Object.getPrototypeOf;

exports.createRef = createRef;
exports.createServerContext = createServerContext;
exports.experimental_taintObjectReference = taintObjectReference;

@@ -1226,3 +1236,2 @@ exports.experimental_taintUniqueValue = taintUniqueValue;

exports.useCallback = useCallback;
exports.useContext = useContext;
exports.useDebugValue = useDebugValue;

@@ -1229,0 +1238,0 @@ exports.useId = useId;

@@ -12,25 +12,25 @@ /*

if("function"===typeof fetch){var q=fetch,r=function(a,b){var c=n.current;if(!c||b&&b.signal&&b.signal!==c.getCacheSignal())return q(a,b);if("string"!==typeof a||b){var d="string"===typeof a||a instanceof URL?new Request(a,b):a;if("GET"!==d.method&&"HEAD"!==d.method||d.keepalive)return q(a,b);var e=JSON.stringify([d.method,Array.from(d.headers.entries()),d.mode,d.redirect,d.credentials,d.referrer,d.referrerPolicy,d.integrity]);d=d.url}else e='["GET",[],null,"follow",null,null,null,null]',d=a;var f=
c.getCacheForType(p);c=f.get(d);if(void 0===c)a=q(a,b),f.set(d,[e,a]);else{d=0;for(f=c.length;d<f;d+=2){var h=c[d+1];if(c[d]===e)return a=h,a.then(function(g){return g.clone()})}a=q(a,b);c.push(e,a)}return a.then(function(g){return g.clone()})};m(r,q);try{fetch=r}catch(a){try{globalThis.fetch=r}catch(b){console.warn("React was unable to patch the fetch() function in this environment. Suspensey APIs might not work correctly as a result.")}}}
var t={current:null},u={current:null},v={},w={ReactCurrentDispatcher:t,ReactCurrentOwner:u,ContextRegistry:v},x=new WeakMap,y=new Map,z=new Set,A=new Set,B={ReactCurrentCache:n,TaintRegistryObjects:x,TaintRegistryValues:y,TaintRegistryByteLengths:z,TaintRegistryPendingRequests:A};
function C(a){var b="https://react.dev/errors/"+a;if(1<arguments.length){b+="?args[]="+encodeURIComponent(arguments[1]);for(var c=2;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c])}return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}
var D=Array.isArray,E=Symbol.for("react.element"),F=Symbol.for("react.portal"),G=Symbol.for("react.fragment"),H=Symbol.for("react.strict_mode"),I=Symbol.for("react.profiler"),J=Symbol.for("react.provider"),K=Symbol.for("react.server_context"),aa=Symbol.for("react.forward_ref"),L=Symbol.for("react.suspense"),ba=Symbol.for("react.memo"),ca=Symbol.for("react.lazy"),da=Symbol.for("react.debug_trace_mode"),M=Symbol.for("react.default_value"),ea=Symbol.for("react.postpone"),N=Symbol.iterator;
function fa(a){if(null===a||"object"!==typeof a)return null;a=N&&a[N]||a["@@iterator"];return"function"===typeof a?a:null}var O=Object.prototype.hasOwnProperty,P={key:!0,ref:!0,__self:!0,__source:!0};function ha(a,b){return{$$typeof:E,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function Q(a){return"object"===typeof a&&null!==a&&a.$$typeof===E}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var R=/\/+/g;
function S(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function T(a,b,c,d,e){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var h=!1;if(null===a)h=!0;else switch(f){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case E:case F:h=!0}}if(h)return h=a,e=e(h),a=""===d?"."+S(h,0):d,D(e)?(c="",null!=a&&(c=a.replace(R,"$&/")+"/"),T(e,b,c,"",function(l){return l})):null!=e&&(Q(e)&&(e=ha(e,c+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(R,"$&/")+"/")+a)),b.push(e)),1;h=0;d=""===d?".":d+":";if(D(a))for(var g=0;g<a.length;g++){f=
a[g];var k=d+S(f,g);h+=T(f,b,c,k,e)}else if(k=fa(a),"function"===typeof k)for(a=k.call(a),g=0;!(f=a.next()).done;)f=f.value,k=d+S(f,g++),h+=T(f,b,c,k,e);else if("object"===f)throw b=String(a),Error(C(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function U(a,b,c){if(null==a)return a;var d=[],e=0;T(a,d,"","",function(f){return b.call(c,f,e++)});return d}
function ia(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ja(){return new WeakMap}function V(){return{s:0,v:void 0,o:null,p:null}}var W={transition:null};function ka(){}
var X="function"===typeof reportError?reportError:function(a){console.error(a)},la=Object.getPrototypeOf,ma=B.TaintRegistryObjects,Y=B.TaintRegistryValues,na=B.TaintRegistryByteLengths,oa=B.TaintRegistryPendingRequests,pa=la(Uint32Array.prototype).constructor;function qa(a){var b=Y.get(a);void 0!==b&&(oa.forEach(function(c){c.push(a);b.count++}),1===b.count?Y.delete(a):b.count--)}var Z="function"===typeof FinalizationRegistry?new FinalizationRegistry(qa):null;
exports.Children={map:U,forEach:function(a,b,c){U(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;U(a,function(){b++});return b},toArray:function(a){return U(a,function(b){return b})||[]},only:function(a){if(!Q(a))throw Error(C(143));return a}};exports.Fragment=G;exports.Profiler=I;exports.StrictMode=H;exports.Suspense=L;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=w;exports.__SECRET_SERVER_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=B;
exports.cache=function(a){return function(){var b=n.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ja);b=c.get(a);void 0===b&&(b=V(),c.set(a,b));c=0;for(var d=arguments.length;c<d;c++){var e=arguments[c];if("function"===typeof e||"object"===typeof e&&null!==e){var f=b.o;null===f&&(b.o=f=new WeakMap);b=f.get(e);void 0===b&&(b=V(),f.set(e,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(e),void 0===b&&(b=V(),f.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var h=a.apply(null,
arguments);c=b;c.s=1;return c.v=h}catch(g){throw h=b,h.s=2,h.v=g,g;}}};
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(C(267,a));var d=m({},a.props),e=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=u.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(k in b)O.call(b,k)&&!P.hasOwnProperty(k)&&(d[k]=void 0===b[k]&&void 0!==g?g[k]:b[k])}var k=arguments.length-2;if(1===k)d.children=c;else if(1<k){g=Array(k);for(var l=0;l<k;l++)g[l]=arguments[l+2];d.children=g}return{$$typeof:E,type:a.type,
key:e,ref:f,props:d,_owner:h}};exports.createElement=function(a,b,c){var d,e={},f=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(f=""+b.key),b)O.call(b,d)&&!P.hasOwnProperty(d)&&(e[d]=b[d]);var g=arguments.length-2;if(1===g)e.children=c;else if(1<g){for(var k=Array(g),l=0;l<g;l++)k[l]=arguments[l+2];e.children=k}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===e[d]&&(e[d]=g[d]);return{$$typeof:E,type:a,key:f,ref:h,props:e,_owner:u.current}};exports.createRef=function(){return{current:null}};
exports.createServerContext=function(a,b){var c=!0;if(!v[a]){c=!1;var d={$$typeof:K,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:J,_context:d};v[a]=d}d=v[a];if(d._defaultValue===M)d._defaultValue=b,d._currentValue===M&&(d._currentValue=b),d._currentValue2===M&&(d._currentValue2=b);else if(c)throw Error(C(429,a));return d};
exports.experimental_taintObjectReference=function(a,b){a=""+(a||"A tainted value was attempted to be serialized to a Client Component or Action closure. This would leak it to the client.");if("string"===typeof b||"bigint"===typeof b)throw Error(C(496));if(null===b||"object"!==typeof b&&"function"!==typeof b)throw Error(C(497));ma.set(b,a)};
exports.experimental_taintUniqueValue=function(a,b,c){a=""+(a||"A tainted value was attempted to be serialized to a Client Component or Action closure. This would leak it to the client.");if(null===b||"object"!==typeof b&&"function"!==typeof b)throw Error(C(493));if("string"!==typeof c&&"bigint"!==typeof c)if(c instanceof pa||c instanceof DataView)na.add(c.byteLength),c=String.fromCharCode.apply(String,new Uint8Array(c.buffer,c.byteOffset,c.byteLength));else{a=null===c?"null":typeof c;if("object"===
a||"function"===a)throw Error(C(494));throw Error(C(495,a));}var d=Y.get(c);void 0===d?Y.set(c,{message:a,count:1}):d.count++;null!==Z&&Z.register(b,c)};exports.forwardRef=function(a){return{$$typeof:aa,render:a}};exports.isValidElement=Q;exports.lazy=function(a){return{$$typeof:ca,_payload:{_status:-1,_result:a},_init:ia}};exports.memo=function(a,b){return{$$typeof:ba,type:a,compare:void 0===b?null:b}};
exports.startTransition=function(a){var b=W.transition,c=new Set;W.transition={_callbacks:c};var d=W.transition;try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(c.forEach(function(f){return f(d,e)}),e.then(ka,X))}catch(f){X(f)}finally{W.transition=b}};exports.unstable_DebugTracingMode=da;exports.unstable_SuspenseList=L;exports.unstable_getCacheForType=function(a){var b=n.current;return b?b.getCacheForType(a):a()};
exports.unstable_getCacheSignal=function(){var a=n.current;if(!a){a=new AbortController;var b=Error(C(455));a.abort(b);return a.signal}return a.getCacheSignal()};exports.unstable_postpone=function(a){a=Error(a);a.$$typeof=ea;throw a;};exports.use=function(a){return t.current.use(a)};exports.useCallback=function(a,b){return t.current.useCallback(a,b)};exports.useContext=function(a){return t.current.useContext(a)};exports.useDebugValue=function(){};exports.useId=function(){return t.current.useId()};
exports.useMemo=function(a,b){return t.current.useMemo(a,b)};exports.version="18.3.0-experimental-596827f6a-20240205";
c.getCacheForType(p);c=f.get(d);if(void 0===c)a=q(a,b),f.set(d,[e,a]);else{d=0;for(f=c.length;d<f;d+=2){var g=c[d+1];if(c[d]===e)return a=g,a.then(function(k){return k.clone()})}a=q(a,b);c.push(e,a)}return a.then(function(k){return k.clone()})};m(r,q);try{fetch=r}catch(a){try{globalThis.fetch=r}catch(b){console.warn("React was unable to patch the fetch() function in this environment. Suspensey APIs might not work correctly as a result.")}}}
var t={current:null},u={current:null},v={ReactCurrentDispatcher:t,ReactCurrentOwner:u},w=new WeakMap,x=new Map,y=new Set,z=new Set,A={ReactCurrentCache:n,TaintRegistryObjects:w,TaintRegistryValues:x,TaintRegistryByteLengths:y,TaintRegistryPendingRequests:z};
function B(a){var b="https://react.dev/errors/"+a;if(1<arguments.length){b+="?args[]="+encodeURIComponent(arguments[1]);for(var c=2;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c])}return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}
var C=Array.isArray,D=Symbol.for("react.element"),E=Symbol.for("react.portal"),F=Symbol.for("react.fragment"),G=Symbol.for("react.strict_mode"),H=Symbol.for("react.profiler"),I=Symbol.for("react.forward_ref"),J=Symbol.for("react.suspense"),K=Symbol.for("react.memo"),L=Symbol.for("react.lazy"),aa=Symbol.for("react.debug_trace_mode"),ba=Symbol.for("react.postpone"),M=Symbol.iterator;
function ca(a){if(null===a||"object"!==typeof a)return null;a=M&&a[M]||a["@@iterator"];return"function"===typeof a?a:null}var N=Object.prototype.hasOwnProperty;function O(a,b,c,d,e){return{$$typeof:D,type:a,key:b,ref:c,props:e,_owner:d}}function da(a,b){return O(a.type,b,a.ref,a._owner,a.props)}function P(a){return"object"===typeof a&&null!==a&&a.$$typeof===D}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}var Q=/\/+/g;
function R(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}function S(){}
function ea(a){switch(a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;default:switch("string"===typeof a.status?a.then(S,S):(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)})),a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;}}throw a;}
function T(a,b,c,d,e){var f=typeof a;if("undefined"===f||"boolean"===f)a=null;var g=!1;if(null===a)g=!0;else switch(f){case "string":case "number":g=!0;break;case "object":switch(a.$$typeof){case D:case E:g=!0;break;case L:return g=a._init,T(g(a._payload),b,c,d,e)}}if(g)return e=e(a),g=""===d?"."+R(a,0):d,C(e)?(c="",null!=g&&(c=g.replace(Q,"$&/")+"/"),T(e,b,c,"",function(l){return l})):null!=e&&(P(e)&&(e=da(e,c+(!e.key||a&&a.key===e.key?"":(""+e.key).replace(Q,"$&/")+"/")+g)),b.push(e)),1;g=0;var k=
""===d?".":d+":";if(C(a))for(var h=0;h<a.length;h++)d=a[h],f=k+R(d,h),g+=T(d,b,c,f,e);else if(h=ca(a),"function"===typeof h)for(a=h.call(a),h=0;!(d=a.next()).done;)d=d.value,f=k+R(d,h++),g+=T(d,b,c,f,e);else if("object"===f){if("function"===typeof a.then)return T(ea(a),b,c,d,e);b=String(a);throw Error(B(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));}return g}
function U(a,b,c){if(null==a)return a;var d=[],e=0;T(a,d,"","",function(f){return b.call(c,f,e++)});return d}function fa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ha(){return new WeakMap}function V(){return{s:0,v:void 0,o:null,p:null}}
var W={transition:null};function ia(){}var X="function"===typeof reportError?reportError:function(a){console.error(a)},ja=Object.getPrototypeOf,ka=A.TaintRegistryObjects,Y=A.TaintRegistryValues,la=A.TaintRegistryByteLengths,ma=A.TaintRegistryPendingRequests,na=ja(Uint32Array.prototype).constructor;function oa(a){var b=Y.get(a);void 0!==b&&(ma.forEach(function(c){c.push(a);b.count++}),1===b.count?Y.delete(a):b.count--)}var Z="function"===typeof FinalizationRegistry?new FinalizationRegistry(oa):null;
exports.Children={map:U,forEach:function(a,b,c){U(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;U(a,function(){b++});return b},toArray:function(a){return U(a,function(b){return b})||[]},only:function(a){if(!P(a))throw Error(B(143));return a}};exports.Fragment=F;exports.Profiler=H;exports.StrictMode=G;exports.Suspense=J;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;exports.__SECRET_SERVER_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=A;
exports.cache=function(a){return function(){var b=n.current;if(!b)return a.apply(null,arguments);var c=b.getCacheForType(ha);b=c.get(a);void 0===b&&(b=V(),c.set(a,b));c=0;for(var d=arguments.length;c<d;c++){var e=arguments[c];if("function"===typeof e||"object"===typeof e&&null!==e){var f=b.o;null===f&&(b.o=f=new WeakMap);b=f.get(e);void 0===b&&(b=V(),f.set(e,b))}else f=b.p,null===f&&(b.p=f=new Map),b=f.get(e),void 0===b&&(b=V(),f.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var g=a.apply(null,
arguments);c=b;c.s=1;return c.v=g}catch(k){throw g=b,g.s=2,g.v=k,k;}}};
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(B(267,a));var d=m({},a.props),e=a.key,f=a.ref,g=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,g=u.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var k=a.type.defaultProps;for(h in b)N.call(b,h)&&"key"!==h&&"ref"!==h&&"__self"!==h&&"__source"!==h&&(d[h]=void 0===b[h]&&void 0!==k?k[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){k=Array(h);for(var l=0;l<h;l++)k[l]=arguments[l+2];d.children=
k}return O(a.type,e,f,g,d)};exports.createElement=function(a,b,c){var d,e={},f=null,g=null;if(null!=b)for(d in void 0!==b.ref&&(g=b.ref),void 0!==b.key&&(f=""+b.key),b)N.call(b,d)&&"key"!==d&&"ref"!==d&&"__self"!==d&&"__source"!==d&&(e[d]=b[d]);var k=arguments.length-2;if(1===k)e.children=c;else if(1<k){for(var h=Array(k),l=0;l<k;l++)h[l]=arguments[l+2];e.children=h}if(a&&a.defaultProps)for(d in k=a.defaultProps,k)void 0===e[d]&&(e[d]=k[d]);return O(a,f,g,u.current,e)};exports.createRef=function(){return{current:null}};
exports.experimental_taintObjectReference=function(a,b){a=""+(a||"A tainted value was attempted to be serialized to a Client Component or Action closure. This would leak it to the client.");if("string"===typeof b||"bigint"===typeof b)throw Error(B(496));if(null===b||"object"!==typeof b&&"function"!==typeof b)throw Error(B(497));ka.set(b,a)};
exports.experimental_taintUniqueValue=function(a,b,c){a=""+(a||"A tainted value was attempted to be serialized to a Client Component or Action closure. This would leak it to the client.");if(null===b||"object"!==typeof b&&"function"!==typeof b)throw Error(B(493));if("string"!==typeof c&&"bigint"!==typeof c)if(c instanceof na||c instanceof DataView)la.add(c.byteLength),c=String.fromCharCode.apply(String,new Uint8Array(c.buffer,c.byteOffset,c.byteLength));else{a=null===c?"null":typeof c;if("object"===
a||"function"===a)throw Error(B(494));throw Error(B(495,a));}var d=Y.get(c);void 0===d?Y.set(c,{message:a,count:1}):d.count++;null!==Z&&Z.register(b,c)};exports.forwardRef=function(a){return{$$typeof:I,render:a}};exports.isValidElement=P;exports.lazy=function(a){return{$$typeof:L,_payload:{_status:-1,_result:a},_init:fa}};exports.memo=function(a,b){return{$$typeof:K,type:a,compare:void 0===b?null:b}};
exports.startTransition=function(a){var b=W.transition,c=new Set;W.transition={_callbacks:c};var d=W.transition;try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(c.forEach(function(f){return f(d,e)}),e.then(ia,X))}catch(f){X(f)}finally{W.transition=b}};exports.unstable_DebugTracingMode=aa;exports.unstable_SuspenseList=J;exports.unstable_getCacheForType=function(a){var b=n.current;return b?b.getCacheForType(a):a()};
exports.unstable_getCacheSignal=function(){var a=n.current;if(!a){a=new AbortController;var b=Error(B(455));a.abort(b);return a.signal}return a.getCacheSignal()};exports.unstable_postpone=function(a){a=Error(a);a.$$typeof=ba;throw a;};exports.use=function(a){return t.current.use(a)};exports.useCallback=function(a,b){return t.current.useCallback(a,b)};exports.useDebugValue=function(){};exports.useId=function(){return t.current.useId()};exports.useMemo=function(a,b){return t.current.useMemo(a,b)};
exports.version="18.3.0-experimental-59831c98c-20240218";
//# sourceMappingURL=react.react-server.production.min.js.map

@@ -7,3 +7,3 @@ {

],
"version": "0.0.0-experimental-596827f6a-20240205",
"version": "0.0.0-experimental-59831c98c-20240218",
"homepage": "https://reactjs.org/",

@@ -19,2 +19,3 @@ "bugs": "https://github.com/facebook/react/issues",

"jsx-runtime.js",
"jsx-runtime.react-server.js",
"jsx-dev-runtime.js",

@@ -21,0 +22,0 @@ "react.react-server.js"

@@ -11,26 +11,27 @@ /**

'use strict';(function(){(function(e,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(e="undefined"!==typeof globalThis?globalThis:e||self,z(e.React={}))})(this,function(e){function z(a){if(null===a||"object"!==typeof a)return null;a=Y&&a[Y]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=Z;this.updater=c||aa}function ba(){}function N(a,b,c){this.props=a;this.context=
b;this.refs=Z;this.updater=c||aa}function ca(a,b,c){var d,f={},g=null,k=null;if(null!=b)for(d in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(g=""+b.key),b)da.call(b,d)&&!ea.hasOwnProperty(d)&&(f[d]=b[d]);var l=arguments.length-2;if(1===l)f.children=c;else if(1<l){for(var h=Array(l),n=0;n<l;n++)h[n]=arguments[n+2];f.children=h}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===f[d]&&(f[d]=l[d]);return{$$typeof:A,type:a,key:g,ref:k,props:f,_owner:O.current}}function ta(a,b){return{$$typeof:A,
type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function P(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function ua(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function Q(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function E(a,b,c,d,f){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var k=!1;if(null===a)k=!0;else switch(g){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case A:case va:k=
!0}}if(k)return k=a,f=f(k),a=""===d?"."+Q(k,0):d,fa(f)?(c="",null!=a&&(c=a.replace(ha,"$&/")+"/"),E(f,b,c,"",function(n){return n})):null!=f&&(P(f)&&(f=ta(f,c+(!f.key||k&&k.key===f.key?"":(""+f.key).replace(ha,"$&/")+"/")+a)),b.push(f)),1;k=0;d=""===d?".":d+":";if(fa(a))for(var l=0;l<a.length;l++){g=a[l];var h=d+Q(g,l);k+=E(g,b,c,h,f)}else if(h=z(a),"function"===typeof h)for(a=h.call(a),l=0;!(g=a.next()).done;)g=g.value,h=d+Q(g,l++),k+=E(g,b,c,h,f);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return k}function F(a,b,c){if(null==a)return a;var d=[],f=0;E(a,d,"","",function(g){return b.call(c,g,f++)});return d}function wa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ia(a,b){return m.current.useOptimistic(a,b)}function R(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,f=a[d];if(0<G(f,b))a[d]=b,a[c]=f,c=d;else break a}}function r(a){return 0===a.length?null:a[0]}function H(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,f=a.length,g=f>>>1;d<g;){var k=2*(d+1)-1,l=a[k],h=k+1,n=a[h];if(0>G(l,c))h<f&&0>G(n,l)?(a[d]=n,a[h]=c,d=h):(a[d]=l,a[k]=
c,d=k);else if(h<f&&0>G(n,c))a[d]=n,a[h]=c,d=h;else break a}}return b}function G(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function I(a){for(var b=r(u);null!==b;){if(null===b.callback)H(u);else if(b.startTime<=a)H(u),b.sortIndex=b.expirationTime,R(t,b);else break;b=r(u)}}function S(a){B=!1;I(a);if(!w)if(null!==r(t))w=!0,T();else{var b=r(u);null!==b&&U(S,b.startTime-a)}}function ja(){return x()-ka<la?!1:!0}function T(){J||(J=!0,K())}function U(a,b){C=ma(function(){a(x())},b)}function xa(){}
var A=Symbol.for("react.element"),va=Symbol.for("react.portal"),ya=Symbol.for("react.fragment"),za=Symbol.for("react.strict_mode"),Aa=Symbol.for("react.profiler"),na=Symbol.for("react.provider"),Ba=Symbol.for("react.context"),Ca=Symbol.for("react.server_context"),Da=Symbol.for("react.forward_ref"),Ea=Symbol.for("react.suspense"),Fa=Symbol.for("react.suspense_list"),Ga=Symbol.for("react.memo"),Ha=Symbol.for("react.lazy"),Ia=Symbol.for("react.debug_trace_mode"),Ja=Symbol.for("react.offscreen"),Ka=Symbol.for("react.cache"),
V=Symbol.for("react.default_value"),La=Symbol.for("react.postpone"),Y=Symbol.iterator,aa={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},oa=Object.assign,Z={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");
this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ba.prototype=y.prototype;var v=N.prototype=new ba;v.constructor=N;oa(v,y.prototype);v.isPureReactComponent=!0;var fa=Array.isArray,da=Object.prototype.hasOwnProperty,O={current:null},ea={key:!0,ref:!0,__self:!0,__source:!0},m={current:null},W={current:null},D={transition:null},L={},ha=/\/+/g;if("object"===typeof performance&&"function"===typeof performance.now){var Ma=
performance;var x=function(){return Ma.now()}}else{var pa=Date,Na=pa.now();x=function(){return pa.now()-Na}}var t=[],u=[],Oa=1,q=null,p=3,M=!1,w=!1,B=!1,ma="function"===typeof setTimeout?setTimeout:null,qa="function"===typeof clearTimeout?clearTimeout:null,ra="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var J=!1,C=-1,
la=5,ka=-1,X=function(){if(J){var a=x();ka=a;var b=!0;try{a:{w=!1;B&&(B=!1,qa(C),C=-1);M=!0;var c=p;try{b:{I(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&ja());){var d=q.callback;if("function"===typeof d){q.callback=null;p=q.priorityLevel;var f=d(q.expirationTime<=a);a=x();if("function"===typeof f){q.callback=f;I(a);b=!0;break b}q===r(t)&&H(t);I(a)}else H(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&U(S,g.startTime-a);b=!1}}break a}finally{q=null,p=c,M=!1}b=void 0}}finally{b?K():J=!1}}};
if("function"===typeof ra)var K=function(){ra(X)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Pa=v.port2;v.port1.onmessage=X;K=function(){Pa.postMessage(null)}}else K=function(){ma(X,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:W,ReactCurrentOwner:O,ReactCurrentBatchConfig:D,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=
null},unstable_continueExecution:function(){w||M||(w=!0,T())},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):la=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},
unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},unstable_scheduleCallback:function(a,b,c){var d=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var f=-1;break;case 2:f=250;break;case 5:f=1073741823;break;case 4:f=1E4;break;default:f=5E3}f=c+f;a={id:Oa++,callback:b,priorityLevel:a,startTime:c,
expirationTime:f,sortIndex:-1};c>d?(a.sortIndex=c,R(u,a),null===r(t)&&a===r(u)&&(B?(qa(C),C=-1):B=!0,U(S,c-d))):(a.sortIndex=f,R(t,a),w||M||(w=!0,T()));return a},unstable_shouldYield:ja,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}},ContextRegistry:L};var sa="function"===typeof reportError?reportError:function(a){console.error(a)};e.Children={map:F,forEach:function(a,b,c){F(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=
0;F(a,function(){b++});return b},toArray:function(a){return F(a,function(b){return b})||[]},only:function(a){if(!P(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};e.Component=y;e.Fragment=ya;e.Profiler=Aa;e.PureComponent=N;e.StrictMode=za;e.Suspense=Ea;e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;e.act=function(a){throw Error("act(...) is not supported in production builds of React.");};e.cache=function(a){return function(){return a.apply(null,
arguments)}};e.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=oa({},a.props),f=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=O.current);void 0!==b.key&&(f=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(h in b)da.call(b,h)&&!ea.hasOwnProperty(h)&&(d[h]=void 0===b[h]&&void 0!==l?l[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){l=
Array(h);for(var n=0;n<h;n++)l[n]=arguments[n+2];d.children=l}return{$$typeof:A,type:a.type,key:f,ref:g,props:d,_owner:k}};e.createContext=function(a){a={$$typeof:Ba,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:na,_context:a};return a.Consumer=a};e.createElement=ca;e.createFactory=function(a){var b=ca.bind(null,a);b.type=a;return b};e.createRef=function(){return{current:null}};e.createServerContext=function(a,
b){var c=!0;if(!L[a]){c=!1;var d={$$typeof:Ca,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:na,_context:d};L[a]=d}d=L[a];if(d._defaultValue===V)d._defaultValue=b,d._currentValue===V&&(d._currentValue=b),d._currentValue2===V&&(d._currentValue2=b);else if(c)throw Error("ServerContext: "+a+" already defined");return d};e.experimental_useEffectEvent=function(a){return m.current.useEffectEvent(a)};e.experimental_useOptimistic=
function(a,b){return ia(a,b)};e.forwardRef=function(a){return{$$typeof:Da,render:a}};e.isValidElement=P;e.lazy=function(a){return{$$typeof:Ha,_payload:{_status:-1,_result:a},_init:wa}};e.memo=function(a,b){return{$$typeof:Ga,type:a,compare:void 0===b?null:b}};e.startTransition=function(a,b){b=D.transition;var c=new Set;D.transition={_callbacks:c};var d=D.transition;try{var f=a();"object"===typeof f&&null!==f&&"function"===typeof f.then&&(c.forEach(function(g){return g(d,f)}),f.then(xa,sa))}catch(g){sa(g)}finally{D.transition=
b}};e.unstable_Activity=Ja;e.unstable_Cache=Ka;e.unstable_DebugTracingMode=Ia;e.unstable_SuspenseList=Fa;e.unstable_getCacheForType=function(a){var b=W.current;return b?b.getCacheForType(a):a()};e.unstable_getCacheSignal=function(){var a=W.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};e.unstable_postpone=function(a){a=Error(a);a.$$typeof=La;throw a;};e.unstable_useCacheRefresh=
function(){return m.current.useCacheRefresh()};e.unstable_useMemoCache=function(a){return m.current.useMemoCache(a)};e.use=function(a){return m.current.use(a)};e.useCallback=function(a,b){return m.current.useCallback(a,b)};e.useContext=function(a){return m.current.useContext(a)};e.useDebugValue=function(a,b){};e.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,b)};e.useEffect=function(a,b){return m.current.useEffect(a,b)};e.useId=function(){return m.current.useId()};e.useImperativeHandle=
function(a,b,c){return m.current.useImperativeHandle(a,b,c)};e.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,b)};e.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};e.useMemo=function(a,b){return m.current.useMemo(a,b)};e.useOptimistic=ia;e.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};e.useRef=function(a){return m.current.useRef(a)};e.useState=function(a){return m.current.useState(a)};e.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,
b,c)};e.useTransition=function(){return m.current.useTransition()};e.version="18.3.0-experimental-596827f6a-20240205"})})();
'use strict';(function(){(function(f,A){"object"===typeof exports&&"undefined"!==typeof module?A(exports):"function"===typeof define&&define.amd?define(["exports"],A):(f="undefined"!==typeof globalThis?globalThis:f||self,A(f.React={}))})(this,function(f){function A(a){if(null===a||"object"!==typeof a)return null;a=Y&&a[Y]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=Z;this.updater=c||aa}function ba(){}function M(a,b,c){this.props=a;this.context=
b;this.refs=Z;this.updater=c||aa}function N(a,b,c,d,e){return{$$typeof:O,type:a,key:b,ref:c,props:e,_owner:d}}function ca(a,b,c){var d,e={},g=null,k=null;if(null!=b)for(d in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(g=""+b.key),b)da.call(b,d)&&"key"!==d&&"ref"!==d&&"__self"!==d&&"__source"!==d&&(e[d]=b[d]);var l=arguments.length-2;if(1===l)e.children=c;else if(1<l){for(var h=Array(l),n=0;n<l;n++)h[n]=arguments[n+2];e.children=h}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===e[d]&&(e[d]=
l[d]);return N(a,g,k,P.current,e)}function ta(a,b){return N(a.type,b,a.ref,a._owner,a.props)}function Q(a){return"object"===typeof a&&null!==a&&a.$$typeof===O}function ua(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function R(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function ea(){}function va(a){switch(a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;default:switch("string"===typeof a.status?a.then(ea,
ea):(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)})),a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;}}throw a;}function z(a,b,c,d,e){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var k=!1;if(null===a)k=!0;else switch(g){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case O:case wa:k=!0;break;case fa:return k=a._init,z(k(a._payload),
b,c,d,e)}}if(k)return e=e(a),k=""===d?"."+R(a,0):d,ha(e)?(c="",null!=k&&(c=k.replace(ia,"$&/")+"/"),z(e,b,c,"",function(n){return n})):null!=e&&(Q(e)&&(e=ta(e,c+(!e.key||a&&a.key===e.key?"":(""+e.key).replace(ia,"$&/")+"/")+k)),b.push(e)),1;k=0;var l=""===d?".":d+":";if(ha(a))for(var h=0;h<a.length;h++)d=a[h],g=l+R(d,h),k+=z(d,b,c,g,e);else if(h=A(a),"function"===typeof h)for(a=h.call(a),h=0;!(d=a.next()).done;)d=d.value,g=l+R(d,h++),k+=z(d,b,c,g,e);else if("object"===g){if("function"===typeof a.then)return z(va(a),
b,c,d,e);b=String(a);throw Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");}return k}function E(a,b,c){if(null==a)return a;var d=[],e=0;z(a,d,"","",function(g){return b.call(c,g,e++)});return d}function xa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===
a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ya(){return new WeakMap}function S(){return{s:0,v:void 0,o:null,p:null}}function ja(a,b){return m.current.useOptimistic(a,b)}function T(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<F(e,b))a[d]=b,a[c]=e,c=d;else break a}}function r(a){return 0===a.length?null:a[0]}function G(a){if(0===a.length)return null;var b=a[0],
c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,e=a.length,g=e>>>1;d<g;){var k=2*(d+1)-1,l=a[k],h=k+1,n=a[h];if(0>F(l,c))h<e&&0>F(n,l)?(a[d]=n,a[h]=c,d=h):(a[d]=l,a[k]=c,d=k);else if(h<e&&0>F(n,c))a[d]=n,a[h]=c,d=h;else break a}}return b}function F(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function H(a){for(var b=r(u);null!==b;){if(null===b.callback)G(u);else if(b.startTime<=a)G(u),b.sortIndex=b.expirationTime,T(t,b);else break;b=r(u)}}function U(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,
V();else{var b=r(u);null!==b&&W(U,b.startTime-a)}}function ka(){return x()-la<ma?!1:!0}function V(){I||(I=!0,J())}function W(a,b){C=na(function(){a(x())},b)}function za(){}var O=Symbol.for("react.element"),wa=Symbol.for("react.portal"),Aa=Symbol.for("react.fragment"),Ba=Symbol.for("react.strict_mode"),Ca=Symbol.for("react.profiler"),Da=Symbol.for("react.provider"),Ea=Symbol.for("react.context"),Fa=Symbol.for("react.forward_ref"),Ga=Symbol.for("react.suspense"),Ha=Symbol.for("react.suspense_list"),
Ia=Symbol.for("react.memo"),fa=Symbol.for("react.lazy"),Ja=Symbol.for("react.debug_trace_mode"),Ka=Symbol.for("react.offscreen"),La=Symbol.for("react.cache"),Ma=Symbol.for("react.postpone"),Y=Symbol.iterator,aa={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},oa=Object.assign,Z={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");
this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ba.prototype=y.prototype;var v=M.prototype=new ba;v.constructor=M;oa(v,y.prototype);v.isPureReactComponent=!0;var ha=Array.isArray,da=Object.prototype.hasOwnProperty,P={current:null},m={current:null},K={current:null},D={transition:null},ia=/\/+/g;if("object"===typeof performance&&"function"===typeof performance.now){var Na=performance;var x=function(){return Na.now()}}else{var pa=
Date,Oa=pa.now();x=function(){return pa.now()-Oa}}var t=[],u=[],Pa=1,q=null,p=3,L=!1,w=!1,B=!1,na="function"===typeof setTimeout?setTimeout:null,qa="function"===typeof clearTimeout?clearTimeout:null,ra="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var I=!1,C=-1,ma=5,la=-1,X=function(){if(I){var a=x();la=a;var b=!0;try{a:{w=
!1;B&&(B=!1,qa(C),C=-1);L=!0;var c=p;try{b:{H(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&ka());){var d=q.callback;if("function"===typeof d){q.callback=null;p=q.priorityLevel;var e=d(q.expirationTime<=a);a=x();if("function"===typeof e){q.callback=e;H(a);b=!0;break b}q===r(t)&&G(t);H(a)}else G(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&W(U,g.startTime-a);b=!1}}break a}finally{q=null,p=c,L=!1}b=void 0}}finally{b?J():I=!1}}};if("function"===typeof ra)var J=function(){ra(X)};else if("undefined"!==
typeof MessageChannel){v=new MessageChannel;var Qa=v.port2;v.port1.onmessage=X;J=function(){Qa.postMessage(null)}}else J=function(){na(X,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:K,ReactCurrentOwner:P,ReactCurrentBatchConfig:D,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||
L||(w=!0,V())},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ma=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},
unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},unstable_scheduleCallback:function(a,b,c){var d=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Pa++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};
c>d?(a.sortIndex=c,T(u,a),null===r(t)&&a===r(u)&&(B?(qa(C),C=-1):B=!0,W(U,c-d))):(a.sortIndex=e,T(t,a),w||L||(w=!0,V()));return a},unstable_shouldYield:ka,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}}};var sa="function"===typeof reportError?reportError:function(a){console.error(a)};f.Children={map:E,forEach:function(a,b,c){E(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;E(a,function(){b++});return b},
toArray:function(a){return E(a,function(b){return b})||[]},only:function(a){if(!Q(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=Aa;f.Profiler=Ca;f.PureComponent=M;f.StrictMode=Ba;f.Suspense=Ga;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;f.act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.cache=function(a){return function(){var b=K.current;if(!b)return a.apply(null,arguments);
var c=b.getCacheForType(ya);b=c.get(a);void 0===b&&(b=S(),c.set(a,b));c=0;for(var d=arguments.length;c<d;c++){var e=arguments[c];if("function"===typeof e||"object"===typeof e&&null!==e){var g=b.o;null===g&&(b.o=g=new WeakMap);b=g.get(e);void 0===b&&(b=S(),g.set(e,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(e),void 0===b&&(b=S(),g.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var k=a.apply(null,arguments);c=b;c.s=1;return c.v=k}catch(l){throw k=b,k.s=2,k.v=l,l;}}};f.cloneElement=function(a,
b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=oa({},a.props),e=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=P.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(h in b)da.call(b,h)&&"key"!==h&&"ref"!==h&&"__self"!==h&&"__source"!==h&&(d[h]=void 0===b[h]&&void 0!==l?l[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){l=Array(h);
for(var n=0;n<h;n++)l[n]=arguments[n+2];d.children=l}return N(a.type,e,g,k,d)};f.createContext=function(a){a={$$typeof:Ea,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:Da,_context:a};return a.Consumer=a};f.createElement=ca;f.createFactory=function(a){var b=ca.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};f.experimental_useEffectEvent=function(a){return m.current.useEffectEvent(a)};f.experimental_useOptimistic=function(a,
b){return ja(a,b)};f.forwardRef=function(a){return{$$typeof:Fa,render:a}};f.isValidElement=Q;f.lazy=function(a){return{$$typeof:fa,_payload:{_status:-1,_result:a},_init:xa}};f.memo=function(a,b){return{$$typeof:Ia,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=D.transition;var c=new Set;D.transition={_callbacks:c};var d=D.transition;try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(c.forEach(function(g){return g(d,e)}),e.then(za,sa))}catch(g){sa(g)}finally{D.transition=
b}};f.unstable_Activity=Ka;f.unstable_Cache=La;f.unstable_DebugTracingMode=Ja;f.unstable_SuspenseList=Ha;f.unstable_getCacheForType=function(a){var b=K.current;return b?b.getCacheForType(a):a()};f.unstable_getCacheSignal=function(){var a=K.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};f.unstable_postpone=function(a){a=Error(a);a.$$typeof=Ma;throw a;};f.unstable_useCacheRefresh=
function(){return m.current.useCacheRefresh()};f.unstable_useMemoCache=function(a){return m.current.useMemoCache(a)};f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,b)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=
function(a,b,c){return m.current.useImperativeHandle(a,b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useOptimistic=ja;f.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,
b,c)};f.useTransition=function(){return m.current.useTransition()};f.version="18.3.0-experimental-59831c98c-20240218"})})();

@@ -11,26 +11,27 @@ /**

'use strict';(function(){(function(e,z){"object"===typeof exports&&"undefined"!==typeof module?z(exports):"function"===typeof define&&define.amd?define(["exports"],z):(e="undefined"!==typeof globalThis?globalThis:e||self,z(e.React={}))})(this,function(e){function z(a){if(null===a||"object"!==typeof a)return null;a=Y&&a[Y]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=Z;this.updater=c||aa}function ba(){}function N(a,b,c){this.props=a;this.context=
b;this.refs=Z;this.updater=c||aa}function ca(a,b,c){var d,f={},g=null,k=null;if(null!=b)for(d in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(g=""+b.key),b)da.call(b,d)&&!ea.hasOwnProperty(d)&&(f[d]=b[d]);var l=arguments.length-2;if(1===l)f.children=c;else if(1<l){for(var h=Array(l),n=0;n<l;n++)h[n]=arguments[n+2];f.children=h}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===f[d]&&(f[d]=l[d]);return{$$typeof:A,type:a,key:g,ref:k,props:f,_owner:O.current}}function ta(a,b){return{$$typeof:A,
type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function P(a){return"object"===typeof a&&null!==a&&a.$$typeof===A}function ua(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function Q(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function E(a,b,c,d,f){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var k=!1;if(null===a)k=!0;else switch(g){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case A:case va:k=
!0}}if(k)return k=a,f=f(k),a=""===d?"."+Q(k,0):d,fa(f)?(c="",null!=a&&(c=a.replace(ha,"$&/")+"/"),E(f,b,c,"",function(n){return n})):null!=f&&(P(f)&&(f=ta(f,c+(!f.key||k&&k.key===f.key?"":(""+f.key).replace(ha,"$&/")+"/")+a)),b.push(f)),1;k=0;d=""===d?".":d+":";if(fa(a))for(var l=0;l<a.length;l++){g=a[l];var h=d+Q(g,l);k+=E(g,b,c,h,f)}else if(h=z(a),"function"===typeof h)for(a=h.call(a),l=0;!(g=a.next()).done;)g=g.value,h=d+Q(g,l++),k+=E(g,b,c,h,f);else if("object"===g)throw b=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return k}function F(a,b,c){if(null==a)return a;var d=[],f=0;E(a,d,"","",function(g){return b.call(c,g,f++)});return d}function wa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=
0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ia(a,b){return m.current.useOptimistic(a,b)}function R(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,f=a[d];if(0<G(f,b))a[d]=b,a[c]=f,c=d;else break a}}function r(a){return 0===a.length?null:a[0]}function H(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,f=a.length,g=f>>>1;d<g;){var k=2*(d+1)-1,l=a[k],h=k+1,n=a[h];if(0>G(l,c))h<f&&0>G(n,l)?(a[d]=n,a[h]=c,d=h):(a[d]=l,a[k]=
c,d=k);else if(h<f&&0>G(n,c))a[d]=n,a[h]=c,d=h;else break a}}return b}function G(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function I(a){for(var b=r(u);null!==b;){if(null===b.callback)H(u);else if(b.startTime<=a)H(u),b.sortIndex=b.expirationTime,R(t,b);else break;b=r(u)}}function S(a){B=!1;I(a);if(!w)if(null!==r(t))w=!0,T();else{var b=r(u);null!==b&&U(S,b.startTime-a)}}function ja(){return x()-ka<la?!1:!0}function T(){J||(J=!0,K())}function U(a,b){C=ma(function(){a(x())},b)}function xa(){}
var A=Symbol.for("react.element"),va=Symbol.for("react.portal"),ya=Symbol.for("react.fragment"),za=Symbol.for("react.strict_mode"),Aa=Symbol.for("react.profiler"),na=Symbol.for("react.provider"),Ba=Symbol.for("react.context"),Ca=Symbol.for("react.server_context"),Da=Symbol.for("react.forward_ref"),Ea=Symbol.for("react.suspense"),Fa=Symbol.for("react.suspense_list"),Ga=Symbol.for("react.memo"),Ha=Symbol.for("react.lazy"),Ia=Symbol.for("react.debug_trace_mode"),Ja=Symbol.for("react.offscreen"),Ka=Symbol.for("react.cache"),
V=Symbol.for("react.default_value"),La=Symbol.for("react.postpone"),Y=Symbol.iterator,aa={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},oa=Object.assign,Z={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");
this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ba.prototype=y.prototype;var v=N.prototype=new ba;v.constructor=N;oa(v,y.prototype);v.isPureReactComponent=!0;var fa=Array.isArray,da=Object.prototype.hasOwnProperty,O={current:null},ea={key:!0,ref:!0,__self:!0,__source:!0},m={current:null},W={current:null},D={transition:null},L={},ha=/\/+/g;if("object"===typeof performance&&"function"===typeof performance.now){var Ma=
performance;var x=function(){return Ma.now()}}else{var pa=Date,Na=pa.now();x=function(){return pa.now()-Na}}var t=[],u=[],Oa=1,q=null,p=3,M=!1,w=!1,B=!1,ma="function"===typeof setTimeout?setTimeout:null,qa="function"===typeof clearTimeout?clearTimeout:null,ra="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var J=!1,C=-1,
la=5,ka=-1,X=function(){if(J){var a=x();ka=a;var b=!0;try{a:{w=!1;B&&(B=!1,qa(C),C=-1);M=!0;var c=p;try{b:{I(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&ja());){var d=q.callback;if("function"===typeof d){q.callback=null;p=q.priorityLevel;var f=d(q.expirationTime<=a);a=x();if("function"===typeof f){q.callback=f;I(a);b=!0;break b}q===r(t)&&H(t);I(a)}else H(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&U(S,g.startTime-a);b=!1}}break a}finally{q=null,p=c,M=!1}b=void 0}}finally{b?K():J=!1}}};
if("function"===typeof ra)var K=function(){ra(X)};else if("undefined"!==typeof MessageChannel){v=new MessageChannel;var Pa=v.port2;v.port1.onmessage=X;K=function(){Pa.postMessage(null)}}else K=function(){ma(X,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:W,ReactCurrentOwner:O,ReactCurrentBatchConfig:D,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=
null},unstable_continueExecution:function(){w||M||(w=!0,T())},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):la=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},
unstable_pauseExecution:function(){},unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},unstable_scheduleCallback:function(a,b,c){var d=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var f=-1;break;case 2:f=250;break;case 5:f=1073741823;break;case 4:f=1E4;break;default:f=5E3}f=c+f;a={id:Oa++,callback:b,priorityLevel:a,startTime:c,
expirationTime:f,sortIndex:-1};c>d?(a.sortIndex=c,R(u,a),null===r(t)&&a===r(u)&&(B?(qa(C),C=-1):B=!0,U(S,c-d))):(a.sortIndex=f,R(t,a),w||M||(w=!0,T()));return a},unstable_shouldYield:ja,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}},ContextRegistry:L};var sa="function"===typeof reportError?reportError:function(a){console.error(a)};e.Children={map:F,forEach:function(a,b,c){F(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=
0;F(a,function(){b++});return b},toArray:function(a){return F(a,function(b){return b})||[]},only:function(a){if(!P(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};e.Component=y;e.Fragment=ya;e.Profiler=Aa;e.PureComponent=N;e.StrictMode=za;e.Suspense=Ea;e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;e.act=function(a){throw Error("act(...) is not supported in production builds of React.");};e.cache=function(a){return function(){return a.apply(null,
arguments)}};e.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=oa({},a.props),f=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=O.current);void 0!==b.key&&(f=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(h in b)da.call(b,h)&&!ea.hasOwnProperty(h)&&(d[h]=void 0===b[h]&&void 0!==l?l[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){l=
Array(h);for(var n=0;n<h;n++)l[n]=arguments[n+2];d.children=l}return{$$typeof:A,type:a.type,key:f,ref:g,props:d,_owner:k}};e.createContext=function(a){a={$$typeof:Ba,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};a.Provider={$$typeof:na,_context:a};return a.Consumer=a};e.createElement=ca;e.createFactory=function(a){var b=ca.bind(null,a);b.type=a;return b};e.createRef=function(){return{current:null}};e.createServerContext=function(a,
b){var c=!0;if(!L[a]){c=!1;var d={$$typeof:Ca,_currentValue:b,_currentValue2:b,_defaultValue:b,_threadCount:0,Provider:null,Consumer:null,_globalName:a};d.Provider={$$typeof:na,_context:d};L[a]=d}d=L[a];if(d._defaultValue===V)d._defaultValue=b,d._currentValue===V&&(d._currentValue=b),d._currentValue2===V&&(d._currentValue2=b);else if(c)throw Error("ServerContext: "+a+" already defined");return d};e.experimental_useEffectEvent=function(a){return m.current.useEffectEvent(a)};e.experimental_useOptimistic=
function(a,b){return ia(a,b)};e.forwardRef=function(a){return{$$typeof:Da,render:a}};e.isValidElement=P;e.lazy=function(a){return{$$typeof:Ha,_payload:{_status:-1,_result:a},_init:wa}};e.memo=function(a,b){return{$$typeof:Ga,type:a,compare:void 0===b?null:b}};e.startTransition=function(a,b){b=D.transition;var c=new Set;D.transition={_callbacks:c};var d=D.transition;try{var f=a();"object"===typeof f&&null!==f&&"function"===typeof f.then&&(c.forEach(function(g){return g(d,f)}),f.then(xa,sa))}catch(g){sa(g)}finally{D.transition=
b}};e.unstable_Activity=Ja;e.unstable_Cache=Ka;e.unstable_DebugTracingMode=Ia;e.unstable_SuspenseList=Fa;e.unstable_getCacheForType=function(a){var b=W.current;return b?b.getCacheForType(a):a()};e.unstable_getCacheSignal=function(){var a=W.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};e.unstable_postpone=function(a){a=Error(a);a.$$typeof=La;throw a;};e.unstable_useCacheRefresh=
function(){return m.current.useCacheRefresh()};e.unstable_useMemoCache=function(a){return m.current.useMemoCache(a)};e.use=function(a){return m.current.use(a)};e.useCallback=function(a,b){return m.current.useCallback(a,b)};e.useContext=function(a){return m.current.useContext(a)};e.useDebugValue=function(a,b){};e.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,b)};e.useEffect=function(a,b){return m.current.useEffect(a,b)};e.useId=function(){return m.current.useId()};e.useImperativeHandle=
function(a,b,c){return m.current.useImperativeHandle(a,b,c)};e.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,b)};e.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};e.useMemo=function(a,b){return m.current.useMemo(a,b)};e.useOptimistic=ia;e.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};e.useRef=function(a){return m.current.useRef(a)};e.useState=function(a){return m.current.useState(a)};e.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,
b,c)};e.useTransition=function(){return m.current.useTransition()};e.version="18.3.0-experimental-596827f6a-20240205"})})();
'use strict';(function(){(function(f,A){"object"===typeof exports&&"undefined"!==typeof module?A(exports):"function"===typeof define&&define.amd?define(["exports"],A):(f="undefined"!==typeof globalThis?globalThis:f||self,A(f.React={}))})(this,function(f){function A(a){if(null===a||"object"!==typeof a)return null;a=Y&&a[Y]||a["@@iterator"];return"function"===typeof a?a:null}function y(a,b,c){this.props=a;this.context=b;this.refs=Z;this.updater=c||aa}function ba(){}function M(a,b,c){this.props=a;this.context=
b;this.refs=Z;this.updater=c||aa}function N(a,b,c,d,e){return{$$typeof:O,type:a,key:b,ref:c,props:e,_owner:d}}function ca(a,b,c){var d,e={},g=null,k=null;if(null!=b)for(d in void 0!==b.ref&&(k=b.ref),void 0!==b.key&&(g=""+b.key),b)da.call(b,d)&&"key"!==d&&"ref"!==d&&"__self"!==d&&"__source"!==d&&(e[d]=b[d]);var l=arguments.length-2;if(1===l)e.children=c;else if(1<l){for(var h=Array(l),n=0;n<l;n++)h[n]=arguments[n+2];e.children=h}if(a&&a.defaultProps)for(d in l=a.defaultProps,l)void 0===e[d]&&(e[d]=
l[d]);return N(a,g,k,P.current,e)}function ta(a,b){return N(a.type,b,a.ref,a._owner,a.props)}function Q(a){return"object"===typeof a&&null!==a&&a.$$typeof===O}function ua(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(c){return b[c]})}function R(a,b){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function ea(){}function va(a){switch(a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;default:switch("string"===typeof a.status?a.then(ea,
ea):(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)})),a.status){case "fulfilled":return a.value;case "rejected":throw a.reason;}}throw a;}function z(a,b,c,d,e){var g=typeof a;if("undefined"===g||"boolean"===g)a=null;var k=!1;if(null===a)k=!0;else switch(g){case "string":case "number":k=!0;break;case "object":switch(a.$$typeof){case O:case wa:k=!0;break;case fa:return k=a._init,z(k(a._payload),
b,c,d,e)}}if(k)return e=e(a),k=""===d?"."+R(a,0):d,ha(e)?(c="",null!=k&&(c=k.replace(ia,"$&/")+"/"),z(e,b,c,"",function(n){return n})):null!=e&&(Q(e)&&(e=ta(e,c+(!e.key||a&&a.key===e.key?"":(""+e.key).replace(ia,"$&/")+"/")+k)),b.push(e)),1;k=0;var l=""===d?".":d+":";if(ha(a))for(var h=0;h<a.length;h++)d=a[h],g=l+R(d,h),k+=z(d,b,c,g,e);else if(h=A(a),"function"===typeof h)for(a=h.call(a),h=0;!(d=a.next()).done;)d=d.value,g=l+R(d,h++),k+=z(d,b,c,g,e);else if("object"===g){if("function"===typeof a.then)return z(va(a),
b,c,d,e);b=String(a);throw Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");}return k}function E(a,b,c){if(null==a)return a;var d=[],e=0;z(a,d,"","",function(g){return b.call(c,g,e++)});return d}function xa(a){if(-1===a._status){var b=a._result;b=b();b.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===
a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}function ya(){return new WeakMap}function S(){return{s:0,v:void 0,o:null,p:null}}function ja(a,b){return m.current.useOptimistic(a,b)}function T(a,b){var c=a.length;a.push(b);a:for(;0<c;){var d=c-1>>>1,e=a[d];if(0<F(e,b))a[d]=b,a[c]=e,c=d;else break a}}function r(a){return 0===a.length?null:a[0]}function G(a){if(0===a.length)return null;var b=a[0],
c=a.pop();if(c!==b){a[0]=c;a:for(var d=0,e=a.length,g=e>>>1;d<g;){var k=2*(d+1)-1,l=a[k],h=k+1,n=a[h];if(0>F(l,c))h<e&&0>F(n,l)?(a[d]=n,a[h]=c,d=h):(a[d]=l,a[k]=c,d=k);else if(h<e&&0>F(n,c))a[d]=n,a[h]=c,d=h;else break a}}return b}function F(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function H(a){for(var b=r(u);null!==b;){if(null===b.callback)G(u);else if(b.startTime<=a)G(u),b.sortIndex=b.expirationTime,T(t,b);else break;b=r(u)}}function U(a){B=!1;H(a);if(!w)if(null!==r(t))w=!0,
V();else{var b=r(u);null!==b&&W(U,b.startTime-a)}}function ka(){return x()-la<ma?!1:!0}function V(){I||(I=!0,J())}function W(a,b){C=na(function(){a(x())},b)}function za(){}var O=Symbol.for("react.element"),wa=Symbol.for("react.portal"),Aa=Symbol.for("react.fragment"),Ba=Symbol.for("react.strict_mode"),Ca=Symbol.for("react.profiler"),Da=Symbol.for("react.provider"),Ea=Symbol.for("react.context"),Fa=Symbol.for("react.forward_ref"),Ga=Symbol.for("react.suspense"),Ha=Symbol.for("react.suspense_list"),
Ia=Symbol.for("react.memo"),fa=Symbol.for("react.lazy"),Ja=Symbol.for("react.debug_trace_mode"),Ka=Symbol.for("react.offscreen"),La=Symbol.for("react.cache"),Ma=Symbol.for("react.postpone"),Y=Symbol.iterator,aa={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},oa=Object.assign,Z={};y.prototype.isReactComponent={};y.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");
this.updater.enqueueSetState(this,a,b,"setState")};y.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};ba.prototype=y.prototype;var v=M.prototype=new ba;v.constructor=M;oa(v,y.prototype);v.isPureReactComponent=!0;var ha=Array.isArray,da=Object.prototype.hasOwnProperty,P={current:null},m={current:null},K={current:null},D={transition:null},ia=/\/+/g;if("object"===typeof performance&&"function"===typeof performance.now){var Na=performance;var x=function(){return Na.now()}}else{var pa=
Date,Oa=pa.now();x=function(){return pa.now()-Oa}}var t=[],u=[],Pa=1,q=null,p=3,L=!1,w=!1,B=!1,na="function"===typeof setTimeout?setTimeout:null,qa="function"===typeof clearTimeout?clearTimeout:null,ra="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending?navigator.scheduling.isInputPending.bind(navigator.scheduling):null;var I=!1,C=-1,ma=5,la=-1,X=function(){if(I){var a=x();la=a;var b=!0;try{a:{w=
!1;B&&(B=!1,qa(C),C=-1);L=!0;var c=p;try{b:{H(a);for(q=r(t);null!==q&&!(q.expirationTime>a&&ka());){var d=q.callback;if("function"===typeof d){q.callback=null;p=q.priorityLevel;var e=d(q.expirationTime<=a);a=x();if("function"===typeof e){q.callback=e;H(a);b=!0;break b}q===r(t)&&G(t);H(a)}else G(t);q=r(t)}if(null!==q)b=!0;else{var g=r(u);null!==g&&W(U,g.startTime-a);b=!1}}break a}finally{q=null,p=c,L=!1}b=void 0}}finally{b?J():I=!1}}};if("function"===typeof ra)var J=function(){ra(X)};else if("undefined"!==
typeof MessageChannel){v=new MessageChannel;var Qa=v.port2;v.port1.onmessage=X;J=function(){Qa.postMessage(null)}}else J=function(){na(X,0)};v={ReactCurrentDispatcher:m,ReactCurrentCache:K,ReactCurrentOwner:P,ReactCurrentBatchConfig:D,Scheduler:{__proto__:null,unstable_IdlePriority:5,unstable_ImmediatePriority:1,unstable_LowPriority:4,unstable_NormalPriority:3,unstable_Profiling:null,unstable_UserBlockingPriority:2,unstable_cancelCallback:function(a){a.callback=null},unstable_continueExecution:function(){w||
L||(w=!0,V())},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ma=0<a?Math.floor(1E3/a):5},unstable_getCurrentPriorityLevel:function(){return p},unstable_getFirstCallbackNode:function(){return r(t)},unstable_next:function(a){switch(p){case 1:case 2:case 3:var b=3;break;default:b=p}var c=p;p=b;try{return a()}finally{p=c}},get unstable_now(){return x},unstable_pauseExecution:function(){},
unstable_requestPaint:function(){},unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=p;p=a;try{return b()}finally{p=c}},unstable_scheduleCallback:function(a,b,c){var d=x();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Pa++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};
c>d?(a.sortIndex=c,T(u,a),null===r(t)&&a===r(u)&&(B?(qa(C),C=-1):B=!0,W(U,c-d))):(a.sortIndex=e,T(t,a),w||L||(w=!0,V()));return a},unstable_shouldYield:ka,unstable_wrapCallback:function(a){var b=p;return function(){var c=p;p=b;try{return a.apply(this,arguments)}finally{p=c}}}}};var sa="function"===typeof reportError?reportError:function(a){console.error(a)};f.Children={map:E,forEach:function(a,b,c){E(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;E(a,function(){b++});return b},
toArray:function(a){return E(a,function(b){return b})||[]},only:function(a){if(!Q(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};f.Component=y;f.Fragment=Aa;f.Profiler=Ca;f.PureComponent=M;f.StrictMode=Ba;f.Suspense=Ga;f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=v;f.act=function(a){throw Error("act(...) is not supported in production builds of React.");};f.cache=function(a){return function(){var b=K.current;if(!b)return a.apply(null,arguments);
var c=b.getCacheForType(ya);b=c.get(a);void 0===b&&(b=S(),c.set(a,b));c=0;for(var d=arguments.length;c<d;c++){var e=arguments[c];if("function"===typeof e||"object"===typeof e&&null!==e){var g=b.o;null===g&&(b.o=g=new WeakMap);b=g.get(e);void 0===b&&(b=S(),g.set(e,b))}else g=b.p,null===g&&(b.p=g=new Map),b=g.get(e),void 0===b&&(b=S(),g.set(e,b))}if(1===b.s)return b.v;if(2===b.s)throw b.v;try{var k=a.apply(null,arguments);c=b;c.s=1;return c.v=k}catch(l){throw k=b,k.s=2,k.v=l,l;}}};f.cloneElement=function(a,
b,c){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=oa({},a.props),e=a.key,g=a.ref,k=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,k=P.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var l=a.type.defaultProps;for(h in b)da.call(b,h)&&"key"!==h&&"ref"!==h&&"__self"!==h&&"__source"!==h&&(d[h]=void 0===b[h]&&void 0!==l?l[h]:b[h])}var h=arguments.length-2;if(1===h)d.children=c;else if(1<h){l=Array(h);
for(var n=0;n<h;n++)l[n]=arguments[n+2];d.children=l}return N(a.type,e,g,k,d)};f.createContext=function(a){a={$$typeof:Ea,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:Da,_context:a};return a.Consumer=a};f.createElement=ca;f.createFactory=function(a){var b=ca.bind(null,a);b.type=a;return b};f.createRef=function(){return{current:null}};f.experimental_useEffectEvent=function(a){return m.current.useEffectEvent(a)};f.experimental_useOptimistic=function(a,
b){return ja(a,b)};f.forwardRef=function(a){return{$$typeof:Fa,render:a}};f.isValidElement=Q;f.lazy=function(a){return{$$typeof:fa,_payload:{_status:-1,_result:a},_init:xa}};f.memo=function(a,b){return{$$typeof:Ia,type:a,compare:void 0===b?null:b}};f.startTransition=function(a,b){b=D.transition;var c=new Set;D.transition={_callbacks:c};var d=D.transition;try{var e=a();"object"===typeof e&&null!==e&&"function"===typeof e.then&&(c.forEach(function(g){return g(d,e)}),e.then(za,sa))}catch(g){sa(g)}finally{D.transition=
b}};f.unstable_Activity=Ka;f.unstable_Cache=La;f.unstable_DebugTracingMode=Ja;f.unstable_SuspenseList=Ha;f.unstable_getCacheForType=function(a){var b=K.current;return b?b.getCacheForType(a):a()};f.unstable_getCacheSignal=function(){var a=K.current;return a?a.getCacheSignal():(a=new AbortController,a.abort(Error("This CacheSignal was requested outside React which means that it is immediately aborted.")),a.signal)};f.unstable_postpone=function(a){a=Error(a);a.$$typeof=Ma;throw a;};f.unstable_useCacheRefresh=
function(){return m.current.useCacheRefresh()};f.unstable_useMemoCache=function(a){return m.current.useMemoCache(a)};f.use=function(a){return m.current.use(a)};f.useCallback=function(a,b){return m.current.useCallback(a,b)};f.useContext=function(a){return m.current.useContext(a)};f.useDebugValue=function(a,b){};f.useDeferredValue=function(a,b){return m.current.useDeferredValue(a,b)};f.useEffect=function(a,b){return m.current.useEffect(a,b)};f.useId=function(){return m.current.useId()};f.useImperativeHandle=
function(a,b,c){return m.current.useImperativeHandle(a,b,c)};f.useInsertionEffect=function(a,b){return m.current.useInsertionEffect(a,b)};f.useLayoutEffect=function(a,b){return m.current.useLayoutEffect(a,b)};f.useMemo=function(a,b){return m.current.useMemo(a,b)};f.useOptimistic=ja;f.useReducer=function(a,b,c){return m.current.useReducer(a,b,c)};f.useRef=function(a){return m.current.useRef(a)};f.useState=function(a){return m.current.useState(a)};f.useSyncExternalStore=function(a,b,c){return m.current.useSyncExternalStore(a,
b,c)};f.useTransition=function(){return m.current.useTransition()};f.version="18.3.0-experimental-59831c98c-20240218"})})();

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc