Socket
Socket
Sign inDemoInstall

react

Package Overview
Dependencies
3
Maintainers
7
Versions
1742
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-experimental-bfa50f827-20210712 to 0.0.0-experimental-c09596cc6-20220112

105

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

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.development.js

@@ -37,3 +38,2 @@ *

var REACT_SCOPE_TYPE = 0xead7;
var REACT_OPAQUE_ID_TYPE = 0xeae0;
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;

@@ -59,3 +59,2 @@ var REACT_OFFSCREEN_TYPE = 0xeae2;

REACT_SCOPE_TYPE = symbolFor('react.scope');
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');

@@ -87,7 +86,9 @@ REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');

{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
}
printWarning('error', format, args);
}
printWarning('error', format, args);
}

@@ -106,6 +107,7 @@ }

args = args.concat([stack]);
}
} // eslint-disable-next-line react-internal/safe-string-coercion
var argsWithFormat = args.map(function (item) {
return '' + item;
return String(item);
}); // Careful: RN currently depends on this prefix

@@ -485,4 +487,11 @@

// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at ');
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled "<anonymous>"
// but we have a user-provided "displayName"
// splice it in to make the stack more readable.
if (fn.displayName && _frame.includes('<anonymous>')) {
_frame = _frame.replace('<anonymous>', fn.displayName);
}
{

@@ -620,2 +629,3 @@ if (typeof fn === 'function') {

if (typeof typeSpecs[typeSpecName] !== 'function') {
// eslint-disable-next-line react-internal/prod-error-codes
var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');

@@ -660,2 +670,69 @@ err.name = 'Invariant Violation';

/*
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.
*
* The functions in this module will throw an easier-to-understand,
* easier-to-debug exception with a clear errors message message explaining the
* problem. (Instead of a confusing exception thrown inside the implementation
* of the `value` object).
*/
// $FlowFixMe only called in DEV, so void return is not possible.
function typeName(value) {
{
// toStringTag is needed for namespaced types like Temporal.Instant
var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
return type;
}
} // $FlowFixMe only called in DEV, so void return is not possible.
function willCoercionThrow(value) {
{
try {
testStringCoercion(value);
return false;
} catch (e) {
return true;
}
}
}
function testStringCoercion(value) {
// If you ended up here by following an exception call stack, here's what's
// happened: you supplied an object or symbol value to React (as a prop, key,
// DOM attribute, CSS property, string ref, etc.) and when React tried to
// coerce it to a string using `'' + value`, an exception was thrown.
//
// The most common types that will cause this exception are `Symbol` instances
// and Temporal objects like `Temporal.Instant`. But any object that has a
// `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
// exception. (Library authors do this to prevent users from using built-in
// numeric operators like `+` or comparison operators like `>=` because custom
// methods are needed to perform accurate arithmetic or comparison.)
//
// To fix the problem, coerce this object or symbol value to a string before
// passing it to React. The most reliable way is usually `String(value)`.
//
// To find which value is throwing, check the browser or debugger console.
// Before this exception was thrown, there should be `console.error` output
// that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
// problem and how that type was used: key, atrribute, input value prop, etc.
// In most cases, this console output also shows the component and its
// ancestor components where the exception happened.
//
// eslint-disable-next-line react-internal/safe-string-coercion
return '' + value;
}
function checkKeyStringCoercion(value) {
{
if (willCoercionThrow(value)) {
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
}
}
}
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;

@@ -849,2 +926,6 @@ var RESERVED_PROPS = {

if (maybeKey !== undefined) {
{
checkKeyStringCoercion(maybeKey);
}
key = '' + maybeKey;

@@ -854,2 +935,6 @@ }

if (hasValidKey(config)) {
{
checkKeyStringCoercion(config.key);
}
key = '' + config.key;

@@ -856,0 +941,0 @@ }

3

cjs/react-jsx-dev-runtime.production.min.js

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.production.min.js

@@ -3,0 +4,0 @@ *

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.profiling.min.js

@@ -3,0 +4,0 @@ *

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.development.js

@@ -37,3 +38,2 @@ *

var REACT_SCOPE_TYPE = 0xead7;
var REACT_OPAQUE_ID_TYPE = 0xeae0;
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;

@@ -59,3 +59,2 @@ var REACT_OFFSCREEN_TYPE = 0xeae2;

REACT_SCOPE_TYPE = symbolFor('react.scope');
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');

@@ -87,7 +86,9 @@ REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');

{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
}
printWarning('error', format, args);
}
printWarning('error', format, args);
}

@@ -106,6 +107,7 @@ }

args = args.concat([stack]);
}
} // eslint-disable-next-line react-internal/safe-string-coercion
var argsWithFormat = args.map(function (item) {
return '' + item;
return String(item);
}); // Careful: RN currently depends on this prefix

@@ -485,4 +487,11 @@

// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at ');
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled "<anonymous>"
// but we have a user-provided "displayName"
// splice it in to make the stack more readable.
if (fn.displayName && _frame.includes('<anonymous>')) {
_frame = _frame.replace('<anonymous>', fn.displayName);
}
{

@@ -620,2 +629,3 @@ if (typeof fn === 'function') {

if (typeof typeSpecs[typeSpecName] !== 'function') {
// eslint-disable-next-line react-internal/prod-error-codes
var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');

@@ -660,2 +670,69 @@ err.name = 'Invariant Violation';

/*
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.
*
* The functions in this module will throw an easier-to-understand,
* easier-to-debug exception with a clear errors message message explaining the
* problem. (Instead of a confusing exception thrown inside the implementation
* of the `value` object).
*/
// $FlowFixMe only called in DEV, so void return is not possible.
function typeName(value) {
{
// toStringTag is needed for namespaced types like Temporal.Instant
var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
return type;
}
} // $FlowFixMe only called in DEV, so void return is not possible.
function willCoercionThrow(value) {
{
try {
testStringCoercion(value);
return false;
} catch (e) {
return true;
}
}
}
function testStringCoercion(value) {
// If you ended up here by following an exception call stack, here's what's
// happened: you supplied an object or symbol value to React (as a prop, key,
// DOM attribute, CSS property, string ref, etc.) and when React tried to
// coerce it to a string using `'' + value`, an exception was thrown.
//
// The most common types that will cause this exception are `Symbol` instances
// and Temporal objects like `Temporal.Instant`. But any object that has a
// `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
// exception. (Library authors do this to prevent users from using built-in
// numeric operators like `+` or comparison operators like `>=` because custom
// methods are needed to perform accurate arithmetic or comparison.)
//
// To fix the problem, coerce this object or symbol value to a string before
// passing it to React. The most reliable way is usually `String(value)`.
//
// To find which value is throwing, check the browser or debugger console.
// Before this exception was thrown, there should be `console.error` output
// that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
// problem and how that type was used: key, atrribute, input value prop, etc.
// In most cases, this console output also shows the component and its
// ancestor components where the exception happened.
//
// eslint-disable-next-line react-internal/safe-string-coercion
return '' + value;
}
function checkKeyStringCoercion(value) {
{
if (willCoercionThrow(value)) {
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
}
}
}
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;

@@ -849,2 +926,6 @@ var RESERVED_PROPS = {

if (maybeKey !== undefined) {
{
checkKeyStringCoercion(maybeKey);
}
key = '' + maybeKey;

@@ -854,2 +935,6 @@ }

if (hasValidKey(config)) {
{
checkKeyStringCoercion(config.key);
}
key = '' + config.key;

@@ -856,0 +941,0 @@ }

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.production.min.js

@@ -3,0 +4,0 @@ *

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.profiling.min.js

@@ -3,0 +4,0 @@ *

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-unstable-shared-subset.production.min.js

@@ -9,16 +10,16 @@ *

*/
'use strict';var l=require("object-assign"),n=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60112;exports.Suspense=60113;exports.SuspenseList=60120;var r=60115,t=60116;exports.unstable_DebugTracingMode=60129;
if("function"===typeof Symbol&&Symbol.for){var u=Symbol.for;n=u("react.element");p=u("react.portal");exports.Fragment=u("react.fragment");exports.StrictMode=u("react.strict_mode");exports.Profiler=u("react.profiler");q=u("react.forward_ref");exports.Suspense=u("react.suspense");exports.SuspenseList=u("react.suspense_list");r=u("react.memo");t=u("react.lazy");exports.unstable_DebugTracingMode=u("react.debug_trace_mode")}var v="function"===typeof Symbol&&Symbol.iterator;
'use strict';var l=require("object-assign"),m=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60112;exports.Suspense=60113;exports.SuspenseList=60120;var r=60115,t=60116;exports.unstable_DebugTracingMode=60129;
if("function"===typeof Symbol&&Symbol.for){var u=Symbol.for;m=u("react.element");p=u("react.portal");exports.Fragment=u("react.fragment");exports.StrictMode=u("react.strict_mode");exports.Profiler=u("react.profiler");q=u("react.forward_ref");exports.Suspense=u("react.suspense");exports.SuspenseList=u("react.suspense_list");r=u("react.memo");t=u("react.lazy");exports.unstable_DebugTracingMode=u("react.debug_trace_mode")}var v="function"===typeof Symbol&&Symbol.iterator;
function w(a){if(null===a||"object"!==typeof a)return null;a=v&&a[v]||a["@@iterator"];return"function"===typeof a?a:null}function x(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,e=1;e<arguments.length;e++)b+="&args[]="+encodeURIComponent(arguments[e]);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 y={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},z={};function A(a,b,e){this.props=a;this.context=b;this.refs=z;this.updater=e||y}A.prototype.isReactComponent={};A.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(x(85));this.updater.enqueueSetState(this,a,b,"setState")};A.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};
function B(){}B.prototype=A.prototype;function C(a,b,e){this.props=a;this.context=b;this.refs=z;this.updater=e||y}var D=C.prototype=new B;D.constructor=C;l(D,A.prototype);D.isPureReactComponent=!0;var E=Array.isArray,F=Object.prototype.hasOwnProperty,G={current:null},H={key:!0,ref:!0,__self:!0,__source:!0};function I(a,b){return{$$typeof:n,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function J(a){return"object"===typeof a&&null!==a&&a.$$typeof===n}
function B(){}B.prototype=A.prototype;function C(a,b,e){this.props=a;this.context=b;this.refs=z;this.updater=e||y}var D=C.prototype=new B;D.constructor=C;l(D,A.prototype);D.isPureReactComponent=!0;var E=Array.isArray,F=Object.prototype.hasOwnProperty,G={current:null},H={key:!0,ref:!0,__self:!0,__source:!0};function I(a,b){return{$$typeof:m,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function J(a){return"object"===typeof a&&null!==a&&a.$$typeof===m}
function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var K=/\/+/g;function L(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function M(a,b,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case n:case p:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+L(h,0):d,E(c)?(e="",null!=a&&(e=a.replace(K,"$&/")+"/"),M(c,b,e,"",function(a){return a})):null!=c&&(J(c)&&(c=I(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(K,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(E(a))for(var g=0;g<a.length;g++){k=
a[g];var f=d+L(k,g);h+=M(k,b,e,f,c)}else if(f=w(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+L(k,g++),h+=M(k,b,e,f,c);else if("object"===k)throw b=""+a,Error(x(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function N(a,b,e){if(null==a)return a;var d=[],c=0;M(a,d,"","",function(a){return b.call(e,a,c++)});return d}
function M(a,b,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case m:case p:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+L(h,0):d,E(c)?(e="",null!=a&&(e=a.replace(K,"$&/")+"/"),M(c,b,e,"",function(a){return a})):null!=c&&(J(c)&&(c=I(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(K,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(E(a))for(var g=0;g<a.length;g++){k=
a[g];var f=d+L(k,g);h+=M(k,b,e,f,c)}else if(f=w(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+L(k,g++),h+=M(k,b,e,f,c);else if("object"===k)throw b=String(a),Error(x(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function N(a,b,e){if(null==a)return a;var d=[],c=0;M(a,d,"","",function(a){return b.call(e,a,c++)});return d}
function O(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}var P={current:null};function Q(a){return P.current.useDeferredValue(a)}var R={transition:0},S={ReactCurrentDispatcher:P,ReactCurrentBatchConfig:R,ReactCurrentOwner:G,assign:l};
exports.Children={map:N,forEach:function(a,b,e){N(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;N(a,function(){b++});return b},toArray:function(a){return N(a,function(a){return a})||[]},only:function(a){if(!J(a))throw Error(x(143));return a}};exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=S;
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error(x(267,a));var d=l({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=G.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)F.call(b,f)&&!H.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);for(var m=0;m<f;m++)g[m]=arguments[m+2];d.children=g}return{$$typeof:n,type:a.type,
key:c,ref:k,props:d,_owner:h}};exports.createElement=function(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)F.call(b,d)&&!H.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),m=0;m<g;m++)f[m]=arguments[m+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:n,type:a,key:k,ref:h,props:c,_owner:G.current}};exports.createRef=function(){return{current:null}};
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error(x(267,a));var d=l({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=G.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)F.call(b,f)&&!H.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);for(var n=0;n<f;n++)g[n]=arguments[n+2];d.children=g}return{$$typeof:m,type:a.type,
key:c,ref:k,props:d,_owner:h}};exports.createElement=function(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)F.call(b,d)&&!H.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),n=0;n<g;n++)f[n]=arguments[n+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:m,type:a,key:k,ref:h,props:c,_owner:G.current}};exports.createRef=function(){return{current:null}};
exports.forwardRef=function(a){return{$$typeof:q,render:a}};exports.isValidElement=J;exports.lazy=function(a){return{$$typeof:t,_payload:{_status:-1,_result:a},_init:O}};exports.memo=function(a,b){return{$$typeof:r,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=R.transition;R.transition=1;try{a()}finally{R.transition=b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};
exports.unstable_getCacheForType=function(a){return P.current.getCacheForType(a)};exports.unstable_useDeferredValue=Q;exports.unstable_useMutableSource=function(a,b,e){return P.current.useMutableSource(a,b,e)};exports.unstable_useOpaqueIdentifier=function(){return P.current.useOpaqueIdentifier()};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=Q;
exports.useMemo=function(a,b){return P.current.useMemo(a,b)};exports.useTransition=function(){return P.current.useTransition()};exports.version="18.0.0-experimental-bfa50f827-20210712";
exports.unstable_getCacheForType=function(a){return P.current.getCacheForType(a)};exports.unstable_getCacheSignal=function(){return P.current.getCacheSignal()};exports.unstable_useDeferredValue=Q;exports.unstable_useMutableSource=function(a,b,e){return P.current.useMutableSource(a,b,e)};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=Q;exports.useId=function(){return P.current.useId()};
exports.useMemo=function(a,b){return P.current.useMemo(a,b)};exports.useTransition=function(){return P.current.useTransition()};exports.version="18.0.0-rc.0-experimental-c09596cc6-20220112";

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.production.min.js

@@ -11,17 +12,17 @@ *

if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;m=w("react.element");p=w("react.portal");exports.Fragment=w("react.fragment");exports.StrictMode=w("react.strict_mode");exports.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");exports.Suspense=w("react.suspense");exports.SuspenseList=w("react.suspense_list");u=w("react.memo");v=w("react.lazy");exports.unstable_DebugTracingMode=w("react.debug_trace_mode");exports.unstable_Offscreen=w("react.offscreen");
exports.unstable_LegacyHidden=w("react.legacy_hidden");exports.unstable_Cache=w("react.cache")}var x="function"===typeof Symbol&&Symbol.iterator;function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return"function"===typeof a?a:null}
function z(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;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 A={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},B={};
function C(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A}C.prototype.isReactComponent={};C.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(z(85));this.updater.enqueueSetState(this,a,b,"setState")};C.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function D(){}D.prototype=C.prototype;function E(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A}var F=E.prototype=new D;
F.constructor=E;l(F,C.prototype);F.isPureReactComponent=!0;var G=Array.isArray,H=Object.prototype.hasOwnProperty,I={current:null},J={key:!0,ref:!0,__self:!0,__source:!0};
function K(a,b,c){var e,d={},k=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)H.call(b,e)&&!J.hasOwnProperty(e)&&(d[e]=b[e]);var g=arguments.length-2;if(1===g)d.children=c;else if(1<g){for(var f=Array(g),n=0;n<g;n++)f[n]=arguments[n+2];d.children=f}if(a&&a.defaultProps)for(e in g=a.defaultProps,g)void 0===d[e]&&(d[e]=g[e]);return{$$typeof:m,type:a,key:k,ref:h,props:d,_owner:I.current}}
function L(a,b){return{$$typeof:m,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===m}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var N=/\/+/g;function O(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function P(a,b,c,e,d){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case m:case p:h=!0}}if(h)return h=a,d=d(h),a=""===e?"."+O(h,0):e,G(d)?(c="",null!=a&&(c=a.replace(N,"$&/")+"/"),P(d,b,c,"",function(a){return a})):null!=d&&(M(d)&&(d=L(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(N,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(G(a))for(var g=0;g<a.length;g++){k=
a[g];var f=e+O(k,g);h+=P(k,b,c,f,d)}else if(f=y(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=e+O(k,g++),h+=P(k,b,c,f,d);else if("object"===k)throw b=""+a,Error(z(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function Q(a,b,c){if(null==a)return a;var e=[],d=0;P(a,e,"","",function(a){return b.call(c,a,d++)});return e}
function R(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}var S={current:null},T={transition:0},U={ReactCurrentDispatcher:S,ReactCurrentBatchConfig:T,ReactCurrentOwner:I,assign:l};
exports.Children={map:Q,forEach:function(a,b,c){Q(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;Q(a,function(){b++});return b},toArray:function(a){return Q(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error(z(143));return a}};exports.Component=C;exports.PureComponent=E;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=U;
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(z(267,a));var e=l({},a.props),d=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=I.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)H.call(b,f)&&!J.hasOwnProperty(f)&&(e[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)e.children=c;else if(1<f){g=Array(f);for(var n=0;n<f;n++)g[n]=arguments[n+2];e.children=g}return{$$typeof:m,type:a.type,
key:d,ref:k,props:e,_owner:h}};exports.createContext=function(a){a={$$typeof:r,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};exports.createElement=K;exports.createFactory=function(a){var b=K.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.forwardRef=function(a){return{$$typeof:t,render:a}};exports.isValidElement=M;
exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:R}};exports.memo=function(a,b){return{$$typeof:u,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=T.transition;T.transition=1;try{a()}finally{T.transition=b}};exports.unstable_act=function(){throw Error(z(406));};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};
exports.unstable_getCacheForType=function(a){return S.current.getCacheForType(a)};exports.unstable_useCacheRefresh=function(){return S.current.useCacheRefresh()};exports.unstable_useMutableSource=function(a,b,c){return S.current.useMutableSource(a,b,c)};exports.unstable_useOpaqueIdentifier=function(){return S.current.useOpaqueIdentifier()};exports.useCallback=function(a,b){return S.current.useCallback(a,b)};exports.useContext=function(a){return S.current.useContext(a)};exports.useDebugValue=function(){};
exports.useDeferredValue=function(a){return S.current.useDeferredValue(a)};exports.useEffect=function(a,b){return S.current.useEffect(a,b)};exports.useImperativeHandle=function(a,b,c){return S.current.useImperativeHandle(a,b,c)};exports.useLayoutEffect=function(a,b){return S.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return S.current.useMemo(a,b)};exports.useReducer=function(a,b,c){return S.current.useReducer(a,b,c)};exports.useRef=function(a){return S.current.useRef(a)};
exports.useState=function(a){return S.current.useState(a)};exports.useTransition=function(){return S.current.useTransition()};exports.version="18.0.0-experimental-bfa50f827-20210712";
exports.unstable_LegacyHidden=w("react.legacy_hidden");exports.unstable_Cache=w("react.cache")}var x="function"===typeof Symbol&&Symbol.iterator;function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return"function"===typeof a?a:null}var z={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},A={};function B(a,b,e){this.props=a;this.context=b;this.refs=A;this.updater=e||z}
B.prototype.isReactComponent={};B.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")};B.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function C(){}C.prototype=B.prototype;
function D(a,b,e){this.props=a;this.context=b;this.refs=A;this.updater=e||z}var E=D.prototype=new C;E.constructor=D;l(E,B.prototype);E.isPureReactComponent=!0;var F=Array.isArray,G=Object.prototype.hasOwnProperty,H={current:null},I={key:!0,ref:!0,__self:!0,__source:!0};
function J(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)G.call(b,d)&&!I.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),n=0;n<g;n++)f[n]=arguments[n+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:m,type:a,key:k,ref:h,props:c,_owner:H.current}}
function K(a,b){return{$$typeof:m,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===m}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var M=/\/+/g;function N(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function O(a,b,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case m:case p:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+N(h,0):d,F(c)?(e="",null!=a&&(e=a.replace(M,"$&/")+"/"),O(c,b,e,"",function(a){return a})):null!=c&&(L(c)&&(c=K(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(M,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(F(a))for(var g=0;g<a.length;g++){k=
a[g];var f=d+N(k,g);h+=O(k,b,e,f,c)}else if(f=y(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+N(k,g++),h+=O(k,b,e,f,c);else if("object"===k)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 h}
function P(a,b,e){if(null==a)return a;var d=[],c=0;O(a,d,"","",function(a){return b.call(e,a,c++)});return d}function Q(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}
var R={current:null},S={transition:0},T={ReactCurrentDispatcher:R,ReactCurrentBatchConfig:S,ReactCurrentOwner:H,assign:l};exports.Children={map:P,forEach:function(a,b,e){P(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;P(a,function(){b++});return b},toArray:function(a){return P(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=B;exports.PureComponent=D;
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=T;
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=l({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=H.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)G.call(b,f)&&!I.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);
for(var n=0;n<f;n++)g[n]=arguments[n+2];d.children=g}return{$$typeof:m,type:a.type,key:c,ref:k,props:d,_owner:h}};exports.createContext=function(a){a={$$typeof:r,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};exports.createElement=J;exports.createFactory=function(a){var b=J.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.forwardRef=function(a){return{$$typeof:t,render:a}};
exports.isValidElement=L;exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:Q}};exports.memo=function(a,b){return{$$typeof:u,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=S.transition;S.transition=1;try{a()}finally{S.transition=b}};exports.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};
exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return R.current.getCacheForType(a)};exports.unstable_getCacheSignal=function(){return R.current.getCacheSignal()};exports.unstable_useCacheRefresh=function(){return R.current.useCacheRefresh()};exports.useCallback=function(a,b){return R.current.useCallback(a,b)};exports.useContext=function(a){return R.current.useContext(a)};
exports.useDebugValue=function(){};exports.useDeferredValue=function(a){return R.current.useDeferredValue(a)};exports.useEffect=function(a,b){return R.current.useEffect(a,b)};exports.useId=function(){return R.current.useId()};exports.useImperativeHandle=function(a,b,e){return R.current.useImperativeHandle(a,b,e)};exports.useInsertionEffect=function(a,b){return R.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return R.current.useLayoutEffect(a,b)};
exports.useMemo=function(a,b){return R.current.useMemo(a,b)};exports.useReducer=function(a,b,e){return R.current.useReducer(a,b,e)};exports.useRef=function(a){return R.current.useRef(a)};exports.useState=function(a){return R.current.useState(a)};exports.useSyncExternalStore=function(a,b,e){return R.current.useSyncExternalStore(a,b,e)};exports.useTransition=function(){return R.current.useTransition()};exports.version="18.0.0-rc.0-experimental-c09596cc6-20220112";

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

],
"version": "0.0.0-experimental-bfa50f827-20210712",
"version": "0.0.0-experimental-c09596cc6-20220112",
"homepage": "https://reactjs.org/",

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

"README.md",
"build-info.json",
"index.js",

@@ -34,3 +33,3 @@ "cjs/",

},
"./build-info.json": "./build-info.json",
"./package.json": "./package.json",
"./jsx-runtime": "./jsx-runtime.js",

@@ -37,0 +36,0 @@ "./jsx-dev-runtime": "./jsx-dev-runtime.js",

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.production.min.js

@@ -9,24 +10,25 @@ *

*/
(function(){'use strict';(function(b,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(b=b||self,w(b.React={}))})(this,function(b){function w(a){if(null===a||"object"!==typeof a)return null;a=W&&a[W]||a["@@iterator"];return"function"===typeof a?a:null}function x(a){for(var c="https://reactjs.org/docs/error-decoder.html?invariant="+a,k=1;k<arguments.length;k++)c+="&args[]="+encodeURIComponent(arguments[k]);return"Minified React error #"+
a+"; visit "+c+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function u(a,c,k){this.props=a;this.context=c;this.refs=X;this.updater=k||Y}function Z(){}function K(a,c,k){this.props=a;this.context=c;this.refs=X;this.updater=k||Y}function aa(a,c,k){var b,e={},ba=null,y=null;if(null!=c)for(b in void 0!==c.ref&&(y=c.ref),void 0!==c.key&&(ba=""+c.key),c)ca.call(c,b)&&!da.hasOwnProperty(b)&&(e[b]=c[b]);var d=arguments.length-2;if(1===d)e.children=
k;else if(1<d){for(var h=Array(d),f=0;f<d;f++)h[f]=arguments[f+2];e.children=h}if(a&&a.defaultProps)for(b in d=a.defaultProps,d)void 0===e[b]&&(e[b]=d[b]);return{$$typeof:v,type:a,key:ba,ref:y,props:e,_owner:L.current}}function ua(a,c){return{$$typeof:v,type:a.type,key:c,ref:a.ref,props:a.props,_owner:a._owner}}function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function va(a){var c={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return c[a]})}function N(a,c){return"object"===
typeof a&&null!==a&&null!=a.key?va(""+a.key):c.toString(36)}function B(a,c,k,b,e){var n=typeof a;if("undefined"===n||"boolean"===n)a=null;var d=!1;if(null===a)d=!0;else switch(n){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case ea:d=!0}}if(d)return d=a,e=e(d),a=""===b?"."+N(d,0):b,fa(e)?(k="",null!=a&&(k=a.replace(ha,"$&/")+"/"),B(e,c,k,"",function(a){return a})):null!=e&&(M(e)&&(e=ua(e,k+(!e.key||d&&d.key===e.key?"":(""+e.key).replace(ha,"$&/")+"/")+a)),c.push(e)),
1;d=0;b=""===b?".":b+":";if(fa(a))for(var f=0;f<a.length;f++){n=a[f];var h=b+N(n,f);d+=B(n,c,k,h,e)}else if(h=w(a),"function"===typeof h)for(a=h.call(a),f=0;!(n=a.next()).done;)n=n.value,h=b+N(n,f++),d+=B(n,c,k,h,e);else if("object"===n)throw c=""+a,Error(x(31,"[object Object]"===c?"object with keys {"+Object.keys(a).join(", ")+"}":c));return d}function C(a,c,k){if(null==a)return a;var b=[],e=0;B(a,b,"","",function(a){return c.call(k,a,e++)});return b}function wa(a){if(-1===a._status){var c=a._result;
c=c();c.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=c)}if(1===a._status)return a._result.default;throw a._result;}function O(a,c){var b=a.length;a.push(c);a:for(;0<b;){var d=b-1>>>1,e=a[d];if(0<D(e,c))a[d]=c,a[b]=e,b=d;else break a}}function l(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var c=a[0],b=a.pop();if(b!==c){a[0]=b;a:for(var d=
0,e=a.length,f=e>>>1;d<f;){var g=2*(d+1)-1,m=a[g],h=g+1,l=a[h];if(0>D(m,b))h<e&&0>D(l,m)?(a[d]=l,a[h]=b,d=h):(a[d]=m,a[g]=b,d=g);else if(h<e&&0>D(l,b))a[d]=l,a[h]=b,d=h;else break a}}return c}function D(a,c){var b=a.sortIndex-c.sortIndex;return 0!==b?b:a.id-c.id}function P(a){for(var c=l(q);null!==c;){if(null===c.callback)E(q);else if(c.startTime<=a)E(q),c.sortIndex=c.expirationTime,O(p,c);else break;c=l(q)}}function Q(a){z=!1;P(a);if(!r)if(null!==l(p))r=!0,R(S);else{var c=l(q);null!==c&&T(Q,c.startTime-
a)}}function S(a,c){r=!1;z&&(z=!1,ia(A),A=-1);F=!0;var b=f;try{P(c);for(m=l(p);null!==m&&(!(m.expirationTime>c)||a&&!ja());){var d=m.callback;if("function"===typeof d){m.callback=null;f=m.priorityLevel;var e=d(m.expirationTime<=c);c=t();"function"===typeof e?m.callback=e:m===l(p)&&E(p);P(c)}else E(p);m=l(p)}if(null!==m)var g=!0;else{var y=l(q);null!==y&&T(Q,y.startTime-c);g=!1}return g}finally{m=null,f=b,F=!1}}function ja(){return t()>=ka}function R(a){G=a;H||(H=!0,I())}function T(a,c){A=la(function(){a(t())},
c)}var v=60103,ea=60106;b.Fragment=60107;b.StrictMode=60108;b.Profiler=60114;var ma=60109,na=60110,oa=60112;b.Suspense=60113;b.SuspenseList=60120;var pa=60115,qa=60116;b.unstable_DebugTracingMode=60129;b.unstable_Offscreen=60130;b.unstable_LegacyHidden=60131;b.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");ea=d("react.portal");b.Fragment=d("react.fragment");b.StrictMode=d("react.strict_mode");b.Profiler=d("react.profiler");ma=d("react.provider");
na=d("react.context");oa=d("react.forward_ref");b.Suspense=d("react.suspense");b.SuspenseList=d("react.suspense_list");pa=d("react.memo");qa=d("react.lazy");b.unstable_DebugTracingMode=d("react.debug_trace_mode");b.unstable_Offscreen=d("react.offscreen");b.unstable_LegacyHidden=d("react.legacy_hidden");b.unstable_Cache=d("react.cache")}var W="function"===typeof Symbol&&Symbol.iterator,xa=Object.prototype.hasOwnProperty,U=Object.assign||function(a,c){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");
for(var b=Object(a),d=1;d<arguments.length;d++){var e=arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)xa.call(e,f)&&(b[f]=e[f])}}return b},Y={isMounted:function(a){return!1},enqueueForceUpdate:function(a,c,b){},enqueueReplaceState:function(a,c,b,d){},enqueueSetState:function(a,c,b,d){}},X={};u.prototype.isReactComponent={};u.prototype.setState=function(a,c){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(x(85));this.updater.enqueueSetState(this,a,c,"setState")};u.prototype.forceUpdate=
function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Z.prototype=u.prototype;d=K.prototype=new Z;d.constructor=K;U(d,u.prototype);d.isPureReactComponent=!0;var fa=Array.isArray,ca=Object.prototype.hasOwnProperty,L={current:null},da={key:!0,ref:!0,__self:!0,__source:!0},ha=/\/+/g,g={current:null},J={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var ya=performance;var t=function(){return ya.now()}}else{var ra=Date,za=ra.now();t=function(){return ra.now()-
za}}var p=[],q=[],Aa=1,m=null,f=3,F=!1,r=!1,z=!1,la="function"===typeof setTimeout?setTimeout:null,ia="function"===typeof clearTimeout?clearTimeout:null,sa="undefined"!==typeof setImmediate?setImmediate:null,H=!1,G=null,A=-1,ta=5,ka=0,V=function(){if(null!==G){var a=t();ka=a+ta;var c=!0;try{c=G(!0,a)}finally{c?I():(H=!1,G=null)}}else H=!1};if("function"===typeof sa)var I=function(){sa(V)};else if("undefined"!==typeof MessageChannel){d=new MessageChannel;var Ba=d.port2;d.port1.onmessage=V;I=function(){Ba.postMessage(null)}}else I=
function(){la(V,0)};d={ReactCurrentDispatcher:g,ReactCurrentOwner:L,ReactCurrentBatchConfig:J,assign:U,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,c){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var b=f;f=a;try{return c()}finally{f=b}},unstable_next:function(a){switch(f){case 1:case 2:case 3:var c=3;break;default:c=f}var b=f;f=c;
try{return a()}finally{f=b}},unstable_scheduleCallback:function(a,c,b){var d=t();"object"===typeof b&&null!==b?(b=b.delay,b="number"===typeof b&&0<b?d+b:d):b=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=b+e;a={id:Aa++,callback:c,priorityLevel:a,startTime:b,expirationTime:e,sortIndex:-1};b>d?(a.sortIndex=b,O(q,a),null===l(p)&&a===l(q)&&(z?(ia(A),A=-1):z=!0,T(Q,b-d))):(a.sortIndex=e,O(p,a),r||F||(r=!0,R(S)));return a},unstable_cancelCallback:function(a){a.callback=
null},unstable_wrapCallback:function(a){var c=f;return function(){var b=f;f=c;try{return a.apply(this,arguments)}finally{f=b}}},unstable_getCurrentPriorityLevel:function(){return f},unstable_shouldYield:ja,unstable_requestPaint:function(){},unstable_continueExecution:function(){r||F||(r=!0,R(S))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return l(p)},get unstable_now(){return 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"):
ta=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};b.Children={map:C,forEach:function(a,c,b){C(a,function(){c.apply(this,arguments)},b)},count:function(a){var c=0;C(a,function(){c++});return c},toArray:function(a){return C(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error(x(143));return a}};b.Component=u;b.PureComponent=K;b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;b.cloneElement=function(a,c,b){if(null===a||void 0===a)throw Error(x(267,a));var d=U({},a.props),e=a.key,
f=a.ref,k=a._owner;if(null!=c){void 0!==c.ref&&(f=c.ref,k=L.current);void 0!==c.key&&(e=""+c.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(h in c)ca.call(c,h)&&!da.hasOwnProperty(h)&&(d[h]=void 0===c[h]&&void 0!==g?g[h]:c[h])}var h=arguments.length-2;if(1===h)d.children=b;else if(1<h){g=Array(h);for(var l=0;l<h;l++)g[l]=arguments[l+2];d.children=g}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:k}};b.createContext=function(a){a={$$typeof:na,_currentValue:a,_currentValue2:a,
_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};b.createElement=aa;b.createFactory=function(a){var c=aa.bind(null,a);c.type=a;return c};b.createRef=function(){return{current:null}};b.forwardRef=function(a){return{$$typeof:oa,render:a}};b.isValidElement=M;b.lazy=function(a){return{$$typeof:qa,_payload:{_status:-1,_result:a},_init:wa}};b.memo=function(a,c){return{$$typeof:pa,type:a,compare:void 0===c?null:c}};b.startTransition=function(a){var c=J.transition;
J.transition=1;try{a()}finally{J.transition=c}};b.unstable_act=function(a){throw Error(x(406));};b.unstable_createMutableSource=function(a,c){return{_getVersion:c,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};b.unstable_getCacheForType=function(a){return g.current.getCacheForType(a)};b.unstable_useCacheRefresh=function(){return g.current.useCacheRefresh()};b.unstable_useMutableSource=function(a,c,b){return g.current.useMutableSource(a,c,b)};b.unstable_useOpaqueIdentifier=
function(){return g.current.useOpaqueIdentifier()};b.useCallback=function(a,c){return g.current.useCallback(a,c)};b.useContext=function(a){return g.current.useContext(a)};b.useDebugValue=function(a,c){};b.useDeferredValue=function(a){return g.current.useDeferredValue(a)};b.useEffect=function(a,c){return g.current.useEffect(a,c)};b.useImperativeHandle=function(a,c,b){return g.current.useImperativeHandle(a,c,b)};b.useLayoutEffect=function(a,b){return g.current.useLayoutEffect(a,b)};b.useMemo=function(a,
b){return g.current.useMemo(a,b)};b.useReducer=function(a,b,d){return g.current.useReducer(a,b,d)};b.useRef=function(a){return g.current.useRef(a)};b.useState=function(a){return g.current.useState(a)};b.useTransition=function(){return g.current.useTransition()};b.version="18.0.0-experimental-bfa50f827-20210712"});
(function(){'use strict';(function(b,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(b=b||self,w(b.React={}))})(this,function(b){function w(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function u(a,c,l){this.props=a;this.context=c;this.refs=W;this.updater=l||X}function Y(){}function J(a,c,l){this.props=a;this.context=c;this.refs=W;this.updater=l||X}function Z(a,c,
l){var b,e={},aa=null,x=null;if(null!=c)for(b in void 0!==c.ref&&(x=c.ref),void 0!==c.key&&(aa=""+c.key),c)ba.call(c,b)&&!ca.hasOwnProperty(b)&&(e[b]=c[b]);var d=arguments.length-2;if(1===d)e.children=l;else if(1<d){for(var g=Array(d),f=0;f<d;f++)g[f]=arguments[f+2];e.children=g}if(a&&a.defaultProps)for(b in d=a.defaultProps,d)void 0===e[b]&&(e[b]=d[b]);return{$$typeof:v,type:a,key:aa,ref:x,props:e,_owner:K.current}}function ta(a,c){return{$$typeof:v,type:a.type,key:c,ref:a.ref,props:a.props,_owner:a._owner}}
function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function ua(a){var c={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return c[a]})}function M(a,c){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):c.toString(36)}function A(a,c,l,b,e){var n=typeof a;if("undefined"===n||"boolean"===n)a=null;var d=!1;if(null===a)d=!0;else switch(n){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case da:d=!0}}if(d)return d=a,e=e(d),a=""===b?"."+
M(d,0):b,ea(e)?(l="",null!=a&&(l=a.replace(fa,"$&/")+"/"),A(e,c,l,"",function(a){return a})):null!=e&&(L(e)&&(e=ta(e,l+(!e.key||d&&d.key===e.key?"":(""+e.key).replace(fa,"$&/")+"/")+a)),c.push(e)),1;d=0;b=""===b?".":b+":";if(ea(a))for(var f=0;f<a.length;f++){n=a[f];var g=b+M(n,f);d+=A(n,c,l,g,e)}else if(g=w(a),"function"===typeof g)for(a=g.call(a),f=0;!(n=a.next()).done;)n=n.value,g=b+M(n,f++),d+=A(n,c,l,g,e);else if("object"===n)throw c=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===c?"object with keys {"+Object.keys(a).join(", ")+"}":c)+"). If you meant to render a collection of children, use an array instead.");return d}function B(a,c,b){if(null==a)return a;var l=[],e=0;A(a,l,"","",function(a){return c.call(b,a,e++)});return l}function va(a){if(-1===a._status){var c=a._result;c=c();c.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=c)}if(1===a._status)return a._result.default;throw a._result;}function N(a,c){var b=a.length;a.push(c);a:for(;0<b;){var d=b-1>>>1,e=a[d];if(0<C(e,c))a[d]=c,a[b]=e,b=d;else break a}}function k(a){return 0===a.length?null:a[0]}function D(a){if(0===a.length)return null;var c=a[0],b=a.pop();if(b!==c){a[0]=b;a:for(var d=0,e=a.length,f=e>>>1;d<f;){var h=2*(d+1)-1,m=a[h],g=h+1,k=a[g];if(0>C(m,b))g<e&&0>C(k,m)?(a[d]=k,a[g]=b,d=g):(a[d]=m,a[h]=b,d=h);else if(g<e&&0>C(k,b))a[d]=k,a[g]=b,d=g;else break a}}return c}
function C(a,c){var b=a.sortIndex-c.sortIndex;return 0!==b?b:a.id-c.id}function O(a){for(var c=k(q);null!==c;){if(null===c.callback)D(q);else if(c.startTime<=a)D(q),c.sortIndex=c.expirationTime,N(p,c);else break;c=k(q)}}function P(a){y=!1;O(a);if(!r)if(null!==k(p))r=!0,Q(R);else{var c=k(q);null!==c&&S(P,c.startTime-a)}}function R(a,c){r=!1;y&&(y=!1,ha(z),z=-1);E=!0;var b=h;try{O(c);for(m=k(p);null!==m&&(!(m.expirationTime>c)||a&&!ia());){var d=m.callback;if("function"===typeof d){m.callback=null;
h=m.priorityLevel;var e=d(m.expirationTime<=c);c=t();"function"===typeof e?m.callback=e:m===k(p)&&D(p);O(c)}else D(p);m=k(p)}if(null!==m)var f=!0;else{var x=k(q);null!==x&&S(P,x.startTime-c);f=!1}return f}finally{m=null,h=b,E=!1}}function ia(){return t()-ja<ka?!1:!0}function Q(a){F=a;G||(G=!0,H())}function S(a,c){z=la(function(){a(t())},c)}var v=60103,da=60106;b.Fragment=60107;b.StrictMode=60108;b.Profiler=60114;var ma=60109,na=60110,oa=60112;b.Suspense=60113;b.SuspenseList=60120;var pa=60115,qa=
60116;b.unstable_DebugTracingMode=60129;b.unstable_Offscreen=60130;b.unstable_LegacyHidden=60131;b.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");da=d("react.portal");b.Fragment=d("react.fragment");b.StrictMode=d("react.strict_mode");b.Profiler=d("react.profiler");ma=d("react.provider");na=d("react.context");oa=d("react.forward_ref");b.Suspense=d("react.suspense");b.SuspenseList=d("react.suspense_list");pa=d("react.memo");qa=d("react.lazy");b.unstable_DebugTracingMode=
d("react.debug_trace_mode");b.unstable_Offscreen=d("react.offscreen");b.unstable_LegacyHidden=d("react.legacy_hidden");b.unstable_Cache=d("react.cache")}var V="function"===typeof Symbol&&Symbol.iterator,wa=Object.prototype.hasOwnProperty,T=Object.assign||function(a,c){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var b=Object(a),d=1;d<arguments.length;d++){var e=arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)wa.call(e,f)&&(b[f]=e[f])}}return b},
X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,c,b){},enqueueReplaceState:function(a,c,b,d){},enqueueSetState:function(a,c,b,d){}},W={};u.prototype.isReactComponent={};u.prototype.setState=function(a,c){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,c,"setState")};u.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,
a,"forceUpdate")};Y.prototype=u.prototype;d=J.prototype=new Y;d.constructor=J;T(d,u.prototype);d.isPureReactComponent=!0;var ea=Array.isArray,ba=Object.prototype.hasOwnProperty,K={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,f={current:null},I={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var xa=performance;var t=function(){return xa.now()}}else{var ra=Date,ya=ra.now();t=function(){return ra.now()-ya}}var p=[],q=[],za=1,m=null,h=3,E=!1,r=
!1,y=!1,la="function"===typeof setTimeout?setTimeout:null,ha="function"===typeof clearTimeout?clearTimeout:null,sa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var G=!1,F=null,z=-1,ka=5,ja=-1,U=function(){if(null!==F){var a=t();ja=a;var c=!0;try{c=F(!0,a)}finally{c?H():(G=!1,F=null)}}else G=!1};if("function"===typeof sa)var H=
function(){sa(U)};else if("undefined"!==typeof MessageChannel){d=new MessageChannel;var Aa=d.port2;d.port1.onmessage=U;H=function(){Aa.postMessage(null)}}else H=function(){la(U,0)};d={ReactCurrentDispatcher:f,ReactCurrentOwner:K,ReactCurrentBatchConfig:I,assign:T,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,c){switch(a){case 1:case 2:case 3:case 4:case 5:break;
default:a=3}var b=h;h=a;try{return c()}finally{h=b}},unstable_next:function(a){switch(h){case 1:case 2:case 3:var c=3;break;default:c=h}var b=h;h=c;try{return a()}finally{h=b}},unstable_scheduleCallback:function(a,c,b){var d=t();"object"===typeof b&&null!==b?(b=b.delay,b="number"===typeof b&&0<b?d+b:d):b=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=b+e;a={id:za++,callback:c,priorityLevel:a,startTime:b,expirationTime:e,sortIndex:-1};
b>d?(a.sortIndex=b,N(q,a),null===k(p)&&a===k(q)&&(y?(ha(z),z=-1):y=!0,S(P,b-d))):(a.sortIndex=e,N(p,a),r||E||(r=!0,Q(R)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var c=h;return function(){var b=h;h=c;try{return a.apply(this,arguments)}finally{h=b}}},unstable_getCurrentPriorityLevel:function(){return h},unstable_shouldYield:ia,unstable_requestPaint:function(){},unstable_continueExecution:function(){r||E||(r=!0,Q(R))},unstable_pauseExecution:function(){},
unstable_getFirstCallbackNode:function(){return k(p)},get unstable_now(){return 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"):ka=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};b.Children={map:B,forEach:function(a,c,b){B(a,function(){c.apply(this,arguments)},b)},count:function(a){var c=0;B(a,function(){c++});return c},toArray:function(a){return B(a,function(a){return a})||
[]},only:function(a){if(!L(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};b.Component=u;b.PureComponent=J;b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;b.cloneElement=function(a,c,b){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=T({},a.props),e=a.key,f=a.ref,l=a._owner;if(null!=c){void 0!==c.ref&&(f=c.ref,l=K.current);void 0!==c.key&&(e=""+c.key);if(a.type&&
a.type.defaultProps)var h=a.type.defaultProps;for(g in c)ba.call(c,g)&&!ca.hasOwnProperty(g)&&(d[g]=void 0===c[g]&&void 0!==h?h[g]:c[g])}var g=arguments.length-2;if(1===g)d.children=b;else if(1<g){h=Array(g);for(var k=0;k<g;k++)h[k]=arguments[k+2];d.children=h}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:l}};b.createContext=function(a){a={$$typeof:na,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};b.createElement=
Z;b.createFactory=function(a){var c=Z.bind(null,a);c.type=a;return c};b.createRef=function(){return{current:null}};b.forwardRef=function(a){return{$$typeof:oa,render:a}};b.isValidElement=L;b.lazy=function(a){return{$$typeof:qa,_payload:{_status:-1,_result:a},_init:va}};b.memo=function(a,c){return{$$typeof:pa,type:a,compare:void 0===c?null:c}};b.startTransition=function(a){var c=I.transition;I.transition=1;try{a()}finally{I.transition=c}};b.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");
};b.unstable_createMutableSource=function(a,c){return{_getVersion:c,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};b.unstable_getCacheForType=function(a){return f.current.getCacheForType(a)};b.unstable_getCacheSignal=function(){return f.current.getCacheSignal()};b.unstable_useCacheRefresh=function(){return f.current.useCacheRefresh()};b.useCallback=function(a,c){return f.current.useCallback(a,c)};b.useContext=function(a){return f.current.useContext(a)};b.useDebugValue=
function(a,c){};b.useDeferredValue=function(a){return f.current.useDeferredValue(a)};b.useEffect=function(a,c){return f.current.useEffect(a,c)};b.useId=function(){return f.current.useId()};b.useImperativeHandle=function(a,c,b){return f.current.useImperativeHandle(a,c,b)};b.useInsertionEffect=function(a,b){return f.current.useInsertionEffect(a,b)};b.useLayoutEffect=function(a,b){return f.current.useLayoutEffect(a,b)};b.useMemo=function(a,b){return f.current.useMemo(a,b)};b.useReducer=function(a,b,
d){return f.current.useReducer(a,b,d)};b.useRef=function(a){return f.current.useRef(a)};b.useState=function(a){return f.current.useState(a)};b.useSyncExternalStore=function(a,b,d){return f.current.useSyncExternalStore(a,b,d)};b.useTransition=function(){return f.current.useTransition()};b.version="18.0.0-rc.0-experimental-c09596cc6-20220112"});
})();

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.profiling.min.js

@@ -9,24 +10,25 @@ *

*/
(function(){'use strict';(function(b,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(b=b||self,w(b.React={}))})(this,function(b){function w(a){if(null===a||"object"!==typeof a)return null;a=W&&a[W]||a["@@iterator"];return"function"===typeof a?a:null}function x(a){for(var c="https://reactjs.org/docs/error-decoder.html?invariant="+a,k=1;k<arguments.length;k++)c+="&args[]="+encodeURIComponent(arguments[k]);return"Minified React error #"+
a+"; visit "+c+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function u(a,c,k){this.props=a;this.context=c;this.refs=X;this.updater=k||Y}function Z(){}function K(a,c,k){this.props=a;this.context=c;this.refs=X;this.updater=k||Y}function aa(a,c,k){var b,e={},ba=null,y=null;if(null!=c)for(b in void 0!==c.ref&&(y=c.ref),void 0!==c.key&&(ba=""+c.key),c)ca.call(c,b)&&!da.hasOwnProperty(b)&&(e[b]=c[b]);var d=arguments.length-2;if(1===d)e.children=
k;else if(1<d){for(var h=Array(d),f=0;f<d;f++)h[f]=arguments[f+2];e.children=h}if(a&&a.defaultProps)for(b in d=a.defaultProps,d)void 0===e[b]&&(e[b]=d[b]);return{$$typeof:v,type:a,key:ba,ref:y,props:e,_owner:L.current}}function ua(a,c){return{$$typeof:v,type:a.type,key:c,ref:a.ref,props:a.props,_owner:a._owner}}function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function va(a){var c={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return c[a]})}function N(a,c){return"object"===
typeof a&&null!==a&&null!=a.key?va(""+a.key):c.toString(36)}function B(a,c,k,b,e){var n=typeof a;if("undefined"===n||"boolean"===n)a=null;var d=!1;if(null===a)d=!0;else switch(n){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case ea:d=!0}}if(d)return d=a,e=e(d),a=""===b?"."+N(d,0):b,fa(e)?(k="",null!=a&&(k=a.replace(ha,"$&/")+"/"),B(e,c,k,"",function(a){return a})):null!=e&&(M(e)&&(e=ua(e,k+(!e.key||d&&d.key===e.key?"":(""+e.key).replace(ha,"$&/")+"/")+a)),c.push(e)),
1;d=0;b=""===b?".":b+":";if(fa(a))for(var f=0;f<a.length;f++){n=a[f];var h=b+N(n,f);d+=B(n,c,k,h,e)}else if(h=w(a),"function"===typeof h)for(a=h.call(a),f=0;!(n=a.next()).done;)n=n.value,h=b+N(n,f++),d+=B(n,c,k,h,e);else if("object"===n)throw c=""+a,Error(x(31,"[object Object]"===c?"object with keys {"+Object.keys(a).join(", ")+"}":c));return d}function C(a,c,k){if(null==a)return a;var b=[],e=0;B(a,b,"","",function(a){return c.call(k,a,e++)});return b}function wa(a){if(-1===a._status){var c=a._result;
c=c();c.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=c)}if(1===a._status)return a._result.default;throw a._result;}function O(a,c){var b=a.length;a.push(c);a:for(;0<b;){var d=b-1>>>1,e=a[d];if(0<D(e,c))a[d]=c,a[b]=e,b=d;else break a}}function l(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var c=a[0],b=a.pop();if(b!==c){a[0]=b;a:for(var d=
0,e=a.length,f=e>>>1;d<f;){var g=2*(d+1)-1,m=a[g],h=g+1,l=a[h];if(0>D(m,b))h<e&&0>D(l,m)?(a[d]=l,a[h]=b,d=h):(a[d]=m,a[g]=b,d=g);else if(h<e&&0>D(l,b))a[d]=l,a[h]=b,d=h;else break a}}return c}function D(a,c){var b=a.sortIndex-c.sortIndex;return 0!==b?b:a.id-c.id}function P(a){for(var c=l(q);null!==c;){if(null===c.callback)E(q);else if(c.startTime<=a)E(q),c.sortIndex=c.expirationTime,O(p,c);else break;c=l(q)}}function Q(a){z=!1;P(a);if(!r)if(null!==l(p))r=!0,R(S);else{var c=l(q);null!==c&&T(Q,c.startTime-
a)}}function S(a,c){r=!1;z&&(z=!1,ia(A),A=-1);F=!0;var b=f;try{P(c);for(m=l(p);null!==m&&(!(m.expirationTime>c)||a&&!ja());){var d=m.callback;if("function"===typeof d){m.callback=null;f=m.priorityLevel;var e=d(m.expirationTime<=c);c=t();"function"===typeof e?m.callback=e:m===l(p)&&E(p);P(c)}else E(p);m=l(p)}if(null!==m)var g=!0;else{var y=l(q);null!==y&&T(Q,y.startTime-c);g=!1}return g}finally{m=null,f=b,F=!1}}function ja(){return t()>=ka}function R(a){G=a;H||(H=!0,I())}function T(a,c){A=la(function(){a(t())},
c)}var v=60103,ea=60106;b.Fragment=60107;b.StrictMode=60108;b.Profiler=60114;var ma=60109,na=60110,oa=60112;b.Suspense=60113;b.SuspenseList=60120;var pa=60115,qa=60116;b.unstable_DebugTracingMode=60129;b.unstable_Offscreen=60130;b.unstable_LegacyHidden=60131;b.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");ea=d("react.portal");b.Fragment=d("react.fragment");b.StrictMode=d("react.strict_mode");b.Profiler=d("react.profiler");ma=d("react.provider");
na=d("react.context");oa=d("react.forward_ref");b.Suspense=d("react.suspense");b.SuspenseList=d("react.suspense_list");pa=d("react.memo");qa=d("react.lazy");b.unstable_DebugTracingMode=d("react.debug_trace_mode");b.unstable_Offscreen=d("react.offscreen");b.unstable_LegacyHidden=d("react.legacy_hidden");b.unstable_Cache=d("react.cache")}var W="function"===typeof Symbol&&Symbol.iterator,xa=Object.prototype.hasOwnProperty,U=Object.assign||function(a,c){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");
for(var b=Object(a),d=1;d<arguments.length;d++){var e=arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)xa.call(e,f)&&(b[f]=e[f])}}return b},Y={isMounted:function(a){return!1},enqueueForceUpdate:function(a,c,b){},enqueueReplaceState:function(a,c,b,d){},enqueueSetState:function(a,c,b,d){}},X={};u.prototype.isReactComponent={};u.prototype.setState=function(a,c){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(x(85));this.updater.enqueueSetState(this,a,c,"setState")};u.prototype.forceUpdate=
function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};Z.prototype=u.prototype;d=K.prototype=new Z;d.constructor=K;U(d,u.prototype);d.isPureReactComponent=!0;var fa=Array.isArray,ca=Object.prototype.hasOwnProperty,L={current:null},da={key:!0,ref:!0,__self:!0,__source:!0},ha=/\/+/g,g={current:null},J={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var ya=performance;var t=function(){return ya.now()}}else{var ra=Date,za=ra.now();t=function(){return ra.now()-
za}}var p=[],q=[],Aa=1,m=null,f=3,F=!1,r=!1,z=!1,la="function"===typeof setTimeout?setTimeout:null,ia="function"===typeof clearTimeout?clearTimeout:null,sa="undefined"!==typeof setImmediate?setImmediate:null,H=!1,G=null,A=-1,ta=5,ka=0,V=function(){if(null!==G){var a=t();ka=a+ta;var c=!0;try{c=G(!0,a)}finally{c?I():(H=!1,G=null)}}else H=!1};if("function"===typeof sa)var I=function(){sa(V)};else if("undefined"!==typeof MessageChannel){d=new MessageChannel;var Ba=d.port2;d.port1.onmessage=V;I=function(){Ba.postMessage(null)}}else I=
function(){la(V,0)};d={ReactCurrentDispatcher:g,ReactCurrentOwner:L,ReactCurrentBatchConfig:J,assign:U,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,c){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var b=f;f=a;try{return c()}finally{f=b}},unstable_next:function(a){switch(f){case 1:case 2:case 3:var c=3;break;default:c=f}var b=f;f=c;
try{return a()}finally{f=b}},unstable_scheduleCallback:function(a,c,b){var d=t();"object"===typeof b&&null!==b?(b=b.delay,b="number"===typeof b&&0<b?d+b:d):b=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=b+e;a={id:Aa++,callback:c,priorityLevel:a,startTime:b,expirationTime:e,sortIndex:-1};b>d?(a.sortIndex=b,O(q,a),null===l(p)&&a===l(q)&&(z?(ia(A),A=-1):z=!0,T(Q,b-d))):(a.sortIndex=e,O(p,a),r||F||(r=!0,R(S)));return a},unstable_cancelCallback:function(a){a.callback=
null},unstable_wrapCallback:function(a){var c=f;return function(){var b=f;f=c;try{return a.apply(this,arguments)}finally{f=b}}},unstable_getCurrentPriorityLevel:function(){return f},unstable_shouldYield:ja,unstable_requestPaint:function(){},unstable_continueExecution:function(){r||F||(r=!0,R(S))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return l(p)},get unstable_now(){return 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"):
ta=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};b.Children={map:C,forEach:function(a,c,b){C(a,function(){c.apply(this,arguments)},b)},count:function(a){var c=0;C(a,function(){c++});return c},toArray:function(a){return C(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error(x(143));return a}};b.Component=u;b.PureComponent=K;b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;b.cloneElement=function(a,c,b){if(null===a||void 0===a)throw Error(x(267,a));var d=U({},a.props),e=a.key,
f=a.ref,k=a._owner;if(null!=c){void 0!==c.ref&&(f=c.ref,k=L.current);void 0!==c.key&&(e=""+c.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(h in c)ca.call(c,h)&&!da.hasOwnProperty(h)&&(d[h]=void 0===c[h]&&void 0!==g?g[h]:c[h])}var h=arguments.length-2;if(1===h)d.children=b;else if(1<h){g=Array(h);for(var l=0;l<h;l++)g[l]=arguments[l+2];d.children=g}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:k}};b.createContext=function(a){a={$$typeof:na,_currentValue:a,_currentValue2:a,
_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};b.createElement=aa;b.createFactory=function(a){var c=aa.bind(null,a);c.type=a;return c};b.createRef=function(){return{current:null}};b.forwardRef=function(a){return{$$typeof:oa,render:a}};b.isValidElement=M;b.lazy=function(a){return{$$typeof:qa,_payload:{_status:-1,_result:a},_init:wa}};b.memo=function(a,c){return{$$typeof:pa,type:a,compare:void 0===c?null:c}};b.startTransition=function(a){var c=J.transition;
J.transition=1;try{a()}finally{J.transition=c}};b.unstable_act=function(a){throw Error(x(406));};b.unstable_createMutableSource=function(a,c){return{_getVersion:c,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};b.unstable_getCacheForType=function(a){return g.current.getCacheForType(a)};b.unstable_useCacheRefresh=function(){return g.current.useCacheRefresh()};b.unstable_useMutableSource=function(a,c,b){return g.current.useMutableSource(a,c,b)};b.unstable_useOpaqueIdentifier=
function(){return g.current.useOpaqueIdentifier()};b.useCallback=function(a,c){return g.current.useCallback(a,c)};b.useContext=function(a){return g.current.useContext(a)};b.useDebugValue=function(a,c){};b.useDeferredValue=function(a){return g.current.useDeferredValue(a)};b.useEffect=function(a,c){return g.current.useEffect(a,c)};b.useImperativeHandle=function(a,c,b){return g.current.useImperativeHandle(a,c,b)};b.useLayoutEffect=function(a,b){return g.current.useLayoutEffect(a,b)};b.useMemo=function(a,
b){return g.current.useMemo(a,b)};b.useReducer=function(a,b,d){return g.current.useReducer(a,b,d)};b.useRef=function(a){return g.current.useRef(a)};b.useState=function(a){return g.current.useState(a)};b.useTransition=function(){return g.current.useTransition()};b.version="18.0.0-experimental-bfa50f827-20210712"});
(function(){'use strict';(function(b,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(b=b||self,w(b.React={}))})(this,function(b){function w(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function u(a,c,l){this.props=a;this.context=c;this.refs=W;this.updater=l||X}function Y(){}function J(a,c,l){this.props=a;this.context=c;this.refs=W;this.updater=l||X}function Z(a,c,
l){var b,e={},aa=null,x=null;if(null!=c)for(b in void 0!==c.ref&&(x=c.ref),void 0!==c.key&&(aa=""+c.key),c)ba.call(c,b)&&!ca.hasOwnProperty(b)&&(e[b]=c[b]);var d=arguments.length-2;if(1===d)e.children=l;else if(1<d){for(var g=Array(d),f=0;f<d;f++)g[f]=arguments[f+2];e.children=g}if(a&&a.defaultProps)for(b in d=a.defaultProps,d)void 0===e[b]&&(e[b]=d[b]);return{$$typeof:v,type:a,key:aa,ref:x,props:e,_owner:K.current}}function ta(a,c){return{$$typeof:v,type:a.type,key:c,ref:a.ref,props:a.props,_owner:a._owner}}
function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function ua(a){var c={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return c[a]})}function M(a,c){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):c.toString(36)}function A(a,c,l,b,e){var n=typeof a;if("undefined"===n||"boolean"===n)a=null;var d=!1;if(null===a)d=!0;else switch(n){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case da:d=!0}}if(d)return d=a,e=e(d),a=""===b?"."+
M(d,0):b,ea(e)?(l="",null!=a&&(l=a.replace(fa,"$&/")+"/"),A(e,c,l,"",function(a){return a})):null!=e&&(L(e)&&(e=ta(e,l+(!e.key||d&&d.key===e.key?"":(""+e.key).replace(fa,"$&/")+"/")+a)),c.push(e)),1;d=0;b=""===b?".":b+":";if(ea(a))for(var f=0;f<a.length;f++){n=a[f];var g=b+M(n,f);d+=A(n,c,l,g,e)}else if(g=w(a),"function"===typeof g)for(a=g.call(a),f=0;!(n=a.next()).done;)n=n.value,g=b+M(n,f++),d+=A(n,c,l,g,e);else if("object"===n)throw c=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===c?"object with keys {"+Object.keys(a).join(", ")+"}":c)+"). If you meant to render a collection of children, use an array instead.");return d}function B(a,c,b){if(null==a)return a;var l=[],e=0;A(a,l,"","",function(a){return c.call(b,a,e++)});return l}function va(a){if(-1===a._status){var c=a._result;c=c();c.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=c)}if(1===a._status)return a._result.default;throw a._result;}function N(a,c){var b=a.length;a.push(c);a:for(;0<b;){var d=b-1>>>1,e=a[d];if(0<C(e,c))a[d]=c,a[b]=e,b=d;else break a}}function k(a){return 0===a.length?null:a[0]}function D(a){if(0===a.length)return null;var c=a[0],b=a.pop();if(b!==c){a[0]=b;a:for(var d=0,e=a.length,f=e>>>1;d<f;){var h=2*(d+1)-1,m=a[h],g=h+1,k=a[g];if(0>C(m,b))g<e&&0>C(k,m)?(a[d]=k,a[g]=b,d=g):(a[d]=m,a[h]=b,d=h);else if(g<e&&0>C(k,b))a[d]=k,a[g]=b,d=g;else break a}}return c}
function C(a,c){var b=a.sortIndex-c.sortIndex;return 0!==b?b:a.id-c.id}function O(a){for(var c=k(q);null!==c;){if(null===c.callback)D(q);else if(c.startTime<=a)D(q),c.sortIndex=c.expirationTime,N(p,c);else break;c=k(q)}}function P(a){y=!1;O(a);if(!r)if(null!==k(p))r=!0,Q(R);else{var c=k(q);null!==c&&S(P,c.startTime-a)}}function R(a,c){r=!1;y&&(y=!1,ha(z),z=-1);E=!0;var b=h;try{O(c);for(m=k(p);null!==m&&(!(m.expirationTime>c)||a&&!ia());){var d=m.callback;if("function"===typeof d){m.callback=null;
h=m.priorityLevel;var e=d(m.expirationTime<=c);c=t();"function"===typeof e?m.callback=e:m===k(p)&&D(p);O(c)}else D(p);m=k(p)}if(null!==m)var f=!0;else{var x=k(q);null!==x&&S(P,x.startTime-c);f=!1}return f}finally{m=null,h=b,E=!1}}function ia(){return t()-ja<ka?!1:!0}function Q(a){F=a;G||(G=!0,H())}function S(a,c){z=la(function(){a(t())},c)}var v=60103,da=60106;b.Fragment=60107;b.StrictMode=60108;b.Profiler=60114;var ma=60109,na=60110,oa=60112;b.Suspense=60113;b.SuspenseList=60120;var pa=60115,qa=
60116;b.unstable_DebugTracingMode=60129;b.unstable_Offscreen=60130;b.unstable_LegacyHidden=60131;b.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");da=d("react.portal");b.Fragment=d("react.fragment");b.StrictMode=d("react.strict_mode");b.Profiler=d("react.profiler");ma=d("react.provider");na=d("react.context");oa=d("react.forward_ref");b.Suspense=d("react.suspense");b.SuspenseList=d("react.suspense_list");pa=d("react.memo");qa=d("react.lazy");b.unstable_DebugTracingMode=
d("react.debug_trace_mode");b.unstable_Offscreen=d("react.offscreen");b.unstable_LegacyHidden=d("react.legacy_hidden");b.unstable_Cache=d("react.cache")}var V="function"===typeof Symbol&&Symbol.iterator,wa=Object.prototype.hasOwnProperty,T=Object.assign||function(a,c){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var b=Object(a),d=1;d<arguments.length;d++){var e=arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)wa.call(e,f)&&(b[f]=e[f])}}return b},
X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,c,b){},enqueueReplaceState:function(a,c,b,d){},enqueueSetState:function(a,c,b,d){}},W={};u.prototype.isReactComponent={};u.prototype.setState=function(a,c){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,c,"setState")};u.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,
a,"forceUpdate")};Y.prototype=u.prototype;d=J.prototype=new Y;d.constructor=J;T(d,u.prototype);d.isPureReactComponent=!0;var ea=Array.isArray,ba=Object.prototype.hasOwnProperty,K={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,f={current:null},I={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var xa=performance;var t=function(){return xa.now()}}else{var ra=Date,ya=ra.now();t=function(){return ra.now()-ya}}var p=[],q=[],za=1,m=null,h=3,E=!1,r=
!1,y=!1,la="function"===typeof setTimeout?setTimeout:null,ha="function"===typeof clearTimeout?clearTimeout:null,sa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var G=!1,F=null,z=-1,ka=5,ja=-1,U=function(){if(null!==F){var a=t();ja=a;var c=!0;try{c=F(!0,a)}finally{c?H():(G=!1,F=null)}}else G=!1};if("function"===typeof sa)var H=
function(){sa(U)};else if("undefined"!==typeof MessageChannel){d=new MessageChannel;var Aa=d.port2;d.port1.onmessage=U;H=function(){Aa.postMessage(null)}}else H=function(){la(U,0)};d={ReactCurrentDispatcher:f,ReactCurrentOwner:K,ReactCurrentBatchConfig:I,assign:T,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,c){switch(a){case 1:case 2:case 3:case 4:case 5:break;
default:a=3}var b=h;h=a;try{return c()}finally{h=b}},unstable_next:function(a){switch(h){case 1:case 2:case 3:var c=3;break;default:c=h}var b=h;h=c;try{return a()}finally{h=b}},unstable_scheduleCallback:function(a,c,b){var d=t();"object"===typeof b&&null!==b?(b=b.delay,b="number"===typeof b&&0<b?d+b:d):b=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=b+e;a={id:za++,callback:c,priorityLevel:a,startTime:b,expirationTime:e,sortIndex:-1};
b>d?(a.sortIndex=b,N(q,a),null===k(p)&&a===k(q)&&(y?(ha(z),z=-1):y=!0,S(P,b-d))):(a.sortIndex=e,N(p,a),r||E||(r=!0,Q(R)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var c=h;return function(){var b=h;h=c;try{return a.apply(this,arguments)}finally{h=b}}},unstable_getCurrentPriorityLevel:function(){return h},unstable_shouldYield:ia,unstable_requestPaint:function(){},unstable_continueExecution:function(){r||E||(r=!0,Q(R))},unstable_pauseExecution:function(){},
unstable_getFirstCallbackNode:function(){return k(p)},get unstable_now(){return 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"):ka=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};b.Children={map:B,forEach:function(a,c,b){B(a,function(){c.apply(this,arguments)},b)},count:function(a){var c=0;B(a,function(){c++});return c},toArray:function(a){return B(a,function(a){return a})||
[]},only:function(a){if(!L(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};b.Component=u;b.PureComponent=J;b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;b.cloneElement=function(a,c,b){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=T({},a.props),e=a.key,f=a.ref,l=a._owner;if(null!=c){void 0!==c.ref&&(f=c.ref,l=K.current);void 0!==c.key&&(e=""+c.key);if(a.type&&
a.type.defaultProps)var h=a.type.defaultProps;for(g in c)ba.call(c,g)&&!ca.hasOwnProperty(g)&&(d[g]=void 0===c[g]&&void 0!==h?h[g]:c[g])}var g=arguments.length-2;if(1===g)d.children=b;else if(1<g){h=Array(g);for(var k=0;k<g;k++)h[k]=arguments[k+2];d.children=h}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:l}};b.createContext=function(a){a={$$typeof:na,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};b.createElement=
Z;b.createFactory=function(a){var c=Z.bind(null,a);c.type=a;return c};b.createRef=function(){return{current:null}};b.forwardRef=function(a){return{$$typeof:oa,render:a}};b.isValidElement=L;b.lazy=function(a){return{$$typeof:qa,_payload:{_status:-1,_result:a},_init:va}};b.memo=function(a,c){return{$$typeof:pa,type:a,compare:void 0===c?null:c}};b.startTransition=function(a){var c=I.transition;I.transition=1;try{a()}finally{I.transition=c}};b.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");
};b.unstable_createMutableSource=function(a,c){return{_getVersion:c,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};b.unstable_getCacheForType=function(a){return f.current.getCacheForType(a)};b.unstable_getCacheSignal=function(){return f.current.getCacheSignal()};b.unstable_useCacheRefresh=function(){return f.current.useCacheRefresh()};b.useCallback=function(a,c){return f.current.useCallback(a,c)};b.useContext=function(a){return f.current.useContext(a)};b.useDebugValue=
function(a,c){};b.useDeferredValue=function(a){return f.current.useDeferredValue(a)};b.useEffect=function(a,c){return f.current.useEffect(a,c)};b.useId=function(){return f.current.useId()};b.useImperativeHandle=function(a,c,b){return f.current.useImperativeHandle(a,c,b)};b.useInsertionEffect=function(a,b){return f.current.useInsertionEffect(a,b)};b.useLayoutEffect=function(a,b){return f.current.useLayoutEffect(a,b)};b.useMemo=function(a,b){return f.current.useMemo(a,b)};b.useReducer=function(a,b,
d){return f.current.useReducer(a,b,d)};b.useRef=function(a){return f.current.useRef(a)};b.useState=function(a){return f.current.useState(a)};b.useSyncExternalStore=function(a,b,d){return f.current.useSyncExternalStore(a,b,d)};b.useTransition=function(){return f.current.useTransition()};b.version="18.0.0-rc.0-experimental-c09596cc6-20220112"});
})();

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

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

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